xref: /linux/mm/filemap.c (revision a1a8bab74176eed204a3139ab7ad840caa3d73b8)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *	linux/mm/filemap.c
4  *
5  * Copyright (C) 1994-1999  Linus Torvalds
6  */
7 
8 /*
9  * This file handles the generic file mmap semantics used by
10  * most "normal" filesystems (but you don't /have/ to use this:
11  * the NFS filesystem used to do this differently, for example)
12  */
13 #include <linux/export.h>
14 #include <linux/compiler.h>
15 #include <linux/dax.h>
16 #include <linux/fs.h>
17 #include <linux/sched/signal.h>
18 #include <linux/uaccess.h>
19 #include <linux/capability.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/gfp.h>
22 #include <linux/mm.h>
23 #include <linux/swap.h>
24 #include <linux/leafops.h>
25 #include <linux/syscalls.h>
26 #include <linux/mman.h>
27 #include <linux/pagemap.h>
28 #include <linux/file.h>
29 #include <linux/uio.h>
30 #include <linux/error-injection.h>
31 #include <linux/hash.h>
32 #include <linux/writeback.h>
33 #include <linux/backing-dev.h>
34 #include <linux/folio_batch.h>
35 #include <linux/security.h>
36 #include <linux/cpuset.h>
37 #include <linux/hugetlb.h>
38 #include <linux/memcontrol.h>
39 #include <linux/shmem_fs.h>
40 #include <linux/rmap.h>
41 #include <linux/delayacct.h>
42 #include <linux/psi.h>
43 #include <linux/ramfs.h>
44 #include <linux/page_idle.h>
45 #include <linux/migrate.h>
46 #include <linux/pipe_fs_i.h>
47 #include <linux/splice.h>
48 #include <linux/rcupdate_wait.h>
49 #include <linux/sched/mm.h>
50 #include <linux/sysctl.h>
51 #include <linux/pgalloc.h>
52 
53 #include <asm/tlbflush.h>
54 #include "internal.h"
55 
56 #define CREATE_TRACE_POINTS
57 #include <trace/events/filemap.h>
58 
59 /*
60  * FIXME: remove all knowledge of the buffer layer from the core VM
61  */
62 #include <linux/buffer_head.h> /* for try_to_free_buffers */
63 
64 #include <asm/mman.h>
65 
66 #include "swap.h"
67 
68 /*
69  * Shared mappings implemented 30.11.1994. It's not fully working yet,
70  * though.
71  *
72  * Shared mappings now work. 15.8.1995  Bruno.
73  *
74  * finished 'unifying' the page and buffer cache and SMP-threaded the
75  * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
76  *
77  * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
78  */
79 
80 /*
81  * Lock ordering:
82  *
83  *  ->i_mmap_rwsem		(truncate_pagecache)
84  *    ->private_lock		(__free_pte->block_dirty_folio)
85  *      ->swap_lock		(exclusive_swap_page, others)
86  *        ->i_pages lock
87  *
88  *  ->i_rwsem
89  *    ->invalidate_lock		(acquired by fs in truncate path)
90  *      ->i_mmap_rwsem		(truncate->unmap_mapping_range)
91  *
92  *  ->mmap_lock
93  *    ->i_mmap_rwsem
94  *      ->page_table_lock or pte_lock	(various, mainly in memory.c)
95  *        ->i_pages lock	(arch-dependent flush_dcache_mmap_lock)
96  *
97  *  ->mmap_lock
98  *    ->invalidate_lock		(filemap_fault)
99  *      ->lock_page		(filemap_fault, access_process_vm)
100  *
101  *  ->i_rwsem			(generic_perform_write)
102  *    ->mmap_lock		(fault_in_readable->do_page_fault)
103  *
104  *  bdi->wb.list_lock
105  *    sb_lock			(fs/fs-writeback.c)
106  *    ->i_pages lock		(__sync_single_inode)
107  *
108  *  ->i_mmap_rwsem
109  *    ->anon_vma.lock		(vma_merge)
110  *
111  *  ->anon_vma.lock
112  *    ->page_table_lock or pte_lock	(anon_vma_prepare and various)
113  *
114  *  ->page_table_lock or pte_lock
115  *    ->swap_lock		(try_to_unmap_one)
116  *    ->private_lock		(try_to_unmap_one)
117  *    ->i_pages lock		(try_to_unmap_one)
118  *    ->lruvec->lru_lock	(follow_page_mask->mark_page_accessed)
119  *    ->lruvec->lru_lock	(check_pte_range->folio_isolate_lru)
120  *    ->private_lock		(folio_remove_rmap_pte->set_page_dirty)
121  *    ->i_pages lock		(folio_remove_rmap_pte->set_page_dirty)
122  *    bdi.wb->list_lock		(folio_remove_rmap_pte->set_page_dirty)
123  *    ->inode->i_lock		(folio_remove_rmap_pte->set_page_dirty)
124  *    bdi.wb->list_lock		(zap_pte_range->set_page_dirty)
125  *    ->inode->i_lock		(zap_pte_range->set_page_dirty)
126  *    ->private_lock		(zap_pte_range->block_dirty_folio)
127  */
128 
129 static void page_cache_delete(struct address_space *mapping,
130 				   struct folio *folio, void *shadow)
131 {
132 	XA_STATE(xas, &mapping->i_pages, folio->index);
133 	long nr = 1;
134 
135 	mapping_set_update(&xas, mapping);
136 
137 	xas_set_order(&xas, folio->index, folio_order(folio));
138 	nr = folio_nr_pages(folio);
139 
140 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
141 
142 	xas_store(&xas, shadow);
143 	xas_init_marks(&xas);
144 
145 	folio->mapping = NULL;
146 	/* Leave folio->index set: truncation lookup relies upon it */
147 	mapping->nrpages -= nr;
148 }
149 
150 static void filemap_unaccount_folio(struct address_space *mapping,
151 		struct folio *folio)
152 {
153 	long nr;
154 
155 	VM_BUG_ON_FOLIO(folio_mapped(folio), folio);
156 	if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(folio_mapped(folio))) {
157 		pr_alert("BUG: Bad page cache in process %s  pfn:%05lx\n",
158 			 current->comm, folio_pfn(folio));
159 		dump_page(&folio->page, "still mapped when deleted");
160 		dump_stack();
161 		add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
162 
163 		if (mapping_exiting(mapping) && !folio_test_large(folio)) {
164 			int mapcount = folio_mapcount(folio);
165 
166 			if (folio_ref_count(folio) >= mapcount + 2) {
167 				/*
168 				 * All vmas have already been torn down, so it's
169 				 * a good bet that actually the page is unmapped
170 				 * and we'd rather not leak it: if we're wrong,
171 				 * another bad page check should catch it later.
172 				 */
173 				atomic_set(&folio->_mapcount, -1);
174 				folio_ref_sub(folio, mapcount);
175 			}
176 		}
177 	}
178 
179 	/* hugetlb folios do not participate in page cache accounting. */
180 	if (folio_test_hugetlb(folio))
181 		return;
182 
183 	nr = folio_nr_pages(folio);
184 
185 	lruvec_stat_mod_folio(folio, NR_FILE_PAGES, -nr);
186 	if (folio_test_swapbacked(folio)) {
187 		lruvec_stat_mod_folio(folio, NR_SHMEM, -nr);
188 		if (folio_test_pmd_mappable(folio))
189 			lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, -nr);
190 	} else if (folio_test_pmd_mappable(folio)) {
191 		lruvec_stat_mod_folio(folio, NR_FILE_THPS, -nr);
192 	}
193 	if (test_bit(AS_KERNEL_FILE, &folio->mapping->flags))
194 		mod_node_page_state(folio_pgdat(folio),
195 				    NR_KERNEL_FILE_PAGES, -nr);
196 
197 	/*
198 	 * At this point folio must be either written or cleaned by
199 	 * truncate.  Dirty folio here signals a bug and loss of
200 	 * unwritten data - on ordinary filesystems.
201 	 *
202 	 * But it's harmless on in-memory filesystems like tmpfs; and can
203 	 * occur when a driver which did get_user_pages() sets page dirty
204 	 * before putting it, while the inode is being finally evicted.
205 	 *
206 	 * Below fixes dirty accounting after removing the folio entirely
207 	 * but leaves the dirty flag set: it has no effect for truncated
208 	 * folio and anyway will be cleared before returning folio to
209 	 * buddy allocator.
210 	 */
211 	if (WARN_ON_ONCE(folio_test_dirty(folio) &&
212 			 mapping_can_writeback(mapping)))
213 		folio_account_cleaned(folio, inode_to_wb(mapping->host));
214 }
215 
216 /*
217  * Delete a page from the page cache and free it. Caller has to make
218  * sure the page is locked and that nobody else uses it - or that usage
219  * is safe.  The caller must hold the i_pages lock.
220  */
221 void __filemap_remove_folio(struct folio *folio, void *shadow)
222 {
223 	struct address_space *mapping = folio->mapping;
224 
225 	trace_mm_filemap_delete_from_page_cache(folio);
226 	filemap_unaccount_folio(mapping, folio);
227 	page_cache_delete(mapping, folio, shadow);
228 }
229 
230 static void filemap_free_folio(const struct address_space *mapping,
231 		struct folio *folio)
232 {
233 	void (*free_folio)(struct folio *);
234 
235 	free_folio = mapping->a_ops->free_folio;
236 	if (free_folio)
237 		free_folio(folio);
238 
239 	folio_put_refs(folio, folio_nr_pages(folio));
240 }
241 
242 /**
243  * filemap_remove_folio - Remove folio from page cache.
244  * @folio: The folio.
245  *
246  * This must be called only on folios that are locked and have been
247  * verified to be in the page cache.  It will never put the folio into
248  * the free list because the caller has a reference on the page.
249  */
250 void filemap_remove_folio(struct folio *folio)
251 {
252 	struct address_space *mapping = folio->mapping;
253 
254 	BUG_ON(!folio_test_locked(folio));
255 	spin_lock(&mapping->host->i_lock);
256 	xa_lock_irq(&mapping->i_pages);
257 	__filemap_remove_folio(folio, NULL);
258 	xa_unlock_irq(&mapping->i_pages);
259 	if (mapping_shrinkable(mapping))
260 		inode_lru_list_add(mapping->host);
261 	spin_unlock(&mapping->host->i_lock);
262 
263 	filemap_free_folio(mapping, folio);
264 }
265 
266 /*
267  * page_cache_delete_batch - delete several folios from page cache
268  * @mapping: the mapping to which folios belong
269  * @fbatch: batch of folios to delete
270  *
271  * The function walks over mapping->i_pages and removes folios passed in
272  * @fbatch from the mapping. The function expects @fbatch to be sorted
273  * by page index and is optimised for it to be dense.
274  * It tolerates holes in @fbatch (mapping entries at those indices are not
275  * modified).
276  *
277  * The function expects the i_pages lock to be held.
278  */
279 static void page_cache_delete_batch(struct address_space *mapping,
280 			     struct folio_batch *fbatch)
281 {
282 	XA_STATE(xas, &mapping->i_pages, fbatch->folios[0]->index);
283 	long total_pages = 0;
284 	int i = 0;
285 	struct folio *folio;
286 
287 	mapping_set_update(&xas, mapping);
288 	xas_for_each(&xas, folio, ULONG_MAX) {
289 		if (i >= folio_batch_count(fbatch))
290 			break;
291 
292 		/* A swap/dax/shadow entry got inserted? Skip it. */
293 		if (xa_is_value(folio))
294 			continue;
295 		/*
296 		 * A page got inserted in our range? Skip it. We have our
297 		 * pages locked so they are protected from being removed.
298 		 * If we see a page whose index is higher than ours, it
299 		 * means our page has been removed, which shouldn't be
300 		 * possible because we're holding the PageLock.
301 		 */
302 		if (folio != fbatch->folios[i]) {
303 			VM_BUG_ON_FOLIO(folio->index >
304 					fbatch->folios[i]->index, folio);
305 			continue;
306 		}
307 
308 		WARN_ON_ONCE(!folio_test_locked(folio));
309 
310 		folio->mapping = NULL;
311 		/* Leave folio->index set: truncation lookup relies on it */
312 
313 		i++;
314 		xas_store(&xas, NULL);
315 		total_pages += folio_nr_pages(folio);
316 	}
317 	mapping->nrpages -= total_pages;
318 }
319 
320 void delete_from_page_cache_batch(struct address_space *mapping,
321 				  struct folio_batch *fbatch)
322 {
323 	int i;
324 
325 	if (!folio_batch_count(fbatch))
326 		return;
327 
328 	spin_lock(&mapping->host->i_lock);
329 	xa_lock_irq(&mapping->i_pages);
330 	for (i = 0; i < folio_batch_count(fbatch); i++) {
331 		struct folio *folio = fbatch->folios[i];
332 
333 		trace_mm_filemap_delete_from_page_cache(folio);
334 		filemap_unaccount_folio(mapping, folio);
335 	}
336 	page_cache_delete_batch(mapping, fbatch);
337 	xa_unlock_irq(&mapping->i_pages);
338 	if (mapping_shrinkable(mapping))
339 		inode_lru_list_add(mapping->host);
340 	spin_unlock(&mapping->host->i_lock);
341 
342 	for (i = 0; i < folio_batch_count(fbatch); i++)
343 		filemap_free_folio(mapping, fbatch->folios[i]);
344 }
345 
346 int filemap_check_errors(struct address_space *mapping)
347 {
348 	int ret = 0;
349 	/* Check for outstanding write errors */
350 	if (test_bit(AS_ENOSPC, &mapping->flags) &&
351 	    test_and_clear_bit(AS_ENOSPC, &mapping->flags))
352 		ret = -ENOSPC;
353 	if (test_bit(AS_EIO, &mapping->flags) &&
354 	    test_and_clear_bit(AS_EIO, &mapping->flags))
355 		ret = -EIO;
356 	return ret;
357 }
358 EXPORT_SYMBOL(filemap_check_errors);
359 
360 static int filemap_check_and_keep_errors(struct address_space *mapping)
361 {
362 	/* Check for outstanding write errors */
363 	if (test_bit(AS_EIO, &mapping->flags))
364 		return -EIO;
365 	if (test_bit(AS_ENOSPC, &mapping->flags))
366 		return -ENOSPC;
367 	return 0;
368 }
369 
370 static int filemap_writeback(struct address_space *mapping, loff_t start,
371 		loff_t end, enum writeback_sync_modes sync_mode,
372 		long *nr_to_write)
373 {
374 	struct writeback_control wbc = {
375 		.sync_mode	= sync_mode,
376 		.nr_to_write	= nr_to_write ? *nr_to_write : LONG_MAX,
377 		.range_start	= start,
378 		.range_end	= end,
379 	};
380 	int ret;
381 
382 	if (!mapping_can_writeback(mapping) ||
383 	    !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
384 		return 0;
385 
386 	wbc_attach_fdatawrite_inode(&wbc, mapping->host);
387 	ret = do_writepages(mapping, &wbc);
388 	wbc_detach_inode(&wbc);
389 
390 	if (!ret && nr_to_write)
391 		*nr_to_write = wbc.nr_to_write;
392 	return ret;
393 }
394 
395 /**
396  * filemap_fdatawrite_range - start writeback on mapping dirty pages in range
397  * @mapping:	address space structure to write
398  * @start:	offset in bytes where the range starts
399  * @end:	offset in bytes where the range ends (inclusive)
400  *
401  * Start writeback against all of a mapping's dirty pages that lie
402  * within the byte offsets <start, end> inclusive.
403  *
404  * This is a data integrity operation that waits upon dirty or in writeback
405  * pages.
406  *
407  * Return: %0 on success, negative error code otherwise.
408  */
409 int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
410 		loff_t end)
411 {
412 	return filemap_writeback(mapping, start, end, WB_SYNC_ALL, NULL);
413 }
414 EXPORT_SYMBOL(filemap_fdatawrite_range);
415 
416 int filemap_fdatawrite(struct address_space *mapping)
417 {
418 	return filemap_fdatawrite_range(mapping, 0, LLONG_MAX);
419 }
420 EXPORT_SYMBOL(filemap_fdatawrite);
421 
422 /**
423  * filemap_flush_range - start writeback on a range
424  * @mapping:	target address_space
425  * @start:	index to start writeback on
426  * @end:	last (inclusive) index for writeback
427  *
428  * This is a non-integrity writeback helper, to start writing back folios
429  * for the indicated range.
430  *
431  * Return: %0 on success, negative error code otherwise.
432  */
433 int filemap_flush_range(struct address_space *mapping, loff_t start,
434 				  loff_t end)
435 {
436 	return filemap_writeback(mapping, start, end, WB_SYNC_NONE, NULL);
437 }
438 EXPORT_SYMBOL_GPL(filemap_flush_range);
439 
440 /**
441  * filemap_flush - mostly a non-blocking flush
442  * @mapping:	target address_space
443  *
444  * This is a mostly non-blocking flush.  Not suitable for data-integrity
445  * purposes - I/O may not be started against all dirty pages.
446  *
447  * Return: %0 on success, negative error code otherwise.
448  */
449 int filemap_flush(struct address_space *mapping)
450 {
451 	return filemap_flush_range(mapping, 0, LLONG_MAX);
452 }
453 EXPORT_SYMBOL(filemap_flush);
454 
455 /*
456  * Start writeback on @nr_to_write pages from @mapping.  No one but the existing
457  * btrfs caller should be using this.  Talk to linux-mm if you think adding a
458  * new caller is a good idea.
459  */
460 int filemap_flush_nr(struct address_space *mapping, long *nr_to_write)
461 {
462 	return filemap_writeback(mapping, 0, LLONG_MAX, WB_SYNC_NONE,
463 			nr_to_write);
464 }
465 EXPORT_SYMBOL_FOR_MODULES(filemap_flush_nr, "btrfs");
466 
467 /**
468  * filemap_range_has_page - check if a page exists in range.
469  * @mapping:           address space within which to check
470  * @start_byte:        offset in bytes where the range starts
471  * @end_byte:          offset in bytes where the range ends (inclusive)
472  *
473  * Find at least one page in the range supplied, usually used to check if
474  * direct writing in this range will trigger a writeback.
475  *
476  * Return: %true if at least one page exists in the specified range,
477  * %false otherwise.
478  */
479 bool filemap_range_has_page(struct address_space *mapping,
480 			   loff_t start_byte, loff_t end_byte)
481 {
482 	struct folio *folio;
483 	XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
484 	pgoff_t max = end_byte >> PAGE_SHIFT;
485 
486 	if (end_byte < start_byte)
487 		return false;
488 
489 	rcu_read_lock();
490 	for (;;) {
491 		folio = xas_find(&xas, max);
492 		if (xas_retry(&xas, folio))
493 			continue;
494 		/* Shadow entries don't count */
495 		if (xa_is_value(folio))
496 			continue;
497 		/*
498 		 * We don't need to try to pin this page; we're about to
499 		 * release the RCU lock anyway.  It is enough to know that
500 		 * there was a page here recently.
501 		 */
502 		break;
503 	}
504 	rcu_read_unlock();
505 
506 	return folio != NULL;
507 }
508 EXPORT_SYMBOL(filemap_range_has_page);
509 
510 static void __filemap_fdatawait_range(struct address_space *mapping,
511 				     loff_t start_byte, loff_t end_byte)
512 {
513 	pgoff_t index = start_byte >> PAGE_SHIFT;
514 	pgoff_t end = end_byte >> PAGE_SHIFT;
515 	struct folio_batch fbatch;
516 	unsigned nr_folios;
517 
518 	folio_batch_init(&fbatch);
519 
520 	while (index <= end) {
521 		unsigned i;
522 
523 		nr_folios = filemap_get_folios_tag(mapping, &index, end,
524 				PAGECACHE_TAG_WRITEBACK, &fbatch);
525 
526 		if (!nr_folios)
527 			break;
528 
529 		for (i = 0; i < nr_folios; i++) {
530 			struct folio *folio = fbatch.folios[i];
531 
532 			folio_wait_writeback(folio);
533 		}
534 		folio_batch_release(&fbatch);
535 		cond_resched();
536 	}
537 }
538 
539 /**
540  * filemap_fdatawait_range - wait for writeback to complete
541  * @mapping:		address space structure to wait for
542  * @start_byte:		offset in bytes where the range starts
543  * @end_byte:		offset in bytes where the range ends (inclusive)
544  *
545  * Walk the list of under-writeback pages of the given address space
546  * in the given range and wait for all of them.  Check error status of
547  * the address space and return it.
548  *
549  * Since the error status of the address space is cleared by this function,
550  * callers are responsible for checking the return value and handling and/or
551  * reporting the error.
552  *
553  * Return: error status of the address space.
554  */
555 int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
556 			    loff_t end_byte)
557 {
558 	__filemap_fdatawait_range(mapping, start_byte, end_byte);
559 	return filemap_check_errors(mapping);
560 }
561 EXPORT_SYMBOL(filemap_fdatawait_range);
562 
563 /**
564  * filemap_fdatawait_range_keep_errors - wait for writeback to complete
565  * @mapping:		address space structure to wait for
566  * @start_byte:		offset in bytes where the range starts
567  * @end_byte:		offset in bytes where the range ends (inclusive)
568  *
569  * Walk the list of under-writeback pages of the given address space in the
570  * given range and wait for all of them.  Unlike filemap_fdatawait_range(),
571  * this function does not clear error status of the address space.
572  *
573  * Use this function if callers don't handle errors themselves.  Expected
574  * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
575  * fsfreeze(8)
576  */
577 int filemap_fdatawait_range_keep_errors(struct address_space *mapping,
578 		loff_t start_byte, loff_t end_byte)
579 {
580 	__filemap_fdatawait_range(mapping, start_byte, end_byte);
581 	return filemap_check_and_keep_errors(mapping);
582 }
583 EXPORT_SYMBOL(filemap_fdatawait_range_keep_errors);
584 
585 /**
586  * file_fdatawait_range - wait for writeback to complete
587  * @file:		file pointing to address space structure to wait for
588  * @start_byte:		offset in bytes where the range starts
589  * @end_byte:		offset in bytes where the range ends (inclusive)
590  *
591  * Walk the list of under-writeback pages of the address space that file
592  * refers to, in the given range and wait for all of them.  Check error
593  * status of the address space vs. the file->f_wb_err cursor and return it.
594  *
595  * Since the error status of the file is advanced by this function,
596  * callers are responsible for checking the return value and handling and/or
597  * reporting the error.
598  *
599  * Return: error status of the address space vs. the file->f_wb_err cursor.
600  */
601 int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte)
602 {
603 	struct address_space *mapping = file->f_mapping;
604 
605 	__filemap_fdatawait_range(mapping, start_byte, end_byte);
606 	return file_check_and_advance_wb_err(file);
607 }
608 EXPORT_SYMBOL(file_fdatawait_range);
609 
610 /**
611  * filemap_fdatawait_keep_errors - wait for writeback without clearing errors
612  * @mapping: address space structure to wait for
613  *
614  * Walk the list of under-writeback pages of the given address space
615  * and wait for all of them.  Unlike filemap_fdatawait(), this function
616  * does not clear error status of the address space.
617  *
618  * Use this function if callers don't handle errors themselves.  Expected
619  * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
620  * fsfreeze(8)
621  *
622  * Return: error status of the address space.
623  */
624 int filemap_fdatawait_keep_errors(struct address_space *mapping)
625 {
626 	__filemap_fdatawait_range(mapping, 0, LLONG_MAX);
627 	return filemap_check_and_keep_errors(mapping);
628 }
629 EXPORT_SYMBOL(filemap_fdatawait_keep_errors);
630 
631 /* Returns true if writeback might be needed or already in progress. */
632 static bool mapping_needs_writeback(struct address_space *mapping)
633 {
634 	return mapping->nrpages;
635 }
636 
637 bool filemap_range_has_writeback(struct address_space *mapping,
638 				 loff_t start_byte, loff_t end_byte)
639 {
640 	XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
641 	pgoff_t max = end_byte >> PAGE_SHIFT;
642 	struct folio *folio;
643 
644 	if (end_byte < start_byte)
645 		return false;
646 
647 	rcu_read_lock();
648 	xas_for_each(&xas, folio, max) {
649 		if (xas_retry(&xas, folio))
650 			continue;
651 		if (xa_is_value(folio))
652 			continue;
653 		if (folio_test_dirty(folio) || folio_test_locked(folio) ||
654 				folio_test_writeback(folio))
655 			break;
656 	}
657 	rcu_read_unlock();
658 	return folio != NULL;
659 }
660 EXPORT_SYMBOL_GPL(filemap_range_has_writeback);
661 
662 /**
663  * filemap_write_and_wait_range - write out & wait on a file range
664  * @mapping:	the address_space for the pages
665  * @lstart:	offset in bytes where the range starts
666  * @lend:	offset in bytes where the range ends (inclusive)
667  *
668  * Write out and wait upon file offsets lstart->lend, inclusive.
669  *
670  * Note that @lend is inclusive (describes the last byte to be written) so
671  * that this function can be used to write to the very end-of-file (end = -1).
672  *
673  * Return: error status of the address space.
674  */
675 int filemap_write_and_wait_range(struct address_space *mapping,
676 				 loff_t lstart, loff_t lend)
677 {
678 	int err = 0, err2;
679 
680 	if (lend < lstart)
681 		return 0;
682 
683 	if (mapping_needs_writeback(mapping)) {
684 		err = filemap_fdatawrite_range(mapping, lstart, lend);
685 		/*
686 		 * Even if the above returned error, the pages may be
687 		 * written partially (e.g. -ENOSPC), so we wait for it.
688 		 * But the -EIO is special case, it may indicate the worst
689 		 * thing (e.g. bug) happened, so we avoid waiting for it.
690 		 */
691 		if (err != -EIO)
692 			__filemap_fdatawait_range(mapping, lstart, lend);
693 	}
694 	err2 = filemap_check_errors(mapping);
695 	if (!err)
696 		err = err2;
697 	return err;
698 }
699 EXPORT_SYMBOL(filemap_write_and_wait_range);
700 
701 void __filemap_set_wb_err(struct address_space *mapping, int err)
702 {
703 	errseq_t eseq = errseq_set(&mapping->wb_err, err);
704 
705 	trace_filemap_set_wb_err(mapping, eseq);
706 }
707 EXPORT_SYMBOL(__filemap_set_wb_err);
708 
709 /**
710  * file_check_and_advance_wb_err - report wb error (if any) that was previously
711  * 				   and advance wb_err to current one
712  * @file: struct file on which the error is being reported
713  *
714  * When userland calls fsync (or something like nfsd does the equivalent), we
715  * want to report any writeback errors that occurred since the last fsync (or
716  * since the file was opened if there haven't been any).
717  *
718  * Grab the wb_err from the mapping. If it matches what we have in the file,
719  * then just quickly return 0. The file is all caught up.
720  *
721  * If it doesn't match, then take the mapping value, set the "seen" flag in
722  * it and try to swap it into place. If it works, or another task beat us
723  * to it with the new value, then update the f_wb_err and return the error
724  * portion. The error at this point must be reported via proper channels
725  * (a'la fsync, or NFS COMMIT operation, etc.).
726  *
727  * While we handle mapping->wb_err with atomic operations, the f_wb_err
728  * value is protected by the f_lock since we must ensure that it reflects
729  * the latest value swapped in for this file descriptor.
730  *
731  * Return: %0 on success, negative error code otherwise.
732  */
733 int file_check_and_advance_wb_err(struct file *file)
734 {
735 	int err = 0;
736 	errseq_t old = READ_ONCE(file->f_wb_err);
737 	struct address_space *mapping = file->f_mapping;
738 
739 	/* Locklessly handle the common case where nothing has changed */
740 	if (errseq_check(&mapping->wb_err, old)) {
741 		/* Something changed, must use slow path */
742 		spin_lock(&file->f_lock);
743 		old = file->f_wb_err;
744 		err = errseq_check_and_advance(&mapping->wb_err,
745 						&file->f_wb_err);
746 		trace_file_check_and_advance_wb_err(file, old);
747 		spin_unlock(&file->f_lock);
748 	}
749 
750 	/*
751 	 * We're mostly using this function as a drop in replacement for
752 	 * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect
753 	 * that the legacy code would have had on these flags.
754 	 */
755 	clear_bit(AS_EIO, &mapping->flags);
756 	clear_bit(AS_ENOSPC, &mapping->flags);
757 	return err;
758 }
759 EXPORT_SYMBOL(file_check_and_advance_wb_err);
760 
761 /**
762  * file_write_and_wait_range - write out & wait on a file range
763  * @file:	file pointing to address_space with pages
764  * @lstart:	offset in bytes where the range starts
765  * @lend:	offset in bytes where the range ends (inclusive)
766  *
767  * Write out and wait upon file offsets lstart->lend, inclusive.
768  *
769  * Note that @lend is inclusive (describes the last byte to be written) so
770  * that this function can be used to write to the very end-of-file (end = -1).
771  *
772  * After writing out and waiting on the data, we check and advance the
773  * f_wb_err cursor to the latest value, and return any errors detected there.
774  *
775  * Return: %0 on success, negative error code otherwise.
776  */
777 int file_write_and_wait_range(struct file *file, loff_t lstart, loff_t lend)
778 {
779 	int err = 0, err2;
780 	struct address_space *mapping = file->f_mapping;
781 
782 	if (lend < lstart)
783 		return 0;
784 
785 	if (mapping_needs_writeback(mapping)) {
786 		err = filemap_fdatawrite_range(mapping, lstart, lend);
787 		/* See comment of filemap_write_and_wait() */
788 		if (err != -EIO)
789 			__filemap_fdatawait_range(mapping, lstart, lend);
790 	}
791 	err2 = file_check_and_advance_wb_err(file);
792 	if (!err)
793 		err = err2;
794 	return err;
795 }
796 EXPORT_SYMBOL(file_write_and_wait_range);
797 
798 /**
799  * replace_page_cache_folio - replace a pagecache folio with a new one
800  * @old:	folio to be replaced
801  * @new:	folio to replace with
802  *
803  * This function replaces a folio in the pagecache with a new one.  On
804  * success it acquires the pagecache reference for the new folio and
805  * drops it for the old folio.  Both the old and new folios must be
806  * locked.  This function does not add the new folio to the LRU, the
807  * caller must do that.
808  *
809  * The remove + add is atomic.  This function cannot fail.
810  */
811 void replace_page_cache_folio(struct folio *old, struct folio *new)
812 {
813 	struct address_space *mapping = old->mapping;
814 	void (*free_folio)(struct folio *) = mapping->a_ops->free_folio;
815 	pgoff_t offset = old->index;
816 	XA_STATE(xas, &mapping->i_pages, offset);
817 
818 	VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
819 	VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
820 	VM_BUG_ON_FOLIO(new->mapping, new);
821 
822 	folio_get(new);
823 	new->mapping = mapping;
824 	new->index = offset;
825 
826 	mem_cgroup_replace_folio(old, new);
827 
828 	xas_lock_irq(&xas);
829 	xas_store(&xas, new);
830 
831 	old->mapping = NULL;
832 	/* hugetlb pages do not participate in page cache accounting. */
833 	if (!folio_test_hugetlb(old))
834 		lruvec_stat_sub_folio(old, NR_FILE_PAGES);
835 	if (!folio_test_hugetlb(new))
836 		lruvec_stat_add_folio(new, NR_FILE_PAGES);
837 	if (folio_test_swapbacked(old))
838 		lruvec_stat_sub_folio(old, NR_SHMEM);
839 	if (folio_test_swapbacked(new))
840 		lruvec_stat_add_folio(new, NR_SHMEM);
841 	xas_unlock_irq(&xas);
842 	if (free_folio)
843 		free_folio(old);
844 	folio_put(old);
845 }
846 EXPORT_SYMBOL_GPL(replace_page_cache_folio);
847 
848 noinline int __filemap_add_folio(struct address_space *mapping,
849 		struct folio *folio, pgoff_t index, gfp_t gfp, void **shadowp)
850 {
851 	XA_STATE_ORDER(xas, &mapping->i_pages, index, folio_order(folio));
852 	bool huge;
853 	long nr;
854 	unsigned int forder = folio_order(folio);
855 
856 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
857 	VM_BUG_ON_FOLIO(folio_test_swapbacked(folio), folio);
858 	VM_BUG_ON_FOLIO(folio_order(folio) < mapping_min_folio_order(mapping),
859 			folio);
860 	mapping_set_update(&xas, mapping);
861 
862 	VM_BUG_ON_FOLIO(index & (folio_nr_pages(folio) - 1), folio);
863 	huge = folio_test_hugetlb(folio);
864 	nr = folio_nr_pages(folio);
865 
866 	gfp &= GFP_RECLAIM_MASK;
867 	folio_ref_add(folio, nr);
868 	folio->mapping = mapping;
869 	folio->index = xas.xa_index;
870 
871 	for (;;) {
872 		int order = -1;
873 		void *entry, *old = NULL;
874 
875 		xas_lock_irq(&xas);
876 		xas_for_each_conflict(&xas, entry) {
877 			old = entry;
878 			if (!xa_is_value(entry)) {
879 				xas_set_err(&xas, -EEXIST);
880 				goto unlock;
881 			}
882 			/*
883 			 * If a larger entry exists,
884 			 * it will be the first and only entry iterated.
885 			 */
886 			if (order == -1)
887 				order = xas_get_order(&xas);
888 		}
889 
890 		if (old) {
891 			if (order > 0 && order > forder) {
892 				unsigned int split_order = max(forder,
893 						xas_try_split_min_order(order));
894 
895 				/* How to handle large swap entries? */
896 				BUG_ON(shmem_mapping(mapping));
897 
898 				while (order > forder) {
899 					xas_set_order(&xas, index, split_order);
900 					xas_try_split(&xas, old, order);
901 					if (xas_error(&xas))
902 						goto unlock;
903 					order = split_order;
904 					split_order =
905 						max(xas_try_split_min_order(
906 							    split_order),
907 						    forder);
908 				}
909 				xas_reset(&xas);
910 			}
911 			if (shadowp)
912 				*shadowp = old;
913 		}
914 
915 		xas_store(&xas, folio);
916 		if (xas_error(&xas))
917 			goto unlock;
918 
919 		mapping->nrpages += nr;
920 
921 		/* hugetlb pages do not participate in page cache accounting */
922 		if (!huge) {
923 			lruvec_stat_mod_folio(folio, NR_FILE_PAGES, nr);
924 			if (folio_test_pmd_mappable(folio))
925 				lruvec_stat_mod_folio(folio,
926 						NR_FILE_THPS, nr);
927 		}
928 
929 unlock:
930 		xas_unlock_irq(&xas);
931 
932 		if (!xas_nomem(&xas, gfp))
933 			break;
934 	}
935 
936 	if (xas_error(&xas))
937 		goto error;
938 
939 	trace_mm_filemap_add_to_page_cache(folio);
940 	return 0;
941 error:
942 	folio->mapping = NULL;
943 	/* Leave folio->index set: truncation relies upon it */
944 	folio_put_refs(folio, nr);
945 	return xas_error(&xas);
946 }
947 ALLOW_ERROR_INJECTION(__filemap_add_folio, ERRNO);
948 
949 int filemap_add_folio(struct address_space *mapping, struct folio *folio,
950 				pgoff_t index, gfp_t gfp)
951 {
952 	void *shadow = NULL;
953 	int ret;
954 	struct mem_cgroup *tmp;
955 	bool kernel_file = test_bit(AS_KERNEL_FILE, &mapping->flags);
956 
957 	if (kernel_file)
958 		tmp = set_active_memcg(root_mem_cgroup);
959 	ret = mem_cgroup_charge(folio, NULL, gfp);
960 	if (kernel_file)
961 		set_active_memcg(tmp);
962 	if (ret)
963 		return ret;
964 
965 	__folio_set_locked(folio);
966 	ret = __filemap_add_folio(mapping, folio, index, gfp, &shadow);
967 	if (unlikely(ret)) {
968 		mem_cgroup_uncharge(folio);
969 		__folio_clear_locked(folio);
970 	} else {
971 		/*
972 		 * The folio might have been evicted from cache only
973 		 * recently, in which case it should be activated like
974 		 * any other repeatedly accessed folio.
975 		 * The exception is folios getting rewritten; evicting other
976 		 * data from the working set, only to cache data that will
977 		 * get overwritten with something else, is a waste of memory.
978 		 */
979 		WARN_ON_ONCE(folio_test_active(folio));
980 		if (!(gfp & __GFP_WRITE) && shadow)
981 			workingset_refault(folio, shadow);
982 		folio_add_lru(folio);
983 		if (kernel_file)
984 			mod_node_page_state(folio_pgdat(folio),
985 					    NR_KERNEL_FILE_PAGES,
986 					    folio_nr_pages(folio));
987 	}
988 	return ret;
989 }
990 EXPORT_SYMBOL_GPL(filemap_add_folio);
991 
992 #ifdef CONFIG_NUMA
993 struct folio *filemap_alloc_folio_noprof(gfp_t gfp, unsigned int order,
994 		struct mempolicy *policy)
995 {
996 	int n;
997 	struct folio *folio;
998 
999 	if (policy)
1000 		return folio_alloc_mpol_noprof(gfp, order, policy,
1001 				NO_INTERLEAVE_INDEX, numa_node_id());
1002 
1003 	if (cpuset_do_page_mem_spread()) {
1004 		unsigned int cpuset_mems_cookie;
1005 		do {
1006 			cpuset_mems_cookie = read_mems_allowed_begin();
1007 			n = cpuset_mem_spread_node();
1008 			folio = __folio_alloc_node_noprof(gfp, order, n);
1009 		} while (!folio && read_mems_allowed_retry(cpuset_mems_cookie));
1010 
1011 		return folio;
1012 	}
1013 	return folio_alloc_noprof(gfp, order);
1014 }
1015 EXPORT_SYMBOL(filemap_alloc_folio_noprof);
1016 #endif
1017 
1018 /*
1019  * filemap_invalidate_lock_two - lock invalidate_lock for two mappings
1020  *
1021  * Lock exclusively invalidate_lock of any passed mapping that is not NULL.
1022  *
1023  * @mapping1: the first mapping to lock
1024  * @mapping2: the second mapping to lock
1025  */
1026 void filemap_invalidate_lock_two(struct address_space *mapping1,
1027 				 struct address_space *mapping2)
1028 {
1029 	if (mapping1 > mapping2)
1030 		swap(mapping1, mapping2);
1031 	if (mapping1)
1032 		down_write(&mapping1->invalidate_lock);
1033 	if (mapping2 && mapping1 != mapping2)
1034 		down_write_nested(&mapping2->invalidate_lock, 1);
1035 }
1036 EXPORT_SYMBOL(filemap_invalidate_lock_two);
1037 
1038 /*
1039  * filemap_invalidate_unlock_two - unlock invalidate_lock for two mappings
1040  *
1041  * Unlock exclusive invalidate_lock of any passed mapping that is not NULL.
1042  *
1043  * @mapping1: the first mapping to unlock
1044  * @mapping2: the second mapping to unlock
1045  */
1046 void filemap_invalidate_unlock_two(struct address_space *mapping1,
1047 				   struct address_space *mapping2)
1048 {
1049 	if (mapping1)
1050 		up_write(&mapping1->invalidate_lock);
1051 	if (mapping2 && mapping1 != mapping2)
1052 		up_write(&mapping2->invalidate_lock);
1053 }
1054 EXPORT_SYMBOL(filemap_invalidate_unlock_two);
1055 
1056 /*
1057  * In order to wait for pages to become available there must be
1058  * waitqueues associated with pages. By using a hash table of
1059  * waitqueues where the bucket discipline is to maintain all
1060  * waiters on the same queue and wake all when any of the pages
1061  * become available, and for the woken contexts to check to be
1062  * sure the appropriate page became available, this saves space
1063  * at a cost of "thundering herd" phenomena during rare hash
1064  * collisions.
1065  */
1066 #define PAGE_WAIT_TABLE_BITS 8
1067 #define PAGE_WAIT_TABLE_SIZE (1 << PAGE_WAIT_TABLE_BITS)
1068 static wait_queue_head_t folio_wait_table[PAGE_WAIT_TABLE_SIZE] __cacheline_aligned;
1069 
1070 static wait_queue_head_t *folio_waitqueue(struct folio *folio)
1071 {
1072 	return &folio_wait_table[hash_ptr(folio, PAGE_WAIT_TABLE_BITS)];
1073 }
1074 
1075 /* How many times do we accept lock stealing from under a waiter? */
1076 static int sysctl_page_lock_unfairness = 5;
1077 static const struct ctl_table filemap_sysctl_table[] = {
1078 	{
1079 		.procname	= "page_lock_unfairness",
1080 		.data		= &sysctl_page_lock_unfairness,
1081 		.maxlen		= sizeof(sysctl_page_lock_unfairness),
1082 		.mode		= 0644,
1083 		.proc_handler	= proc_dointvec_minmax,
1084 		.extra1		= SYSCTL_ZERO,
1085 	}
1086 };
1087 
1088 void __init pagecache_init(void)
1089 {
1090 	int i;
1091 
1092 	for (i = 0; i < PAGE_WAIT_TABLE_SIZE; i++)
1093 		init_waitqueue_head(&folio_wait_table[i]);
1094 
1095 	page_writeback_init();
1096 	register_sysctl_init("vm", filemap_sysctl_table);
1097 }
1098 
1099 /*
1100  * The page wait code treats the "wait->flags" somewhat unusually, because
1101  * we have multiple different kinds of waits, not just the usual "exclusive"
1102  * one.
1103  *
1104  * We have:
1105  *
1106  *  (a) no special bits set:
1107  *
1108  *	We're just waiting for the bit to be released, and when a waker
1109  *	calls the wakeup function, we set WQ_FLAG_WOKEN and wake it up,
1110  *	and remove it from the wait queue.
1111  *
1112  *	Simple and straightforward.
1113  *
1114  *  (b) WQ_FLAG_EXCLUSIVE:
1115  *
1116  *	The waiter is waiting to get the lock, and only one waiter should
1117  *	be woken up to avoid any thundering herd behavior. We'll set the
1118  *	WQ_FLAG_WOKEN bit, wake it up, and remove it from the wait queue.
1119  *
1120  *	This is the traditional exclusive wait.
1121  *
1122  *  (c) WQ_FLAG_EXCLUSIVE | WQ_FLAG_CUSTOM:
1123  *
1124  *	The waiter is waiting to get the bit, and additionally wants the
1125  *	lock to be transferred to it for fair lock behavior. If the lock
1126  *	cannot be taken, we stop walking the wait queue without waking
1127  *	the waiter.
1128  *
1129  *	This is the "fair lock handoff" case, and in addition to setting
1130  *	WQ_FLAG_WOKEN, we set WQ_FLAG_DONE to let the waiter easily see
1131  *	that it now has the lock.
1132  */
1133 static int wake_page_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *arg)
1134 {
1135 	unsigned int flags;
1136 	struct wait_page_key *key = arg;
1137 	struct wait_page_queue *wait_page
1138 		= container_of(wait, struct wait_page_queue, wait);
1139 
1140 	if (!wake_page_match(wait_page, key))
1141 		return 0;
1142 
1143 	/*
1144 	 * If it's a lock handoff wait, we get the bit for it, and
1145 	 * stop walking (and do not wake it up) if we can't.
1146 	 */
1147 	flags = wait->flags;
1148 	if (flags & WQ_FLAG_EXCLUSIVE) {
1149 		if (test_bit(key->bit_nr, &key->folio->flags.f))
1150 			return -1;
1151 		if (flags & WQ_FLAG_CUSTOM) {
1152 			if (test_and_set_bit(key->bit_nr, &key->folio->flags.f))
1153 				return -1;
1154 			flags |= WQ_FLAG_DONE;
1155 		}
1156 	}
1157 
1158 	/*
1159 	 * We are holding the wait-queue lock, but the waiter that
1160 	 * is waiting for this will be checking the flags without
1161 	 * any locking.
1162 	 *
1163 	 * So update the flags atomically, and wake up the waiter
1164 	 * afterwards to avoid any races. This store-release pairs
1165 	 * with the load-acquire in folio_wait_bit_common().
1166 	 */
1167 	smp_store_release(&wait->flags, flags | WQ_FLAG_WOKEN);
1168 	wake_up_state(wait->private, mode);
1169 
1170 	/*
1171 	 * Ok, we have successfully done what we're waiting for,
1172 	 * and we can unconditionally remove the wait entry.
1173 	 *
1174 	 * Note that this pairs with the "finish_wait()" in the
1175 	 * waiter, and has to be the absolute last thing we do.
1176 	 * After this list_del_init(&wait->entry) the wait entry
1177 	 * might be de-allocated and the process might even have
1178 	 * exited.
1179 	 */
1180 	list_del_init_careful(&wait->entry);
1181 	return (flags & WQ_FLAG_EXCLUSIVE) != 0;
1182 }
1183 
1184 static void folio_wake_bit(struct folio *folio, int bit_nr)
1185 {
1186 	wait_queue_head_t *q = folio_waitqueue(folio);
1187 	struct wait_page_key key;
1188 	unsigned long flags;
1189 
1190 	key.folio = folio;
1191 	key.bit_nr = bit_nr;
1192 	key.page_match = 0;
1193 
1194 	spin_lock_irqsave(&q->lock, flags);
1195 	__wake_up_locked_key(q, TASK_NORMAL, &key);
1196 
1197 	/*
1198 	 * It's possible to miss clearing waiters here, when we woke our page
1199 	 * waiters, but the hashed waitqueue has waiters for other pages on it.
1200 	 * That's okay, it's a rare case. The next waker will clear it.
1201 	 *
1202 	 * Note that, depending on the page pool (buddy, hugetlb, ZONE_DEVICE,
1203 	 * other), the flag may be cleared in the course of freeing the page;
1204 	 * but that is not required for correctness.
1205 	 */
1206 	if (!waitqueue_active(q) || !key.page_match)
1207 		folio_clear_waiters(folio);
1208 
1209 	spin_unlock_irqrestore(&q->lock, flags);
1210 }
1211 
1212 /*
1213  * A choice of three behaviors for folio_wait_bit_common():
1214  */
1215 enum behavior {
1216 	EXCLUSIVE,	/* Hold ref to page and take the bit when woken, like
1217 			 * __folio_lock() waiting on then setting PG_locked.
1218 			 */
1219 	SHARED,		/* Hold ref to page and check the bit when woken, like
1220 			 * folio_wait_writeback() waiting on PG_writeback.
1221 			 */
1222 	DROP,		/* Drop ref to page before wait, no check when woken,
1223 			 * like folio_put_wait_locked() on PG_locked.
1224 			 */
1225 };
1226 
1227 /*
1228  * Attempt to check (or get) the folio flag, and mark us done
1229  * if successful.
1230  */
1231 static inline bool folio_trylock_flag(struct folio *folio, int bit_nr,
1232 					struct wait_queue_entry *wait)
1233 {
1234 	if (wait->flags & WQ_FLAG_EXCLUSIVE) {
1235 		if (test_and_set_bit(bit_nr, &folio->flags.f))
1236 			return false;
1237 	} else if (test_bit(bit_nr, &folio->flags.f))
1238 		return false;
1239 
1240 	wait->flags |= WQ_FLAG_WOKEN | WQ_FLAG_DONE;
1241 	return true;
1242 }
1243 
1244 static inline int folio_wait_bit_common(struct folio *folio, int bit_nr,
1245 		int state, enum behavior behavior)
1246 {
1247 	wait_queue_head_t *q = folio_waitqueue(folio);
1248 	int unfairness = sysctl_page_lock_unfairness;
1249 	struct wait_page_queue wait_page;
1250 	wait_queue_entry_t *wait = &wait_page.wait;
1251 	bool thrashing = false;
1252 	unsigned long pflags;
1253 	bool in_thrashing;
1254 
1255 	if (bit_nr == PG_locked &&
1256 	    !folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1257 		delayacct_thrashing_start(&in_thrashing);
1258 		psi_memstall_enter(&pflags);
1259 		thrashing = true;
1260 	}
1261 
1262 	init_wait(wait);
1263 	wait->func = wake_page_function;
1264 	wait_page.folio = folio;
1265 	wait_page.bit_nr = bit_nr;
1266 
1267 repeat:
1268 	wait->flags = 0;
1269 	if (behavior == EXCLUSIVE) {
1270 		wait->flags = WQ_FLAG_EXCLUSIVE;
1271 		if (--unfairness < 0)
1272 			wait->flags |= WQ_FLAG_CUSTOM;
1273 	}
1274 
1275 	/*
1276 	 * Do one last check whether we can get the
1277 	 * page bit synchronously.
1278 	 *
1279 	 * Do the folio_set_waiters() marking before that
1280 	 * to let any waker we _just_ missed know they
1281 	 * need to wake us up (otherwise they'll never
1282 	 * even go to the slow case that looks at the
1283 	 * page queue), and add ourselves to the wait
1284 	 * queue if we need to sleep.
1285 	 *
1286 	 * This part needs to be done under the queue
1287 	 * lock to avoid races.
1288 	 */
1289 	spin_lock_irq(&q->lock);
1290 	folio_set_waiters(folio);
1291 	if (!folio_trylock_flag(folio, bit_nr, wait))
1292 		__add_wait_queue_entry_tail(q, wait);
1293 	spin_unlock_irq(&q->lock);
1294 
1295 	/*
1296 	 * From now on, all the logic will be based on
1297 	 * the WQ_FLAG_WOKEN and WQ_FLAG_DONE flag, to
1298 	 * see whether the page bit testing has already
1299 	 * been done by the wake function.
1300 	 *
1301 	 * We can drop our reference to the folio.
1302 	 */
1303 	if (behavior == DROP)
1304 		folio_put(folio);
1305 
1306 	/*
1307 	 * Note that until the "finish_wait()", or until
1308 	 * we see the WQ_FLAG_WOKEN flag, we need to
1309 	 * be very careful with the 'wait->flags', because
1310 	 * we may race with a waker that sets them.
1311 	 */
1312 	for (;;) {
1313 		unsigned int flags;
1314 
1315 		set_current_state(state);
1316 
1317 		/* Loop until we've been woken or interrupted */
1318 		flags = smp_load_acquire(&wait->flags);
1319 		if (!(flags & WQ_FLAG_WOKEN)) {
1320 			if (signal_pending_state(state, current))
1321 				break;
1322 
1323 			io_schedule();
1324 			continue;
1325 		}
1326 
1327 		/* If we were non-exclusive, we're done */
1328 		if (behavior != EXCLUSIVE)
1329 			break;
1330 
1331 		/* If the waker got the lock for us, we're done */
1332 		if (flags & WQ_FLAG_DONE)
1333 			break;
1334 
1335 		/*
1336 		 * Otherwise, if we're getting the lock, we need to
1337 		 * try to get it ourselves.
1338 		 *
1339 		 * And if that fails, we'll have to retry this all.
1340 		 */
1341 		if (unlikely(test_and_set_bit(bit_nr, folio_flags(folio, 0))))
1342 			goto repeat;
1343 
1344 		wait->flags |= WQ_FLAG_DONE;
1345 		break;
1346 	}
1347 
1348 	/*
1349 	 * If a signal happened, this 'finish_wait()' may remove the last
1350 	 * waiter from the wait-queues, but the folio waiters bit will remain
1351 	 * set. That's ok. The next wakeup will take care of it, and trying
1352 	 * to do it here would be difficult and prone to races.
1353 	 */
1354 	finish_wait(q, wait);
1355 
1356 	if (thrashing) {
1357 		delayacct_thrashing_end(&in_thrashing);
1358 		psi_memstall_leave(&pflags);
1359 	}
1360 
1361 	/*
1362 	 * 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.
1373 	 */
1374 	if (behavior == EXCLUSIVE)
1375 		return wait->flags & WQ_FLAG_DONE ? 0 : -EINTR;
1376 
1377 	return wait->flags & WQ_FLAG_WOKEN ? 0 : -EINTR;
1378 }
1379 
1380 #ifdef CONFIG_MIGRATION
1381 /**
1382  * softleaf_entry_wait_on_locked - Wait for a migration entry or
1383  * device_private entry to be removed.
1384  * @entry: migration or device_private swap entry.
1385  * @ptl: already locked ptl. This function will drop the lock.
1386  *
1387  * Wait for a migration entry referencing the given page, or device_private
1388  * entry referencing a dvice_private page to be unlocked. This is
1389  * equivalent to folio_put_wait_locked(folio, 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 @entry referencing
1392  * the page.
1393  *
1394  * Returns after unlocking the ptl.
1395  *
1396  * This follows the same logic as folio_wait_bit_common() so see the comments
1397  * there.
1398  */
1399 void softleaf_entry_wait_on_locked(softleaf_t entry, spinlock_t *ptl)
1400 	__releases(ptl)
1401 {
1402 	struct wait_page_queue wait_page;
1403 	wait_queue_entry_t *wait = &wait_page.wait;
1404 	bool thrashing = false;
1405 	unsigned long pflags;
1406 	bool in_thrashing;
1407 	wait_queue_head_t *q;
1408 	struct folio *folio = softleaf_to_folio(entry);
1409 
1410 	q = folio_waitqueue(folio);
1411 	if (!folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1412 		delayacct_thrashing_start(&in_thrashing);
1413 		psi_memstall_enter(&pflags);
1414 		thrashing = true;
1415 	}
1416 
1417 	init_wait(wait);
1418 	wait->func = wake_page_function;
1419 	wait_page.folio = folio;
1420 	wait_page.bit_nr = PG_locked;
1421 	wait->flags = 0;
1422 
1423 	spin_lock_irq(&q->lock);
1424 	folio_set_waiters(folio);
1425 	if (!folio_trylock_flag(folio, PG_locked, wait))
1426 		__add_wait_queue_entry_tail(q, wait);
1427 	spin_unlock_irq(&q->lock);
1428 
1429 	/*
1430 	 * If a migration entry exists for the page the migration path must hold
1431 	 * a valid reference to the page, and it must take the ptl to remove the
1432 	 * migration entry. So the page is valid until the ptl is dropped.
1433 	 * Similarly any path attempting to drop the last reference to a
1434 	 * device-private page needs to grab the ptl to remove the device-private
1435 	 * entry.
1436 	 */
1437 	spin_unlock(ptl);
1438 
1439 	for (;;) {
1440 		unsigned int flags;
1441 
1442 		set_current_state(TASK_UNINTERRUPTIBLE);
1443 
1444 		/* Loop until we've been woken or interrupted */
1445 		flags = smp_load_acquire(&wait->flags);
1446 		if (!(flags & WQ_FLAG_WOKEN)) {
1447 			if (signal_pending_state(TASK_UNINTERRUPTIBLE, current))
1448 				break;
1449 
1450 			io_schedule();
1451 			continue;
1452 		}
1453 		break;
1454 	}
1455 
1456 	finish_wait(q, wait);
1457 
1458 	if (thrashing) {
1459 		delayacct_thrashing_end(&in_thrashing);
1460 		psi_memstall_leave(&pflags);
1461 	}
1462 }
1463 #endif
1464 
1465 void folio_wait_bit(struct folio *folio, int bit_nr)
1466 {
1467 	folio_wait_bit_common(folio, bit_nr, TASK_UNINTERRUPTIBLE, SHARED);
1468 }
1469 EXPORT_SYMBOL(folio_wait_bit);
1470 
1471 int folio_wait_bit_killable(struct folio *folio, int bit_nr)
1472 {
1473 	return folio_wait_bit_common(folio, bit_nr, TASK_KILLABLE, SHARED);
1474 }
1475 EXPORT_SYMBOL(folio_wait_bit_killable);
1476 
1477 /**
1478  * folio_put_wait_locked - Drop a reference and wait for it to be unlocked
1479  * @folio: The folio to wait for.
1480  * @state: The sleep state (TASK_KILLABLE, TASK_UNINTERRUPTIBLE, etc).
1481  *
1482  * The caller should hold a reference on @folio.  They expect the page to
1483  * become unlocked relatively soon, but do not wish to hold up migration
1484  * (for example) by holding the reference while waiting for the folio to
1485  * come unlocked.  After this function returns, the caller should not
1486  * dereference @folio.
1487  *
1488  * Return: 0 if the folio was unlocked or -EINTR if interrupted by a signal.
1489  */
1490 static int folio_put_wait_locked(struct folio *folio, int state)
1491 {
1492 	return folio_wait_bit_common(folio, PG_locked, state, DROP);
1493 }
1494 
1495 /**
1496  * folio_unlock - Unlock a locked folio.
1497  * @folio: The folio.
1498  *
1499  * Unlocks the folio and wakes up any thread sleeping on the page lock.
1500  *
1501  * Context: May be called from interrupt or process context.  May not be
1502  * called from NMI context.
1503  */
1504 void folio_unlock(struct folio *folio)
1505 {
1506 	/* Bit 7 allows x86 to check the byte's sign bit */
1507 	BUILD_BUG_ON(PG_waiters != 7);
1508 	BUILD_BUG_ON(PG_locked > 7);
1509 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
1510 	if (folio_xor_flags_has_waiters(folio, 1 << PG_locked))
1511 		folio_wake_bit(folio, PG_locked);
1512 }
1513 EXPORT_SYMBOL(folio_unlock);
1514 
1515 /**
1516  * folio_end_read - End read on a folio.
1517  * @folio: The folio.
1518  * @success: True if all reads completed successfully.
1519  *
1520  * When all reads against a folio have completed, filesystems should
1521  * call this function to let the pagecache know that no more reads
1522  * are outstanding.  This will unlock the folio and wake up any thread
1523  * sleeping on the lock.  The folio will also be marked uptodate if all
1524  * reads succeeded.
1525  *
1526  * Context: May be called from interrupt or process context.  May not be
1527  * called from NMI context.
1528  */
1529 void folio_end_read(struct folio *folio, bool success)
1530 {
1531 	unsigned long mask = 1 << PG_locked;
1532 
1533 	/* Must be in bottom byte for x86 to work */
1534 	BUILD_BUG_ON(PG_uptodate > 7);
1535 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
1536 	VM_BUG_ON_FOLIO(success && folio_test_uptodate(folio), folio);
1537 
1538 	if (likely(success))
1539 		mask |= 1 << PG_uptodate;
1540 	if (folio_xor_flags_has_waiters(folio, mask))
1541 		folio_wake_bit(folio, PG_locked);
1542 }
1543 EXPORT_SYMBOL(folio_end_read);
1544 
1545 /**
1546  * folio_end_private_2 - Clear PG_private_2 and wake any waiters.
1547  * @folio: The folio.
1548  *
1549  * Clear the PG_private_2 bit on a folio and wake up any sleepers waiting for
1550  * it.  The folio reference held for PG_private_2 being set is released.
1551  *
1552  * This is, for example, used when a netfs folio is being written to a local
1553  * disk cache, thereby allowing writes to the cache for the same folio to be
1554  * serialised.
1555  */
1556 void folio_end_private_2(struct folio *folio)
1557 {
1558 	VM_BUG_ON_FOLIO(!folio_test_private_2(folio), folio);
1559 	clear_bit_unlock(PG_private_2, folio_flags(folio, 0));
1560 	folio_wake_bit(folio, PG_private_2);
1561 	folio_put(folio);
1562 }
1563 EXPORT_SYMBOL(folio_end_private_2);
1564 
1565 /**
1566  * folio_wait_private_2 - Wait for PG_private_2 to be cleared on a folio.
1567  * @folio: The folio to wait on.
1568  *
1569  * Wait for PG_private_2 to be cleared on a folio.
1570  */
1571 void folio_wait_private_2(struct folio *folio)
1572 {
1573 	while (folio_test_private_2(folio))
1574 		folio_wait_bit(folio, PG_private_2);
1575 }
1576 EXPORT_SYMBOL(folio_wait_private_2);
1577 
1578 /**
1579  * folio_wait_private_2_killable - Wait for PG_private_2 to be cleared on a folio.
1580  * @folio: The folio to wait on.
1581  *
1582  * Wait for PG_private_2 to be cleared on a folio or until a fatal signal is
1583  * received by the calling task.
1584  *
1585  * Return:
1586  * - 0 if successful.
1587  * - -EINTR if a fatal signal was encountered.
1588  */
1589 int folio_wait_private_2_killable(struct folio *folio)
1590 {
1591 	int ret = 0;
1592 
1593 	while (folio_test_private_2(folio)) {
1594 		ret = folio_wait_bit_killable(folio, PG_private_2);
1595 		if (ret < 0)
1596 			break;
1597 	}
1598 
1599 	return ret;
1600 }
1601 EXPORT_SYMBOL(folio_wait_private_2_killable);
1602 
1603 static void filemap_end_dropbehind(struct folio *folio)
1604 {
1605 	struct address_space *mapping = folio->mapping;
1606 
1607 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
1608 
1609 	if (folio_test_writeback(folio) || folio_test_dirty(folio))
1610 		return;
1611 	if (!folio_test_clear_dropbehind(folio))
1612 		return;
1613 	if (mapping)
1614 		folio_unmap_invalidate(mapping, folio, 0);
1615 }
1616 
1617 /*
1618  * If folio was marked as dropbehind, then pages should be dropped when writeback
1619  * completes. Do that now. If we fail, it's likely because of a big folio -
1620  * just reset dropbehind for that case and latter completions should invalidate.
1621  */
1622 void folio_end_dropbehind(struct folio *folio)
1623 {
1624 	if (!folio_test_dropbehind(folio))
1625 		return;
1626 
1627 	/*
1628 	 * Hitting !in_task() should not happen off RWF_DONTCACHE writeback,
1629 	 * but can happen if normal writeback just happens to find dirty folios
1630 	 * that were created as part of uncached writeback, and that writeback
1631 	 * would otherwise not need non-IRQ handling. Just skip the
1632 	 * invalidation in that case.
1633 	 */
1634 	if (in_task() && folio_trylock(folio)) {
1635 		filemap_end_dropbehind(folio);
1636 		folio_unlock(folio);
1637 	}
1638 }
1639 EXPORT_SYMBOL_GPL(folio_end_dropbehind);
1640 
1641 /**
1642  * folio_end_writeback_no_dropbehind - End writeback against a folio.
1643  * @folio: The folio.
1644  *
1645  * The folio must actually be under writeback.
1646  * This call is intended for filesystems that need to defer dropbehind.
1647  *
1648  * Context: May be called from process or interrupt context.
1649  */
1650 void folio_end_writeback_no_dropbehind(struct folio *folio)
1651 {
1652 	VM_BUG_ON_FOLIO(!folio_test_writeback(folio), folio);
1653 
1654 	/*
1655 	 * folio_test_clear_reclaim() could be used here but it is an
1656 	 * atomic operation and overkill in this particular case. Failing
1657 	 * to shuffle a folio marked for immediate reclaim is too mild
1658 	 * a gain to justify taking an atomic operation penalty at the
1659 	 * end of every folio writeback.
1660 	 */
1661 	if (folio_test_reclaim(folio)) {
1662 		folio_clear_reclaim(folio);
1663 		folio_rotate_reclaimable(folio);
1664 	}
1665 
1666 	if (__folio_end_writeback(folio))
1667 		folio_wake_bit(folio, PG_writeback);
1668 
1669 	acct_reclaim_writeback(folio);
1670 }
1671 EXPORT_SYMBOL_GPL(folio_end_writeback_no_dropbehind);
1672 
1673 /**
1674  * folio_end_writeback - End writeback against a folio.
1675  * @folio: The folio.
1676  *
1677  * The folio must actually be under writeback.
1678  *
1679  * Context: May be called from process or interrupt context.
1680  */
1681 void folio_end_writeback(struct folio *folio)
1682 {
1683 	VM_BUG_ON_FOLIO(!folio_test_writeback(folio), folio);
1684 
1685 	/*
1686 	 * Writeback does not hold a folio reference of its own, relying
1687 	 * on truncation to wait for the clearing of PG_writeback.
1688 	 * But here we must make sure that the folio is not freed and
1689 	 * reused before the folio_wake_bit().
1690 	 */
1691 	folio_get(folio);
1692 	folio_end_writeback_no_dropbehind(folio);
1693 	folio_end_dropbehind(folio);
1694 	folio_put(folio);
1695 }
1696 EXPORT_SYMBOL(folio_end_writeback);
1697 
1698 /**
1699  * __folio_lock - Get a lock on the folio, assuming we need to sleep to get it.
1700  * @folio: The folio to lock
1701  */
1702 void __folio_lock(struct folio *folio)
1703 {
1704 	folio_wait_bit_common(folio, PG_locked, TASK_UNINTERRUPTIBLE,
1705 				EXCLUSIVE);
1706 }
1707 EXPORT_SYMBOL(__folio_lock);
1708 
1709 int __folio_lock_killable(struct folio *folio)
1710 {
1711 	return folio_wait_bit_common(folio, PG_locked, TASK_KILLABLE,
1712 					EXCLUSIVE);
1713 }
1714 EXPORT_SYMBOL_GPL(__folio_lock_killable);
1715 
1716 static int __folio_lock_async(struct folio *folio, struct wait_page_queue *wait)
1717 {
1718 	struct wait_queue_head *q = folio_waitqueue(folio);
1719 	int ret;
1720 
1721 	wait->folio = folio;
1722 	wait->bit_nr = PG_locked;
1723 
1724 	spin_lock_irq(&q->lock);
1725 	__add_wait_queue_entry_tail(q, &wait->wait);
1726 	folio_set_waiters(folio);
1727 	ret = !folio_trylock(folio);
1728 	/*
1729 	 * If we were successful now, we know we're still on the
1730 	 * waitqueue as we're still under the lock. This means it's
1731 	 * safe to remove and return success, we know the callback
1732 	 * isn't going to trigger.
1733 	 */
1734 	if (!ret)
1735 		__remove_wait_queue(q, &wait->wait);
1736 	else
1737 		ret = -EIOCBQUEUED;
1738 	spin_unlock_irq(&q->lock);
1739 	return ret;
1740 }
1741 
1742 /*
1743  * Return values:
1744  * 0 - folio is locked.
1745  * non-zero - folio is not locked.
1746  *     mmap_lock or per-VMA lock has been released (mmap_read_unlock() or
1747  *     vma_end_read()), unless flags had both FAULT_FLAG_ALLOW_RETRY and
1748  *     FAULT_FLAG_RETRY_NOWAIT set, in which case the lock is still held.
1749  *
1750  * If neither ALLOW_RETRY nor KILLABLE are set, will always return 0
1751  * with the folio locked and the mmap_lock/per-VMA lock is left unperturbed.
1752  */
1753 vm_fault_t __folio_lock_or_retry(struct folio *folio, struct vm_fault *vmf)
1754 {
1755 	unsigned int flags = vmf->flags;
1756 
1757 	if (fault_flag_allow_retry_first(flags)) {
1758 		/*
1759 		 * CAUTION! In this case, mmap_lock/per-VMA lock is not
1760 		 * released even though returning VM_FAULT_RETRY.
1761 		 */
1762 		if (flags & FAULT_FLAG_RETRY_NOWAIT)
1763 			return VM_FAULT_RETRY;
1764 
1765 		release_fault_lock(vmf);
1766 		if (flags & FAULT_FLAG_KILLABLE)
1767 			folio_wait_locked_killable(folio);
1768 		else
1769 			folio_wait_locked(folio);
1770 		return VM_FAULT_RETRY;
1771 	}
1772 	if (flags & FAULT_FLAG_KILLABLE) {
1773 		bool ret;
1774 
1775 		ret = __folio_lock_killable(folio);
1776 		if (ret) {
1777 			release_fault_lock(vmf);
1778 			return VM_FAULT_RETRY;
1779 		}
1780 	} else {
1781 		__folio_lock(folio);
1782 	}
1783 
1784 	return 0;
1785 }
1786 
1787 /**
1788  * page_cache_next_miss() - Find the next gap in the page cache.
1789  * @mapping: Mapping.
1790  * @index: Index.
1791  * @max_scan: Maximum range to search.
1792  *
1793  * Search the range [index, min(index + max_scan - 1, ULONG_MAX)] for the
1794  * gap with the lowest index.
1795  *
1796  * This function may be called under the rcu_read_lock.  However, this will
1797  * not atomically search a snapshot of the cache at a single point in time.
1798  * For example, if a gap is created at index 5, then subsequently a gap is
1799  * created at index 10, page_cache_next_miss covering both indices may
1800  * return 10 if called under the rcu_read_lock.
1801  *
1802  * Return: The index of the gap if found, otherwise an index outside the
1803  * range specified (in which case 'return - index >= max_scan' will be true).
1804  * In the rare case of index wrap-around, 0 will be returned.
1805  */
1806 pgoff_t page_cache_next_miss(struct address_space *mapping,
1807 			     pgoff_t index, unsigned long max_scan)
1808 {
1809 	XA_STATE(xas, &mapping->i_pages, index);
1810 
1811 	while (max_scan--) {
1812 		void *entry = xas_next(&xas);
1813 		if (!entry || xa_is_value(entry))
1814 			return xas.xa_index;
1815 		if (xas.xa_index == 0)
1816 			return 0;
1817 	}
1818 
1819 	/* Return end of the range + 1 when no hole is found */
1820 	return xas.xa_index + 1;
1821 }
1822 EXPORT_SYMBOL(page_cache_next_miss);
1823 
1824 /**
1825  * page_cache_prev_miss() - Find the previous gap in the page cache.
1826  * @mapping: Mapping.
1827  * @index: Index.
1828  * @max_scan: Maximum range to search.
1829  *
1830  * Search the range [max(index - max_scan + 1, 0), index] for the
1831  * gap with the highest index.
1832  *
1833  * This function may be called under the rcu_read_lock.  However, this will
1834  * not atomically search a snapshot of the cache at a single point in time.
1835  * For example, if a gap is created at index 10, then subsequently a gap is
1836  * created at index 5, page_cache_prev_miss() covering both indices may
1837  * return 5 if called under the rcu_read_lock.
1838  *
1839  * Return: The index of the gap if found, otherwise an index outside the
1840  * range specified (in which case 'index - return >= max_scan' will be true).
1841  * In the rare case of wrap-around, ULONG_MAX will be returned.
1842  */
1843 pgoff_t page_cache_prev_miss(struct address_space *mapping,
1844 			     pgoff_t index, unsigned long max_scan)
1845 {
1846 	XA_STATE(xas, &mapping->i_pages, index);
1847 
1848 	while (max_scan--) {
1849 		void *entry = xas_prev(&xas);
1850 		if (!entry || xa_is_value(entry))
1851 			return xas.xa_index;
1852 		if (xas.xa_index == ULONG_MAX)
1853 			return ULONG_MAX;
1854 	}
1855 
1856 	/* Return start of the range - 1 when no hole is found */
1857 	return xas.xa_index - 1;
1858 }
1859 EXPORT_SYMBOL(page_cache_prev_miss);
1860 
1861 /*
1862  * Lockless page cache protocol:
1863  * On the lookup side:
1864  * 1. Load the folio from i_pages
1865  * 2. Increment the refcount if it's not zero
1866  * 3. If the folio is not found by xas_reload(), put the refcount and retry
1867  *
1868  * On the removal side:
1869  * A. Freeze the page (by zeroing the refcount if nobody else has a reference)
1870  * B. Remove the page from i_pages
1871  * C. Return the page to the page allocator
1872  *
1873  * This means that any page may have its reference count temporarily
1874  * increased by a speculative page cache (or GUP-fast) lookup as it can
1875  * be allocated by another user before the RCU grace period expires.
1876  * Because the refcount temporarily acquired here may end up being the
1877  * last refcount on the page, any page allocation must be freeable by
1878  * folio_put().
1879  */
1880 
1881 /*
1882  * filemap_get_entry - Get a page cache entry.
1883  * @mapping: the address_space to search
1884  * @index: The page cache index.
1885  *
1886  * Looks up the page cache entry at @mapping & @index.  If it is a folio,
1887  * it is returned with an increased refcount.  If it is a shadow entry
1888  * of a previously evicted folio, or a swap entry from shmem/tmpfs,
1889  * it is returned without further action.
1890  *
1891  * Return: The folio, swap or shadow entry, %NULL if nothing is found.
1892  */
1893 void *filemap_get_entry(struct address_space *mapping, pgoff_t index)
1894 {
1895 	XA_STATE(xas, &mapping->i_pages, index);
1896 	struct folio *folio;
1897 
1898 	rcu_read_lock();
1899 repeat:
1900 	xas_reset(&xas);
1901 	folio = xas_load(&xas);
1902 	if (xas_retry(&xas, folio))
1903 		goto repeat;
1904 	/*
1905 	 * A shadow entry of a recently evicted page, or a swap entry from
1906 	 * shmem/tmpfs.  Return it without attempting to raise page count.
1907 	 */
1908 	if (!folio || xa_is_value(folio))
1909 		goto out;
1910 
1911 	if (!folio_try_get(folio))
1912 		goto repeat;
1913 
1914 	if (unlikely(folio != xas_reload(&xas))) {
1915 		folio_put(folio);
1916 		goto repeat;
1917 	}
1918 out:
1919 	rcu_read_unlock();
1920 
1921 	return folio;
1922 }
1923 
1924 /**
1925  * __filemap_get_folio_mpol - Find and get a reference to a folio.
1926  * @mapping: The address_space to search.
1927  * @index: The page index.
1928  * @fgp_flags: %FGP flags modify how the folio is returned.
1929  * @gfp: Memory allocation flags to use if %FGP_CREAT is specified.
1930  * @policy: NUMA memory allocation policy to follow.
1931  *
1932  * Looks up the page cache entry at @mapping & @index.
1933  *
1934  * If %FGP_LOCK or %FGP_CREAT are specified then the function may sleep even
1935  * if the %GFP flags specified for %FGP_CREAT are atomic.
1936  *
1937  * If this function returns a folio, it is returned with an increased refcount.
1938  *
1939  * Return: The found folio or an ERR_PTR() otherwise.
1940  */
1941 struct folio *__filemap_get_folio_mpol(struct address_space *mapping,
1942 		pgoff_t index, fgf_t fgp_flags, gfp_t gfp, struct mempolicy *policy)
1943 {
1944 	struct folio *folio;
1945 
1946 repeat:
1947 	folio = filemap_get_entry(mapping, index);
1948 	if (xa_is_value(folio))
1949 		folio = NULL;
1950 	if (!folio)
1951 		goto no_page;
1952 
1953 	if (fgp_flags & FGP_LOCK) {
1954 		if (fgp_flags & FGP_NOWAIT) {
1955 			if (!folio_trylock(folio)) {
1956 				folio_put(folio);
1957 				return ERR_PTR(-EAGAIN);
1958 			}
1959 		} else {
1960 			folio_lock(folio);
1961 		}
1962 
1963 		/* Has the page been truncated? */
1964 		if (unlikely(folio->mapping != mapping)) {
1965 			folio_unlock(folio);
1966 			folio_put(folio);
1967 			goto repeat;
1968 		}
1969 		VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
1970 	}
1971 
1972 	if (fgp_flags & FGP_ACCESSED)
1973 		folio_mark_accessed(folio);
1974 	else if (fgp_flags & FGP_WRITE) {
1975 		/* Clear idle flag for buffer write */
1976 		if (folio_test_idle(folio))
1977 			folio_clear_idle(folio);
1978 	}
1979 
1980 	if (fgp_flags & FGP_STABLE)
1981 		folio_wait_stable(folio);
1982 no_page:
1983 	if (!folio && (fgp_flags & FGP_CREAT)) {
1984 		unsigned int min_order = mapping_min_folio_order(mapping);
1985 		unsigned int order = max(min_order, FGF_GET_ORDER(fgp_flags));
1986 		int err;
1987 		index = mapping_align_index(mapping, index);
1988 
1989 		if ((fgp_flags & FGP_WRITE) && mapping_can_writeback(mapping))
1990 			gfp |= __GFP_WRITE;
1991 		if (fgp_flags & FGP_NOFS)
1992 			gfp &= ~__GFP_FS;
1993 		if (fgp_flags & FGP_NOWAIT) {
1994 			gfp &= ~GFP_KERNEL;
1995 			gfp |= GFP_NOWAIT;
1996 		}
1997 		if (WARN_ON_ONCE(!(fgp_flags & (FGP_LOCK | FGP_FOR_MMAP))))
1998 			fgp_flags |= FGP_LOCK;
1999 
2000 		if (order > mapping_max_folio_order(mapping))
2001 			order = mapping_max_folio_order(mapping);
2002 		/* If we're not aligned, allocate a smaller folio */
2003 		if (index & ((1UL << order) - 1))
2004 			order = __ffs(index);
2005 
2006 		do {
2007 			gfp_t alloc_gfp = gfp;
2008 
2009 			err = -ENOMEM;
2010 			if (order > min_order)
2011 				alloc_gfp |= __GFP_NORETRY | __GFP_NOWARN;
2012 			folio = filemap_alloc_folio(alloc_gfp, order, policy);
2013 			if (!folio)
2014 				continue;
2015 
2016 			/* Init accessed so avoid atomic mark_page_accessed later */
2017 			if (fgp_flags & FGP_ACCESSED)
2018 				__folio_set_referenced(folio);
2019 			if (fgp_flags & FGP_DONTCACHE)
2020 				__folio_set_dropbehind(folio);
2021 
2022 			err = filemap_add_folio(mapping, folio, index, gfp);
2023 			if (!err)
2024 				break;
2025 			folio_put(folio);
2026 			folio = NULL;
2027 		} while (order-- > min_order);
2028 
2029 		if (err == -EEXIST)
2030 			goto repeat;
2031 		if (err) {
2032 			/*
2033 			 * When NOWAIT I/O fails to allocate folios this could
2034 			 * be due to a nonblocking memory allocation and not
2035 			 * because the system actually is out of memory.
2036 			 * Return -EAGAIN so that there caller retries in a
2037 			 * blocking fashion instead of propagating -ENOMEM
2038 			 * to the application.
2039 			 */
2040 			if ((fgp_flags & FGP_NOWAIT) && err == -ENOMEM)
2041 				err = -EAGAIN;
2042 			return ERR_PTR(err);
2043 		}
2044 		/*
2045 		 * filemap_add_folio locks the page, and for mmap
2046 		 * we expect an unlocked page.
2047 		 */
2048 		if (folio && (fgp_flags & FGP_FOR_MMAP))
2049 			folio_unlock(folio);
2050 	}
2051 
2052 	if (!folio)
2053 		return ERR_PTR(-ENOENT);
2054 	/* not an uncached lookup, clear uncached if set */
2055 	if (!(fgp_flags & FGP_DONTCACHE) && folio_test_clear_dropbehind(folio)) {
2056 		if (folio_test_dirty(folio) &&
2057 		    mapping_can_writeback(mapping)) {
2058 			struct inode *inode = mapping->host;
2059 			struct bdi_writeback *wb;
2060 			struct wb_lock_cookie cookie = {};
2061 			long nr = folio_nr_pages(folio);
2062 
2063 			wb = unlocked_inode_to_wb_begin(inode, &cookie);
2064 			wb_stat_mod(wb, WB_DONTCACHE_DIRTY, -nr);
2065 			unlocked_inode_to_wb_end(inode, &cookie);
2066 		}
2067 	}
2068 	return folio;
2069 }
2070 EXPORT_SYMBOL(__filemap_get_folio_mpol);
2071 
2072 static inline struct folio *find_get_entry(struct xa_state *xas, pgoff_t max,
2073 		xa_mark_t mark)
2074 {
2075 	struct folio *folio;
2076 
2077 retry:
2078 	if (mark == XA_PRESENT)
2079 		folio = xas_find(xas, max);
2080 	else
2081 		folio = xas_find_marked(xas, max, mark);
2082 
2083 	if (xas_retry(xas, folio))
2084 		goto retry;
2085 	/*
2086 	 * A shadow entry of a recently evicted page, a swap
2087 	 * entry from shmem/tmpfs or a DAX entry.  Return it
2088 	 * without attempting to raise page count.
2089 	 */
2090 	if (!folio || xa_is_value(folio))
2091 		return folio;
2092 
2093 	if (!folio_try_get(folio))
2094 		goto reset;
2095 
2096 	if (unlikely(folio != xas_reload(xas))) {
2097 		folio_put(folio);
2098 		goto reset;
2099 	}
2100 
2101 	return folio;
2102 reset:
2103 	xas_reset(xas);
2104 	goto retry;
2105 }
2106 
2107 /**
2108  * find_get_entries - gang pagecache lookup
2109  * @mapping:	The address_space to search
2110  * @start:	The starting page cache index
2111  * @end:	The final page index (inclusive).
2112  * @fbatch:	Where the resulting entries are placed.
2113  * @indices:	The cache indices corresponding to the entries in @entries
2114  *
2115  * find_get_entries() will search for and return a batch of entries in
2116  * the mapping.  The entries are placed in @fbatch.  find_get_entries()
2117  * takes a reference on any actual folios it returns.
2118  *
2119  * The entries have ascending indexes.  The indices may not be consecutive
2120  * due to not-present entries or large folios.
2121  *
2122  * Any shadow entries of evicted folios, or swap entries from
2123  * shmem/tmpfs, are included in the returned array.
2124  *
2125  * Return: The number of entries which were found.
2126  */
2127 unsigned find_get_entries(struct address_space *mapping, pgoff_t *start,
2128 		pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
2129 {
2130 	XA_STATE(xas, &mapping->i_pages, *start);
2131 	struct folio *folio;
2132 
2133 	rcu_read_lock();
2134 	while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) {
2135 		indices[fbatch->nr] = xas.xa_index;
2136 		if (!folio_batch_add(fbatch, folio))
2137 			break;
2138 	}
2139 
2140 	if (folio_batch_count(fbatch)) {
2141 		unsigned long nr;
2142 		int idx = folio_batch_count(fbatch) - 1;
2143 
2144 		folio = fbatch->folios[idx];
2145 		if (!xa_is_value(folio))
2146 			nr = folio_nr_pages(folio);
2147 		else
2148 			nr = 1 << xa_get_order(&mapping->i_pages, indices[idx]);
2149 		*start = round_down(indices[idx] + nr, nr);
2150 	}
2151 	rcu_read_unlock();
2152 
2153 	return folio_batch_count(fbatch);
2154 }
2155 
2156 /**
2157  * find_lock_entries - Find a batch of pagecache entries.
2158  * @mapping:	The address_space to search.
2159  * @start:	The starting page cache index.
2160  * @end:	The final page index (inclusive).
2161  * @fbatch:	Where the resulting entries are placed.
2162  * @indices:	The cache indices of the entries in @fbatch.
2163  *
2164  * find_lock_entries() will return a batch of entries from @mapping.
2165  * Swap, shadow and DAX entries are included.  Folios are returned
2166  * locked and with an incremented refcount.  Folios which are locked
2167  * by somebody else or under writeback are skipped.  Folios which are
2168  * partially outside the range are not returned.
2169  *
2170  * The entries have ascending indexes.  The indices may not be consecutive
2171  * due to not-present entries, large folios, folios which could not be
2172  * locked or folios under writeback.
2173  *
2174  * Return: The number of entries which were found.
2175  */
2176 unsigned find_lock_entries(struct address_space *mapping, pgoff_t *start,
2177 		pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
2178 {
2179 	XA_STATE(xas, &mapping->i_pages, *start);
2180 	struct folio *folio;
2181 
2182 	rcu_read_lock();
2183 	while ((folio = find_get_entry(&xas, end, XA_PRESENT))) {
2184 		unsigned long base;
2185 		unsigned long nr;
2186 
2187 		if (!xa_is_value(folio)) {
2188 			nr = folio_nr_pages(folio);
2189 			base = folio->index;
2190 			/* Omit large folio which begins before the start */
2191 			if (base < *start)
2192 				goto put;
2193 			/* Omit large folio which extends beyond the end */
2194 			if (base + nr - 1 > end)
2195 				goto put;
2196 			if (!folio_trylock(folio))
2197 				goto put;
2198 			if (folio->mapping != mapping ||
2199 			    folio_test_writeback(folio))
2200 				goto unlock;
2201 			VM_BUG_ON_FOLIO(!folio_contains(folio, xas.xa_index),
2202 					folio);
2203 		} else {
2204 			nr = 1 << xas_get_order(&xas);
2205 			base = xas.xa_index & ~(nr - 1);
2206 			/* Omit order>0 value which begins before the start */
2207 			if (base < *start)
2208 				continue;
2209 			/* Omit order>0 value which extends beyond the end */
2210 			if (base + nr - 1 > end)
2211 				break;
2212 		}
2213 
2214 		/* Update start now so that last update is correct on return */
2215 		*start = base + nr;
2216 		indices[fbatch->nr] = xas.xa_index;
2217 		if (!folio_batch_add(fbatch, folio))
2218 			break;
2219 		continue;
2220 unlock:
2221 		folio_unlock(folio);
2222 put:
2223 		folio_put(folio);
2224 	}
2225 	rcu_read_unlock();
2226 
2227 	return folio_batch_count(fbatch);
2228 }
2229 
2230 /**
2231  * filemap_get_folios - Get a batch of folios
2232  * @mapping:	The address_space to search
2233  * @start:	The starting page index
2234  * @end:	The final page index (inclusive)
2235  * @fbatch:	The batch to fill.
2236  *
2237  * Search for and return a batch of folios in the mapping starting at
2238  * index @start and up to index @end (inclusive).  The folios are returned
2239  * in @fbatch with an elevated reference count.
2240  *
2241  * Return: The number of folios which were found.
2242  * We also update @start to index the next folio for the traversal.
2243  */
2244 unsigned filemap_get_folios(struct address_space *mapping, pgoff_t *start,
2245 		pgoff_t end, struct folio_batch *fbatch)
2246 {
2247 	return filemap_get_folios_tag(mapping, start, end, XA_PRESENT, fbatch);
2248 }
2249 EXPORT_SYMBOL(filemap_get_folios);
2250 
2251 /**
2252  * filemap_get_folios_contig - Get a batch of contiguous folios
2253  * @mapping:	The address_space to search
2254  * @start:	The starting page index
2255  * @end:	The final page index (inclusive)
2256  * @fbatch:	The batch to fill
2257  *
2258  * filemap_get_folios_contig() works exactly like filemap_get_folios(),
2259  * except the returned folios are guaranteed to be contiguous. This may
2260  * not return all contiguous folios if the batch gets filled up.
2261  *
2262  * Return: The number of folios found.
2263  * Also update @start to be positioned for traversal of the next folio.
2264  */
2265 
2266 unsigned filemap_get_folios_contig(struct address_space *mapping,
2267 		pgoff_t *start, pgoff_t end, struct folio_batch *fbatch)
2268 {
2269 	XA_STATE(xas, &mapping->i_pages, *start);
2270 	unsigned long nr;
2271 	struct folio *folio;
2272 
2273 	rcu_read_lock();
2274 
2275 	for (folio = xas_load(&xas); folio && xas.xa_index <= end;
2276 			folio = xas_next(&xas)) {
2277 		if (xas_retry(&xas, folio))
2278 			continue;
2279 		/*
2280 		 * If the entry has been swapped out, we can stop looking.
2281 		 * No current caller is looking for DAX entries.
2282 		 */
2283 		if (xa_is_value(folio))
2284 			goto update_start;
2285 
2286 		/* If we landed in the middle of a THP, continue at its end. */
2287 		if (xa_is_sibling(folio))
2288 			goto update_start;
2289 
2290 		if (!folio_try_get(folio))
2291 			goto retry;
2292 
2293 		if (unlikely(folio != xas_reload(&xas)))
2294 			goto put_folio;
2295 
2296 		if (!folio_batch_add(fbatch, folio)) {
2297 			*start = folio_next_index(folio);
2298 			goto out;
2299 		}
2300 		xas_advance(&xas, folio_next_index(folio) - 1);
2301 		continue;
2302 put_folio:
2303 		folio_put(folio);
2304 
2305 retry:
2306 		xas_reset(&xas);
2307 	}
2308 
2309 update_start:
2310 	nr = folio_batch_count(fbatch);
2311 
2312 	if (nr) {
2313 		folio = fbatch->folios[nr - 1];
2314 		*start = folio_next_index(folio);
2315 	}
2316 out:
2317 	rcu_read_unlock();
2318 	return folio_batch_count(fbatch);
2319 }
2320 EXPORT_SYMBOL(filemap_get_folios_contig);
2321 
2322 /**
2323  * filemap_get_folios_tag - Get a batch of folios matching @tag
2324  * @mapping:    The address_space to search
2325  * @start:      The starting page index
2326  * @end:        The final page index (inclusive)
2327  * @tag:        The tag index
2328  * @fbatch:     The batch to fill
2329  *
2330  * The first folio may start before @start; if it does, it will contain
2331  * @start.  The final folio may extend beyond @end; if it does, it will
2332  * contain @end.  The folios have ascending indices.  There may be gaps
2333  * between the folios if there are indices which have no folio in the
2334  * page cache.  If folios are added to or removed from the page cache
2335  * while this is running, they may or may not be found by this call.
2336  * Only returns folios that are tagged with @tag.
2337  *
2338  * Return: The number of folios found.
2339  * Also update @start to index the next folio for traversal.
2340  */
2341 unsigned filemap_get_folios_tag(struct address_space *mapping, pgoff_t *start,
2342 			pgoff_t end, xa_mark_t tag, struct folio_batch *fbatch)
2343 {
2344 	XA_STATE(xas, &mapping->i_pages, *start);
2345 	struct folio *folio;
2346 
2347 	rcu_read_lock();
2348 	while ((folio = find_get_entry(&xas, end, tag)) != NULL) {
2349 		/*
2350 		 * Shadow entries should never be tagged, but this iteration
2351 		 * is lockless so there is a window for page reclaim to evict
2352 		 * a page we saw tagged. Skip over it.
2353 		 */
2354 		if (xa_is_value(folio))
2355 			continue;
2356 		if (!folio_batch_add(fbatch, folio)) {
2357 			*start = folio_next_index(folio);
2358 			goto out;
2359 		}
2360 	}
2361 	/*
2362 	 * We come here when there is no page beyond @end. We take care to not
2363 	 * overflow the index @start as it confuses some of the callers. This
2364 	 * breaks the iteration when there is a page at index -1 but that is
2365 	 * already broke anyway.
2366 	 */
2367 	if (end == (pgoff_t)-1)
2368 		*start = (pgoff_t)-1;
2369 	else
2370 		*start = end + 1;
2371 out:
2372 	rcu_read_unlock();
2373 
2374 	return folio_batch_count(fbatch);
2375 }
2376 EXPORT_SYMBOL(filemap_get_folios_tag);
2377 
2378 /**
2379  * filemap_get_folios_dirty - Get a batch of dirty folios
2380  * @mapping:	The address_space to search
2381  * @start:	The starting folio index
2382  * @end:	The final folio index (inclusive)
2383  * @fbatch:	The batch to fill
2384  *
2385  * filemap_get_folios_dirty() works exactly like filemap_get_folios(), except
2386  * the returned folios are presumed to be dirty or undergoing writeback. Dirty
2387  * state is presumed because we don't block on folio lock nor want to miss
2388  * folios. Callers that need to can recheck state upon locking the folio.
2389  *
2390  * This may not return all dirty folios if the batch gets filled up.
2391  *
2392  * Return: The number of folios found.
2393  * Also update @start to be positioned for traversal of the next folio.
2394  */
2395 unsigned filemap_get_folios_dirty(struct address_space *mapping, pgoff_t *start,
2396 			pgoff_t end, struct folio_batch *fbatch)
2397 {
2398 	XA_STATE(xas, &mapping->i_pages, *start);
2399 	struct folio *folio;
2400 
2401 	rcu_read_lock();
2402 	while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) {
2403 		if (xa_is_value(folio))
2404 			continue;
2405 		if (folio_trylock(folio)) {
2406 			bool clean = !folio_test_dirty(folio) &&
2407 				     !folio_test_writeback(folio);
2408 			folio_unlock(folio);
2409 			if (clean) {
2410 				folio_put(folio);
2411 				continue;
2412 			}
2413 		}
2414 		if (!folio_batch_add(fbatch, folio)) {
2415 			*start = folio_next_index(folio);
2416 			goto out;
2417 		}
2418 	}
2419 	/*
2420 	 * We come here when there is no folio beyond @end. We take care to not
2421 	 * overflow the index @start as it confuses some of the callers. This
2422 	 * breaks the iteration when there is a folio at index -1 but that is
2423 	 * already broke anyway.
2424 	 */
2425 	if (end == (pgoff_t)-1)
2426 		*start = (pgoff_t)-1;
2427 	else
2428 		*start = end + 1;
2429 out:
2430 	rcu_read_unlock();
2431 
2432 	return folio_batch_count(fbatch);
2433 }
2434 
2435 /*
2436  * CD/DVDs are error prone. When a medium error occurs, the driver may fail
2437  * a _large_ part of the i/o request. Imagine the worst scenario:
2438  *
2439  *      ---R__________________________________________B__________
2440  *         ^ reading here                             ^ bad block(assume 4k)
2441  *
2442  * read(R) => miss => readahead(R...B) => media error => frustrating retries
2443  * => failing the whole request => read(R) => read(R+1) =>
2444  * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
2445  * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
2446  * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
2447  *
2448  * It is going insane. Fix it by quickly scaling down the readahead size.
2449  */
2450 static void shrink_readahead_size_eio(struct file_ra_state *ra)
2451 {
2452 	ra->ra_pages /= 4;
2453 }
2454 
2455 /*
2456  * filemap_get_read_batch - Get a batch of folios for read
2457  *
2458  * Get a batch of folios which represent a contiguous range of bytes in
2459  * the file.  No exceptional entries will be returned.  If @index is in
2460  * the middle of a folio, the entire folio will be returned.  The last
2461  * folio in the batch may have the readahead flag set or the uptodate flag
2462  * clear so that the caller can take the appropriate action.
2463  */
2464 static void filemap_get_read_batch(struct address_space *mapping,
2465 		pgoff_t index, pgoff_t max, struct folio_batch *fbatch)
2466 {
2467 	XA_STATE(xas, &mapping->i_pages, index);
2468 	struct folio *folio;
2469 
2470 	rcu_read_lock();
2471 	for (folio = xas_load(&xas); folio; folio = xas_next(&xas)) {
2472 		if (xas_retry(&xas, folio))
2473 			continue;
2474 		if (xas.xa_index > max || xa_is_value(folio))
2475 			break;
2476 		if (xa_is_sibling(folio))
2477 			break;
2478 		if (!folio_try_get(folio))
2479 			goto retry;
2480 
2481 		if (unlikely(folio != xas_reload(&xas)))
2482 			goto put_folio;
2483 
2484 		if (!folio_batch_add(fbatch, folio))
2485 			break;
2486 		if (!folio_test_uptodate(folio))
2487 			break;
2488 		if (folio_test_readahead(folio))
2489 			break;
2490 		xas_advance(&xas, folio_next_index(folio) - 1);
2491 		continue;
2492 put_folio:
2493 		folio_put(folio);
2494 retry:
2495 		xas_reset(&xas);
2496 	}
2497 	rcu_read_unlock();
2498 }
2499 
2500 static int filemap_read_folio(struct file *file, filler_t filler,
2501 		struct folio *folio)
2502 {
2503 	bool workingset = folio_test_workingset(folio);
2504 	unsigned long pflags;
2505 	int error;
2506 
2507 	/* Start the actual read. The read will unlock the page. */
2508 	if (unlikely(workingset))
2509 		psi_memstall_enter(&pflags);
2510 	error = filler(file, folio);
2511 	if (unlikely(workingset))
2512 		psi_memstall_leave(&pflags);
2513 	if (error)
2514 		return error;
2515 
2516 	error = folio_wait_locked_killable(folio);
2517 	if (error)
2518 		return error;
2519 	if (folio_test_uptodate(folio))
2520 		return 0;
2521 	if (file)
2522 		shrink_readahead_size_eio(&file->f_ra);
2523 	return -EIO;
2524 }
2525 
2526 static bool filemap_range_uptodate(struct address_space *mapping,
2527 		loff_t pos, size_t count, struct folio *folio,
2528 		bool need_uptodate)
2529 {
2530 	if (folio_test_uptodate(folio))
2531 		return true;
2532 	/* pipes can't handle partially uptodate pages */
2533 	if (need_uptodate)
2534 		return false;
2535 	if (!mapping->a_ops->is_partially_uptodate)
2536 		return false;
2537 	if (mapping->host->i_blkbits >= folio_shift(folio))
2538 		return false;
2539 
2540 	if (folio_pos(folio) > pos) {
2541 		count -= folio_pos(folio) - pos;
2542 		pos = 0;
2543 	} else {
2544 		pos -= folio_pos(folio);
2545 	}
2546 
2547 	if (pos == 0 && count >= folio_size(folio))
2548 		return false;
2549 
2550 	return mapping->a_ops->is_partially_uptodate(folio, pos, count);
2551 }
2552 
2553 static int filemap_update_page(struct kiocb *iocb,
2554 		struct address_space *mapping, size_t count,
2555 		struct folio *folio, bool need_uptodate)
2556 {
2557 	int error;
2558 
2559 	if (iocb->ki_flags & IOCB_NOWAIT) {
2560 		if (!filemap_invalidate_trylock_shared(mapping))
2561 			return -EAGAIN;
2562 	} else {
2563 		filemap_invalidate_lock_shared(mapping);
2564 	}
2565 
2566 	if (!folio_trylock(folio)) {
2567 		error = -EAGAIN;
2568 		if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_NOIO))
2569 			goto unlock_mapping;
2570 		if (!(iocb->ki_flags & IOCB_WAITQ)) {
2571 			filemap_invalidate_unlock_shared(mapping);
2572 			/*
2573 			 * This is where we usually end up waiting for a
2574 			 * previously submitted readahead to finish.
2575 			 */
2576 			folio_put_wait_locked(folio, TASK_KILLABLE);
2577 			return AOP_TRUNCATED_PAGE;
2578 		}
2579 		error = __folio_lock_async(folio, iocb->ki_waitq);
2580 		if (error)
2581 			goto unlock_mapping;
2582 	}
2583 
2584 	error = AOP_TRUNCATED_PAGE;
2585 	if (!folio->mapping)
2586 		goto unlock;
2587 
2588 	error = 0;
2589 	if (filemap_range_uptodate(mapping, iocb->ki_pos, count, folio,
2590 				   need_uptodate))
2591 		goto unlock;
2592 
2593 	error = -EAGAIN;
2594 	if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ))
2595 		goto unlock;
2596 
2597 	error = filemap_read_folio(iocb->ki_filp, mapping->a_ops->read_folio,
2598 			folio);
2599 	goto unlock_mapping;
2600 unlock:
2601 	folio_unlock(folio);
2602 unlock_mapping:
2603 	filemap_invalidate_unlock_shared(mapping);
2604 	if (error == AOP_TRUNCATED_PAGE)
2605 		folio_put(folio);
2606 	return error;
2607 }
2608 
2609 static int filemap_create_folio(struct kiocb *iocb, struct folio_batch *fbatch)
2610 {
2611 	struct address_space *mapping = iocb->ki_filp->f_mapping;
2612 	struct folio *folio;
2613 	int error;
2614 	unsigned int min_order = mapping_min_folio_order(mapping);
2615 	pgoff_t index;
2616 
2617 	if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_WAITQ))
2618 		return -EAGAIN;
2619 
2620 	folio = filemap_alloc_folio(mapping_gfp_mask(mapping), min_order, NULL);
2621 	if (!folio)
2622 		return -ENOMEM;
2623 	if (iocb->ki_flags & IOCB_DONTCACHE)
2624 		__folio_set_dropbehind(folio);
2625 
2626 	/*
2627 	 * Protect against truncate / hole punch. Grabbing invalidate_lock
2628 	 * here assures we cannot instantiate and bring uptodate new
2629 	 * pagecache folios after evicting page cache during truncate
2630 	 * and before actually freeing blocks.	Note that we could
2631 	 * release invalidate_lock after inserting the folio into
2632 	 * the page cache as the locked folio would then be enough to
2633 	 * synchronize with hole punching. But there are code paths
2634 	 * such as filemap_update_page() filling in partially uptodate
2635 	 * pages or ->readahead() that need to hold invalidate_lock
2636 	 * while mapping blocks for IO so let's hold the lock here as
2637 	 * well to keep locking rules simple.
2638 	 */
2639 	filemap_invalidate_lock_shared(mapping);
2640 	index = (iocb->ki_pos >> (PAGE_SHIFT + min_order)) << min_order;
2641 	error = filemap_add_folio(mapping, folio, index,
2642 			mapping_gfp_constraint(mapping, GFP_KERNEL));
2643 	if (error == -EEXIST)
2644 		error = AOP_TRUNCATED_PAGE;
2645 	if (error)
2646 		goto error;
2647 
2648 	error = filemap_read_folio(iocb->ki_filp, mapping->a_ops->read_folio,
2649 					folio);
2650 	if (error)
2651 		goto error;
2652 
2653 	filemap_invalidate_unlock_shared(mapping);
2654 	folio_batch_add(fbatch, folio);
2655 	return 0;
2656 error:
2657 	filemap_invalidate_unlock_shared(mapping);
2658 	folio_put(folio);
2659 	return error;
2660 }
2661 
2662 static int filemap_readahead(struct kiocb *iocb, struct file *file,
2663 		struct address_space *mapping, struct folio *folio,
2664 		pgoff_t last_index)
2665 {
2666 	DEFINE_READAHEAD(ractl, file, &file->f_ra, mapping, folio->index);
2667 
2668 	if (iocb->ki_flags & IOCB_NOIO)
2669 		return -EAGAIN;
2670 	if (iocb->ki_flags & IOCB_DONTCACHE)
2671 		ractl.dropbehind = 1;
2672 	page_cache_async_ra(&ractl, folio, last_index - folio->index);
2673 	return 0;
2674 }
2675 
2676 static int filemap_get_pages(struct kiocb *iocb, size_t count,
2677 		struct folio_batch *fbatch, bool need_uptodate)
2678 {
2679 	struct file *filp = iocb->ki_filp;
2680 	struct address_space *mapping = filp->f_mapping;
2681 	pgoff_t index = iocb->ki_pos >> PAGE_SHIFT;
2682 	pgoff_t last_index;
2683 	struct folio *folio;
2684 	unsigned int flags;
2685 	int err = 0;
2686 
2687 	/* "last_index" is the index of the folio beyond the end of the read */
2688 	last_index = round_up(iocb->ki_pos + count,
2689 			mapping_min_folio_nrbytes(mapping)) >> PAGE_SHIFT;
2690 retry:
2691 	if (fatal_signal_pending(current))
2692 		return -EINTR;
2693 
2694 	filemap_get_read_batch(mapping, index, last_index - 1, fbatch);
2695 	if (!folio_batch_count(fbatch)) {
2696 		DEFINE_READAHEAD(ractl, filp, &filp->f_ra, mapping, index);
2697 
2698 		if (iocb->ki_flags & IOCB_NOIO)
2699 			return -EAGAIN;
2700 		if (iocb->ki_flags & IOCB_NOWAIT)
2701 			flags = memalloc_noio_save();
2702 		if (iocb->ki_flags & IOCB_DONTCACHE)
2703 			ractl.dropbehind = 1;
2704 		page_cache_sync_ra(&ractl, last_index - index);
2705 		if (iocb->ki_flags & IOCB_NOWAIT)
2706 			memalloc_noio_restore(flags);
2707 		filemap_get_read_batch(mapping, index, last_index - 1, fbatch);
2708 	}
2709 	if (!folio_batch_count(fbatch)) {
2710 		err = filemap_create_folio(iocb, fbatch);
2711 		if (err == AOP_TRUNCATED_PAGE)
2712 			goto retry;
2713 		return err;
2714 	}
2715 
2716 	folio = fbatch->folios[folio_batch_count(fbatch) - 1];
2717 	if (folio_test_readahead(folio)) {
2718 		err = filemap_readahead(iocb, filp, mapping, folio, last_index);
2719 		if (err)
2720 			goto err;
2721 	}
2722 	if (!folio_test_uptodate(folio)) {
2723 		if (folio_batch_count(fbatch) > 1) {
2724 			err = -EAGAIN;
2725 			goto err;
2726 		}
2727 		err = filemap_update_page(iocb, mapping, count, folio,
2728 					  need_uptodate);
2729 		if (err)
2730 			goto err;
2731 	}
2732 
2733 	trace_mm_filemap_get_pages(mapping, index, last_index - 1);
2734 	return 0;
2735 err:
2736 	if (err < 0)
2737 		folio_put(folio);
2738 	if (likely(--fbatch->nr))
2739 		return 0;
2740 	if (err == AOP_TRUNCATED_PAGE)
2741 		goto retry;
2742 	return err;
2743 }
2744 
2745 static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio)
2746 {
2747 	unsigned int shift = folio_shift(folio);
2748 
2749 	return (pos1 >> shift == pos2 >> shift);
2750 }
2751 
2752 static void filemap_end_dropbehind_read(struct folio *folio)
2753 {
2754 	if (!folio_test_dropbehind(folio))
2755 		return;
2756 	if (folio_test_writeback(folio) || folio_test_dirty(folio))
2757 		return;
2758 	if (folio_trylock(folio)) {
2759 		filemap_end_dropbehind(folio);
2760 		folio_unlock(folio);
2761 	}
2762 }
2763 
2764 /**
2765  * filemap_read - Read data from the page cache.
2766  * @iocb: The iocb to read.
2767  * @iter: Destination for the data.
2768  * @already_read: Number of bytes already read by the caller.
2769  *
2770  * Copies data from the page cache.  If the data is not currently present,
2771  * uses the readahead and read_folio address_space operations to fetch it.
2772  *
2773  * Return: Total number of bytes copied, including those already read by
2774  * the caller.  If an error happens before any bytes are copied, returns
2775  * a negative error number.
2776  */
2777 ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *iter,
2778 		ssize_t already_read)
2779 {
2780 	struct file *filp = iocb->ki_filp;
2781 	struct file_ra_state *ra = &filp->f_ra;
2782 	struct address_space *mapping = filp->f_mapping;
2783 	struct inode *inode = mapping->host;
2784 	struct folio_batch fbatch;
2785 	int i, error = 0;
2786 	bool writably_mapped;
2787 	loff_t isize, end_offset;
2788 	loff_t last_pos = ra->prev_pos;
2789 
2790 	if (unlikely(iocb->ki_pos < 0))
2791 		return -EINVAL;
2792 	if (unlikely(iocb->ki_pos >= inode->i_sb->s_maxbytes))
2793 		return 0;
2794 	if (unlikely(!iov_iter_count(iter)))
2795 		return 0;
2796 
2797 	iov_iter_truncate(iter, inode->i_sb->s_maxbytes - iocb->ki_pos);
2798 	folio_batch_init(&fbatch);
2799 
2800 	do {
2801 		cond_resched();
2802 
2803 		/*
2804 		 * If we've already successfully copied some data, then we
2805 		 * can no longer safely return -EIOCBQUEUED. Hence mark
2806 		 * an async read NOWAIT at that point.
2807 		 */
2808 		if ((iocb->ki_flags & IOCB_WAITQ) && already_read)
2809 			iocb->ki_flags |= IOCB_NOWAIT;
2810 
2811 		if (unlikely(iocb->ki_pos >= i_size_read(inode)))
2812 			break;
2813 
2814 		error = filemap_get_pages(iocb, iter->count, &fbatch, false);
2815 		if (error < 0)
2816 			break;
2817 
2818 		/*
2819 		 * i_size must be checked after we know the pages are Uptodate.
2820 		 *
2821 		 * Checking i_size after the check allows us to calculate
2822 		 * the correct value for "nr", which means the zero-filled
2823 		 * part of the page is not copied back to userspace (unless
2824 		 * another truncate extends the file - this is desired though).
2825 		 */
2826 		isize = i_size_read(inode);
2827 		if (unlikely(iocb->ki_pos >= isize))
2828 			goto put_folios;
2829 		end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count);
2830 
2831 		/*
2832 		 * Once we start copying data, we don't want to be touching any
2833 		 * cachelines that might be contended:
2834 		 */
2835 		writably_mapped = mapping_writably_mapped(mapping);
2836 
2837 		/*
2838 		 * When a read accesses the same folio several times, only
2839 		 * mark it as accessed the first time.
2840 		 */
2841 		if (!pos_same_folio(iocb->ki_pos, last_pos - 1,
2842 				    fbatch.folios[0]))
2843 			folio_mark_accessed(fbatch.folios[0]);
2844 
2845 		for (i = 0; i < folio_batch_count(&fbatch); i++) {
2846 			struct folio *folio = fbatch.folios[i];
2847 			size_t fsize = folio_size(folio);
2848 			size_t offset = iocb->ki_pos & (fsize - 1);
2849 			size_t bytes = min_t(loff_t, end_offset - iocb->ki_pos,
2850 					     fsize - offset);
2851 			size_t copied;
2852 
2853 			if (end_offset < folio_pos(folio))
2854 				break;
2855 			if (i > 0)
2856 				folio_mark_accessed(folio);
2857 			/*
2858 			 * If users can be writing to this folio using arbitrary
2859 			 * virtual addresses, take care of potential aliasing
2860 			 * before reading the folio on the kernel side.
2861 			 */
2862 			if (writably_mapped)
2863 				flush_dcache_folio(folio);
2864 
2865 			copied = copy_folio_to_iter(folio, offset, bytes, iter);
2866 
2867 			already_read += copied;
2868 			iocb->ki_pos += copied;
2869 			last_pos = iocb->ki_pos;
2870 
2871 			if (copied < bytes) {
2872 				error = -EFAULT;
2873 				break;
2874 			}
2875 		}
2876 put_folios:
2877 		for (i = 0; i < folio_batch_count(&fbatch); i++) {
2878 			struct folio *folio = fbatch.folios[i];
2879 
2880 			filemap_end_dropbehind_read(folio);
2881 			folio_put(folio);
2882 		}
2883 		folio_batch_init(&fbatch);
2884 	} while (iov_iter_count(iter) && iocb->ki_pos < isize && !error);
2885 
2886 	file_accessed(filp);
2887 	ra->prev_pos = last_pos;
2888 	return already_read ? already_read : error;
2889 }
2890 EXPORT_SYMBOL_GPL(filemap_read);
2891 
2892 int kiocb_write_and_wait(struct kiocb *iocb, size_t count)
2893 {
2894 	struct address_space *mapping = iocb->ki_filp->f_mapping;
2895 	loff_t pos = iocb->ki_pos;
2896 	loff_t end = pos + count - 1;
2897 
2898 	if (iocb->ki_flags & IOCB_NOWAIT) {
2899 		if (filemap_range_needs_writeback(mapping, pos, end))
2900 			return -EAGAIN;
2901 		return 0;
2902 	}
2903 
2904 	return filemap_write_and_wait_range(mapping, pos, end);
2905 }
2906 EXPORT_SYMBOL_GPL(kiocb_write_and_wait);
2907 
2908 int filemap_invalidate_pages(struct address_space *mapping,
2909 			     loff_t pos, loff_t end, bool nowait)
2910 {
2911 	int ret;
2912 
2913 	if (nowait) {
2914 		/* we could block if there are any pages in the range */
2915 		if (filemap_range_has_page(mapping, pos, end))
2916 			return -EAGAIN;
2917 	} else {
2918 		ret = filemap_write_and_wait_range(mapping, pos, end);
2919 		if (ret)
2920 			return ret;
2921 	}
2922 
2923 	/*
2924 	 * After a write we want buffered reads to be sure to go to disk to get
2925 	 * the new data.  We invalidate clean cached page from the region we're
2926 	 * about to write.  We do this *before* the write so that we can return
2927 	 * without clobbering -EIOCBQUEUED from ->direct_IO().
2928 	 */
2929 	return invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT,
2930 					     end >> PAGE_SHIFT);
2931 }
2932 
2933 int kiocb_invalidate_pages(struct kiocb *iocb, size_t count)
2934 {
2935 	struct address_space *mapping = iocb->ki_filp->f_mapping;
2936 
2937 	return filemap_invalidate_pages(mapping, iocb->ki_pos,
2938 					iocb->ki_pos + count - 1,
2939 					iocb->ki_flags & IOCB_NOWAIT);
2940 }
2941 EXPORT_SYMBOL_GPL(kiocb_invalidate_pages);
2942 
2943 /**
2944  * generic_file_read_iter - generic filesystem read routine
2945  * @iocb:	kernel I/O control block
2946  * @iter:	destination for the data read
2947  *
2948  * This is the "read_iter()" routine for all filesystems
2949  * that can use the page cache directly.
2950  *
2951  * The IOCB_NOWAIT flag in iocb->ki_flags indicates that -EAGAIN shall
2952  * be returned when no data can be read without waiting for I/O requests
2953  * to complete; it doesn't prevent readahead.
2954  *
2955  * The IOCB_NOIO flag in iocb->ki_flags indicates that no new I/O
2956  * requests shall be made for the read or for readahead.  When no data
2957  * can be read, -EAGAIN shall be returned.  When readahead would be
2958  * triggered, a partial, possibly empty read shall be returned.
2959  *
2960  * Return:
2961  * * number of bytes copied, even for partial reads
2962  * * negative error code (or 0 if IOCB_NOIO) if nothing was read
2963  */
2964 ssize_t
2965 generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
2966 {
2967 	size_t count = iov_iter_count(iter);
2968 	ssize_t retval = 0;
2969 
2970 	if (!count)
2971 		return 0; /* skip atime */
2972 
2973 	if (iocb->ki_flags & IOCB_DIRECT) {
2974 		struct file *file = iocb->ki_filp;
2975 		struct address_space *mapping = file->f_mapping;
2976 		struct inode *inode = mapping->host;
2977 
2978 		retval = kiocb_write_and_wait(iocb, count);
2979 		if (retval < 0)
2980 			return retval;
2981 		file_accessed(file);
2982 
2983 		retval = mapping->a_ops->direct_IO(iocb, iter);
2984 		if (retval >= 0) {
2985 			iocb->ki_pos += retval;
2986 			count -= retval;
2987 		}
2988 		if (retval != -EIOCBQUEUED)
2989 			iov_iter_revert(iter, count - iov_iter_count(iter));
2990 
2991 		/*
2992 		 * Btrfs can have a short DIO read if we encounter
2993 		 * compressed extents, so if there was an error, or if
2994 		 * we've already read everything we wanted to, or if
2995 		 * there was a short read because we hit EOF, go ahead
2996 		 * and return.  Otherwise fallthrough to buffered io for
2997 		 * the rest of the read.  Buffered reads will not work for
2998 		 * DAX files, so don't bother trying.
2999 		 */
3000 		if (retval < 0 || !count || IS_DAX(inode))
3001 			return retval;
3002 		if (iocb->ki_pos >= i_size_read(inode))
3003 			return retval;
3004 	}
3005 
3006 	return filemap_read(iocb, iter, retval);
3007 }
3008 EXPORT_SYMBOL(generic_file_read_iter);
3009 
3010 /*
3011  * Splice subpages from a folio into a pipe.
3012  */
3013 size_t splice_folio_into_pipe(struct pipe_inode_info *pipe,
3014 			      struct folio *folio, loff_t fpos, size_t size)
3015 {
3016 	struct page *page;
3017 	size_t spliced = 0, offset = offset_in_folio(folio, fpos);
3018 
3019 	page = folio_page(folio, offset / PAGE_SIZE);
3020 	size = min(size, folio_size(folio) - offset);
3021 	offset %= PAGE_SIZE;
3022 
3023 	while (spliced < size && !pipe_is_full(pipe)) {
3024 		struct pipe_buffer *buf = pipe_head_buf(pipe);
3025 		size_t part = min_t(size_t, PAGE_SIZE - offset, size - spliced);
3026 
3027 		*buf = (struct pipe_buffer) {
3028 			.ops	= &page_cache_pipe_buf_ops,
3029 			.page	= page,
3030 			.offset	= offset,
3031 			.len	= part,
3032 		};
3033 		folio_get(folio);
3034 		pipe->head++;
3035 		page++;
3036 		spliced += part;
3037 		offset = 0;
3038 	}
3039 
3040 	return spliced;
3041 }
3042 
3043 /**
3044  * filemap_splice_read -  Splice data from a file's pagecache into a pipe
3045  * @in: The file to read from
3046  * @ppos: Pointer to the file position to read from
3047  * @pipe: The pipe to splice into
3048  * @len: The amount to splice
3049  * @flags: The SPLICE_F_* flags
3050  *
3051  * This function gets folios from a file's pagecache and splices them into the
3052  * pipe.  Readahead will be called as necessary to fill more folios.  This may
3053  * be used for blockdevs also.
3054  *
3055  * Return: On success, the number of bytes read will be returned and *@ppos
3056  * will be updated if appropriate; 0 will be returned if there is no more data
3057  * to be read; -EAGAIN will be returned if the pipe had no space, and some
3058  * other negative error code will be returned on error.  A short read may occur
3059  * if the pipe has insufficient space, we reach the end of the data or we hit a
3060  * hole.
3061  */
3062 ssize_t filemap_splice_read(struct file *in, loff_t *ppos,
3063 			    struct pipe_inode_info *pipe,
3064 			    size_t len, unsigned int flags)
3065 {
3066 	struct folio_batch fbatch;
3067 	struct kiocb iocb;
3068 	size_t total_spliced = 0, used, npages;
3069 	loff_t isize, end_offset;
3070 	bool writably_mapped;
3071 	int i, error = 0;
3072 
3073 	if (unlikely(*ppos >= in->f_mapping->host->i_sb->s_maxbytes))
3074 		return 0;
3075 
3076 	init_sync_kiocb(&iocb, in);
3077 	iocb.ki_pos = *ppos;
3078 
3079 	/* Work out how much data we can actually add into the pipe */
3080 	used = pipe_buf_usage(pipe);
3081 	npages = max_t(ssize_t, pipe->max_usage - used, 0);
3082 	len = min_t(size_t, len, npages * PAGE_SIZE);
3083 
3084 	folio_batch_init(&fbatch);
3085 
3086 	do {
3087 		cond_resched();
3088 
3089 		if (*ppos >= i_size_read(in->f_mapping->host))
3090 			break;
3091 
3092 		iocb.ki_pos = *ppos;
3093 		error = filemap_get_pages(&iocb, len, &fbatch, true);
3094 		if (error < 0)
3095 			break;
3096 
3097 		/*
3098 		 * i_size must be checked after we know the pages are Uptodate.
3099 		 *
3100 		 * Checking i_size after the check allows us to calculate
3101 		 * the correct value for "nr", which means the zero-filled
3102 		 * part of the page is not copied back to userspace (unless
3103 		 * another truncate extends the file - this is desired though).
3104 		 */
3105 		isize = i_size_read(in->f_mapping->host);
3106 		if (unlikely(*ppos >= isize))
3107 			break;
3108 		end_offset = min_t(loff_t, isize, *ppos + len);
3109 
3110 		/*
3111 		 * Once we start copying data, we don't want to be touching any
3112 		 * cachelines that might be contended:
3113 		 */
3114 		writably_mapped = mapping_writably_mapped(in->f_mapping);
3115 
3116 		for (i = 0; i < folio_batch_count(&fbatch); i++) {
3117 			struct folio *folio = fbatch.folios[i];
3118 			size_t n;
3119 
3120 			if (folio_pos(folio) >= end_offset)
3121 				goto out;
3122 			folio_mark_accessed(folio);
3123 
3124 			/*
3125 			 * If users can be writing to this folio using arbitrary
3126 			 * virtual addresses, take care of potential aliasing
3127 			 * before reading the folio on the kernel side.
3128 			 */
3129 			if (writably_mapped)
3130 				flush_dcache_folio(folio);
3131 
3132 			n = min_t(loff_t, len, isize - *ppos);
3133 			n = splice_folio_into_pipe(pipe, folio, *ppos, n);
3134 			if (!n)
3135 				goto out;
3136 			len -= n;
3137 			total_spliced += n;
3138 			*ppos += n;
3139 			in->f_ra.prev_pos = *ppos;
3140 			if (pipe_is_full(pipe))
3141 				goto out;
3142 		}
3143 
3144 		folio_batch_release(&fbatch);
3145 	} while (len);
3146 
3147 out:
3148 	folio_batch_release(&fbatch);
3149 	file_accessed(in);
3150 
3151 	return total_spliced ? total_spliced : error;
3152 }
3153 EXPORT_SYMBOL(filemap_splice_read);
3154 
3155 static inline loff_t folio_seek_hole_data(struct xa_state *xas,
3156 		struct address_space *mapping, struct folio *folio,
3157 		loff_t start, loff_t end, bool seek_data)
3158 {
3159 	const struct address_space_operations *ops = mapping->a_ops;
3160 	size_t offset, bsz = i_blocksize(mapping->host);
3161 
3162 	if (xa_is_value(folio) || folio_test_uptodate(folio))
3163 		return seek_data ? start : end;
3164 	if (!ops->is_partially_uptodate)
3165 		return seek_data ? end : start;
3166 
3167 	xas_pause(xas);
3168 	rcu_read_unlock();
3169 	folio_lock(folio);
3170 	if (unlikely(folio->mapping != mapping))
3171 		goto unlock;
3172 
3173 	offset = offset_in_folio(folio, start) & ~(bsz - 1);
3174 
3175 	do {
3176 		if (ops->is_partially_uptodate(folio, offset, bsz) ==
3177 							seek_data)
3178 			break;
3179 		start = (start + bsz) & ~((u64)bsz - 1);
3180 		offset += bsz;
3181 	} while (offset < folio_size(folio));
3182 unlock:
3183 	folio_unlock(folio);
3184 	rcu_read_lock();
3185 	return start;
3186 }
3187 
3188 static inline size_t seek_folio_size(struct xa_state *xas, struct folio *folio)
3189 {
3190 	if (xa_is_value(folio))
3191 		return PAGE_SIZE << xas_get_order(xas);
3192 	return folio_size(folio);
3193 }
3194 
3195 /**
3196  * mapping_seek_hole_data - Seek for SEEK_DATA / SEEK_HOLE in the page cache.
3197  * @mapping: Address space to search.
3198  * @start: First byte to consider.
3199  * @end: Limit of search (exclusive).
3200  * @whence: Either SEEK_HOLE or SEEK_DATA.
3201  *
3202  * If the page cache knows which blocks contain holes and which blocks
3203  * contain data, your filesystem can use this function to implement
3204  * SEEK_HOLE and SEEK_DATA.  This is useful for filesystems which are
3205  * entirely memory-based such as tmpfs, and filesystems which support
3206  * unwritten extents.
3207  *
3208  * Return: The requested offset on success, or -ENXIO if @whence specifies
3209  * SEEK_DATA and there is no data after @start.  There is an implicit hole
3210  * after @end - 1, so SEEK_HOLE returns @end if all the bytes between @start
3211  * and @end contain data.
3212  */
3213 loff_t mapping_seek_hole_data(struct address_space *mapping, loff_t start,
3214 		loff_t end, int whence)
3215 {
3216 	XA_STATE(xas, &mapping->i_pages, start >> PAGE_SHIFT);
3217 	pgoff_t max = (end - 1) >> PAGE_SHIFT;
3218 	bool seek_data = (whence == SEEK_DATA);
3219 	struct folio *folio;
3220 
3221 	if (end <= start)
3222 		return -ENXIO;
3223 
3224 	rcu_read_lock();
3225 	while ((folio = find_get_entry(&xas, max, XA_PRESENT))) {
3226 		loff_t pos = (u64)xas.xa_index << PAGE_SHIFT;
3227 		size_t seek_size;
3228 
3229 		if (start < pos) {
3230 			if (!seek_data)
3231 				goto unlock;
3232 			start = pos;
3233 		}
3234 
3235 		seek_size = seek_folio_size(&xas, folio);
3236 		pos = round_up((u64)pos + 1, seek_size);
3237 		start = folio_seek_hole_data(&xas, mapping, folio, start, pos,
3238 				seek_data);
3239 		if (start < pos)
3240 			goto unlock;
3241 		if (start >= end)
3242 			break;
3243 		if (seek_size > PAGE_SIZE)
3244 			xas_set(&xas, pos >> PAGE_SHIFT);
3245 		if (!xa_is_value(folio))
3246 			folio_put(folio);
3247 	}
3248 	if (seek_data)
3249 		start = -ENXIO;
3250 unlock:
3251 	rcu_read_unlock();
3252 	if (folio && !xa_is_value(folio))
3253 		folio_put(folio);
3254 	if (start > end)
3255 		return end;
3256 	return start;
3257 }
3258 
3259 #ifdef CONFIG_MMU
3260 #define MMAP_LOTSAMISS  (100)
3261 /*
3262  * lock_folio_maybe_drop_mmap - lock the page, possibly dropping the mmap_lock
3263  * @vmf - the vm_fault for this fault.
3264  * @folio - the folio to lock.
3265  * @fpin - the pointer to the file we may pin (or is already pinned).
3266  *
3267  * This works similar to lock_folio_or_retry in that it can drop the
3268  * mmap_lock.  It differs in that it actually returns the folio locked
3269  * if it returns 1 and 0 if it couldn't lock the folio.  If we did have
3270  * to drop the mmap_lock then fpin will point to the pinned file and
3271  * needs to be fput()'ed at a later point.
3272  */
3273 static int lock_folio_maybe_drop_mmap(struct vm_fault *vmf, struct folio *folio,
3274 				     struct file **fpin)
3275 {
3276 	if (folio_trylock(folio))
3277 		return 1;
3278 
3279 	/*
3280 	 * NOTE! This will make us return with VM_FAULT_RETRY, but with
3281 	 * the fault lock still held. That's how FAULT_FLAG_RETRY_NOWAIT
3282 	 * is supposed to work. We have way too many special cases..
3283 	 */
3284 	if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
3285 		return 0;
3286 
3287 	*fpin = maybe_unlock_mmap_for_io(vmf, *fpin);
3288 	if (vmf->flags & FAULT_FLAG_KILLABLE) {
3289 		if (__folio_lock_killable(folio)) {
3290 			/*
3291 			 * We didn't have the right flags to drop the
3292 			 * fault lock, but all fault_handlers only check
3293 			 * for fatal signals if we return VM_FAULT_RETRY,
3294 			 * so we need to drop the fault lock here and
3295 			 * return 0 if we don't have a fpin.
3296 			 */
3297 			if (*fpin == NULL)
3298 				release_fault_lock(vmf);
3299 			return 0;
3300 		}
3301 	} else
3302 		__folio_lock(folio);
3303 
3304 	return 1;
3305 }
3306 
3307 /*
3308  * Synchronous readahead happens when we don't even find a page in the page
3309  * cache at all.  We don't want to perform IO under the mmap sem, so if we have
3310  * to drop the mmap sem we return the file that was pinned in order for us to do
3311  * that.  If we didn't pin a file then we return NULL.  The file that is
3312  * returned needs to be fput()'ed when we're done with it.
3313  */
3314 static struct file *do_sync_mmap_readahead(struct vm_fault *vmf)
3315 {
3316 	struct file *file = vmf->vma->vm_file;
3317 	struct file_ra_state *ra = &file->f_ra;
3318 	struct address_space *mapping = file->f_mapping;
3319 	DEFINE_READAHEAD(ractl, file, ra, mapping, vmf->pgoff);
3320 	struct file *fpin = NULL;
3321 	vm_flags_t vm_flags = vmf->vma->vm_flags;
3322 	bool force_thp_readahead = false;
3323 	unsigned int thp_order = 0;
3324 	unsigned short mmap_miss;
3325 
3326 	/* Use the readahead code, even if readahead is disabled */
3327 	if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) && (vm_flags & VM_HUGEPAGE)) {
3328 		/*
3329 		 * Cap max THP order at 2MB: this is the common PMD-sized
3330 		 * hugepage size, and it avoids memory pressure from very
3331 		 * large forced readahead when mapping_max_folio_order() is
3332 		 * high (for example, 128MB with 64K base pages on arm64).
3333 		 */
3334 		if (mapping_large_folio_support(mapping)) {
3335 			force_thp_readahead = true;
3336 			thp_order = min_t(unsigned int,
3337 					  mapping_max_folio_order(mapping),
3338 					  get_order(SZ_2M));
3339 		}
3340 	}
3341 
3342 	if (!force_thp_readahead) {
3343 		/*
3344 		 * If we don't want any read-ahead, don't bother.
3345 		 * VM_EXEC case below is already intended for random access.
3346 		 */
3347 		if ((vm_flags & (VM_RAND_READ | VM_EXEC)) == VM_RAND_READ)
3348 			return fpin;
3349 
3350 		if (!ra->ra_pages)
3351 			return fpin;
3352 
3353 		if (vm_flags & VM_SEQ_READ) {
3354 			fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3355 			page_cache_sync_ra(&ractl, ra->ra_pages);
3356 			return fpin;
3357 		}
3358 	}
3359 
3360 	if (!(vm_flags & (VM_SEQ_READ | VM_EXEC))) {
3361 		/* Avoid banging the cache line if not needed */
3362 		mmap_miss = READ_ONCE(ra->mmap_miss);
3363 		if (mmap_miss < MMAP_LOTSAMISS * 10)
3364 			WRITE_ONCE(ra->mmap_miss, ++mmap_miss);
3365 
3366 		/*
3367 		 * Do we miss much more than hit in this file? If so,
3368 		 * stop bothering with read-ahead. It will only hurt.
3369 		 */
3370 		if (mmap_miss > MMAP_LOTSAMISS)
3371 			return fpin;
3372 	}
3373 
3374 	if (force_thp_readahead) {
3375 		unsigned long folio_nr_pages = 1UL << thp_order;
3376 
3377 		fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3378 		ractl._index &= ~(folio_nr_pages - 1);
3379 		ra->size = folio_nr_pages;
3380 		/*
3381 		 * Fetch two folios so we get the chance to actually
3382 		 * readahead, unless we've been told not to.
3383 		 */
3384 		if (!(vm_flags & VM_RAND_READ))
3385 			ra->size *= 2;
3386 		ra->async_size = folio_nr_pages;
3387 		ra->order = thp_order;
3388 		page_cache_ra_order(&ractl, ra);
3389 		return fpin;
3390 	}
3391 
3392 	if (vm_flags & VM_EXEC) {
3393 		/*
3394 		 * Allow arch to request a preferred minimum folio order for
3395 		 * executable memory. This can often be beneficial to
3396 		 * performance if (e.g.) arm64 can contpte-map the folio.
3397 		 * Executable memory rarely benefits from readahead, due to its
3398 		 * random access nature, so set async_size to 0.
3399 		 *
3400 		 * Limit to the boundaries of the VMA to avoid reading in any
3401 		 * pad that might exist between sections, which would be a waste
3402 		 * of memory.
3403 		 */
3404 		struct vm_area_struct *vma = vmf->vma;
3405 		unsigned long start = vma->vm_pgoff;
3406 		unsigned long end = start + vma_pages(vma);
3407 		unsigned long ra_end;
3408 
3409 		ra->order = exec_folio_order();
3410 		ra->start = round_down(vmf->pgoff, 1UL << ra->order);
3411 		ra->start = max(ra->start, start);
3412 		ra_end = round_up(ra->start + ra->ra_pages, 1UL << ra->order);
3413 		ra_end = min(ra_end, end);
3414 		ra->size = ra_end - ra->start;
3415 		ra->async_size = 0;
3416 	} else {
3417 		/*
3418 		 * mmap read-around
3419 		 */
3420 		ra->start = max_t(long, 0, vmf->pgoff - ra->ra_pages / 2);
3421 		ra->size = ra->ra_pages;
3422 		ra->async_size = ra->ra_pages / 4;
3423 		ra->order = 0;
3424 	}
3425 
3426 	fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3427 	ractl._index = ra->start;
3428 	page_cache_ra_order(&ractl, ra);
3429 	return fpin;
3430 }
3431 
3432 /*
3433  * Asynchronous readahead happens when we find the page and PG_readahead,
3434  * so we want to possibly extend the readahead further.  We return the file that
3435  * was pinned if we have to drop the mmap_lock in order to do IO.
3436  */
3437 static struct file *do_async_mmap_readahead(struct vm_fault *vmf,
3438 					    struct folio *folio)
3439 {
3440 	struct file *file = vmf->vma->vm_file;
3441 	struct file_ra_state *ra = &file->f_ra;
3442 	DEFINE_READAHEAD(ractl, file, ra, file->f_mapping, vmf->pgoff);
3443 	struct file *fpin = NULL;
3444 	unsigned short mmap_miss;
3445 
3446 	/* If we don't want any read-ahead, don't bother */
3447 	if (vmf->vma->vm_flags & VM_RAND_READ || !ra->ra_pages)
3448 		return fpin;
3449 
3450 	/*
3451 	 * If the folio is locked, we're likely racing against another fault.
3452 	 * Don't touch the mmap_miss counter to avoid decreasing it multiple
3453 	 * times for a single folio and break the balance with mmap_miss
3454 	 * increase in do_sync_mmap_readahead().
3455 	 *
3456 	 * VM_SEQ_READ and VM_EXEC mappings skip the mmap_miss increment in
3457 	 * do_sync_mmap_readahead(), so skip the decrement here as well to
3458 	 * keep the counter symmetric.
3459 	 */
3460 	if (likely(!folio_test_locked(folio)) &&
3461 	    !(vmf->vma->vm_flags & (VM_SEQ_READ | VM_EXEC))) {
3462 		mmap_miss = READ_ONCE(ra->mmap_miss);
3463 		if (mmap_miss)
3464 			WRITE_ONCE(ra->mmap_miss, --mmap_miss);
3465 	}
3466 
3467 	if (folio_test_readahead(folio)) {
3468 		fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3469 		page_cache_async_ra(&ractl, folio, ra->ra_pages);
3470 	}
3471 	return fpin;
3472 }
3473 
3474 static vm_fault_t filemap_fault_recheck_pte_none(struct vm_fault *vmf)
3475 {
3476 	struct vm_area_struct *vma = vmf->vma;
3477 	vm_fault_t ret = 0;
3478 	pte_t *ptep;
3479 
3480 	/*
3481 	 * We might have COW'ed a pagecache folio and might now have an mlocked
3482 	 * anon folio mapped. The original pagecache folio is not mlocked and
3483 	 * might have been evicted. During a read+clear/modify/write update of
3484 	 * the PTE, such as done in do_numa_page()/change_pte_range(), we
3485 	 * temporarily clear the PTE under PT lock and might detect it here as
3486 	 * "none" when not holding the PT lock.
3487 	 *
3488 	 * Not rechecking the PTE under PT lock could result in an unexpected
3489 	 * major fault in an mlock'ed region. Recheck only for this special
3490 	 * scenario while holding the PT lock, to not degrade non-mlocked
3491 	 * scenarios. Recheck the PTE without PT lock firstly, thereby reducing
3492 	 * the number of times we hold PT lock.
3493 	 */
3494 	if (!(vma->vm_flags & VM_LOCKED))
3495 		return 0;
3496 
3497 	if (!(vmf->flags & FAULT_FLAG_ORIG_PTE_VALID))
3498 		return 0;
3499 
3500 	ptep = pte_offset_map_ro_nolock(vma->vm_mm, vmf->pmd, vmf->address,
3501 					&vmf->ptl);
3502 	if (unlikely(!ptep))
3503 		return VM_FAULT_NOPAGE;
3504 
3505 	if (unlikely(!pte_none(ptep_get_lockless(ptep)))) {
3506 		ret = VM_FAULT_NOPAGE;
3507 	} else {
3508 		spin_lock(vmf->ptl);
3509 		if (unlikely(!pte_none(ptep_get(ptep))))
3510 			ret = VM_FAULT_NOPAGE;
3511 		spin_unlock(vmf->ptl);
3512 	}
3513 	pte_unmap(ptep);
3514 	return ret;
3515 }
3516 
3517 /**
3518  * filemap_fault - read in file data for page fault handling
3519  * @vmf:	struct vm_fault containing details of the fault
3520  *
3521  * filemap_fault() is invoked via the vma operations vector for a
3522  * mapped memory region to read in file data during a page fault.
3523  *
3524  * The goto's are kind of ugly, but this streamlines the normal case of having
3525  * it in the page cache, and handles the special cases reasonably without
3526  * having a lot of duplicated code.
3527  *
3528  * vma->vm_mm->mmap_lock must be held on entry.
3529  *
3530  * If our return value has VM_FAULT_RETRY set, it's because the mmap_lock
3531  * may be dropped before doing I/O or by lock_folio_maybe_drop_mmap().
3532  *
3533  * If our return value does not have VM_FAULT_RETRY set, the mmap_lock
3534  * has not been released.
3535  *
3536  * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
3537  *
3538  * Return: bitwise-OR of %VM_FAULT_ codes.
3539  */
3540 vm_fault_t filemap_fault(struct vm_fault *vmf)
3541 {
3542 	int error;
3543 	struct file *file = vmf->vma->vm_file;
3544 	struct file *fpin = NULL;
3545 	struct address_space *mapping = file->f_mapping;
3546 	struct inode *inode = mapping->host;
3547 	pgoff_t max_idx, index = vmf->pgoff;
3548 	struct folio *folio;
3549 	vm_fault_t ret = 0;
3550 	bool mapping_locked = false;
3551 
3552 	max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3553 	if (unlikely(index >= max_idx))
3554 		return VM_FAULT_SIGBUS;
3555 
3556 	trace_mm_filemap_fault(mapping, index);
3557 
3558 	/*
3559 	 * Do we have something in the page cache already?
3560 	 */
3561 	folio = filemap_get_folio(mapping, index);
3562 	if (likely(!IS_ERR(folio))) {
3563 		/*
3564 		 * We found the page, so try async readahead before waiting for
3565 		 * the lock.
3566 		 */
3567 		if (!(vmf->flags & FAULT_FLAG_TRIED))
3568 			fpin = do_async_mmap_readahead(vmf, folio);
3569 		if (unlikely(!folio_test_uptodate(folio))) {
3570 			filemap_invalidate_lock_shared(mapping);
3571 			mapping_locked = true;
3572 		}
3573 	} else {
3574 		ret = filemap_fault_recheck_pte_none(vmf);
3575 		if (unlikely(ret))
3576 			return ret;
3577 
3578 		/* No page in the page cache at all */
3579 		count_vm_event(PGMAJFAULT);
3580 		count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT);
3581 		ret = VM_FAULT_MAJOR;
3582 		fpin = do_sync_mmap_readahead(vmf);
3583 retry_find:
3584 		/*
3585 		 * See comment in filemap_create_folio() why we need
3586 		 * invalidate_lock
3587 		 */
3588 		if (!mapping_locked) {
3589 			filemap_invalidate_lock_shared(mapping);
3590 			mapping_locked = true;
3591 		}
3592 		folio = __filemap_get_folio(mapping, index,
3593 					  FGP_CREAT|FGP_FOR_MMAP,
3594 					  vmf->gfp_mask);
3595 		if (IS_ERR(folio)) {
3596 			if (fpin)
3597 				goto out_retry;
3598 			filemap_invalidate_unlock_shared(mapping);
3599 			return VM_FAULT_OOM;
3600 		}
3601 	}
3602 
3603 	if (!lock_folio_maybe_drop_mmap(vmf, folio, &fpin))
3604 		goto out_retry;
3605 
3606 	/* Did it get truncated? */
3607 	if (unlikely(folio->mapping != mapping)) {
3608 		folio_unlock(folio);
3609 		folio_put(folio);
3610 		goto retry_find;
3611 	}
3612 	VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
3613 
3614 	/*
3615 	 * We have a locked folio in the page cache, now we need to check
3616 	 * that it's up-to-date. If not, it is going to be due to an error,
3617 	 * or because readahead was otherwise unable to retrieve it.
3618 	 */
3619 	if (unlikely(!folio_test_uptodate(folio))) {
3620 		/*
3621 		 * If the invalidate lock is not held, the folio was in cache
3622 		 * and uptodate and now it is not. Strange but possible since we
3623 		 * didn't hold the page lock all the time. Let's drop
3624 		 * everything, get the invalidate lock and try again.
3625 		 */
3626 		if (!mapping_locked) {
3627 			folio_unlock(folio);
3628 			folio_put(folio);
3629 			goto retry_find;
3630 		}
3631 
3632 		/*
3633 		 * OK, the folio is really not uptodate. This can be because the
3634 		 * VMA has the VM_RAND_READ flag set, or because an error
3635 		 * arose. Let's read it in directly.
3636 		 */
3637 		goto page_not_uptodate;
3638 	}
3639 
3640 	/*
3641 	 * We've made it this far and we had to drop our mmap_lock, now is the
3642 	 * time to return to the upper layer and have it re-find the vma and
3643 	 * redo the fault.
3644 	 */
3645 	if (fpin) {
3646 		folio_unlock(folio);
3647 		goto out_retry;
3648 	}
3649 	if (mapping_locked)
3650 		filemap_invalidate_unlock_shared(mapping);
3651 
3652 	/*
3653 	 * Found the page and have a reference on it.
3654 	 * We must recheck i_size under page lock.
3655 	 */
3656 	max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3657 	if (unlikely(index >= max_idx)) {
3658 		folio_unlock(folio);
3659 		folio_put(folio);
3660 		return VM_FAULT_SIGBUS;
3661 	}
3662 
3663 	vmf->page = folio_file_page(folio, index);
3664 	return ret | VM_FAULT_LOCKED;
3665 
3666 page_not_uptodate:
3667 	/*
3668 	 * Umm, take care of errors if the page isn't up-to-date.
3669 	 * Try to re-read it _once_. We do this synchronously,
3670 	 * because there really aren't any performance issues here
3671 	 * and we need to check for errors.
3672 	 */
3673 	fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3674 	error = filemap_read_folio(file, mapping->a_ops->read_folio, folio);
3675 	if (fpin)
3676 		goto out_retry;
3677 	folio_put(folio);
3678 
3679 	if (!error || error == AOP_TRUNCATED_PAGE)
3680 		goto retry_find;
3681 	filemap_invalidate_unlock_shared(mapping);
3682 
3683 	return VM_FAULT_SIGBUS;
3684 
3685 out_retry:
3686 	/*
3687 	 * We dropped the mmap_lock, we need to return to the fault handler to
3688 	 * re-find the vma and come back and find our hopefully still populated
3689 	 * page.
3690 	 */
3691 	if (!IS_ERR(folio))
3692 		folio_put(folio);
3693 	if (mapping_locked)
3694 		filemap_invalidate_unlock_shared(mapping);
3695 	if (fpin)
3696 		fput(fpin);
3697 	return ret | VM_FAULT_RETRY;
3698 }
3699 EXPORT_SYMBOL(filemap_fault);
3700 
3701 static bool filemap_map_pmd(struct vm_fault *vmf, struct folio *folio,
3702 		pgoff_t start)
3703 {
3704 	struct mm_struct *mm = vmf->vma->vm_mm;
3705 
3706 	/* Huge page is mapped? No need to proceed. */
3707 	if (pmd_trans_huge(*vmf->pmd)) {
3708 		folio_unlock(folio);
3709 		folio_put(folio);
3710 		return true;
3711 	}
3712 
3713 	if (pmd_none(*vmf->pmd) && folio_test_pmd_mappable(folio)) {
3714 		struct page *page = folio_file_page(folio, start);
3715 		vm_fault_t ret = do_set_pmd(vmf, folio, page);
3716 		if (!ret) {
3717 			/* The page is mapped successfully, reference consumed. */
3718 			folio_unlock(folio);
3719 			return true;
3720 		}
3721 	}
3722 
3723 	if (pmd_none(*vmf->pmd) && vmf->prealloc_pte)
3724 		pmd_install(mm, vmf->pmd, &vmf->prealloc_pte);
3725 
3726 	return false;
3727 }
3728 
3729 static struct folio *next_uptodate_folio(struct xa_state *xas,
3730 		struct address_space *mapping, pgoff_t end_pgoff)
3731 {
3732 	struct folio *folio = xas_next_entry(xas, end_pgoff);
3733 	unsigned long max_idx;
3734 
3735 	do {
3736 		if (!folio)
3737 			return NULL;
3738 		if (xas_retry(xas, folio))
3739 			continue;
3740 		if (xa_is_value(folio))
3741 			continue;
3742 		if (!folio_try_get(folio))
3743 			continue;
3744 		if (folio_test_locked(folio))
3745 			goto skip;
3746 		/* Has the page moved or been split? */
3747 		if (unlikely(folio != xas_reload(xas)))
3748 			goto skip;
3749 		if (!folio_test_uptodate(folio) || folio_test_readahead(folio))
3750 			goto skip;
3751 		if (!folio_trylock(folio))
3752 			goto skip;
3753 		if (folio->mapping != mapping)
3754 			goto unlock;
3755 		if (!folio_test_uptodate(folio))
3756 			goto unlock;
3757 		max_idx = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
3758 		if (xas->xa_index >= max_idx)
3759 			goto unlock;
3760 		return folio;
3761 unlock:
3762 		folio_unlock(folio);
3763 skip:
3764 		folio_put(folio);
3765 	} while ((folio = xas_next_entry(xas, end_pgoff)) != NULL);
3766 
3767 	return NULL;
3768 }
3769 
3770 /*
3771  * Map page range [start_page, start_page + nr_pages) of folio.
3772  * start_page is gotten from start by folio_page(folio, start)
3773  */
3774 static vm_fault_t filemap_map_folio_range(struct vm_fault *vmf,
3775 			struct folio *folio, unsigned long start,
3776 			unsigned long addr, unsigned int nr_pages,
3777 			unsigned long *rss, pgoff_t file_end)
3778 {
3779 	struct address_space *mapping = folio->mapping;
3780 	unsigned int ref_from_caller = 1;
3781 	vm_fault_t ret = 0;
3782 	struct page *page = folio_page(folio, start);
3783 	unsigned int count = 0;
3784 	pte_t *old_ptep = vmf->pte;
3785 	unsigned long addr0;
3786 
3787 	/*
3788 	 * Map the large folio fully where possible:
3789 	 *
3790 	 *  - The folio is fully within size of the file or belong
3791 	 *    to shmem/tmpfs;
3792 	 *  - The folio doesn't cross VMA boundary;
3793 	 *  - The folio doesn't cross page table boundary;
3794 	 */
3795 	addr0 = addr - start * PAGE_SIZE;
3796 	if ((file_end >= folio_next_index(folio) || shmem_mapping(mapping)) &&
3797 	    folio_within_vma(folio, vmf->vma) &&
3798 	    (addr0 & PMD_MASK) == ((addr0 + folio_size(folio) - 1) & PMD_MASK)) {
3799 		vmf->pte -= start;
3800 		page -= start;
3801 		addr = addr0;
3802 		nr_pages = folio_nr_pages(folio);
3803 	}
3804 
3805 	do {
3806 		if (PageHWPoison(page + count))
3807 			goto skip;
3808 
3809 		/*
3810 		 * NOTE: If there're PTE markers, we'll leave them to be
3811 		 * handled in the specific fault path, and it'll prohibit the
3812 		 * fault-around logic.
3813 		 */
3814 		if (!pte_none(ptep_get(&vmf->pte[count])))
3815 			goto skip;
3816 
3817 		count++;
3818 		continue;
3819 skip:
3820 		if (count) {
3821 			set_pte_range(vmf, folio, page, count, addr);
3822 			*rss += count;
3823 			folio_ref_add(folio, count - ref_from_caller);
3824 			ref_from_caller = 0;
3825 			if (in_range(vmf->address, addr, count * PAGE_SIZE))
3826 				ret = VM_FAULT_NOPAGE;
3827 		}
3828 
3829 		count++;
3830 		page += count;
3831 		vmf->pte += count;
3832 		addr += count * PAGE_SIZE;
3833 		count = 0;
3834 	} while (--nr_pages > 0);
3835 
3836 	if (count) {
3837 		set_pte_range(vmf, folio, page, count, addr);
3838 		*rss += count;
3839 		folio_ref_add(folio, count - ref_from_caller);
3840 		ref_from_caller = 0;
3841 		if (in_range(vmf->address, addr, count * PAGE_SIZE))
3842 			ret = VM_FAULT_NOPAGE;
3843 	}
3844 
3845 	vmf->pte = old_ptep;
3846 	if (ref_from_caller)
3847 		/* Locked folios cannot get truncated. */
3848 		folio_ref_dec(folio);
3849 
3850 	return ret;
3851 }
3852 
3853 static vm_fault_t filemap_map_order0_folio(struct vm_fault *vmf,
3854 		struct folio *folio, unsigned long addr,
3855 		unsigned long *rss)
3856 {
3857 	vm_fault_t ret = 0;
3858 	struct page *page = &folio->page;
3859 
3860 	if (PageHWPoison(page))
3861 		goto out;
3862 
3863 	/*
3864 	 * NOTE: If there're PTE markers, we'll leave them to be
3865 	 * handled in the specific fault path, and it'll prohibit
3866 	 * the fault-around logic.
3867 	 */
3868 	if (!pte_none(ptep_get(vmf->pte)))
3869 		goto out;
3870 
3871 	if (vmf->address == addr)
3872 		ret = VM_FAULT_NOPAGE;
3873 
3874 	set_pte_range(vmf, folio, page, 1, addr);
3875 	(*rss)++;
3876 	return ret;
3877 
3878 out:
3879 	/* Locked folios cannot get truncated. */
3880 	folio_ref_dec(folio);
3881 	return ret;
3882 }
3883 
3884 vm_fault_t filemap_map_pages(struct vm_fault *vmf,
3885 			     pgoff_t start_pgoff, pgoff_t end_pgoff)
3886 {
3887 	struct vm_area_struct *vma = vmf->vma;
3888 	struct file *file = vma->vm_file;
3889 	struct address_space *mapping = file->f_mapping;
3890 	pgoff_t file_end, last_pgoff = start_pgoff;
3891 	unsigned long addr;
3892 	XA_STATE(xas, &mapping->i_pages, start_pgoff);
3893 	struct folio *folio;
3894 	vm_fault_t ret = 0;
3895 	unsigned long rss = 0;
3896 	unsigned int nr_pages = 0, folio_type;
3897 
3898 	/*
3899 	 * Recalculate end_pgoff based on file_end before calling
3900 	 * next_uptodate_folio() to avoid races with concurrent
3901 	 * truncation.
3902 	 */
3903 	file_end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE) - 1;
3904 	end_pgoff = min(end_pgoff, file_end);
3905 
3906 	rcu_read_lock();
3907 	folio = next_uptodate_folio(&xas, mapping, end_pgoff);
3908 	if (!folio)
3909 		goto out;
3910 
3911 	/*
3912 	 * Do not allow to map with PMD across i_size to preserve
3913 	 * SIGBUS semantics.
3914 	 *
3915 	 * Make an exception for shmem/tmpfs that for long time
3916 	 * intentionally mapped with PMDs across i_size.
3917 	 */
3918 	if ((file_end >= folio_next_index(folio) || shmem_mapping(mapping)) &&
3919 	    filemap_map_pmd(vmf, folio, start_pgoff)) {
3920 		ret = VM_FAULT_NOPAGE;
3921 		goto out;
3922 	}
3923 
3924 	addr = vma->vm_start + ((start_pgoff - vma->vm_pgoff) << PAGE_SHIFT);
3925 	vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl);
3926 	if (!vmf->pte) {
3927 		folio_unlock(folio);
3928 		folio_put(folio);
3929 		goto out;
3930 	}
3931 
3932 	folio_type = mm_counter_file(folio);
3933 	do {
3934 		unsigned long end;
3935 		vm_fault_t map_ret;
3936 
3937 		addr += (xas.xa_index - last_pgoff) << PAGE_SHIFT;
3938 		vmf->pte += xas.xa_index - last_pgoff;
3939 		last_pgoff = xas.xa_index;
3940 		end = folio_next_index(folio) - 1;
3941 		nr_pages = min(end, end_pgoff) - xas.xa_index + 1;
3942 
3943 		if (!folio_test_large(folio)) {
3944 			map_ret = filemap_map_order0_folio(vmf, folio, addr,
3945 							   &rss);
3946 		} else {
3947 			unsigned long start = xas.xa_index - folio->index;
3948 
3949 			map_ret = filemap_map_folio_range(vmf, folio, start,
3950 							  addr, nr_pages, &rss,
3951 							  file_end);
3952 		}
3953 		ret |= map_ret;
3954 
3955 		/*
3956 		 * If there are too many folios that are recently evicted
3957 		 * in a file, they will probably continue to be evicted.
3958 		 * In such situation, read-ahead is only a waste of IO.
3959 		 * Don't decrease mmap_miss in this scenario to make sure
3960 		 * we can stop read-ahead.
3961 		 *
3962 		 * VM_SEQ_READ and VM_EXEC mappings skip the mmap_miss
3963 		 * increment in do_sync_mmap_readahead(), so skip the
3964 		 * decrement here as well to keep the counter symmetric.
3965 		 */
3966 		if ((map_ret & VM_FAULT_NOPAGE) &&
3967 		    !(vmf->flags & FAULT_FLAG_TRIED) &&
3968 		    !folio_test_workingset(folio) &&
3969 		    !(vma->vm_flags & (VM_SEQ_READ | VM_EXEC))) {
3970 			unsigned short mmap_miss;
3971 
3972 			mmap_miss = READ_ONCE(file->f_ra.mmap_miss);
3973 			if (mmap_miss)
3974 				WRITE_ONCE(file->f_ra.mmap_miss,
3975 					   mmap_miss - 1);
3976 		}
3977 
3978 		folio_unlock(folio);
3979 	} while ((folio = next_uptodate_folio(&xas, mapping, end_pgoff)) != NULL);
3980 	add_mm_counter(vma->vm_mm, folio_type, rss);
3981 	pte_unmap_unlock(vmf->pte, vmf->ptl);
3982 	trace_mm_filemap_map_pages(mapping, start_pgoff, end_pgoff);
3983 out:
3984 	rcu_read_unlock();
3985 
3986 	return ret;
3987 }
3988 EXPORT_SYMBOL(filemap_map_pages);
3989 
3990 vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
3991 {
3992 	struct address_space *mapping = vmf->vma->vm_file->f_mapping;
3993 	struct folio *folio = page_folio(vmf->page);
3994 	vm_fault_t ret = VM_FAULT_LOCKED;
3995 
3996 	sb_start_pagefault(mapping->host->i_sb);
3997 	file_update_time(vmf->vma->vm_file);
3998 	folio_lock(folio);
3999 	if (folio->mapping != mapping) {
4000 		folio_unlock(folio);
4001 		ret = VM_FAULT_NOPAGE;
4002 		goto out;
4003 	}
4004 	/*
4005 	 * We mark the folio dirty already here so that when freeze is in
4006 	 * progress, we are guaranteed that writeback during freezing will
4007 	 * see the dirty folio and writeprotect it again.
4008 	 */
4009 	folio_mark_dirty(folio);
4010 	folio_wait_stable(folio);
4011 out:
4012 	sb_end_pagefault(mapping->host->i_sb);
4013 	return ret;
4014 }
4015 
4016 const struct vm_operations_struct generic_file_vm_ops = {
4017 	.fault		= filemap_fault,
4018 	.map_pages	= filemap_map_pages,
4019 	.page_mkwrite	= filemap_page_mkwrite,
4020 };
4021 
4022 /* This is used for a general mmap of a disk file */
4023 
4024 int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
4025 {
4026 	struct address_space *mapping = file->f_mapping;
4027 
4028 	if (!mapping->a_ops->read_folio)
4029 		return -ENOEXEC;
4030 	file_accessed(file);
4031 	vma->vm_ops = &generic_file_vm_ops;
4032 	return 0;
4033 }
4034 
4035 int generic_file_mmap_prepare(struct vm_area_desc *desc)
4036 {
4037 	struct file *file = desc->file;
4038 	struct address_space *mapping = file->f_mapping;
4039 
4040 	if (!mapping->a_ops->read_folio)
4041 		return -ENOEXEC;
4042 	file_accessed(file);
4043 	desc->vm_ops = &generic_file_vm_ops;
4044 	return 0;
4045 }
4046 
4047 /*
4048  * This is for filesystems which do not implement ->writepage.
4049  */
4050 int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
4051 {
4052 	if (vma_is_shared_maywrite(vma))
4053 		return -EINVAL;
4054 	return generic_file_mmap(file, vma);
4055 }
4056 
4057 int generic_file_readonly_mmap_prepare(struct vm_area_desc *desc)
4058 {
4059 	if (is_shared_maywrite(&desc->vma_flags))
4060 		return -EINVAL;
4061 	return generic_file_mmap_prepare(desc);
4062 }
4063 #else
4064 vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
4065 {
4066 	return VM_FAULT_SIGBUS;
4067 }
4068 int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
4069 {
4070 	return -ENOSYS;
4071 }
4072 int generic_file_mmap_prepare(struct vm_area_desc *desc)
4073 {
4074 	return -ENOSYS;
4075 }
4076 int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
4077 {
4078 	return -ENOSYS;
4079 }
4080 int generic_file_readonly_mmap_prepare(struct vm_area_desc *desc)
4081 {
4082 	return -ENOSYS;
4083 }
4084 #endif /* CONFIG_MMU */
4085 
4086 EXPORT_SYMBOL(filemap_page_mkwrite);
4087 EXPORT_SYMBOL(generic_file_mmap);
4088 EXPORT_SYMBOL(generic_file_mmap_prepare);
4089 EXPORT_SYMBOL(generic_file_readonly_mmap);
4090 EXPORT_SYMBOL(generic_file_readonly_mmap_prepare);
4091 
4092 static struct folio *do_read_cache_folio(struct address_space *mapping,
4093 		pgoff_t index, filler_t filler, struct file *file, gfp_t gfp)
4094 {
4095 	struct folio *folio;
4096 	int err;
4097 
4098 	if (!filler)
4099 		filler = mapping->a_ops->read_folio;
4100 repeat:
4101 	folio = filemap_get_folio(mapping, index);
4102 	if (IS_ERR(folio)) {
4103 		folio = filemap_alloc_folio(gfp, mapping_min_folio_order(mapping), NULL);
4104 		if (!folio)
4105 			return ERR_PTR(-ENOMEM);
4106 		index = mapping_align_index(mapping, index);
4107 		err = filemap_add_folio(mapping, folio, index, gfp);
4108 		if (unlikely(err)) {
4109 			folio_put(folio);
4110 			if (err == -EEXIST)
4111 				goto repeat;
4112 			/* Presumably ENOMEM for xarray node */
4113 			return ERR_PTR(err);
4114 		}
4115 
4116 		goto filler;
4117 	}
4118 	if (folio_test_uptodate(folio))
4119 		goto out;
4120 
4121 	if (!folio_trylock(folio)) {
4122 		folio_put_wait_locked(folio, TASK_UNINTERRUPTIBLE);
4123 		goto repeat;
4124 	}
4125 
4126 	/* Folio was truncated from mapping */
4127 	if (!folio->mapping) {
4128 		folio_unlock(folio);
4129 		folio_put(folio);
4130 		goto repeat;
4131 	}
4132 
4133 	/* Someone else locked and filled the page in a very small window */
4134 	if (folio_test_uptodate(folio)) {
4135 		folio_unlock(folio);
4136 		goto out;
4137 	}
4138 
4139 filler:
4140 	err = filemap_read_folio(file, filler, folio);
4141 	if (err) {
4142 		folio_put(folio);
4143 		if (err == AOP_TRUNCATED_PAGE)
4144 			goto repeat;
4145 		return ERR_PTR(err);
4146 	}
4147 
4148 out:
4149 	folio_mark_accessed(folio);
4150 	return folio;
4151 }
4152 
4153 /**
4154  * read_cache_folio - Read into page cache, fill it if needed.
4155  * @mapping: The address_space to read from.
4156  * @index: The index to read.
4157  * @filler: Function to perform the read, or NULL to use aops->read_folio().
4158  * @file: Passed to filler function, may be NULL if not required.
4159  *
4160  * Read one page into the page cache.  If it succeeds, the folio returned
4161  * will contain @index, but it may not be the first page of the folio.
4162  *
4163  * If the filler function returns an error, it will be returned to the
4164  * caller.
4165  *
4166  * Context: May sleep.  Expects mapping->invalidate_lock to be held.
4167  * Return: An uptodate folio on success, ERR_PTR() on failure.
4168  */
4169 struct folio *read_cache_folio(struct address_space *mapping, pgoff_t index,
4170 		filler_t filler, struct file *file)
4171 {
4172 	return do_read_cache_folio(mapping, index, filler, file,
4173 			mapping_gfp_mask(mapping));
4174 }
4175 EXPORT_SYMBOL(read_cache_folio);
4176 
4177 /**
4178  * mapping_read_folio_gfp - Read into page cache, using specified allocation flags.
4179  * @mapping:	The address_space for the folio.
4180  * @index:	The index that the allocated folio will contain.
4181  * @gfp:	The page allocator flags to use if allocating.
4182  *
4183  * This is the same as "read_cache_folio(mapping, index, NULL, NULL)", but with
4184  * any new memory allocations done using the specified allocation flags.
4185  *
4186  * The most likely error from this function is EIO, but ENOMEM is
4187  * possible and so is EINTR.  If ->read_folio returns another error,
4188  * that will be returned to the caller.
4189  *
4190  * The function expects mapping->invalidate_lock to be already held.
4191  *
4192  * Return: Uptodate folio on success, ERR_PTR() on failure.
4193  */
4194 struct folio *mapping_read_folio_gfp(struct address_space *mapping,
4195 		pgoff_t index, gfp_t gfp)
4196 {
4197 	return do_read_cache_folio(mapping, index, NULL, NULL, gfp);
4198 }
4199 EXPORT_SYMBOL(mapping_read_folio_gfp);
4200 
4201 static struct page *do_read_cache_page(struct address_space *mapping,
4202 		pgoff_t index, filler_t *filler, struct file *file, gfp_t gfp)
4203 {
4204 	struct folio *folio;
4205 
4206 	folio = do_read_cache_folio(mapping, index, filler, file, gfp);
4207 	if (IS_ERR(folio))
4208 		return &folio->page;
4209 	return folio_file_page(folio, index);
4210 }
4211 
4212 struct page *read_cache_page(struct address_space *mapping,
4213 			pgoff_t index, filler_t *filler, struct file *file)
4214 {
4215 	return do_read_cache_page(mapping, index, filler, file,
4216 			mapping_gfp_mask(mapping));
4217 }
4218 EXPORT_SYMBOL(read_cache_page);
4219 
4220 /**
4221  * read_cache_page_gfp - read into page cache, using specified page allocation flags.
4222  * @mapping:	the page's address_space
4223  * @index:	the page index
4224  * @gfp:	the page allocator flags to use if allocating
4225  *
4226  * This is the same as "read_mapping_page(mapping, index, NULL)", but with
4227  * any new page allocations done using the specified allocation flags.
4228  *
4229  * If the page does not get brought uptodate, return -EIO.
4230  *
4231  * The function expects mapping->invalidate_lock to be already held.
4232  *
4233  * Return: up to date page on success, ERR_PTR() on failure.
4234  */
4235 struct page *read_cache_page_gfp(struct address_space *mapping,
4236 				pgoff_t index,
4237 				gfp_t gfp)
4238 {
4239 	return do_read_cache_page(mapping, index, NULL, NULL, gfp);
4240 }
4241 EXPORT_SYMBOL(read_cache_page_gfp);
4242 
4243 /*
4244  * Warn about a page cache invalidation failure during a direct I/O write.
4245  */
4246 static void dio_warn_stale_pagecache(struct file *filp)
4247 {
4248 	static DEFINE_RATELIMIT_STATE(_rs, 86400 * HZ, DEFAULT_RATELIMIT_BURST);
4249 	char pathname[128];
4250 	char *path;
4251 
4252 	errseq_set(&filp->f_mapping->wb_err, -EIO);
4253 	if (__ratelimit(&_rs)) {
4254 		path = file_path(filp, pathname, sizeof(pathname));
4255 		if (IS_ERR(path))
4256 			path = "(unknown)";
4257 		pr_crit("Page cache invalidation failure on direct I/O.  Possible data corruption due to collision with buffered I/O!\n");
4258 		pr_crit("File: %s PID: %d Comm: %.20s\n", path, current->pid,
4259 			current->comm);
4260 	}
4261 }
4262 
4263 void kiocb_invalidate_post_direct_write(struct kiocb *iocb, size_t count)
4264 {
4265 	struct address_space *mapping = iocb->ki_filp->f_mapping;
4266 
4267 	if (mapping->nrpages &&
4268 	    invalidate_inode_pages2_range(mapping,
4269 			iocb->ki_pos >> PAGE_SHIFT,
4270 			(iocb->ki_pos + count - 1) >> PAGE_SHIFT))
4271 		dio_warn_stale_pagecache(iocb->ki_filp);
4272 }
4273 
4274 ssize_t
4275 generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from)
4276 {
4277 	struct address_space *mapping = iocb->ki_filp->f_mapping;
4278 	size_t write_len = iov_iter_count(from);
4279 	ssize_t written;
4280 
4281 	/*
4282 	 * If a page can not be invalidated, return 0 to fall back
4283 	 * to buffered write.
4284 	 */
4285 	written = kiocb_invalidate_pages(iocb, write_len);
4286 	if (written) {
4287 		if (written == -EBUSY)
4288 			return 0;
4289 		return written;
4290 	}
4291 
4292 	written = mapping->a_ops->direct_IO(iocb, from);
4293 
4294 	/*
4295 	 * Finally, try again to invalidate clean pages which might have been
4296 	 * cached by non-direct readahead, or faulted in by get_user_pages()
4297 	 * if the source of the write was an mmap'ed region of the file
4298 	 * we're writing.  Either one is a pretty crazy thing to do,
4299 	 * so we don't support it 100%.  If this invalidation
4300 	 * fails, tough, the write still worked...
4301 	 *
4302 	 * Most of the time we do not need this since dio_complete() will do
4303 	 * the invalidation for us. However there are some file systems that
4304 	 * do not end up with dio_complete() being called, so let's not break
4305 	 * them by removing it completely.
4306 	 *
4307 	 * Noticeable example is a blkdev_direct_IO().
4308 	 *
4309 	 * Skip invalidation for async writes or if mapping has no pages.
4310 	 */
4311 	if (written > 0) {
4312 		struct inode *inode = mapping->host;
4313 		loff_t pos = iocb->ki_pos;
4314 
4315 		kiocb_invalidate_post_direct_write(iocb, written);
4316 		pos += written;
4317 		write_len -= written;
4318 		if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
4319 			i_size_write(inode, pos);
4320 			mark_inode_dirty(inode);
4321 		}
4322 		iocb->ki_pos = pos;
4323 	}
4324 	if (written != -EIOCBQUEUED)
4325 		iov_iter_revert(from, write_len - iov_iter_count(from));
4326 	return written;
4327 }
4328 EXPORT_SYMBOL(generic_file_direct_write);
4329 
4330 ssize_t generic_perform_write(struct kiocb *iocb, struct iov_iter *i)
4331 {
4332 	struct file *file = iocb->ki_filp;
4333 	loff_t pos = iocb->ki_pos;
4334 	struct address_space *mapping = file->f_mapping;
4335 	const struct address_space_operations *a_ops = mapping->a_ops;
4336 	size_t chunk = mapping_max_folio_size(mapping);
4337 	long status = 0;
4338 	ssize_t written = 0;
4339 
4340 	do {
4341 		struct folio *folio;
4342 		size_t offset;		/* Offset into folio */
4343 		size_t bytes;		/* Bytes to write to folio */
4344 		size_t copied;		/* Bytes copied from user */
4345 		void *fsdata = NULL;
4346 
4347 		bytes = iov_iter_count(i);
4348 retry:
4349 		offset = pos & (chunk - 1);
4350 		bytes = min(chunk - offset, bytes);
4351 		balance_dirty_pages_ratelimited(mapping);
4352 
4353 		if (fatal_signal_pending(current)) {
4354 			status = -EINTR;
4355 			break;
4356 		}
4357 
4358 		status = a_ops->write_begin(iocb, mapping, pos, bytes,
4359 						&folio, &fsdata);
4360 		if (unlikely(status < 0))
4361 			break;
4362 
4363 		offset = offset_in_folio(folio, pos);
4364 		if (bytes > folio_size(folio) - offset)
4365 			bytes = folio_size(folio) - offset;
4366 
4367 		if (mapping_writably_mapped(mapping))
4368 			flush_dcache_folio(folio);
4369 
4370 		/*
4371 		 * Faults here on mmap()s can recurse into arbitrary
4372 		 * filesystem code. Lots of locks are held that can
4373 		 * deadlock. Use an atomic copy to avoid deadlocking
4374 		 * in page fault handling.
4375 		 */
4376 		copied = copy_folio_from_iter_atomic(folio, offset, bytes, i);
4377 		flush_dcache_folio(folio);
4378 
4379 		status = a_ops->write_end(iocb, mapping, pos, bytes, copied,
4380 						folio, fsdata);
4381 		if (unlikely(status != copied)) {
4382 			iov_iter_revert(i, copied - max(status, 0L));
4383 			if (unlikely(status < 0))
4384 				break;
4385 		}
4386 		cond_resched();
4387 
4388 		if (unlikely(status == 0)) {
4389 			/*
4390 			 * A short copy made ->write_end() reject the
4391 			 * thing entirely.  Might be memory poisoning
4392 			 * halfway through, might be a race with munmap,
4393 			 * might be severe memory pressure.
4394 			 */
4395 			if (chunk > PAGE_SIZE)
4396 				chunk /= 2;
4397 			if (copied) {
4398 				bytes = copied;
4399 				goto retry;
4400 			}
4401 
4402 			/*
4403 			 * 'folio' is now unlocked and faults on it can be
4404 			 * handled. Ensure forward progress by trying to
4405 			 * fault it in now.
4406 			 */
4407 			if (fault_in_iov_iter_readable(i, bytes) == bytes) {
4408 				status = -EFAULT;
4409 				break;
4410 			}
4411 		} else {
4412 			pos += status;
4413 			written += status;
4414 		}
4415 	} while (iov_iter_count(i));
4416 
4417 	if (!written)
4418 		return status;
4419 	iocb->ki_pos += written;
4420 	return written;
4421 }
4422 EXPORT_SYMBOL(generic_perform_write);
4423 
4424 /**
4425  * __generic_file_write_iter - write data to a file
4426  * @iocb:	IO state structure (file, offset, etc.)
4427  * @from:	iov_iter with data to write
4428  *
4429  * This function does all the work needed for actually writing data to a
4430  * file. It does all basic checks, removes SUID from the file, updates
4431  * modification times and calls proper subroutines depending on whether we
4432  * do direct IO or a standard buffered write.
4433  *
4434  * It expects i_rwsem to be grabbed unless we work on a block device or similar
4435  * object which does not need locking at all.
4436  *
4437  * This function does *not* take care of syncing data in case of O_SYNC write.
4438  * A caller has to handle it. This is mainly due to the fact that we want to
4439  * avoid syncing under i_rwsem.
4440  *
4441  * Return:
4442  * * number of bytes written, even for truncated writes
4443  * * negative error code if no data has been written at all
4444  */
4445 ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
4446 {
4447 	struct file *file = iocb->ki_filp;
4448 	struct address_space *mapping = file->f_mapping;
4449 	struct inode *inode = mapping->host;
4450 	ssize_t ret;
4451 
4452 	ret = file_remove_privs(file);
4453 	if (ret)
4454 		return ret;
4455 
4456 	ret = file_update_time(file);
4457 	if (ret)
4458 		return ret;
4459 
4460 	if (iocb->ki_flags & IOCB_DIRECT) {
4461 		ret = generic_file_direct_write(iocb, from);
4462 		/*
4463 		 * If the write stopped short of completing, fall back to
4464 		 * buffered writes.  Some filesystems do this for writes to
4465 		 * holes, for example.  For DAX files, a buffered write will
4466 		 * not succeed (even if it did, DAX does not handle dirty
4467 		 * page-cache pages correctly).
4468 		 */
4469 		if (ret < 0 || !iov_iter_count(from) || IS_DAX(inode))
4470 			return ret;
4471 		return direct_write_fallback(iocb, from, ret,
4472 				generic_perform_write(iocb, from));
4473 	}
4474 
4475 	return generic_perform_write(iocb, from);
4476 }
4477 EXPORT_SYMBOL(__generic_file_write_iter);
4478 
4479 /**
4480  * generic_file_write_iter - write data to a file
4481  * @iocb:	IO state structure
4482  * @from:	iov_iter with data to write
4483  *
4484  * This is a wrapper around __generic_file_write_iter() to be used by most
4485  * filesystems. It takes care of syncing the file in case of O_SYNC file
4486  * and acquires i_rwsem as needed.
4487  * Return:
4488  * * negative error code if no data has been written at all of
4489  *   vfs_fsync_range() failed for a synchronous write
4490  * * number of bytes written, even for truncated writes
4491  */
4492 ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
4493 {
4494 	struct file *file = iocb->ki_filp;
4495 	struct inode *inode = file->f_mapping->host;
4496 	ssize_t ret;
4497 
4498 	inode_lock(inode);
4499 	ret = generic_write_checks(iocb, from);
4500 	if (ret > 0)
4501 		ret = __generic_file_write_iter(iocb, from);
4502 	inode_unlock(inode);
4503 
4504 	if (ret > 0)
4505 		ret = generic_write_sync(iocb, ret);
4506 	return ret;
4507 }
4508 EXPORT_SYMBOL(generic_file_write_iter);
4509 
4510 /**
4511  * filemap_release_folio() - Release fs-specific metadata on a folio.
4512  * @folio: The folio which the kernel is trying to free.
4513  * @gfp: Memory allocation flags (and I/O mode).
4514  *
4515  * The address_space is trying to release any data attached to a folio
4516  * (presumably at folio->private).
4517  *
4518  * This will also be called if the private_2 flag is set on a page,
4519  * indicating that the folio has other metadata associated with it.
4520  *
4521  * The @gfp argument specifies whether I/O may be performed to release
4522  * this page (__GFP_IO), and whether the call may block
4523  * (__GFP_RECLAIM & __GFP_FS).
4524  *
4525  * Return: %true if the release was successful, otherwise %false.
4526  */
4527 bool filemap_release_folio(struct folio *folio, gfp_t gfp)
4528 {
4529 	struct address_space * const mapping = folio->mapping;
4530 
4531 	BUG_ON(!folio_test_locked(folio));
4532 	if (!folio_needs_release(folio))
4533 		return true;
4534 	if (folio_test_writeback(folio))
4535 		return false;
4536 
4537 	if (mapping && mapping->a_ops->release_folio)
4538 		return mapping->a_ops->release_folio(folio, gfp);
4539 	return try_to_free_buffers(folio);
4540 }
4541 EXPORT_SYMBOL(filemap_release_folio);
4542 
4543 /**
4544  * filemap_invalidate_inode - Invalidate/forcibly write back a range of an inode's pagecache
4545  * @inode: The inode to flush
4546  * @flush: Set to write back rather than simply invalidate.
4547  * @start: First byte to in range.
4548  * @end: Last byte in range (inclusive), or LLONG_MAX for everything from start
4549  *       onwards.
4550  *
4551  * Invalidate all the folios on an inode that contribute to the specified
4552  * range, possibly writing them back first.  Whilst the operation is
4553  * undertaken, the invalidate lock is held to prevent new folios from being
4554  * installed.
4555  */
4556 int filemap_invalidate_inode(struct inode *inode, bool flush,
4557 			     loff_t start, loff_t end)
4558 {
4559 	struct address_space *mapping = inode->i_mapping;
4560 	pgoff_t first = start >> PAGE_SHIFT;
4561 	pgoff_t last = end >> PAGE_SHIFT;
4562 	pgoff_t nr = end == LLONG_MAX ? ULONG_MAX : last - first + 1;
4563 
4564 	if (!mapping || !mapping->nrpages || end < start)
4565 		goto out;
4566 
4567 	/* Prevent new folios from being added to the inode. */
4568 	filemap_invalidate_lock(mapping);
4569 
4570 	if (!mapping->nrpages)
4571 		goto unlock;
4572 
4573 	unmap_mapping_pages(mapping, first, nr, false);
4574 
4575 	/* Write back the data if we're asked to. */
4576 	if (flush)
4577 		filemap_fdatawrite_range(mapping, start, end);
4578 
4579 	/* Wait for writeback to complete on all folios and discard. */
4580 	invalidate_inode_pages2_range(mapping, start / PAGE_SIZE, end / PAGE_SIZE);
4581 
4582 unlock:
4583 	filemap_invalidate_unlock(mapping);
4584 out:
4585 	return filemap_check_errors(mapping);
4586 }
4587 EXPORT_SYMBOL_GPL(filemap_invalidate_inode);
4588 
4589 #ifdef CONFIG_CACHESTAT_SYSCALL
4590 /**
4591  * filemap_cachestat() - compute the page cache statistics of a mapping
4592  * @mapping:	The mapping to compute the statistics for.
4593  * @first_index:	The starting page cache index.
4594  * @last_index:	The final page index (inclusive).
4595  * @cs:	the cachestat struct to write the result to.
4596  *
4597  * This will query the page cache statistics of a mapping in the
4598  * page range of [first_index, last_index] (inclusive). The statistics
4599  * queried include: number of dirty pages, number of pages marked for
4600  * writeback, and the number of (recently) evicted pages.
4601  */
4602 static void filemap_cachestat(struct address_space *mapping,
4603 		pgoff_t first_index, pgoff_t last_index, struct cachestat *cs)
4604 {
4605 	XA_STATE(xas, &mapping->i_pages, first_index);
4606 	struct folio *folio;
4607 
4608 	/* Flush stats (and potentially sleep) outside the RCU read section. */
4609 	mem_cgroup_flush_stats_ratelimited(NULL);
4610 
4611 	rcu_read_lock();
4612 	xas_for_each(&xas, folio, last_index) {
4613 		int order;
4614 		unsigned long nr_pages;
4615 		pgoff_t folio_first_index, folio_last_index;
4616 
4617 		/*
4618 		 * Don't deref the folio. It is not pinned, and might
4619 		 * get freed (and reused) underneath us.
4620 		 *
4621 		 * We *could* pin it, but that would be expensive for
4622 		 * what should be a fast and lightweight syscall.
4623 		 *
4624 		 * Instead, derive all information of interest from
4625 		 * the rcu-protected xarray.
4626 		 */
4627 
4628 		if (xas_retry(&xas, folio))
4629 			continue;
4630 
4631 		order = xas_get_order(&xas);
4632 		nr_pages = 1 << order;
4633 		folio_first_index = round_down(xas.xa_index, 1 << order);
4634 		folio_last_index = folio_first_index + nr_pages - 1;
4635 
4636 		/* Folios might straddle the range boundaries, only count covered pages */
4637 		if (folio_first_index < first_index)
4638 			nr_pages -= first_index - folio_first_index;
4639 
4640 		if (folio_last_index > last_index)
4641 			nr_pages -= folio_last_index - last_index;
4642 
4643 		if (xa_is_value(folio)) {
4644 			/* page is evicted */
4645 			void *shadow = (void *)folio;
4646 			bool workingset; /* not used */
4647 
4648 			cs->nr_evicted += nr_pages;
4649 
4650 #ifdef CONFIG_SWAP /* implies CONFIG_MMU */
4651 			if (shmem_mapping(mapping)) {
4652 				/* shmem file - in swap cache */
4653 				swp_entry_t swp = radix_to_swp_entry(folio);
4654 
4655 				/* swapin error results in poisoned entry */
4656 				if (!softleaf_is_swap(swp))
4657 					goto resched;
4658 
4659 				/*
4660 				 * Getting a swap entry from the shmem
4661 				 * inode means we beat
4662 				 * shmem_unuse(). rcu_read_lock()
4663 				 * ensures swapoff waits for us before
4664 				 * freeing the swapper space. However,
4665 				 * we can race with swapping and
4666 				 * invalidation, so there might not be
4667 				 * a shadow in the swapcache (yet).
4668 				 */
4669 				shadow = swap_cache_get_shadow(swp);
4670 				if (!shadow)
4671 					goto resched;
4672 			}
4673 #endif
4674 			if (workingset_test_recent(shadow, true, &workingset, false))
4675 				cs->nr_recently_evicted += nr_pages;
4676 
4677 			goto resched;
4678 		}
4679 
4680 		/* page is in cache */
4681 		cs->nr_cache += nr_pages;
4682 
4683 		if (xas_get_mark(&xas, PAGECACHE_TAG_DIRTY))
4684 			cs->nr_dirty += nr_pages;
4685 
4686 		if (xas_get_mark(&xas, PAGECACHE_TAG_WRITEBACK))
4687 			cs->nr_writeback += nr_pages;
4688 
4689 resched:
4690 		if (need_resched()) {
4691 			xas_pause(&xas);
4692 			cond_resched_rcu();
4693 		}
4694 	}
4695 	rcu_read_unlock();
4696 }
4697 
4698 /*
4699  * See mincore: reveal pagecache information only for files
4700  * that the calling process has write access to, or could (if
4701  * tried) open for writing.
4702  */
4703 static inline bool can_do_cachestat(struct file *f)
4704 {
4705 	if (f->f_mode & FMODE_WRITE)
4706 		return true;
4707 	if (inode_owner_or_capable(file_mnt_idmap(f), file_inode(f)))
4708 		return true;
4709 	return file_permission(f, MAY_WRITE) == 0;
4710 }
4711 
4712 /*
4713  * The cachestat(2) system call.
4714  *
4715  * cachestat() returns the page cache statistics of a file in the
4716  * bytes range specified by `off` and `len`: number of cached pages,
4717  * number of dirty pages, number of pages marked for writeback,
4718  * number of evicted pages, and number of recently evicted pages.
4719  *
4720  * An evicted page is a page that is previously in the page cache
4721  * but has been evicted since. A page is recently evicted if its last
4722  * eviction was recent enough that its reentry to the cache would
4723  * indicate that it is actively being used by the system, and that
4724  * there is memory pressure on the system.
4725  *
4726  * `off` and `len` must be non-negative integers. If `len` > 0,
4727  * the queried range is [`off`, `off` + `len`]. If `len` == 0,
4728  * we will query in the range from `off` to the end of the file.
4729  *
4730  * The `flags` argument is unused for now, but is included for future
4731  * extensibility. User should pass 0 (i.e no flag specified).
4732  *
4733  * Currently, hugetlbfs is not supported.
4734  *
4735  * Because the status of a page can change after cachestat() checks it
4736  * but before it returns to the application, the returned values may
4737  * contain stale information.
4738  *
4739  * return values:
4740  *  zero        - success
4741  *  -EFAULT     - cstat or cstat_range points to an illegal address
4742  *  -EINVAL     - invalid flags
4743  *  -EBADF      - invalid file descriptor
4744  *  -EOPNOTSUPP - file descriptor is of a hugetlbfs file
4745  */
4746 SYSCALL_DEFINE4(cachestat, unsigned int, fd,
4747 		struct cachestat_range __user *, cstat_range,
4748 		struct cachestat __user *, cstat, unsigned int, flags)
4749 {
4750 	CLASS(fd, f)(fd);
4751 	struct address_space *mapping;
4752 	struct cachestat_range csr;
4753 	struct cachestat cs;
4754 	pgoff_t first_index, last_index;
4755 
4756 	if (fd_empty(f))
4757 		return -EBADF;
4758 
4759 	if (copy_from_user(&csr, cstat_range,
4760 			sizeof(struct cachestat_range)))
4761 		return -EFAULT;
4762 
4763 	/* hugetlbfs is not supported */
4764 	if (is_file_hugepages(fd_file(f)))
4765 		return -EOPNOTSUPP;
4766 
4767 	if (!can_do_cachestat(fd_file(f)))
4768 		return -EPERM;
4769 
4770 	if (flags != 0)
4771 		return -EINVAL;
4772 
4773 	first_index = csr.off >> PAGE_SHIFT;
4774 	last_index =
4775 		csr.len == 0 ? ULONG_MAX : (csr.off + csr.len - 1) >> PAGE_SHIFT;
4776 	memset(&cs, 0, sizeof(struct cachestat));
4777 	mapping = fd_file(f)->f_mapping;
4778 	filemap_cachestat(mapping, first_index, last_index, &cs);
4779 
4780 	if (copy_to_user(cstat, &cs, sizeof(struct cachestat)))
4781 		return -EFAULT;
4782 
4783 	return 0;
4784 }
4785 #endif /* CONFIG_CACHESTAT_SYSCALL */
4786