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