blob: ad8c39d90bf946dfca3447cae87d23684214ca1b [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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 Gortmakerb95f1b312011-10-16 02:01:52 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/compiler.h>
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080015#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fs.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010017#include <linux/sched/signal.h>
Hiro Yoshiokac22ce142006-06-23 02:04:16 -070018#include <linux/uaccess.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel_stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
23#include <linux/swap.h>
Alistair Poppleffa65752022-01-21 22:10:46 -080024#include <linux/swapops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mman.h>
26#include <linux/pagemap.h>
27#include <linux/file.h>
28#include <linux/uio.h>
Josef Bacikcfcbfb12019-05-13 17:21:04 -070029#include <linux/error-injection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/hash.h>
31#include <linux/writeback.h>
Linus Torvalds53253382007-10-18 14:47:32 -070032#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/security.h>
Paul Jackson44110fe2006-03-24 03:16:04 -080035#include <linux/cpuset.h>
Johannes Weiner00501b52014-08-08 14:19:20 -070036#include <linux/hugetlb.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080037#include <linux/memcontrol.h>
Mel Gormanc7df8ad2017-11-15 17:37:41 -080038#include <linux/shmem_fs.h>
Kirill A. Shutemovf1820362014-04-07 15:37:19 -070039#include <linux/rmap.h>
Johannes Weinerb1d29ba2018-10-26 15:06:08 -070040#include <linux/delayacct.h>
Johannes Weinereb414682018-10-26 15:06:27 -070041#include <linux/psi.h>
Ben Dooksd0e6a582019-10-18 20:20:20 -070042#include <linux/ramfs.h>
Yang Shib9306a72020-08-06 23:19:55 -070043#include <linux/page_idle.h>
Alistair Poppleffa65752022-01-21 22:10:46 -080044#include <linux/migrate.h>
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +030045#include <asm/pgalloc.h>
Will Deaconde591a82021-02-10 11:15:11 +000046#include <asm/tlbflush.h>
Nick Piggin0f8053a2006-03-22 00:08:33 -080047#include "internal.h"
48
Robert Jarzmikfe0bfaa2013-04-29 15:06:10 -070049#define CREATE_TRACE_POINTS
50#include <trace/events/filemap.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * FIXME: remove all knowledge of the buffer layer from the core VM
54 */
Jan Kara148f9482009-08-17 19:52:36 +020055#include <linux/buffer_head.h> /* for try_to_free_buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/mman.h>
58
59/*
60 * Shared mappings implemented 30.11.1994. It's not fully working yet,
61 * though.
62 *
63 * Shared mappings now work. 15.8.1995 Bruno.
64 *
65 * finished 'unifying' the page and buffer cache and SMP-threaded the
66 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
67 *
68 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
69 */
70
71/*
72 * Lock ordering:
73 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080074 * ->i_mmap_rwsem (truncate_pagecache)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * ->private_lock (__free_pte->__set_page_dirty_buffers)
Hugh Dickins5d337b92005-09-03 15:54:41 -070076 * ->swap_lock (exclusive_swap_page, others)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070077 * ->i_pages lock
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Jan Kara96087032021-04-12 15:50:21 +020079 * ->i_rwsem
Jan Kara730633f2021-01-28 19:19:45 +010080 * ->invalidate_lock (acquired by fs in truncate path)
81 * ->i_mmap_rwsem (truncate->unmap_mapping_range)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070083 * ->mmap_lock
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080084 * ->i_mmap_rwsem
Hugh Dickinsb8072f02005-10-29 18:16:41 -070085 * ->page_table_lock or pte_lock (various, mainly in memory.c)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070086 * ->i_pages lock (arch-dependent flush_dcache_mmap_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070088 * ->mmap_lock
Jan Kara730633f2021-01-28 19:19:45 +010089 * ->invalidate_lock (filemap_fault)
90 * ->lock_page (filemap_fault, access_process_vm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 *
Jan Kara96087032021-04-12 15:50:21 +020092 * ->i_rwsem (generic_perform_write)
Andreas Gruenbacherbb523b42021-08-02 13:44:20 +020093 * ->mmap_lock (fault_in_readable->do_page_fault)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 *
Christoph Hellwigf758eea2011-04-21 18:19:44 -060095 * bdi->wb.list_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110096 * sb_lock (fs/fs-writeback.c)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070097 * ->i_pages lock (__sync_single_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080099 * ->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * ->anon_vma.lock (vma_adjust)
101 *
102 * ->anon_vma.lock
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700103 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700105 * ->page_table_lock or pte_lock
Hugh Dickins5d337b92005-09-03 15:54:41 -0700106 * ->swap_lock (try_to_unmap_one)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * ->private_lock (try_to_unmap_one)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700108 * ->i_pages lock (try_to_unmap_one)
Hugh Dickins15b44732020-12-15 14:21:31 -0800109 * ->lruvec->lru_lock (follow_page->mark_page_accessed)
110 * ->lruvec->lru_lock (check_pte_range->isolate_lru_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * ->private_lock (page_remove_rmap->set_page_dirty)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700112 * ->i_pages lock (page_remove_rmap->set_page_dirty)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600113 * bdi.wb->list_lock (page_remove_rmap->set_page_dirty)
Dave Chinner250df6e2011-03-22 22:23:36 +1100114 * ->inode->i_lock (page_remove_rmap->set_page_dirty)
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700115 * ->memcg->move_lock (page_remove_rmap->lock_page_memcg)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600116 * bdi.wb->list_lock (zap_pte_range->set_page_dirty)
Dave Chinner250df6e2011-03-22 22:23:36 +1100117 * ->inode->i_lock (zap_pte_range->set_page_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
119 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800120 * ->i_mmap_rwsem
Andi Kleen9a3c5312012-03-21 16:34:09 -0700121 * ->tasklist_lock (memory_failure, collect_procs_ao)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 */
123
Matthew Wilcox5c024e6a2017-11-21 09:17:59 -0500124static void page_cache_delete(struct address_space *mapping,
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400125 struct folio *folio, void *shadow)
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700126{
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400127 XA_STATE(xas, &mapping->i_pages, folio->index);
128 long nr = 1;
Kirill A. Shutemovc70b6472016-12-12 16:43:17 -0800129
Matthew Wilcox5c024e6a2017-11-21 09:17:59 -0500130 mapping_set_update(&xas, mapping);
131
132 /* hugetlb pages are represented by a single entry in the xarray */
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400133 if (!folio_test_hugetlb(folio)) {
134 xas_set_order(&xas, folio->index, folio_order(folio));
135 nr = folio_nr_pages(folio);
Matthew Wilcox5c024e6a2017-11-21 09:17:59 -0500136 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700137
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400138 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
Johannes Weiner449dd692014-04-03 14:47:56 -0700139
Matthew Wilcox5c024e6a2017-11-21 09:17:59 -0500140 xas_store(&xas, shadow);
141 xas_init_marks(&xas);
Johannes Weinerd3798ae2016-10-04 22:02:08 +0200142
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400143 folio->mapping = NULL;
Jan Kara23006382017-11-15 17:37:26 -0800144 /* Leave page->index set: truncation lookup relies upon it */
Johannes Weinerd3798ae2016-10-04 22:02:08 +0200145 mapping->nrpages -= nr;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700146}
147
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400148static void filemap_unaccount_folio(struct address_space *mapping,
149 struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400151 long nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400153 VM_BUG_ON_FOLIO(folio_mapped(folio), folio);
154 if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(folio_mapped(folio))) {
Hugh Dickins06b241f2016-03-09 14:08:07 -0800155 int mapcount;
156
157 pr_alert("BUG: Bad page cache in process %s pfn:%05lx\n",
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400158 current->comm, folio_pfn(folio));
159 dump_page(&folio->page, "still mapped when deleted");
Hugh Dickins06b241f2016-03-09 14:08:07 -0800160 dump_stack();
161 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
162
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400163 mapcount = page_mapcount(&folio->page);
Hugh Dickins06b241f2016-03-09 14:08:07 -0800164 if (mapping_exiting(mapping) &&
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400165 folio_ref_count(folio) >= mapcount + 2) {
Hugh Dickins06b241f2016-03-09 14:08:07 -0800166 /*
167 * All vmas have already been torn down, so it's
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400168 * a good bet that actually the folio is unmapped,
Hugh Dickins06b241f2016-03-09 14:08:07 -0800169 * and we'd prefer not to leak it: if we're wrong,
170 * some other bad page check should catch it later.
171 */
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400172 page_mapcount_reset(&folio->page);
173 folio_ref_sub(folio, mapcount);
Hugh Dickins06b241f2016-03-09 14:08:07 -0800174 }
175 }
176
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400177 /* hugetlb folios do not participate in page cache accounting. */
178 if (folio_test_hugetlb(folio))
Jan Kara5ecc4d82017-11-15 17:37:29 -0800179 return;
Jan Kara76253fb2017-11-15 17:37:22 -0800180
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400181 nr = folio_nr_pages(folio);
Jan Kara5ecc4d82017-11-15 17:37:29 -0800182
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400183 __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, -nr);
184 if (folio_test_swapbacked(folio)) {
185 __lruvec_stat_mod_folio(folio, NR_SHMEM, -nr);
186 if (folio_test_pmd_mappable(folio))
187 __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, -nr);
188 } else if (folio_test_pmd_mappable(folio)) {
189 __lruvec_stat_mod_folio(folio, NR_FILE_THPS, -nr);
Song Liu09d91cd2019-09-23 15:38:03 -0700190 filemap_nr_thps_dec(mapping);
Jan Kara76253fb2017-11-15 17:37:22 -0800191 }
Jan Kara5ecc4d82017-11-15 17:37:29 -0800192
193 /*
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400194 * At this point folio must be either written or cleaned by
195 * truncate. Dirty folio here signals a bug and loss of
Jan Kara5ecc4d82017-11-15 17:37:29 -0800196 * unwritten data.
197 *
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400198 * This fixes dirty accounting after removing the folio entirely
199 * but leaves the dirty flag set: it has no effect for truncated
200 * folio and anyway will be cleared before returning folio to
Jan Kara5ecc4d82017-11-15 17:37:29 -0800201 * buddy allocator.
202 */
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400203 if (WARN_ON_ONCE(folio_test_dirty(folio)))
204 folio_account_cleaned(folio, mapping,
205 inode_to_wb(mapping->host));
Jan Kara5ecc4d82017-11-15 17:37:29 -0800206}
207
208/*
209 * Delete a page from the page cache and free it. Caller has to make
210 * sure the page is locked and that nobody else uses it - or that usage
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700211 * is safe. The caller must hold the i_pages lock.
Jan Kara5ecc4d82017-11-15 17:37:29 -0800212 */
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400213void __filemap_remove_folio(struct folio *folio, void *shadow)
Jan Kara5ecc4d82017-11-15 17:37:29 -0800214{
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400215 struct address_space *mapping = folio->mapping;
Jan Kara5ecc4d82017-11-15 17:37:29 -0800216
Matthew Wilcox (Oracle)a0580c62021-07-23 09:29:46 -0400217 trace_mm_filemap_delete_from_page_cache(folio);
Matthew Wilcox (Oracle)621db482021-05-08 20:04:05 -0400218 filemap_unaccount_folio(mapping, folio);
Matthew Wilcox (Oracle)a548b612021-05-08 00:35:49 -0400219 page_cache_delete(mapping, folio, shadow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400222void filemap_free_folio(struct address_space *mapping, struct folio *folio)
Jan Kara59c66c52017-11-15 17:37:18 -0800223{
224 void (*freepage)(struct page *);
Matthew Wilcox (Oracle)3abb28e2022-01-07 13:03:48 -0500225 int refs = 1;
Jan Kara59c66c52017-11-15 17:37:18 -0800226
227 freepage = mapping->a_ops->freepage;
228 if (freepage)
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400229 freepage(&folio->page);
Jan Kara59c66c52017-11-15 17:37:18 -0800230
Matthew Wilcox (Oracle)3abb28e2022-01-07 13:03:48 -0500231 if (folio_test_large(folio) && !folio_test_hugetlb(folio))
232 refs = folio_nr_pages(folio);
233 folio_put_refs(folio, refs);
Jan Kara59c66c52017-11-15 17:37:18 -0800234}
235
Minchan Kim702cfbf2011-03-22 16:32:43 -0700236/**
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400237 * filemap_remove_folio - Remove folio from page cache.
238 * @folio: The folio.
Minchan Kim702cfbf2011-03-22 16:32:43 -0700239 *
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400240 * This must be called only on folios that are locked and have been
241 * verified to be in the page cache. It will never put the folio into
242 * the free list because the caller has a reference on the page.
Minchan Kim702cfbf2011-03-22 16:32:43 -0700243 */
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400244void filemap_remove_folio(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400246 struct address_space *mapping = folio->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400248 BUG_ON(!folio_test_locked(folio));
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800249 spin_lock(&mapping->host->i_lock);
Johannes Weiner30472502021-09-02 14:53:18 -0700250 xa_lock_irq(&mapping->i_pages);
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400251 __filemap_remove_folio(folio, NULL);
Johannes Weiner30472502021-09-02 14:53:18 -0700252 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800253 if (mapping_shrinkable(mapping))
254 inode_add_lru(mapping->host);
255 spin_unlock(&mapping->host->i_lock);
Linus Torvalds6072d132010-12-01 13:35:19 -0500256
Matthew Wilcox (Oracle)452e9e62021-05-09 09:33:42 -0400257 filemap_free_folio(mapping, folio);
Minchan Kim97cecb52011-03-22 16:30:53 -0700258}
Minchan Kim97cecb52011-03-22 16:30:53 -0700259
Jan Karaaa65c292017-11-15 17:37:33 -0800260/*
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500261 * page_cache_delete_batch - delete several folios from page cache
262 * @mapping: the mapping to which folios belong
263 * @fbatch: batch of folios to delete
Jan Karaaa65c292017-11-15 17:37:33 -0800264 *
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500265 * The function walks over mapping->i_pages and removes folios passed in
266 * @fbatch from the mapping. The function expects @fbatch to be sorted
267 * by page index and is optimised for it to be dense.
268 * It tolerates holes in @fbatch (mapping entries at those indices are not
269 * modified).
Jan Karaaa65c292017-11-15 17:37:33 -0800270 *
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700271 * The function expects the i_pages lock to be held.
Jan Karaaa65c292017-11-15 17:37:33 -0800272 */
Matthew Wilcoxef8e5712017-12-04 03:59:45 -0500273static void page_cache_delete_batch(struct address_space *mapping,
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500274 struct folio_batch *fbatch)
Jan Karaaa65c292017-11-15 17:37:33 -0800275{
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500276 XA_STATE(xas, &mapping->i_pages, fbatch->folios[0]->index);
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -0400277 long total_pages = 0;
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700278 int i = 0;
Matthew Wilcox (Oracle)1afd7ae2021-03-12 23:13:46 -0500279 struct folio *folio;
Jan Karaaa65c292017-11-15 17:37:33 -0800280
Matthew Wilcoxef8e5712017-12-04 03:59:45 -0500281 mapping_set_update(&xas, mapping);
Matthew Wilcox (Oracle)1afd7ae2021-03-12 23:13:46 -0500282 xas_for_each(&xas, folio, ULONG_MAX) {
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500283 if (i >= folio_batch_count(fbatch))
Jan Karaaa65c292017-11-15 17:37:33 -0800284 break;
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700285
286 /* A swap/dax/shadow entry got inserted? Skip it. */
Matthew Wilcox (Oracle)1afd7ae2021-03-12 23:13:46 -0500287 if (xa_is_value(folio))
Jan Karaaa65c292017-11-15 17:37:33 -0800288 continue;
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700289 /*
290 * A page got inserted in our range? Skip it. We have our
291 * pages locked so they are protected from being removed.
292 * If we see a page whose index is higher than ours, it
293 * means our page has been removed, which shouldn't be
294 * possible because we're holding the PageLock.
295 */
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500296 if (folio != fbatch->folios[i]) {
Matthew Wilcox (Oracle)1afd7ae2021-03-12 23:13:46 -0500297 VM_BUG_ON_FOLIO(folio->index >
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500298 fbatch->folios[i]->index, folio);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700299 continue;
Linus Torvalds69bf4b62019-07-05 19:55:18 -0700300 }
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700301
Matthew Wilcox (Oracle)1afd7ae2021-03-12 23:13:46 -0500302 WARN_ON_ONCE(!folio_test_locked(folio));
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700303
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -0400304 folio->mapping = NULL;
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500305 /* Leave folio->index set: truncation lookup relies on it */
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700306
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -0400307 i++;
Matthew Wilcoxef8e5712017-12-04 03:59:45 -0500308 xas_store(&xas, NULL);
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -0400309 total_pages += folio_nr_pages(folio);
Jan Karaaa65c292017-11-15 17:37:33 -0800310 }
311 mapping->nrpages -= total_pages;
312}
313
314void delete_from_page_cache_batch(struct address_space *mapping,
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500315 struct folio_batch *fbatch)
Jan Karaaa65c292017-11-15 17:37:33 -0800316{
317 int i;
Jan Karaaa65c292017-11-15 17:37:33 -0800318
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500319 if (!folio_batch_count(fbatch))
Jan Karaaa65c292017-11-15 17:37:33 -0800320 return;
321
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800322 spin_lock(&mapping->host->i_lock);
Johannes Weiner30472502021-09-02 14:53:18 -0700323 xa_lock_irq(&mapping->i_pages);
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500324 for (i = 0; i < folio_batch_count(fbatch); i++) {
325 struct folio *folio = fbatch->folios[i];
Jan Karaaa65c292017-11-15 17:37:33 -0800326
Matthew Wilcox (Oracle)a0580c62021-07-23 09:29:46 -0400327 trace_mm_filemap_delete_from_page_cache(folio);
328 filemap_unaccount_folio(mapping, folio);
Jan Karaaa65c292017-11-15 17:37:33 -0800329 }
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500330 page_cache_delete_batch(mapping, fbatch);
Johannes Weiner30472502021-09-02 14:53:18 -0700331 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800332 if (mapping_shrinkable(mapping))
333 inode_add_lru(mapping->host);
334 spin_unlock(&mapping->host->i_lock);
Jan Karaaa65c292017-11-15 17:37:33 -0800335
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500336 for (i = 0; i < folio_batch_count(fbatch); i++)
337 filemap_free_folio(mapping, fbatch->folios[i]);
Jan Karaaa65c292017-11-15 17:37:33 -0800338}
339
Miklos Szeredid72d9e22016-07-29 14:10:57 +0200340int filemap_check_errors(struct address_space *mapping)
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700341{
342 int ret = 0;
343 /* Check for outstanding write errors */
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700344 if (test_bit(AS_ENOSPC, &mapping->flags) &&
345 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700346 ret = -ENOSPC;
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700347 if (test_bit(AS_EIO, &mapping->flags) &&
348 test_and_clear_bit(AS_EIO, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700349 ret = -EIO;
350 return ret;
351}
Miklos Szeredid72d9e22016-07-29 14:10:57 +0200352EXPORT_SYMBOL(filemap_check_errors);
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700353
Jeff Layton76341ca2017-07-06 07:02:22 -0400354static int filemap_check_and_keep_errors(struct address_space *mapping)
355{
356 /* Check for outstanding write errors */
357 if (test_bit(AS_EIO, &mapping->flags))
358 return -EIO;
359 if (test_bit(AS_ENOSPC, &mapping->flags))
360 return -ENOSPC;
361 return 0;
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/**
Josef Bacik5a798492021-07-14 14:47:22 -0400365 * filemap_fdatawrite_wbc - start writeback on mapping dirty pages in range
366 * @mapping: address space structure to write
367 * @wbc: the writeback_control controlling the writeout
368 *
369 * Call writepages on the mapping using the provided wbc to control the
370 * writeout.
371 *
372 * Return: %0 on success, negative error code otherwise.
373 */
374int filemap_fdatawrite_wbc(struct address_space *mapping,
375 struct writeback_control *wbc)
376{
377 int ret;
378
379 if (!mapping_can_writeback(mapping) ||
380 !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
381 return 0;
382
383 wbc_attach_fdatawrite_inode(wbc, mapping->host);
384 ret = do_writepages(mapping, wbc);
385 wbc_detach_inode(wbc);
386 return ret;
387}
388EXPORT_SYMBOL(filemap_fdatawrite_wbc);
389
390/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700391 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700392 * @mapping: address space structure to write
393 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800394 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700395 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700397 * Start writeback against all of a mapping's dirty pages that lie
398 * within the byte offsets <start, end> inclusive.
399 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700401 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * these two operations is that if a dirty page/buffer is encountered, it must
403 * be waited upon, and not just skipped over.
Mike Rapoporta862f682019-03-05 15:48:42 -0800404 *
405 * Return: %0 on success, negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800407int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
408 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 struct writeback_control wbc = {
411 .sync_mode = sync_mode,
Nick Piggin05fe4782009-01-06 14:39:08 -0800412 .nr_to_write = LONG_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700413 .range_start = start,
414 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 };
416
Josef Bacik5a798492021-07-14 14:47:22 -0400417 return filemap_fdatawrite_wbc(mapping, &wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420static inline int __filemap_fdatawrite(struct address_space *mapping,
421 int sync_mode)
422{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700423 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426int filemap_fdatawrite(struct address_space *mapping)
427{
428 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
429}
430EXPORT_SYMBOL(filemap_fdatawrite);
431
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400432int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800433 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
436}
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400437EXPORT_SYMBOL(filemap_fdatawrite_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Randy Dunlap485bb992006-06-23 02:03:49 -0700439/**
440 * filemap_flush - mostly a non-blocking flush
441 * @mapping: target address_space
442 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * This is a mostly non-blocking flush. Not suitable for data-integrity
444 * purposes - I/O may not be started against all dirty pages.
Mike Rapoporta862f682019-03-05 15:48:42 -0800445 *
446 * Return: %0 on success, negative error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 */
448int filemap_flush(struct address_space *mapping)
449{
450 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
451}
452EXPORT_SYMBOL(filemap_flush);
453
Goldwyn Rodrigues7fc9e472017-06-20 07:05:41 -0500454/**
455 * filemap_range_has_page - check if a page exists in range.
456 * @mapping: address space within which to check
457 * @start_byte: offset in bytes where the range starts
458 * @end_byte: offset in bytes where the range ends (inclusive)
459 *
460 * Find at least one page in the range supplied, usually used to check if
461 * direct writing in this range will trigger a writeback.
Mike Rapoporta862f682019-03-05 15:48:42 -0800462 *
463 * Return: %true if at least one page exists in the specified range,
464 * %false otherwise.
Goldwyn Rodrigues7fc9e472017-06-20 07:05:41 -0500465 */
466bool filemap_range_has_page(struct address_space *mapping,
467 loff_t start_byte, loff_t end_byte)
468{
Jan Karaf7b68042017-09-06 16:21:40 -0700469 struct page *page;
Matthew Wilcox8fa8e532018-01-16 06:26:49 -0500470 XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
471 pgoff_t max = end_byte >> PAGE_SHIFT;
Goldwyn Rodrigues7fc9e472017-06-20 07:05:41 -0500472
473 if (end_byte < start_byte)
474 return false;
475
Matthew Wilcox8fa8e532018-01-16 06:26:49 -0500476 rcu_read_lock();
477 for (;;) {
478 page = xas_find(&xas, max);
479 if (xas_retry(&xas, page))
480 continue;
481 /* Shadow entries don't count */
482 if (xa_is_value(page))
483 continue;
484 /*
485 * We don't need to try to pin this page; we're about to
486 * release the RCU lock anyway. It is enough to know that
487 * there was a page here recently.
488 */
489 break;
490 }
491 rcu_read_unlock();
Goldwyn Rodrigues7fc9e472017-06-20 07:05:41 -0500492
Matthew Wilcox8fa8e532018-01-16 06:26:49 -0500493 return page != NULL;
Goldwyn Rodrigues7fc9e472017-06-20 07:05:41 -0500494}
495EXPORT_SYMBOL(filemap_range_has_page);
496
Jeff Layton5e8fcc12017-07-06 07:02:24 -0400497static void __filemap_fdatawait_range(struct address_space *mapping,
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800498 loff_t start_byte, loff_t end_byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300500 pgoff_t index = start_byte >> PAGE_SHIFT;
501 pgoff_t end = end_byte >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct pagevec pvec;
503 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200505 if (end_byte < start_byte)
Jeff Layton5e8fcc12017-07-06 07:02:24 -0400506 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Mel Gorman86679822017-11-15 17:37:52 -0800508 pagevec_init(&pvec);
Jan Kara312e9d22017-11-15 17:35:05 -0800509 while (index <= end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 unsigned i;
511
Jan Kara312e9d22017-11-15 17:35:05 -0800512 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index,
Jan Kara67fd7072017-11-15 17:35:19 -0800513 end, PAGECACHE_TAG_WRITEBACK);
Jan Kara312e9d22017-11-15 17:35:05 -0800514 if (!nr_pages)
515 break;
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 for (i = 0; i < nr_pages; i++) {
518 struct page *page = pvec.pages[i];
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 wait_on_page_writeback(page);
Jeff Layton5e8fcc12017-07-06 07:02:24 -0400521 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523 pagevec_release(&pvec);
524 cond_resched();
525 }
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800526}
527
528/**
529 * filemap_fdatawait_range - wait for writeback to complete
530 * @mapping: address space structure to wait for
531 * @start_byte: offset in bytes where the range starts
532 * @end_byte: offset in bytes where the range ends (inclusive)
533 *
534 * Walk the list of under-writeback pages of the given address space
535 * in the given range and wait for all of them. Check error status of
536 * the address space and return it.
537 *
538 * Since the error status of the address space is cleared by this function,
539 * callers are responsible for checking the return value and handling and/or
540 * reporting the error.
Mike Rapoporta862f682019-03-05 15:48:42 -0800541 *
542 * Return: error status of the address space.
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800543 */
544int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
545 loff_t end_byte)
546{
Jeff Layton5e8fcc12017-07-06 07:02:24 -0400547 __filemap_fdatawait_range(mapping, start_byte, end_byte);
548 return filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
Jan Karad3bccb6f2009-08-17 19:30:27 +0200550EXPORT_SYMBOL(filemap_fdatawait_range);
551
552/**
Ross Zwisleraa0bfcd2019-06-20 17:05:37 -0400553 * filemap_fdatawait_range_keep_errors - wait for writeback to complete
554 * @mapping: address space structure to wait for
555 * @start_byte: offset in bytes where the range starts
556 * @end_byte: offset in bytes where the range ends (inclusive)
557 *
558 * Walk the list of under-writeback pages of the given address space in the
559 * given range and wait for all of them. Unlike filemap_fdatawait_range(),
560 * this function does not clear error status of the address space.
561 *
562 * Use this function if callers don't handle errors themselves. Expected
563 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
564 * fsfreeze(8)
565 */
566int filemap_fdatawait_range_keep_errors(struct address_space *mapping,
567 loff_t start_byte, loff_t end_byte)
568{
569 __filemap_fdatawait_range(mapping, start_byte, end_byte);
570 return filemap_check_and_keep_errors(mapping);
571}
572EXPORT_SYMBOL(filemap_fdatawait_range_keep_errors);
573
574/**
Jeff Laytona823e452017-07-28 07:24:43 -0400575 * file_fdatawait_range - wait for writeback to complete
576 * @file: file pointing to address space structure to wait for
577 * @start_byte: offset in bytes where the range starts
578 * @end_byte: offset in bytes where the range ends (inclusive)
579 *
580 * Walk the list of under-writeback pages of the address space that file
581 * refers to, in the given range and wait for all of them. Check error
582 * status of the address space vs. the file->f_wb_err cursor and return it.
583 *
584 * Since the error status of the file is advanced by this function,
585 * callers are responsible for checking the return value and handling and/or
586 * reporting the error.
Mike Rapoporta862f682019-03-05 15:48:42 -0800587 *
588 * Return: error status of the address space vs. the file->f_wb_err cursor.
Jeff Laytona823e452017-07-28 07:24:43 -0400589 */
590int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte)
591{
592 struct address_space *mapping = file->f_mapping;
593
594 __filemap_fdatawait_range(mapping, start_byte, end_byte);
595 return file_check_and_advance_wb_err(file);
596}
597EXPORT_SYMBOL(file_fdatawait_range);
598
599/**
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800600 * filemap_fdatawait_keep_errors - wait for writeback without clearing errors
601 * @mapping: address space structure to wait for
602 *
603 * Walk the list of under-writeback pages of the given address space
604 * and wait for all of them. Unlike filemap_fdatawait(), this function
605 * does not clear error status of the address space.
606 *
607 * Use this function if callers don't handle errors themselves. Expected
608 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
609 * fsfreeze(8)
Mike Rapoporta862f682019-03-05 15:48:42 -0800610 *
611 * Return: error status of the address space.
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800612 */
Jeff Layton76341ca2017-07-06 07:02:22 -0400613int filemap_fdatawait_keep_errors(struct address_space *mapping)
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800614{
Jeff Laytonffb959b2017-07-31 10:29:38 -0400615 __filemap_fdatawait_range(mapping, 0, LLONG_MAX);
Jeff Layton76341ca2017-07-06 07:02:22 -0400616 return filemap_check_and_keep_errors(mapping);
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800617}
Jeff Layton76341ca2017-07-06 07:02:22 -0400618EXPORT_SYMBOL(filemap_fdatawait_keep_errors);
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800619
Konstantin Khlebnikov875d91b2019-09-23 15:34:48 -0700620/* Returns true if writeback might be needed or already in progress. */
Jeff Layton9326c9b2017-07-26 10:21:11 -0400621static bool mapping_needs_writeback(struct address_space *mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Konstantin Khlebnikov875d91b2019-09-23 15:34:48 -0700623 return mapping->nrpages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Jens Axboe4bdcd1d2021-10-28 08:47:05 -0600626bool filemap_range_has_writeback(struct address_space *mapping,
627 loff_t start_byte, loff_t end_byte)
Jens Axboef8ee8902021-11-05 13:37:13 -0700628{
629 XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
630 pgoff_t max = end_byte >> PAGE_SHIFT;
631 struct page *page;
632
633 if (end_byte < start_byte)
634 return false;
635
636 rcu_read_lock();
637 xas_for_each(&xas, page, max) {
638 if (xas_retry(&xas, page))
639 continue;
640 if (xa_is_value(page))
641 continue;
642 if (PageDirty(page) || PageLocked(page) || PageWriteback(page))
643 break;
644 }
645 rcu_read_unlock();
646 return page != NULL;
Jens Axboef8ee8902021-11-05 13:37:13 -0700647}
Jens Axboe4bdcd1d2021-10-28 08:47:05 -0600648EXPORT_SYMBOL_GPL(filemap_range_has_writeback);
Jens Axboe63135aa2021-04-29 22:55:18 -0700649
650/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700651 * filemap_write_and_wait_range - write out & wait on a file range
652 * @mapping: the address_space for the pages
653 * @lstart: offset in bytes where the range starts
654 * @lend: offset in bytes where the range ends (inclusive)
655 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800656 * Write out and wait upon file offsets lstart->lend, inclusive.
657 *
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -0300658 * Note that @lend is inclusive (describes the last byte to be written) so
Andrew Morton469eb4d2006-03-24 03:17:45 -0800659 * that this function can be used to write to the very end-of-file (end = -1).
Mike Rapoporta862f682019-03-05 15:48:42 -0800660 *
661 * Return: error status of the address space.
Andrew Morton469eb4d2006-03-24 03:17:45 -0800662 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663int filemap_write_and_wait_range(struct address_space *mapping,
664 loff_t lstart, loff_t lend)
665{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800666 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jeff Layton9326c9b2017-07-26 10:21:11 -0400668 if (mapping_needs_writeback(mapping)) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800669 err = __filemap_fdatawrite_range(mapping, lstart, lend,
670 WB_SYNC_ALL);
Ira Weinyddf8f372020-01-30 22:12:07 -0800671 /*
672 * Even if the above returned error, the pages may be
673 * written partially (e.g. -ENOSPC), so we wait for it.
674 * But the -EIO is special case, it may indicate the worst
675 * thing (e.g. bug) happened, so we avoid waiting for it.
676 */
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800677 if (err != -EIO) {
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200678 int err2 = filemap_fdatawait_range(mapping,
679 lstart, lend);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800680 if (!err)
681 err = err2;
Jeff Laytoncbeaf952017-07-06 07:02:23 -0400682 } else {
683 /* Clear any previously stored errors */
684 filemap_check_errors(mapping);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800685 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700686 } else {
687 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800689 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
Chris Masonf6995582009-04-15 13:22:37 -0400691EXPORT_SYMBOL(filemap_write_and_wait_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Jeff Layton5660e132017-07-06 07:02:25 -0400693void __filemap_set_wb_err(struct address_space *mapping, int err)
694{
Jeff Layton3acdfd22017-07-24 06:22:15 -0400695 errseq_t eseq = errseq_set(&mapping->wb_err, err);
Jeff Layton5660e132017-07-06 07:02:25 -0400696
697 trace_filemap_set_wb_err(mapping, eseq);
698}
699EXPORT_SYMBOL(__filemap_set_wb_err);
700
701/**
702 * file_check_and_advance_wb_err - report wb error (if any) that was previously
703 * and advance wb_err to current one
704 * @file: struct file on which the error is being reported
705 *
706 * When userland calls fsync (or something like nfsd does the equivalent), we
707 * want to report any writeback errors that occurred since the last fsync (or
708 * since the file was opened if there haven't been any).
709 *
710 * Grab the wb_err from the mapping. If it matches what we have in the file,
711 * then just quickly return 0. The file is all caught up.
712 *
713 * If it doesn't match, then take the mapping value, set the "seen" flag in
714 * it and try to swap it into place. If it works, or another task beat us
715 * to it with the new value, then update the f_wb_err and return the error
716 * portion. The error at this point must be reported via proper channels
717 * (a'la fsync, or NFS COMMIT operation, etc.).
718 *
719 * While we handle mapping->wb_err with atomic operations, the f_wb_err
720 * value is protected by the f_lock since we must ensure that it reflects
721 * the latest value swapped in for this file descriptor.
Mike Rapoporta862f682019-03-05 15:48:42 -0800722 *
723 * Return: %0 on success, negative error code otherwise.
Jeff Layton5660e132017-07-06 07:02:25 -0400724 */
725int file_check_and_advance_wb_err(struct file *file)
726{
727 int err = 0;
728 errseq_t old = READ_ONCE(file->f_wb_err);
729 struct address_space *mapping = file->f_mapping;
730
731 /* Locklessly handle the common case where nothing has changed */
732 if (errseq_check(&mapping->wb_err, old)) {
733 /* Something changed, must use slow path */
734 spin_lock(&file->f_lock);
735 old = file->f_wb_err;
736 err = errseq_check_and_advance(&mapping->wb_err,
737 &file->f_wb_err);
738 trace_file_check_and_advance_wb_err(file, old);
739 spin_unlock(&file->f_lock);
740 }
Jeff Laytonf4e222c2017-10-03 16:15:25 -0700741
742 /*
743 * We're mostly using this function as a drop in replacement for
744 * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect
745 * that the legacy code would have had on these flags.
746 */
747 clear_bit(AS_EIO, &mapping->flags);
748 clear_bit(AS_ENOSPC, &mapping->flags);
Jeff Layton5660e132017-07-06 07:02:25 -0400749 return err;
750}
751EXPORT_SYMBOL(file_check_and_advance_wb_err);
752
753/**
754 * file_write_and_wait_range - write out & wait on a file range
755 * @file: file pointing to address_space with pages
756 * @lstart: offset in bytes where the range starts
757 * @lend: offset in bytes where the range ends (inclusive)
758 *
759 * Write out and wait upon file offsets lstart->lend, inclusive.
760 *
761 * Note that @lend is inclusive (describes the last byte to be written) so
762 * that this function can be used to write to the very end-of-file (end = -1).
763 *
764 * After writing out and waiting on the data, we check and advance the
765 * f_wb_err cursor to the latest value, and return any errors detected there.
Mike Rapoporta862f682019-03-05 15:48:42 -0800766 *
767 * Return: %0 on success, negative error code otherwise.
Jeff Layton5660e132017-07-06 07:02:25 -0400768 */
769int file_write_and_wait_range(struct file *file, loff_t lstart, loff_t lend)
770{
771 int err = 0, err2;
772 struct address_space *mapping = file->f_mapping;
773
Jeff Layton9326c9b2017-07-26 10:21:11 -0400774 if (mapping_needs_writeback(mapping)) {
Jeff Layton5660e132017-07-06 07:02:25 -0400775 err = __filemap_fdatawrite_range(mapping, lstart, lend,
776 WB_SYNC_ALL);
777 /* See comment of filemap_write_and_wait() */
778 if (err != -EIO)
779 __filemap_fdatawait_range(mapping, lstart, lend);
780 }
781 err2 = file_check_and_advance_wb_err(file);
782 if (!err)
783 err = err2;
784 return err;
785}
786EXPORT_SYMBOL(file_write_and_wait_range);
787
Randy Dunlap485bb992006-06-23 02:03:49 -0700788/**
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700789 * replace_page_cache_page - replace a pagecache page with a new one
790 * @old: page to be replaced
791 * @new: page to replace with
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700792 *
793 * This function replaces a page in the pagecache with a new one. On
794 * success it acquires the pagecache reference for the new page and
795 * drops it for the old page. Both the old and new pages must be
796 * locked. This function does not add the new page to the LRU, the
797 * caller must do that.
798 *
Matthew Wilcox74d60952017-11-17 10:01:45 -0500799 * The remove + add is atomic. This function cannot fail.
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700800 */
Baolin Wang1f7ef652021-02-24 12:01:42 -0800801void replace_page_cache_page(struct page *old, struct page *new)
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700802{
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -0400803 struct folio *fold = page_folio(old);
804 struct folio *fnew = page_folio(new);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500805 struct address_space *mapping = old->mapping;
806 void (*freepage)(struct page *) = mapping->a_ops->freepage;
807 pgoff_t offset = old->index;
808 XA_STATE(xas, &mapping->i_pages, offset);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700809
Sasha Levin309381fea2014-01-23 15:52:54 -0800810 VM_BUG_ON_PAGE(!PageLocked(old), old);
811 VM_BUG_ON_PAGE(!PageLocked(new), new);
812 VM_BUG_ON_PAGE(new->mapping, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700813
Matthew Wilcox74d60952017-11-17 10:01:45 -0500814 get_page(new);
815 new->mapping = mapping;
816 new->index = offset;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700817
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -0400818 mem_cgroup_migrate(fold, fnew);
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700819
Johannes Weiner30472502021-09-02 14:53:18 -0700820 xas_lock_irq(&xas);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500821 xas_store(&xas, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700822
Matthew Wilcox74d60952017-11-17 10:01:45 -0500823 old->mapping = NULL;
824 /* hugetlb pages do not participate in page cache accounting. */
825 if (!PageHuge(old))
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700826 __dec_lruvec_page_state(old, NR_FILE_PAGES);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500827 if (!PageHuge(new))
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700828 __inc_lruvec_page_state(new, NR_FILE_PAGES);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500829 if (PageSwapBacked(old))
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700830 __dec_lruvec_page_state(old, NR_SHMEM);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500831 if (PageSwapBacked(new))
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700832 __inc_lruvec_page_state(new, NR_SHMEM);
Johannes Weiner30472502021-09-02 14:53:18 -0700833 xas_unlock_irq(&xas);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500834 if (freepage)
835 freepage(old);
836 put_page(old);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700837}
838EXPORT_SYMBOL_GPL(replace_page_cache_page);
839
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500840noinline int __filemap_add_folio(struct address_space *mapping,
841 struct folio *folio, pgoff_t index, gfp_t gfp, void **shadowp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500843 XA_STATE(xas, &mapping->i_pages, index);
844 int huge = folio_test_hugetlb(folio);
Nick Piggine2867812008-07-25 19:45:30 -0700845 int error;
Waiman Longda742402021-02-04 18:32:45 -0800846 bool charged = false;
Nick Piggine2867812008-07-25 19:45:30 -0700847
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500848 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
849 VM_BUG_ON_FOLIO(folio_test_swapbacked(folio), folio);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500850 mapping_set_update(&xas, mapping);
Nick Piggine2867812008-07-25 19:45:30 -0700851
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500852 folio_get(folio);
853 folio->mapping = mapping;
854 folio->index = index;
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700855
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700856 if (!huge) {
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500857 error = mem_cgroup_charge(folio, NULL, gfp);
858 VM_BUG_ON_FOLIO(index & (folio_nr_pages(folio) - 1), folio);
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700859 if (error)
860 goto error;
Waiman Longda742402021-02-04 18:32:45 -0800861 charged = true;
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700862 }
863
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700864 gfp &= GFP_RECLAIM_MASK;
865
Matthew Wilcox74d60952017-11-17 10:01:45 -0500866 do {
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700867 unsigned int order = xa_get_order(xas.xa, xas.xa_index);
868 void *entry, *old = NULL;
869
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500870 if (order > folio_order(folio))
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700871 xas_split_alloc(&xas, xa_load(xas.xa, xas.xa_index),
872 order, gfp);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500873 xas_lock_irq(&xas);
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700874 xas_for_each_conflict(&xas, entry) {
875 old = entry;
876 if (!xa_is_value(entry)) {
877 xas_set_err(&xas, -EEXIST);
878 goto unlock;
879 }
880 }
881
882 if (old) {
883 if (shadowp)
884 *shadowp = old;
885 /* entry may have been split before we acquired lock */
886 order = xa_get_order(xas.xa, xas.xa_index);
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500887 if (order > folio_order(folio)) {
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700888 xas_split(&xas, old, order);
889 xas_reset(&xas);
890 }
891 }
892
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500893 xas_store(&xas, folio);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500894 if (xas_error(&xas))
895 goto unlock;
Michal Hocko4165b9b42015-06-24 16:57:24 -0700896
Matthew Wilcox74d60952017-11-17 10:01:45 -0500897 mapping->nrpages++;
898
899 /* hugetlb pages do not participate in page cache accounting */
900 if (!huge)
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500901 __lruvec_stat_add_folio(folio, NR_FILE_PAGES);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500902unlock:
903 xas_unlock_irq(&xas);
Matthew Wilcox (Oracle)198b62f2020-10-15 20:05:20 -0700904 } while (xas_nomem(&xas, gfp));
Matthew Wilcox74d60952017-11-17 10:01:45 -0500905
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700906 if (xas_error(&xas)) {
907 error = xas_error(&xas);
Waiman Longda742402021-02-04 18:32:45 -0800908 if (charged)
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500909 mem_cgroup_uncharge(folio);
Matthew Wilcox74d60952017-11-17 10:01:45 -0500910 goto error;
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700911 }
Matthew Wilcox74d60952017-11-17 10:01:45 -0500912
Matthew Wilcox (Oracle)a0580c62021-07-23 09:29:46 -0400913 trace_mm_filemap_add_to_page_cache(folio);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700914 return 0;
Matthew Wilcox74d60952017-11-17 10:01:45 -0500915error:
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500916 folio->mapping = NULL;
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700917 /* Leave page->index set: truncation relies upon it */
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500918 folio_put(folio);
Johannes Weiner3fea5a42020-06-03 16:01:41 -0700919 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500921ALLOW_ERROR_INJECTION(__filemap_add_folio, ERRNO);
Johannes Weinera5289102014-04-03 14:47:51 -0700922
923/**
924 * add_to_page_cache_locked - add a locked page to the pagecache
925 * @page: page to add
926 * @mapping: the page's address_space
927 * @offset: page index
928 * @gfp_mask: page allocation mode
929 *
930 * This function is used to add a page to the pagecache. It must be locked.
931 * This function does not add the page to the LRU. The caller must do that.
Mike Rapoporta862f682019-03-05 15:48:42 -0800932 *
933 * Return: %0 on success, negative error code otherwise.
Johannes Weinera5289102014-04-03 14:47:51 -0700934 */
935int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
936 pgoff_t offset, gfp_t gfp_mask)
937{
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500938 return __filemap_add_folio(mapping, page_folio(page), offset,
Johannes Weinera5289102014-04-03 14:47:51 -0700939 gfp_mask, NULL);
940}
Nick Piggine2867812008-07-25 19:45:30 -0700941EXPORT_SYMBOL(add_to_page_cache_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500943int filemap_add_folio(struct address_space *mapping, struct folio *folio,
944 pgoff_t index, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Johannes Weinera5289102014-04-03 14:47:51 -0700946 void *shadow = NULL;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700947 int ret;
948
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500949 __folio_set_locked(folio);
950 ret = __filemap_add_folio(mapping, folio, index, gfp, &shadow);
Johannes Weinera5289102014-04-03 14:47:51 -0700951 if (unlikely(ret))
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500952 __folio_clear_locked(folio);
Johannes Weinera5289102014-04-03 14:47:51 -0700953 else {
954 /*
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500955 * The folio might have been evicted from cache only
Johannes Weinera5289102014-04-03 14:47:51 -0700956 * recently, in which case it should be activated like
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500957 * any other repeatedly accessed folio.
958 * The exception is folios getting rewritten; evicting other
Rik van Rielf0281a02016-05-20 16:56:25 -0700959 * data from the working set, only to cache data that will
960 * get overwritten with something else, is a waste of memory.
Johannes Weinera5289102014-04-03 14:47:51 -0700961 */
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500962 WARN_ON_ONCE(folio_test_active(folio));
963 if (!(gfp & __GFP_WRITE) && shadow)
964 workingset_refault(folio, shadow);
965 folio_add_lru(folio);
Johannes Weinera5289102014-04-03 14:47:51 -0700966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return ret;
968}
Matthew Wilcox (Oracle)9dd3d062020-12-08 08:56:28 -0500969EXPORT_SYMBOL_GPL(filemap_add_folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Paul Jackson44110fe2006-03-24 03:16:04 -0800971#ifdef CONFIG_NUMA
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500972struct folio *filemap_alloc_folio(gfp_t gfp, unsigned int order)
Paul Jackson44110fe2006-03-24 03:16:04 -0800973{
Miao Xiec0ff7452010-05-24 14:32:08 -0700974 int n;
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500975 struct folio *folio;
Miao Xiec0ff7452010-05-24 14:32:08 -0700976
Paul Jackson44110fe2006-03-24 03:16:04 -0800977 if (cpuset_do_page_mem_spread()) {
Mel Gormancc9a6c82012-03-21 16:34:11 -0700978 unsigned int cpuset_mems_cookie;
979 do {
Mel Gormand26914d2014-04-03 14:47:24 -0700980 cpuset_mems_cookie = read_mems_allowed_begin();
Mel Gormancc9a6c82012-03-21 16:34:11 -0700981 n = cpuset_mem_spread_node();
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500982 folio = __folio_alloc_node(gfp, order, n);
983 } while (!folio && read_mems_allowed_retry(cpuset_mems_cookie));
Mel Gormancc9a6c82012-03-21 16:34:11 -0700984
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500985 return folio;
Paul Jackson44110fe2006-03-24 03:16:04 -0800986 }
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500987 return folio_alloc(gfp, order);
Paul Jackson44110fe2006-03-24 03:16:04 -0800988}
Matthew Wilcox (Oracle)bb3c5792020-12-15 23:11:07 -0500989EXPORT_SYMBOL(filemap_alloc_folio);
Paul Jackson44110fe2006-03-24 03:16:04 -0800990#endif
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
Jan Kara7506ae62021-05-24 13:02:30 +0200993 * filemap_invalidate_lock_two - lock invalidate_lock for two mappings
994 *
995 * Lock exclusively invalidate_lock of any passed mapping that is not NULL.
996 *
997 * @mapping1: the first mapping to lock
998 * @mapping2: the second mapping to lock
999 */
1000void filemap_invalidate_lock_two(struct address_space *mapping1,
1001 struct address_space *mapping2)
1002{
1003 if (mapping1 > mapping2)
1004 swap(mapping1, mapping2);
1005 if (mapping1)
1006 down_write(&mapping1->invalidate_lock);
1007 if (mapping2 && mapping1 != mapping2)
1008 down_write_nested(&mapping2->invalidate_lock, 1);
1009}
1010EXPORT_SYMBOL(filemap_invalidate_lock_two);
1011
1012/*
1013 * filemap_invalidate_unlock_two - unlock invalidate_lock for two mappings
1014 *
1015 * Unlock exclusive invalidate_lock of any passed mapping that is not NULL.
1016 *
1017 * @mapping1: the first mapping to unlock
1018 * @mapping2: the second mapping to unlock
1019 */
1020void filemap_invalidate_unlock_two(struct address_space *mapping1,
1021 struct address_space *mapping2)
1022{
1023 if (mapping1)
1024 up_write(&mapping1->invalidate_lock);
1025 if (mapping2 && mapping1 != mapping2)
1026 up_write(&mapping2->invalidate_lock);
1027}
1028EXPORT_SYMBOL(filemap_invalidate_unlock_two);
1029
1030/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * In order to wait for pages to become available there must be
1032 * waitqueues associated with pages. By using a hash table of
1033 * waitqueues where the bucket discipline is to maintain all
1034 * waiters on the same queue and wake all when any of the pages
1035 * become available, and for the woken contexts to check to be
1036 * sure the appropriate page became available, this saves space
1037 * at a cost of "thundering herd" phenomena during rare hash
1038 * collisions.
1039 */
Nicholas Piggin62906022016-12-25 13:00:30 +10001040#define PAGE_WAIT_TABLE_BITS 8
1041#define PAGE_WAIT_TABLE_SIZE (1 << PAGE_WAIT_TABLE_BITS)
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001042static wait_queue_head_t folio_wait_table[PAGE_WAIT_TABLE_SIZE] __cacheline_aligned;
Nicholas Piggin62906022016-12-25 13:00:30 +10001043
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001044static wait_queue_head_t *folio_waitqueue(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001046 return &folio_wait_table[hash_ptr(folio, PAGE_WAIT_TABLE_BITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
Nicholas Piggin62906022016-12-25 13:00:30 +10001048
1049void __init pagecache_init(void)
1050{
1051 int i;
1052
1053 for (i = 0; i < PAGE_WAIT_TABLE_SIZE; i++)
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001054 init_waitqueue_head(&folio_wait_table[i]);
Nicholas Piggin62906022016-12-25 13:00:30 +10001055
1056 page_writeback_init();
1057}
1058
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001059/*
1060 * The page wait code treats the "wait->flags" somewhat unusually, because
Linus Torvalds5868ec22020-09-20 10:38:47 -07001061 * we have multiple different kinds of waits, not just the usual "exclusive"
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001062 * one.
1063 *
1064 * We have:
1065 *
1066 * (a) no special bits set:
1067 *
1068 * We're just waiting for the bit to be released, and when a waker
1069 * calls the wakeup function, we set WQ_FLAG_WOKEN and wake it up,
1070 * and remove it from the wait queue.
1071 *
1072 * Simple and straightforward.
1073 *
1074 * (b) WQ_FLAG_EXCLUSIVE:
1075 *
1076 * The waiter is waiting to get the lock, and only one waiter should
1077 * be woken up to avoid any thundering herd behavior. We'll set the
1078 * WQ_FLAG_WOKEN bit, wake it up, and remove it from the wait queue.
1079 *
1080 * This is the traditional exclusive wait.
1081 *
Linus Torvalds5868ec22020-09-20 10:38:47 -07001082 * (c) WQ_FLAG_EXCLUSIVE | WQ_FLAG_CUSTOM:
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001083 *
1084 * The waiter is waiting to get the bit, and additionally wants the
1085 * lock to be transferred to it for fair lock behavior. If the lock
1086 * cannot be taken, we stop walking the wait queue without waking
1087 * the waiter.
1088 *
1089 * This is the "fair lock handoff" case, and in addition to setting
1090 * WQ_FLAG_WOKEN, we set WQ_FLAG_DONE to let the waiter easily see
1091 * that it now has the lock.
1092 */
Ingo Molnarac6424b2017-06-20 12:06:13 +02001093static int wake_page_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *arg)
Nicholas Piggin62906022016-12-25 13:00:30 +10001094{
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001095 unsigned int flags;
Nicholas Piggin62906022016-12-25 13:00:30 +10001096 struct wait_page_key *key = arg;
1097 struct wait_page_queue *wait_page
1098 = container_of(wait, struct wait_page_queue, wait);
1099
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07001100 if (!wake_page_match(wait_page, key))
Nicholas Piggin62906022016-12-25 13:00:30 +10001101 return 0;
Linus Torvalds3510ca22017-08-27 13:55:12 -07001102
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001103 /*
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001104 * If it's a lock handoff wait, we get the bit for it, and
1105 * stop walking (and do not wake it up) if we can't.
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001106 */
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001107 flags = wait->flags;
1108 if (flags & WQ_FLAG_EXCLUSIVE) {
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001109 if (test_bit(key->bit_nr, &key->folio->flags))
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001110 return -1;
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001111 if (flags & WQ_FLAG_CUSTOM) {
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001112 if (test_and_set_bit(key->bit_nr, &key->folio->flags))
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001113 return -1;
1114 flags |= WQ_FLAG_DONE;
1115 }
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001116 }
Nicholas Piggin62906022016-12-25 13:00:30 +10001117
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001118 /*
1119 * We are holding the wait-queue lock, but the waiter that
1120 * is waiting for this will be checking the flags without
1121 * any locking.
1122 *
1123 * So update the flags atomically, and wake up the waiter
1124 * afterwards to avoid any races. This store-release pairs
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001125 * with the load-acquire in folio_wait_bit_common().
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001126 */
1127 smp_store_release(&wait->flags, flags | WQ_FLAG_WOKEN);
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001128 wake_up_state(wait->private, mode);
1129
1130 /*
1131 * Ok, we have successfully done what we're waiting for,
1132 * and we can unconditionally remove the wait entry.
1133 *
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001134 * Note that this pairs with the "finish_wait()" in the
1135 * waiter, and has to be the absolute last thing we do.
1136 * After this list_del_init(&wait->entry) the wait entry
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001137 * might be de-allocated and the process might even have
1138 * exited.
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001139 */
Linus Torvaldsc6fe44d2020-07-23 12:33:41 -07001140 list_del_init_careful(&wait->entry);
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001141 return (flags & WQ_FLAG_EXCLUSIVE) != 0;
Nicholas Piggin62906022016-12-25 13:00:30 +10001142}
1143
Matthew Wilcox (Oracle)6974d7c2021-01-15 17:14:48 -05001144static void folio_wake_bit(struct folio *folio, int bit_nr)
Nicholas Piggin62906022016-12-25 13:00:30 +10001145{
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001146 wait_queue_head_t *q = folio_waitqueue(folio);
Nicholas Piggin62906022016-12-25 13:00:30 +10001147 struct wait_page_key key;
1148 unsigned long flags;
Tim Chen11a19c72017-08-25 09:13:55 -07001149 wait_queue_entry_t bookmark;
Nicholas Piggin62906022016-12-25 13:00:30 +10001150
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001151 key.folio = folio;
Nicholas Piggin62906022016-12-25 13:00:30 +10001152 key.bit_nr = bit_nr;
1153 key.page_match = 0;
1154
Tim Chen11a19c72017-08-25 09:13:55 -07001155 bookmark.flags = 0;
1156 bookmark.private = NULL;
1157 bookmark.func = NULL;
1158 INIT_LIST_HEAD(&bookmark.entry);
1159
Nicholas Piggin62906022016-12-25 13:00:30 +10001160 spin_lock_irqsave(&q->lock, flags);
Tim Chen11a19c72017-08-25 09:13:55 -07001161 __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark);
1162
1163 while (bookmark.flags & WQ_FLAG_BOOKMARK) {
1164 /*
1165 * Take a breather from holding the lock,
1166 * allow pages that finish wake up asynchronously
1167 * to acquire the lock and remove themselves
1168 * from wait queue
1169 */
1170 spin_unlock_irqrestore(&q->lock, flags);
1171 cpu_relax();
1172 spin_lock_irqsave(&q->lock, flags);
1173 __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark);
1174 }
1175
Nicholas Piggin62906022016-12-25 13:00:30 +10001176 /*
1177 * It is possible for other pages to have collided on the waitqueue
1178 * hash, so in that case check for a page match. That prevents a long-
1179 * term waiter
1180 *
1181 * It is still possible to miss a case here, when we woke page waiters
1182 * and removed them from the waitqueue, but there are still other
1183 * page waiters.
1184 */
1185 if (!waitqueue_active(q) || !key.page_match) {
Matthew Wilcox (Oracle)6974d7c2021-01-15 17:14:48 -05001186 folio_clear_waiters(folio);
Nicholas Piggin62906022016-12-25 13:00:30 +10001187 /*
1188 * It's possible to miss clearing Waiters here, when we woke
1189 * our page waiters, but the hashed waitqueue has waiters for
1190 * other pages on it.
1191 *
1192 * That's okay, it's a rare case. The next waker will clear it.
1193 */
1194 }
1195 spin_unlock_irqrestore(&q->lock, flags);
1196}
Nicholas Piggin74d81bf2017-02-22 15:44:41 -08001197
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001198static void folio_wake(struct folio *folio, int bit)
Nicholas Piggin74d81bf2017-02-22 15:44:41 -08001199{
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001200 if (!folio_test_waiters(folio))
Nicholas Piggin74d81bf2017-02-22 15:44:41 -08001201 return;
Matthew Wilcox (Oracle)6974d7c2021-01-15 17:14:48 -05001202 folio_wake_bit(folio, bit);
Nicholas Piggin74d81bf2017-02-22 15:44:41 -08001203}
Nicholas Piggin62906022016-12-25 13:00:30 +10001204
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001205/*
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001206 * A choice of three behaviors for folio_wait_bit_common():
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001207 */
1208enum behavior {
1209 EXCLUSIVE, /* Hold ref to page and take the bit when woken, like
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05001210 * __folio_lock() waiting on then setting PG_locked.
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001211 */
1212 SHARED, /* Hold ref to page and check the bit when woken, like
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001213 * folio_wait_writeback() waiting on PG_writeback.
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001214 */
1215 DROP, /* Drop ref to page before wait, no check when woken,
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001216 * like folio_put_wait_locked() on PG_locked.
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001217 */
1218};
1219
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001220/*
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001221 * Attempt to check (or get) the folio flag, and mark us done
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001222 * if successful.
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001223 */
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001224static inline bool folio_trylock_flag(struct folio *folio, int bit_nr,
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001225 struct wait_queue_entry *wait)
1226{
1227 if (wait->flags & WQ_FLAG_EXCLUSIVE) {
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001228 if (test_and_set_bit(bit_nr, &folio->flags))
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001229 return false;
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001230 } else if (test_bit(bit_nr, &folio->flags))
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001231 return false;
1232
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001233 wait->flags |= WQ_FLAG_WOKEN | WQ_FLAG_DONE;
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001234 return true;
1235}
1236
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001237/* How many times do we accept lock stealing from under a waiter? */
1238int sysctl_page_lock_unfairness = 5;
1239
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001240static inline int folio_wait_bit_common(struct folio *folio, int bit_nr,
1241 int state, enum behavior behavior)
Nicholas Piggin62906022016-12-25 13:00:30 +10001242{
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001243 wait_queue_head_t *q = folio_waitqueue(folio);
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001244 int unfairness = sysctl_page_lock_unfairness;
Nicholas Piggin62906022016-12-25 13:00:30 +10001245 struct wait_page_queue wait_page;
Ingo Molnarac6424b2017-06-20 12:06:13 +02001246 wait_queue_entry_t *wait = &wait_page.wait;
Johannes Weinerb1d29ba2018-10-26 15:06:08 -07001247 bool thrashing = false;
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001248 bool delayacct = false;
Johannes Weinereb414682018-10-26 15:06:27 -07001249 unsigned long pflags;
Nicholas Piggin62906022016-12-25 13:00:30 +10001250
Johannes Weinereb414682018-10-26 15:06:27 -07001251 if (bit_nr == PG_locked &&
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001252 !folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1253 if (!folio_test_swapbacked(folio)) {
Johannes Weinereb414682018-10-26 15:06:27 -07001254 delayacct_thrashing_start();
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001255 delayacct = true;
1256 }
Johannes Weinereb414682018-10-26 15:06:27 -07001257 psi_memstall_enter(&pflags);
Johannes Weinerb1d29ba2018-10-26 15:06:08 -07001258 thrashing = true;
1259 }
1260
Nicholas Piggin62906022016-12-25 13:00:30 +10001261 init_wait(wait);
1262 wait->func = wake_page_function;
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001263 wait_page.folio = folio;
Nicholas Piggin62906022016-12-25 13:00:30 +10001264 wait_page.bit_nr = bit_nr;
1265
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001266repeat:
1267 wait->flags = 0;
1268 if (behavior == EXCLUSIVE) {
1269 wait->flags = WQ_FLAG_EXCLUSIVE;
1270 if (--unfairness < 0)
1271 wait->flags |= WQ_FLAG_CUSTOM;
1272 }
1273
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001274 /*
1275 * Do one last check whether we can get the
1276 * page bit synchronously.
1277 *
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001278 * Do the folio_set_waiters() marking before that
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001279 * to let any waker we _just_ missed know they
1280 * need to wake us up (otherwise they'll never
1281 * even go to the slow case that looks at the
1282 * page queue), and add ourselves to the wait
1283 * queue if we need to sleep.
1284 *
1285 * This part needs to be done under the queue
1286 * lock to avoid races.
1287 */
1288 spin_lock_irq(&q->lock);
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001289 folio_set_waiters(folio);
1290 if (!folio_trylock_flag(folio, bit_nr, wait))
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001291 __add_wait_queue_entry_tail(q, wait);
1292 spin_unlock_irq(&q->lock);
1293
1294 /*
1295 * From now on, all the logic will be based on
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001296 * the WQ_FLAG_WOKEN and WQ_FLAG_DONE flag, to
1297 * see whether the page bit testing has already
1298 * been done by the wake function.
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001299 *
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001300 * We can drop our reference to the folio.
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001301 */
1302 if (behavior == DROP)
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001303 folio_put(folio);
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001304
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001305 /*
1306 * Note that until the "finish_wait()", or until
1307 * we see the WQ_FLAG_WOKEN flag, we need to
1308 * be very careful with the 'wait->flags', because
1309 * we may race with a waker that sets them.
1310 */
Nicholas Piggin62906022016-12-25 13:00:30 +10001311 for (;;) {
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001312 unsigned int flags;
1313
Nicholas Piggin62906022016-12-25 13:00:30 +10001314 set_current_state(state);
1315
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001316 /* Loop until we've been woken or interrupted */
1317 flags = smp_load_acquire(&wait->flags);
1318 if (!(flags & WQ_FLAG_WOKEN)) {
1319 if (signal_pending_state(state, current))
1320 break;
1321
1322 io_schedule();
1323 continue;
1324 }
1325
1326 /* If we were non-exclusive, we're done */
1327 if (behavior != EXCLUSIVE)
Linus Torvaldsa8b169a2017-08-27 16:25:09 -07001328 break;
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001329
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001330 /* If the waker got the lock for us, we're done */
1331 if (flags & WQ_FLAG_DONE)
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001332 break;
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001333
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001334 /*
1335 * Otherwise, if we're getting the lock, we need to
1336 * try to get it ourselves.
1337 *
1338 * And if that fails, we'll have to retry this all.
1339 */
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001340 if (unlikely(test_and_set_bit(bit_nr, folio_flags(folio, 0))))
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001341 goto repeat;
1342
1343 wait->flags |= WQ_FLAG_DONE;
1344 break;
Nicholas Piggin62906022016-12-25 13:00:30 +10001345 }
1346
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001347 /*
1348 * If a signal happened, this 'finish_wait()' may remove the last
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001349 * waiter from the wait-queues, but the folio waiters bit will remain
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001350 * set. That's ok. The next wakeup will take care of it, and trying
1351 * to do it here would be difficult and prone to races.
1352 */
Nicholas Piggin62906022016-12-25 13:00:30 +10001353 finish_wait(q, wait);
1354
Johannes Weinereb414682018-10-26 15:06:27 -07001355 if (thrashing) {
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001356 if (delayacct)
Johannes Weinereb414682018-10-26 15:06:27 -07001357 delayacct_thrashing_end();
1358 psi_memstall_leave(&pflags);
1359 }
Johannes Weinerb1d29ba2018-10-26 15:06:08 -07001360
Nicholas Piggin62906022016-12-25 13:00:30 +10001361 /*
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001362 * NOTE! The wait->flags weren't stable until we've done the
1363 * 'finish_wait()', and we could have exited the loop above due
1364 * to a signal, and had a wakeup event happen after the signal
1365 * test but before the 'finish_wait()'.
1366 *
1367 * So only after the finish_wait() can we reliably determine
1368 * if we got woken up or not, so we can now figure out the final
1369 * return value based on that state without races.
1370 *
1371 * Also note that WQ_FLAG_WOKEN is sufficient for a non-exclusive
1372 * waiter, but an exclusive one requires WQ_FLAG_DONE.
Nicholas Piggin62906022016-12-25 13:00:30 +10001373 */
Linus Torvalds5ef64cc2020-09-13 14:05:35 -07001374 if (behavior == EXCLUSIVE)
1375 return wait->flags & WQ_FLAG_DONE ? 0 : -EINTR;
Nicholas Piggin62906022016-12-25 13:00:30 +10001376
Linus Torvalds2a9127f2020-07-23 10:16:49 -07001377 return wait->flags & WQ_FLAG_WOKEN ? 0 : -EINTR;
Nicholas Piggin62906022016-12-25 13:00:30 +10001378}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Alistair Poppleffa65752022-01-21 22:10:46 -08001380#ifdef CONFIG_MIGRATION
1381/**
1382 * migration_entry_wait_on_locked - Wait for a migration entry to be removed
1383 * @entry: migration swap entry.
1384 * @ptep: mapped pte pointer. Will return with the ptep unmapped. Only required
1385 * for pte entries, pass NULL for pmd entries.
1386 * @ptl: already locked ptl. This function will drop the lock.
1387 *
1388 * Wait for a migration entry referencing the given page to be removed. This is
1389 * equivalent to put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE) except
1390 * this can be called without taking a reference on the page. Instead this
1391 * should be called while holding the ptl for the migration entry referencing
1392 * the page.
1393 *
1394 * Returns after unmapping and unlocking the pte/ptl with pte_unmap_unlock().
1395 *
1396 * This follows the same logic as folio_wait_bit_common() so see the comments
1397 * there.
1398 */
1399void migration_entry_wait_on_locked(swp_entry_t entry, pte_t *ptep,
1400 spinlock_t *ptl)
1401{
1402 struct wait_page_queue wait_page;
1403 wait_queue_entry_t *wait = &wait_page.wait;
1404 bool thrashing = false;
1405 bool delayacct = false;
1406 unsigned long pflags;
1407 wait_queue_head_t *q;
1408 struct folio *folio = page_folio(pfn_swap_entry_to_page(entry));
1409
1410 q = folio_waitqueue(folio);
1411 if (!folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1412 if (!folio_test_swapbacked(folio)) {
1413 delayacct_thrashing_start();
1414 delayacct = true;
1415 }
1416 psi_memstall_enter(&pflags);
1417 thrashing = true;
1418 }
1419
1420 init_wait(wait);
1421 wait->func = wake_page_function;
1422 wait_page.folio = folio;
1423 wait_page.bit_nr = PG_locked;
1424 wait->flags = 0;
1425
1426 spin_lock_irq(&q->lock);
1427 folio_set_waiters(folio);
1428 if (!folio_trylock_flag(folio, PG_locked, wait))
1429 __add_wait_queue_entry_tail(q, wait);
1430 spin_unlock_irq(&q->lock);
1431
1432 /*
1433 * If a migration entry exists for the page the migration path must hold
1434 * a valid reference to the page, and it must take the ptl to remove the
1435 * migration entry. So the page is valid until the ptl is dropped.
1436 */
1437 if (ptep)
1438 pte_unmap_unlock(ptep, ptl);
1439 else
1440 spin_unlock(ptl);
1441
1442 for (;;) {
1443 unsigned int flags;
1444
1445 set_current_state(TASK_UNINTERRUPTIBLE);
1446
1447 /* Loop until we've been woken or interrupted */
1448 flags = smp_load_acquire(&wait->flags);
1449 if (!(flags & WQ_FLAG_WOKEN)) {
1450 if (signal_pending_state(TASK_UNINTERRUPTIBLE, current))
1451 break;
1452
1453 io_schedule();
1454 continue;
1455 }
1456 break;
1457 }
1458
1459 finish_wait(q, wait);
1460
1461 if (thrashing) {
1462 if (delayacct)
1463 delayacct_thrashing_end();
1464 psi_memstall_leave(&pflags);
1465 }
1466}
1467#endif
1468
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001469void folio_wait_bit(struct folio *folio, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001471 folio_wait_bit_common(folio, bit_nr, TASK_UNINTERRUPTIBLE, SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001473EXPORT_SYMBOL(folio_wait_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001475int folio_wait_bit_killable(struct folio *folio, int bit_nr)
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -07001476{
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001477 return folio_wait_bit_common(folio, bit_nr, TASK_KILLABLE, SHARED);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -07001478}
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001479EXPORT_SYMBOL(folio_wait_bit_killable);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -07001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481/**
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001482 * folio_put_wait_locked - Drop a reference and wait for it to be unlocked
1483 * @folio: The folio to wait for.
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -08001484 * @state: The sleep state (TASK_KILLABLE, TASK_UNINTERRUPTIBLE, etc).
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001485 *
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001486 * The caller should hold a reference on @folio. They expect the page to
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001487 * become unlocked relatively soon, but do not wish to hold up migration
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001488 * (for example) by holding the reference while waiting for the folio to
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001489 * come unlocked. After this function returns, the caller should not
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001490 * dereference @folio.
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -08001491 *
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001492 * Return: 0 if the folio was unlocked or -EINTR if interrupted by a signal.
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001493 */
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001494int folio_put_wait_locked(struct folio *folio, int state)
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001495{
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04001496 return folio_wait_bit_common(folio, PG_locked, state, DROP);
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001497}
1498
1499/**
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001500 * folio_add_wait_queue - Add an arbitrary waiter to a folio's wait queue
1501 * @folio: Folio defining the wait queue of interest
Randy Dunlap697f6192009-04-13 14:39:54 -07001502 * @waiter: Waiter to add to the queue
David Howells385e1ca5f2009-04-03 16:42:39 +01001503 *
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001504 * Add an arbitrary @waiter to the wait queue for the nominated @folio.
David Howells385e1ca5f2009-04-03 16:42:39 +01001505 */
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001506void folio_add_wait_queue(struct folio *folio, wait_queue_entry_t *waiter)
David Howells385e1ca5f2009-04-03 16:42:39 +01001507{
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001508 wait_queue_head_t *q = folio_waitqueue(folio);
David Howells385e1ca5f2009-04-03 16:42:39 +01001509 unsigned long flags;
1510
1511 spin_lock_irqsave(&q->lock, flags);
Linus Torvalds9c3a8152017-08-28 16:45:40 -07001512 __add_wait_queue_entry_tail(q, waiter);
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001513 folio_set_waiters(folio);
David Howells385e1ca5f2009-04-03 16:42:39 +01001514 spin_unlock_irqrestore(&q->lock, flags);
1515}
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001516EXPORT_SYMBOL_GPL(folio_add_wait_queue);
David Howells385e1ca5f2009-04-03 16:42:39 +01001517
Linus Torvaldsb91e1302016-12-27 11:40:38 -08001518#ifndef clear_bit_unlock_is_negative_byte
1519
1520/*
1521 * PG_waiters is the high bit in the same byte as PG_lock.
1522 *
1523 * On x86 (and on many other architectures), we can clear PG_lock and
1524 * test the sign bit at the same time. But if the architecture does
1525 * not support that special operation, we just do this all by hand
1526 * instead.
1527 *
1528 * The read of PG_waiters has to be after (or concurrently with) PG_locked
Ethon Paulffceeb62020-06-04 16:49:22 -07001529 * being cleared, but a memory barrier should be unnecessary since it is
Linus Torvaldsb91e1302016-12-27 11:40:38 -08001530 * in the same byte as PG_locked.
1531 */
1532static inline bool clear_bit_unlock_is_negative_byte(long nr, volatile void *mem)
1533{
1534 clear_bit_unlock(nr, mem);
1535 /* smp_mb__after_atomic(); */
Olof Johansson98473f92016-12-29 14:16:07 -08001536 return test_bit(PG_waiters, mem);
Linus Torvaldsb91e1302016-12-27 11:40:38 -08001537}
1538
1539#endif
1540
David Howells385e1ca5f2009-04-03 16:42:39 +01001541/**
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001542 * folio_unlock - Unlock a locked folio.
1543 * @folio: The folio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 *
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001545 * Unlocks the folio and wakes up any thread sleeping on the page lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 *
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001547 * Context: May be called from interrupt or process context. May not be
1548 * called from NMI context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 */
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001550void folio_unlock(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001552 /* Bit 7 allows x86 to check the byte's sign bit */
Linus Torvaldsb91e1302016-12-27 11:40:38 -08001553 BUILD_BUG_ON(PG_waiters != 7);
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001554 BUILD_BUG_ON(PG_locked > 7);
1555 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
1556 if (clear_bit_unlock_is_negative_byte(PG_locked, folio_flags(folio, 0)))
Matthew Wilcox (Oracle)6974d7c2021-01-15 17:14:48 -05001557 folio_wake_bit(folio, PG_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
Matthew Wilcox (Oracle)4e136422020-12-07 15:44:35 -05001559EXPORT_SYMBOL(folio_unlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Randy Dunlap485bb992006-06-23 02:03:49 -07001561/**
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001562 * folio_end_private_2 - Clear PG_private_2 and wake any waiters.
1563 * @folio: The folio.
David Howells73e10de2020-02-10 10:00:21 +00001564 *
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001565 * Clear the PG_private_2 bit on a folio and wake up any sleepers waiting for
1566 * it. The folio reference held for PG_private_2 being set is released.
David Howells73e10de2020-02-10 10:00:21 +00001567 *
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001568 * This is, for example, used when a netfs folio is being written to a local
1569 * disk cache, thereby allowing writes to the cache for the same folio to be
David Howells73e10de2020-02-10 10:00:21 +00001570 * serialised.
1571 */
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001572void folio_end_private_2(struct folio *folio)
David Howells73e10de2020-02-10 10:00:21 +00001573{
Matthew Wilcox (Oracle)6974d7c2021-01-15 17:14:48 -05001574 VM_BUG_ON_FOLIO(!folio_test_private_2(folio), folio);
1575 clear_bit_unlock(PG_private_2, folio_flags(folio, 0));
1576 folio_wake_bit(folio, PG_private_2);
1577 folio_put(folio);
David Howells73e10de2020-02-10 10:00:21 +00001578}
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001579EXPORT_SYMBOL(folio_end_private_2);
David Howells73e10de2020-02-10 10:00:21 +00001580
1581/**
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001582 * folio_wait_private_2 - Wait for PG_private_2 to be cleared on a folio.
1583 * @folio: The folio to wait on.
David Howells73e10de2020-02-10 10:00:21 +00001584 *
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001585 * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio.
David Howells73e10de2020-02-10 10:00:21 +00001586 */
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001587void folio_wait_private_2(struct folio *folio)
David Howells73e10de2020-02-10 10:00:21 +00001588{
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001589 while (folio_test_private_2(folio))
1590 folio_wait_bit(folio, PG_private_2);
David Howells73e10de2020-02-10 10:00:21 +00001591}
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001592EXPORT_SYMBOL(folio_wait_private_2);
David Howells73e10de2020-02-10 10:00:21 +00001593
1594/**
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001595 * folio_wait_private_2_killable - Wait for PG_private_2 to be cleared on a folio.
1596 * @folio: The folio to wait on.
David Howells73e10de2020-02-10 10:00:21 +00001597 *
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001598 * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio or until a
David Howells73e10de2020-02-10 10:00:21 +00001599 * fatal signal is received by the calling task.
1600 *
1601 * Return:
1602 * - 0 if successful.
1603 * - -EINTR if a fatal signal was encountered.
1604 */
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001605int folio_wait_private_2_killable(struct folio *folio)
David Howells73e10de2020-02-10 10:00:21 +00001606{
1607 int ret = 0;
1608
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001609 while (folio_test_private_2(folio)) {
1610 ret = folio_wait_bit_killable(folio, PG_private_2);
David Howells73e10de2020-02-10 10:00:21 +00001611 if (ret < 0)
1612 break;
1613 }
1614
1615 return ret;
1616}
Matthew Wilcox (Oracle)b47393f2021-04-22 22:58:32 -04001617EXPORT_SYMBOL(folio_wait_private_2_killable);
David Howells73e10de2020-02-10 10:00:21 +00001618
1619/**
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001620 * folio_end_writeback - End writeback against a folio.
1621 * @folio: The folio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 */
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001623void folio_end_writeback(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Mel Gorman888cf2d2014-06-04 16:10:34 -07001625 /*
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001626 * folio_test_clear_reclaim() could be used here but it is an
1627 * atomic operation and overkill in this particular case. Failing
1628 * to shuffle a folio marked for immediate reclaim is too mild
1629 * a gain to justify taking an atomic operation penalty at the
1630 * end of every folio writeback.
Mel Gorman888cf2d2014-06-04 16:10:34 -07001631 */
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001632 if (folio_test_reclaim(folio)) {
1633 folio_clear_reclaim(folio);
Matthew Wilcox (Oracle)575ced12020-12-08 01:25:39 -05001634 folio_rotate_reclaimable(folio);
Mel Gorman888cf2d2014-06-04 16:10:34 -07001635 }
Miklos Szerediac6aadb2008-04-28 02:12:38 -07001636
Hugh Dickins073861e2020-11-24 08:46:43 -08001637 /*
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001638 * Writeback does not hold a folio reference of its own, relying
Hugh Dickins073861e2020-11-24 08:46:43 -08001639 * on truncation to wait for the clearing of PG_writeback.
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001640 * But here we must make sure that the folio is not freed and
1641 * reused before the folio_wake().
Hugh Dickins073861e2020-11-24 08:46:43 -08001642 */
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001643 folio_get(folio);
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05001644 if (!__folio_end_writeback(folio))
Miklos Szerediac6aadb2008-04-28 02:12:38 -07001645 BUG();
1646
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001647 smp_mb__after_atomic();
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001648 folio_wake(folio, PG_writeback);
Linus Torvalds512b79312021-11-06 14:08:17 -07001649 acct_reclaim_writeback(folio);
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001650 folio_put(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
Matthew Wilcox (Oracle)4268b482021-03-03 15:21:55 -05001652EXPORT_SYMBOL(folio_end_writeback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Matthew Wilcox57d99842014-06-04 16:07:45 -07001654/*
1655 * After completing I/O on a page, call this routine to update the page
1656 * flags appropriately
1657 */
Jens Axboec11f0c02016-08-05 08:11:04 -06001658void page_endio(struct page *page, bool is_write, int err)
Matthew Wilcox57d99842014-06-04 16:07:45 -07001659{
Jens Axboec11f0c02016-08-05 08:11:04 -06001660 if (!is_write) {
Matthew Wilcox57d99842014-06-04 16:07:45 -07001661 if (!err) {
1662 SetPageUptodate(page);
1663 } else {
1664 ClearPageUptodate(page);
1665 SetPageError(page);
1666 }
1667 unlock_page(page);
Mike Christieabf54542016-08-04 14:23:34 -06001668 } else {
Matthew Wilcox57d99842014-06-04 16:07:45 -07001669 if (err) {
Minchan Kimdd8416c2017-02-24 14:59:59 -08001670 struct address_space *mapping;
1671
Matthew Wilcox57d99842014-06-04 16:07:45 -07001672 SetPageError(page);
Minchan Kimdd8416c2017-02-24 14:59:59 -08001673 mapping = page_mapping(page);
1674 if (mapping)
1675 mapping_set_error(mapping, err);
Matthew Wilcox57d99842014-06-04 16:07:45 -07001676 }
1677 end_page_writeback(page);
1678 }
1679}
1680EXPORT_SYMBOL_GPL(page_endio);
1681
Randy Dunlap485bb992006-06-23 02:03:49 -07001682/**
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05001683 * __folio_lock - Get a lock on the folio, assuming we need to sleep to get it.
1684 * @folio: The folio to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05001686void __folio_lock(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001688 folio_wait_bit_common(folio, PG_locked, TASK_UNINTERRUPTIBLE,
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001689 EXCLUSIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05001691EXPORT_SYMBOL(__folio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Matthew Wilcox (Oracle)af7f29d2020-12-08 00:07:31 -05001693int __folio_lock_killable(struct folio *folio)
Matthew Wilcox2687a352007-12-06 11:18:49 -05001694{
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05001695 return folio_wait_bit_common(folio, PG_locked, TASK_KILLABLE,
Hugh Dickins9a1ea432018-12-28 00:36:14 -08001696 EXCLUSIVE);
Matthew Wilcox2687a352007-12-06 11:18:49 -05001697}
Matthew Wilcox (Oracle)af7f29d2020-12-08 00:07:31 -05001698EXPORT_SYMBOL_GPL(__folio_lock_killable);
Matthew Wilcox2687a352007-12-06 11:18:49 -05001699
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05001700static int __folio_lock_async(struct folio *folio, struct wait_page_queue *wait)
Jens Axboedd3e6d52020-05-22 09:12:09 -06001701{
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001702 struct wait_queue_head *q = folio_waitqueue(folio);
Matthew Wilcox (Oracle)f32b5dd2021-02-24 12:02:09 -08001703 int ret = 0;
1704
Matthew Wilcox (Oracle)df4d4f122021-01-16 11:22:14 -05001705 wait->folio = folio;
Matthew Wilcox (Oracle)f32b5dd2021-02-24 12:02:09 -08001706 wait->bit_nr = PG_locked;
1707
1708 spin_lock_irq(&q->lock);
1709 __add_wait_queue_entry_tail(q, &wait->wait);
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05001710 folio_set_waiters(folio);
1711 ret = !folio_trylock(folio);
Matthew Wilcox (Oracle)f32b5dd2021-02-24 12:02:09 -08001712 /*
1713 * If we were successful now, we know we're still on the
1714 * waitqueue as we're still under the lock. This means it's
1715 * safe to remove and return success, we know the callback
1716 * isn't going to trigger.
1717 */
1718 if (!ret)
1719 __remove_wait_queue(q, &wait->wait);
1720 else
1721 ret = -EIOCBQUEUED;
1722 spin_unlock_irq(&q->lock);
1723 return ret;
Jens Axboedd3e6d52020-05-22 09:12:09 -06001724}
1725
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001726/*
1727 * Return values:
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001728 * true - folio is locked; mmap_lock is still held.
1729 * false - folio is not locked.
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001730 * mmap_lock has been released (mmap_read_unlock(), unless flags had both
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001731 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001732 * which case mmap_lock is still held.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001733 *
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001734 * If neither ALLOW_RETRY nor KILLABLE are set, will always return true
1735 * with the folio locked and the mmap_lock unperturbed.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001736 */
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001737bool __folio_lock_or_retry(struct folio *folio, struct mm_struct *mm,
Michel Lespinassed065bd82010-10-26 14:21:57 -07001738 unsigned int flags)
1739{
Peter Xu4064b982020-04-01 21:08:45 -07001740 if (fault_flag_allow_retry_first(flags)) {
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -07001741 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001742 * CAUTION! In this case, mmap_lock is not released
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -07001743 * even though return 0.
1744 */
1745 if (flags & FAULT_FLAG_RETRY_NOWAIT)
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001746 return false;
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -07001747
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001748 mmap_read_unlock(mm);
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -07001749 if (flags & FAULT_FLAG_KILLABLE)
Matthew Wilcox (Oracle)6baa8d62021-03-04 10:21:02 -05001750 folio_wait_locked_killable(folio);
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -07001751 else
Matthew Wilcox (Oracle)6baa8d62021-03-04 10:21:02 -05001752 folio_wait_locked(folio);
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001753 return false;
Michel Lespinassed065bd82010-10-26 14:21:57 -07001754 }
Hailong Liu800bca72020-12-14 19:05:02 -08001755 if (flags & FAULT_FLAG_KILLABLE) {
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001756 bool ret;
Hailong Liu800bca72020-12-14 19:05:02 -08001757
Matthew Wilcox (Oracle)af7f29d2020-12-08 00:07:31 -05001758 ret = __folio_lock_killable(folio);
Hailong Liu800bca72020-12-14 19:05:02 -08001759 if (ret) {
1760 mmap_read_unlock(mm);
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001761 return false;
Hailong Liu800bca72020-12-14 19:05:02 -08001762 }
1763 } else {
Matthew Wilcox (Oracle)af7f29d2020-12-08 00:07:31 -05001764 __folio_lock(folio);
Hailong Liu800bca72020-12-14 19:05:02 -08001765 }
Hailong Liu800bca72020-12-14 19:05:02 -08001766
Matthew Wilcox (Oracle)9138e472021-03-18 21:39:45 -04001767 return true;
Michel Lespinassed065bd82010-10-26 14:21:57 -07001768}
1769
Randy Dunlap485bb992006-06-23 02:03:49 -07001770/**
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001771 * page_cache_next_miss() - Find the next gap in the page cache.
1772 * @mapping: Mapping.
1773 * @index: Index.
1774 * @max_scan: Maximum range to search.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001775 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001776 * Search the range [index, min(index + max_scan - 1, ULONG_MAX)] for the
1777 * gap with the lowest index.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001778 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001779 * This function may be called under the rcu_read_lock. However, this will
1780 * not atomically search a snapshot of the cache at a single point in time.
1781 * For example, if a gap is created at index 5, then subsequently a gap is
1782 * created at index 10, page_cache_next_miss covering both indices may
1783 * return 10 if called under the rcu_read_lock.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001784 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001785 * Return: The index of the gap if found, otherwise an index outside the
1786 * range specified (in which case 'return - index >= max_scan' will be true).
1787 * In the rare case of index wrap-around, 0 will be returned.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001788 */
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001789pgoff_t page_cache_next_miss(struct address_space *mapping,
Johannes Weinere7b563b2014-04-03 14:47:44 -07001790 pgoff_t index, unsigned long max_scan)
1791{
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001792 XA_STATE(xas, &mapping->i_pages, index);
Johannes Weinere7b563b2014-04-03 14:47:44 -07001793
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001794 while (max_scan--) {
1795 void *entry = xas_next(&xas);
1796 if (!entry || xa_is_value(entry))
Johannes Weinere7b563b2014-04-03 14:47:44 -07001797 break;
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001798 if (xas.xa_index == 0)
Johannes Weinere7b563b2014-04-03 14:47:44 -07001799 break;
1800 }
1801
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001802 return xas.xa_index;
Johannes Weinere7b563b2014-04-03 14:47:44 -07001803}
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001804EXPORT_SYMBOL(page_cache_next_miss);
Johannes Weinere7b563b2014-04-03 14:47:44 -07001805
1806/**
Laurent Dufour2346a562019-05-13 17:21:29 -07001807 * page_cache_prev_miss() - Find the previous gap in the page cache.
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001808 * @mapping: Mapping.
1809 * @index: Index.
1810 * @max_scan: Maximum range to search.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001811 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001812 * Search the range [max(index - max_scan + 1, 0), index] for the
1813 * gap with the highest index.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001814 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001815 * This function may be called under the rcu_read_lock. However, this will
1816 * not atomically search a snapshot of the cache at a single point in time.
1817 * For example, if a gap is created at index 10, then subsequently a gap is
1818 * created at index 5, page_cache_prev_miss() covering both indices may
1819 * return 5 if called under the rcu_read_lock.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001820 *
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001821 * Return: The index of the gap if found, otherwise an index outside the
1822 * range specified (in which case 'index - return >= max_scan' will be true).
1823 * In the rare case of wrap-around, ULONG_MAX will be returned.
Johannes Weinere7b563b2014-04-03 14:47:44 -07001824 */
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001825pgoff_t page_cache_prev_miss(struct address_space *mapping,
Johannes Weinere7b563b2014-04-03 14:47:44 -07001826 pgoff_t index, unsigned long max_scan)
1827{
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001828 XA_STATE(xas, &mapping->i_pages, index);
Johannes Weinere7b563b2014-04-03 14:47:44 -07001829
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001830 while (max_scan--) {
1831 void *entry = xas_prev(&xas);
1832 if (!entry || xa_is_value(entry))
Johannes Weinere7b563b2014-04-03 14:47:44 -07001833 break;
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001834 if (xas.xa_index == ULONG_MAX)
Johannes Weinere7b563b2014-04-03 14:47:44 -07001835 break;
1836 }
1837
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001838 return xas.xa_index;
Johannes Weinere7b563b2014-04-03 14:47:44 -07001839}
Matthew Wilcox0d3f9292017-11-21 14:07:06 -05001840EXPORT_SYMBOL(page_cache_prev_miss);
Johannes Weinere7b563b2014-04-03 14:47:44 -07001841
Matthew Wilcox (Oracle)44835d22021-02-25 17:15:36 -08001842/*
Matthew Wilcox (Oracle)020853b2021-05-10 16:33:22 -04001843 * Lockless page cache protocol:
1844 * On the lookup side:
1845 * 1. Load the folio from i_pages
1846 * 2. Increment the refcount if it's not zero
1847 * 3. If the folio is not found by xas_reload(), put the refcount and retry
1848 *
1849 * On the removal side:
1850 * A. Freeze the page (by zeroing the refcount if nobody else has a reference)
1851 * B. Remove the page from i_pages
1852 * C. Return the page to the page allocator
1853 *
1854 * This means that any page may have its reference count temporarily
1855 * increased by a speculative page cache (or fast GUP) lookup as it can
1856 * be allocated by another user before the RCU grace period expires.
1857 * Because the refcount temporarily acquired here may end up being the
1858 * last refcount on the page, any page allocation must be freeable by
1859 * folio_put().
1860 */
1861
1862/*
Matthew Wilcox (Oracle)bc5a3012021-02-25 17:15:40 -08001863 * mapping_get_entry - Get a page cache entry.
Randy Dunlap485bb992006-06-23 02:03:49 -07001864 * @mapping: the address_space to search
Matthew Wilcox (Oracle)a6de4b42020-10-13 16:51:34 -07001865 * @index: The page cache index.
Randy Dunlap485bb992006-06-23 02:03:49 -07001866 *
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001867 * Looks up the page cache entry at @mapping & @index. If it is a folio,
1868 * it is returned with an increased refcount. If it is a shadow entry
1869 * of a previously evicted folio, or a swap entry from shmem/tmpfs,
1870 * it is returned without further action.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001871 *
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001872 * Return: The folio, swap or shadow entry, %NULL if nothing is found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 */
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001874static void *mapping_get_entry(struct address_space *mapping, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Matthew Wilcox (Oracle)a6de4b42020-10-13 16:51:34 -07001876 XA_STATE(xas, &mapping->i_pages, index);
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001877 struct folio *folio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Nick Piggina60637c2008-07-25 19:45:31 -07001879 rcu_read_lock();
1880repeat:
Matthew Wilcox4c7472c2018-05-16 16:12:50 -04001881 xas_reset(&xas);
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001882 folio = xas_load(&xas);
1883 if (xas_retry(&xas, folio))
Matthew Wilcox4c7472c2018-05-16 16:12:50 -04001884 goto repeat;
1885 /*
1886 * A shadow entry of a recently evicted page, or a swap entry from
1887 * shmem/tmpfs. Return it without attempting to raise page count.
1888 */
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001889 if (!folio || xa_is_value(folio))
Matthew Wilcox4c7472c2018-05-16 16:12:50 -04001890 goto out;
Kirill A. Shutemov83929372016-07-26 15:26:04 -07001891
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001892 if (!folio_try_get_rcu(folio))
Matthew Wilcox4c7472c2018-05-16 16:12:50 -04001893 goto repeat;
Nick Piggina60637c2008-07-25 19:45:31 -07001894
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001895 if (unlikely(folio != xas_reload(&xas))) {
1896 folio_put(folio);
Matthew Wilcox4c7472c2018-05-16 16:12:50 -04001897 goto repeat;
Nick Piggina60637c2008-07-25 19:45:31 -07001898 }
Nick Piggin27d20fd2010-11-11 14:05:19 -08001899out:
Nick Piggina60637c2008-07-25 19:45:31 -07001900 rcu_read_unlock();
1901
Matthew Wilcox (Oracle)bca65ee2020-12-15 23:22:38 -05001902 return folio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Randy Dunlap485bb992006-06-23 02:03:49 -07001905/**
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001906 * __filemap_get_folio - Find and get a reference to a folio.
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001907 * @mapping: The address_space to search.
1908 * @index: The page index.
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001909 * @fgp_flags: %FGP flags modify how the folio is returned.
1910 * @gfp: Memory allocation flags to use if %FGP_CREAT is specified.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001911 *
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001912 * Looks up the page cache entry at @mapping & @index.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001913 *
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001914 * @fgp_flags can be zero or more of these flags:
Johannes Weiner0cd61442014-04-03 14:47:46 -07001915 *
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001916 * * %FGP_ACCESSED - The folio will be marked accessed.
1917 * * %FGP_LOCK - The folio is returned locked.
Matthew Wilcox (Oracle)44835d22021-02-25 17:15:36 -08001918 * * %FGP_ENTRY - If there is a shadow / swap / DAX entry, return it
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001919 * instead of allocating a new folio to replace it.
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001920 * * %FGP_CREAT - If no page is present then a new page is allocated using
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001921 * @gfp and added to the page cache and the VM's LRU list.
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001922 * The page is returned locked and with an increased refcount.
1923 * * %FGP_FOR_MMAP - The caller wants to do its own locking dance if the
1924 * page is already in cache. If the page was allocated, unlock it before
1925 * returning so the caller can do the same dance.
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001926 * * %FGP_WRITE - The page will be written to by the caller.
1927 * * %FGP_NOFS - __GFP_FS will get cleared in gfp.
1928 * * %FGP_NOWAIT - Don't get blocked by page lock.
Matthew Wilcox (Oracle)b27652d92020-12-24 12:55:56 -05001929 * * %FGP_STABLE - Wait for the folio to be stable (finished writeback)
mchehab@s-opensource.com0e056eb2017-03-30 17:11:36 -03001930 *
Matthew Wilcox (Oracle)2294b322020-04-01 21:05:07 -07001931 * If %FGP_LOCK or %FGP_CREAT are specified then the function may sleep even
1932 * if the %GFP flags specified for %FGP_CREAT are atomic.
Mel Gorman2457aec2014-06-04 16:10:31 -07001933 *
1934 * If there is a page cache page, it is returned with an increased refcount.
Mike Rapoporta862f682019-03-05 15:48:42 -08001935 *
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001936 * Return: The found folio or %NULL otherwise.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001937 */
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001938struct folio *__filemap_get_folio(struct address_space *mapping, pgoff_t index,
1939 int fgp_flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001941 struct folio *folio;
Mel Gorman2457aec2014-06-04 16:10:31 -07001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943repeat:
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001944 folio = mapping_get_entry(mapping, index);
1945 if (xa_is_value(folio)) {
Matthew Wilcox (Oracle)44835d22021-02-25 17:15:36 -08001946 if (fgp_flags & FGP_ENTRY)
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001947 return folio;
1948 folio = NULL;
Matthew Wilcox (Oracle)44835d22021-02-25 17:15:36 -08001949 }
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001950 if (!folio)
Mel Gorman2457aec2014-06-04 16:10:31 -07001951 goto no_page;
1952
1953 if (fgp_flags & FGP_LOCK) {
1954 if (fgp_flags & FGP_NOWAIT) {
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001955 if (!folio_trylock(folio)) {
1956 folio_put(folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07001957 return NULL;
1958 }
1959 } else {
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001960 folio_lock(folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07001961 }
1962
1963 /* Has the page been truncated? */
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001964 if (unlikely(folio->mapping != mapping)) {
1965 folio_unlock(folio);
1966 folio_put(folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07001967 goto repeat;
1968 }
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001969 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07001970 }
1971
Kirill Tkhaic16eb002018-12-28 00:37:35 -08001972 if (fgp_flags & FGP_ACCESSED)
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001973 folio_mark_accessed(folio);
Yang Shib9306a72020-08-06 23:19:55 -07001974 else if (fgp_flags & FGP_WRITE) {
1975 /* Clear idle flag for buffer write */
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001976 if (folio_test_idle(folio))
1977 folio_clear_idle(folio);
Yang Shib9306a72020-08-06 23:19:55 -07001978 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001979
Matthew Wilcox (Oracle)b27652d92020-12-24 12:55:56 -05001980 if (fgp_flags & FGP_STABLE)
1981 folio_wait_stable(folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07001982no_page:
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001983 if (!folio && (fgp_flags & FGP_CREAT)) {
Mel Gorman2457aec2014-06-04 16:10:31 -07001984 int err;
Christoph Hellwigf56753a2020-09-24 08:51:40 +02001985 if ((fgp_flags & FGP_WRITE) && mapping_can_writeback(mapping))
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001986 gfp |= __GFP_WRITE;
Michal Hocko45f87de2014-12-29 20:30:35 +01001987 if (fgp_flags & FGP_NOFS)
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001988 gfp &= ~__GFP_FS;
Mel Gorman2457aec2014-06-04 16:10:31 -07001989
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001990 folio = filemap_alloc_folio(gfp, 0);
1991 if (!folio)
Nick Piggineb2be182007-10-16 01:24:57 -07001992 return NULL;
Mel Gorman2457aec2014-06-04 16:10:31 -07001993
Josef Bacika75d4c32019-03-13 11:44:14 -07001994 if (WARN_ON_ONCE(!(fgp_flags & (FGP_LOCK | FGP_FOR_MMAP))))
Mel Gorman2457aec2014-06-04 16:10:31 -07001995 fgp_flags |= FGP_LOCK;
1996
Hugh Dickinseb39d612014-08-06 16:06:43 -07001997 /* Init accessed so avoid atomic mark_page_accessed later */
Mel Gorman2457aec2014-06-04 16:10:31 -07001998 if (fgp_flags & FGP_ACCESSED)
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05001999 __folio_set_referenced(folio);
Mel Gorman2457aec2014-06-04 16:10:31 -07002000
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002001 err = filemap_add_folio(mapping, folio, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07002002 if (unlikely(err)) {
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002003 folio_put(folio);
2004 folio = NULL;
Nick Piggineb2be182007-10-16 01:24:57 -07002005 if (err == -EEXIST)
2006 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
Josef Bacika75d4c32019-03-13 11:44:14 -07002008
2009 /*
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002010 * filemap_add_folio locks the page, and for mmap
2011 * we expect an unlocked page.
Josef Bacika75d4c32019-03-13 11:44:14 -07002012 */
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002013 if (folio && (fgp_flags & FGP_FOR_MMAP))
2014 folio_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
Mel Gorman2457aec2014-06-04 16:10:31 -07002016
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002017 return folio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
Matthew Wilcox (Oracle)3f0c6a02021-03-08 11:45:35 -05002019EXPORT_SYMBOL(__filemap_get_folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002021static inline struct folio *find_get_entry(struct xa_state *xas, pgoff_t max,
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002022 xa_mark_t mark)
2023{
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002024 struct folio *folio;
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002025
2026retry:
2027 if (mark == XA_PRESENT)
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002028 folio = xas_find(xas, max);
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002029 else
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002030 folio = xas_find_marked(xas, max, mark);
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002031
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002032 if (xas_retry(xas, folio))
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002033 goto retry;
2034 /*
2035 * A shadow entry of a recently evicted page, a swap
2036 * entry from shmem/tmpfs or a DAX entry. Return it
2037 * without attempting to raise page count.
2038 */
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002039 if (!folio || xa_is_value(folio))
2040 return folio;
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002041
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002042 if (!folio_try_get_rcu(folio))
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002043 goto reset;
2044
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002045 if (unlikely(folio != xas_reload(xas))) {
2046 folio_put(folio);
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002047 goto reset;
2048 }
2049
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002050 return folio;
Matthew Wilcox (Oracle)c7bad632021-02-25 17:15:44 -08002051reset:
2052 xas_reset(xas);
2053 goto retry;
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07002057 * find_get_entries - gang pagecache lookup
2058 * @mapping: The address_space to search
2059 * @start: The starting page cache index
Matthew Wilcox (Oracle)ca122fe42021-02-25 17:16:00 -08002060 * @end: The final page index (inclusive).
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002061 * @fbatch: Where the resulting entries are placed.
Johannes Weiner0cd61442014-04-03 14:47:46 -07002062 * @indices: The cache indices corresponding to the entries in @entries
2063 *
Matthew Wilcox (Oracle)cf2039a2021-02-25 17:16:11 -08002064 * find_get_entries() will search for and return a batch of entries in
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002065 * the mapping. The entries are placed in @fbatch. find_get_entries()
2066 * takes a reference on any actual folios it returns.
Johannes Weiner0cd61442014-04-03 14:47:46 -07002067 *
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002068 * The entries have ascending indexes. The indices may not be consecutive
2069 * due to not-present entries or large folios.
Johannes Weiner0cd61442014-04-03 14:47:46 -07002070 *
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002071 * Any shadow entries of evicted folios, or swap entries from
Johannes Weiner139b6a62014-05-06 12:50:05 -07002072 * shmem/tmpfs, are included in the returned array.
Johannes Weiner0cd61442014-04-03 14:47:46 -07002073 *
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002074 * Return: The number of entries which were found.
Johannes Weiner0cd61442014-04-03 14:47:46 -07002075 */
Matthew Wilcox (Oracle)ca122fe42021-02-25 17:16:00 -08002076unsigned find_get_entries(struct address_space *mapping, pgoff_t start,
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002077 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
Johannes Weiner0cd61442014-04-03 14:47:46 -07002078{
Matthew Wilcoxf280bf02018-05-16 17:20:45 -04002079 XA_STATE(xas, &mapping->i_pages, start);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002080 struct folio *folio;
Johannes Weiner0cd61442014-04-03 14:47:46 -07002081
2082 rcu_read_lock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002083 while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) {
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002084 indices[fbatch->nr] = xas.xa_index;
2085 if (!folio_batch_add(fbatch, folio))
Johannes Weiner0cd61442014-04-03 14:47:46 -07002086 break;
2087 }
2088 rcu_read_unlock();
Matthew Wilcox (Oracle)cf2039a2021-02-25 17:16:11 -08002089
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -04002090 return folio_batch_count(fbatch);
Johannes Weiner0cd61442014-04-03 14:47:46 -07002091}
2092
2093/**
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002094 * find_lock_entries - Find a batch of pagecache entries.
2095 * @mapping: The address_space to search.
2096 * @start: The starting page cache index.
2097 * @end: The final page index (inclusive).
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -05002098 * @fbatch: Where the resulting entries are placed.
2099 * @indices: The cache indices of the entries in @fbatch.
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002100 *
2101 * find_lock_entries() will return a batch of entries from @mapping.
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002102 * Swap, shadow and DAX entries are included. Folios are returned
2103 * locked and with an incremented refcount. Folios which are locked
2104 * by somebody else or under writeback are skipped. Folios which are
2105 * partially outside the range are not returned.
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002106 *
2107 * The entries have ascending indexes. The indices may not be consecutive
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002108 * due to not-present entries, large folios, folios which could not be
2109 * locked or folios under writeback.
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002110 *
2111 * Return: The number of entries which were found.
2112 */
2113unsigned find_lock_entries(struct address_space *mapping, pgoff_t start,
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -05002114 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002115{
2116 XA_STATE(xas, &mapping->i_pages, start);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002117 struct folio *folio;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002118
2119 rcu_read_lock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002120 while ((folio = find_get_entry(&xas, end, XA_PRESENT))) {
2121 if (!xa_is_value(folio)) {
2122 if (folio->index < start)
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002123 goto put;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002124 if (folio->index + folio_nr_pages(folio) - 1 > end)
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002125 goto put;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002126 if (!folio_trylock(folio))
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002127 goto put;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002128 if (folio->mapping != mapping ||
2129 folio_test_writeback(folio))
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002130 goto unlock;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002131 VM_BUG_ON_FOLIO(!folio_contains(folio, xas.xa_index),
2132 folio);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002133 }
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -05002134 indices[fbatch->nr] = xas.xa_index;
2135 if (!folio_batch_add(fbatch, folio))
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002136 break;
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002137 continue;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002138unlock:
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002139 folio_unlock(folio);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002140put:
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002141 folio_put(folio);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002142 }
2143 rcu_read_unlock();
2144
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -05002145 return folio_batch_count(fbatch);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002146}
2147
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002148static inline
2149bool folio_more_pages(struct folio *folio, pgoff_t index, pgoff_t max)
2150{
2151 if (!folio_test_large(folio) || folio_test_hugetlb(folio))
2152 return false;
2153 if (index >= max)
2154 return false;
2155 return index < folio->index + folio_nr_pages(folio) - 1;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -08002156}
2157
2158/**
Jan Karab947cee2017-09-06 16:21:21 -07002159 * find_get_pages_range - gang pagecache lookup
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 * @mapping: The address_space to search
2161 * @start: The starting page index
Jan Karab947cee2017-09-06 16:21:21 -07002162 * @end: The final page index (inclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 * @nr_pages: The maximum number of pages
2164 * @pages: Where the resulting pages are placed
2165 *
Jan Karab947cee2017-09-06 16:21:21 -07002166 * find_get_pages_range() will search for and return a group of up to @nr_pages
2167 * pages in the mapping starting at index @start and up to index @end
2168 * (inclusive). The pages are placed at @pages. find_get_pages_range() takes
2169 * a reference against the returned pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 *
2171 * The search returns a group of mapping-contiguous pages with ascending
2172 * indexes. There may be holes in the indices due to not-present pages.
Jan Karad72dc8a2017-09-06 16:21:18 -07002173 * We also update @start to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 *
Mike Rapoporta862f682019-03-05 15:48:42 -08002175 * Return: the number of pages which were found. If this number is
2176 * smaller than @nr_pages, the end of specified range has been
Jan Karab947cee2017-09-06 16:21:21 -07002177 * reached.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 */
Jan Karab947cee2017-09-06 16:21:21 -07002179unsigned find_get_pages_range(struct address_space *mapping, pgoff_t *start,
2180 pgoff_t end, unsigned int nr_pages,
2181 struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
Matthew Wilcoxfd1b3ce2018-05-16 17:38:56 -04002183 XA_STATE(xas, &mapping->i_pages, *start);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002184 struct folio *folio;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07002185 unsigned ret = 0;
2186
2187 if (unlikely(!nr_pages))
2188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Nick Piggina60637c2008-07-25 19:45:31 -07002190 rcu_read_lock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002191 while ((folio = find_get_entry(&xas, end, XA_PRESENT))) {
Matthew Wilcoxfd1b3ce2018-05-16 17:38:56 -04002192 /* Skip over shadow, swap and DAX entries */
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002193 if (xa_is_value(folio))
Hugh Dickins8079b1c2011-08-03 16:21:28 -07002194 continue;
Nick Piggina60637c2008-07-25 19:45:31 -07002195
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002196again:
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002197 pages[ret] = folio_file_page(folio, xas.xa_index);
Jan Karab947cee2017-09-06 16:21:21 -07002198 if (++ret == nr_pages) {
Yu Zhao5d3ee422019-03-05 15:49:17 -08002199 *start = xas.xa_index + 1;
Jan Karab947cee2017-09-06 16:21:21 -07002200 goto out;
2201 }
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002202 if (folio_more_pages(folio, xas.xa_index, end)) {
2203 xas.xa_index++;
2204 folio_ref_inc(folio);
2205 goto again;
2206 }
Nick Piggina60637c2008-07-25 19:45:31 -07002207 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07002208
Jan Karab947cee2017-09-06 16:21:21 -07002209 /*
2210 * We come here when there is no page beyond @end. We take care to not
2211 * overflow the index @start as it confuses some of the callers. This
Matthew Wilcoxfd1b3ce2018-05-16 17:38:56 -04002212 * breaks the iteration when there is a page at index -1 but that is
Jan Karab947cee2017-09-06 16:21:21 -07002213 * already broken anyway.
2214 */
2215 if (end == (pgoff_t)-1)
2216 *start = (pgoff_t)-1;
2217 else
2218 *start = end + 1;
2219out:
Nick Piggina60637c2008-07-25 19:45:31 -07002220 rcu_read_unlock();
Jan Karad72dc8a2017-09-06 16:21:18 -07002221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return ret;
2223}
2224
Jens Axboeebf43502006-04-27 08:46:01 +02002225/**
2226 * find_get_pages_contig - gang contiguous pagecache lookup
2227 * @mapping: The address_space to search
2228 * @index: The starting page index
2229 * @nr_pages: The maximum number of pages
2230 * @pages: Where the resulting pages are placed
2231 *
2232 * find_get_pages_contig() works exactly like find_get_pages(), except
2233 * that the returned number of pages are guaranteed to be contiguous.
2234 *
Mike Rapoporta862f682019-03-05 15:48:42 -08002235 * Return: the number of pages which were found.
Jens Axboeebf43502006-04-27 08:46:01 +02002236 */
2237unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
2238 unsigned int nr_pages, struct page **pages)
2239{
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002240 XA_STATE(xas, &mapping->i_pages, index);
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002241 struct folio *folio;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07002242 unsigned int ret = 0;
2243
2244 if (unlikely(!nr_pages))
2245 return 0;
Jens Axboeebf43502006-04-27 08:46:01 +02002246
Nick Piggina60637c2008-07-25 19:45:31 -07002247 rcu_read_lock();
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002248 for (folio = xas_load(&xas); folio; folio = xas_next(&xas)) {
2249 if (xas_retry(&xas, folio))
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002250 continue;
2251 /*
2252 * If the entry has been swapped out, we can stop looking.
2253 * No current caller is looking for DAX entries.
2254 */
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002255 if (xa_is_value(folio))
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07002256 break;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07002257
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002258 if (!folio_try_get_rcu(folio))
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002259 goto retry;
Nick Piggina60637c2008-07-25 19:45:31 -07002260
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002261 if (unlikely(folio != xas_reload(&xas)))
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002262 goto put_page;
Nick Piggina60637c2008-07-25 19:45:31 -07002263
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002264again:
2265 pages[ret] = folio_file_page(folio, xas.xa_index);
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07002266 if (++ret == nr_pages)
2267 break;
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002268 if (folio_more_pages(folio, xas.xa_index, ULONG_MAX)) {
2269 xas.xa_index++;
2270 folio_ref_inc(folio);
2271 goto again;
2272 }
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002273 continue;
2274put_page:
Matthew Wilcox (Oracle)e1c37722021-03-06 16:38:38 -05002275 folio_put(folio);
Matthew Wilcox3ece58a2018-05-16 18:00:33 -04002276retry:
2277 xas_reset(&xas);
Jens Axboeebf43502006-04-27 08:46:01 +02002278 }
Nick Piggina60637c2008-07-25 19:45:31 -07002279 rcu_read_unlock();
2280 return ret;
Jens Axboeebf43502006-04-27 08:46:01 +02002281}
David Howellsef71c152007-05-09 02:33:44 -07002282EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +02002283
Randy Dunlap485bb992006-06-23 02:03:49 -07002284/**
Matthew Wilcox (Oracle)c49f50d2021-02-25 17:15:25 -08002285 * find_get_pages_range_tag - Find and return head pages matching @tag.
Randy Dunlap485bb992006-06-23 02:03:49 -07002286 * @mapping: the address_space to search
2287 * @index: the starting page index
Jan Kara72b045a2017-11-15 17:34:33 -08002288 * @end: The final page index (inclusive)
Randy Dunlap485bb992006-06-23 02:03:49 -07002289 * @tag: the tag index
2290 * @nr_pages: the maximum number of pages
2291 * @pages: where the resulting pages are placed
2292 *
Matthew Wilcox (Oracle)c49f50d2021-02-25 17:15:25 -08002293 * Like find_get_pages(), except we only return head pages which are tagged
2294 * with @tag. @index is updated to the index immediately after the last
2295 * page we return, ready for the next iteration.
Mike Rapoporta862f682019-03-05 15:48:42 -08002296 *
2297 * Return: the number of pages which were found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 */
Jan Kara72b045a2017-11-15 17:34:33 -08002299unsigned find_get_pages_range_tag(struct address_space *mapping, pgoff_t *index,
Matthew Wilcoxa6906972018-05-16 18:12:54 -04002300 pgoff_t end, xa_mark_t tag, unsigned int nr_pages,
Jan Kara72b045a2017-11-15 17:34:33 -08002301 struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Matthew Wilcoxa6906972018-05-16 18:12:54 -04002303 XA_STATE(xas, &mapping->i_pages, *index);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002304 struct folio *folio;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07002305 unsigned ret = 0;
2306
2307 if (unlikely(!nr_pages))
2308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Nick Piggina60637c2008-07-25 19:45:31 -07002310 rcu_read_lock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002311 while ((folio = find_get_entry(&xas, end, tag))) {
Matthew Wilcoxa6906972018-05-16 18:12:54 -04002312 /*
2313 * Shadow entries should never be tagged, but this iteration
2314 * is lockless so there is a window for page reclaim to evict
2315 * a page we saw tagged. Skip over it.
2316 */
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002317 if (xa_is_value(folio))
Johannes Weiner139b6a62014-05-06 12:50:05 -07002318 continue;
Nick Piggina60637c2008-07-25 19:45:31 -07002319
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002320 pages[ret] = &folio->page;
Jan Kara72b045a2017-11-15 17:34:33 -08002321 if (++ret == nr_pages) {
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002322 *index = folio->index + folio_nr_pages(folio);
Jan Kara72b045a2017-11-15 17:34:33 -08002323 goto out;
2324 }
Nick Piggina60637c2008-07-25 19:45:31 -07002325 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07002326
Jan Kara72b045a2017-11-15 17:34:33 -08002327 /*
Matthew Wilcoxa6906972018-05-16 18:12:54 -04002328 * We come here when we got to @end. We take care to not overflow the
Jan Kara72b045a2017-11-15 17:34:33 -08002329 * index @index as it confuses some of the callers. This breaks the
Matthew Wilcoxa6906972018-05-16 18:12:54 -04002330 * iteration when there is a page at index -1 but that is already
2331 * broken anyway.
Jan Kara72b045a2017-11-15 17:34:33 -08002332 */
2333 if (end == (pgoff_t)-1)
2334 *index = (pgoff_t)-1;
2335 else
2336 *index = end + 1;
2337out:
Nick Piggina60637c2008-07-25 19:45:31 -07002338 rcu_read_unlock();
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 return ret;
2341}
Jan Kara72b045a2017-11-15 17:34:33 -08002342EXPORT_SYMBOL(find_get_pages_range_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Wu Fengguang76d42bd2006-06-25 05:48:43 -07002344/*
2345 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
2346 * a _large_ part of the i/o request. Imagine the worst scenario:
2347 *
2348 * ---R__________________________________________B__________
2349 * ^ reading here ^ bad block(assume 4k)
2350 *
2351 * read(R) => miss => readahead(R...B) => media error => frustrating retries
2352 * => failing the whole request => read(R) => read(R+1) =>
2353 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
2354 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
2355 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
2356 *
2357 * It is going insane. Fix it by quickly scaling down the readahead size.
2358 */
Souptick Joarder0f8e2db2020-04-01 21:04:50 -07002359static void shrink_readahead_size_eio(struct file_ra_state *ra)
Wu Fengguang76d42bd2006-06-25 05:48:43 -07002360{
Wu Fengguang76d42bd2006-06-25 05:48:43 -07002361 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -07002362}
2363
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002364/*
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002365 * filemap_get_read_batch - Get a batch of folios for read
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002366 *
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002367 * Get a batch of folios which represent a contiguous range of bytes in
2368 * the file. No exceptional entries will be returned. If @index is in
2369 * the middle of a folio, the entire folio will be returned. The last
2370 * folio in the batch may have the readahead flag set or the uptodate flag
2371 * clear so that the caller can take the appropriate action.
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002372 */
2373static void filemap_get_read_batch(struct address_space *mapping,
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002374 pgoff_t index, pgoff_t max, struct folio_batch *fbatch)
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002375{
2376 XA_STATE(xas, &mapping->i_pages, index);
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002377 struct folio *folio;
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002378
2379 rcu_read_lock();
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002380 for (folio = xas_load(&xas); folio; folio = xas_next(&xas)) {
2381 if (xas_retry(&xas, folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002382 continue;
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002383 if (xas.xa_index > max || xa_is_value(folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002384 break;
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002385 if (!folio_try_get_rcu(folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002386 goto retry;
2387
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002388 if (unlikely(folio != xas_reload(&xas)))
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002389 goto put_folio;
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002390
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002391 if (!folio_batch_add(fbatch, folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002392 break;
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002393 if (!folio_test_uptodate(folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002394 break;
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002395 if (folio_test_readahead(folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002396 break;
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04002397 xas_advance(&xas, folio->index + folio_nr_pages(folio) - 1);
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002398 continue;
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002399put_folio:
Matthew Wilcox (Oracle)bdb72932021-03-05 10:29:41 -05002400 folio_put(folio);
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002401retry:
2402 xas_reset(&xas);
2403 }
2404 rcu_read_unlock();
2405}
2406
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002407static int filemap_read_folio(struct file *file, struct address_space *mapping,
2408 struct folio *folio)
Kent Overstreet723ef242020-12-14 19:04:52 -08002409{
Kent Overstreet723ef242020-12-14 19:04:52 -08002410 int error;
2411
Kent Overstreet723ef242020-12-14 19:04:52 -08002412 /*
Matthew Wilcox (Oracle)68430302021-02-24 12:02:15 -08002413 * A previous I/O error may have been due to temporary failures,
2414 * eg. multipath errors. PG_error will be set again if readpage
2415 * fails.
Kent Overstreet723ef242020-12-14 19:04:52 -08002416 */
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002417 folio_clear_error(folio);
Kent Overstreet723ef242020-12-14 19:04:52 -08002418 /* Start the actual read. The read will unlock the page. */
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002419 error = mapping->a_ops->readpage(file, &folio->page);
Matthew Wilcox (Oracle)68430302021-02-24 12:02:15 -08002420 if (error)
2421 return error;
Kent Overstreet723ef242020-12-14 19:04:52 -08002422
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002423 error = folio_wait_locked_killable(folio);
Matthew Wilcox (Oracle)68430302021-02-24 12:02:15 -08002424 if (error)
2425 return error;
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002426 if (folio_test_uptodate(folio))
Matthew Wilcox (Oracle)aa1ec2f2021-02-24 12:02:38 -08002427 return 0;
Matthew Wilcox (Oracle)aa1ec2f2021-02-24 12:02:38 -08002428 shrink_readahead_size_eio(&file->f_ra);
2429 return -EIO;
Kent Overstreet723ef242020-12-14 19:04:52 -08002430}
2431
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002432static bool filemap_range_uptodate(struct address_space *mapping,
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002433 loff_t pos, struct iov_iter *iter, struct folio *folio)
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002434{
2435 int count;
2436
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002437 if (folio_test_uptodate(folio))
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002438 return true;
2439 /* pipes can't handle partially uptodate pages */
2440 if (iov_iter_is_pipe(iter))
2441 return false;
2442 if (!mapping->a_ops->is_partially_uptodate)
2443 return false;
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002444 if (mapping->host->i_blkbits >= folio_shift(folio))
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002445 return false;
2446
2447 count = iter->count;
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002448 if (folio_pos(folio) > pos) {
2449 count -= folio_pos(folio) - pos;
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002450 pos = 0;
2451 } else {
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002452 pos -= folio_pos(folio);
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002453 }
2454
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002455 return mapping->a_ops->is_partially_uptodate(&folio->page, pos, count);
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002456}
2457
Matthew Wilcox (Oracle)4612aee2021-02-24 12:02:22 -08002458static int filemap_update_page(struct kiocb *iocb,
2459 struct address_space *mapping, struct iov_iter *iter,
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002460 struct folio *folio)
Kent Overstreet723ef242020-12-14 19:04:52 -08002461{
Kent Overstreet723ef242020-12-14 19:04:52 -08002462 int error;
2463
Jan Kara730633f2021-01-28 19:19:45 +01002464 if (iocb->ki_flags & IOCB_NOWAIT) {
2465 if (!filemap_invalidate_trylock_shared(mapping))
Matthew Wilcox (Oracle)87d1d7b2021-02-24 12:02:25 -08002466 return -EAGAIN;
Jan Kara730633f2021-01-28 19:19:45 +01002467 } else {
2468 filemap_invalidate_lock_shared(mapping);
2469 }
2470
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05002471 if (!folio_trylock(folio)) {
Jan Kara730633f2021-01-28 19:19:45 +01002472 error = -EAGAIN;
2473 if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_NOIO))
2474 goto unlock_mapping;
Matthew Wilcox (Oracle)87d1d7b2021-02-24 12:02:25 -08002475 if (!(iocb->ki_flags & IOCB_WAITQ)) {
Jan Kara730633f2021-01-28 19:19:45 +01002476 filemap_invalidate_unlock_shared(mapping);
Matthew Wilcox (Oracle)9f2b04a2021-08-16 23:36:31 -04002477 /*
2478 * This is where we usually end up waiting for a
2479 * previously submitted readahead to finish.
2480 */
2481 folio_put_wait_locked(folio, TASK_KILLABLE);
Matthew Wilcox (Oracle)4612aee2021-02-24 12:02:22 -08002482 return AOP_TRUNCATED_PAGE;
Matthew Wilcox (Oracle)bd8a1f32021-02-24 12:02:05 -08002483 }
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05002484 error = __folio_lock_async(folio, iocb->ki_waitq);
Matthew Wilcox (Oracle)87d1d7b2021-02-24 12:02:25 -08002485 if (error)
Jan Kara730633f2021-01-28 19:19:45 +01002486 goto unlock_mapping;
Kent Overstreet723ef242020-12-14 19:04:52 -08002487 }
Kent Overstreet723ef242020-12-14 19:04:52 -08002488
Jan Kara730633f2021-01-28 19:19:45 +01002489 error = AOP_TRUNCATED_PAGE;
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05002490 if (!folio->mapping)
Jan Kara730633f2021-01-28 19:19:45 +01002491 goto unlock;
Kent Overstreet723ef242020-12-14 19:04:52 -08002492
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002493 error = 0;
Matthew Wilcox (Oracle)2fa4eeb2021-03-10 11:04:19 -05002494 if (filemap_range_uptodate(mapping, iocb->ki_pos, iter, folio))
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002495 goto unlock;
2496
2497 error = -EAGAIN;
2498 if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ))
2499 goto unlock;
2500
Matthew Wilcox (Oracle)9d427b42021-03-10 10:19:30 -05002501 error = filemap_read_folio(iocb->ki_filp, mapping, folio);
Jan Kara730633f2021-01-28 19:19:45 +01002502 goto unlock_mapping;
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002503unlock:
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05002504 folio_unlock(folio);
Jan Kara730633f2021-01-28 19:19:45 +01002505unlock_mapping:
2506 filemap_invalidate_unlock_shared(mapping);
2507 if (error == AOP_TRUNCATED_PAGE)
Matthew Wilcox (Oracle)ffdc8da2020-12-30 17:58:40 -05002508 folio_put(folio);
Matthew Wilcox (Oracle)fce70da2021-02-24 12:02:28 -08002509 return error;
Kent Overstreet723ef242020-12-14 19:04:52 -08002510}
2511
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002512static int filemap_create_folio(struct file *file,
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002513 struct address_space *mapping, pgoff_t index,
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002514 struct folio_batch *fbatch)
Kent Overstreet723ef242020-12-14 19:04:52 -08002515{
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002516 struct folio *folio;
Kent Overstreet723ef242020-12-14 19:04:52 -08002517 int error;
2518
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002519 folio = filemap_alloc_folio(mapping_gfp_mask(mapping), 0);
2520 if (!folio)
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002521 return -ENOMEM;
Kent Overstreet723ef242020-12-14 19:04:52 -08002522
Jan Kara730633f2021-01-28 19:19:45 +01002523 /*
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002524 * Protect against truncate / hole punch. Grabbing invalidate_lock
2525 * here assures we cannot instantiate and bring uptodate new
2526 * pagecache folios after evicting page cache during truncate
2527 * and before actually freeing blocks. Note that we could
2528 * release invalidate_lock after inserting the folio into
2529 * the page cache as the locked folio would then be enough to
2530 * synchronize with hole punching. But there are code paths
2531 * such as filemap_update_page() filling in partially uptodate
2532 * pages or ->readpages() that need to hold invalidate_lock
2533 * while mapping blocks for IO so let's hold the lock here as
2534 * well to keep locking rules simple.
Jan Kara730633f2021-01-28 19:19:45 +01002535 */
2536 filemap_invalidate_lock_shared(mapping);
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002537 error = filemap_add_folio(mapping, folio, index,
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002538 mapping_gfp_constraint(mapping, GFP_KERNEL));
2539 if (error == -EEXIST)
2540 error = AOP_TRUNCATED_PAGE;
2541 if (error)
2542 goto error;
2543
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002544 error = filemap_read_folio(file, mapping, folio);
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002545 if (error)
2546 goto error;
2547
Jan Kara730633f2021-01-28 19:19:45 +01002548 filemap_invalidate_unlock_shared(mapping);
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002549 folio_batch_add(fbatch, folio);
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002550 return 0;
2551error:
Jan Kara730633f2021-01-28 19:19:45 +01002552 filemap_invalidate_unlock_shared(mapping);
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002553 folio_put(folio);
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002554 return error;
Kent Overstreet723ef242020-12-14 19:04:52 -08002555}
2556
Matthew Wilcox (Oracle)5963fe02021-02-24 12:02:32 -08002557static int filemap_readahead(struct kiocb *iocb, struct file *file,
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002558 struct address_space *mapping, struct folio *folio,
Matthew Wilcox (Oracle)5963fe02021-02-24 12:02:32 -08002559 pgoff_t last_index)
2560{
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002561 DEFINE_READAHEAD(ractl, file, &file->f_ra, mapping, folio->index);
2562
Matthew Wilcox (Oracle)5963fe02021-02-24 12:02:32 -08002563 if (iocb->ki_flags & IOCB_NOIO)
2564 return -EAGAIN;
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002565 page_cache_async_ra(&ractl, folio, last_index - folio->index);
Matthew Wilcox (Oracle)5963fe02021-02-24 12:02:32 -08002566 return 0;
2567}
2568
Matthew Wilcox (Oracle)3a6bae42021-02-24 12:01:49 -08002569static int filemap_get_pages(struct kiocb *iocb, struct iov_iter *iter,
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002570 struct folio_batch *fbatch)
Kent Overstreet06c04442020-12-14 19:04:56 -08002571{
2572 struct file *filp = iocb->ki_filp;
2573 struct address_space *mapping = filp->f_mapping;
2574 struct file_ra_state *ra = &filp->f_ra;
2575 pgoff_t index = iocb->ki_pos >> PAGE_SHIFT;
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002576 pgoff_t last_index;
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002577 struct folio *folio;
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002578 int err = 0;
Kent Overstreet06c04442020-12-14 19:04:56 -08002579
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002580 last_index = DIV_ROUND_UP(iocb->ki_pos + iter->count, PAGE_SIZE);
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002581retry:
Kent Overstreet06c04442020-12-14 19:04:56 -08002582 if (fatal_signal_pending(current))
2583 return -EINTR;
2584
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002585 filemap_get_read_batch(mapping, index, last_index, fbatch);
2586 if (!folio_batch_count(fbatch)) {
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002587 if (iocb->ki_flags & IOCB_NOIO)
2588 return -EAGAIN;
2589 page_cache_sync_readahead(mapping, ra, filp, index,
2590 last_index - index);
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002591 filemap_get_read_batch(mapping, index, last_index, fbatch);
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002592 }
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002593 if (!folio_batch_count(fbatch)) {
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002594 if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_WAITQ))
2595 return -EAGAIN;
Matthew Wilcox (Oracle)a5d4ad02021-03-10 10:34:00 -05002596 err = filemap_create_folio(filp, mapping,
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002597 iocb->ki_pos >> PAGE_SHIFT, fbatch);
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002598 if (err == AOP_TRUNCATED_PAGE)
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002599 goto retry;
Matthew Wilcox (Oracle)f253e182021-02-24 12:02:18 -08002600 return err;
2601 }
Kent Overstreet06c04442020-12-14 19:04:56 -08002602
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002603 folio = fbatch->folios[folio_batch_count(fbatch) - 1];
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002604 if (folio_test_readahead(folio)) {
2605 err = filemap_readahead(iocb, filp, mapping, folio, last_index);
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002606 if (err)
2607 goto err;
2608 }
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002609 if (!folio_test_uptodate(folio)) {
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002610 if ((iocb->ki_flags & IOCB_WAITQ) &&
2611 folio_batch_count(fbatch) > 1)
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002612 iocb->ki_flags |= IOCB_NOWAIT;
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002613 err = filemap_update_page(iocb, mapping, iter, folio);
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002614 if (err)
2615 goto err;
Kent Overstreet06c04442020-12-14 19:04:56 -08002616 }
2617
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002618 return 0;
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002619err:
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002620 if (err < 0)
Matthew Wilcox (Oracle)65bca532021-03-10 14:01:22 -05002621 folio_put(folio);
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002622 if (likely(--fbatch->nr))
Matthew Wilcox (Oracle)ff993ba2021-02-24 12:01:55 -08002623 return 0;
Matthew Wilcox (Oracle)4612aee2021-02-24 12:02:22 -08002624 if (err == AOP_TRUNCATED_PAGE)
Matthew Wilcox (Oracle)2642fca2021-02-24 12:02:35 -08002625 goto retry;
2626 return err;
Kent Overstreet06c04442020-12-14 19:04:56 -08002627}
2628
Randy Dunlap485bb992006-06-23 02:03:49 -07002629/**
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002630 * filemap_read - Read data from the page cache.
2631 * @iocb: The iocb to read.
2632 * @iter: Destination for the data.
2633 * @already_read: Number of bytes already read by the caller.
Randy Dunlap485bb992006-06-23 02:03:49 -07002634 *
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002635 * Copies data from the page cache. If the data is not currently present,
2636 * uses the readahead and readpage address_space operations to fetch it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 *
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002638 * Return: Total number of bytes copied, including those already read by
2639 * the caller. If an error happens before any bytes are copied, returns
2640 * a negative error number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 */
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002642ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *iter,
2643 ssize_t already_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Christoph Hellwig47c27bc2017-08-29 16:13:18 +02002645 struct file *filp = iocb->ki_filp;
Kent Overstreet06c04442020-12-14 19:04:56 -08002646 struct file_ra_state *ra = &filp->f_ra;
Christoph Hellwig36e78912008-02-08 04:21:24 -08002647 struct address_space *mapping = filp->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 struct inode *inode = mapping->host;
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002649 struct folio_batch fbatch;
Matthew Wilcox (Oracle)ff993ba2021-02-24 12:01:55 -08002650 int i, error = 0;
Kent Overstreet06c04442020-12-14 19:04:56 -08002651 bool writably_mapped;
2652 loff_t isize, end_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Kent Overstreet723ef242020-12-14 19:04:52 -08002654 if (unlikely(iocb->ki_pos >= inode->i_sb->s_maxbytes))
Linus Torvaldsd05c5f72016-12-14 12:45:25 -08002655 return 0;
Kent Overstreet3644e2d2020-12-18 04:07:11 -05002656 if (unlikely(!iov_iter_count(iter)))
2657 return 0;
2658
Wei Fangc2a97372016-10-07 17:01:52 -07002659 iov_iter_truncate(iter, inode->i_sb->s_maxbytes);
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002660 folio_batch_init(&fbatch);
Wei Fangc2a97372016-10-07 17:01:52 -07002661
Kent Overstreet06c04442020-12-14 19:04:56 -08002662 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 cond_resched();
Kent Overstreet06c04442020-12-14 19:04:56 -08002664
2665 /*
2666 * If we've already successfully copied some data, then we
2667 * can no longer safely return -EIOCBQUEUED. Hence mark
2668 * an async read NOWAIT at that point.
2669 */
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002670 if ((iocb->ki_flags & IOCB_WAITQ) && already_read)
Kent Overstreet06c04442020-12-14 19:04:56 -08002671 iocb->ki_flags |= IOCB_NOWAIT;
2672
David Howells8c8387e2021-11-05 13:36:49 -07002673 if (unlikely(iocb->ki_pos >= i_size_read(inode)))
2674 break;
2675
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002676 error = filemap_get_pages(iocb, iter, &fbatch);
Matthew Wilcox (Oracle)ff993ba2021-02-24 12:01:55 -08002677 if (error < 0)
Kent Overstreet06c04442020-12-14 19:04:56 -08002678 break;
Michal Hocko5abf1862017-02-03 13:13:29 -08002679
Kent Overstreet723ef242020-12-14 19:04:52 -08002680 /*
Kent Overstreet06c04442020-12-14 19:04:56 -08002681 * i_size must be checked after we know the pages are Uptodate.
2682 *
2683 * Checking i_size after the check allows us to calculate
2684 * the correct value for "nr", which means the zero-filled
2685 * part of the page is not copied back to userspace (unless
2686 * another truncate extends the file - this is desired though).
Kent Overstreet723ef242020-12-14 19:04:52 -08002687 */
Kent Overstreet06c04442020-12-14 19:04:56 -08002688 isize = i_size_read(inode);
2689 if (unlikely(iocb->ki_pos >= isize))
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002690 goto put_folios;
Kent Overstreet06c04442020-12-14 19:04:56 -08002691 end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count);
2692
Kent Overstreet06c04442020-12-14 19:04:56 -08002693 /*
2694 * Once we start copying data, we don't want to be touching any
2695 * cachelines that might be contended:
2696 */
2697 writably_mapped = mapping_writably_mapped(mapping);
2698
2699 /*
2700 * When a sequential read accesses a page several times, only
2701 * mark it as accessed the first time.
2702 */
2703 if (iocb->ki_pos >> PAGE_SHIFT !=
2704 ra->prev_pos >> PAGE_SHIFT)
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002705 folio_mark_accessed(fbatch.folios[0]);
Kent Overstreet06c04442020-12-14 19:04:56 -08002706
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002707 for (i = 0; i < folio_batch_count(&fbatch); i++) {
2708 struct folio *folio = fbatch.folios[i];
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002709 size_t fsize = folio_size(folio);
2710 size_t offset = iocb->ki_pos & (fsize - 1);
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002711 size_t bytes = min_t(loff_t, end_offset - iocb->ki_pos,
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002712 fsize - offset);
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002713 size_t copied;
Kent Overstreet06c04442020-12-14 19:04:56 -08002714
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002715 if (end_offset < folio_pos(folio))
Matthew Wilcox (Oracle)cbd59c42021-02-24 12:01:59 -08002716 break;
2717 if (i > 0)
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002718 folio_mark_accessed(folio);
Kent Overstreet06c04442020-12-14 19:04:56 -08002719 /*
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002720 * If users can be writing to this folio using arbitrary
2721 * virtual addresses, take care of potential aliasing
2722 * before reading the folio on the kernel side.
Kent Overstreet06c04442020-12-14 19:04:56 -08002723 */
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002724 if (writably_mapped)
2725 flush_dcache_folio(folio);
Kent Overstreet06c04442020-12-14 19:04:56 -08002726
Matthew Wilcox (Oracle)d996fc72021-10-31 22:22:19 -04002727 copied = copy_folio_to_iter(folio, offset, bytes, iter);
Kent Overstreet06c04442020-12-14 19:04:56 -08002728
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002729 already_read += copied;
Kent Overstreet06c04442020-12-14 19:04:56 -08002730 iocb->ki_pos += copied;
2731 ra->prev_pos = iocb->ki_pos;
2732
2733 if (copied < bytes) {
2734 error = -EFAULT;
2735 break;
Kent Overstreet723ef242020-12-14 19:04:52 -08002736 }
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07002737 }
Matthew Wilcox (Oracle)25d6a232021-12-06 15:25:33 -05002738put_folios:
2739 for (i = 0; i < folio_batch_count(&fbatch); i++)
2740 folio_put(fbatch.folios[i]);
2741 folio_batch_init(&fbatch);
Kent Overstreet06c04442020-12-14 19:04:56 -08002742 } while (iov_iter_count(iter) && iocb->ki_pos < isize && !error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Krishna Kumar0c6aa262008-10-15 22:01:13 -07002744 file_accessed(filp);
Kent Overstreet06c04442020-12-14 19:04:56 -08002745
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002746 return already_read ? already_read : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
Christoph Hellwig87fa0f32021-02-24 12:02:42 -08002748EXPORT_SYMBOL_GPL(filemap_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Randy Dunlap485bb992006-06-23 02:03:49 -07002750/**
Al Viro6abd2322014-04-04 14:20:57 -04002751 * generic_file_read_iter - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07002752 * @iocb: kernel I/O control block
Al Viro6abd2322014-04-04 14:20:57 -04002753 * @iter: destination for the data read
Randy Dunlap485bb992006-06-23 02:03:49 -07002754 *
Al Viro6abd2322014-04-04 14:20:57 -04002755 * This is the "read_iter()" routine for all filesystems
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 * that can use the page cache directly.
Andreas Gruenbacher41da51b2019-11-21 23:25:07 +00002757 *
2758 * The IOCB_NOWAIT flag in iocb->ki_flags indicates that -EAGAIN shall
2759 * be returned when no data can be read without waiting for I/O requests
2760 * to complete; it doesn't prevent readahead.
2761 *
2762 * The IOCB_NOIO flag in iocb->ki_flags indicates that no new I/O
2763 * requests shall be made for the read or for readahead. When no data
2764 * can be read, -EAGAIN shall be returned. When readahead would be
2765 * triggered, a partial, possibly empty read shall be returned.
2766 *
Mike Rapoporta862f682019-03-05 15:48:42 -08002767 * Return:
2768 * * number of bytes copied, even for partial reads
Andreas Gruenbacher41da51b2019-11-21 23:25:07 +00002769 * * negative error code (or 0 if IOCB_NOIO) if nothing was read
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 */
2771ssize_t
Al Viroed978a82014-03-05 22:53:04 -05002772generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Nicolai Stangee7080a42016-03-25 14:22:14 -07002774 size_t count = iov_iter_count(iter);
Christoph Hellwig47c27bc2017-08-29 16:13:18 +02002775 ssize_t retval = 0;
Nicolai Stangee7080a42016-03-25 14:22:14 -07002776
2777 if (!count)
Christoph Hellwig826ea862021-02-24 12:02:45 -08002778 return 0; /* skip atime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Al Viro2ba48ce2015-04-09 13:52:01 -04002780 if (iocb->ki_flags & IOCB_DIRECT) {
Christoph Hellwig47c27bc2017-08-29 16:13:18 +02002781 struct file *file = iocb->ki_filp;
Al Viroed978a82014-03-05 22:53:04 -05002782 struct address_space *mapping = file->f_mapping;
2783 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Goldwyn Rodrigues6be96d32017-06-20 07:05:44 -05002785 if (iocb->ki_flags & IOCB_NOWAIT) {
Jens Axboe7a60d6d2021-04-29 22:55:21 -07002786 if (filemap_range_needs_writeback(mapping, iocb->ki_pos,
2787 iocb->ki_pos + count - 1))
Goldwyn Rodrigues6be96d32017-06-20 07:05:44 -05002788 return -EAGAIN;
2789 } else {
2790 retval = filemap_write_and_wait_range(mapping,
2791 iocb->ki_pos,
2792 iocb->ki_pos + count - 1);
2793 if (retval < 0)
Christoph Hellwig826ea862021-02-24 12:02:45 -08002794 return retval;
Goldwyn Rodrigues6be96d32017-06-20 07:05:44 -05002795 }
Al Viroed978a82014-03-05 22:53:04 -05002796
Christoph Hellwig0d5b0cf2016-10-03 09:48:08 +11002797 file_accessed(file);
2798
Al Viro5ecda132017-04-13 14:13:36 -04002799 retval = mapping->a_ops->direct_IO(iocb, iter);
Al Viroc3a69022016-10-10 13:26:27 -04002800 if (retval >= 0) {
Christoph Hellwigc64fb5c2016-04-07 08:51:55 -07002801 iocb->ki_pos += retval;
Al Viro5ecda132017-04-13 14:13:36 -04002802 count -= retval;
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002803 }
Pavel Begunkovab2125d2021-02-24 12:01:45 -08002804 if (retval != -EIOCBQUEUED)
2805 iov_iter_revert(iter, count - iov_iter_count(iter));
Josef Bacik66f998f2010-05-23 11:00:54 -04002806
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002807 /*
2808 * Btrfs can have a short DIO read if we encounter
2809 * compressed extents, so if there was an error, or if
2810 * we've already read everything we wanted to, or if
2811 * there was a short read because we hit EOF, go ahead
2812 * and return. Otherwise fallthrough to buffered io for
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08002813 * the rest of the read. Buffered reads will not work for
2814 * DAX files, so don't bother trying.
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002815 */
Jens Axboe61d00172021-11-05 13:37:07 -07002816 if (retval < 0 || !count || IS_DAX(inode))
2817 return retval;
2818 if (iocb->ki_pos >= i_size_read(inode))
Christoph Hellwig826ea862021-02-24 12:02:45 -08002819 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 }
2821
Christoph Hellwig826ea862021-02-24 12:02:45 -08002822 return filemap_read(iocb, iter, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
Al Viroed978a82014-03-05 22:53:04 -05002824EXPORT_SYMBOL(generic_file_read_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002826static inline loff_t folio_seek_hole_data(struct xa_state *xas,
2827 struct address_space *mapping, struct folio *folio,
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002828 loff_t start, loff_t end, bool seek_data)
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002829{
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002830 const struct address_space_operations *ops = mapping->a_ops;
2831 size_t offset, bsz = i_blocksize(mapping->host);
2832
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002833 if (xa_is_value(folio) || folio_test_uptodate(folio))
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002834 return seek_data ? start : end;
2835 if (!ops->is_partially_uptodate)
2836 return seek_data ? end : start;
2837
2838 xas_pause(xas);
2839 rcu_read_unlock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002840 folio_lock(folio);
2841 if (unlikely(folio->mapping != mapping))
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002842 goto unlock;
2843
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002844 offset = offset_in_folio(folio, start) & ~(bsz - 1);
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002845
2846 do {
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002847 if (ops->is_partially_uptodate(&folio->page, offset, bsz) ==
2848 seek_data)
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002849 break;
2850 start = (start + bsz) & ~(bsz - 1);
2851 offset += bsz;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002852 } while (offset < folio_size(folio));
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002853unlock:
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002854 folio_unlock(folio);
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002855 rcu_read_lock();
2856 return start;
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002857}
2858
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002859static inline size_t seek_folio_size(struct xa_state *xas, struct folio *folio)
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002860{
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002861 if (xa_is_value(folio))
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002862 return PAGE_SIZE << xa_get_order(xas->xa, xas->xa_index);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002863 return folio_size(folio);
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002864}
2865
2866/**
2867 * mapping_seek_hole_data - Seek for SEEK_DATA / SEEK_HOLE in the page cache.
2868 * @mapping: Address space to search.
2869 * @start: First byte to consider.
2870 * @end: Limit of search (exclusive).
2871 * @whence: Either SEEK_HOLE or SEEK_DATA.
2872 *
2873 * If the page cache knows which blocks contain holes and which blocks
2874 * contain data, your filesystem can use this function to implement
2875 * SEEK_HOLE and SEEK_DATA. This is useful for filesystems which are
2876 * entirely memory-based such as tmpfs, and filesystems which support
2877 * unwritten extents.
2878 *
Ingo Molnarf0953a12021-05-06 18:06:47 -07002879 * Return: The requested offset on success, or -ENXIO if @whence specifies
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002880 * SEEK_DATA and there is no data after @start. There is an implicit hole
2881 * after @end - 1, so SEEK_HOLE returns @end if all the bytes between @start
2882 * and @end contain data.
2883 */
2884loff_t mapping_seek_hole_data(struct address_space *mapping, loff_t start,
2885 loff_t end, int whence)
2886{
2887 XA_STATE(xas, &mapping->i_pages, start >> PAGE_SHIFT);
Hugh Dickinsed98b012021-04-23 14:29:00 -07002888 pgoff_t max = (end - 1) >> PAGE_SHIFT;
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002889 bool seek_data = (whence == SEEK_DATA);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002890 struct folio *folio;
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002891
2892 if (end <= start)
2893 return -ENXIO;
2894
2895 rcu_read_lock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002896 while ((folio = find_get_entry(&xas, max, XA_PRESENT))) {
Hugh Dickinsed98b012021-04-23 14:29:00 -07002897 loff_t pos = (u64)xas.xa_index << PAGE_SHIFT;
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002898 size_t seek_size;
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002899
2900 if (start < pos) {
2901 if (!seek_data)
2902 goto unlock;
2903 start = pos;
2904 }
2905
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002906 seek_size = seek_folio_size(&xas, folio);
2907 pos = round_up((u64)pos + 1, seek_size);
2908 start = folio_seek_hole_data(&xas, mapping, folio, start, pos,
Matthew Wilcox (Oracle)54fa39a2021-02-25 17:15:52 -08002909 seek_data);
2910 if (start < pos)
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002911 goto unlock;
Hugh Dickinsed98b012021-04-23 14:29:00 -07002912 if (start >= end)
2913 break;
2914 if (seek_size > PAGE_SIZE)
2915 xas_set(&xas, pos >> PAGE_SHIFT);
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002916 if (!xa_is_value(folio))
2917 folio_put(folio);
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002918 }
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002919 if (seek_data)
Hugh Dickinsed98b012021-04-23 14:29:00 -07002920 start = -ENXIO;
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002921unlock:
2922 rcu_read_unlock();
Matthew Wilcox (Oracle)f5e64292020-12-17 00:12:26 -05002923 if (folio && !xa_is_value(folio))
2924 folio_put(folio);
Matthew Wilcox (Oracle)41139aa2021-02-25 17:15:48 -08002925 if (start > end)
2926 return end;
2927 return start;
2928}
2929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931#define MMAP_LOTSAMISS (100)
Linus Torvaldsef00e082009-06-16 15:31:25 -07002932/*
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05002933 * lock_folio_maybe_drop_mmap - lock the page, possibly dropping the mmap_lock
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002934 * @vmf - the vm_fault for this fault.
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05002935 * @folio - the folio to lock.
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002936 * @fpin - the pointer to the file we may pin (or is already pinned).
2937 *
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05002938 * This works similar to lock_folio_or_retry in that it can drop the
2939 * mmap_lock. It differs in that it actually returns the folio locked
2940 * if it returns 1 and 0 if it couldn't lock the folio. If we did have
2941 * to drop the mmap_lock then fpin will point to the pinned file and
2942 * needs to be fput()'ed at a later point.
Linus Torvaldsef00e082009-06-16 15:31:25 -07002943 */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05002944static int lock_folio_maybe_drop_mmap(struct vm_fault *vmf, struct folio *folio,
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002945 struct file **fpin)
2946{
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05002947 if (folio_trylock(folio))
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002948 return 1;
2949
Linus Torvalds8b0f9fa2019-03-15 11:26:07 -07002950 /*
2951 * NOTE! This will make us return with VM_FAULT_RETRY, but with
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002952 * the mmap_lock still held. That's how FAULT_FLAG_RETRY_NOWAIT
Linus Torvalds8b0f9fa2019-03-15 11:26:07 -07002953 * is supposed to work. We have way too many special cases..
2954 */
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002955 if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
2956 return 0;
2957
2958 *fpin = maybe_unlock_mmap_for_io(vmf, *fpin);
2959 if (vmf->flags & FAULT_FLAG_KILLABLE) {
Matthew Wilcox (Oracle)af7f29d2020-12-08 00:07:31 -05002960 if (__folio_lock_killable(folio)) {
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002961 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002962 * We didn't have the right flags to drop the mmap_lock,
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002963 * but all fault_handlers only check for fatal signals
2964 * if we return VM_FAULT_RETRY, so we need to drop the
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002965 * mmap_lock here and return 0 if we don't have a fpin.
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002966 */
2967 if (*fpin == NULL)
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002968 mmap_read_unlock(vmf->vma->vm_mm);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002969 return 0;
2970 }
2971 } else
Matthew Wilcox (Oracle)7c23c782021-03-01 19:38:25 -05002972 __folio_lock(folio);
2973
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002974 return 1;
2975}
2976
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002977/*
2978 * Synchronous readahead happens when we don't even find a page in the page
2979 * cache at all. We don't want to perform IO under the mmap sem, so if we have
2980 * to drop the mmap sem we return the file that was pinned in order for us to do
2981 * that. If we didn't pin a file then we return NULL. The file that is
2982 * returned needs to be fput()'ed when we're done with it.
2983 */
2984static struct file *do_sync_mmap_readahead(struct vm_fault *vmf)
Linus Torvaldsef00e082009-06-16 15:31:25 -07002985{
Josef Bacik2a1180f2019-03-13 11:44:18 -07002986 struct file *file = vmf->vma->vm_file;
2987 struct file_ra_state *ra = &file->f_ra;
Linus Torvaldsef00e082009-06-16 15:31:25 -07002988 struct address_space *mapping = file->f_mapping;
Matthew Wilcox (Oracle)fcd9ae42021-04-07 21:18:55 +01002989 DEFINE_READAHEAD(ractl, file, ra, mapping, vmf->pgoff);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002990 struct file *fpin = NULL;
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07002991 unsigned int mmap_miss;
Linus Torvaldsef00e082009-06-16 15:31:25 -07002992
2993 /* If we don't want any read-ahead, don't bother */
Josef Bacik2a1180f2019-03-13 11:44:18 -07002994 if (vmf->vma->vm_flags & VM_RAND_READ)
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002995 return fpin;
Wu Fengguang275b12b2011-05-24 17:12:28 -07002996 if (!ra->ra_pages)
Josef Bacik6b4c9f42019-03-13 11:44:22 -07002997 return fpin;
Linus Torvaldsef00e082009-06-16 15:31:25 -07002998
Josef Bacik2a1180f2019-03-13 11:44:18 -07002999 if (vmf->vma->vm_flags & VM_SEQ_READ) {
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003000 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
Matthew Wilcox (Oracle)fcd9ae42021-04-07 21:18:55 +01003001 page_cache_sync_ra(&ractl, ra->ra_pages);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003002 return fpin;
Linus Torvaldsef00e082009-06-16 15:31:25 -07003003 }
3004
Andi Kleen207d04b2011-05-24 17:12:29 -07003005 /* Avoid banging the cache line if not needed */
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003006 mmap_miss = READ_ONCE(ra->mmap_miss);
3007 if (mmap_miss < MMAP_LOTSAMISS * 10)
3008 WRITE_ONCE(ra->mmap_miss, ++mmap_miss);
Linus Torvaldsef00e082009-06-16 15:31:25 -07003009
3010 /*
3011 * Do we miss much more than hit in this file? If so,
3012 * stop bothering with read-ahead. It will only hurt.
3013 */
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003014 if (mmap_miss > MMAP_LOTSAMISS)
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003015 return fpin;
Linus Torvaldsef00e082009-06-16 15:31:25 -07003016
Wu Fengguangd30a1102009-06-16 15:31:30 -07003017 /*
3018 * mmap read-around
3019 */
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003020 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
David Howellsdb660d42020-10-15 20:06:31 -07003021 ra->start = max_t(long, 0, vmf->pgoff - ra->ra_pages / 2);
Roman Gushchin600e19a2015-11-05 18:47:08 -08003022 ra->size = ra->ra_pages;
3023 ra->async_size = ra->ra_pages / 4;
David Howellsdb660d42020-10-15 20:06:31 -07003024 ractl._index = ra->start;
3025 do_page_cache_ra(&ractl, ra->size, ra->async_size);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003026 return fpin;
Linus Torvaldsef00e082009-06-16 15:31:25 -07003027}
3028
3029/*
3030 * Asynchronous readahead happens when we find the page and PG_readahead,
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003031 * so we want to possibly extend the readahead further. We return the file that
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003032 * was pinned if we have to drop the mmap_lock in order to do IO.
Linus Torvaldsef00e082009-06-16 15:31:25 -07003033 */
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003034static struct file *do_async_mmap_readahead(struct vm_fault *vmf,
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003035 struct folio *folio)
Linus Torvaldsef00e082009-06-16 15:31:25 -07003036{
Josef Bacik2a1180f2019-03-13 11:44:18 -07003037 struct file *file = vmf->vma->vm_file;
3038 struct file_ra_state *ra = &file->f_ra;
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003039 DEFINE_READAHEAD(ractl, file, ra, file->f_mapping, vmf->pgoff);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003040 struct file *fpin = NULL;
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003041 unsigned int mmap_miss;
Linus Torvaldsef00e082009-06-16 15:31:25 -07003042
3043 /* If we don't want any read-ahead, don't bother */
Jan Kara5c72fee2020-04-01 21:04:40 -07003044 if (vmf->vma->vm_flags & VM_RAND_READ || !ra->ra_pages)
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003045 return fpin;
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003046
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003047 mmap_miss = READ_ONCE(ra->mmap_miss);
3048 if (mmap_miss)
3049 WRITE_ONCE(ra->mmap_miss, --mmap_miss);
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003050
3051 if (folio_test_readahead(folio)) {
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003052 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003053 page_cache_async_ra(&ractl, folio, ra->ra_pages);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003054 }
3055 return fpin;
Linus Torvaldsef00e082009-06-16 15:31:25 -07003056}
3057
Randy Dunlap485bb992006-06-23 02:03:49 -07003058/**
Nick Piggin54cb8822007-07-19 01:46:59 -07003059 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07003060 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07003061 *
Nick Piggin54cb8822007-07-19 01:46:59 -07003062 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 * mapped memory region to read in file data during a page fault.
3064 *
3065 * The goto's are kind of ugly, but this streamlines the normal case of having
3066 * it in the page cache, and handles the special cases reasonably without
3067 * having a lot of duplicated code.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003068 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003069 * vma->vm_mm->mmap_lock must be held on entry.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003070 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003071 * If our return value has VM_FAULT_RETRY set, it's because the mmap_lock
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003072 * may be dropped before doing I/O or by lock_folio_maybe_drop_mmap().
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003073 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003074 * If our return value does not have VM_FAULT_RETRY set, the mmap_lock
Paul Cassella9a95f3c2014-08-06 16:07:24 -07003075 * has not been released.
3076 *
3077 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
Mike Rapoporta862f682019-03-05 15:48:42 -08003078 *
3079 * Return: bitwise-OR of %VM_FAULT_ codes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 */
Souptick Joarder2bcd6452018-06-07 17:08:00 -07003081vm_fault_t filemap_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
3083 int error;
Dave Jiang11bac802017-02-24 14:56:41 -08003084 struct file *file = vmf->vma->vm_file;
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003085 struct file *fpin = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 struct address_space *mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 struct inode *inode = mapping->host;
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003088 pgoff_t max_idx, index = vmf->pgoff;
3089 struct folio *folio;
Souptick Joarder2bcd6452018-06-07 17:08:00 -07003090 vm_fault_t ret = 0;
Jan Kara730633f2021-01-28 19:19:45 +01003091 bool mapping_locked = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003093 max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3094 if (unlikely(index >= max_idx))
Linus Torvalds5307cc12007-10-31 09:19:46 -07003095 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 /*
Johannes Weiner49426422013-10-16 13:46:59 -07003098 * Do we have something in the page cache already?
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003100 folio = filemap_get_folio(mapping, index);
3101 if (likely(folio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 /*
Jan Kara730633f2021-01-28 19:19:45 +01003103 * We found the page, so try async readahead before waiting for
3104 * the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 */
Jan Kara730633f2021-01-28 19:19:45 +01003106 if (!(vmf->flags & FAULT_FLAG_TRIED))
Matthew Wilcox (Oracle)79598ce2021-07-29 14:57:01 -04003107 fpin = do_async_mmap_readahead(vmf, folio);
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003108 if (unlikely(!folio_test_uptodate(folio))) {
Jan Kara730633f2021-01-28 19:19:45 +01003109 filemap_invalidate_lock_shared(mapping);
3110 mapping_locked = true;
3111 }
3112 } else {
Linus Torvaldsef00e082009-06-16 15:31:25 -07003113 /* No page in the page cache at all */
Linus Torvaldsef00e082009-06-16 15:31:25 -07003114 count_vm_event(PGMAJFAULT);
Roman Gushchin22621852017-07-06 15:40:25 -07003115 count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT);
Linus Torvaldsef00e082009-06-16 15:31:25 -07003116 ret = VM_FAULT_MAJOR;
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003117 fpin = do_sync_mmap_readahead(vmf);
Linus Torvaldsef00e082009-06-16 15:31:25 -07003118retry_find:
Jan Kara730633f2021-01-28 19:19:45 +01003119 /*
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003120 * See comment in filemap_create_folio() why we need
Jan Kara730633f2021-01-28 19:19:45 +01003121 * invalidate_lock
3122 */
3123 if (!mapping_locked) {
3124 filemap_invalidate_lock_shared(mapping);
3125 mapping_locked = true;
3126 }
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003127 folio = __filemap_get_folio(mapping, index,
Josef Bacika75d4c32019-03-13 11:44:14 -07003128 FGP_CREAT|FGP_FOR_MMAP,
3129 vmf->gfp_mask);
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003130 if (!folio) {
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003131 if (fpin)
3132 goto out_retry;
Jan Kara730633f2021-01-28 19:19:45 +01003133 filemap_invalidate_unlock_shared(mapping);
Matthew Wilcox (Oracle)e520e932020-04-01 21:04:53 -07003134 return VM_FAULT_OOM;
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 }
3137
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003138 if (!lock_folio_maybe_drop_mmap(vmf, folio, &fpin))
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003139 goto out_retry;
Michel Lespinasseb522c942010-10-26 14:21:56 -07003140
3141 /* Did it get truncated? */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003142 if (unlikely(folio->mapping != mapping)) {
3143 folio_unlock(folio);
3144 folio_put(folio);
Michel Lespinasseb522c942010-10-26 14:21:56 -07003145 goto retry_find;
3146 }
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003147 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
Michel Lespinasseb522c942010-10-26 14:21:56 -07003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 /*
Nick Piggind00806b2007-07-19 01:46:57 -07003150 * We have a locked page in the page cache, now we need to check
3151 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003153 if (unlikely(!folio_test_uptodate(folio))) {
Jan Kara730633f2021-01-28 19:19:45 +01003154 /*
3155 * The page was in cache and uptodate and now it is not.
3156 * Strange but possible since we didn't hold the page lock all
3157 * the time. Let's drop everything get the invalidate lock and
3158 * try again.
3159 */
3160 if (!mapping_locked) {
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003161 folio_unlock(folio);
3162 folio_put(folio);
Jan Kara730633f2021-01-28 19:19:45 +01003163 goto retry_find;
3164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 goto page_not_uptodate;
Jan Kara730633f2021-01-28 19:19:45 +01003166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Linus Torvaldsef00e082009-06-16 15:31:25 -07003168 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003169 * We've made it this far and we had to drop our mmap_lock, now is the
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003170 * time to return to the upper layer and have it re-find the vma and
3171 * redo the fault.
3172 */
3173 if (fpin) {
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003174 folio_unlock(folio);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003175 goto out_retry;
3176 }
Jan Kara730633f2021-01-28 19:19:45 +01003177 if (mapping_locked)
3178 filemap_invalidate_unlock_shared(mapping);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003179
3180 /*
Linus Torvaldsef00e082009-06-16 15:31:25 -07003181 * Found the page and have a reference on it.
3182 * We must recheck i_size under page lock.
3183 */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003184 max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3185 if (unlikely(index >= max_idx)) {
3186 folio_unlock(folio);
3187 folio_put(folio);
Linus Torvalds5307cc12007-10-31 09:19:46 -07003188 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07003189 }
3190
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003191 vmf->page = folio_file_page(folio, index);
Nick Piggin83c54072007-07-19 01:47:05 -07003192 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194page_not_uptodate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 /*
3196 * Umm, take care of errors if the page isn't up-to-date.
3197 * Try to re-read it _once_. We do this synchronously,
3198 * because there really aren't any performance issues here
3199 * and we need to check for errors.
3200 */
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003201 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003202 error = filemap_read_folio(file, mapping, folio);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003203 if (fpin)
3204 goto out_retry;
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003205 folio_put(folio);
Nick Piggind00806b2007-07-19 01:46:57 -07003206
3207 if (!error || error == AOP_TRUNCATED_PAGE)
3208 goto retry_find;
Jan Kara730633f2021-01-28 19:19:45 +01003209 filemap_invalidate_unlock_shared(mapping);
Nick Piggind00806b2007-07-19 01:46:57 -07003210
Nick Piggind0217ac2007-07-19 01:47:03 -07003211 return VM_FAULT_SIGBUS;
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003212
3213out_retry:
3214 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07003215 * We dropped the mmap_lock, we need to return to the fault handler to
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003216 * re-find the vma and come back and find our hopefully still populated
3217 * page.
3218 */
Matthew Wilcox (Oracle)e292e6d2021-03-10 10:46:41 -05003219 if (folio)
3220 folio_put(folio);
Jan Kara730633f2021-01-28 19:19:45 +01003221 if (mapping_locked)
3222 filemap_invalidate_unlock_shared(mapping);
Josef Bacik6b4c9f42019-03-13 11:44:22 -07003223 if (fpin)
3224 fput(fpin);
3225 return ret | VM_FAULT_RETRY;
Nick Piggin54cb8822007-07-19 01:46:59 -07003226}
3227EXPORT_SYMBOL(filemap_fault);
3228
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003229static bool filemap_map_pmd(struct vm_fault *vmf, struct page *page)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003230{
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003231 struct mm_struct *mm = vmf->vma->vm_mm;
3232
3233 /* Huge page is mapped? No need to proceed. */
3234 if (pmd_trans_huge(*vmf->pmd)) {
3235 unlock_page(page);
3236 put_page(page);
3237 return true;
3238 }
3239
3240 if (pmd_none(*vmf->pmd) && PageTransHuge(page)) {
Yang Shie0f43fa2021-11-05 13:41:04 -07003241 vm_fault_t ret = do_set_pmd(vmf, page);
3242 if (!ret) {
3243 /* The page is mapped successfully, reference consumed. */
3244 unlock_page(page);
3245 return true;
3246 }
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003247 }
3248
Qi Zheng03c4f202021-11-05 13:38:38 -07003249 if (pmd_none(*vmf->pmd))
3250 pmd_install(mm, vmf->pmd, &vmf->prealloc_pte);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003251
3252 /* See comment in handle_pte_fault() */
3253 if (pmd_devmap_trans_unstable(vmf->pmd)) {
3254 unlock_page(page);
3255 put_page(page);
3256 return true;
3257 }
3258
3259 return false;
3260}
3261
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003262static struct folio *next_uptodate_page(struct folio *folio,
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003263 struct address_space *mapping,
3264 struct xa_state *xas, pgoff_t end_pgoff)
3265{
3266 unsigned long max_idx;
3267
3268 do {
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003269 if (!folio)
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003270 return NULL;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003271 if (xas_retry(xas, folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003272 continue;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003273 if (xa_is_value(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003274 continue;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003275 if (folio_test_locked(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003276 continue;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003277 if (!folio_try_get_rcu(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003278 continue;
3279 /* Has the page moved or been split? */
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003280 if (unlikely(folio != xas_reload(xas)))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003281 goto skip;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003282 if (!folio_test_uptodate(folio) || folio_test_readahead(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003283 goto skip;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003284 if (!folio_trylock(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003285 goto skip;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003286 if (folio->mapping != mapping)
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003287 goto unlock;
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003288 if (!folio_test_uptodate(folio))
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003289 goto unlock;
3290 max_idx = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
3291 if (xas->xa_index >= max_idx)
3292 goto unlock;
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003293 return folio;
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003294unlock:
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003295 folio_unlock(folio);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003296skip:
Matthew Wilcox (Oracle)9184a302021-03-12 23:33:43 -05003297 folio_put(folio);
3298 } while ((folio = xas_next_entry(xas, end_pgoff)) != NULL);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003299
3300 return NULL;
3301}
3302
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003303static inline struct folio *first_map_page(struct address_space *mapping,
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003304 struct xa_state *xas,
3305 pgoff_t end_pgoff)
3306{
3307 return next_uptodate_page(xas_find(xas, end_pgoff),
3308 mapping, xas, end_pgoff);
3309}
3310
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003311static inline struct folio *next_map_page(struct address_space *mapping,
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003312 struct xa_state *xas,
3313 pgoff_t end_pgoff)
3314{
3315 return next_uptodate_page(xas_next_entry(xas, end_pgoff),
3316 mapping, xas, end_pgoff);
3317}
3318
3319vm_fault_t filemap_map_pages(struct vm_fault *vmf,
3320 pgoff_t start_pgoff, pgoff_t end_pgoff)
3321{
3322 struct vm_area_struct *vma = vmf->vma;
3323 struct file *file = vma->vm_file;
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003324 struct address_space *mapping = file->f_mapping;
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -07003325 pgoff_t last_pgoff = start_pgoff;
Will Deacon9d3af4b2021-01-14 15:24:19 +00003326 unsigned long addr;
Matthew Wilcox070e8072018-05-17 00:08:30 -04003327 XA_STATE(xas, &mapping->i_pages, start_pgoff);
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003328 struct folio *folio;
3329 struct page *page;
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003330 unsigned int mmap_miss = READ_ONCE(file->f_ra.mmap_miss);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003331 vm_fault_t ret = 0;
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003332
3333 rcu_read_lock();
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003334 folio = first_map_page(mapping, &xas, end_pgoff);
3335 if (!folio)
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003336 goto out;
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003337
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003338 if (filemap_map_pmd(vmf, &folio->page)) {
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003339 ret = VM_FAULT_NOPAGE;
3340 goto out;
3341 }
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003342
Will Deacon9d3af4b2021-01-14 15:24:19 +00003343 addr = vma->vm_start + ((start_pgoff - vma->vm_pgoff) << PAGE_SHIFT);
3344 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003345 do {
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04003346again:
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003347 page = folio_file_page(folio, xas.xa_index);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003348 if (PageHWPoison(page))
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003349 goto unlock;
3350
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003351 if (mmap_miss > 0)
3352 mmap_miss--;
Kirill A. Shutemov7267ec002016-07-26 15:25:23 -07003353
Will Deacon9d3af4b2021-01-14 15:24:19 +00003354 addr += (xas.xa_index - last_pgoff) << PAGE_SHIFT;
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003355 vmf->pte += xas.xa_index - last_pgoff;
Matthew Wilcox070e8072018-05-17 00:08:30 -04003356 last_pgoff = xas.xa_index;
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003357
3358 if (!pte_none(*vmf->pte))
Kirill A. Shutemov7267ec002016-07-26 15:25:23 -07003359 goto unlock;
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003360
Will Deacon46bdb422020-11-24 18:48:26 +00003361 /* We're about to handle the fault */
Will Deacon9d3af4b2021-01-14 15:24:19 +00003362 if (vmf->address == addr)
Will Deacon46bdb422020-11-24 18:48:26 +00003363 ret = VM_FAULT_NOPAGE;
Will Deacon46bdb422020-11-24 18:48:26 +00003364
Will Deacon9d3af4b2021-01-14 15:24:19 +00003365 do_set_pte(vmf, page, addr);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003366 /* no need to invalidate: a not-present page won't be cached */
Will Deacon9d3af4b2021-01-14 15:24:19 +00003367 update_mmu_cache(vma, addr, vmf->pte);
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04003368 if (folio_more_pages(folio, xas.xa_index, end_pgoff)) {
3369 xas.xa_index++;
3370 folio_ref_inc(folio);
3371 goto again;
3372 }
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003373 folio_unlock(folio);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003374 continue;
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003375unlock:
Matthew Wilcox (Oracle)6b24ca42020-06-27 22:19:08 -04003376 if (folio_more_pages(folio, xas.xa_index, end_pgoff)) {
3377 xas.xa_index++;
3378 goto again;
3379 }
Matthew Wilcox (Oracle)820b05e2021-03-12 23:46:45 -05003380 folio_unlock(folio);
3381 folio_put(folio);
3382 } while ((folio = next_map_page(mapping, &xas, end_pgoff)) != NULL);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003383 pte_unmap_unlock(vmf->pte, vmf->ptl);
3384out:
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003385 rcu_read_unlock();
Kirill A. Shutemove630bfa2020-08-14 17:31:27 -07003386 WRITE_ONCE(file->f_ra.mmap_miss, mmap_miss);
Kirill A. Shutemovf9ce0be2020-12-19 15:19:23 +03003387 return ret;
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003388}
3389EXPORT_SYMBOL(filemap_map_pages);
3390
Souptick Joarder2bcd6452018-06-07 17:08:00 -07003391vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
Jan Kara4fcf1c62012-06-12 16:20:29 +02003392{
Christoph Hellwig5df1a672020-11-16 14:33:37 +01003393 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
Matthew Wilcox (Oracle)960ea972021-03-12 23:57:44 -05003394 struct folio *folio = page_folio(vmf->page);
Souptick Joarder2bcd6452018-06-07 17:08:00 -07003395 vm_fault_t ret = VM_FAULT_LOCKED;
Jan Kara4fcf1c62012-06-12 16:20:29 +02003396
Christoph Hellwig5df1a672020-11-16 14:33:37 +01003397 sb_start_pagefault(mapping->host->i_sb);
Dave Jiang11bac802017-02-24 14:56:41 -08003398 file_update_time(vmf->vma->vm_file);
Matthew Wilcox (Oracle)960ea972021-03-12 23:57:44 -05003399 folio_lock(folio);
3400 if (folio->mapping != mapping) {
3401 folio_unlock(folio);
Jan Kara4fcf1c62012-06-12 16:20:29 +02003402 ret = VM_FAULT_NOPAGE;
3403 goto out;
3404 }
Jan Kara14da9202012-06-12 16:20:37 +02003405 /*
Matthew Wilcox (Oracle)960ea972021-03-12 23:57:44 -05003406 * We mark the folio dirty already here so that when freeze is in
Jan Kara14da9202012-06-12 16:20:37 +02003407 * progress, we are guaranteed that writeback during freezing will
Matthew Wilcox (Oracle)960ea972021-03-12 23:57:44 -05003408 * see the dirty folio and writeprotect it again.
Jan Kara14da9202012-06-12 16:20:37 +02003409 */
Matthew Wilcox (Oracle)960ea972021-03-12 23:57:44 -05003410 folio_mark_dirty(folio);
3411 folio_wait_stable(folio);
Jan Kara4fcf1c62012-06-12 16:20:29 +02003412out:
Christoph Hellwig5df1a672020-11-16 14:33:37 +01003413 sb_end_pagefault(mapping->host->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02003414 return ret;
3415}
Jan Kara4fcf1c62012-06-12 16:20:29 +02003416
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04003417const struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07003418 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07003419 .map_pages = filemap_map_pages,
Jan Kara4fcf1c62012-06-12 16:20:29 +02003420 .page_mkwrite = filemap_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421};
3422
3423/* This is used for a general mmap of a disk file */
3424
Zhiyuan Dai68d68ff2021-05-04 18:40:12 -07003425int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
3427 struct address_space *mapping = file->f_mapping;
3428
3429 if (!mapping->a_ops->readpage)
3430 return -ENOEXEC;
3431 file_accessed(file);
3432 vma->vm_ops = &generic_file_vm_ops;
3433 return 0;
3434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
3436/*
3437 * This is for filesystems which do not implement ->writepage.
3438 */
3439int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
3440{
3441 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
3442 return -EINVAL;
3443 return generic_file_mmap(file, vma);
3444}
3445#else
Souptick Joarder4b96a372018-10-26 15:04:03 -07003446vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
Arnd Bergmann453972282018-04-13 15:35:27 -07003447{
Souptick Joarder4b96a372018-10-26 15:04:03 -07003448 return VM_FAULT_SIGBUS;
Arnd Bergmann453972282018-04-13 15:35:27 -07003449}
Zhiyuan Dai68d68ff2021-05-04 18:40:12 -07003450int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451{
3452 return -ENOSYS;
3453}
Zhiyuan Dai68d68ff2021-05-04 18:40:12 -07003454int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455{
3456 return -ENOSYS;
3457}
3458#endif /* CONFIG_MMU */
3459
Arnd Bergmann453972282018-04-13 15:35:27 -07003460EXPORT_SYMBOL(filemap_page_mkwrite);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461EXPORT_SYMBOL(generic_file_mmap);
3462EXPORT_SYMBOL(generic_file_readonly_mmap);
3463
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003464static struct folio *do_read_cache_folio(struct address_space *mapping,
3465 pgoff_t index, filler_t filler, void *data, gfp_t gfp)
Sasha Levin67f9fd92014-04-03 14:48:18 -07003466{
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003467 struct folio *folio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 int err;
3469repeat:
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003470 folio = filemap_get_folio(mapping, index);
3471 if (!folio) {
3472 folio = filemap_alloc_folio(gfp, 0);
3473 if (!folio)
Nick Piggineb2be182007-10-16 01:24:57 -07003474 return ERR_PTR(-ENOMEM);
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003475 err = filemap_add_folio(mapping, folio, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07003476 if (unlikely(err)) {
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003477 folio_put(folio);
Nick Piggineb2be182007-10-16 01:24:57 -07003478 if (err == -EEXIST)
3479 goto repeat;
Matthew Wilcox22ecdb42017-12-04 04:02:00 -05003480 /* Presumably ENOMEM for xarray node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 return ERR_PTR(err);
3482 }
Mel Gorman32b63522016-03-15 14:55:36 -07003483
3484filler:
Christoph Hellwig6c45b452019-07-11 20:55:20 -07003485 if (filler)
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003486 err = filler(data, &folio->page);
Christoph Hellwig6c45b452019-07-11 20:55:20 -07003487 else
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003488 err = mapping->a_ops->readpage(data, &folio->page);
Christoph Hellwig6c45b452019-07-11 20:55:20 -07003489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 if (err < 0) {
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003491 folio_put(folio);
Mel Gorman32b63522016-03-15 14:55:36 -07003492 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 }
Mel Gorman32b63522016-03-15 14:55:36 -07003494
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003495 folio_wait_locked(folio);
3496 if (!folio_test_uptodate(folio)) {
3497 folio_put(folio);
3498 return ERR_PTR(-EIO);
3499 }
3500
Mel Gorman32b63522016-03-15 14:55:36 -07003501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 }
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003503 if (folio_test_uptodate(folio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 goto out;
3505
Matthew Wilcox (Oracle)81f4c032021-12-23 15:17:28 -05003506 if (!folio_trylock(folio)) {
3507 folio_put_wait_locked(folio, TASK_UNINTERRUPTIBLE);
3508 goto repeat;
3509 }
Mel Gormanebded022016-03-15 14:55:39 -07003510
Matthew Wilcox (Oracle)81f4c032021-12-23 15:17:28 -05003511 /* Folio was truncated from mapping */
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003512 if (!folio->mapping) {
3513 folio_unlock(folio);
3514 folio_put(folio);
Mel Gorman32b63522016-03-15 14:55:36 -07003515 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 }
Mel Gormanebded022016-03-15 14:55:39 -07003517
3518 /* Someone else locked and filled the page in a very small window */
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003519 if (folio_test_uptodate(folio)) {
3520 folio_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 goto out;
3522 }
Xianting Tianfaffdfa2020-04-01 21:04:47 -07003523
3524 /*
3525 * A previous I/O error may have been due to temporary
3526 * failures.
3527 * Clear page error before actual read, PG_error will be
3528 * set again if read page fails.
3529 */
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003530 folio_clear_error(folio);
Mel Gorman32b63522016-03-15 14:55:36 -07003531 goto filler;
3532
David Howellsc855ff32007-05-09 13:42:20 +01003533out:
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003534 folio_mark_accessed(folio);
3535 return folio;
Nick Piggin6fe69002007-05-06 14:49:04 -07003536}
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003537
3538/**
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003539 * read_cache_folio - read into page cache, fill it if needed
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003540 * @mapping: the page's address_space
3541 * @index: the page index
3542 * @filler: function to perform the read
Hugh Dickins5e5358e2011-07-25 17:12:23 -07003543 * @data: first arg to filler(data, page) function, often left as NULL
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003544 *
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003545 * Read into the page cache. If a page already exists, and PageUptodate() is
Sasha Levin67f9fd92014-04-03 14:48:18 -07003546 * not set, try to fill the page and wait for it to become unlocked.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003547 *
3548 * If the page does not get brought uptodate, return -EIO.
Mike Rapoporta862f682019-03-05 15:48:42 -08003549 *
Jan Kara730633f2021-01-28 19:19:45 +01003550 * The function expects mapping->invalidate_lock to be already held.
3551 *
Mike Rapoporta862f682019-03-05 15:48:42 -08003552 * Return: up to date page on success, ERR_PTR() on failure.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003553 */
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003554struct folio *read_cache_folio(struct address_space *mapping, pgoff_t index,
3555 filler_t filler, void *data)
3556{
3557 return do_read_cache_folio(mapping, index, filler, data,
3558 mapping_gfp_mask(mapping));
3559}
3560EXPORT_SYMBOL(read_cache_folio);
3561
3562static struct page *do_read_cache_page(struct address_space *mapping,
3563 pgoff_t index, filler_t *filler, void *data, gfp_t gfp)
3564{
3565 struct folio *folio;
3566
3567 folio = do_read_cache_folio(mapping, index, filler, data, gfp);
3568 if (IS_ERR(folio))
3569 return &folio->page;
3570 return folio_file_page(folio, index);
3571}
3572
Sasha Levin67f9fd92014-04-03 14:48:18 -07003573struct page *read_cache_page(struct address_space *mapping,
Matthew Wilcox (Oracle)539a3322020-12-16 11:45:30 -05003574 pgoff_t index, filler_t *filler, void *data)
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003575{
Christoph Hellwigd322a8e2019-07-11 20:55:17 -07003576 return do_read_cache_page(mapping, index, filler, data,
3577 mapping_gfp_mask(mapping));
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003578}
Sasha Levin67f9fd92014-04-03 14:48:18 -07003579EXPORT_SYMBOL(read_cache_page);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003580
3581/**
3582 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
3583 * @mapping: the page's address_space
3584 * @index: the page index
3585 * @gfp: the page allocator flags to use if allocating
3586 *
3587 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
Dave Kleikampe6f67b82011-12-21 11:05:48 -06003588 * any new page allocations done using the specified allocation flags.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003589 *
3590 * If the page does not get brought uptodate, return -EIO.
Mike Rapoporta862f682019-03-05 15:48:42 -08003591 *
Jan Kara730633f2021-01-28 19:19:45 +01003592 * The function expects mapping->invalidate_lock to be already held.
3593 *
Mike Rapoporta862f682019-03-05 15:48:42 -08003594 * Return: up to date page on success, ERR_PTR() on failure.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003595 */
3596struct page *read_cache_page_gfp(struct address_space *mapping,
3597 pgoff_t index,
3598 gfp_t gfp)
3599{
Christoph Hellwig6c45b452019-07-11 20:55:20 -07003600 return do_read_cache_page(mapping, index, NULL, NULL, gfp);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08003601}
3602EXPORT_SYMBOL(read_cache_page_gfp);
3603
Nick Pigginafddba42007-10-16 01:25:01 -07003604int pagecache_write_begin(struct file *file, struct address_space *mapping,
3605 loff_t pos, unsigned len, unsigned flags,
3606 struct page **pagep, void **fsdata)
3607{
3608 const struct address_space_operations *aops = mapping->a_ops;
3609
Nick Piggin4e02ed42008-10-29 14:00:55 -07003610 return aops->write_begin(file, mapping, pos, len, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07003611 pagep, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07003612}
3613EXPORT_SYMBOL(pagecache_write_begin);
3614
3615int pagecache_write_end(struct file *file, struct address_space *mapping,
3616 loff_t pos, unsigned len, unsigned copied,
3617 struct page *page, void *fsdata)
3618{
3619 const struct address_space_operations *aops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07003620
Nick Piggin4e02ed42008-10-29 14:00:55 -07003621 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07003622}
3623EXPORT_SYMBOL(pagecache_write_end);
3624
Konstantin Khlebnikova92853b2019-11-30 17:49:44 -08003625/*
3626 * Warn about a page cache invalidation failure during a direct I/O write.
3627 */
3628void dio_warn_stale_pagecache(struct file *filp)
3629{
3630 static DEFINE_RATELIMIT_STATE(_rs, 86400 * HZ, DEFAULT_RATELIMIT_BURST);
3631 char pathname[128];
Konstantin Khlebnikova92853b2019-11-30 17:49:44 -08003632 char *path;
3633
Christoph Hellwig5df1a672020-11-16 14:33:37 +01003634 errseq_set(&filp->f_mapping->wb_err, -EIO);
Konstantin Khlebnikova92853b2019-11-30 17:49:44 -08003635 if (__ratelimit(&_rs)) {
3636 path = file_path(filp, pathname, sizeof(pathname));
3637 if (IS_ERR(path))
3638 path = "(unknown)";
3639 pr_crit("Page cache invalidation failure on direct I/O. Possible data corruption due to collision with buffered I/O!\n");
3640 pr_crit("File: %s PID: %d Comm: %.20s\n", path, current->pid,
3641 current->comm);
3642 }
3643}
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645ssize_t
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07003646generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647{
3648 struct file *file = iocb->ki_filp;
3649 struct address_space *mapping = file->f_mapping;
3650 struct inode *inode = mapping->host;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07003651 loff_t pos = iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 ssize_t written;
Christoph Hellwiga969e902008-07-23 21:27:04 -07003653 size_t write_len;
3654 pgoff_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Al Viro0c949332014-03-22 06:51:37 -04003656 write_len = iov_iter_count(from);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003657 end = (pos + write_len - 1) >> PAGE_SHIFT;
Christoph Hellwiga969e902008-07-23 21:27:04 -07003658
Goldwyn Rodrigues6be96d32017-06-20 07:05:44 -05003659 if (iocb->ki_flags & IOCB_NOWAIT) {
3660 /* If there are pages to writeback, return */
Christoph Hellwig5df1a672020-11-16 14:33:37 +01003661 if (filemap_range_has_page(file->f_mapping, pos,
zhengbin35f12f02019-03-05 15:44:21 -08003662 pos + write_len - 1))
Goldwyn Rodrigues6be96d32017-06-20 07:05:44 -05003663 return -EAGAIN;
3664 } else {
3665 written = filemap_write_and_wait_range(mapping, pos,
3666 pos + write_len - 1);
3667 if (written)
3668 goto out;
3669 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07003670
3671 /*
3672 * After a write we want buffered reads to be sure to go to disk to get
3673 * the new data. We invalidate clean cached page from the region we're
3674 * about to write. We do this *before* the write so that we can return
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07003675 * without clobbering -EIOCBQUEUED from ->direct_IO().
Christoph Hellwiga969e902008-07-23 21:27:04 -07003676 */
Andrey Ryabinin55635ba2017-05-03 14:55:59 -07003677 written = invalidate_inode_pages2_range(mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003678 pos >> PAGE_SHIFT, end);
Andrey Ryabinin55635ba2017-05-03 14:55:59 -07003679 /*
3680 * If a page can not be invalidated, return 0 to fall back
3681 * to buffered write.
3682 */
3683 if (written) {
3684 if (written == -EBUSY)
3685 return 0;
3686 goto out;
Christoph Hellwiga969e902008-07-23 21:27:04 -07003687 }
3688
Al Viro639a93a52017-04-13 14:10:15 -04003689 written = mapping->a_ops->direct_IO(iocb, from);
Christoph Hellwiga969e902008-07-23 21:27:04 -07003690
3691 /*
3692 * Finally, try again to invalidate clean pages which might have been
3693 * cached by non-direct readahead, or faulted in by get_user_pages()
3694 * if the source of the write was an mmap'ed region of the file
3695 * we're writing. Either one is a pretty crazy thing to do,
3696 * so we don't support it 100%. If this invalidation
3697 * fails, tough, the write still worked...
Lukas Czerner332391a2017-09-21 08:16:29 -06003698 *
3699 * Most of the time we do not need this since dio_complete() will do
3700 * the invalidation for us. However there are some file systems that
3701 * do not end up with dio_complete() being called, so let's not break
Konstantin Khlebnikov80c1fe92019-11-30 17:49:41 -08003702 * them by removing it completely.
3703 *
Konstantin Khlebnikov9266a142019-11-30 17:49:47 -08003704 * Noticeable example is a blkdev_direct_IO().
3705 *
Konstantin Khlebnikov80c1fe92019-11-30 17:49:41 -08003706 * Skip invalidation for async writes or if mapping has no pages.
Christoph Hellwiga969e902008-07-23 21:27:04 -07003707 */
Konstantin Khlebnikov9266a142019-11-30 17:49:47 -08003708 if (written > 0 && mapping->nrpages &&
3709 invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT, end))
3710 dio_warn_stale_pagecache(file);
Christoph Hellwiga969e902008-07-23 21:27:04 -07003711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 if (written > 0) {
Namhyung Kim01166512010-10-26 14:21:58 -07003713 pos += written;
Al Viro639a93a52017-04-13 14:10:15 -04003714 write_len -= written;
Namhyung Kim01166512010-10-26 14:21:58 -07003715 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
3716 i_size_write(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 mark_inode_dirty(inode);
3718 }
Al Viro5cb6c6c2014-02-11 20:58:20 -05003719 iocb->ki_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 }
Pavel Begunkovab2125d2021-02-24 12:01:45 -08003721 if (written != -EIOCBQUEUED)
3722 iov_iter_revert(from, write_len - iov_iter_count(from));
Christoph Hellwiga969e902008-07-23 21:27:04 -07003723out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 return written;
3725}
3726EXPORT_SYMBOL(generic_file_direct_write);
3727
Al Viro3b93f912014-02-11 21:34:08 -05003728ssize_t generic_perform_write(struct file *file,
Nick Pigginafddba42007-10-16 01:25:01 -07003729 struct iov_iter *i, loff_t pos)
3730{
3731 struct address_space *mapping = file->f_mapping;
3732 const struct address_space_operations *a_ops = mapping->a_ops;
3733 long status = 0;
3734 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07003735 unsigned int flags = 0;
3736
Nick Pigginafddba42007-10-16 01:25:01 -07003737 do {
3738 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003739 unsigned long offset; /* Offset into pagecache page */
3740 unsigned long bytes; /* Bytes to write to page */
3741 size_t copied; /* Bytes copied from user */
3742 void *fsdata;
3743
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003744 offset = (pos & (PAGE_SIZE - 1));
3745 bytes = min_t(unsigned long, PAGE_SIZE - offset,
Nick Pigginafddba42007-10-16 01:25:01 -07003746 iov_iter_count(i));
3747
3748again:
Linus Torvalds00a3d662015-10-07 08:32:38 +01003749 /*
3750 * Bring in the user page that we will copy from _first_.
3751 * Otherwise there's a nasty deadlock on copying from the
3752 * same page as we're writing to, without it being marked
3753 * up-to-date.
Linus Torvalds00a3d662015-10-07 08:32:38 +01003754 */
Andreas Gruenbachera6294592021-08-02 14:54:16 +02003755 if (unlikely(fault_in_iov_iter_readable(i, bytes))) {
Linus Torvalds00a3d662015-10-07 08:32:38 +01003756 status = -EFAULT;
3757 break;
3758 }
3759
Jan Kara296291c2015-10-22 13:32:21 -07003760 if (fatal_signal_pending(current)) {
3761 status = -EINTR;
3762 break;
3763 }
3764
Nick Piggin674b8922007-10-16 01:25:03 -07003765 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07003766 &page, &fsdata);
Mel Gorman2457aec2014-06-04 16:10:31 -07003767 if (unlikely(status < 0))
Nick Pigginafddba42007-10-16 01:25:01 -07003768 break;
3769
anfei zhou931e80e2010-02-02 13:44:02 -08003770 if (mapping_writably_mapped(mapping))
3771 flush_dcache_page(page);
Linus Torvalds00a3d662015-10-07 08:32:38 +01003772
Al Virof0b65f32021-04-30 10:26:41 -04003773 copied = copy_page_from_iter_atomic(page, offset, bytes, i);
Nick Pigginafddba42007-10-16 01:25:01 -07003774 flush_dcache_page(page);
3775
3776 status = a_ops->write_end(file, mapping, pos, bytes, copied,
3777 page, fsdata);
Al Virof0b65f32021-04-30 10:26:41 -04003778 if (unlikely(status != copied)) {
3779 iov_iter_revert(i, copied - max(status, 0L));
3780 if (unlikely(status < 0))
3781 break;
3782 }
Nick Pigginafddba42007-10-16 01:25:01 -07003783 cond_resched();
3784
Al Virobc1bb412021-05-31 00:32:44 -04003785 if (unlikely(status == 0)) {
Nick Pigginafddba42007-10-16 01:25:01 -07003786 /*
Al Virobc1bb412021-05-31 00:32:44 -04003787 * A short copy made ->write_end() reject the
3788 * thing entirely. Might be memory poisoning
3789 * halfway through, might be a race with munmap,
3790 * might be severe memory pressure.
Nick Pigginafddba42007-10-16 01:25:01 -07003791 */
Al Virobc1bb412021-05-31 00:32:44 -04003792 if (copied)
3793 bytes = copied;
Nick Pigginafddba42007-10-16 01:25:01 -07003794 goto again;
3795 }
Al Virof0b65f32021-04-30 10:26:41 -04003796 pos += status;
3797 written += status;
Nick Pigginafddba42007-10-16 01:25:01 -07003798
3799 balance_dirty_pages_ratelimited(mapping);
Nick Pigginafddba42007-10-16 01:25:01 -07003800 } while (iov_iter_count(i));
3801
3802 return written ? written : status;
3803}
Al Viro3b93f912014-02-11 21:34:08 -05003804EXPORT_SYMBOL(generic_perform_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
Jan Karae4dd9de2009-08-17 18:10:06 +02003806/**
Al Viro81742022014-04-03 03:17:43 -04003807 * __generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02003808 * @iocb: IO state structure (file, offset, etc.)
Al Viro81742022014-04-03 03:17:43 -04003809 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02003810 *
3811 * This function does all the work needed for actually writing data to a
3812 * file. It does all basic checks, removes SUID from the file, updates
3813 * modification times and calls proper subroutines depending on whether we
3814 * do direct IO or a standard buffered write.
3815 *
Jan Kara96087032021-04-12 15:50:21 +02003816 * It expects i_rwsem to be grabbed unless we work on a block device or similar
Jan Karae4dd9de2009-08-17 18:10:06 +02003817 * object which does not need locking at all.
3818 *
3819 * This function does *not* take care of syncing data in case of O_SYNC write.
3820 * A caller has to handle it. This is mainly due to the fact that we want to
Jan Kara96087032021-04-12 15:50:21 +02003821 * avoid syncing under i_rwsem.
Mike Rapoporta862f682019-03-05 15:48:42 -08003822 *
3823 * Return:
3824 * * number of bytes written, even for truncated writes
3825 * * negative error code if no data has been written at all
Jan Karae4dd9de2009-08-17 18:10:06 +02003826 */
Al Viro81742022014-04-03 03:17:43 -04003827ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
3829 struct file *file = iocb->ki_filp;
Zhiyuan Dai68d68ff2021-05-04 18:40:12 -07003830 struct address_space *mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 struct inode *inode = mapping->host;
Al Viro3b93f912014-02-11 21:34:08 -05003832 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 ssize_t err;
Al Viro3b93f912014-02-11 21:34:08 -05003834 ssize_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01003837 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02003838 err = file_remove_privs(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 if (err)
3840 goto out;
3841
Josef Bacikc3b2da32012-03-26 09:59:21 -04003842 err = file_update_time(file);
3843 if (err)
3844 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Al Viro2ba48ce2015-04-09 13:52:01 -04003846 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro0b8def92015-04-07 10:22:53 -04003847 loff_t pos, endbyte;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003848
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07003849 written = generic_file_direct_write(iocb, from);
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08003850 /*
3851 * If the write stopped short of completing, fall back to
3852 * buffered writes. Some filesystems do this for writes to
3853 * holes, for example. For DAX files, a buffered write will
3854 * not succeed (even if it did, DAX does not handle dirty
3855 * page-cache pages correctly).
3856 */
Al Viro0b8def92015-04-07 10:22:53 -04003857 if (written < 0 || !iov_iter_count(from) || IS_DAX(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 goto out;
Al Viro3b93f912014-02-11 21:34:08 -05003859
Al Viro0b8def92015-04-07 10:22:53 -04003860 status = generic_perform_write(file, from, pos = iocb->ki_pos);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003861 /*
Al Viro3b93f912014-02-11 21:34:08 -05003862 * If generic_perform_write() returned a synchronous error
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003863 * then we want to return the number of bytes which were
3864 * direct-written, or the error code if that was zero. Note
3865 * that this differs from normal direct-io semantics, which
3866 * will return -EFOO even if some bytes were written.
3867 */
Al Viro60bb4522014-08-08 12:39:16 -04003868 if (unlikely(status < 0)) {
Al Viro3b93f912014-02-11 21:34:08 -05003869 err = status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003870 goto out;
3871 }
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003872 /*
3873 * We need to ensure that the page cache pages are written to
3874 * disk and invalidated to preserve the expected O_DIRECT
3875 * semantics.
3876 */
Al Viro3b93f912014-02-11 21:34:08 -05003877 endbyte = pos + status - 1;
Al Viro0b8def92015-04-07 10:22:53 -04003878 err = filemap_write_and_wait_range(mapping, pos, endbyte);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003879 if (err == 0) {
Al Viro0b8def92015-04-07 10:22:53 -04003880 iocb->ki_pos = endbyte + 1;
Al Viro3b93f912014-02-11 21:34:08 -05003881 written += status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003882 invalidate_mapping_pages(mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003883 pos >> PAGE_SHIFT,
3884 endbyte >> PAGE_SHIFT);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003885 } else {
3886 /*
3887 * We don't know how much we wrote, so just return
3888 * the number of bytes which were direct-written
3889 */
3890 }
3891 } else {
Al Viro0b8def92015-04-07 10:22:53 -04003892 written = generic_perform_write(file, from, iocb->ki_pos);
3893 if (likely(written > 0))
3894 iocb->ki_pos += written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07003895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896out:
3897 current->backing_dev_info = NULL;
3898 return written ? written : err;
3899}
Al Viro81742022014-04-03 03:17:43 -04003900EXPORT_SYMBOL(__generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Jan Karae4dd9de2009-08-17 18:10:06 +02003902/**
Al Viro81742022014-04-03 03:17:43 -04003903 * generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02003904 * @iocb: IO state structure
Al Viro81742022014-04-03 03:17:43 -04003905 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02003906 *
Al Viro81742022014-04-03 03:17:43 -04003907 * This is a wrapper around __generic_file_write_iter() to be used by most
Jan Karae4dd9de2009-08-17 18:10:06 +02003908 * filesystems. It takes care of syncing the file in case of O_SYNC file
Jan Kara96087032021-04-12 15:50:21 +02003909 * and acquires i_rwsem as needed.
Mike Rapoporta862f682019-03-05 15:48:42 -08003910 * Return:
3911 * * negative error code if no data has been written at all of
3912 * vfs_fsync_range() failed for a synchronous write
3913 * * number of bytes written, even for truncated writes
Jan Karae4dd9de2009-08-17 18:10:06 +02003914 */
Al Viro81742022014-04-03 03:17:43 -04003915ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916{
3917 struct file *file = iocb->ki_filp;
Jan Kara148f9482009-08-17 19:52:36 +02003918 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Al Viro59551022016-01-22 15:40:57 -05003921 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04003922 ret = generic_write_checks(iocb, from);
3923 if (ret > 0)
Al Viro5f380c72015-04-07 11:28:12 -04003924 ret = __generic_file_write_iter(iocb, from);
Al Viro59551022016-01-22 15:40:57 -05003925 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Christoph Hellwige2592212016-04-07 08:52:01 -07003927 if (ret > 0)
3928 ret = generic_write_sync(iocb, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 return ret;
3930}
Al Viro81742022014-04-03 03:17:43 -04003931EXPORT_SYMBOL(generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
David Howellscf9a2ae2006-08-29 19:05:54 +01003933/**
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003934 * filemap_release_folio() - Release fs-specific metadata on a folio.
3935 * @folio: The folio which the kernel is trying to free.
3936 * @gfp: Memory allocation flags (and I/O mode).
David Howellscf9a2ae2006-08-29 19:05:54 +01003937 *
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003938 * The address_space is trying to release any data attached to a folio
3939 * (presumably at folio->private).
David Howellscf9a2ae2006-08-29 19:05:54 +01003940 *
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003941 * This will also be called if the private_2 flag is set on a page,
3942 * indicating that the folio has other metadata associated with it.
David Howellscf9a2ae2006-08-29 19:05:54 +01003943 *
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003944 * The @gfp argument specifies whether I/O may be performed to release
3945 * this page (__GFP_IO), and whether the call may block
3946 * (__GFP_RECLAIM & __GFP_FS).
David Howells266cf652009-04-03 16:42:36 +01003947 *
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003948 * Return: %true if the release was successful, otherwise %false.
David Howellscf9a2ae2006-08-29 19:05:54 +01003949 */
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003950bool filemap_release_folio(struct folio *folio, gfp_t gfp)
David Howellscf9a2ae2006-08-29 19:05:54 +01003951{
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003952 struct address_space * const mapping = folio->mapping;
David Howellscf9a2ae2006-08-29 19:05:54 +01003953
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003954 BUG_ON(!folio_test_locked(folio));
3955 if (folio_test_writeback(folio))
3956 return false;
David Howellscf9a2ae2006-08-29 19:05:54 +01003957
3958 if (mapping && mapping->a_ops->releasepage)
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003959 return mapping->a_ops->releasepage(&folio->page, gfp);
3960 return try_to_free_buffers(&folio->page);
David Howellscf9a2ae2006-08-29 19:05:54 +01003961}
Matthew Wilcox (Oracle)82c50f82021-07-28 15:14:48 -04003962EXPORT_SYMBOL(filemap_release_folio);