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