OSDN Git Service

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