Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/mm/filemap.c |
| 4 | * |
| 5 | * Copyright (C) 1994-1999 Linus Torvalds |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * This file handles the generic file mmap semantics used by |
| 10 | * most "normal" filesystems (but you don't /have/ to use this: |
| 11 | * the NFS filesystem used to do this differently, for example) |
| 12 | */ |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/compiler.h> |
Ross Zwisler | f9fe48b | 2016-01-22 15:10:40 -0800 | [diff] [blame] | 15 | #include <linux/dax.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/fs.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 17 | #include <linux/sched/signal.h> |
Hiro Yoshioka | c22ce14 | 2006-06-23 02:04:16 -0700 | [diff] [blame] | 18 | #include <linux/uaccess.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 19 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/kernel_stat.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/mm.h> |
| 23 | #include <linux/swap.h> |
| 24 | #include <linux/mman.h> |
| 25 | #include <linux/pagemap.h> |
| 26 | #include <linux/file.h> |
| 27 | #include <linux/uio.h> |
Josef Bacik | cfcbfb1 | 2019-05-13 17:21:04 -0700 | [diff] [blame] | 28 | #include <linux/error-injection.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/hash.h> |
| 30 | #include <linux/writeback.h> |
Linus Torvalds | 5325338 | 2007-10-18 14:47:32 -0700 | [diff] [blame] | 31 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/pagevec.h> |
| 33 | #include <linux/blkdev.h> |
| 34 | #include <linux/security.h> |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 35 | #include <linux/cpuset.h> |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 36 | #include <linux/hugetlb.h> |
Balbir Singh | 8a9f3cc | 2008-02-07 00:13:53 -0800 | [diff] [blame] | 37 | #include <linux/memcontrol.h> |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 38 | #include <linux/cleancache.h> |
Mel Gorman | c7df8ad | 2017-11-15 17:37:41 -0800 | [diff] [blame] | 39 | #include <linux/shmem_fs.h> |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 40 | #include <linux/rmap.h> |
Johannes Weiner | b1d29ba | 2018-10-26 15:06:08 -0700 | [diff] [blame] | 41 | #include <linux/delayacct.h> |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 42 | #include <linux/psi.h> |
Ben Dooks | d0e6a58 | 2019-10-18 20:20:20 -0700 | [diff] [blame] | 43 | #include <linux/ramfs.h> |
Yang Shi | b9306a7 | 2020-08-06 23:19:55 -0700 | [diff] [blame] | 44 | #include <linux/page_idle.h> |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 45 | #include <asm/pgalloc.h> |
Will Deacon | de591a8 | 2021-02-10 11:15:11 +0000 | [diff] [blame] | 46 | #include <asm/tlbflush.h> |
Nick Piggin | 0f8053a | 2006-03-22 00:08:33 -0800 | [diff] [blame] | 47 | #include "internal.h" |
| 48 | |
Robert Jarzmik | fe0bfaa | 2013-04-29 15:06:10 -0700 | [diff] [blame] | 49 | #define CREATE_TRACE_POINTS |
| 50 | #include <trace/events/filemap.h> |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | * FIXME: remove all knowledge of the buffer layer from the core VM |
| 54 | */ |
Jan Kara | 148f948 | 2009-08-17 19:52:36 +0200 | [diff] [blame] | 55 | #include <linux/buffer_head.h> /* for try_to_free_buffers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/mman.h> |
| 58 | |
| 59 | /* |
| 60 | * Shared mappings implemented 30.11.1994. It's not fully working yet, |
| 61 | * though. |
| 62 | * |
| 63 | * Shared mappings now work. 15.8.1995 Bruno. |
| 64 | * |
| 65 | * finished 'unifying' the page and buffer cache and SMP-threaded the |
| 66 | * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com> |
| 67 | * |
| 68 | * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de> |
| 69 | */ |
| 70 | |
| 71 | /* |
| 72 | * Lock ordering: |
| 73 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 74 | * ->i_mmap_rwsem (truncate_pagecache) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | * ->private_lock (__free_pte->__set_page_dirty_buffers) |
Hugh Dickins | 5d337b9 | 2005-09-03 15:54:41 -0700 | [diff] [blame] | 76 | * ->swap_lock (exclusive_swap_page, others) |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 77 | * ->i_pages lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | * |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 79 | * ->i_rwsem |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 80 | * ->invalidate_lock (acquired by fs in truncate path) |
| 81 | * ->i_mmap_rwsem (truncate->unmap_mapping_range) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 83 | * ->mmap_lock |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 84 | * ->i_mmap_rwsem |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 85 | * ->page_table_lock or pte_lock (various, mainly in memory.c) |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 86 | * ->i_pages lock (arch-dependent flush_dcache_mmap_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 88 | * ->mmap_lock |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 89 | * ->invalidate_lock (filemap_fault) |
| 90 | * ->lock_page (filemap_fault, access_process_vm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | * |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 92 | * ->i_rwsem (generic_perform_write) |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 93 | * ->mmap_lock (fault_in_pages_readable->do_page_fault) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | * |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 95 | * bdi->wb.list_lock |
Dave Chinner | a66979a | 2011-03-22 22:23:41 +1100 | [diff] [blame] | 96 | * sb_lock (fs/fs-writeback.c) |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 97 | * ->i_pages lock (__sync_single_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 99 | * ->i_mmap_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * ->anon_vma.lock (vma_adjust) |
| 101 | * |
| 102 | * ->anon_vma.lock |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 103 | * ->page_table_lock or pte_lock (anon_vma_prepare and various) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | * |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 105 | * ->page_table_lock or pte_lock |
Hugh Dickins | 5d337b9 | 2005-09-03 15:54:41 -0700 | [diff] [blame] | 106 | * ->swap_lock (try_to_unmap_one) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * ->private_lock (try_to_unmap_one) |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 108 | * ->i_pages lock (try_to_unmap_one) |
Hugh Dickins | 15b4473 | 2020-12-15 14:21:31 -0800 | [diff] [blame] | 109 | * ->lruvec->lru_lock (follow_page->mark_page_accessed) |
| 110 | * ->lruvec->lru_lock (check_pte_range->isolate_lru_page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * ->private_lock (page_remove_rmap->set_page_dirty) |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 112 | * ->i_pages lock (page_remove_rmap->set_page_dirty) |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 113 | * bdi.wb->list_lock (page_remove_rmap->set_page_dirty) |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 114 | * ->inode->i_lock (page_remove_rmap->set_page_dirty) |
Johannes Weiner | 81f8c3a | 2016-03-15 14:57:04 -0700 | [diff] [blame] | 115 | * ->memcg->move_lock (page_remove_rmap->lock_page_memcg) |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 116 | * bdi.wb->list_lock (zap_pte_range->set_page_dirty) |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 117 | * ->inode->i_lock (zap_pte_range->set_page_dirty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * ->private_lock (zap_pte_range->__set_page_dirty_buffers) |
| 119 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 120 | * ->i_mmap_rwsem |
Andi Kleen | 9a3c531 | 2012-03-21 16:34:09 -0700 | [diff] [blame] | 121 | * ->tasklist_lock (memory_failure, collect_procs_ao) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | */ |
| 123 | |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 124 | static void page_cache_delete(struct address_space *mapping, |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 125 | struct page *page, void *shadow) |
| 126 | { |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 127 | XA_STATE(xas, &mapping->i_pages, page->index); |
| 128 | unsigned int nr = 1; |
Kirill A. Shutemov | c70b647 | 2016-12-12 16:43:17 -0800 | [diff] [blame] | 129 | |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 130 | mapping_set_update(&xas, mapping); |
| 131 | |
| 132 | /* hugetlb pages are represented by a single entry in the xarray */ |
| 133 | if (!PageHuge(page)) { |
| 134 | xas_set_order(&xas, page->index, compound_order(page)); |
Matthew Wilcox (Oracle) | d8c6546 | 2019-09-23 15:34:30 -0700 | [diff] [blame] | 135 | nr = compound_nr(page); |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 136 | } |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 137 | |
Kirill A. Shutemov | 8392937 | 2016-07-26 15:26:04 -0700 | [diff] [blame] | 138 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 139 | VM_BUG_ON_PAGE(PageTail(page), page); |
| 140 | VM_BUG_ON_PAGE(nr != 1 && shadow, page); |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 141 | |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 142 | xas_store(&xas, shadow); |
| 143 | xas_init_marks(&xas); |
Johannes Weiner | d3798ae | 2016-10-04 22:02:08 +0200 | [diff] [blame] | 144 | |
Jan Kara | 2300638 | 2017-11-15 17:37:26 -0800 | [diff] [blame] | 145 | page->mapping = NULL; |
| 146 | /* Leave page->index set: truncation lookup relies upon it */ |
Johannes Weiner | d3798ae | 2016-10-04 22:02:08 +0200 | [diff] [blame] | 147 | mapping->nrpages -= nr; |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 150 | static void unaccount_page_cache_page(struct address_space *mapping, |
| 151 | struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 153 | int nr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 155 | /* |
| 156 | * if we're uptodate, flush out into the cleancache, otherwise |
| 157 | * invalidate any existing cleancache entries. We can't leave |
| 158 | * stale data around in the cleancache once our page is gone |
| 159 | */ |
| 160 | if (PageUptodate(page) && PageMappedToDisk(page)) |
| 161 | cleancache_put_page(page); |
| 162 | else |
Dan Magenheimer | 3167760 | 2011-09-21 11:56:28 -0400 | [diff] [blame] | 163 | cleancache_invalidate_page(mapping, page); |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 164 | |
Kirill A. Shutemov | 8392937 | 2016-07-26 15:26:04 -0700 | [diff] [blame] | 165 | VM_BUG_ON_PAGE(PageTail(page), page); |
Hugh Dickins | 06b241f | 2016-03-09 14:08:07 -0800 | [diff] [blame] | 166 | VM_BUG_ON_PAGE(page_mapped(page), page); |
| 167 | if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(page_mapped(page))) { |
| 168 | int mapcount; |
| 169 | |
| 170 | pr_alert("BUG: Bad page cache in process %s pfn:%05lx\n", |
| 171 | current->comm, page_to_pfn(page)); |
| 172 | dump_page(page, "still mapped when deleted"); |
| 173 | dump_stack(); |
| 174 | add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE); |
| 175 | |
| 176 | mapcount = page_mapcount(page); |
| 177 | if (mapping_exiting(mapping) && |
| 178 | page_count(page) >= mapcount + 2) { |
| 179 | /* |
| 180 | * All vmas have already been torn down, so it's |
| 181 | * a good bet that actually the page is unmapped, |
| 182 | * and we'd prefer not to leak it: if we're wrong, |
| 183 | * some other bad page check should catch it later. |
| 184 | */ |
| 185 | page_mapcount_reset(page); |
Joonsoo Kim | 6d061f9 | 2016-05-19 17:10:46 -0700 | [diff] [blame] | 186 | page_ref_sub(page, mapcount); |
Hugh Dickins | 06b241f | 2016-03-09 14:08:07 -0800 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Jan Kara | 76253fb | 2017-11-15 17:37:22 -0800 | [diff] [blame] | 190 | /* hugetlb pages do not participate in page cache accounting. */ |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 191 | if (PageHuge(page)) |
| 192 | return; |
Jan Kara | 76253fb | 2017-11-15 17:37:22 -0800 | [diff] [blame] | 193 | |
Matthew Wilcox (Oracle) | 6c35784 | 2020-08-14 17:30:37 -0700 | [diff] [blame] | 194 | nr = thp_nr_pages(page); |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 195 | |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 196 | __mod_lruvec_page_state(page, NR_FILE_PAGES, -nr); |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 197 | if (PageSwapBacked(page)) { |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 198 | __mod_lruvec_page_state(page, NR_SHMEM, -nr); |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 199 | if (PageTransHuge(page)) |
Muchun Song | 57b2847 | 2021-02-24 12:03:31 -0800 | [diff] [blame] | 200 | __mod_lruvec_page_state(page, NR_SHMEM_THPS, -nr); |
Song Liu | 99cb0db | 2019-09-23 15:38:00 -0700 | [diff] [blame] | 201 | } else if (PageTransHuge(page)) { |
Muchun Song | bf9ecea | 2021-02-24 12:03:27 -0800 | [diff] [blame] | 202 | __mod_lruvec_page_state(page, NR_FILE_THPS, -nr); |
Song Liu | 09d91cd | 2019-09-23 15:38:03 -0700 | [diff] [blame] | 203 | filemap_nr_thps_dec(mapping); |
Jan Kara | 76253fb | 2017-11-15 17:37:22 -0800 | [diff] [blame] | 204 | } |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * At this point page must be either written or cleaned by |
| 208 | * truncate. Dirty page here signals a bug and loss of |
| 209 | * unwritten data. |
| 210 | * |
| 211 | * This fixes dirty accounting after removing the page entirely |
| 212 | * but leaves PageDirty set: it has no effect for truncated |
| 213 | * page and anyway will be cleared before returning page into |
| 214 | * buddy allocator. |
| 215 | */ |
| 216 | if (WARN_ON_ONCE(PageDirty(page))) |
| 217 | account_page_cleaned(page, mapping, inode_to_wb(mapping->host)); |
| 218 | } |
| 219 | |
| 220 | /* |
| 221 | * Delete a page from the page cache and free it. Caller has to make |
| 222 | * sure the page is locked and that nobody else uses it - or that usage |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 223 | * is safe. The caller must hold the i_pages lock. |
Jan Kara | 5ecc4d8 | 2017-11-15 17:37:29 -0800 | [diff] [blame] | 224 | */ |
| 225 | void __delete_from_page_cache(struct page *page, void *shadow) |
| 226 | { |
| 227 | struct address_space *mapping = page->mapping; |
| 228 | |
| 229 | trace_mm_filemap_delete_from_page_cache(page); |
| 230 | |
| 231 | unaccount_page_cache_page(mapping, page); |
Matthew Wilcox | 5c024e6a | 2017-11-21 09:17:59 -0500 | [diff] [blame] | 232 | page_cache_delete(mapping, page, shadow); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Jan Kara | 59c66c5 | 2017-11-15 17:37:18 -0800 | [diff] [blame] | 235 | static void page_cache_free_page(struct address_space *mapping, |
| 236 | struct page *page) |
| 237 | { |
| 238 | void (*freepage)(struct page *); |
| 239 | |
| 240 | freepage = mapping->a_ops->freepage; |
| 241 | if (freepage) |
| 242 | freepage(page); |
| 243 | |
| 244 | if (PageTransHuge(page) && !PageHuge(page)) { |
Matthew Wilcox (Oracle) | 887b22c | 2020-10-15 20:05:23 -0700 | [diff] [blame] | 245 | page_ref_sub(page, thp_nr_pages(page)); |
Jan Kara | 59c66c5 | 2017-11-15 17:37:18 -0800 | [diff] [blame] | 246 | VM_BUG_ON_PAGE(page_count(page) <= 0, page); |
| 247 | } else { |
| 248 | put_page(page); |
| 249 | } |
| 250 | } |
| 251 | |
Minchan Kim | 702cfbf | 2011-03-22 16:32:43 -0700 | [diff] [blame] | 252 | /** |
| 253 | * delete_from_page_cache - delete page from page cache |
| 254 | * @page: the page which the kernel is trying to remove from page cache |
| 255 | * |
| 256 | * This must be called only on pages that have been verified to be in the page |
| 257 | * cache and locked. It will never put the page into the free list, the caller |
| 258 | * has a reference on the page. |
| 259 | */ |
| 260 | void delete_from_page_cache(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
Kirill A. Shutemov | 8392937 | 2016-07-26 15:26:04 -0700 | [diff] [blame] | 262 | struct address_space *mapping = page_mapping(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Matt Mackall | cd7619d | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 264 | BUG_ON(!PageLocked(page)); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 265 | xa_lock_irq(&mapping->i_pages); |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 266 | __delete_from_page_cache(page, NULL); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 267 | xa_unlock_irq(&mapping->i_pages); |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 268 | |
Jan Kara | 59c66c5 | 2017-11-15 17:37:18 -0800 | [diff] [blame] | 269 | page_cache_free_page(mapping, page); |
Minchan Kim | 97cecb5 | 2011-03-22 16:30:53 -0700 | [diff] [blame] | 270 | } |
| 271 | EXPORT_SYMBOL(delete_from_page_cache); |
| 272 | |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 273 | /* |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 274 | * page_cache_delete_batch - delete several pages from page cache |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 275 | * @mapping: the mapping to which pages belong |
| 276 | * @pvec: pagevec with pages to delete |
| 277 | * |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 278 | * The function walks over mapping->i_pages and removes pages passed in @pvec |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 279 | * from the mapping. The function expects @pvec to be sorted by page index |
| 280 | * and is optimised for it to be dense. |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 281 | * It tolerates holes in @pvec (mapping entries at those indices are not |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 282 | * modified). The function expects only THP head pages to be present in the |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 283 | * @pvec. |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 284 | * |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 285 | * The function expects the i_pages lock to be held. |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 286 | */ |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 287 | static void page_cache_delete_batch(struct address_space *mapping, |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 288 | struct pagevec *pvec) |
| 289 | { |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 290 | XA_STATE(xas, &mapping->i_pages, pvec->pages[0]->index); |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 291 | int total_pages = 0; |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 292 | int i = 0; |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 293 | struct page *page; |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 294 | |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 295 | mapping_set_update(&xas, mapping); |
| 296 | xas_for_each(&xas, page, ULONG_MAX) { |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 297 | if (i >= pagevec_count(pvec)) |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 298 | break; |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 299 | |
| 300 | /* A swap/dax/shadow entry got inserted? Skip it. */ |
Matthew Wilcox | 3159f94 | 2017-11-03 13:30:42 -0400 | [diff] [blame] | 301 | if (xa_is_value(page)) |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 302 | continue; |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 303 | /* |
| 304 | * A page got inserted in our range? Skip it. We have our |
| 305 | * pages locked so they are protected from being removed. |
| 306 | * If we see a page whose index is higher than ours, it |
| 307 | * means our page has been removed, which shouldn't be |
| 308 | * possible because we're holding the PageLock. |
| 309 | */ |
| 310 | if (page != pvec->pages[i]) { |
| 311 | VM_BUG_ON_PAGE(page->index > pvec->pages[i]->index, |
| 312 | page); |
| 313 | continue; |
Linus Torvalds | 69bf4b6 | 2019-07-05 19:55:18 -0700 | [diff] [blame] | 314 | } |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 315 | |
| 316 | WARN_ON_ONCE(!PageLocked(page)); |
| 317 | |
| 318 | if (page->index == xas.xa_index) |
| 319 | page->mapping = NULL; |
| 320 | /* Leave page->index set: truncation lookup relies on it */ |
| 321 | |
| 322 | /* |
| 323 | * Move to the next page in the vector if this is a regular |
| 324 | * page or the index is of the last sub-page of this compound |
| 325 | * page. |
| 326 | */ |
| 327 | if (page->index + compound_nr(page) - 1 == xas.xa_index) |
| 328 | i++; |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 329 | xas_store(&xas, NULL); |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 330 | total_pages++; |
| 331 | } |
| 332 | mapping->nrpages -= total_pages; |
| 333 | } |
| 334 | |
| 335 | void delete_from_page_cache_batch(struct address_space *mapping, |
| 336 | struct pagevec *pvec) |
| 337 | { |
| 338 | int i; |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 339 | |
| 340 | if (!pagevec_count(pvec)) |
| 341 | return; |
| 342 | |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 343 | xa_lock_irq(&mapping->i_pages); |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 344 | for (i = 0; i < pagevec_count(pvec); i++) { |
| 345 | trace_mm_filemap_delete_from_page_cache(pvec->pages[i]); |
| 346 | |
| 347 | unaccount_page_cache_page(mapping, pvec->pages[i]); |
| 348 | } |
Matthew Wilcox | ef8e571 | 2017-12-04 03:59:45 -0500 | [diff] [blame] | 349 | page_cache_delete_batch(mapping, pvec); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 350 | xa_unlock_irq(&mapping->i_pages); |
Jan Kara | aa65c29 | 2017-11-15 17:37:33 -0800 | [diff] [blame] | 351 | |
| 352 | for (i = 0; i < pagevec_count(pvec); i++) |
| 353 | page_cache_free_page(mapping, pvec->pages[i]); |
| 354 | } |
| 355 | |
Miklos Szeredi | d72d9e2 | 2016-07-29 14:10:57 +0200 | [diff] [blame] | 356 | int filemap_check_errors(struct address_space *mapping) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 357 | { |
| 358 | int ret = 0; |
| 359 | /* Check for outstanding write errors */ |
Jens Axboe | 7fcbbaf | 2014-05-22 11:54:16 -0700 | [diff] [blame] | 360 | if (test_bit(AS_ENOSPC, &mapping->flags) && |
| 361 | test_and_clear_bit(AS_ENOSPC, &mapping->flags)) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 362 | ret = -ENOSPC; |
Jens Axboe | 7fcbbaf | 2014-05-22 11:54:16 -0700 | [diff] [blame] | 363 | if (test_bit(AS_EIO, &mapping->flags) && |
| 364 | test_and_clear_bit(AS_EIO, &mapping->flags)) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 365 | ret = -EIO; |
| 366 | return ret; |
| 367 | } |
Miklos Szeredi | d72d9e2 | 2016-07-29 14:10:57 +0200 | [diff] [blame] | 368 | EXPORT_SYMBOL(filemap_check_errors); |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 369 | |
Jeff Layton | 76341ca | 2017-07-06 07:02:22 -0400 | [diff] [blame] | 370 | static int filemap_check_and_keep_errors(struct address_space *mapping) |
| 371 | { |
| 372 | /* Check for outstanding write errors */ |
| 373 | if (test_bit(AS_EIO, &mapping->flags)) |
| 374 | return -EIO; |
| 375 | if (test_bit(AS_ENOSPC, &mapping->flags)) |
| 376 | return -ENOSPC; |
| 377 | return 0; |
| 378 | } |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /** |
Josef Bacik | 5a79849 | 2021-07-14 14:47:22 -0400 | [diff] [blame] | 381 | * filemap_fdatawrite_wbc - start writeback on mapping dirty pages in range |
| 382 | * @mapping: address space structure to write |
| 383 | * @wbc: the writeback_control controlling the writeout |
| 384 | * |
| 385 | * Call writepages on the mapping using the provided wbc to control the |
| 386 | * writeout. |
| 387 | * |
| 388 | * Return: %0 on success, negative error code otherwise. |
| 389 | */ |
| 390 | int filemap_fdatawrite_wbc(struct address_space *mapping, |
| 391 | struct writeback_control *wbc) |
| 392 | { |
| 393 | int ret; |
| 394 | |
| 395 | if (!mapping_can_writeback(mapping) || |
| 396 | !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) |
| 397 | return 0; |
| 398 | |
| 399 | wbc_attach_fdatawrite_inode(wbc, mapping->host); |
| 400 | ret = do_writepages(mapping, wbc); |
| 401 | wbc_detach_inode(wbc); |
| 402 | return ret; |
| 403 | } |
| 404 | EXPORT_SYMBOL(filemap_fdatawrite_wbc); |
| 405 | |
| 406 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 407 | * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 408 | * @mapping: address space structure to write |
| 409 | * @start: offset in bytes where the range starts |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 410 | * @end: offset in bytes where the range ends (inclusive) |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 411 | * @sync_mode: enable synchronous operation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | * |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 413 | * Start writeback against all of a mapping's dirty pages that lie |
| 414 | * within the byte offsets <start, end> inclusive. |
| 415 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 417 | * opposed to a regular memory cleansing writeback. The difference between |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | * these two operations is that if a dirty page/buffer is encountered, it must |
| 419 | * be waited upon, and not just skipped over. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 420 | * |
| 421 | * Return: %0 on success, negative error code otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | */ |
Andrew Morton | ebcf28e | 2006-03-24 03:18:04 -0800 | [diff] [blame] | 423 | int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
| 424 | loff_t end, int sync_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | struct writeback_control wbc = { |
| 427 | .sync_mode = sync_mode, |
Nick Piggin | 05fe478 | 2009-01-06 14:39:08 -0800 | [diff] [blame] | 428 | .nr_to_write = LONG_MAX, |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 429 | .range_start = start, |
| 430 | .range_end = end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | }; |
| 432 | |
Josef Bacik | 5a79849 | 2021-07-14 14:47:22 -0400 | [diff] [blame] | 433 | return filemap_fdatawrite_wbc(mapping, &wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | static inline int __filemap_fdatawrite(struct address_space *mapping, |
| 437 | int sync_mode) |
| 438 | { |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 439 | return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | int filemap_fdatawrite(struct address_space *mapping) |
| 443 | { |
| 444 | return __filemap_fdatawrite(mapping, WB_SYNC_ALL); |
| 445 | } |
| 446 | EXPORT_SYMBOL(filemap_fdatawrite); |
| 447 | |
Jan Kara | f4c0a0f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 448 | int filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
Andrew Morton | ebcf28e | 2006-03-24 03:18:04 -0800 | [diff] [blame] | 449 | loff_t end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
| 451 | return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL); |
| 452 | } |
Jan Kara | f4c0a0f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 453 | EXPORT_SYMBOL(filemap_fdatawrite_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 455 | /** |
| 456 | * filemap_flush - mostly a non-blocking flush |
| 457 | * @mapping: target address_space |
| 458 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | * This is a mostly non-blocking flush. Not suitable for data-integrity |
| 460 | * purposes - I/O may not be started against all dirty pages. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 461 | * |
| 462 | * Return: %0 on success, negative error code otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | */ |
| 464 | int filemap_flush(struct address_space *mapping) |
| 465 | { |
| 466 | return __filemap_fdatawrite(mapping, WB_SYNC_NONE); |
| 467 | } |
| 468 | EXPORT_SYMBOL(filemap_flush); |
| 469 | |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 470 | /** |
| 471 | * filemap_range_has_page - check if a page exists in range. |
| 472 | * @mapping: address space within which to check |
| 473 | * @start_byte: offset in bytes where the range starts |
| 474 | * @end_byte: offset in bytes where the range ends (inclusive) |
| 475 | * |
| 476 | * Find at least one page in the range supplied, usually used to check if |
| 477 | * direct writing in this range will trigger a writeback. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 478 | * |
| 479 | * Return: %true if at least one page exists in the specified range, |
| 480 | * %false otherwise. |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 481 | */ |
| 482 | bool filemap_range_has_page(struct address_space *mapping, |
| 483 | loff_t start_byte, loff_t end_byte) |
| 484 | { |
Jan Kara | f7b6804 | 2017-09-06 16:21:40 -0700 | [diff] [blame] | 485 | struct page *page; |
Matthew Wilcox | 8fa8e53 | 2018-01-16 06:26:49 -0500 | [diff] [blame] | 486 | XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT); |
| 487 | pgoff_t max = end_byte >> PAGE_SHIFT; |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 488 | |
| 489 | if (end_byte < start_byte) |
| 490 | return false; |
| 491 | |
Matthew Wilcox | 8fa8e53 | 2018-01-16 06:26:49 -0500 | [diff] [blame] | 492 | rcu_read_lock(); |
| 493 | for (;;) { |
| 494 | page = xas_find(&xas, max); |
| 495 | if (xas_retry(&xas, page)) |
| 496 | continue; |
| 497 | /* Shadow entries don't count */ |
| 498 | if (xa_is_value(page)) |
| 499 | continue; |
| 500 | /* |
| 501 | * We don't need to try to pin this page; we're about to |
| 502 | * release the RCU lock anyway. It is enough to know that |
| 503 | * there was a page here recently. |
| 504 | */ |
| 505 | break; |
| 506 | } |
| 507 | rcu_read_unlock(); |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 508 | |
Matthew Wilcox | 8fa8e53 | 2018-01-16 06:26:49 -0500 | [diff] [blame] | 509 | return page != NULL; |
Goldwyn Rodrigues | 7fc9e47 | 2017-06-20 07:05:41 -0500 | [diff] [blame] | 510 | } |
| 511 | EXPORT_SYMBOL(filemap_range_has_page); |
| 512 | |
Jeff Layton | 5e8fcc1 | 2017-07-06 07:02:24 -0400 | [diff] [blame] | 513 | static void __filemap_fdatawait_range(struct address_space *mapping, |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 514 | loff_t start_byte, loff_t end_byte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 516 | pgoff_t index = start_byte >> PAGE_SHIFT; |
| 517 | pgoff_t end = end_byte >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | struct pagevec pvec; |
| 519 | int nr_pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 521 | if (end_byte < start_byte) |
Jeff Layton | 5e8fcc1 | 2017-07-06 07:02:24 -0400 | [diff] [blame] | 522 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Mel Gorman | 8667982 | 2017-11-15 17:37:52 -0800 | [diff] [blame] | 524 | pagevec_init(&pvec); |
Jan Kara | 312e9d2 | 2017-11-15 17:35:05 -0800 | [diff] [blame] | 525 | while (index <= end) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | unsigned i; |
| 527 | |
Jan Kara | 312e9d2 | 2017-11-15 17:35:05 -0800 | [diff] [blame] | 528 | nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, |
Jan Kara | 67fd707 | 2017-11-15 17:35:19 -0800 | [diff] [blame] | 529 | end, PAGECACHE_TAG_WRITEBACK); |
Jan Kara | 312e9d2 | 2017-11-15 17:35:05 -0800 | [diff] [blame] | 530 | if (!nr_pages) |
| 531 | break; |
| 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | for (i = 0; i < nr_pages; i++) { |
| 534 | struct page *page = pvec.pages[i]; |
| 535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | wait_on_page_writeback(page); |
Jeff Layton | 5e8fcc1 | 2017-07-06 07:02:24 -0400 | [diff] [blame] | 537 | ClearPageError(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | pagevec_release(&pvec); |
| 540 | cond_resched(); |
| 541 | } |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | /** |
| 545 | * filemap_fdatawait_range - wait for writeback to complete |
| 546 | * @mapping: address space structure to wait for |
| 547 | * @start_byte: offset in bytes where the range starts |
| 548 | * @end_byte: offset in bytes where the range ends (inclusive) |
| 549 | * |
| 550 | * Walk the list of under-writeback pages of the given address space |
| 551 | * in the given range and wait for all of them. Check error status of |
| 552 | * the address space and return it. |
| 553 | * |
| 554 | * Since the error status of the address space is cleared by this function, |
| 555 | * callers are responsible for checking the return value and handling and/or |
| 556 | * reporting the error. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 557 | * |
| 558 | * Return: error status of the address space. |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 559 | */ |
| 560 | int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte, |
| 561 | loff_t end_byte) |
| 562 | { |
Jeff Layton | 5e8fcc1 | 2017-07-06 07:02:24 -0400 | [diff] [blame] | 563 | __filemap_fdatawait_range(mapping, start_byte, end_byte); |
| 564 | return filemap_check_errors(mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
Jan Kara | d3bccb6f | 2009-08-17 19:30:27 +0200 | [diff] [blame] | 566 | EXPORT_SYMBOL(filemap_fdatawait_range); |
| 567 | |
| 568 | /** |
Ross Zwisler | aa0bfcd | 2019-06-20 17:05:37 -0400 | [diff] [blame] | 569 | * filemap_fdatawait_range_keep_errors - wait for writeback to complete |
| 570 | * @mapping: address space structure to wait for |
| 571 | * @start_byte: offset in bytes where the range starts |
| 572 | * @end_byte: offset in bytes where the range ends (inclusive) |
| 573 | * |
| 574 | * Walk the list of under-writeback pages of the given address space in the |
| 575 | * given range and wait for all of them. Unlike filemap_fdatawait_range(), |
| 576 | * this function does not clear error status of the address space. |
| 577 | * |
| 578 | * Use this function if callers don't handle errors themselves. Expected |
| 579 | * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2), |
| 580 | * fsfreeze(8) |
| 581 | */ |
| 582 | int filemap_fdatawait_range_keep_errors(struct address_space *mapping, |
| 583 | loff_t start_byte, loff_t end_byte) |
| 584 | { |
| 585 | __filemap_fdatawait_range(mapping, start_byte, end_byte); |
| 586 | return filemap_check_and_keep_errors(mapping); |
| 587 | } |
| 588 | EXPORT_SYMBOL(filemap_fdatawait_range_keep_errors); |
| 589 | |
| 590 | /** |
Jeff Layton | a823e45 | 2017-07-28 07:24:43 -0400 | [diff] [blame] | 591 | * file_fdatawait_range - wait for writeback to complete |
| 592 | * @file: file pointing to address space structure to wait for |
| 593 | * @start_byte: offset in bytes where the range starts |
| 594 | * @end_byte: offset in bytes where the range ends (inclusive) |
| 595 | * |
| 596 | * Walk the list of under-writeback pages of the address space that file |
| 597 | * refers to, in the given range and wait for all of them. Check error |
| 598 | * status of the address space vs. the file->f_wb_err cursor and return it. |
| 599 | * |
| 600 | * Since the error status of the file is advanced by this function, |
| 601 | * callers are responsible for checking the return value and handling and/or |
| 602 | * reporting the error. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 603 | * |
| 604 | * Return: error status of the address space vs. the file->f_wb_err cursor. |
Jeff Layton | a823e45 | 2017-07-28 07:24:43 -0400 | [diff] [blame] | 605 | */ |
| 606 | int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte) |
| 607 | { |
| 608 | struct address_space *mapping = file->f_mapping; |
| 609 | |
| 610 | __filemap_fdatawait_range(mapping, start_byte, end_byte); |
| 611 | return file_check_and_advance_wb_err(file); |
| 612 | } |
| 613 | EXPORT_SYMBOL(file_fdatawait_range); |
| 614 | |
| 615 | /** |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 616 | * filemap_fdatawait_keep_errors - wait for writeback without clearing errors |
| 617 | * @mapping: address space structure to wait for |
| 618 | * |
| 619 | * Walk the list of under-writeback pages of the given address space |
| 620 | * and wait for all of them. Unlike filemap_fdatawait(), this function |
| 621 | * does not clear error status of the address space. |
| 622 | * |
| 623 | * Use this function if callers don't handle errors themselves. Expected |
| 624 | * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2), |
| 625 | * fsfreeze(8) |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 626 | * |
| 627 | * Return: error status of the address space. |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 628 | */ |
Jeff Layton | 76341ca | 2017-07-06 07:02:22 -0400 | [diff] [blame] | 629 | int filemap_fdatawait_keep_errors(struct address_space *mapping) |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 630 | { |
Jeff Layton | ffb959b | 2017-07-31 10:29:38 -0400 | [diff] [blame] | 631 | __filemap_fdatawait_range(mapping, 0, LLONG_MAX); |
Jeff Layton | 76341ca | 2017-07-06 07:02:22 -0400 | [diff] [blame] | 632 | return filemap_check_and_keep_errors(mapping); |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 633 | } |
Jeff Layton | 76341ca | 2017-07-06 07:02:22 -0400 | [diff] [blame] | 634 | EXPORT_SYMBOL(filemap_fdatawait_keep_errors); |
Junichi Nomura | aa750fd | 2015-11-05 18:47:23 -0800 | [diff] [blame] | 635 | |
Konstantin Khlebnikov | 875d91b | 2019-09-23 15:34:48 -0700 | [diff] [blame] | 636 | /* Returns true if writeback might be needed or already in progress. */ |
Jeff Layton | 9326c9b | 2017-07-26 10:21:11 -0400 | [diff] [blame] | 637 | static bool mapping_needs_writeback(struct address_space *mapping) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
Konstantin Khlebnikov | 875d91b | 2019-09-23 15:34:48 -0700 | [diff] [blame] | 639 | return mapping->nrpages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 642 | /** |
Jens Axboe | 63135aa | 2021-04-29 22:55:18 -0700 | [diff] [blame] | 643 | * filemap_range_needs_writeback - check if range potentially needs writeback |
| 644 | * @mapping: address space within which to check |
| 645 | * @start_byte: offset in bytes where the range starts |
| 646 | * @end_byte: offset in bytes where the range ends (inclusive) |
| 647 | * |
| 648 | * Find at least one page in the range supplied, usually used to check if |
| 649 | * direct writing in this range will trigger a writeback. Used by O_DIRECT |
| 650 | * read/write with IOCB_NOWAIT, to see if the caller needs to do |
| 651 | * filemap_write_and_wait_range() before proceeding. |
| 652 | * |
| 653 | * Return: %true if the caller should do filemap_write_and_wait_range() before |
| 654 | * doing O_DIRECT to a page in this range, %false otherwise. |
| 655 | */ |
| 656 | bool filemap_range_needs_writeback(struct address_space *mapping, |
| 657 | loff_t start_byte, loff_t end_byte) |
| 658 | { |
| 659 | XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT); |
| 660 | pgoff_t max = end_byte >> PAGE_SHIFT; |
| 661 | struct page *page; |
| 662 | |
| 663 | if (!mapping_needs_writeback(mapping)) |
| 664 | return false; |
| 665 | if (!mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && |
| 666 | !mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) |
| 667 | return false; |
| 668 | if (end_byte < start_byte) |
| 669 | return false; |
| 670 | |
| 671 | rcu_read_lock(); |
| 672 | xas_for_each(&xas, page, max) { |
| 673 | if (xas_retry(&xas, page)) |
| 674 | continue; |
| 675 | if (xa_is_value(page)) |
| 676 | continue; |
| 677 | if (PageDirty(page) || PageLocked(page) || PageWriteback(page)) |
| 678 | break; |
| 679 | } |
| 680 | rcu_read_unlock(); |
| 681 | return page != NULL; |
| 682 | } |
| 683 | EXPORT_SYMBOL_GPL(filemap_range_needs_writeback); |
| 684 | |
| 685 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 686 | * filemap_write_and_wait_range - write out & wait on a file range |
| 687 | * @mapping: the address_space for the pages |
| 688 | * @lstart: offset in bytes where the range starts |
| 689 | * @lend: offset in bytes where the range ends (inclusive) |
| 690 | * |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 691 | * Write out and wait upon file offsets lstart->lend, inclusive. |
| 692 | * |
mchehab@s-opensource.com | 0e056eb | 2017-03-30 17:11:36 -0300 | [diff] [blame] | 693 | * Note that @lend is inclusive (describes the last byte to be written) so |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 694 | * that this function can be used to write to the very end-of-file (end = -1). |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 695 | * |
| 696 | * Return: error status of the address space. |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 697 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | int filemap_write_and_wait_range(struct address_space *mapping, |
| 699 | loff_t lstart, loff_t lend) |
| 700 | { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 701 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
Jeff Layton | 9326c9b | 2017-07-26 10:21:11 -0400 | [diff] [blame] | 703 | if (mapping_needs_writeback(mapping)) { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 704 | err = __filemap_fdatawrite_range(mapping, lstart, lend, |
| 705 | WB_SYNC_ALL); |
Ira Weiny | ddf8f37 | 2020-01-30 22:12:07 -0800 | [diff] [blame] | 706 | /* |
| 707 | * Even if the above returned error, the pages may be |
| 708 | * written partially (e.g. -ENOSPC), so we wait for it. |
| 709 | * But the -EIO is special case, it may indicate the worst |
| 710 | * thing (e.g. bug) happened, so we avoid waiting for it. |
| 711 | */ |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 712 | if (err != -EIO) { |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 713 | int err2 = filemap_fdatawait_range(mapping, |
| 714 | lstart, lend); |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 715 | if (!err) |
| 716 | err = err2; |
Jeff Layton | cbeaf95 | 2017-07-06 07:02:23 -0400 | [diff] [blame] | 717 | } else { |
| 718 | /* Clear any previously stored errors */ |
| 719 | filemap_check_errors(mapping); |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 720 | } |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 721 | } else { |
| 722 | err = filemap_check_errors(mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 724 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
Chris Mason | f699558 | 2009-04-15 13:22:37 -0400 | [diff] [blame] | 726 | EXPORT_SYMBOL(filemap_write_and_wait_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 728 | void __filemap_set_wb_err(struct address_space *mapping, int err) |
| 729 | { |
Jeff Layton | 3acdfd2 | 2017-07-24 06:22:15 -0400 | [diff] [blame] | 730 | errseq_t eseq = errseq_set(&mapping->wb_err, err); |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 731 | |
| 732 | trace_filemap_set_wb_err(mapping, eseq); |
| 733 | } |
| 734 | EXPORT_SYMBOL(__filemap_set_wb_err); |
| 735 | |
| 736 | /** |
| 737 | * file_check_and_advance_wb_err - report wb error (if any) that was previously |
| 738 | * and advance wb_err to current one |
| 739 | * @file: struct file on which the error is being reported |
| 740 | * |
| 741 | * When userland calls fsync (or something like nfsd does the equivalent), we |
| 742 | * want to report any writeback errors that occurred since the last fsync (or |
| 743 | * since the file was opened if there haven't been any). |
| 744 | * |
| 745 | * Grab the wb_err from the mapping. If it matches what we have in the file, |
| 746 | * then just quickly return 0. The file is all caught up. |
| 747 | * |
| 748 | * If it doesn't match, then take the mapping value, set the "seen" flag in |
| 749 | * it and try to swap it into place. If it works, or another task beat us |
| 750 | * to it with the new value, then update the f_wb_err and return the error |
| 751 | * portion. The error at this point must be reported via proper channels |
| 752 | * (a'la fsync, or NFS COMMIT operation, etc.). |
| 753 | * |
| 754 | * While we handle mapping->wb_err with atomic operations, the f_wb_err |
| 755 | * value is protected by the f_lock since we must ensure that it reflects |
| 756 | * the latest value swapped in for this file descriptor. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 757 | * |
| 758 | * Return: %0 on success, negative error code otherwise. |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 759 | */ |
| 760 | int file_check_and_advance_wb_err(struct file *file) |
| 761 | { |
| 762 | int err = 0; |
| 763 | errseq_t old = READ_ONCE(file->f_wb_err); |
| 764 | struct address_space *mapping = file->f_mapping; |
| 765 | |
| 766 | /* Locklessly handle the common case where nothing has changed */ |
| 767 | if (errseq_check(&mapping->wb_err, old)) { |
| 768 | /* Something changed, must use slow path */ |
| 769 | spin_lock(&file->f_lock); |
| 770 | old = file->f_wb_err; |
| 771 | err = errseq_check_and_advance(&mapping->wb_err, |
| 772 | &file->f_wb_err); |
| 773 | trace_file_check_and_advance_wb_err(file, old); |
| 774 | spin_unlock(&file->f_lock); |
| 775 | } |
Jeff Layton | f4e222c | 2017-10-03 16:15:25 -0700 | [diff] [blame] | 776 | |
| 777 | /* |
| 778 | * We're mostly using this function as a drop in replacement for |
| 779 | * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect |
| 780 | * that the legacy code would have had on these flags. |
| 781 | */ |
| 782 | clear_bit(AS_EIO, &mapping->flags); |
| 783 | clear_bit(AS_ENOSPC, &mapping->flags); |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 784 | return err; |
| 785 | } |
| 786 | EXPORT_SYMBOL(file_check_and_advance_wb_err); |
| 787 | |
| 788 | /** |
| 789 | * file_write_and_wait_range - write out & wait on a file range |
| 790 | * @file: file pointing to address_space with pages |
| 791 | * @lstart: offset in bytes where the range starts |
| 792 | * @lend: offset in bytes where the range ends (inclusive) |
| 793 | * |
| 794 | * Write out and wait upon file offsets lstart->lend, inclusive. |
| 795 | * |
| 796 | * Note that @lend is inclusive (describes the last byte to be written) so |
| 797 | * that this function can be used to write to the very end-of-file (end = -1). |
| 798 | * |
| 799 | * After writing out and waiting on the data, we check and advance the |
| 800 | * f_wb_err cursor to the latest value, and return any errors detected there. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 801 | * |
| 802 | * Return: %0 on success, negative error code otherwise. |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 803 | */ |
| 804 | int file_write_and_wait_range(struct file *file, loff_t lstart, loff_t lend) |
| 805 | { |
| 806 | int err = 0, err2; |
| 807 | struct address_space *mapping = file->f_mapping; |
| 808 | |
Jeff Layton | 9326c9b | 2017-07-26 10:21:11 -0400 | [diff] [blame] | 809 | if (mapping_needs_writeback(mapping)) { |
Jeff Layton | 5660e13 | 2017-07-06 07:02:25 -0400 | [diff] [blame] | 810 | err = __filemap_fdatawrite_range(mapping, lstart, lend, |
| 811 | WB_SYNC_ALL); |
| 812 | /* See comment of filemap_write_and_wait() */ |
| 813 | if (err != -EIO) |
| 814 | __filemap_fdatawait_range(mapping, lstart, lend); |
| 815 | } |
| 816 | err2 = file_check_and_advance_wb_err(file); |
| 817 | if (!err) |
| 818 | err = err2; |
| 819 | return err; |
| 820 | } |
| 821 | EXPORT_SYMBOL(file_write_and_wait_range); |
| 822 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 823 | /** |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 824 | * replace_page_cache_page - replace a pagecache page with a new one |
| 825 | * @old: page to be replaced |
| 826 | * @new: page to replace with |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 827 | * |
| 828 | * This function replaces a page in the pagecache with a new one. On |
| 829 | * success it acquires the pagecache reference for the new page and |
| 830 | * drops it for the old page. Both the old and new pages must be |
| 831 | * locked. This function does not add the new page to the LRU, the |
| 832 | * caller must do that. |
| 833 | * |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 834 | * The remove + add is atomic. This function cannot fail. |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 835 | */ |
Baolin Wang | 1f7ef65 | 2021-02-24 12:01:42 -0800 | [diff] [blame] | 836 | void replace_page_cache_page(struct page *old, struct page *new) |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 837 | { |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 838 | struct address_space *mapping = old->mapping; |
| 839 | void (*freepage)(struct page *) = mapping->a_ops->freepage; |
| 840 | pgoff_t offset = old->index; |
| 841 | XA_STATE(xas, &mapping->i_pages, offset); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 842 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 843 | VM_BUG_ON_PAGE(!PageLocked(old), old); |
| 844 | VM_BUG_ON_PAGE(!PageLocked(new), new); |
| 845 | VM_BUG_ON_PAGE(new->mapping, new); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 846 | |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 847 | get_page(new); |
| 848 | new->mapping = mapping; |
| 849 | new->index = offset; |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 850 | |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 851 | mem_cgroup_migrate(old, new); |
| 852 | |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 853 | xas_lock_irq(&xas); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 854 | xas_store(&xas, new); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 855 | |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 856 | old->mapping = NULL; |
| 857 | /* hugetlb pages do not participate in page cache accounting. */ |
| 858 | if (!PageHuge(old)) |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 859 | __dec_lruvec_page_state(old, NR_FILE_PAGES); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 860 | if (!PageHuge(new)) |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 861 | __inc_lruvec_page_state(new, NR_FILE_PAGES); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 862 | if (PageSwapBacked(old)) |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 863 | __dec_lruvec_page_state(old, NR_SHMEM); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 864 | if (PageSwapBacked(new)) |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 865 | __inc_lruvec_page_state(new, NR_SHMEM); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 866 | xas_unlock_irq(&xas); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 867 | if (freepage) |
| 868 | freepage(old); |
| 869 | put_page(old); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 870 | } |
| 871 | EXPORT_SYMBOL_GPL(replace_page_cache_page); |
| 872 | |
Andrew Morton | 16c0cc0 | 2020-12-11 13:36:27 -0800 | [diff] [blame] | 873 | noinline int __add_to_page_cache_locked(struct page *page, |
Alexei Starovoitov | 76cd617 | 2020-08-27 15:01:10 -0700 | [diff] [blame] | 874 | struct address_space *mapping, |
Linus Torvalds | c4cf498 | 2020-10-16 11:31:55 -0700 | [diff] [blame] | 875 | pgoff_t offset, gfp_t gfp, |
Alexei Starovoitov | 76cd617 | 2020-08-27 15:01:10 -0700 | [diff] [blame] | 876 | void **shadowp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | { |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 878 | XA_STATE(xas, &mapping->i_pages, offset); |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 879 | int huge = PageHuge(page); |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 880 | int error; |
Waiman Long | da74240 | 2021-02-04 18:32:45 -0800 | [diff] [blame] | 881 | bool charged = false; |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 882 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 883 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 884 | VM_BUG_ON_PAGE(PageSwapBacked(page), page); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 885 | mapping_set_update(&xas, mapping); |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 886 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 887 | get_page(page); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 888 | page->mapping = mapping; |
| 889 | page->index = offset; |
| 890 | |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 891 | if (!huge) { |
Dan Schatzberg | 04f94e3 | 2021-06-28 19:38:18 -0700 | [diff] [blame] | 892 | error = mem_cgroup_charge(page, NULL, gfp); |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 893 | if (error) |
| 894 | goto error; |
Waiman Long | da74240 | 2021-02-04 18:32:45 -0800 | [diff] [blame] | 895 | charged = true; |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 896 | } |
| 897 | |
Matthew Wilcox (Oracle) | 198b62f | 2020-10-15 20:05:20 -0700 | [diff] [blame] | 898 | gfp &= GFP_RECLAIM_MASK; |
| 899 | |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 900 | do { |
Matthew Wilcox (Oracle) | 198b62f | 2020-10-15 20:05:20 -0700 | [diff] [blame] | 901 | unsigned int order = xa_get_order(xas.xa, xas.xa_index); |
| 902 | void *entry, *old = NULL; |
| 903 | |
| 904 | if (order > thp_order(page)) |
| 905 | xas_split_alloc(&xas, xa_load(xas.xa, xas.xa_index), |
| 906 | order, gfp); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 907 | xas_lock_irq(&xas); |
Matthew Wilcox (Oracle) | 198b62f | 2020-10-15 20:05:20 -0700 | [diff] [blame] | 908 | xas_for_each_conflict(&xas, entry) { |
| 909 | old = entry; |
| 910 | if (!xa_is_value(entry)) { |
| 911 | xas_set_err(&xas, -EEXIST); |
| 912 | goto unlock; |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | if (old) { |
| 917 | if (shadowp) |
| 918 | *shadowp = old; |
| 919 | /* entry may have been split before we acquired lock */ |
| 920 | order = xa_get_order(xas.xa, xas.xa_index); |
| 921 | if (order > thp_order(page)) { |
| 922 | xas_split(&xas, old, order); |
| 923 | xas_reset(&xas); |
| 924 | } |
| 925 | } |
| 926 | |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 927 | xas_store(&xas, page); |
| 928 | if (xas_error(&xas)) |
| 929 | goto unlock; |
Michal Hocko | 4165b9b4 | 2015-06-24 16:57:24 -0700 | [diff] [blame] | 930 | |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 931 | mapping->nrpages++; |
| 932 | |
| 933 | /* hugetlb pages do not participate in page cache accounting */ |
| 934 | if (!huge) |
Johannes Weiner | 0d1c207 | 2020-06-03 16:01:54 -0700 | [diff] [blame] | 935 | __inc_lruvec_page_state(page, NR_FILE_PAGES); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 936 | unlock: |
| 937 | xas_unlock_irq(&xas); |
Matthew Wilcox (Oracle) | 198b62f | 2020-10-15 20:05:20 -0700 | [diff] [blame] | 938 | } while (xas_nomem(&xas, gfp)); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 939 | |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 940 | if (xas_error(&xas)) { |
| 941 | error = xas_error(&xas); |
Waiman Long | da74240 | 2021-02-04 18:32:45 -0800 | [diff] [blame] | 942 | if (charged) |
| 943 | mem_cgroup_uncharge(page); |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 944 | goto error; |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 945 | } |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 946 | |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 947 | trace_mm_filemap_add_to_page_cache(page); |
| 948 | return 0; |
Matthew Wilcox | 74d6095 | 2017-11-17 10:01:45 -0500 | [diff] [blame] | 949 | error: |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 950 | page->mapping = NULL; |
| 951 | /* Leave page->index set: truncation relies upon it */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 952 | put_page(page); |
Johannes Weiner | 3fea5a4 | 2020-06-03 16:01:41 -0700 | [diff] [blame] | 953 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | } |
Josef Bacik | cfcbfb1 | 2019-05-13 17:21:04 -0700 | [diff] [blame] | 955 | ALLOW_ERROR_INJECTION(__add_to_page_cache_locked, ERRNO); |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 956 | |
| 957 | /** |
| 958 | * add_to_page_cache_locked - add a locked page to the pagecache |
| 959 | * @page: page to add |
| 960 | * @mapping: the page's address_space |
| 961 | * @offset: page index |
| 962 | * @gfp_mask: page allocation mode |
| 963 | * |
| 964 | * This function is used to add a page to the pagecache. It must be locked. |
| 965 | * This function does not add the page to the LRU. The caller must do that. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 966 | * |
| 967 | * Return: %0 on success, negative error code otherwise. |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 968 | */ |
| 969 | int add_to_page_cache_locked(struct page *page, struct address_space *mapping, |
| 970 | pgoff_t offset, gfp_t gfp_mask) |
| 971 | { |
| 972 | return __add_to_page_cache_locked(page, mapping, offset, |
| 973 | gfp_mask, NULL); |
| 974 | } |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 975 | EXPORT_SYMBOL(add_to_page_cache_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
| 977 | int add_to_page_cache_lru(struct page *page, struct address_space *mapping, |
Al Viro | 6daa0e2 | 2005-10-21 03:18:50 -0400 | [diff] [blame] | 978 | pgoff_t offset, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | { |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 980 | void *shadow = NULL; |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 981 | int ret; |
| 982 | |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 983 | __SetPageLocked(page); |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 984 | ret = __add_to_page_cache_locked(page, mapping, offset, |
| 985 | gfp_mask, &shadow); |
| 986 | if (unlikely(ret)) |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 987 | __ClearPageLocked(page); |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 988 | else { |
| 989 | /* |
| 990 | * The page might have been evicted from cache only |
| 991 | * recently, in which case it should be activated like |
| 992 | * any other repeatedly accessed page. |
Rik van Riel | f0281a0 | 2016-05-20 16:56:25 -0700 | [diff] [blame] | 993 | * The exception is pages getting rewritten; evicting other |
| 994 | * data from the working set, only to cache data that will |
| 995 | * get overwritten with something else, is a waste of memory. |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 996 | */ |
Johannes Weiner | 1899ad1 | 2018-10-26 15:06:04 -0700 | [diff] [blame] | 997 | WARN_ON_ONCE(PageActive(page)); |
| 998 | if (!(gfp_mask & __GFP_WRITE) && shadow) |
| 999 | workingset_refault(page, shadow); |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 1000 | lru_cache_add(page); |
| 1001 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | return ret; |
| 1003 | } |
Evgeniy Polyakov | 18bc0bb | 2009-02-09 17:02:42 +0300 | [diff] [blame] | 1004 | EXPORT_SYMBOL_GPL(add_to_page_cache_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1006 | #ifdef CONFIG_NUMA |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 1007 | struct page *__page_cache_alloc(gfp_t gfp) |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1008 | { |
Miao Xie | c0ff745 | 2010-05-24 14:32:08 -0700 | [diff] [blame] | 1009 | int n; |
| 1010 | struct page *page; |
| 1011 | |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1012 | if (cpuset_do_page_mem_spread()) { |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 1013 | unsigned int cpuset_mems_cookie; |
| 1014 | do { |
Mel Gorman | d26914d | 2014-04-03 14:47:24 -0700 | [diff] [blame] | 1015 | cpuset_mems_cookie = read_mems_allowed_begin(); |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 1016 | n = cpuset_mem_spread_node(); |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 1017 | page = __alloc_pages_node(n, gfp, 0); |
Mel Gorman | d26914d | 2014-04-03 14:47:24 -0700 | [diff] [blame] | 1018 | } while (!page && read_mems_allowed_retry(cpuset_mems_cookie)); |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 1019 | |
Miao Xie | c0ff745 | 2010-05-24 14:32:08 -0700 | [diff] [blame] | 1020 | return page; |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1021 | } |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 1022 | return alloc_pages(gfp, 0); |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1023 | } |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 1024 | EXPORT_SYMBOL(__page_cache_alloc); |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 1025 | #endif |
| 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | /* |
Jan Kara | 7506ae6 | 2021-05-24 13:02:30 +0200 | [diff] [blame] | 1028 | * filemap_invalidate_lock_two - lock invalidate_lock for two mappings |
| 1029 | * |
| 1030 | * Lock exclusively invalidate_lock of any passed mapping that is not NULL. |
| 1031 | * |
| 1032 | * @mapping1: the first mapping to lock |
| 1033 | * @mapping2: the second mapping to lock |
| 1034 | */ |
| 1035 | void filemap_invalidate_lock_two(struct address_space *mapping1, |
| 1036 | struct address_space *mapping2) |
| 1037 | { |
| 1038 | if (mapping1 > mapping2) |
| 1039 | swap(mapping1, mapping2); |
| 1040 | if (mapping1) |
| 1041 | down_write(&mapping1->invalidate_lock); |
| 1042 | if (mapping2 && mapping1 != mapping2) |
| 1043 | down_write_nested(&mapping2->invalidate_lock, 1); |
| 1044 | } |
| 1045 | EXPORT_SYMBOL(filemap_invalidate_lock_two); |
| 1046 | |
| 1047 | /* |
| 1048 | * filemap_invalidate_unlock_two - unlock invalidate_lock for two mappings |
| 1049 | * |
| 1050 | * Unlock exclusive invalidate_lock of any passed mapping that is not NULL. |
| 1051 | * |
| 1052 | * @mapping1: the first mapping to unlock |
| 1053 | * @mapping2: the second mapping to unlock |
| 1054 | */ |
| 1055 | void filemap_invalidate_unlock_two(struct address_space *mapping1, |
| 1056 | struct address_space *mapping2) |
| 1057 | { |
| 1058 | if (mapping1) |
| 1059 | up_write(&mapping1->invalidate_lock); |
| 1060 | if (mapping2 && mapping1 != mapping2) |
| 1061 | up_write(&mapping2->invalidate_lock); |
| 1062 | } |
| 1063 | EXPORT_SYMBOL(filemap_invalidate_unlock_two); |
| 1064 | |
| 1065 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | * In order to wait for pages to become available there must be |
| 1067 | * waitqueues associated with pages. By using a hash table of |
| 1068 | * waitqueues where the bucket discipline is to maintain all |
| 1069 | * waiters on the same queue and wake all when any of the pages |
| 1070 | * become available, and for the woken contexts to check to be |
| 1071 | * sure the appropriate page became available, this saves space |
| 1072 | * at a cost of "thundering herd" phenomena during rare hash |
| 1073 | * collisions. |
| 1074 | */ |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1075 | #define PAGE_WAIT_TABLE_BITS 8 |
| 1076 | #define PAGE_WAIT_TABLE_SIZE (1 << PAGE_WAIT_TABLE_BITS) |
| 1077 | static wait_queue_head_t page_wait_table[PAGE_WAIT_TABLE_SIZE] __cacheline_aligned; |
| 1078 | |
| 1079 | static wait_queue_head_t *page_waitqueue(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | { |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1081 | return &page_wait_table[hash_ptr(page, PAGE_WAIT_TABLE_BITS)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | } |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1083 | |
| 1084 | void __init pagecache_init(void) |
| 1085 | { |
| 1086 | int i; |
| 1087 | |
| 1088 | for (i = 0; i < PAGE_WAIT_TABLE_SIZE; i++) |
| 1089 | init_waitqueue_head(&page_wait_table[i]); |
| 1090 | |
| 1091 | page_writeback_init(); |
| 1092 | } |
| 1093 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1094 | /* |
| 1095 | * The page wait code treats the "wait->flags" somewhat unusually, because |
Linus Torvalds | 5868ec2 | 2020-09-20 10:38:47 -0700 | [diff] [blame] | 1096 | * we have multiple different kinds of waits, not just the usual "exclusive" |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1097 | * one. |
| 1098 | * |
| 1099 | * We have: |
| 1100 | * |
| 1101 | * (a) no special bits set: |
| 1102 | * |
| 1103 | * We're just waiting for the bit to be released, and when a waker |
| 1104 | * calls the wakeup function, we set WQ_FLAG_WOKEN and wake it up, |
| 1105 | * and remove it from the wait queue. |
| 1106 | * |
| 1107 | * Simple and straightforward. |
| 1108 | * |
| 1109 | * (b) WQ_FLAG_EXCLUSIVE: |
| 1110 | * |
| 1111 | * The waiter is waiting to get the lock, and only one waiter should |
| 1112 | * be woken up to avoid any thundering herd behavior. We'll set the |
| 1113 | * WQ_FLAG_WOKEN bit, wake it up, and remove it from the wait queue. |
| 1114 | * |
| 1115 | * This is the traditional exclusive wait. |
| 1116 | * |
Linus Torvalds | 5868ec2 | 2020-09-20 10:38:47 -0700 | [diff] [blame] | 1117 | * (c) WQ_FLAG_EXCLUSIVE | WQ_FLAG_CUSTOM: |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1118 | * |
| 1119 | * The waiter is waiting to get the bit, and additionally wants the |
| 1120 | * lock to be transferred to it for fair lock behavior. If the lock |
| 1121 | * cannot be taken, we stop walking the wait queue without waking |
| 1122 | * the waiter. |
| 1123 | * |
| 1124 | * This is the "fair lock handoff" case, and in addition to setting |
| 1125 | * WQ_FLAG_WOKEN, we set WQ_FLAG_DONE to let the waiter easily see |
| 1126 | * that it now has the lock. |
| 1127 | */ |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 1128 | static int wake_page_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *arg) |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1129 | { |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1130 | unsigned int flags; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1131 | struct wait_page_key *key = arg; |
| 1132 | struct wait_page_queue *wait_page |
| 1133 | = container_of(wait, struct wait_page_queue, wait); |
| 1134 | |
Linus Torvalds | cdc8fcb | 2020-08-03 13:01:22 -0700 | [diff] [blame] | 1135 | if (!wake_page_match(wait_page, key)) |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1136 | return 0; |
Linus Torvalds | 3510ca2 | 2017-08-27 13:55:12 -0700 | [diff] [blame] | 1137 | |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1138 | /* |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1139 | * If it's a lock handoff wait, we get the bit for it, and |
| 1140 | * stop walking (and do not wake it up) if we can't. |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1141 | */ |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1142 | flags = wait->flags; |
| 1143 | if (flags & WQ_FLAG_EXCLUSIVE) { |
| 1144 | if (test_bit(key->bit_nr, &key->page->flags)) |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1145 | return -1; |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1146 | if (flags & WQ_FLAG_CUSTOM) { |
| 1147 | if (test_and_set_bit(key->bit_nr, &key->page->flags)) |
| 1148 | return -1; |
| 1149 | flags |= WQ_FLAG_DONE; |
| 1150 | } |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1151 | } |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1152 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1153 | /* |
| 1154 | * We are holding the wait-queue lock, but the waiter that |
| 1155 | * is waiting for this will be checking the flags without |
| 1156 | * any locking. |
| 1157 | * |
| 1158 | * So update the flags atomically, and wake up the waiter |
| 1159 | * afterwards to avoid any races. This store-release pairs |
| 1160 | * with the load-acquire in wait_on_page_bit_common(). |
| 1161 | */ |
| 1162 | smp_store_release(&wait->flags, flags | WQ_FLAG_WOKEN); |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1163 | wake_up_state(wait->private, mode); |
| 1164 | |
| 1165 | /* |
| 1166 | * Ok, we have successfully done what we're waiting for, |
| 1167 | * and we can unconditionally remove the wait entry. |
| 1168 | * |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1169 | * Note that this pairs with the "finish_wait()" in the |
| 1170 | * waiter, and has to be the absolute last thing we do. |
| 1171 | * After this list_del_init(&wait->entry) the wait entry |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1172 | * might be de-allocated and the process might even have |
| 1173 | * exited. |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1174 | */ |
Linus Torvalds | c6fe44d | 2020-07-23 12:33:41 -0700 | [diff] [blame] | 1175 | list_del_init_careful(&wait->entry); |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1176 | return (flags & WQ_FLAG_EXCLUSIVE) != 0; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1177 | } |
| 1178 | |
Nicholas Piggin | 74d81bf | 2017-02-22 15:44:41 -0800 | [diff] [blame] | 1179 | static void wake_up_page_bit(struct page *page, int bit_nr) |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1180 | { |
| 1181 | wait_queue_head_t *q = page_waitqueue(page); |
| 1182 | struct wait_page_key key; |
| 1183 | unsigned long flags; |
Tim Chen | 11a19c7 | 2017-08-25 09:13:55 -0700 | [diff] [blame] | 1184 | wait_queue_entry_t bookmark; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1185 | |
| 1186 | key.page = page; |
| 1187 | key.bit_nr = bit_nr; |
| 1188 | key.page_match = 0; |
| 1189 | |
Tim Chen | 11a19c7 | 2017-08-25 09:13:55 -0700 | [diff] [blame] | 1190 | bookmark.flags = 0; |
| 1191 | bookmark.private = NULL; |
| 1192 | bookmark.func = NULL; |
| 1193 | INIT_LIST_HEAD(&bookmark.entry); |
| 1194 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1195 | spin_lock_irqsave(&q->lock, flags); |
Tim Chen | 11a19c7 | 2017-08-25 09:13:55 -0700 | [diff] [blame] | 1196 | __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark); |
| 1197 | |
| 1198 | while (bookmark.flags & WQ_FLAG_BOOKMARK) { |
| 1199 | /* |
| 1200 | * Take a breather from holding the lock, |
| 1201 | * allow pages that finish wake up asynchronously |
| 1202 | * to acquire the lock and remove themselves |
| 1203 | * from wait queue |
| 1204 | */ |
| 1205 | spin_unlock_irqrestore(&q->lock, flags); |
| 1206 | cpu_relax(); |
| 1207 | spin_lock_irqsave(&q->lock, flags); |
| 1208 | __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark); |
| 1209 | } |
| 1210 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1211 | /* |
| 1212 | * It is possible for other pages to have collided on the waitqueue |
| 1213 | * hash, so in that case check for a page match. That prevents a long- |
| 1214 | * term waiter |
| 1215 | * |
| 1216 | * It is still possible to miss a case here, when we woke page waiters |
| 1217 | * and removed them from the waitqueue, but there are still other |
| 1218 | * page waiters. |
| 1219 | */ |
| 1220 | if (!waitqueue_active(q) || !key.page_match) { |
| 1221 | ClearPageWaiters(page); |
| 1222 | /* |
| 1223 | * It's possible to miss clearing Waiters here, when we woke |
| 1224 | * our page waiters, but the hashed waitqueue has waiters for |
| 1225 | * other pages on it. |
| 1226 | * |
| 1227 | * That's okay, it's a rare case. The next waker will clear it. |
| 1228 | */ |
| 1229 | } |
| 1230 | spin_unlock_irqrestore(&q->lock, flags); |
| 1231 | } |
Nicholas Piggin | 74d81bf | 2017-02-22 15:44:41 -0800 | [diff] [blame] | 1232 | |
| 1233 | static void wake_up_page(struct page *page, int bit) |
| 1234 | { |
| 1235 | if (!PageWaiters(page)) |
| 1236 | return; |
| 1237 | wake_up_page_bit(page, bit); |
| 1238 | } |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1239 | |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1240 | /* |
| 1241 | * A choice of three behaviors for wait_on_page_bit_common(): |
| 1242 | */ |
| 1243 | enum behavior { |
| 1244 | EXCLUSIVE, /* Hold ref to page and take the bit when woken, like |
| 1245 | * __lock_page() waiting on then setting PG_locked. |
| 1246 | */ |
| 1247 | SHARED, /* Hold ref to page and check the bit when woken, like |
| 1248 | * wait_on_page_writeback() waiting on PG_writeback. |
| 1249 | */ |
| 1250 | DROP, /* Drop ref to page before wait, no check when woken, |
| 1251 | * like put_and_wait_on_page_locked() on PG_locked. |
| 1252 | */ |
| 1253 | }; |
| 1254 | |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1255 | /* |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1256 | * Attempt to check (or get) the page bit, and mark us done |
| 1257 | * if successful. |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1258 | */ |
| 1259 | static inline bool trylock_page_bit_common(struct page *page, int bit_nr, |
| 1260 | struct wait_queue_entry *wait) |
| 1261 | { |
| 1262 | if (wait->flags & WQ_FLAG_EXCLUSIVE) { |
| 1263 | if (test_and_set_bit(bit_nr, &page->flags)) |
| 1264 | return false; |
| 1265 | } else if (test_bit(bit_nr, &page->flags)) |
| 1266 | return false; |
| 1267 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1268 | wait->flags |= WQ_FLAG_WOKEN | WQ_FLAG_DONE; |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1269 | return true; |
| 1270 | } |
| 1271 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1272 | /* How many times do we accept lock stealing from under a waiter? */ |
| 1273 | int sysctl_page_lock_unfairness = 5; |
| 1274 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1275 | static inline int wait_on_page_bit_common(wait_queue_head_t *q, |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1276 | struct page *page, int bit_nr, int state, enum behavior behavior) |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1277 | { |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1278 | int unfairness = sysctl_page_lock_unfairness; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1279 | struct wait_page_queue wait_page; |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 1280 | wait_queue_entry_t *wait = &wait_page.wait; |
Johannes Weiner | b1d29ba | 2018-10-26 15:06:08 -0700 | [diff] [blame] | 1281 | bool thrashing = false; |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1282 | bool delayacct = false; |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1283 | unsigned long pflags; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1284 | |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1285 | if (bit_nr == PG_locked && |
Johannes Weiner | b1d29ba | 2018-10-26 15:06:08 -0700 | [diff] [blame] | 1286 | !PageUptodate(page) && PageWorkingset(page)) { |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1287 | if (!PageSwapBacked(page)) { |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1288 | delayacct_thrashing_start(); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1289 | delayacct = true; |
| 1290 | } |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1291 | psi_memstall_enter(&pflags); |
Johannes Weiner | b1d29ba | 2018-10-26 15:06:08 -0700 | [diff] [blame] | 1292 | thrashing = true; |
| 1293 | } |
| 1294 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1295 | init_wait(wait); |
| 1296 | wait->func = wake_page_function; |
| 1297 | wait_page.page = page; |
| 1298 | wait_page.bit_nr = bit_nr; |
| 1299 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1300 | repeat: |
| 1301 | wait->flags = 0; |
| 1302 | if (behavior == EXCLUSIVE) { |
| 1303 | wait->flags = WQ_FLAG_EXCLUSIVE; |
| 1304 | if (--unfairness < 0) |
| 1305 | wait->flags |= WQ_FLAG_CUSTOM; |
| 1306 | } |
| 1307 | |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1308 | /* |
| 1309 | * Do one last check whether we can get the |
| 1310 | * page bit synchronously. |
| 1311 | * |
| 1312 | * Do the SetPageWaiters() marking before that |
| 1313 | * to let any waker we _just_ missed know they |
| 1314 | * need to wake us up (otherwise they'll never |
| 1315 | * even go to the slow case that looks at the |
| 1316 | * page queue), and add ourselves to the wait |
| 1317 | * queue if we need to sleep. |
| 1318 | * |
| 1319 | * This part needs to be done under the queue |
| 1320 | * lock to avoid races. |
| 1321 | */ |
| 1322 | spin_lock_irq(&q->lock); |
| 1323 | SetPageWaiters(page); |
| 1324 | if (!trylock_page_bit_common(page, bit_nr, wait)) |
| 1325 | __add_wait_queue_entry_tail(q, wait); |
| 1326 | spin_unlock_irq(&q->lock); |
| 1327 | |
| 1328 | /* |
| 1329 | * From now on, all the logic will be based on |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1330 | * the WQ_FLAG_WOKEN and WQ_FLAG_DONE flag, to |
| 1331 | * see whether the page bit testing has already |
| 1332 | * been done by the wake function. |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1333 | * |
| 1334 | * We can drop our reference to the page. |
| 1335 | */ |
| 1336 | if (behavior == DROP) |
| 1337 | put_page(page); |
| 1338 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1339 | /* |
| 1340 | * Note that until the "finish_wait()", or until |
| 1341 | * we see the WQ_FLAG_WOKEN flag, we need to |
| 1342 | * be very careful with the 'wait->flags', because |
| 1343 | * we may race with a waker that sets them. |
| 1344 | */ |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1345 | for (;;) { |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1346 | unsigned int flags; |
| 1347 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1348 | set_current_state(state); |
| 1349 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1350 | /* Loop until we've been woken or interrupted */ |
| 1351 | flags = smp_load_acquire(&wait->flags); |
| 1352 | if (!(flags & WQ_FLAG_WOKEN)) { |
| 1353 | if (signal_pending_state(state, current)) |
| 1354 | break; |
| 1355 | |
| 1356 | io_schedule(); |
| 1357 | continue; |
| 1358 | } |
| 1359 | |
| 1360 | /* If we were non-exclusive, we're done */ |
| 1361 | if (behavior != EXCLUSIVE) |
Linus Torvalds | a8b169a | 2017-08-27 16:25:09 -0700 | [diff] [blame] | 1362 | break; |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1363 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1364 | /* If the waker got the lock for us, we're done */ |
| 1365 | if (flags & WQ_FLAG_DONE) |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1366 | break; |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1367 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1368 | /* |
| 1369 | * Otherwise, if we're getting the lock, we need to |
| 1370 | * try to get it ourselves. |
| 1371 | * |
| 1372 | * And if that fails, we'll have to retry this all. |
| 1373 | */ |
| 1374 | if (unlikely(test_and_set_bit(bit_nr, &page->flags))) |
| 1375 | goto repeat; |
| 1376 | |
| 1377 | wait->flags |= WQ_FLAG_DONE; |
| 1378 | break; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1379 | } |
| 1380 | |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1381 | /* |
| 1382 | * If a signal happened, this 'finish_wait()' may remove the last |
| 1383 | * waiter from the wait-queues, but the PageWaiters bit will remain |
| 1384 | * set. That's ok. The next wakeup will take care of it, and trying |
| 1385 | * to do it here would be difficult and prone to races. |
| 1386 | */ |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1387 | finish_wait(q, wait); |
| 1388 | |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1389 | if (thrashing) { |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1390 | if (delayacct) |
Johannes Weiner | eb41468 | 2018-10-26 15:06:27 -0700 | [diff] [blame] | 1391 | delayacct_thrashing_end(); |
| 1392 | psi_memstall_leave(&pflags); |
| 1393 | } |
Johannes Weiner | b1d29ba | 2018-10-26 15:06:08 -0700 | [diff] [blame] | 1394 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1395 | /* |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1396 | * NOTE! The wait->flags weren't stable until we've done the |
| 1397 | * 'finish_wait()', and we could have exited the loop above due |
| 1398 | * to a signal, and had a wakeup event happen after the signal |
| 1399 | * test but before the 'finish_wait()'. |
| 1400 | * |
| 1401 | * So only after the finish_wait() can we reliably determine |
| 1402 | * if we got woken up or not, so we can now figure out the final |
| 1403 | * return value based on that state without races. |
| 1404 | * |
| 1405 | * Also note that WQ_FLAG_WOKEN is sufficient for a non-exclusive |
| 1406 | * waiter, but an exclusive one requires WQ_FLAG_DONE. |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1407 | */ |
Linus Torvalds | 5ef64cc | 2020-09-13 14:05:35 -0700 | [diff] [blame] | 1408 | if (behavior == EXCLUSIVE) |
| 1409 | return wait->flags & WQ_FLAG_DONE ? 0 : -EINTR; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1410 | |
Linus Torvalds | 2a9127f | 2020-07-23 10:16:49 -0700 | [diff] [blame] | 1411 | return wait->flags & WQ_FLAG_WOKEN ? 0 : -EINTR; |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1412 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 1414 | void wait_on_page_bit(struct page *page, int bit_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | { |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1416 | wait_queue_head_t *q = page_waitqueue(page); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1417 | wait_on_page_bit_common(q, page, bit_nr, TASK_UNINTERRUPTIBLE, SHARED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | } |
| 1419 | EXPORT_SYMBOL(wait_on_page_bit); |
| 1420 | |
KOSAKI Motohiro | f62e00c | 2011-05-24 17:11:29 -0700 | [diff] [blame] | 1421 | int wait_on_page_bit_killable(struct page *page, int bit_nr) |
| 1422 | { |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1423 | wait_queue_head_t *q = page_waitqueue(page); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1424 | return wait_on_page_bit_common(q, page, bit_nr, TASK_KILLABLE, SHARED); |
KOSAKI Motohiro | f62e00c | 2011-05-24 17:11:29 -0700 | [diff] [blame] | 1425 | } |
David Howells | 4343d00 | 2017-11-02 15:27:52 +0000 | [diff] [blame] | 1426 | EXPORT_SYMBOL(wait_on_page_bit_killable); |
KOSAKI Motohiro | f62e00c | 2011-05-24 17:11:29 -0700 | [diff] [blame] | 1427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | /** |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1429 | * put_and_wait_on_page_locked - Drop a reference and wait for it to be unlocked |
| 1430 | * @page: The page to wait for. |
Matthew Wilcox (Oracle) | 4805462 | 2021-02-24 12:02:02 -0800 | [diff] [blame] | 1431 | * @state: The sleep state (TASK_KILLABLE, TASK_UNINTERRUPTIBLE, etc). |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1432 | * |
| 1433 | * The caller should hold a reference on @page. They expect the page to |
| 1434 | * become unlocked relatively soon, but do not wish to hold up migration |
| 1435 | * (for example) by holding the reference while waiting for the page to |
| 1436 | * come unlocked. After this function returns, the caller should not |
| 1437 | * dereference @page. |
Matthew Wilcox (Oracle) | 4805462 | 2021-02-24 12:02:02 -0800 | [diff] [blame] | 1438 | * |
| 1439 | * Return: 0 if the page was unlocked or -EINTR if interrupted by a signal. |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1440 | */ |
Matthew Wilcox (Oracle) | 4805462 | 2021-02-24 12:02:02 -0800 | [diff] [blame] | 1441 | int put_and_wait_on_page_locked(struct page *page, int state) |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1442 | { |
| 1443 | wait_queue_head_t *q; |
| 1444 | |
| 1445 | page = compound_head(page); |
| 1446 | q = page_waitqueue(page); |
Matthew Wilcox (Oracle) | 4805462 | 2021-02-24 12:02:02 -0800 | [diff] [blame] | 1447 | return wait_on_page_bit_common(q, page, PG_locked, state, DROP); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1448 | } |
| 1449 | |
| 1450 | /** |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 1451 | * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue |
Randy Dunlap | 697f619 | 2009-04-13 14:39:54 -0700 | [diff] [blame] | 1452 | * @page: Page defining the wait queue of interest |
| 1453 | * @waiter: Waiter to add to the queue |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 1454 | * |
| 1455 | * Add an arbitrary @waiter to the wait queue for the nominated @page. |
| 1456 | */ |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 1457 | void add_page_wait_queue(struct page *page, wait_queue_entry_t *waiter) |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 1458 | { |
| 1459 | wait_queue_head_t *q = page_waitqueue(page); |
| 1460 | unsigned long flags; |
| 1461 | |
| 1462 | spin_lock_irqsave(&q->lock, flags); |
Linus Torvalds | 9c3a815 | 2017-08-28 16:45:40 -0700 | [diff] [blame] | 1463 | __add_wait_queue_entry_tail(q, waiter); |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1464 | SetPageWaiters(page); |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 1465 | spin_unlock_irqrestore(&q->lock, flags); |
| 1466 | } |
| 1467 | EXPORT_SYMBOL_GPL(add_page_wait_queue); |
| 1468 | |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1469 | #ifndef clear_bit_unlock_is_negative_byte |
| 1470 | |
| 1471 | /* |
| 1472 | * PG_waiters is the high bit in the same byte as PG_lock. |
| 1473 | * |
| 1474 | * On x86 (and on many other architectures), we can clear PG_lock and |
| 1475 | * test the sign bit at the same time. But if the architecture does |
| 1476 | * not support that special operation, we just do this all by hand |
| 1477 | * instead. |
| 1478 | * |
| 1479 | * The read of PG_waiters has to be after (or concurrently with) PG_locked |
Ethon Paul | ffceeb6 | 2020-06-04 16:49:22 -0700 | [diff] [blame] | 1480 | * being cleared, but a memory barrier should be unnecessary since it is |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1481 | * in the same byte as PG_locked. |
| 1482 | */ |
| 1483 | static inline bool clear_bit_unlock_is_negative_byte(long nr, volatile void *mem) |
| 1484 | { |
| 1485 | clear_bit_unlock(nr, mem); |
| 1486 | /* smp_mb__after_atomic(); */ |
Olof Johansson | 98473f9 | 2016-12-29 14:16:07 -0800 | [diff] [blame] | 1487 | return test_bit(PG_waiters, mem); |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | #endif |
| 1491 | |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 1492 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1493 | * unlock_page - unlock a locked page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | * @page: the page |
| 1495 | * |
Miaohe Lin | 0e9aa67 | 2020-10-15 20:09:58 -0700 | [diff] [blame] | 1496 | * Unlocks the page and wakes up sleepers in wait_on_page_locked(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | * Also wakes sleepers in wait_on_page_writeback() because the wakeup |
Masanari Iida | da3dae5 | 2014-09-09 01:27:23 +0900 | [diff] [blame] | 1498 | * mechanism between PageLocked pages and PageWriteback pages is shared. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep. |
| 1500 | * |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1501 | * Note that this depends on PG_waiters being the sign bit in the byte |
| 1502 | * that contains PG_locked - thus the BUILD_BUG_ON(). That allows us to |
| 1503 | * clear the PG_locked bit and test PG_waiters at the same time fairly |
| 1504 | * portably (architectures that do LL/SC can test any bit, while x86 can |
| 1505 | * test the sign bit). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 1507 | void unlock_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | { |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1509 | BUILD_BUG_ON(PG_waiters != 7); |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 1510 | page = compound_head(page); |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1511 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Linus Torvalds | b91e130 | 2016-12-27 11:40:38 -0800 | [diff] [blame] | 1512 | if (clear_bit_unlock_is_negative_byte(PG_locked, &page->flags)) |
| 1513 | wake_up_page_bit(page, PG_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | } |
| 1515 | EXPORT_SYMBOL(unlock_page); |
| 1516 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1517 | /** |
David Howells | 73e10de | 2020-02-10 10:00:21 +0000 | [diff] [blame] | 1518 | * end_page_private_2 - Clear PG_private_2 and release any waiters |
| 1519 | * @page: The page |
| 1520 | * |
| 1521 | * Clear the PG_private_2 bit on a page and wake up any sleepers waiting for |
| 1522 | * this. The page ref held for PG_private_2 being set is released. |
| 1523 | * |
| 1524 | * This is, for example, used when a netfs page is being written to a local |
| 1525 | * disk cache, thereby allowing writes to the cache for the same page to be |
| 1526 | * serialised. |
| 1527 | */ |
| 1528 | void end_page_private_2(struct page *page) |
| 1529 | { |
| 1530 | page = compound_head(page); |
| 1531 | VM_BUG_ON_PAGE(!PagePrivate2(page), page); |
| 1532 | clear_bit_unlock(PG_private_2, &page->flags); |
| 1533 | wake_up_page_bit(page, PG_private_2); |
| 1534 | put_page(page); |
| 1535 | } |
| 1536 | EXPORT_SYMBOL(end_page_private_2); |
| 1537 | |
| 1538 | /** |
| 1539 | * wait_on_page_private_2 - Wait for PG_private_2 to be cleared on a page |
| 1540 | * @page: The page to wait on |
| 1541 | * |
| 1542 | * Wait for PG_private_2 (aka PG_fscache) to be cleared on a page. |
| 1543 | */ |
| 1544 | void wait_on_page_private_2(struct page *page) |
| 1545 | { |
| 1546 | page = compound_head(page); |
| 1547 | while (PagePrivate2(page)) |
| 1548 | wait_on_page_bit(page, PG_private_2); |
| 1549 | } |
| 1550 | EXPORT_SYMBOL(wait_on_page_private_2); |
| 1551 | |
| 1552 | /** |
| 1553 | * wait_on_page_private_2_killable - Wait for PG_private_2 to be cleared on a page |
| 1554 | * @page: The page to wait on |
| 1555 | * |
| 1556 | * Wait for PG_private_2 (aka PG_fscache) to be cleared on a page or until a |
| 1557 | * fatal signal is received by the calling task. |
| 1558 | * |
| 1559 | * Return: |
| 1560 | * - 0 if successful. |
| 1561 | * - -EINTR if a fatal signal was encountered. |
| 1562 | */ |
| 1563 | int wait_on_page_private_2_killable(struct page *page) |
| 1564 | { |
| 1565 | int ret = 0; |
| 1566 | |
| 1567 | page = compound_head(page); |
| 1568 | while (PagePrivate2(page)) { |
| 1569 | ret = wait_on_page_bit_killable(page, PG_private_2); |
| 1570 | if (ret < 0) |
| 1571 | break; |
| 1572 | } |
| 1573 | |
| 1574 | return ret; |
| 1575 | } |
| 1576 | EXPORT_SYMBOL(wait_on_page_private_2_killable); |
| 1577 | |
| 1578 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1579 | * end_page_writeback - end writeback against a page |
| 1580 | * @page: the page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | */ |
| 1582 | void end_page_writeback(struct page *page) |
| 1583 | { |
Mel Gorman | 888cf2d | 2014-06-04 16:10:34 -0700 | [diff] [blame] | 1584 | /* |
| 1585 | * TestClearPageReclaim could be used here but it is an atomic |
| 1586 | * operation and overkill in this particular case. Failing to |
| 1587 | * shuffle a page marked for immediate reclaim is too mild to |
| 1588 | * justify taking an atomic operation penalty at the end of |
| 1589 | * ever page writeback. |
| 1590 | */ |
| 1591 | if (PageReclaim(page)) { |
| 1592 | ClearPageReclaim(page); |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 1593 | rotate_reclaimable_page(page); |
Mel Gorman | 888cf2d | 2014-06-04 16:10:34 -0700 | [diff] [blame] | 1594 | } |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 1595 | |
Hugh Dickins | 073861e | 2020-11-24 08:46:43 -0800 | [diff] [blame] | 1596 | /* |
| 1597 | * Writeback does not hold a page reference of its own, relying |
| 1598 | * on truncation to wait for the clearing of PG_writeback. |
| 1599 | * But here we must make sure that the page is not freed and |
| 1600 | * reused before the wake_up_page(). |
| 1601 | */ |
| 1602 | get_page(page); |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 1603 | if (!test_clear_page_writeback(page)) |
| 1604 | BUG(); |
| 1605 | |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1606 | smp_mb__after_atomic(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | wake_up_page(page, PG_writeback); |
Hugh Dickins | 073861e | 2020-11-24 08:46:43 -0800 | [diff] [blame] | 1608 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | } |
| 1610 | EXPORT_SYMBOL(end_page_writeback); |
| 1611 | |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1612 | /* |
| 1613 | * After completing I/O on a page, call this routine to update the page |
| 1614 | * flags appropriately |
| 1615 | */ |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 1616 | void page_endio(struct page *page, bool is_write, int err) |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1617 | { |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 1618 | if (!is_write) { |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1619 | if (!err) { |
| 1620 | SetPageUptodate(page); |
| 1621 | } else { |
| 1622 | ClearPageUptodate(page); |
| 1623 | SetPageError(page); |
| 1624 | } |
| 1625 | unlock_page(page); |
Mike Christie | abf5454 | 2016-08-04 14:23:34 -0600 | [diff] [blame] | 1626 | } else { |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1627 | if (err) { |
Minchan Kim | dd8416c | 2017-02-24 14:59:59 -0800 | [diff] [blame] | 1628 | struct address_space *mapping; |
| 1629 | |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1630 | SetPageError(page); |
Minchan Kim | dd8416c | 2017-02-24 14:59:59 -0800 | [diff] [blame] | 1631 | mapping = page_mapping(page); |
| 1632 | if (mapping) |
| 1633 | mapping_set_error(mapping, err); |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 1634 | } |
| 1635 | end_page_writeback(page); |
| 1636 | } |
| 1637 | } |
| 1638 | EXPORT_SYMBOL_GPL(page_endio); |
| 1639 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1640 | /** |
| 1641 | * __lock_page - get a lock on the page, assuming we need to sleep to get it |
Randy Dunlap | 8706675 | 2017-02-22 15:44:44 -0800 | [diff] [blame] | 1642 | * @__page: the page to lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | */ |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1644 | void __lock_page(struct page *__page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | { |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1646 | struct page *page = compound_head(__page); |
| 1647 | wait_queue_head_t *q = page_waitqueue(page); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1648 | wait_on_page_bit_common(q, page, PG_locked, TASK_UNINTERRUPTIBLE, |
| 1649 | EXCLUSIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | } |
| 1651 | EXPORT_SYMBOL(__lock_page); |
| 1652 | |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1653 | int __lock_page_killable(struct page *__page) |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 1654 | { |
Nicholas Piggin | 6290602 | 2016-12-25 13:00:30 +1000 | [diff] [blame] | 1655 | struct page *page = compound_head(__page); |
| 1656 | wait_queue_head_t *q = page_waitqueue(page); |
Hugh Dickins | 9a1ea43 | 2018-12-28 00:36:14 -0800 | [diff] [blame] | 1657 | return wait_on_page_bit_common(q, page, PG_locked, TASK_KILLABLE, |
| 1658 | EXCLUSIVE); |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 1659 | } |
Evgeniy Polyakov | 18bc0bb | 2009-02-09 17:02:42 +0300 | [diff] [blame] | 1660 | EXPORT_SYMBOL_GPL(__lock_page_killable); |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 1661 | |
Jens Axboe | dd3e6d5 | 2020-05-22 09:12:09 -0600 | [diff] [blame] | 1662 | int __lock_page_async(struct page *page, struct wait_page_queue *wait) |
| 1663 | { |
Matthew Wilcox (Oracle) | f32b5dd | 2021-02-24 12:02:09 -0800 | [diff] [blame] | 1664 | struct wait_queue_head *q = page_waitqueue(page); |
| 1665 | int ret = 0; |
| 1666 | |
| 1667 | wait->page = page; |
| 1668 | wait->bit_nr = PG_locked; |
| 1669 | |
| 1670 | spin_lock_irq(&q->lock); |
| 1671 | __add_wait_queue_entry_tail(q, &wait->wait); |
| 1672 | SetPageWaiters(page); |
| 1673 | ret = !trylock_page(page); |
| 1674 | /* |
| 1675 | * If we were successful now, we know we're still on the |
| 1676 | * waitqueue as we're still under the lock. This means it's |
| 1677 | * safe to remove and return success, we know the callback |
| 1678 | * isn't going to trigger. |
| 1679 | */ |
| 1680 | if (!ret) |
| 1681 | __remove_wait_queue(q, &wait->wait); |
| 1682 | else |
| 1683 | ret = -EIOCBQUEUED; |
| 1684 | spin_unlock_irq(&q->lock); |
| 1685 | return ret; |
Jens Axboe | dd3e6d5 | 2020-05-22 09:12:09 -0600 | [diff] [blame] | 1686 | } |
| 1687 | |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1688 | /* |
| 1689 | * Return values: |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 1690 | * 1 - page is locked; mmap_lock is still held. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1691 | * 0 - page is not locked. |
Michel Lespinasse | 3e4e28c | 2020-06-08 21:33:51 -0700 | [diff] [blame] | 1692 | * mmap_lock has been released (mmap_read_unlock(), unless flags had both |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1693 | * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 1694 | * which case mmap_lock is still held. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1695 | * |
| 1696 | * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1 |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 1697 | * with the page locked and the mmap_lock unperturbed. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1698 | */ |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 1699 | int __lock_page_or_retry(struct page *page, struct mm_struct *mm, |
| 1700 | unsigned int flags) |
| 1701 | { |
Peter Xu | 4064b98 | 2020-04-01 21:08:45 -0700 | [diff] [blame] | 1702 | if (fault_flag_allow_retry_first(flags)) { |
KOSAKI Motohiro | 37b23e0 | 2011-05-24 17:11:30 -0700 | [diff] [blame] | 1703 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 1704 | * CAUTION! In this case, mmap_lock is not released |
KOSAKI Motohiro | 37b23e0 | 2011-05-24 17:11:30 -0700 | [diff] [blame] | 1705 | * even though return 0. |
| 1706 | */ |
| 1707 | if (flags & FAULT_FLAG_RETRY_NOWAIT) |
| 1708 | return 0; |
| 1709 | |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 1710 | mmap_read_unlock(mm); |
KOSAKI Motohiro | 37b23e0 | 2011-05-24 17:11:30 -0700 | [diff] [blame] | 1711 | if (flags & FAULT_FLAG_KILLABLE) |
| 1712 | wait_on_page_locked_killable(page); |
| 1713 | else |
Gleb Natapov | 318b275 | 2011-03-22 16:30:51 -0700 | [diff] [blame] | 1714 | wait_on_page_locked(page); |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 1715 | return 0; |
| 1716 | } |
Hailong Liu | 800bca7 | 2020-12-14 19:05:02 -0800 | [diff] [blame] | 1717 | if (flags & FAULT_FLAG_KILLABLE) { |
| 1718 | int ret; |
| 1719 | |
| 1720 | ret = __lock_page_killable(page); |
| 1721 | if (ret) { |
| 1722 | mmap_read_unlock(mm); |
| 1723 | return 0; |
| 1724 | } |
| 1725 | } else { |
| 1726 | __lock_page(page); |
| 1727 | } |
| 1728 | return 1; |
| 1729 | |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 1730 | } |
| 1731 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1732 | /** |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1733 | * page_cache_next_miss() - Find the next gap in the page cache. |
| 1734 | * @mapping: Mapping. |
| 1735 | * @index: Index. |
| 1736 | * @max_scan: Maximum range to search. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1737 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1738 | * Search the range [index, min(index + max_scan - 1, ULONG_MAX)] for the |
| 1739 | * gap with the lowest index. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1740 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1741 | * This function may be called under the rcu_read_lock. However, this will |
| 1742 | * not atomically search a snapshot of the cache at a single point in time. |
| 1743 | * For example, if a gap is created at index 5, then subsequently a gap is |
| 1744 | * created at index 10, page_cache_next_miss covering both indices may |
| 1745 | * return 10 if called under the rcu_read_lock. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1746 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1747 | * Return: The index of the gap if found, otherwise an index outside the |
| 1748 | * range specified (in which case 'return - index >= max_scan' will be true). |
| 1749 | * In the rare case of index wrap-around, 0 will be returned. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1750 | */ |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1751 | pgoff_t page_cache_next_miss(struct address_space *mapping, |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1752 | pgoff_t index, unsigned long max_scan) |
| 1753 | { |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1754 | XA_STATE(xas, &mapping->i_pages, index); |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1755 | |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1756 | while (max_scan--) { |
| 1757 | void *entry = xas_next(&xas); |
| 1758 | if (!entry || xa_is_value(entry)) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1759 | break; |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1760 | if (xas.xa_index == 0) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1761 | break; |
| 1762 | } |
| 1763 | |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1764 | return xas.xa_index; |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1765 | } |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1766 | EXPORT_SYMBOL(page_cache_next_miss); |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1767 | |
| 1768 | /** |
Laurent Dufour | 2346a56 | 2019-05-13 17:21:29 -0700 | [diff] [blame] | 1769 | * page_cache_prev_miss() - Find the previous gap in the page cache. |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1770 | * @mapping: Mapping. |
| 1771 | * @index: Index. |
| 1772 | * @max_scan: Maximum range to search. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1773 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1774 | * Search the range [max(index - max_scan + 1, 0), index] for the |
| 1775 | * gap with the highest index. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1776 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1777 | * This function may be called under the rcu_read_lock. However, this will |
| 1778 | * not atomically search a snapshot of the cache at a single point in time. |
| 1779 | * For example, if a gap is created at index 10, then subsequently a gap is |
| 1780 | * created at index 5, page_cache_prev_miss() covering both indices may |
| 1781 | * return 5 if called under the rcu_read_lock. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1782 | * |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1783 | * Return: The index of the gap if found, otherwise an index outside the |
| 1784 | * range specified (in which case 'index - return >= max_scan' will be true). |
| 1785 | * In the rare case of wrap-around, ULONG_MAX will be returned. |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1786 | */ |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1787 | pgoff_t page_cache_prev_miss(struct address_space *mapping, |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1788 | pgoff_t index, unsigned long max_scan) |
| 1789 | { |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1790 | XA_STATE(xas, &mapping->i_pages, index); |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1791 | |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1792 | while (max_scan--) { |
| 1793 | void *entry = xas_prev(&xas); |
| 1794 | if (!entry || xa_is_value(entry)) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1795 | break; |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1796 | if (xas.xa_index == ULONG_MAX) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1797 | break; |
| 1798 | } |
| 1799 | |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1800 | return xas.xa_index; |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1801 | } |
Matthew Wilcox | 0d3f929 | 2017-11-21 14:07:06 -0500 | [diff] [blame] | 1802 | EXPORT_SYMBOL(page_cache_prev_miss); |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 1803 | |
Matthew Wilcox (Oracle) | 44835d2 | 2021-02-25 17:15:36 -0800 | [diff] [blame] | 1804 | /* |
Matthew Wilcox (Oracle) | 020853b | 2021-05-10 16:33:22 -0400 | [diff] [blame^] | 1805 | * Lockless page cache protocol: |
| 1806 | * On the lookup side: |
| 1807 | * 1. Load the folio from i_pages |
| 1808 | * 2. Increment the refcount if it's not zero |
| 1809 | * 3. If the folio is not found by xas_reload(), put the refcount and retry |
| 1810 | * |
| 1811 | * On the removal side: |
| 1812 | * A. Freeze the page (by zeroing the refcount if nobody else has a reference) |
| 1813 | * B. Remove the page from i_pages |
| 1814 | * C. Return the page to the page allocator |
| 1815 | * |
| 1816 | * This means that any page may have its reference count temporarily |
| 1817 | * increased by a speculative page cache (or fast GUP) lookup as it can |
| 1818 | * be allocated by another user before the RCU grace period expires. |
| 1819 | * Because the refcount temporarily acquired here may end up being the |
| 1820 | * last refcount on the page, any page allocation must be freeable by |
| 1821 | * folio_put(). |
| 1822 | */ |
| 1823 | |
| 1824 | /* |
Matthew Wilcox (Oracle) | bc5a301 | 2021-02-25 17:15:40 -0800 | [diff] [blame] | 1825 | * mapping_get_entry - Get a page cache entry. |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1826 | * @mapping: the address_space to search |
Matthew Wilcox (Oracle) | a6de4b4 | 2020-10-13 16:51:34 -0700 | [diff] [blame] | 1827 | * @index: The page cache index. |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1828 | * |
Rui Sun | 4b17f03 | 2021-04-29 22:55:38 -0700 | [diff] [blame] | 1829 | * Looks up the page cache slot at @mapping & @index. If there is a |
Matthew Wilcox (Oracle) | a6de4b4 | 2020-10-13 16:51:34 -0700 | [diff] [blame] | 1830 | * page cache page, the head page is returned with an increased refcount. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1831 | * |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1832 | * If the slot holds a shadow entry of a previously evicted page, or a |
| 1833 | * swap entry from shmem/tmpfs, it is returned. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1834 | * |
Matthew Wilcox (Oracle) | a6de4b4 | 2020-10-13 16:51:34 -0700 | [diff] [blame] | 1835 | * Return: The head page or shadow entry, %NULL if nothing is found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | */ |
Matthew Wilcox (Oracle) | bc5a301 | 2021-02-25 17:15:40 -0800 | [diff] [blame] | 1837 | static struct page *mapping_get_entry(struct address_space *mapping, |
| 1838 | pgoff_t index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | { |
Matthew Wilcox (Oracle) | a6de4b4 | 2020-10-13 16:51:34 -0700 | [diff] [blame] | 1840 | XA_STATE(xas, &mapping->i_pages, index); |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 1841 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1843 | rcu_read_lock(); |
| 1844 | repeat: |
Matthew Wilcox | 4c7472c | 2018-05-16 16:12:50 -0400 | [diff] [blame] | 1845 | xas_reset(&xas); |
| 1846 | page = xas_load(&xas); |
| 1847 | if (xas_retry(&xas, page)) |
| 1848 | goto repeat; |
| 1849 | /* |
| 1850 | * A shadow entry of a recently evicted page, or a swap entry from |
| 1851 | * shmem/tmpfs. Return it without attempting to raise page count. |
| 1852 | */ |
| 1853 | if (!page || xa_is_value(page)) |
| 1854 | goto out; |
Kirill A. Shutemov | 8392937 | 2016-07-26 15:26:04 -0700 | [diff] [blame] | 1855 | |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 1856 | if (!page_cache_get_speculative(page)) |
Matthew Wilcox | 4c7472c | 2018-05-16 16:12:50 -0400 | [diff] [blame] | 1857 | goto repeat; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1858 | |
Matthew Wilcox | 4c7472c | 2018-05-16 16:12:50 -0400 | [diff] [blame] | 1859 | /* |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 1860 | * Has the page moved or been split? |
Matthew Wilcox | 4c7472c | 2018-05-16 16:12:50 -0400 | [diff] [blame] | 1861 | * This is part of the lockless pagecache protocol. See |
| 1862 | * include/linux/pagemap.h for details. |
| 1863 | */ |
| 1864 | if (unlikely(page != xas_reload(&xas))) { |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 1865 | put_page(page); |
Matthew Wilcox | 4c7472c | 2018-05-16 16:12:50 -0400 | [diff] [blame] | 1866 | goto repeat; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1867 | } |
Nick Piggin | 27d20fd | 2010-11-11 14:05:19 -0800 | [diff] [blame] | 1868 | out: |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1869 | rcu_read_unlock(); |
| 1870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | return page; |
| 1872 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1874 | /** |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1875 | * pagecache_get_page - Find and get a reference to a page. |
| 1876 | * @mapping: The address_space to search. |
| 1877 | * @index: The page index. |
| 1878 | * @fgp_flags: %FGP flags modify how the page is returned. |
| 1879 | * @gfp_mask: Memory allocation flags to use if %FGP_CREAT is specified. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1880 | * |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1881 | * Looks up the page cache entry at @mapping & @index. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1882 | * |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1883 | * @fgp_flags can be zero or more of these flags: |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1884 | * |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1885 | * * %FGP_ACCESSED - The page will be marked accessed. |
| 1886 | * * %FGP_LOCK - The page is returned locked. |
Matthew Wilcox (Oracle) | a8cf7f2 | 2020-10-13 16:51:41 -0700 | [diff] [blame] | 1887 | * * %FGP_HEAD - If the page is present and a THP, return the head page |
| 1888 | * rather than the exact page specified by the index. |
Matthew Wilcox (Oracle) | 44835d2 | 2021-02-25 17:15:36 -0800 | [diff] [blame] | 1889 | * * %FGP_ENTRY - If there is a shadow / swap / DAX entry, return it |
| 1890 | * instead of allocating a new page to replace it. |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1891 | * * %FGP_CREAT - If no page is present then a new page is allocated using |
| 1892 | * @gfp_mask and added to the page cache and the VM's LRU list. |
| 1893 | * The page is returned locked and with an increased refcount. |
| 1894 | * * %FGP_FOR_MMAP - The caller wants to do its own locking dance if the |
| 1895 | * page is already in cache. If the page was allocated, unlock it before |
| 1896 | * returning so the caller can do the same dance. |
Yang Shi | 605cad8 | 2020-08-06 23:19:58 -0700 | [diff] [blame] | 1897 | * * %FGP_WRITE - The page will be written |
| 1898 | * * %FGP_NOFS - __GFP_FS will get cleared in gfp mask |
| 1899 | * * %FGP_NOWAIT - Don't get blocked by page lock |
mchehab@s-opensource.com | 0e056eb | 2017-03-30 17:11:36 -0300 | [diff] [blame] | 1900 | * |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1901 | * If %FGP_LOCK or %FGP_CREAT are specified then the function may sleep even |
| 1902 | * if the %GFP flags specified for %FGP_CREAT are atomic. |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1903 | * |
| 1904 | * If there is a page cache page, it is returned with an increased refcount. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 1905 | * |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1906 | * Return: The found page or %NULL otherwise. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1907 | */ |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1908 | struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index, |
| 1909 | int fgp_flags, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1911 | struct page *page; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1912 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | repeat: |
Matthew Wilcox (Oracle) | bc5a301 | 2021-02-25 17:15:40 -0800 | [diff] [blame] | 1914 | page = mapping_get_entry(mapping, index); |
Matthew Wilcox (Oracle) | 44835d2 | 2021-02-25 17:15:36 -0800 | [diff] [blame] | 1915 | if (xa_is_value(page)) { |
| 1916 | if (fgp_flags & FGP_ENTRY) |
| 1917 | return page; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1918 | page = NULL; |
Matthew Wilcox (Oracle) | 44835d2 | 2021-02-25 17:15:36 -0800 | [diff] [blame] | 1919 | } |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1920 | if (!page) |
| 1921 | goto no_page; |
| 1922 | |
| 1923 | if (fgp_flags & FGP_LOCK) { |
| 1924 | if (fgp_flags & FGP_NOWAIT) { |
| 1925 | if (!trylock_page(page)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1926 | put_page(page); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1927 | return NULL; |
| 1928 | } |
| 1929 | } else { |
| 1930 | lock_page(page); |
| 1931 | } |
| 1932 | |
| 1933 | /* Has the page been truncated? */ |
Matthew Wilcox (Oracle) | a8cf7f2 | 2020-10-13 16:51:41 -0700 | [diff] [blame] | 1934 | if (unlikely(page->mapping != mapping)) { |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1935 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1936 | put_page(page); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1937 | goto repeat; |
| 1938 | } |
Matthew Wilcox (Oracle) | a8cf7f2 | 2020-10-13 16:51:41 -0700 | [diff] [blame] | 1939 | VM_BUG_ON_PAGE(!thp_contains(page, index), page); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1940 | } |
| 1941 | |
Kirill Tkhai | c16eb00 | 2018-12-28 00:37:35 -0800 | [diff] [blame] | 1942 | if (fgp_flags & FGP_ACCESSED) |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1943 | mark_page_accessed(page); |
Yang Shi | b9306a7 | 2020-08-06 23:19:55 -0700 | [diff] [blame] | 1944 | else if (fgp_flags & FGP_WRITE) { |
| 1945 | /* Clear idle flag for buffer write */ |
| 1946 | if (page_is_idle(page)) |
| 1947 | clear_page_idle(page); |
| 1948 | } |
Matthew Wilcox (Oracle) | a8cf7f2 | 2020-10-13 16:51:41 -0700 | [diff] [blame] | 1949 | if (!(fgp_flags & FGP_HEAD)) |
| 1950 | page = find_subpage(page, index); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1951 | |
| 1952 | no_page: |
| 1953 | if (!page && (fgp_flags & FGP_CREAT)) { |
| 1954 | int err; |
Christoph Hellwig | f56753a | 2020-09-24 08:51:40 +0200 | [diff] [blame] | 1955 | if ((fgp_flags & FGP_WRITE) && mapping_can_writeback(mapping)) |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1956 | gfp_mask |= __GFP_WRITE; |
| 1957 | if (fgp_flags & FGP_NOFS) |
| 1958 | gfp_mask &= ~__GFP_FS; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1959 | |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1960 | page = __page_cache_alloc(gfp_mask); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1961 | if (!page) |
| 1962 | return NULL; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1963 | |
Josef Bacik | a75d4c3 | 2019-03-13 11:44:14 -0700 | [diff] [blame] | 1964 | if (WARN_ON_ONCE(!(fgp_flags & (FGP_LOCK | FGP_FOR_MMAP)))) |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1965 | fgp_flags |= FGP_LOCK; |
| 1966 | |
Hugh Dickins | eb39d61 | 2014-08-06 16:06:43 -0700 | [diff] [blame] | 1967 | /* Init accessed so avoid atomic mark_page_accessed later */ |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1968 | if (fgp_flags & FGP_ACCESSED) |
Hugh Dickins | eb39d61 | 2014-08-06 16:06:43 -0700 | [diff] [blame] | 1969 | __SetPageReferenced(page); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1970 | |
Matthew Wilcox (Oracle) | 2294b32 | 2020-04-01 21:05:07 -0700 | [diff] [blame] | 1971 | err = add_to_page_cache_lru(page, mapping, index, gfp_mask); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1972 | if (unlikely(err)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1973 | put_page(page); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1974 | page = NULL; |
| 1975 | if (err == -EEXIST) |
| 1976 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | } |
Josef Bacik | a75d4c3 | 2019-03-13 11:44:14 -0700 | [diff] [blame] | 1978 | |
| 1979 | /* |
| 1980 | * add_to_page_cache_lru locks the page, and for mmap we expect |
| 1981 | * an unlocked page. |
| 1982 | */ |
| 1983 | if (page && (fgp_flags & FGP_FOR_MMAP)) |
| 1984 | unlock_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | } |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1986 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | return page; |
| 1988 | } |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1989 | EXPORT_SYMBOL(pagecache_get_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | |
Matthew Wilcox (Oracle) | c7bad63 | 2021-02-25 17:15:44 -0800 | [diff] [blame] | 1991 | static inline struct page *find_get_entry(struct xa_state *xas, pgoff_t max, |
| 1992 | xa_mark_t mark) |
| 1993 | { |
| 1994 | struct page *page; |
| 1995 | |
| 1996 | retry: |
| 1997 | if (mark == XA_PRESENT) |
| 1998 | page = xas_find(xas, max); |
| 1999 | else |
| 2000 | page = xas_find_marked(xas, max, mark); |
| 2001 | |
| 2002 | if (xas_retry(xas, page)) |
| 2003 | goto retry; |
| 2004 | /* |
| 2005 | * A shadow entry of a recently evicted page, a swap |
| 2006 | * entry from shmem/tmpfs or a DAX entry. Return it |
| 2007 | * without attempting to raise page count. |
| 2008 | */ |
| 2009 | if (!page || xa_is_value(page)) |
| 2010 | return page; |
| 2011 | |
| 2012 | if (!page_cache_get_speculative(page)) |
| 2013 | goto reset; |
| 2014 | |
| 2015 | /* Has the page moved or been split? */ |
| 2016 | if (unlikely(page != xas_reload(xas))) { |
| 2017 | put_page(page); |
| 2018 | goto reset; |
| 2019 | } |
| 2020 | |
| 2021 | return page; |
| 2022 | reset: |
| 2023 | xas_reset(xas); |
| 2024 | goto retry; |
| 2025 | } |
| 2026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | /** |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2028 | * find_get_entries - gang pagecache lookup |
| 2029 | * @mapping: The address_space to search |
| 2030 | * @start: The starting page cache index |
Matthew Wilcox (Oracle) | ca122fe4 | 2021-02-25 17:16:00 -0800 | [diff] [blame] | 2031 | * @end: The final page index (inclusive). |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2032 | * @pvec: Where the resulting entries are placed. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2033 | * @indices: The cache indices corresponding to the entries in @entries |
| 2034 | * |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2035 | * find_get_entries() will search for and return a batch of entries in |
| 2036 | * the mapping. The entries are placed in @pvec. find_get_entries() |
| 2037 | * takes a reference on any actual pages it returns. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2038 | * |
| 2039 | * The search returns a group of mapping-contiguous page cache entries |
| 2040 | * with ascending indexes. There may be holes in the indices due to |
| 2041 | * not-present pages. |
| 2042 | * |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 2043 | * Any shadow entries of evicted pages, or swap entries from |
| 2044 | * shmem/tmpfs, are included in the returned array. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2045 | * |
Hugh Dickins | 71725ed | 2020-04-06 20:07:57 -0700 | [diff] [blame] | 2046 | * If it finds a Transparent Huge Page, head or tail, find_get_entries() |
| 2047 | * stops at that page: the caller is likely to have a better way to handle |
| 2048 | * the compound page as a whole, and then skip its extent, than repeatedly |
| 2049 | * calling find_get_entries() to return all its tails. |
| 2050 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 2051 | * Return: the number of pages and shadow entries which were found. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2052 | */ |
Matthew Wilcox (Oracle) | ca122fe4 | 2021-02-25 17:16:00 -0800 | [diff] [blame] | 2053 | unsigned find_get_entries(struct address_space *mapping, pgoff_t start, |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2054 | pgoff_t end, struct pagevec *pvec, pgoff_t *indices) |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2055 | { |
Matthew Wilcox | f280bf0 | 2018-05-16 17:20:45 -0400 | [diff] [blame] | 2056 | XA_STATE(xas, &mapping->i_pages, start); |
| 2057 | struct page *page; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2058 | unsigned int ret = 0; |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2059 | unsigned nr_entries = PAGEVEC_SIZE; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2060 | |
| 2061 | rcu_read_lock(); |
Matthew Wilcox (Oracle) | ca122fe4 | 2021-02-25 17:16:00 -0800 | [diff] [blame] | 2062 | while ((page = find_get_entry(&xas, end, XA_PRESENT))) { |
Hugh Dickins | 71725ed | 2020-04-06 20:07:57 -0700 | [diff] [blame] | 2063 | /* |
| 2064 | * Terminate early on finding a THP, to allow the caller to |
| 2065 | * handle it all at once; but continue if this is hugetlbfs. |
| 2066 | */ |
Matthew Wilcox (Oracle) | c7bad63 | 2021-02-25 17:15:44 -0800 | [diff] [blame] | 2067 | if (!xa_is_value(page) && PageTransHuge(page) && |
| 2068 | !PageHuge(page)) { |
Hugh Dickins | 71725ed | 2020-04-06 20:07:57 -0700 | [diff] [blame] | 2069 | page = find_subpage(page, xas.xa_index); |
| 2070 | nr_entries = ret + 1; |
| 2071 | } |
Matthew Wilcox (Oracle) | c7bad63 | 2021-02-25 17:15:44 -0800 | [diff] [blame] | 2072 | |
Matthew Wilcox | f280bf0 | 2018-05-16 17:20:45 -0400 | [diff] [blame] | 2073 | indices[ret] = xas.xa_index; |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2074 | pvec->pages[ret] = page; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2075 | if (++ret == nr_entries) |
| 2076 | break; |
| 2077 | } |
| 2078 | rcu_read_unlock(); |
Matthew Wilcox (Oracle) | cf2039a | 2021-02-25 17:16:11 -0800 | [diff] [blame] | 2079 | |
| 2080 | pvec->nr = ret; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 2081 | return ret; |
| 2082 | } |
| 2083 | |
| 2084 | /** |
Matthew Wilcox (Oracle) | 5c211ba | 2021-02-25 17:15:56 -0800 | [diff] [blame] | 2085 | * find_lock_entries - Find a batch of pagecache entries. |
| 2086 | * @mapping: The address_space to search. |
| 2087 | * @start: The starting page cache index. |
| 2088 | * @end: The final page index (inclusive). |
| 2089 | * @pvec: Where the resulting entries are placed. |
| 2090 | * @indices: The cache indices of the entries in @pvec. |
| 2091 | * |
| 2092 | * find_lock_entries() will return a batch of entries from @mapping. |
| 2093 | * Swap, shadow and DAX entries are included. Pages are returned |
| 2094 | * locked and with an incremented refcount. Pages which are locked by |
| 2095 | * somebody else or under writeback are skipped. Only the head page of |
| 2096 | * a THP is returned. Pages which are partially outside the range are |
| 2097 | * not returned. |
| 2098 | * |
| 2099 | * The entries have ascending indexes. The indices may not be consecutive |
| 2100 | * due to not-present entries, THP pages, pages which could not be locked |
| 2101 | * or pages under writeback. |
| 2102 | * |
| 2103 | * Return: The number of entries which were found. |
| 2104 | */ |
| 2105 | unsigned find_lock_entries(struct address_space *mapping, pgoff_t start, |
| 2106 | pgoff_t end, struct pagevec *pvec, pgoff_t *indices) |
| 2107 | { |
| 2108 | XA_STATE(xas, &mapping->i_pages, start); |
| 2109 | struct page *page; |
| 2110 | |
| 2111 | rcu_read_lock(); |
| 2112 | while ((page = find_get_entry(&xas, end, XA_PRESENT))) { |
| 2113 | if (!xa_is_value(page)) { |
| 2114 | if (page->index < start) |
| 2115 | goto put; |
| 2116 | VM_BUG_ON_PAGE(page->index != xas.xa_index, page); |
| 2117 | if (page->index + thp_nr_pages(page) - 1 > end) |
| 2118 | goto put; |
| 2119 | if (!trylock_page(page)) |
| 2120 | goto put; |
| 2121 | if (page->mapping != mapping || PageWriteback(page)) |
| 2122 | goto unlock; |
| 2123 | VM_BUG_ON_PAGE(!thp_contains(page, xas.xa_index), |
| 2124 | page); |
| 2125 | } |
| 2126 | indices[pvec->nr] = xas.xa_index; |
| 2127 | if (!pagevec_add(pvec, page)) |
| 2128 | break; |
| 2129 | goto next; |
| 2130 | unlock: |
| 2131 | unlock_page(page); |
| 2132 | put: |
| 2133 | put_page(page); |
| 2134 | next: |
Hugh Dickins | 2d11e73 | 2021-04-23 14:28:57 -0700 | [diff] [blame] | 2135 | if (!xa_is_value(page) && PageTransHuge(page)) { |
| 2136 | unsigned int nr_pages = thp_nr_pages(page); |
| 2137 | |
| 2138 | /* Final THP may cross MAX_LFS_FILESIZE on 32-bit */ |
| 2139 | xas_set(&xas, page->index + nr_pages); |
| 2140 | if (xas.xa_index < nr_pages) |
| 2141 | break; |
| 2142 | } |
Matthew Wilcox (Oracle) | 5c211ba | 2021-02-25 17:15:56 -0800 | [diff] [blame] | 2143 | } |
| 2144 | rcu_read_unlock(); |
| 2145 | |
| 2146 | return pagevec_count(pvec); |
| 2147 | } |
| 2148 | |
| 2149 | /** |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2150 | * find_get_pages_range - gang pagecache lookup |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | * @mapping: The address_space to search |
| 2152 | * @start: The starting page index |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2153 | * @end: The final page index (inclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | * @nr_pages: The maximum number of pages |
| 2155 | * @pages: Where the resulting pages are placed |
| 2156 | * |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2157 | * find_get_pages_range() will search for and return a group of up to @nr_pages |
| 2158 | * pages in the mapping starting at index @start and up to index @end |
| 2159 | * (inclusive). The pages are placed at @pages. find_get_pages_range() takes |
| 2160 | * a reference against the returned pages. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | * |
| 2162 | * The search returns a group of mapping-contiguous pages with ascending |
| 2163 | * indexes. There may be holes in the indices due to not-present pages. |
Jan Kara | d72dc8a | 2017-09-06 16:21:18 -0700 | [diff] [blame] | 2164 | * We also update @start to index the next page for the traversal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 2166 | * Return: the number of pages which were found. If this number is |
| 2167 | * smaller than @nr_pages, the end of specified range has been |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2168 | * reached. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | */ |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2170 | unsigned find_get_pages_range(struct address_space *mapping, pgoff_t *start, |
| 2171 | pgoff_t end, unsigned int nr_pages, |
| 2172 | struct page **pages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | { |
Matthew Wilcox | fd1b3ce | 2018-05-16 17:38:56 -0400 | [diff] [blame] | 2174 | XA_STATE(xas, &mapping->i_pages, *start); |
| 2175 | struct page *page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 2176 | unsigned ret = 0; |
| 2177 | |
| 2178 | if (unlikely(!nr_pages)) |
| 2179 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2181 | rcu_read_lock(); |
Matthew Wilcox (Oracle) | c7bad63 | 2021-02-25 17:15:44 -0800 | [diff] [blame] | 2182 | while ((page = find_get_entry(&xas, end, XA_PRESENT))) { |
Matthew Wilcox | fd1b3ce | 2018-05-16 17:38:56 -0400 | [diff] [blame] | 2183 | /* Skip over shadow, swap and DAX entries */ |
| 2184 | if (xa_is_value(page)) |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 2185 | continue; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2186 | |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 2187 | pages[ret] = find_subpage(page, xas.xa_index); |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2188 | if (++ret == nr_pages) { |
Yu Zhao | 5d3ee42 | 2019-03-05 15:49:17 -0800 | [diff] [blame] | 2189 | *start = xas.xa_index + 1; |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2190 | goto out; |
| 2191 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2192 | } |
Hugh Dickins | 5b280c0 | 2011-03-22 16:33:07 -0700 | [diff] [blame] | 2193 | |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2194 | /* |
| 2195 | * We come here when there is no page beyond @end. We take care to not |
| 2196 | * overflow the index @start as it confuses some of the callers. This |
Matthew Wilcox | fd1b3ce | 2018-05-16 17:38:56 -0400 | [diff] [blame] | 2197 | * breaks the iteration when there is a page at index -1 but that is |
Jan Kara | b947cee | 2017-09-06 16:21:21 -0700 | [diff] [blame] | 2198 | * already broken anyway. |
| 2199 | */ |
| 2200 | if (end == (pgoff_t)-1) |
| 2201 | *start = (pgoff_t)-1; |
| 2202 | else |
| 2203 | *start = end + 1; |
| 2204 | out: |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2205 | rcu_read_unlock(); |
Jan Kara | d72dc8a | 2017-09-06 16:21:18 -0700 | [diff] [blame] | 2206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | return ret; |
| 2208 | } |
| 2209 | |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2210 | /** |
| 2211 | * find_get_pages_contig - gang contiguous pagecache lookup |
| 2212 | * @mapping: The address_space to search |
| 2213 | * @index: The starting page index |
| 2214 | * @nr_pages: The maximum number of pages |
| 2215 | * @pages: Where the resulting pages are placed |
| 2216 | * |
| 2217 | * find_get_pages_contig() works exactly like find_get_pages(), except |
| 2218 | * that the returned number of pages are guaranteed to be contiguous. |
| 2219 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 2220 | * Return: the number of pages which were found. |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2221 | */ |
| 2222 | unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index, |
| 2223 | unsigned int nr_pages, struct page **pages) |
| 2224 | { |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2225 | XA_STATE(xas, &mapping->i_pages, index); |
| 2226 | struct page *page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 2227 | unsigned int ret = 0; |
| 2228 | |
| 2229 | if (unlikely(!nr_pages)) |
| 2230 | return 0; |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2231 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2232 | rcu_read_lock(); |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2233 | for (page = xas_load(&xas); page; page = xas_next(&xas)) { |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2234 | if (xas_retry(&xas, page)) |
| 2235 | continue; |
| 2236 | /* |
| 2237 | * If the entry has been swapped out, we can stop looking. |
| 2238 | * No current caller is looking for DAX entries. |
| 2239 | */ |
| 2240 | if (xa_is_value(page)) |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 2241 | break; |
Hugh Dickins | 9d8aa4e | 2011-03-22 16:33:06 -0700 | [diff] [blame] | 2242 | |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 2243 | if (!page_cache_get_speculative(page)) |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2244 | goto retry; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2245 | |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 2246 | /* Has the page moved or been split? */ |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2247 | if (unlikely(page != xas_reload(&xas))) |
| 2248 | goto put_page; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2249 | |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 2250 | pages[ret] = find_subpage(page, xas.xa_index); |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 2251 | if (++ret == nr_pages) |
| 2252 | break; |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2253 | continue; |
| 2254 | put_page: |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 2255 | put_page(page); |
Matthew Wilcox | 3ece58a | 2018-05-16 18:00:33 -0400 | [diff] [blame] | 2256 | retry: |
| 2257 | xas_reset(&xas); |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2258 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2259 | rcu_read_unlock(); |
| 2260 | return ret; |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2261 | } |
David Howells | ef71c15 | 2007-05-09 02:33:44 -0700 | [diff] [blame] | 2262 | EXPORT_SYMBOL(find_get_pages_contig); |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 2263 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2264 | /** |
Matthew Wilcox (Oracle) | c49f50d | 2021-02-25 17:15:25 -0800 | [diff] [blame] | 2265 | * find_get_pages_range_tag - Find and return head pages matching @tag. |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2266 | * @mapping: the address_space to search |
| 2267 | * @index: the starting page index |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2268 | * @end: The final page index (inclusive) |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2269 | * @tag: the tag index |
| 2270 | * @nr_pages: the maximum number of pages |
| 2271 | * @pages: where the resulting pages are placed |
| 2272 | * |
Matthew Wilcox (Oracle) | c49f50d | 2021-02-25 17:15:25 -0800 | [diff] [blame] | 2273 | * Like find_get_pages(), except we only return head pages which are tagged |
| 2274 | * with @tag. @index is updated to the index immediately after the last |
| 2275 | * page we return, ready for the next iteration. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 2276 | * |
| 2277 | * Return: the number of pages which were found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | */ |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2279 | unsigned find_get_pages_range_tag(struct address_space *mapping, pgoff_t *index, |
Matthew Wilcox | a690697 | 2018-05-16 18:12:54 -0400 | [diff] [blame] | 2280 | pgoff_t end, xa_mark_t tag, unsigned int nr_pages, |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2281 | struct page **pages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | { |
Matthew Wilcox | a690697 | 2018-05-16 18:12:54 -0400 | [diff] [blame] | 2283 | XA_STATE(xas, &mapping->i_pages, *index); |
| 2284 | struct page *page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 2285 | unsigned ret = 0; |
| 2286 | |
| 2287 | if (unlikely(!nr_pages)) |
| 2288 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2290 | rcu_read_lock(); |
Matthew Wilcox (Oracle) | c7bad63 | 2021-02-25 17:15:44 -0800 | [diff] [blame] | 2291 | while ((page = find_get_entry(&xas, end, tag))) { |
Matthew Wilcox | a690697 | 2018-05-16 18:12:54 -0400 | [diff] [blame] | 2292 | /* |
| 2293 | * Shadow entries should never be tagged, but this iteration |
| 2294 | * is lockless so there is a window for page reclaim to evict |
| 2295 | * a page we saw tagged. Skip over it. |
| 2296 | */ |
| 2297 | if (xa_is_value(page)) |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 2298 | continue; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2299 | |
Matthew Wilcox (Oracle) | c49f50d | 2021-02-25 17:15:25 -0800 | [diff] [blame] | 2300 | pages[ret] = page; |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2301 | if (++ret == nr_pages) { |
Matthew Wilcox (Oracle) | c49f50d | 2021-02-25 17:15:25 -0800 | [diff] [blame] | 2302 | *index = page->index + thp_nr_pages(page); |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2303 | goto out; |
| 2304 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2305 | } |
Hugh Dickins | 5b280c0 | 2011-03-22 16:33:07 -0700 | [diff] [blame] | 2306 | |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2307 | /* |
Matthew Wilcox | a690697 | 2018-05-16 18:12:54 -0400 | [diff] [blame] | 2308 | * We come here when we got to @end. We take care to not overflow the |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2309 | * index @index as it confuses some of the callers. This breaks the |
Matthew Wilcox | a690697 | 2018-05-16 18:12:54 -0400 | [diff] [blame] | 2310 | * iteration when there is a page at index -1 but that is already |
| 2311 | * broken anyway. |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2312 | */ |
| 2313 | if (end == (pgoff_t)-1) |
| 2314 | *index = (pgoff_t)-1; |
| 2315 | else |
| 2316 | *index = end + 1; |
| 2317 | out: |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 2318 | rcu_read_unlock(); |
| 2319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | return ret; |
| 2321 | } |
Jan Kara | 72b045a | 2017-11-15 17:34:33 -0800 | [diff] [blame] | 2322 | EXPORT_SYMBOL(find_get_pages_range_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 2324 | /* |
| 2325 | * CD/DVDs are error prone. When a medium error occurs, the driver may fail |
| 2326 | * a _large_ part of the i/o request. Imagine the worst scenario: |
| 2327 | * |
| 2328 | * ---R__________________________________________B__________ |
| 2329 | * ^ reading here ^ bad block(assume 4k) |
| 2330 | * |
| 2331 | * read(R) => miss => readahead(R...B) => media error => frustrating retries |
| 2332 | * => failing the whole request => read(R) => read(R+1) => |
| 2333 | * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) => |
| 2334 | * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) => |
| 2335 | * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ...... |
| 2336 | * |
| 2337 | * It is going insane. Fix it by quickly scaling down the readahead size. |
| 2338 | */ |
Souptick Joarder | 0f8e2db | 2020-04-01 21:04:50 -0700 | [diff] [blame] | 2339 | static void shrink_readahead_size_eio(struct file_ra_state *ra) |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 2340 | { |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 2341 | ra->ra_pages /= 4; |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 2342 | } |
| 2343 | |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2344 | /* |
| 2345 | * filemap_get_read_batch - Get a batch of pages for read |
| 2346 | * |
| 2347 | * Get a batch of pages which represent a contiguous range of bytes |
| 2348 | * in the file. No tail pages will be returned. If @index is in the |
| 2349 | * middle of a THP, the entire THP will be returned. The last page in |
| 2350 | * the batch may have Readahead set or be not Uptodate so that the |
| 2351 | * caller can take the appropriate action. |
| 2352 | */ |
| 2353 | static void filemap_get_read_batch(struct address_space *mapping, |
| 2354 | pgoff_t index, pgoff_t max, struct pagevec *pvec) |
| 2355 | { |
| 2356 | XA_STATE(xas, &mapping->i_pages, index); |
| 2357 | struct page *head; |
| 2358 | |
| 2359 | rcu_read_lock(); |
| 2360 | for (head = xas_load(&xas); head; head = xas_next(&xas)) { |
| 2361 | if (xas_retry(&xas, head)) |
| 2362 | continue; |
| 2363 | if (xas.xa_index > max || xa_is_value(head)) |
| 2364 | break; |
| 2365 | if (!page_cache_get_speculative(head)) |
| 2366 | goto retry; |
| 2367 | |
| 2368 | /* Has the page moved or been split? */ |
| 2369 | if (unlikely(head != xas_reload(&xas))) |
| 2370 | goto put_page; |
| 2371 | |
| 2372 | if (!pagevec_add(pvec, head)) |
| 2373 | break; |
| 2374 | if (!PageUptodate(head)) |
| 2375 | break; |
| 2376 | if (PageReadahead(head)) |
| 2377 | break; |
| 2378 | xas.xa_index = head->index + thp_nr_pages(head) - 1; |
| 2379 | xas.xa_offset = (xas.xa_index >> xas.xa_shift) & XA_CHUNK_MASK; |
| 2380 | continue; |
| 2381 | put_page: |
| 2382 | put_page(head); |
| 2383 | retry: |
| 2384 | xas_reset(&xas); |
| 2385 | } |
| 2386 | rcu_read_unlock(); |
| 2387 | } |
| 2388 | |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2389 | static int filemap_read_page(struct file *file, struct address_space *mapping, |
| 2390 | struct page *page) |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2391 | { |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2392 | int error; |
| 2393 | |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2394 | /* |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2395 | * A previous I/O error may have been due to temporary failures, |
| 2396 | * eg. multipath errors. PG_error will be set again if readpage |
| 2397 | * fails. |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2398 | */ |
| 2399 | ClearPageError(page); |
| 2400 | /* Start the actual read. The read will unlock the page. */ |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2401 | error = mapping->a_ops->readpage(file, page); |
| 2402 | if (error) |
| 2403 | return error; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2404 | |
Matthew Wilcox (Oracle) | aa1ec2f | 2021-02-24 12:02:38 -0800 | [diff] [blame] | 2405 | error = wait_on_page_locked_killable(page); |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2406 | if (error) |
| 2407 | return error; |
Matthew Wilcox (Oracle) | aa1ec2f | 2021-02-24 12:02:38 -0800 | [diff] [blame] | 2408 | if (PageUptodate(page)) |
| 2409 | return 0; |
Matthew Wilcox (Oracle) | aa1ec2f | 2021-02-24 12:02:38 -0800 | [diff] [blame] | 2410 | shrink_readahead_size_eio(&file->f_ra); |
| 2411 | return -EIO; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2412 | } |
| 2413 | |
Matthew Wilcox (Oracle) | fce70da | 2021-02-24 12:02:28 -0800 | [diff] [blame] | 2414 | static bool filemap_range_uptodate(struct address_space *mapping, |
| 2415 | loff_t pos, struct iov_iter *iter, struct page *page) |
| 2416 | { |
| 2417 | int count; |
| 2418 | |
| 2419 | if (PageUptodate(page)) |
| 2420 | return true; |
| 2421 | /* pipes can't handle partially uptodate pages */ |
| 2422 | if (iov_iter_is_pipe(iter)) |
| 2423 | return false; |
| 2424 | if (!mapping->a_ops->is_partially_uptodate) |
| 2425 | return false; |
| 2426 | if (mapping->host->i_blkbits >= (PAGE_SHIFT + thp_order(page))) |
| 2427 | return false; |
| 2428 | |
| 2429 | count = iter->count; |
| 2430 | if (page_offset(page) > pos) { |
| 2431 | count -= page_offset(page) - pos; |
| 2432 | pos = 0; |
| 2433 | } else { |
| 2434 | pos -= page_offset(page); |
| 2435 | } |
| 2436 | |
| 2437 | return mapping->a_ops->is_partially_uptodate(page, pos, count); |
| 2438 | } |
| 2439 | |
Matthew Wilcox (Oracle) | 4612aee | 2021-02-24 12:02:22 -0800 | [diff] [blame] | 2440 | static int filemap_update_page(struct kiocb *iocb, |
| 2441 | struct address_space *mapping, struct iov_iter *iter, |
Matthew Wilcox (Oracle) | fce70da | 2021-02-24 12:02:28 -0800 | [diff] [blame] | 2442 | struct page *page) |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2443 | { |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2444 | int error; |
| 2445 | |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2446 | if (iocb->ki_flags & IOCB_NOWAIT) { |
| 2447 | if (!filemap_invalidate_trylock_shared(mapping)) |
Matthew Wilcox (Oracle) | 87d1d7b | 2021-02-24 12:02:25 -0800 | [diff] [blame] | 2448 | return -EAGAIN; |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2449 | } else { |
| 2450 | filemap_invalidate_lock_shared(mapping); |
| 2451 | } |
| 2452 | |
| 2453 | if (!trylock_page(page)) { |
| 2454 | error = -EAGAIN; |
| 2455 | if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_NOIO)) |
| 2456 | goto unlock_mapping; |
Matthew Wilcox (Oracle) | 87d1d7b | 2021-02-24 12:02:25 -0800 | [diff] [blame] | 2457 | if (!(iocb->ki_flags & IOCB_WAITQ)) { |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2458 | filemap_invalidate_unlock_shared(mapping); |
Matthew Wilcox (Oracle) | bd8a1f3 | 2021-02-24 12:02:05 -0800 | [diff] [blame] | 2459 | put_and_wait_on_page_locked(page, TASK_KILLABLE); |
Matthew Wilcox (Oracle) | 4612aee | 2021-02-24 12:02:22 -0800 | [diff] [blame] | 2460 | return AOP_TRUNCATED_PAGE; |
Matthew Wilcox (Oracle) | bd8a1f3 | 2021-02-24 12:02:05 -0800 | [diff] [blame] | 2461 | } |
Matthew Wilcox (Oracle) | 87d1d7b | 2021-02-24 12:02:25 -0800 | [diff] [blame] | 2462 | error = __lock_page_async(page, iocb->ki_waitq); |
| 2463 | if (error) |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2464 | goto unlock_mapping; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2465 | } |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2466 | |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2467 | error = AOP_TRUNCATED_PAGE; |
Matthew Wilcox (Oracle) | bd8a1f3 | 2021-02-24 12:02:05 -0800 | [diff] [blame] | 2468 | if (!page->mapping) |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2469 | goto unlock; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2470 | |
Matthew Wilcox (Oracle) | fce70da | 2021-02-24 12:02:28 -0800 | [diff] [blame] | 2471 | error = 0; |
| 2472 | if (filemap_range_uptodate(mapping, iocb->ki_pos, iter, page)) |
| 2473 | goto unlock; |
| 2474 | |
| 2475 | error = -EAGAIN; |
| 2476 | if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ)) |
| 2477 | goto unlock; |
| 2478 | |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2479 | error = filemap_read_page(iocb->ki_filp, mapping, page); |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2480 | goto unlock_mapping; |
Matthew Wilcox (Oracle) | fce70da | 2021-02-24 12:02:28 -0800 | [diff] [blame] | 2481 | unlock: |
| 2482 | unlock_page(page); |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2483 | unlock_mapping: |
| 2484 | filemap_invalidate_unlock_shared(mapping); |
| 2485 | if (error == AOP_TRUNCATED_PAGE) |
| 2486 | put_page(page); |
Matthew Wilcox (Oracle) | fce70da | 2021-02-24 12:02:28 -0800 | [diff] [blame] | 2487 | return error; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2488 | } |
| 2489 | |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2490 | static int filemap_create_page(struct file *file, |
| 2491 | struct address_space *mapping, pgoff_t index, |
| 2492 | struct pagevec *pvec) |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2493 | { |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2494 | struct page *page; |
| 2495 | int error; |
| 2496 | |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2497 | page = page_cache_alloc(mapping); |
| 2498 | if (!page) |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2499 | return -ENOMEM; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2500 | |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2501 | /* |
| 2502 | * Protect against truncate / hole punch. Grabbing invalidate_lock here |
| 2503 | * assures we cannot instantiate and bring uptodate new pagecache pages |
| 2504 | * after evicting page cache during truncate and before actually |
| 2505 | * freeing blocks. Note that we could release invalidate_lock after |
| 2506 | * inserting the page into page cache as the locked page would then be |
| 2507 | * enough to synchronize with hole punching. But there are code paths |
| 2508 | * such as filemap_update_page() filling in partially uptodate pages or |
| 2509 | * ->readpages() that need to hold invalidate_lock while mapping blocks |
| 2510 | * for IO so let's hold the lock here as well to keep locking rules |
| 2511 | * simple. |
| 2512 | */ |
| 2513 | filemap_invalidate_lock_shared(mapping); |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2514 | error = add_to_page_cache_lru(page, mapping, index, |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2515 | mapping_gfp_constraint(mapping, GFP_KERNEL)); |
| 2516 | if (error == -EEXIST) |
| 2517 | error = AOP_TRUNCATED_PAGE; |
| 2518 | if (error) |
| 2519 | goto error; |
| 2520 | |
| 2521 | error = filemap_read_page(file, mapping, page); |
| 2522 | if (error) |
| 2523 | goto error; |
| 2524 | |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2525 | filemap_invalidate_unlock_shared(mapping); |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2526 | pagevec_add(pvec, page); |
| 2527 | return 0; |
| 2528 | error: |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 2529 | filemap_invalidate_unlock_shared(mapping); |
Matthew Wilcox (Oracle) | 6843030 | 2021-02-24 12:02:15 -0800 | [diff] [blame] | 2530 | put_page(page); |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2531 | return error; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2532 | } |
| 2533 | |
Matthew Wilcox (Oracle) | 5963fe0 | 2021-02-24 12:02:32 -0800 | [diff] [blame] | 2534 | static int filemap_readahead(struct kiocb *iocb, struct file *file, |
| 2535 | struct address_space *mapping, struct page *page, |
| 2536 | pgoff_t last_index) |
| 2537 | { |
| 2538 | if (iocb->ki_flags & IOCB_NOIO) |
| 2539 | return -EAGAIN; |
| 2540 | page_cache_async_readahead(mapping, &file->f_ra, file, page, |
| 2541 | page->index, last_index - page->index); |
| 2542 | return 0; |
| 2543 | } |
| 2544 | |
Matthew Wilcox (Oracle) | 3a6bae4 | 2021-02-24 12:01:49 -0800 | [diff] [blame] | 2545 | static int filemap_get_pages(struct kiocb *iocb, struct iov_iter *iter, |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2546 | struct pagevec *pvec) |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2547 | { |
| 2548 | struct file *filp = iocb->ki_filp; |
| 2549 | struct address_space *mapping = filp->f_mapping; |
| 2550 | struct file_ra_state *ra = &filp->f_ra; |
| 2551 | pgoff_t index = iocb->ki_pos >> PAGE_SHIFT; |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2552 | pgoff_t last_index; |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2553 | struct page *page; |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2554 | int err = 0; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2555 | |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2556 | last_index = DIV_ROUND_UP(iocb->ki_pos + iter->count, PAGE_SIZE); |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2557 | retry: |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2558 | if (fatal_signal_pending(current)) |
| 2559 | return -EINTR; |
| 2560 | |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2561 | filemap_get_read_batch(mapping, index, last_index, pvec); |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2562 | if (!pagevec_count(pvec)) { |
| 2563 | if (iocb->ki_flags & IOCB_NOIO) |
| 2564 | return -EAGAIN; |
| 2565 | page_cache_sync_readahead(mapping, ra, filp, index, |
| 2566 | last_index - index); |
| 2567 | filemap_get_read_batch(mapping, index, last_index, pvec); |
| 2568 | } |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2569 | if (!pagevec_count(pvec)) { |
| 2570 | if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_WAITQ)) |
| 2571 | return -EAGAIN; |
| 2572 | err = filemap_create_page(filp, mapping, |
| 2573 | iocb->ki_pos >> PAGE_SHIFT, pvec); |
| 2574 | if (err == AOP_TRUNCATED_PAGE) |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2575 | goto retry; |
Matthew Wilcox (Oracle) | f253e18 | 2021-02-24 12:02:18 -0800 | [diff] [blame] | 2576 | return err; |
| 2577 | } |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2578 | |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2579 | page = pvec->pages[pagevec_count(pvec) - 1]; |
| 2580 | if (PageReadahead(page)) { |
| 2581 | err = filemap_readahead(iocb, filp, mapping, page, last_index); |
| 2582 | if (err) |
| 2583 | goto err; |
| 2584 | } |
| 2585 | if (!PageUptodate(page)) { |
| 2586 | if ((iocb->ki_flags & IOCB_WAITQ) && pagevec_count(pvec) > 1) |
| 2587 | iocb->ki_flags |= IOCB_NOWAIT; |
| 2588 | err = filemap_update_page(iocb, mapping, iter, page); |
| 2589 | if (err) |
| 2590 | goto err; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2591 | } |
| 2592 | |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2593 | return 0; |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2594 | err: |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2595 | if (err < 0) |
| 2596 | put_page(page); |
| 2597 | if (likely(--pvec->nr)) |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2598 | return 0; |
Matthew Wilcox (Oracle) | 4612aee | 2021-02-24 12:02:22 -0800 | [diff] [blame] | 2599 | if (err == AOP_TRUNCATED_PAGE) |
Matthew Wilcox (Oracle) | 2642fca | 2021-02-24 12:02:35 -0800 | [diff] [blame] | 2600 | goto retry; |
| 2601 | return err; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2602 | } |
| 2603 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2604 | /** |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2605 | * filemap_read - Read data from the page cache. |
| 2606 | * @iocb: The iocb to read. |
| 2607 | * @iter: Destination for the data. |
| 2608 | * @already_read: Number of bytes already read by the caller. |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2609 | * |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2610 | * Copies data from the page cache. If the data is not currently present, |
| 2611 | * uses the readahead and readpage address_space operations to fetch it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | * |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2613 | * Return: Total number of bytes copied, including those already read by |
| 2614 | * the caller. If an error happens before any bytes are copied, returns |
| 2615 | * a negative error number. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | */ |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2617 | ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *iter, |
| 2618 | ssize_t already_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | { |
Christoph Hellwig | 47c27bc | 2017-08-29 16:13:18 +0200 | [diff] [blame] | 2620 | struct file *filp = iocb->ki_filp; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2621 | struct file_ra_state *ra = &filp->f_ra; |
Christoph Hellwig | 36e7891 | 2008-02-08 04:21:24 -0800 | [diff] [blame] | 2622 | struct address_space *mapping = filp->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | struct inode *inode = mapping->host; |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2624 | struct pagevec pvec; |
| 2625 | int i, error = 0; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2626 | bool writably_mapped; |
| 2627 | loff_t isize, end_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2629 | if (unlikely(iocb->ki_pos >= inode->i_sb->s_maxbytes)) |
Linus Torvalds | d05c5f7 | 2016-12-14 12:45:25 -0800 | [diff] [blame] | 2630 | return 0; |
Kent Overstreet | 3644e2d | 2020-12-18 04:07:11 -0500 | [diff] [blame] | 2631 | if (unlikely(!iov_iter_count(iter))) |
| 2632 | return 0; |
| 2633 | |
Wei Fang | c2a9737 | 2016-10-07 17:01:52 -0700 | [diff] [blame] | 2634 | iov_iter_truncate(iter, inode->i_sb->s_maxbytes); |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2635 | pagevec_init(&pvec); |
Wei Fang | c2a9737 | 2016-10-07 17:01:52 -0700 | [diff] [blame] | 2636 | |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2637 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | cond_resched(); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2639 | |
| 2640 | /* |
| 2641 | * If we've already successfully copied some data, then we |
| 2642 | * can no longer safely return -EIOCBQUEUED. Hence mark |
| 2643 | * an async read NOWAIT at that point. |
| 2644 | */ |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2645 | if ((iocb->ki_flags & IOCB_WAITQ) && already_read) |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2646 | iocb->ki_flags |= IOCB_NOWAIT; |
| 2647 | |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2648 | error = filemap_get_pages(iocb, iter, &pvec); |
| 2649 | if (error < 0) |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2650 | break; |
Michal Hocko | 5abf186 | 2017-02-03 13:13:29 -0800 | [diff] [blame] | 2651 | |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2652 | /* |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2653 | * i_size must be checked after we know the pages are Uptodate. |
| 2654 | * |
| 2655 | * Checking i_size after the check allows us to calculate |
| 2656 | * the correct value for "nr", which means the zero-filled |
| 2657 | * part of the page is not copied back to userspace (unless |
| 2658 | * another truncate extends the file - this is desired though). |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2659 | */ |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2660 | isize = i_size_read(inode); |
| 2661 | if (unlikely(iocb->ki_pos >= isize)) |
| 2662 | goto put_pages; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2663 | end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count); |
| 2664 | |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2665 | /* |
| 2666 | * Once we start copying data, we don't want to be touching any |
| 2667 | * cachelines that might be contended: |
| 2668 | */ |
| 2669 | writably_mapped = mapping_writably_mapped(mapping); |
| 2670 | |
| 2671 | /* |
| 2672 | * When a sequential read accesses a page several times, only |
| 2673 | * mark it as accessed the first time. |
| 2674 | */ |
| 2675 | if (iocb->ki_pos >> PAGE_SHIFT != |
| 2676 | ra->prev_pos >> PAGE_SHIFT) |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2677 | mark_page_accessed(pvec.pages[0]); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2678 | |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2679 | for (i = 0; i < pagevec_count(&pvec); i++) { |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2680 | struct page *page = pvec.pages[i]; |
| 2681 | size_t page_size = thp_size(page); |
| 2682 | size_t offset = iocb->ki_pos & (page_size - 1); |
| 2683 | size_t bytes = min_t(loff_t, end_offset - iocb->ki_pos, |
| 2684 | page_size - offset); |
| 2685 | size_t copied; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2686 | |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2687 | if (end_offset < page_offset(page)) |
| 2688 | break; |
| 2689 | if (i > 0) |
| 2690 | mark_page_accessed(page); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2691 | /* |
| 2692 | * If users can be writing to this page using arbitrary |
| 2693 | * virtual addresses, take care about potential aliasing |
| 2694 | * before reading the page on the kernel side. |
| 2695 | */ |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2696 | if (writably_mapped) { |
| 2697 | int j; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2698 | |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2699 | for (j = 0; j < thp_nr_pages(page); j++) |
| 2700 | flush_dcache_page(page + j); |
| 2701 | } |
| 2702 | |
| 2703 | copied = copy_page_to_iter(page, offset, bytes, iter); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2704 | |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2705 | already_read += copied; |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2706 | iocb->ki_pos += copied; |
| 2707 | ra->prev_pos = iocb->ki_pos; |
| 2708 | |
| 2709 | if (copied < bytes) { |
| 2710 | error = -EFAULT; |
| 2711 | break; |
Kent Overstreet | 723ef24 | 2020-12-14 19:04:52 -0800 | [diff] [blame] | 2712 | } |
Fengguang Wu | 3ea89ee | 2007-07-19 01:48:02 -0700 | [diff] [blame] | 2713 | } |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2714 | put_pages: |
Matthew Wilcox (Oracle) | ff993ba | 2021-02-24 12:01:55 -0800 | [diff] [blame] | 2715 | for (i = 0; i < pagevec_count(&pvec); i++) |
| 2716 | put_page(pvec.pages[i]); |
Matthew Wilcox (Oracle) | cbd59c4 | 2021-02-24 12:01:59 -0800 | [diff] [blame] | 2717 | pagevec_reinit(&pvec); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2718 | } while (iov_iter_count(iter) && iocb->ki_pos < isize && !error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | |
Krishna Kumar | 0c6aa26 | 2008-10-15 22:01:13 -0700 | [diff] [blame] | 2720 | file_accessed(filp); |
Kent Overstreet | 06c0444 | 2020-12-14 19:04:56 -0800 | [diff] [blame] | 2721 | |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2722 | return already_read ? already_read : error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | } |
Christoph Hellwig | 87fa0f3 | 2021-02-24 12:02:42 -0800 | [diff] [blame] | 2724 | EXPORT_SYMBOL_GPL(filemap_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2726 | /** |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 2727 | * generic_file_read_iter - generic filesystem read routine |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2728 | * @iocb: kernel I/O control block |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 2729 | * @iter: destination for the data read |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2730 | * |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 2731 | * This is the "read_iter()" routine for all filesystems |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | * that can use the page cache directly. |
Andreas Gruenbacher | 41da51b | 2019-11-21 23:25:07 +0000 | [diff] [blame] | 2733 | * |
| 2734 | * The IOCB_NOWAIT flag in iocb->ki_flags indicates that -EAGAIN shall |
| 2735 | * be returned when no data can be read without waiting for I/O requests |
| 2736 | * to complete; it doesn't prevent readahead. |
| 2737 | * |
| 2738 | * The IOCB_NOIO flag in iocb->ki_flags indicates that no new I/O |
| 2739 | * requests shall be made for the read or for readahead. When no data |
| 2740 | * can be read, -EAGAIN shall be returned. When readahead would be |
| 2741 | * triggered, a partial, possibly empty read shall be returned. |
| 2742 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 2743 | * Return: |
| 2744 | * * number of bytes copied, even for partial reads |
Andreas Gruenbacher | 41da51b | 2019-11-21 23:25:07 +0000 | [diff] [blame] | 2745 | * * negative error code (or 0 if IOCB_NOIO) if nothing was read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | */ |
| 2747 | ssize_t |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 2748 | generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | { |
Nicolai Stange | e7080a4 | 2016-03-25 14:22:14 -0700 | [diff] [blame] | 2750 | size_t count = iov_iter_count(iter); |
Christoph Hellwig | 47c27bc | 2017-08-29 16:13:18 +0200 | [diff] [blame] | 2751 | ssize_t retval = 0; |
Nicolai Stange | e7080a4 | 2016-03-25 14:22:14 -0700 | [diff] [blame] | 2752 | |
| 2753 | if (!count) |
Christoph Hellwig | 826ea86 | 2021-02-24 12:02:45 -0800 | [diff] [blame] | 2754 | return 0; /* skip atime */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 2756 | if (iocb->ki_flags & IOCB_DIRECT) { |
Christoph Hellwig | 47c27bc | 2017-08-29 16:13:18 +0200 | [diff] [blame] | 2757 | struct file *file = iocb->ki_filp; |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 2758 | struct address_space *mapping = file->f_mapping; |
| 2759 | struct inode *inode = mapping->host; |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 2760 | loff_t size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | size = i_size_read(inode); |
Goldwyn Rodrigues | 6be96d3 | 2017-06-20 07:05:44 -0500 | [diff] [blame] | 2763 | if (iocb->ki_flags & IOCB_NOWAIT) { |
Jens Axboe | 7a60d6d | 2021-04-29 22:55:21 -0700 | [diff] [blame] | 2764 | if (filemap_range_needs_writeback(mapping, iocb->ki_pos, |
| 2765 | iocb->ki_pos + count - 1)) |
Goldwyn Rodrigues | 6be96d3 | 2017-06-20 07:05:44 -0500 | [diff] [blame] | 2766 | return -EAGAIN; |
| 2767 | } else { |
| 2768 | retval = filemap_write_and_wait_range(mapping, |
| 2769 | iocb->ki_pos, |
| 2770 | iocb->ki_pos + count - 1); |
| 2771 | if (retval < 0) |
Christoph Hellwig | 826ea86 | 2021-02-24 12:02:45 -0800 | [diff] [blame] | 2772 | return retval; |
Goldwyn Rodrigues | 6be96d3 | 2017-06-20 07:05:44 -0500 | [diff] [blame] | 2773 | } |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 2774 | |
Christoph Hellwig | 0d5b0cf | 2016-10-03 09:48:08 +1100 | [diff] [blame] | 2775 | file_accessed(file); |
| 2776 | |
Al Viro | 5ecda13 | 2017-04-13 14:13:36 -0400 | [diff] [blame] | 2777 | retval = mapping->a_ops->direct_IO(iocb, iter); |
Al Viro | c3a6902 | 2016-10-10 13:26:27 -0400 | [diff] [blame] | 2778 | if (retval >= 0) { |
Christoph Hellwig | c64fb5c | 2016-04-07 08:51:55 -0700 | [diff] [blame] | 2779 | iocb->ki_pos += retval; |
Al Viro | 5ecda13 | 2017-04-13 14:13:36 -0400 | [diff] [blame] | 2780 | count -= retval; |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 2781 | } |
Pavel Begunkov | ab2125d | 2021-02-24 12:01:45 -0800 | [diff] [blame] | 2782 | if (retval != -EIOCBQUEUED) |
| 2783 | iov_iter_revert(iter, count - iov_iter_count(iter)); |
Josef Bacik | 66f998f | 2010-05-23 11:00:54 -0400 | [diff] [blame] | 2784 | |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 2785 | /* |
| 2786 | * Btrfs can have a short DIO read if we encounter |
| 2787 | * compressed extents, so if there was an error, or if |
| 2788 | * we've already read everything we wanted to, or if |
| 2789 | * there was a short read because we hit EOF, go ahead |
| 2790 | * and return. Otherwise fallthrough to buffered io for |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 2791 | * the rest of the read. Buffered reads will not work for |
| 2792 | * DAX files, so don't bother trying. |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 2793 | */ |
Al Viro | 5ecda13 | 2017-04-13 14:13:36 -0400 | [diff] [blame] | 2794 | if (retval < 0 || !count || iocb->ki_pos >= size || |
Christoph Hellwig | 0d5b0cf | 2016-10-03 09:48:08 +1100 | [diff] [blame] | 2795 | IS_DAX(inode)) |
Christoph Hellwig | 826ea86 | 2021-02-24 12:02:45 -0800 | [diff] [blame] | 2796 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2797 | } |
| 2798 | |
Christoph Hellwig | 826ea86 | 2021-02-24 12:02:45 -0800 | [diff] [blame] | 2799 | return filemap_read(iocb, iter, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | } |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 2801 | EXPORT_SYMBOL(generic_file_read_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | |
Matthew Wilcox (Oracle) | 54fa39a | 2021-02-25 17:15:52 -0800 | [diff] [blame] | 2803 | static inline loff_t page_seek_hole_data(struct xa_state *xas, |
| 2804 | struct address_space *mapping, struct page *page, |
| 2805 | loff_t start, loff_t end, bool seek_data) |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2806 | { |
Matthew Wilcox (Oracle) | 54fa39a | 2021-02-25 17:15:52 -0800 | [diff] [blame] | 2807 | const struct address_space_operations *ops = mapping->a_ops; |
| 2808 | size_t offset, bsz = i_blocksize(mapping->host); |
| 2809 | |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2810 | if (xa_is_value(page) || PageUptodate(page)) |
Matthew Wilcox (Oracle) | 54fa39a | 2021-02-25 17:15:52 -0800 | [diff] [blame] | 2811 | return seek_data ? start : end; |
| 2812 | if (!ops->is_partially_uptodate) |
| 2813 | return seek_data ? end : start; |
| 2814 | |
| 2815 | xas_pause(xas); |
| 2816 | rcu_read_unlock(); |
| 2817 | lock_page(page); |
| 2818 | if (unlikely(page->mapping != mapping)) |
| 2819 | goto unlock; |
| 2820 | |
| 2821 | offset = offset_in_thp(page, start) & ~(bsz - 1); |
| 2822 | |
| 2823 | do { |
| 2824 | if (ops->is_partially_uptodate(page, offset, bsz) == seek_data) |
| 2825 | break; |
| 2826 | start = (start + bsz) & ~(bsz - 1); |
| 2827 | offset += bsz; |
| 2828 | } while (offset < thp_size(page)); |
| 2829 | unlock: |
| 2830 | unlock_page(page); |
| 2831 | rcu_read_lock(); |
| 2832 | return start; |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2833 | } |
| 2834 | |
| 2835 | static inline |
| 2836 | unsigned int seek_page_size(struct xa_state *xas, struct page *page) |
| 2837 | { |
| 2838 | if (xa_is_value(page)) |
| 2839 | return PAGE_SIZE << xa_get_order(xas->xa, xas->xa_index); |
| 2840 | return thp_size(page); |
| 2841 | } |
| 2842 | |
| 2843 | /** |
| 2844 | * mapping_seek_hole_data - Seek for SEEK_DATA / SEEK_HOLE in the page cache. |
| 2845 | * @mapping: Address space to search. |
| 2846 | * @start: First byte to consider. |
| 2847 | * @end: Limit of search (exclusive). |
| 2848 | * @whence: Either SEEK_HOLE or SEEK_DATA. |
| 2849 | * |
| 2850 | * If the page cache knows which blocks contain holes and which blocks |
| 2851 | * contain data, your filesystem can use this function to implement |
| 2852 | * SEEK_HOLE and SEEK_DATA. This is useful for filesystems which are |
| 2853 | * entirely memory-based such as tmpfs, and filesystems which support |
| 2854 | * unwritten extents. |
| 2855 | * |
Ingo Molnar | f0953a1 | 2021-05-06 18:06:47 -0700 | [diff] [blame] | 2856 | * Return: The requested offset on success, or -ENXIO if @whence specifies |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2857 | * SEEK_DATA and there is no data after @start. There is an implicit hole |
| 2858 | * after @end - 1, so SEEK_HOLE returns @end if all the bytes between @start |
| 2859 | * and @end contain data. |
| 2860 | */ |
| 2861 | loff_t mapping_seek_hole_data(struct address_space *mapping, loff_t start, |
| 2862 | loff_t end, int whence) |
| 2863 | { |
| 2864 | XA_STATE(xas, &mapping->i_pages, start >> PAGE_SHIFT); |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2865 | pgoff_t max = (end - 1) >> PAGE_SHIFT; |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2866 | bool seek_data = (whence == SEEK_DATA); |
| 2867 | struct page *page; |
| 2868 | |
| 2869 | if (end <= start) |
| 2870 | return -ENXIO; |
| 2871 | |
| 2872 | rcu_read_lock(); |
| 2873 | while ((page = find_get_entry(&xas, max, XA_PRESENT))) { |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2874 | loff_t pos = (u64)xas.xa_index << PAGE_SHIFT; |
| 2875 | unsigned int seek_size; |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2876 | |
| 2877 | if (start < pos) { |
| 2878 | if (!seek_data) |
| 2879 | goto unlock; |
| 2880 | start = pos; |
| 2881 | } |
| 2882 | |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2883 | seek_size = seek_page_size(&xas, page); |
| 2884 | pos = round_up(pos + 1, seek_size); |
Matthew Wilcox (Oracle) | 54fa39a | 2021-02-25 17:15:52 -0800 | [diff] [blame] | 2885 | start = page_seek_hole_data(&xas, mapping, page, start, pos, |
| 2886 | seek_data); |
| 2887 | if (start < pos) |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2888 | goto unlock; |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2889 | if (start >= end) |
| 2890 | break; |
| 2891 | if (seek_size > PAGE_SIZE) |
| 2892 | xas_set(&xas, pos >> PAGE_SHIFT); |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2893 | if (!xa_is_value(page)) |
| 2894 | put_page(page); |
| 2895 | } |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2896 | if (seek_data) |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2897 | start = -ENXIO; |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2898 | unlock: |
| 2899 | rcu_read_unlock(); |
Hugh Dickins | ed98b01 | 2021-04-23 14:29:00 -0700 | [diff] [blame] | 2900 | if (page && !xa_is_value(page)) |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2901 | put_page(page); |
Matthew Wilcox (Oracle) | 41139aa | 2021-02-25 17:15:48 -0800 | [diff] [blame] | 2902 | if (start > end) |
| 2903 | return end; |
| 2904 | return start; |
| 2905 | } |
| 2906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | #define MMAP_LOTSAMISS (100) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2909 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2910 | * lock_page_maybe_drop_mmap - lock the page, possibly dropping the mmap_lock |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2911 | * @vmf - the vm_fault for this fault. |
| 2912 | * @page - the page to lock. |
| 2913 | * @fpin - the pointer to the file we may pin (or is already pinned). |
| 2914 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2915 | * This works similar to lock_page_or_retry in that it can drop the mmap_lock. |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2916 | * It differs in that it actually returns the page locked if it returns 1 and 0 |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2917 | * if it couldn't lock the page. If we did have to drop the mmap_lock then fpin |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2918 | * will point to the pinned file and needs to be fput()'ed at a later point. |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2919 | */ |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2920 | static int lock_page_maybe_drop_mmap(struct vm_fault *vmf, struct page *page, |
| 2921 | struct file **fpin) |
| 2922 | { |
| 2923 | if (trylock_page(page)) |
| 2924 | return 1; |
| 2925 | |
Linus Torvalds | 8b0f9fa | 2019-03-15 11:26:07 -0700 | [diff] [blame] | 2926 | /* |
| 2927 | * NOTE! This will make us return with VM_FAULT_RETRY, but with |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2928 | * the mmap_lock still held. That's how FAULT_FLAG_RETRY_NOWAIT |
Linus Torvalds | 8b0f9fa | 2019-03-15 11:26:07 -0700 | [diff] [blame] | 2929 | * is supposed to work. We have way too many special cases.. |
| 2930 | */ |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2931 | if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT) |
| 2932 | return 0; |
| 2933 | |
| 2934 | *fpin = maybe_unlock_mmap_for_io(vmf, *fpin); |
| 2935 | if (vmf->flags & FAULT_FLAG_KILLABLE) { |
| 2936 | if (__lock_page_killable(page)) { |
| 2937 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2938 | * We didn't have the right flags to drop the mmap_lock, |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2939 | * but all fault_handlers only check for fatal signals |
| 2940 | * if we return VM_FAULT_RETRY, so we need to drop the |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2941 | * mmap_lock here and return 0 if we don't have a fpin. |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2942 | */ |
| 2943 | if (*fpin == NULL) |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2944 | mmap_read_unlock(vmf->vma->vm_mm); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2945 | return 0; |
| 2946 | } |
| 2947 | } else |
| 2948 | __lock_page(page); |
| 2949 | return 1; |
| 2950 | } |
| 2951 | |
| 2952 | |
| 2953 | /* |
| 2954 | * Synchronous readahead happens when we don't even find a page in the page |
| 2955 | * cache at all. We don't want to perform IO under the mmap sem, so if we have |
| 2956 | * to drop the mmap sem we return the file that was pinned in order for us to do |
| 2957 | * that. If we didn't pin a file then we return NULL. The file that is |
| 2958 | * returned needs to be fput()'ed when we're done with it. |
| 2959 | */ |
| 2960 | static struct file *do_sync_mmap_readahead(struct vm_fault *vmf) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2961 | { |
Josef Bacik | 2a1180f | 2019-03-13 11:44:18 -0700 | [diff] [blame] | 2962 | struct file *file = vmf->vma->vm_file; |
| 2963 | struct file_ra_state *ra = &file->f_ra; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2964 | struct address_space *mapping = file->f_mapping; |
Matthew Wilcox (Oracle) | fcd9ae4 | 2021-04-07 21:18:55 +0100 | [diff] [blame] | 2965 | DEFINE_READAHEAD(ractl, file, ra, mapping, vmf->pgoff); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2966 | struct file *fpin = NULL; |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 2967 | unsigned int mmap_miss; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2968 | |
| 2969 | /* If we don't want any read-ahead, don't bother */ |
Josef Bacik | 2a1180f | 2019-03-13 11:44:18 -0700 | [diff] [blame] | 2970 | if (vmf->vma->vm_flags & VM_RAND_READ) |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2971 | return fpin; |
Wu Fengguang | 275b12b | 2011-05-24 17:12:28 -0700 | [diff] [blame] | 2972 | if (!ra->ra_pages) |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2973 | return fpin; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2974 | |
Josef Bacik | 2a1180f | 2019-03-13 11:44:18 -0700 | [diff] [blame] | 2975 | if (vmf->vma->vm_flags & VM_SEQ_READ) { |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2976 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
Matthew Wilcox (Oracle) | fcd9ae4 | 2021-04-07 21:18:55 +0100 | [diff] [blame] | 2977 | page_cache_sync_ra(&ractl, ra->ra_pages); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2978 | return fpin; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2979 | } |
| 2980 | |
Andi Kleen | 207d04b | 2011-05-24 17:12:29 -0700 | [diff] [blame] | 2981 | /* Avoid banging the cache line if not needed */ |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 2982 | mmap_miss = READ_ONCE(ra->mmap_miss); |
| 2983 | if (mmap_miss < MMAP_LOTSAMISS * 10) |
| 2984 | WRITE_ONCE(ra->mmap_miss, ++mmap_miss); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2985 | |
| 2986 | /* |
| 2987 | * Do we miss much more than hit in this file? If so, |
| 2988 | * stop bothering with read-ahead. It will only hurt. |
| 2989 | */ |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 2990 | if (mmap_miss > MMAP_LOTSAMISS) |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2991 | return fpin; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 2992 | |
Wu Fengguang | d30a110 | 2009-06-16 15:31:30 -0700 | [diff] [blame] | 2993 | /* |
| 2994 | * mmap read-around |
| 2995 | */ |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 2996 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
David Howells | db660d4 | 2020-10-15 20:06:31 -0700 | [diff] [blame] | 2997 | ra->start = max_t(long, 0, vmf->pgoff - ra->ra_pages / 2); |
Roman Gushchin | 600e19a | 2015-11-05 18:47:08 -0800 | [diff] [blame] | 2998 | ra->size = ra->ra_pages; |
| 2999 | ra->async_size = ra->ra_pages / 4; |
David Howells | db660d4 | 2020-10-15 20:06:31 -0700 | [diff] [blame] | 3000 | ractl._index = ra->start; |
| 3001 | do_page_cache_ra(&ractl, ra->size, ra->async_size); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3002 | return fpin; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3003 | } |
| 3004 | |
| 3005 | /* |
| 3006 | * Asynchronous readahead happens when we find the page and PG_readahead, |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3007 | * so we want to possibly extend the readahead further. We return the file that |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3008 | * was pinned if we have to drop the mmap_lock in order to do IO. |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3009 | */ |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3010 | static struct file *do_async_mmap_readahead(struct vm_fault *vmf, |
| 3011 | struct page *page) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3012 | { |
Josef Bacik | 2a1180f | 2019-03-13 11:44:18 -0700 | [diff] [blame] | 3013 | struct file *file = vmf->vma->vm_file; |
| 3014 | struct file_ra_state *ra = &file->f_ra; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3015 | struct address_space *mapping = file->f_mapping; |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3016 | struct file *fpin = NULL; |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 3017 | unsigned int mmap_miss; |
Josef Bacik | 2a1180f | 2019-03-13 11:44:18 -0700 | [diff] [blame] | 3018 | pgoff_t offset = vmf->pgoff; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3019 | |
| 3020 | /* If we don't want any read-ahead, don't bother */ |
Jan Kara | 5c72fee | 2020-04-01 21:04:40 -0700 | [diff] [blame] | 3021 | if (vmf->vma->vm_flags & VM_RAND_READ || !ra->ra_pages) |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3022 | return fpin; |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 3023 | mmap_miss = READ_ONCE(ra->mmap_miss); |
| 3024 | if (mmap_miss) |
| 3025 | WRITE_ONCE(ra->mmap_miss, --mmap_miss); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3026 | if (PageReadahead(page)) { |
| 3027 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
Wu Fengguang | 2fad6f5 | 2009-06-16 15:31:29 -0700 | [diff] [blame] | 3028 | page_cache_async_readahead(mapping, ra, file, |
| 3029 | page, offset, ra->ra_pages); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3030 | } |
| 3031 | return fpin; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3032 | } |
| 3033 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 3034 | /** |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 3035 | * filemap_fault - read in file data for page fault handling |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 3036 | * @vmf: struct vm_fault containing details of the fault |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 3037 | * |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 3038 | * filemap_fault() is invoked via the vma operations vector for a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3039 | * mapped memory region to read in file data during a page fault. |
| 3040 | * |
| 3041 | * The goto's are kind of ugly, but this streamlines the normal case of having |
| 3042 | * it in the page cache, and handles the special cases reasonably without |
| 3043 | * having a lot of duplicated code. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 3044 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3045 | * vma->vm_mm->mmap_lock must be held on entry. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 3046 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3047 | * If our return value has VM_FAULT_RETRY set, it's because the mmap_lock |
Yang Shi | a498583 | 2019-07-11 20:55:29 -0700 | [diff] [blame] | 3048 | * may be dropped before doing I/O or by lock_page_maybe_drop_mmap(). |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 3049 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3050 | * If our return value does not have VM_FAULT_RETRY set, the mmap_lock |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 3051 | * has not been released. |
| 3052 | * |
| 3053 | * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3054 | * |
| 3055 | * Return: bitwise-OR of %VM_FAULT_ codes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | */ |
Souptick Joarder | 2bcd645 | 2018-06-07 17:08:00 -0700 | [diff] [blame] | 3057 | vm_fault_t filemap_fault(struct vm_fault *vmf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | { |
| 3059 | int error; |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 3060 | struct file *file = vmf->vma->vm_file; |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3061 | struct file *fpin = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | struct address_space *mapping = file->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | struct inode *inode = mapping->host; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3064 | pgoff_t offset = vmf->pgoff; |
Matthew Wilcox | 9ab2594 | 2017-05-03 14:53:29 -0700 | [diff] [blame] | 3065 | pgoff_t max_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | struct page *page; |
Souptick Joarder | 2bcd645 | 2018-06-07 17:08:00 -0700 | [diff] [blame] | 3067 | vm_fault_t ret = 0; |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3068 | bool mapping_locked = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | |
Matthew Wilcox | 9ab2594 | 2017-05-03 14:53:29 -0700 | [diff] [blame] | 3070 | max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); |
| 3071 | if (unlikely(offset >= max_off)) |
Linus Torvalds | 5307cc1 | 2007-10-31 09:19:46 -0700 | [diff] [blame] | 3072 | return VM_FAULT_SIGBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | /* |
Johannes Weiner | 4942642 | 2013-10-16 13:46:59 -0700 | [diff] [blame] | 3075 | * Do we have something in the page cache already? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3077 | page = find_get_page(mapping, offset); |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3078 | if (likely(page)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | /* |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3080 | * We found the page, so try async readahead before waiting for |
| 3081 | * the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | */ |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3083 | if (!(vmf->flags & FAULT_FLAG_TRIED)) |
| 3084 | fpin = do_async_mmap_readahead(vmf, page); |
| 3085 | if (unlikely(!PageUptodate(page))) { |
| 3086 | filemap_invalidate_lock_shared(mapping); |
| 3087 | mapping_locked = true; |
| 3088 | } |
| 3089 | } else { |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3090 | /* No page in the page cache at all */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3091 | count_vm_event(PGMAJFAULT); |
Roman Gushchin | 2262185 | 2017-07-06 15:40:25 -0700 | [diff] [blame] | 3092 | count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3093 | ret = VM_FAULT_MAJOR; |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3094 | fpin = do_sync_mmap_readahead(vmf); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3095 | retry_find: |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3096 | /* |
| 3097 | * See comment in filemap_create_page() why we need |
| 3098 | * invalidate_lock |
| 3099 | */ |
| 3100 | if (!mapping_locked) { |
| 3101 | filemap_invalidate_lock_shared(mapping); |
| 3102 | mapping_locked = true; |
| 3103 | } |
Josef Bacik | a75d4c3 | 2019-03-13 11:44:14 -0700 | [diff] [blame] | 3104 | page = pagecache_get_page(mapping, offset, |
| 3105 | FGP_CREAT|FGP_FOR_MMAP, |
| 3106 | vmf->gfp_mask); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3107 | if (!page) { |
| 3108 | if (fpin) |
| 3109 | goto out_retry; |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3110 | filemap_invalidate_unlock_shared(mapping); |
Matthew Wilcox (Oracle) | e520e93 | 2020-04-01 21:04:53 -0700 | [diff] [blame] | 3111 | return VM_FAULT_OOM; |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3112 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | } |
| 3114 | |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3115 | if (!lock_page_maybe_drop_mmap(vmf, page, &fpin)) |
| 3116 | goto out_retry; |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 3117 | |
| 3118 | /* Did it get truncated? */ |
Song Liu | 585e5a7 | 2019-09-23 15:37:44 -0700 | [diff] [blame] | 3119 | if (unlikely(compound_head(page)->mapping != mapping)) { |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 3120 | unlock_page(page); |
| 3121 | put_page(page); |
| 3122 | goto retry_find; |
| 3123 | } |
Song Liu | 520e5ba | 2019-09-23 15:37:50 -0700 | [diff] [blame] | 3124 | VM_BUG_ON_PAGE(page_to_pgoff(page) != offset, page); |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 3125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | /* |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 3127 | * We have a locked page in the page cache, now we need to check |
| 3128 | * that it's up-to-date. If not, it is going to be due to an error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | */ |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3130 | if (unlikely(!PageUptodate(page))) { |
| 3131 | /* |
| 3132 | * The page was in cache and uptodate and now it is not. |
| 3133 | * Strange but possible since we didn't hold the page lock all |
| 3134 | * the time. Let's drop everything get the invalidate lock and |
| 3135 | * try again. |
| 3136 | */ |
| 3137 | if (!mapping_locked) { |
| 3138 | unlock_page(page); |
| 3139 | put_page(page); |
| 3140 | goto retry_find; |
| 3141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | goto page_not_uptodate; |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3145 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3146 | * We've made it this far and we had to drop our mmap_lock, now is the |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3147 | * time to return to the upper layer and have it re-find the vma and |
| 3148 | * redo the fault. |
| 3149 | */ |
| 3150 | if (fpin) { |
| 3151 | unlock_page(page); |
| 3152 | goto out_retry; |
| 3153 | } |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3154 | if (mapping_locked) |
| 3155 | filemap_invalidate_unlock_shared(mapping); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3156 | |
| 3157 | /* |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 3158 | * Found the page and have a reference on it. |
| 3159 | * We must recheck i_size under page lock. |
| 3160 | */ |
Matthew Wilcox | 9ab2594 | 2017-05-03 14:53:29 -0700 | [diff] [blame] | 3161 | max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); |
| 3162 | if (unlikely(offset >= max_off)) { |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 3163 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3164 | put_page(page); |
Linus Torvalds | 5307cc1 | 2007-10-31 09:19:46 -0700 | [diff] [blame] | 3165 | return VM_FAULT_SIGBUS; |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 3166 | } |
| 3167 | |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 3168 | vmf->page = page; |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 3169 | return ret | VM_FAULT_LOCKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | page_not_uptodate: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | /* |
| 3173 | * Umm, take care of errors if the page isn't up-to-date. |
| 3174 | * Try to re-read it _once_. We do this synchronously, |
| 3175 | * because there really aren't any performance issues here |
| 3176 | * and we need to check for errors. |
| 3177 | */ |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3178 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
Matthew Wilcox (Oracle) | d31fa86 | 2021-04-29 22:55:26 -0700 | [diff] [blame] | 3179 | error = filemap_read_page(file, mapping, page); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3180 | if (fpin) |
| 3181 | goto out_retry; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3182 | put_page(page); |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 3183 | |
| 3184 | if (!error || error == AOP_TRUNCATED_PAGE) |
| 3185 | goto retry_find; |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3186 | filemap_invalidate_unlock_shared(mapping); |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 3187 | |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 3188 | return VM_FAULT_SIGBUS; |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3189 | |
| 3190 | out_retry: |
| 3191 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 3192 | * We dropped the mmap_lock, we need to return to the fault handler to |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3193 | * re-find the vma and come back and find our hopefully still populated |
| 3194 | * page. |
| 3195 | */ |
| 3196 | if (page) |
| 3197 | put_page(page); |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3198 | if (mapping_locked) |
| 3199 | filemap_invalidate_unlock_shared(mapping); |
Josef Bacik | 6b4c9f4 | 2019-03-13 11:44:22 -0700 | [diff] [blame] | 3200 | if (fpin) |
| 3201 | fput(fpin); |
| 3202 | return ret | VM_FAULT_RETRY; |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 3203 | } |
| 3204 | EXPORT_SYMBOL(filemap_fault); |
| 3205 | |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3206 | static bool filemap_map_pmd(struct vm_fault *vmf, struct page *page) |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3207 | { |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3208 | struct mm_struct *mm = vmf->vma->vm_mm; |
| 3209 | |
| 3210 | /* Huge page is mapped? No need to proceed. */ |
| 3211 | if (pmd_trans_huge(*vmf->pmd)) { |
| 3212 | unlock_page(page); |
| 3213 | put_page(page); |
| 3214 | return true; |
| 3215 | } |
| 3216 | |
| 3217 | if (pmd_none(*vmf->pmd) && PageTransHuge(page)) { |
| 3218 | vm_fault_t ret = do_set_pmd(vmf, page); |
| 3219 | if (!ret) { |
| 3220 | /* The page is mapped successfully, reference consumed. */ |
| 3221 | unlock_page(page); |
| 3222 | return true; |
| 3223 | } |
| 3224 | } |
| 3225 | |
| 3226 | if (pmd_none(*vmf->pmd)) { |
| 3227 | vmf->ptl = pmd_lock(mm, vmf->pmd); |
| 3228 | if (likely(pmd_none(*vmf->pmd))) { |
| 3229 | mm_inc_nr_ptes(mm); |
| 3230 | pmd_populate(mm, vmf->pmd, vmf->prealloc_pte); |
| 3231 | vmf->prealloc_pte = NULL; |
| 3232 | } |
| 3233 | spin_unlock(vmf->ptl); |
| 3234 | } |
| 3235 | |
| 3236 | /* See comment in handle_pte_fault() */ |
| 3237 | if (pmd_devmap_trans_unstable(vmf->pmd)) { |
| 3238 | unlock_page(page); |
| 3239 | put_page(page); |
| 3240 | return true; |
| 3241 | } |
| 3242 | |
| 3243 | return false; |
| 3244 | } |
| 3245 | |
| 3246 | static struct page *next_uptodate_page(struct page *page, |
| 3247 | struct address_space *mapping, |
| 3248 | struct xa_state *xas, pgoff_t end_pgoff) |
| 3249 | { |
| 3250 | unsigned long max_idx; |
| 3251 | |
| 3252 | do { |
| 3253 | if (!page) |
| 3254 | return NULL; |
| 3255 | if (xas_retry(xas, page)) |
| 3256 | continue; |
| 3257 | if (xa_is_value(page)) |
| 3258 | continue; |
| 3259 | if (PageLocked(page)) |
| 3260 | continue; |
| 3261 | if (!page_cache_get_speculative(page)) |
| 3262 | continue; |
| 3263 | /* Has the page moved or been split? */ |
| 3264 | if (unlikely(page != xas_reload(xas))) |
| 3265 | goto skip; |
| 3266 | if (!PageUptodate(page) || PageReadahead(page)) |
| 3267 | goto skip; |
| 3268 | if (PageHWPoison(page)) |
| 3269 | goto skip; |
| 3270 | if (!trylock_page(page)) |
| 3271 | goto skip; |
| 3272 | if (page->mapping != mapping) |
| 3273 | goto unlock; |
| 3274 | if (!PageUptodate(page)) |
| 3275 | goto unlock; |
| 3276 | max_idx = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE); |
| 3277 | if (xas->xa_index >= max_idx) |
| 3278 | goto unlock; |
| 3279 | return page; |
| 3280 | unlock: |
| 3281 | unlock_page(page); |
| 3282 | skip: |
| 3283 | put_page(page); |
| 3284 | } while ((page = xas_next_entry(xas, end_pgoff)) != NULL); |
| 3285 | |
| 3286 | return NULL; |
| 3287 | } |
| 3288 | |
| 3289 | static inline struct page *first_map_page(struct address_space *mapping, |
| 3290 | struct xa_state *xas, |
| 3291 | pgoff_t end_pgoff) |
| 3292 | { |
| 3293 | return next_uptodate_page(xas_find(xas, end_pgoff), |
| 3294 | mapping, xas, end_pgoff); |
| 3295 | } |
| 3296 | |
| 3297 | static inline struct page *next_map_page(struct address_space *mapping, |
| 3298 | struct xa_state *xas, |
| 3299 | pgoff_t end_pgoff) |
| 3300 | { |
| 3301 | return next_uptodate_page(xas_next_entry(xas, end_pgoff), |
| 3302 | mapping, xas, end_pgoff); |
| 3303 | } |
| 3304 | |
| 3305 | vm_fault_t filemap_map_pages(struct vm_fault *vmf, |
| 3306 | pgoff_t start_pgoff, pgoff_t end_pgoff) |
| 3307 | { |
| 3308 | struct vm_area_struct *vma = vmf->vma; |
| 3309 | struct file *file = vma->vm_file; |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3310 | struct address_space *mapping = file->f_mapping; |
Kirill A. Shutemov | bae473a | 2016-07-26 15:25:20 -0700 | [diff] [blame] | 3311 | pgoff_t last_pgoff = start_pgoff; |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3312 | unsigned long addr; |
Matthew Wilcox | 070e807 | 2018-05-17 00:08:30 -0400 | [diff] [blame] | 3313 | XA_STATE(xas, &mapping->i_pages, start_pgoff); |
Matthew Wilcox (Oracle) | 27a83a6 | 2020-10-13 16:51:44 -0700 | [diff] [blame] | 3314 | struct page *head, *page; |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 3315 | unsigned int mmap_miss = READ_ONCE(file->f_ra.mmap_miss); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3316 | vm_fault_t ret = 0; |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3317 | |
| 3318 | rcu_read_lock(); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3319 | head = first_map_page(mapping, &xas, end_pgoff); |
| 3320 | if (!head) |
| 3321 | goto out; |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3322 | |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3323 | if (filemap_map_pmd(vmf, head)) { |
| 3324 | ret = VM_FAULT_NOPAGE; |
| 3325 | goto out; |
| 3326 | } |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3327 | |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3328 | addr = vma->vm_start + ((start_pgoff - vma->vm_pgoff) << PAGE_SHIFT); |
| 3329 | vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3330 | do { |
Matthew Wilcox (Oracle) | 27a83a6 | 2020-10-13 16:51:44 -0700 | [diff] [blame] | 3331 | page = find_subpage(head, xas.xa_index); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3332 | if (PageHWPoison(page)) |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3333 | goto unlock; |
| 3334 | |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 3335 | if (mmap_miss > 0) |
| 3336 | mmap_miss--; |
Kirill A. Shutemov | 7267ec00 | 2016-07-26 15:25:23 -0700 | [diff] [blame] | 3337 | |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3338 | addr += (xas.xa_index - last_pgoff) << PAGE_SHIFT; |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3339 | vmf->pte += xas.xa_index - last_pgoff; |
Matthew Wilcox | 070e807 | 2018-05-17 00:08:30 -0400 | [diff] [blame] | 3340 | last_pgoff = xas.xa_index; |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3341 | |
| 3342 | if (!pte_none(*vmf->pte)) |
Kirill A. Shutemov | 7267ec00 | 2016-07-26 15:25:23 -0700 | [diff] [blame] | 3343 | goto unlock; |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3344 | |
Will Deacon | 46bdb42 | 2020-11-24 18:48:26 +0000 | [diff] [blame] | 3345 | /* We're about to handle the fault */ |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3346 | if (vmf->address == addr) |
Will Deacon | 46bdb42 | 2020-11-24 18:48:26 +0000 | [diff] [blame] | 3347 | ret = VM_FAULT_NOPAGE; |
Will Deacon | 46bdb42 | 2020-11-24 18:48:26 +0000 | [diff] [blame] | 3348 | |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3349 | do_set_pte(vmf, page, addr); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3350 | /* no need to invalidate: a not-present page won't be cached */ |
Will Deacon | 9d3af4b | 2021-01-14 15:24:19 +0000 | [diff] [blame] | 3351 | update_mmu_cache(vma, addr, vmf->pte); |
Matthew Wilcox (Oracle) | 27a83a6 | 2020-10-13 16:51:44 -0700 | [diff] [blame] | 3352 | unlock_page(head); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3353 | continue; |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3354 | unlock: |
Matthew Wilcox (Oracle) | 27a83a6 | 2020-10-13 16:51:44 -0700 | [diff] [blame] | 3355 | unlock_page(head); |
Matthew Wilcox (Oracle) | 27a83a6 | 2020-10-13 16:51:44 -0700 | [diff] [blame] | 3356 | put_page(head); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3357 | } while ((head = next_map_page(mapping, &xas, end_pgoff)) != NULL); |
| 3358 | pte_unmap_unlock(vmf->pte, vmf->ptl); |
| 3359 | out: |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3360 | rcu_read_unlock(); |
Kirill A. Shutemov | e630bfa | 2020-08-14 17:31:27 -0700 | [diff] [blame] | 3361 | WRITE_ONCE(file->f_ra.mmap_miss, mmap_miss); |
Kirill A. Shutemov | f9ce0be | 2020-12-19 15:19:23 +0300 | [diff] [blame] | 3362 | return ret; |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3363 | } |
| 3364 | EXPORT_SYMBOL(filemap_map_pages); |
| 3365 | |
Souptick Joarder | 2bcd645 | 2018-06-07 17:08:00 -0700 | [diff] [blame] | 3366 | vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf) |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3367 | { |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3368 | struct address_space *mapping = vmf->vma->vm_file->f_mapping; |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3369 | struct page *page = vmf->page; |
Souptick Joarder | 2bcd645 | 2018-06-07 17:08:00 -0700 | [diff] [blame] | 3370 | vm_fault_t ret = VM_FAULT_LOCKED; |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3371 | |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3372 | sb_start_pagefault(mapping->host->i_sb); |
Dave Jiang | 11bac80 | 2017-02-24 14:56:41 -0800 | [diff] [blame] | 3373 | file_update_time(vmf->vma->vm_file); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3374 | lock_page(page); |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3375 | if (page->mapping != mapping) { |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3376 | unlock_page(page); |
| 3377 | ret = VM_FAULT_NOPAGE; |
| 3378 | goto out; |
| 3379 | } |
Jan Kara | 14da920 | 2012-06-12 16:20:37 +0200 | [diff] [blame] | 3380 | /* |
| 3381 | * We mark the page dirty already here so that when freeze is in |
| 3382 | * progress, we are guaranteed that writeback during freezing will |
| 3383 | * see the dirty page and writeprotect it again. |
| 3384 | */ |
| 3385 | set_page_dirty(page); |
Darrick J. Wong | 1d1d1a7 | 2013-02-21 16:42:51 -0800 | [diff] [blame] | 3386 | wait_for_stable_page(page); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3387 | out: |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3388 | sb_end_pagefault(mapping->host->i_sb); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3389 | return ret; |
| 3390 | } |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3391 | |
Alexey Dobriyan | f0f37e2f | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 3392 | const struct vm_operations_struct generic_file_vm_ops = { |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 3393 | .fault = filemap_fault, |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 3394 | .map_pages = filemap_map_pages, |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 3395 | .page_mkwrite = filemap_page_mkwrite, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | }; |
| 3397 | |
| 3398 | /* This is used for a general mmap of a disk file */ |
| 3399 | |
Zhiyuan Dai | 68d68ff | 2021-05-04 18:40:12 -0700 | [diff] [blame] | 3400 | int generic_file_mmap(struct file *file, struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3401 | { |
| 3402 | struct address_space *mapping = file->f_mapping; |
| 3403 | |
| 3404 | if (!mapping->a_ops->readpage) |
| 3405 | return -ENOEXEC; |
| 3406 | file_accessed(file); |
| 3407 | vma->vm_ops = &generic_file_vm_ops; |
| 3408 | return 0; |
| 3409 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3410 | |
| 3411 | /* |
| 3412 | * This is for filesystems which do not implement ->writepage. |
| 3413 | */ |
| 3414 | int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma) |
| 3415 | { |
| 3416 | if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) |
| 3417 | return -EINVAL; |
| 3418 | return generic_file_mmap(file, vma); |
| 3419 | } |
| 3420 | #else |
Souptick Joarder | 4b96a37 | 2018-10-26 15:04:03 -0700 | [diff] [blame] | 3421 | vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf) |
Arnd Bergmann | 45397228 | 2018-04-13 15:35:27 -0700 | [diff] [blame] | 3422 | { |
Souptick Joarder | 4b96a37 | 2018-10-26 15:04:03 -0700 | [diff] [blame] | 3423 | return VM_FAULT_SIGBUS; |
Arnd Bergmann | 45397228 | 2018-04-13 15:35:27 -0700 | [diff] [blame] | 3424 | } |
Zhiyuan Dai | 68d68ff | 2021-05-04 18:40:12 -0700 | [diff] [blame] | 3425 | int generic_file_mmap(struct file *file, struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | { |
| 3427 | return -ENOSYS; |
| 3428 | } |
Zhiyuan Dai | 68d68ff | 2021-05-04 18:40:12 -0700 | [diff] [blame] | 3429 | int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | { |
| 3431 | return -ENOSYS; |
| 3432 | } |
| 3433 | #endif /* CONFIG_MMU */ |
| 3434 | |
Arnd Bergmann | 45397228 | 2018-04-13 15:35:27 -0700 | [diff] [blame] | 3435 | EXPORT_SYMBOL(filemap_page_mkwrite); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | EXPORT_SYMBOL(generic_file_mmap); |
| 3437 | EXPORT_SYMBOL(generic_file_readonly_mmap); |
| 3438 | |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3439 | static struct page *wait_on_page_read(struct page *page) |
| 3440 | { |
| 3441 | if (!IS_ERR(page)) { |
| 3442 | wait_on_page_locked(page); |
| 3443 | if (!PageUptodate(page)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3444 | put_page(page); |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3445 | page = ERR_PTR(-EIO); |
| 3446 | } |
| 3447 | } |
| 3448 | return page; |
| 3449 | } |
| 3450 | |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3451 | static struct page *do_read_cache_page(struct address_space *mapping, |
Fengguang Wu | 57f6b96 | 2007-10-16 01:24:37 -0700 | [diff] [blame] | 3452 | pgoff_t index, |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 3453 | int (*filler)(void *, struct page *), |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3454 | void *data, |
| 3455 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3457 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | int err; |
| 3459 | repeat: |
| 3460 | page = find_get_page(mapping, index); |
| 3461 | if (!page) { |
Mel Gorman | 453f85d | 2017-11-15 17:38:03 -0800 | [diff] [blame] | 3462 | page = __page_cache_alloc(gfp); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3463 | if (!page) |
| 3464 | return ERR_PTR(-ENOMEM); |
Dave Kleikamp | e6f67b8 | 2011-12-21 11:05:48 -0600 | [diff] [blame] | 3465 | err = add_to_page_cache_lru(page, mapping, index, gfp); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3466 | if (unlikely(err)) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3467 | put_page(page); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3468 | if (err == -EEXIST) |
| 3469 | goto repeat; |
Matthew Wilcox | 22ecdb4 | 2017-12-04 04:02:00 -0500 | [diff] [blame] | 3470 | /* Presumably ENOMEM for xarray node */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | return ERR_PTR(err); |
| 3472 | } |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3473 | |
| 3474 | filler: |
Christoph Hellwig | 6c45b45 | 2019-07-11 20:55:20 -0700 | [diff] [blame] | 3475 | if (filler) |
| 3476 | err = filler(data, page); |
| 3477 | else |
| 3478 | err = mapping->a_ops->readpage(data, page); |
| 3479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3480 | if (err < 0) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3481 | put_page(page); |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3482 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | } |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3484 | |
| 3485 | page = wait_on_page_read(page); |
| 3486 | if (IS_ERR(page)) |
| 3487 | return page; |
| 3488 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3490 | if (PageUptodate(page)) |
| 3491 | goto out; |
| 3492 | |
Mel Gorman | ebded02 | 2016-03-15 14:55:39 -0700 | [diff] [blame] | 3493 | /* |
Miaohe Lin | 0e9aa67 | 2020-10-15 20:09:58 -0700 | [diff] [blame] | 3494 | * Page is not up to date and may be locked due to one of the following |
Mel Gorman | ebded02 | 2016-03-15 14:55:39 -0700 | [diff] [blame] | 3495 | * case a: Page is being filled and the page lock is held |
| 3496 | * case b: Read/write error clearing the page uptodate status |
| 3497 | * case c: Truncation in progress (page locked) |
| 3498 | * case d: Reclaim in progress |
| 3499 | * |
| 3500 | * Case a, the page will be up to date when the page is unlocked. |
| 3501 | * There is no need to serialise on the page lock here as the page |
| 3502 | * is pinned so the lock gives no additional protection. Even if the |
Randy Dunlap | ce89fddf | 2020-08-11 18:32:53 -0700 | [diff] [blame] | 3503 | * page is truncated, the data is still valid if PageUptodate as |
Mel Gorman | ebded02 | 2016-03-15 14:55:39 -0700 | [diff] [blame] | 3504 | * it's a race vs truncate race. |
| 3505 | * Case b, the page will not be up to date |
| 3506 | * Case c, the page may be truncated but in itself, the data may still |
| 3507 | * be valid after IO completes as it's a read vs truncate race. The |
| 3508 | * operation must restart if the page is not uptodate on unlock but |
| 3509 | * otherwise serialising on page lock to stabilise the mapping gives |
| 3510 | * no additional guarantees to the caller as the page lock is |
| 3511 | * released before return. |
| 3512 | * Case d, similar to truncation. If reclaim holds the page lock, it |
| 3513 | * will be a race with remove_mapping that determines if the mapping |
| 3514 | * is valid on unlock but otherwise the data is valid and there is |
| 3515 | * no need to serialise with page lock. |
| 3516 | * |
| 3517 | * As the page lock gives no additional guarantee, we optimistically |
| 3518 | * wait on the page to be unlocked and check if it's up to date and |
| 3519 | * use the page if it is. Otherwise, the page lock is required to |
| 3520 | * distinguish between the different cases. The motivation is that we |
| 3521 | * avoid spurious serialisations and wakeups when multiple processes |
| 3522 | * wait on the same page for IO to complete. |
| 3523 | */ |
| 3524 | wait_on_page_locked(page); |
| 3525 | if (PageUptodate(page)) |
| 3526 | goto out; |
| 3527 | |
| 3528 | /* Distinguish between all the cases under the safety of the lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3529 | lock_page(page); |
Mel Gorman | ebded02 | 2016-03-15 14:55:39 -0700 | [diff] [blame] | 3530 | |
| 3531 | /* Case c or d, restart the operation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3532 | if (!page->mapping) { |
| 3533 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3534 | put_page(page); |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3535 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3536 | } |
Mel Gorman | ebded02 | 2016-03-15 14:55:39 -0700 | [diff] [blame] | 3537 | |
| 3538 | /* Someone else locked and filled the page in a very small window */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3539 | if (PageUptodate(page)) { |
| 3540 | unlock_page(page); |
| 3541 | goto out; |
| 3542 | } |
Xianting Tian | faffdfa | 2020-04-01 21:04:47 -0700 | [diff] [blame] | 3543 | |
| 3544 | /* |
| 3545 | * A previous I/O error may have been due to temporary |
| 3546 | * failures. |
| 3547 | * Clear page error before actual read, PG_error will be |
| 3548 | * set again if read page fails. |
| 3549 | */ |
| 3550 | ClearPageError(page); |
Mel Gorman | 32b6352 | 2016-03-15 14:55:36 -0700 | [diff] [blame] | 3551 | goto filler; |
| 3552 | |
David Howells | c855ff3 | 2007-05-09 13:42:20 +0100 | [diff] [blame] | 3553 | out: |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 3554 | mark_page_accessed(page); |
| 3555 | return page; |
| 3556 | } |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3557 | |
| 3558 | /** |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3559 | * read_cache_page - read into page cache, fill it if needed |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3560 | * @mapping: the page's address_space |
| 3561 | * @index: the page index |
| 3562 | * @filler: function to perform the read |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 3563 | * @data: first arg to filler(data, page) function, often left as NULL |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3564 | * |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3565 | * Read into the page cache. If a page already exists, and PageUptodate() is |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3566 | * not set, try to fill the page and wait for it to become unlocked. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3567 | * |
| 3568 | * If the page does not get brought uptodate, return -EIO. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3569 | * |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3570 | * The function expects mapping->invalidate_lock to be already held. |
| 3571 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3572 | * Return: up to date page on success, ERR_PTR() on failure. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3573 | */ |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3574 | struct page *read_cache_page(struct address_space *mapping, |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3575 | pgoff_t index, |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 3576 | int (*filler)(void *, struct page *), |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3577 | void *data) |
| 3578 | { |
Christoph Hellwig | d322a8e | 2019-07-11 20:55:17 -0700 | [diff] [blame] | 3579 | return do_read_cache_page(mapping, index, filler, data, |
| 3580 | mapping_gfp_mask(mapping)); |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3581 | } |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 3582 | EXPORT_SYMBOL(read_cache_page); |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3583 | |
| 3584 | /** |
| 3585 | * read_cache_page_gfp - read into page cache, using specified page allocation flags. |
| 3586 | * @mapping: the page's address_space |
| 3587 | * @index: the page index |
| 3588 | * @gfp: the page allocator flags to use if allocating |
| 3589 | * |
| 3590 | * This is the same as "read_mapping_page(mapping, index, NULL)", but with |
Dave Kleikamp | e6f67b8 | 2011-12-21 11:05:48 -0600 | [diff] [blame] | 3591 | * any new page allocations done using the specified allocation flags. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3592 | * |
| 3593 | * If the page does not get brought uptodate, return -EIO. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3594 | * |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 3595 | * The function expects mapping->invalidate_lock to be already held. |
| 3596 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3597 | * Return: up to date page on success, ERR_PTR() on failure. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3598 | */ |
| 3599 | struct page *read_cache_page_gfp(struct address_space *mapping, |
| 3600 | pgoff_t index, |
| 3601 | gfp_t gfp) |
| 3602 | { |
Christoph Hellwig | 6c45b45 | 2019-07-11 20:55:20 -0700 | [diff] [blame] | 3603 | return do_read_cache_page(mapping, index, NULL, NULL, gfp); |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 3604 | } |
| 3605 | EXPORT_SYMBOL(read_cache_page_gfp); |
| 3606 | |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3607 | int pagecache_write_begin(struct file *file, struct address_space *mapping, |
| 3608 | loff_t pos, unsigned len, unsigned flags, |
| 3609 | struct page **pagep, void **fsdata) |
| 3610 | { |
| 3611 | const struct address_space_operations *aops = mapping->a_ops; |
| 3612 | |
Nick Piggin | 4e02ed4 | 2008-10-29 14:00:55 -0700 | [diff] [blame] | 3613 | return aops->write_begin(file, mapping, pos, len, flags, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3614 | pagep, fsdata); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3615 | } |
| 3616 | EXPORT_SYMBOL(pagecache_write_begin); |
| 3617 | |
| 3618 | int pagecache_write_end(struct file *file, struct address_space *mapping, |
| 3619 | loff_t pos, unsigned len, unsigned copied, |
| 3620 | struct page *page, void *fsdata) |
| 3621 | { |
| 3622 | const struct address_space_operations *aops = mapping->a_ops; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3623 | |
Nick Piggin | 4e02ed4 | 2008-10-29 14:00:55 -0700 | [diff] [blame] | 3624 | return aops->write_end(file, mapping, pos, len, copied, page, fsdata); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3625 | } |
| 3626 | EXPORT_SYMBOL(pagecache_write_end); |
| 3627 | |
Konstantin Khlebnikov | a92853b | 2019-11-30 17:49:44 -0800 | [diff] [blame] | 3628 | /* |
| 3629 | * Warn about a page cache invalidation failure during a direct I/O write. |
| 3630 | */ |
| 3631 | void dio_warn_stale_pagecache(struct file *filp) |
| 3632 | { |
| 3633 | static DEFINE_RATELIMIT_STATE(_rs, 86400 * HZ, DEFAULT_RATELIMIT_BURST); |
| 3634 | char pathname[128]; |
Konstantin Khlebnikov | a92853b | 2019-11-30 17:49:44 -0800 | [diff] [blame] | 3635 | char *path; |
| 3636 | |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3637 | errseq_set(&filp->f_mapping->wb_err, -EIO); |
Konstantin Khlebnikov | a92853b | 2019-11-30 17:49:44 -0800 | [diff] [blame] | 3638 | if (__ratelimit(&_rs)) { |
| 3639 | path = file_path(filp, pathname, sizeof(pathname)); |
| 3640 | if (IS_ERR(path)) |
| 3641 | path = "(unknown)"; |
| 3642 | pr_crit("Page cache invalidation failure on direct I/O. Possible data corruption due to collision with buffered I/O!\n"); |
| 3643 | pr_crit("File: %s PID: %d Comm: %.20s\n", path, current->pid, |
| 3644 | current->comm); |
| 3645 | } |
| 3646 | } |
| 3647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | ssize_t |
Christoph Hellwig | 1af5bb4 | 2016-04-07 08:51:56 -0700 | [diff] [blame] | 3649 | generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | { |
| 3651 | struct file *file = iocb->ki_filp; |
| 3652 | struct address_space *mapping = file->f_mapping; |
| 3653 | struct inode *inode = mapping->host; |
Christoph Hellwig | 1af5bb4 | 2016-04-07 08:51:56 -0700 | [diff] [blame] | 3654 | loff_t pos = iocb->ki_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | ssize_t written; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3656 | size_t write_len; |
| 3657 | pgoff_t end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | |
Al Viro | 0c94933 | 2014-03-22 06:51:37 -0400 | [diff] [blame] | 3659 | write_len = iov_iter_count(from); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3660 | end = (pos + write_len - 1) >> PAGE_SHIFT; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3661 | |
Goldwyn Rodrigues | 6be96d3 | 2017-06-20 07:05:44 -0500 | [diff] [blame] | 3662 | if (iocb->ki_flags & IOCB_NOWAIT) { |
| 3663 | /* If there are pages to writeback, return */ |
Christoph Hellwig | 5df1a67 | 2020-11-16 14:33:37 +0100 | [diff] [blame] | 3664 | if (filemap_range_has_page(file->f_mapping, pos, |
zhengbin | 35f12f0 | 2019-03-05 15:44:21 -0800 | [diff] [blame] | 3665 | pos + write_len - 1)) |
Goldwyn Rodrigues | 6be96d3 | 2017-06-20 07:05:44 -0500 | [diff] [blame] | 3666 | return -EAGAIN; |
| 3667 | } else { |
| 3668 | written = filemap_write_and_wait_range(mapping, pos, |
| 3669 | pos + write_len - 1); |
| 3670 | if (written) |
| 3671 | goto out; |
| 3672 | } |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3673 | |
| 3674 | /* |
| 3675 | * After a write we want buffered reads to be sure to go to disk to get |
| 3676 | * the new data. We invalidate clean cached page from the region we're |
| 3677 | * about to write. We do this *before* the write so that we can return |
Hisashi Hifumi | 6ccfa80 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 3678 | * without clobbering -EIOCBQUEUED from ->direct_IO(). |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3679 | */ |
Andrey Ryabinin | 55635ba | 2017-05-03 14:55:59 -0700 | [diff] [blame] | 3680 | written = invalidate_inode_pages2_range(mapping, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3681 | pos >> PAGE_SHIFT, end); |
Andrey Ryabinin | 55635ba | 2017-05-03 14:55:59 -0700 | [diff] [blame] | 3682 | /* |
| 3683 | * If a page can not be invalidated, return 0 to fall back |
| 3684 | * to buffered write. |
| 3685 | */ |
| 3686 | if (written) { |
| 3687 | if (written == -EBUSY) |
| 3688 | return 0; |
| 3689 | goto out; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3690 | } |
| 3691 | |
Al Viro | 639a93a5 | 2017-04-13 14:10:15 -0400 | [diff] [blame] | 3692 | written = mapping->a_ops->direct_IO(iocb, from); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3693 | |
| 3694 | /* |
| 3695 | * Finally, try again to invalidate clean pages which might have been |
| 3696 | * cached by non-direct readahead, or faulted in by get_user_pages() |
| 3697 | * if the source of the write was an mmap'ed region of the file |
| 3698 | * we're writing. Either one is a pretty crazy thing to do, |
| 3699 | * so we don't support it 100%. If this invalidation |
| 3700 | * fails, tough, the write still worked... |
Lukas Czerner | 332391a | 2017-09-21 08:16:29 -0600 | [diff] [blame] | 3701 | * |
| 3702 | * Most of the time we do not need this since dio_complete() will do |
| 3703 | * the invalidation for us. However there are some file systems that |
| 3704 | * do not end up with dio_complete() being called, so let's not break |
Konstantin Khlebnikov | 80c1fe9 | 2019-11-30 17:49:41 -0800 | [diff] [blame] | 3705 | * them by removing it completely. |
| 3706 | * |
Konstantin Khlebnikov | 9266a14 | 2019-11-30 17:49:47 -0800 | [diff] [blame] | 3707 | * Noticeable example is a blkdev_direct_IO(). |
| 3708 | * |
Konstantin Khlebnikov | 80c1fe9 | 2019-11-30 17:49:41 -0800 | [diff] [blame] | 3709 | * Skip invalidation for async writes or if mapping has no pages. |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3710 | */ |
Konstantin Khlebnikov | 9266a14 | 2019-11-30 17:49:47 -0800 | [diff] [blame] | 3711 | if (written > 0 && mapping->nrpages && |
| 3712 | invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT, end)) |
| 3713 | dio_warn_stale_pagecache(file); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3715 | if (written > 0) { |
Namhyung Kim | 0116651 | 2010-10-26 14:21:58 -0700 | [diff] [blame] | 3716 | pos += written; |
Al Viro | 639a93a5 | 2017-04-13 14:10:15 -0400 | [diff] [blame] | 3717 | write_len -= written; |
Namhyung Kim | 0116651 | 2010-10-26 14:21:58 -0700 | [diff] [blame] | 3718 | if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) { |
| 3719 | i_size_write(inode, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3720 | mark_inode_dirty(inode); |
| 3721 | } |
Al Viro | 5cb6c6c | 2014-02-11 20:58:20 -0500 | [diff] [blame] | 3722 | iocb->ki_pos = pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | } |
Pavel Begunkov | ab2125d | 2021-02-24 12:01:45 -0800 | [diff] [blame] | 3724 | if (written != -EIOCBQUEUED) |
| 3725 | iov_iter_revert(from, write_len - iov_iter_count(from)); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 3726 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | return written; |
| 3728 | } |
| 3729 | EXPORT_SYMBOL(generic_file_direct_write); |
| 3730 | |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3731 | /* |
| 3732 | * Find or create a page at the given pagecache position. Return the locked |
| 3733 | * page. This function is specifically for buffered writes. |
| 3734 | */ |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3735 | struct page *grab_cache_page_write_begin(struct address_space *mapping, |
| 3736 | pgoff_t index, unsigned flags) |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3737 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3738 | struct page *page; |
Johannes Weiner | bbddabe | 2016-05-20 16:56:28 -0700 | [diff] [blame] | 3739 | int fgp_flags = FGP_LOCK|FGP_WRITE|FGP_CREAT; |
Johannes Weiner | 0faa70c | 2012-01-10 15:07:53 -0800 | [diff] [blame] | 3740 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3741 | if (flags & AOP_FLAG_NOFS) |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 3742 | fgp_flags |= FGP_NOFS; |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3743 | |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 3744 | page = pagecache_get_page(mapping, index, fgp_flags, |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 3745 | mapping_gfp_mask(mapping)); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 3746 | if (page) |
| 3747 | wait_for_stable_page(page); |
| 3748 | |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3749 | return page; |
| 3750 | } |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3751 | EXPORT_SYMBOL(grab_cache_page_write_begin); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 3752 | |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3753 | ssize_t generic_perform_write(struct file *file, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3754 | struct iov_iter *i, loff_t pos) |
| 3755 | { |
| 3756 | struct address_space *mapping = file->f_mapping; |
| 3757 | const struct address_space_operations *a_ops = mapping->a_ops; |
| 3758 | long status = 0; |
| 3759 | ssize_t written = 0; |
Nick Piggin | 674b892 | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 3760 | unsigned int flags = 0; |
| 3761 | |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3762 | do { |
| 3763 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3764 | unsigned long offset; /* Offset into pagecache page */ |
| 3765 | unsigned long bytes; /* Bytes to write to page */ |
| 3766 | size_t copied; /* Bytes copied from user */ |
| 3767 | void *fsdata; |
| 3768 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3769 | offset = (pos & (PAGE_SIZE - 1)); |
| 3770 | bytes = min_t(unsigned long, PAGE_SIZE - offset, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3771 | iov_iter_count(i)); |
| 3772 | |
| 3773 | again: |
Linus Torvalds | 00a3d66 | 2015-10-07 08:32:38 +0100 | [diff] [blame] | 3774 | /* |
| 3775 | * Bring in the user page that we will copy from _first_. |
| 3776 | * Otherwise there's a nasty deadlock on copying from the |
| 3777 | * same page as we're writing to, without it being marked |
| 3778 | * up-to-date. |
Linus Torvalds | 00a3d66 | 2015-10-07 08:32:38 +0100 | [diff] [blame] | 3779 | */ |
| 3780 | if (unlikely(iov_iter_fault_in_readable(i, bytes))) { |
| 3781 | status = -EFAULT; |
| 3782 | break; |
| 3783 | } |
| 3784 | |
Jan Kara | 296291c | 2015-10-22 13:32:21 -0700 | [diff] [blame] | 3785 | if (fatal_signal_pending(current)) { |
| 3786 | status = -EINTR; |
| 3787 | break; |
| 3788 | } |
| 3789 | |
Nick Piggin | 674b892 | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 3790 | status = a_ops->write_begin(file, mapping, pos, bytes, flags, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3791 | &page, &fsdata); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 3792 | if (unlikely(status < 0)) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3793 | break; |
| 3794 | |
anfei zhou | 931e80e | 2010-02-02 13:44:02 -0800 | [diff] [blame] | 3795 | if (mapping_writably_mapped(mapping)) |
| 3796 | flush_dcache_page(page); |
Linus Torvalds | 00a3d66 | 2015-10-07 08:32:38 +0100 | [diff] [blame] | 3797 | |
Al Viro | f0b65f3 | 2021-04-30 10:26:41 -0400 | [diff] [blame] | 3798 | copied = copy_page_from_iter_atomic(page, offset, bytes, i); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3799 | flush_dcache_page(page); |
| 3800 | |
| 3801 | status = a_ops->write_end(file, mapping, pos, bytes, copied, |
| 3802 | page, fsdata); |
Al Viro | f0b65f3 | 2021-04-30 10:26:41 -0400 | [diff] [blame] | 3803 | if (unlikely(status != copied)) { |
| 3804 | iov_iter_revert(i, copied - max(status, 0L)); |
| 3805 | if (unlikely(status < 0)) |
| 3806 | break; |
| 3807 | } |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3808 | cond_resched(); |
| 3809 | |
Al Viro | bc1bb41 | 2021-05-31 00:32:44 -0400 | [diff] [blame] | 3810 | if (unlikely(status == 0)) { |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3811 | /* |
Al Viro | bc1bb41 | 2021-05-31 00:32:44 -0400 | [diff] [blame] | 3812 | * A short copy made ->write_end() reject the |
| 3813 | * thing entirely. Might be memory poisoning |
| 3814 | * halfway through, might be a race with munmap, |
| 3815 | * might be severe memory pressure. |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3816 | */ |
Al Viro | bc1bb41 | 2021-05-31 00:32:44 -0400 | [diff] [blame] | 3817 | if (copied) |
| 3818 | bytes = copied; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3819 | goto again; |
| 3820 | } |
Al Viro | f0b65f3 | 2021-04-30 10:26:41 -0400 | [diff] [blame] | 3821 | pos += status; |
| 3822 | written += status; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3823 | |
| 3824 | balance_dirty_pages_ratelimited(mapping); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3825 | } while (iov_iter_count(i)); |
| 3826 | |
| 3827 | return written ? written : status; |
| 3828 | } |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3829 | EXPORT_SYMBOL(generic_perform_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3831 | /** |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3832 | * __generic_file_write_iter - write data to a file |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3833 | * @iocb: IO state structure (file, offset, etc.) |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3834 | * @from: iov_iter with data to write |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3835 | * |
| 3836 | * This function does all the work needed for actually writing data to a |
| 3837 | * file. It does all basic checks, removes SUID from the file, updates |
| 3838 | * modification times and calls proper subroutines depending on whether we |
| 3839 | * do direct IO or a standard buffered write. |
| 3840 | * |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 3841 | * It expects i_rwsem to be grabbed unless we work on a block device or similar |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3842 | * object which does not need locking at all. |
| 3843 | * |
| 3844 | * This function does *not* take care of syncing data in case of O_SYNC write. |
| 3845 | * A caller has to handle it. This is mainly due to the fact that we want to |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 3846 | * avoid syncing under i_rwsem. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3847 | * |
| 3848 | * Return: |
| 3849 | * * number of bytes written, even for truncated writes |
| 3850 | * * negative error code if no data has been written at all |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3851 | */ |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3852 | ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | { |
| 3854 | struct file *file = iocb->ki_filp; |
Zhiyuan Dai | 68d68ff | 2021-05-04 18:40:12 -0700 | [diff] [blame] | 3855 | struct address_space *mapping = file->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | struct inode *inode = mapping->host; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3857 | ssize_t written = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | ssize_t err; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3859 | ssize_t status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | /* We can write back this queue in page reclaim */ |
Christoph Hellwig | de1414a | 2015-01-14 10:42:36 +0100 | [diff] [blame] | 3862 | current->backing_dev_info = inode_to_bdi(inode); |
Jan Kara | 5fa8e0a | 2015-05-21 16:05:53 +0200 | [diff] [blame] | 3863 | err = file_remove_privs(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3864 | if (err) |
| 3865 | goto out; |
| 3866 | |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 3867 | err = file_update_time(file); |
| 3868 | if (err) |
| 3869 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 3871 | if (iocb->ki_flags & IOCB_DIRECT) { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3872 | loff_t pos, endbyte; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3873 | |
Christoph Hellwig | 1af5bb4 | 2016-04-07 08:51:56 -0700 | [diff] [blame] | 3874 | written = generic_file_direct_write(iocb, from); |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 3875 | /* |
| 3876 | * If the write stopped short of completing, fall back to |
| 3877 | * buffered writes. Some filesystems do this for writes to |
| 3878 | * holes, for example. For DAX files, a buffered write will |
| 3879 | * not succeed (even if it did, DAX does not handle dirty |
| 3880 | * page-cache pages correctly). |
| 3881 | */ |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3882 | if (written < 0 || !iov_iter_count(from) || IS_DAX(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | goto out; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3884 | |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3885 | status = generic_perform_write(file, from, pos = iocb->ki_pos); |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3886 | /* |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3887 | * If generic_perform_write() returned a synchronous error |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3888 | * then we want to return the number of bytes which were |
| 3889 | * direct-written, or the error code if that was zero. Note |
| 3890 | * that this differs from normal direct-io semantics, which |
| 3891 | * will return -EFOO even if some bytes were written. |
| 3892 | */ |
Al Viro | 60bb452 | 2014-08-08 12:39:16 -0400 | [diff] [blame] | 3893 | if (unlikely(status < 0)) { |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3894 | err = status; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3895 | goto out; |
| 3896 | } |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3897 | /* |
| 3898 | * We need to ensure that the page cache pages are written to |
| 3899 | * disk and invalidated to preserve the expected O_DIRECT |
| 3900 | * semantics. |
| 3901 | */ |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3902 | endbyte = pos + status - 1; |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3903 | err = filemap_write_and_wait_range(mapping, pos, endbyte); |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3904 | if (err == 0) { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3905 | iocb->ki_pos = endbyte + 1; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 3906 | written += status; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3907 | invalidate_mapping_pages(mapping, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 3908 | pos >> PAGE_SHIFT, |
| 3909 | endbyte >> PAGE_SHIFT); |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3910 | } else { |
| 3911 | /* |
| 3912 | * We don't know how much we wrote, so just return |
| 3913 | * the number of bytes which were direct-written |
| 3914 | */ |
| 3915 | } |
| 3916 | } else { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 3917 | written = generic_perform_write(file, from, iocb->ki_pos); |
| 3918 | if (likely(written > 0)) |
| 3919 | iocb->ki_pos += written; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 3920 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | out: |
| 3922 | current->backing_dev_info = NULL; |
| 3923 | return written ? written : err; |
| 3924 | } |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3925 | EXPORT_SYMBOL(__generic_file_write_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3926 | |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3927 | /** |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3928 | * generic_file_write_iter - write data to a file |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3929 | * @iocb: IO state structure |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3930 | * @from: iov_iter with data to write |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3931 | * |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3932 | * This is a wrapper around __generic_file_write_iter() to be used by most |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3933 | * filesystems. It takes care of syncing the file in case of O_SYNC file |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 3934 | * and acquires i_rwsem as needed. |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3935 | * Return: |
| 3936 | * * negative error code if no data has been written at all of |
| 3937 | * vfs_fsync_range() failed for a synchronous write |
| 3938 | * * number of bytes written, even for truncated writes |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 3939 | */ |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3940 | ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3941 | { |
| 3942 | struct file *file = iocb->ki_filp; |
Jan Kara | 148f948 | 2009-08-17 19:52:36 +0200 | [diff] [blame] | 3943 | struct inode *inode = file->f_mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | ssize_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3945 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3946 | inode_lock(inode); |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 3947 | ret = generic_write_checks(iocb, from); |
| 3948 | if (ret > 0) |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 3949 | ret = __generic_file_write_iter(iocb, from); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3950 | inode_unlock(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 | |
Christoph Hellwig | e259221 | 2016-04-07 08:52:01 -0700 | [diff] [blame] | 3952 | if (ret > 0) |
| 3953 | ret = generic_write_sync(iocb, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | return ret; |
| 3955 | } |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 3956 | EXPORT_SYMBOL(generic_file_write_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 3958 | /** |
| 3959 | * try_to_release_page() - release old fs-specific metadata on a page |
| 3960 | * |
| 3961 | * @page: the page which the kernel is trying to free |
| 3962 | * @gfp_mask: memory allocation flags (and I/O mode) |
| 3963 | * |
| 3964 | * The address_space is to try to release any data against the page |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3965 | * (presumably at page->private). |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 3966 | * |
David Howells | 266cf65 | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 3967 | * This may also be called if PG_fscache is set on a page, indicating that the |
| 3968 | * page is known to the local caching routines. |
| 3969 | * |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 3970 | * The @gfp_mask argument specifies whether I/O may be performed to release |
Mel Gorman | 71baba4 | 2015-11-06 16:28:28 -0800 | [diff] [blame] | 3971 | * this page (__GFP_IO), and whether the call may block (__GFP_RECLAIM & __GFP_FS). |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 3972 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 3973 | * Return: %1 if the release was successful, otherwise return zero. |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 3974 | */ |
| 3975 | int try_to_release_page(struct page *page, gfp_t gfp_mask) |
| 3976 | { |
| 3977 | struct address_space * const mapping = page->mapping; |
| 3978 | |
| 3979 | BUG_ON(!PageLocked(page)); |
| 3980 | if (PageWriteback(page)) |
| 3981 | return 0; |
| 3982 | |
| 3983 | if (mapping && mapping->a_ops->releasepage) |
| 3984 | return mapping->a_ops->releasepage(page, gfp_mask); |
| 3985 | return try_to_free_buffers(page); |
| 3986 | } |
| 3987 | |
| 3988 | EXPORT_SYMBOL(try_to_release_page); |