Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[linux-2.6-microblaze.git] / mm / truncate.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * mm/truncate.c - code for taking down pages from address_spaces
4  *
5  * Copyright (C) 2002, Linus Torvalds
6  *
7  * 10Sep2002    Andrew Morton
8  *              Initial version.
9  */
10
11 #include <linux/kernel.h>
12 #include <linux/backing-dev.h>
13 #include <linux/dax.h>
14 #include <linux/gfp.h>
15 #include <linux/mm.h>
16 #include <linux/swap.h>
17 #include <linux/export.h>
18 #include <linux/pagemap.h>
19 #include <linux/highmem.h>
20 #include <linux/pagevec.h>
21 #include <linux/task_io_accounting_ops.h>
22 #include <linux/buffer_head.h>  /* grr. try_to_release_page,
23                                    do_invalidatepage */
24 #include <linux/shmem_fs.h>
25 #include <linux/cleancache.h>
26 #include <linux/rmap.h>
27 #include "internal.h"
28
29 /*
30  * Regular page slots are stabilized by the page lock even without the tree
31  * itself locked.  These unlocked entries need verification under the tree
32  * lock.
33  */
34 static inline void __clear_shadow_entry(struct address_space *mapping,
35                                 pgoff_t index, void *entry)
36 {
37         XA_STATE(xas, &mapping->i_pages, index);
38
39         xas_set_update(&xas, workingset_update_node);
40         if (xas_load(&xas) != entry)
41                 return;
42         xas_store(&xas, NULL);
43 }
44
45 static void clear_shadow_entry(struct address_space *mapping, pgoff_t index,
46                                void *entry)
47 {
48         spin_lock(&mapping->host->i_lock);
49         xa_lock_irq(&mapping->i_pages);
50         __clear_shadow_entry(mapping, index, entry);
51         xa_unlock_irq(&mapping->i_pages);
52         if (mapping_shrinkable(mapping))
53                 inode_add_lru(mapping->host);
54         spin_unlock(&mapping->host->i_lock);
55 }
56
57 /*
58  * Unconditionally remove exceptional entries. Usually called from truncate
59  * path. Note that the folio_batch may be altered by this function by removing
60  * exceptional entries similar to what folio_batch_remove_exceptionals() does.
61  */
62 static void truncate_folio_batch_exceptionals(struct address_space *mapping,
63                                 struct folio_batch *fbatch, pgoff_t *indices)
64 {
65         int i, j;
66         bool dax;
67
68         /* Handled by shmem itself */
69         if (shmem_mapping(mapping))
70                 return;
71
72         for (j = 0; j < folio_batch_count(fbatch); j++)
73                 if (xa_is_value(fbatch->folios[j]))
74                         break;
75
76         if (j == folio_batch_count(fbatch))
77                 return;
78
79         dax = dax_mapping(mapping);
80         if (!dax) {
81                 spin_lock(&mapping->host->i_lock);
82                 xa_lock_irq(&mapping->i_pages);
83         }
84
85         for (i = j; i < folio_batch_count(fbatch); i++) {
86                 struct folio *folio = fbatch->folios[i];
87                 pgoff_t index = indices[i];
88
89                 if (!xa_is_value(folio)) {
90                         fbatch->folios[j++] = folio;
91                         continue;
92                 }
93
94                 if (unlikely(dax)) {
95                         dax_delete_mapping_entry(mapping, index);
96                         continue;
97                 }
98
99                 __clear_shadow_entry(mapping, index, folio);
100         }
101
102         if (!dax) {
103                 xa_unlock_irq(&mapping->i_pages);
104                 if (mapping_shrinkable(mapping))
105                         inode_add_lru(mapping->host);
106                 spin_unlock(&mapping->host->i_lock);
107         }
108         fbatch->nr = j;
109 }
110
111 /*
112  * Invalidate exceptional entry if easily possible. This handles exceptional
113  * entries for invalidate_inode_pages().
114  */
115 static int invalidate_exceptional_entry(struct address_space *mapping,
116                                         pgoff_t index, void *entry)
117 {
118         /* Handled by shmem itself, or for DAX we do nothing. */
119         if (shmem_mapping(mapping) || dax_mapping(mapping))
120                 return 1;
121         clear_shadow_entry(mapping, index, entry);
122         return 1;
123 }
124
125 /*
126  * Invalidate exceptional entry if clean. This handles exceptional entries for
127  * invalidate_inode_pages2() so for DAX it evicts only clean entries.
128  */
129 static int invalidate_exceptional_entry2(struct address_space *mapping,
130                                          pgoff_t index, void *entry)
131 {
132         /* Handled by shmem itself */
133         if (shmem_mapping(mapping))
134                 return 1;
135         if (dax_mapping(mapping))
136                 return dax_invalidate_mapping_entry_sync(mapping, index);
137         clear_shadow_entry(mapping, index, entry);
138         return 1;
139 }
140
141 /**
142  * do_invalidatepage - invalidate part or all of a page
143  * @page: the page which is affected
144  * @offset: start of the range to invalidate
145  * @length: length of the range to invalidate
146  *
147  * do_invalidatepage() is called when all or part of the page has become
148  * invalidated by a truncate operation.
149  *
150  * do_invalidatepage() does not have to release all buffers, but it must
151  * ensure that no dirty buffer is left outside @offset and that no I/O
152  * is underway against any of the blocks which are outside the truncation
153  * point.  Because the caller is about to free (and possibly reuse) those
154  * blocks on-disk.
155  */
156 void do_invalidatepage(struct page *page, unsigned int offset,
157                        unsigned int length)
158 {
159         void (*invalidatepage)(struct page *, unsigned int, unsigned int);
160
161         invalidatepage = page->mapping->a_ops->invalidatepage;
162 #ifdef CONFIG_BLOCK
163         if (!invalidatepage)
164                 invalidatepage = block_invalidatepage;
165 #endif
166         if (invalidatepage)
167                 (*invalidatepage)(page, offset, length);
168 }
169
170 /*
171  * If truncate cannot remove the fs-private metadata from the page, the page
172  * becomes orphaned.  It will be left on the LRU and may even be mapped into
173  * user pagetables if we're racing with filemap_fault().
174  *
175  * We need to bail out if page->mapping is no longer equal to the original
176  * mapping.  This happens a) when the VM reclaimed the page while we waited on
177  * its lock, b) when a concurrent invalidate_mapping_pages got there first and
178  * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
179  */
180 static void truncate_cleanup_folio(struct folio *folio)
181 {
182         if (folio_mapped(folio))
183                 unmap_mapping_folio(folio);
184
185         if (folio_has_private(folio))
186                 do_invalidatepage(&folio->page, 0, folio_size(folio));
187
188         /*
189          * Some filesystems seem to re-dirty the page even after
190          * the VM has canceled the dirty bit (eg ext3 journaling).
191          * Hence dirty accounting check is placed after invalidation.
192          */
193         folio_cancel_dirty(folio);
194         folio_clear_mappedtodisk(folio);
195 }
196
197 /*
198  * This is for invalidate_mapping_pages().  That function can be called at
199  * any time, and is not supposed to throw away dirty pages.  But pages can
200  * be marked dirty at any time too, so use remove_mapping which safely
201  * discards clean, unused pages.
202  *
203  * Returns non-zero if the page was successfully invalidated.
204  */
205 static int
206 invalidate_complete_page(struct address_space *mapping, struct page *page)
207 {
208         int ret;
209
210         if (page->mapping != mapping)
211                 return 0;
212
213         if (page_has_private(page) && !try_to_release_page(page, 0))
214                 return 0;
215
216         ret = remove_mapping(mapping, page);
217
218         return ret;
219 }
220
221 int truncate_inode_folio(struct address_space *mapping, struct folio *folio)
222 {
223         if (folio->mapping != mapping)
224                 return -EIO;
225
226         truncate_cleanup_folio(folio);
227         filemap_remove_folio(folio);
228         return 0;
229 }
230
231 /*
232  * Handle partial folios.  The folio may be entirely within the
233  * range if a split has raced with us.  If not, we zero the part of the
234  * folio that's within the [start, end] range, and then split the folio if
235  * it's large.  split_page_range() will discard pages which now lie beyond
236  * i_size, and we rely on the caller to discard pages which lie within a
237  * newly created hole.
238  *
239  * Returns false if splitting failed so the caller can avoid
240  * discarding the entire folio which is stubbornly unsplit.
241  */
242 bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
243 {
244         loff_t pos = folio_pos(folio);
245         unsigned int offset, length;
246
247         if (pos < start)
248                 offset = start - pos;
249         else
250                 offset = 0;
251         length = folio_size(folio);
252         if (pos + length <= (u64)end)
253                 length = length - offset;
254         else
255                 length = end + 1 - pos - offset;
256
257         folio_wait_writeback(folio);
258         if (length == folio_size(folio)) {
259                 truncate_inode_folio(folio->mapping, folio);
260                 return true;
261         }
262
263         /*
264          * We may be zeroing pages we're about to discard, but it avoids
265          * doing a complex calculation here, and then doing the zeroing
266          * anyway if the page split fails.
267          */
268         folio_zero_range(folio, offset, length);
269
270         cleancache_invalidate_page(folio->mapping, &folio->page);
271         if (folio_has_private(folio))
272                 do_invalidatepage(&folio->page, offset, length);
273         if (!folio_test_large(folio))
274                 return true;
275         if (split_huge_page(&folio->page) == 0)
276                 return true;
277         if (folio_test_dirty(folio))
278                 return false;
279         truncate_inode_folio(folio->mapping, folio);
280         return true;
281 }
282
283 /*
284  * Used to get rid of pages on hardware memory corruption.
285  */
286 int generic_error_remove_page(struct address_space *mapping, struct page *page)
287 {
288         VM_BUG_ON_PAGE(PageTail(page), page);
289
290         if (!mapping)
291                 return -EINVAL;
292         /*
293          * Only punch for normal data pages for now.
294          * Handling other types like directories would need more auditing.
295          */
296         if (!S_ISREG(mapping->host->i_mode))
297                 return -EIO;
298         return truncate_inode_folio(mapping, page_folio(page));
299 }
300 EXPORT_SYMBOL(generic_error_remove_page);
301
302 /*
303  * Safely invalidate one page from its pagecache mapping.
304  * It only drops clean, unused pages. The page must be locked.
305  *
306  * Returns 1 if the page is successfully invalidated, otherwise 0.
307  */
308 int invalidate_inode_page(struct page *page)
309 {
310         struct address_space *mapping = page_mapping(page);
311         if (!mapping)
312                 return 0;
313         if (PageDirty(page) || PageWriteback(page))
314                 return 0;
315         if (page_mapped(page))
316                 return 0;
317         return invalidate_complete_page(mapping, page);
318 }
319
320 /**
321  * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets
322  * @mapping: mapping to truncate
323  * @lstart: offset from which to truncate
324  * @lend: offset to which to truncate (inclusive)
325  *
326  * Truncate the page cache, removing the pages that are between
327  * specified offsets (and zeroing out partial pages
328  * if lstart or lend + 1 is not page aligned).
329  *
330  * Truncate takes two passes - the first pass is nonblocking.  It will not
331  * block on page locks and it will not block on writeback.  The second pass
332  * will wait.  This is to prevent as much IO as possible in the affected region.
333  * The first pass will remove most pages, so the search cost of the second pass
334  * is low.
335  *
336  * We pass down the cache-hot hint to the page freeing code.  Even if the
337  * mapping is large, it is probably the case that the final pages are the most
338  * recently touched, and freeing happens in ascending file offset order.
339  *
340  * Note that since ->invalidatepage() accepts range to invalidate
341  * truncate_inode_pages_range is able to handle cases where lend + 1 is not
342  * page aligned properly.
343  */
344 void truncate_inode_pages_range(struct address_space *mapping,
345                                 loff_t lstart, loff_t lend)
346 {
347         pgoff_t         start;          /* inclusive */
348         pgoff_t         end;            /* exclusive */
349         struct folio_batch fbatch;
350         pgoff_t         indices[PAGEVEC_SIZE];
351         pgoff_t         index;
352         int             i;
353         struct folio    *folio;
354         bool            same_folio;
355
356         if (mapping_empty(mapping))
357                 goto out;
358
359         /*
360          * 'start' and 'end' always covers the range of pages to be fully
361          * truncated. Partial pages are covered with 'partial_start' at the
362          * start of the range and 'partial_end' at the end of the range.
363          * Note that 'end' is exclusive while 'lend' is inclusive.
364          */
365         start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
366         if (lend == -1)
367                 /*
368                  * lend == -1 indicates end-of-file so we have to set 'end'
369                  * to the highest possible pgoff_t and since the type is
370                  * unsigned we're using -1.
371                  */
372                 end = -1;
373         else
374                 end = (lend + 1) >> PAGE_SHIFT;
375
376         folio_batch_init(&fbatch);
377         index = start;
378         while (index < end && find_lock_entries(mapping, index, end - 1,
379                         &fbatch, indices)) {
380                 index = indices[folio_batch_count(&fbatch) - 1] + 1;
381                 truncate_folio_batch_exceptionals(mapping, &fbatch, indices);
382                 for (i = 0; i < folio_batch_count(&fbatch); i++)
383                         truncate_cleanup_folio(fbatch.folios[i]);
384                 delete_from_page_cache_batch(mapping, &fbatch);
385                 for (i = 0; i < folio_batch_count(&fbatch); i++)
386                         folio_unlock(fbatch.folios[i]);
387                 folio_batch_release(&fbatch);
388                 cond_resched();
389         }
390
391         same_folio = (lstart >> PAGE_SHIFT) == (lend >> PAGE_SHIFT);
392         folio = __filemap_get_folio(mapping, lstart >> PAGE_SHIFT, FGP_LOCK, 0);
393         if (folio) {
394                 same_folio = lend < folio_pos(folio) + folio_size(folio);
395                 if (!truncate_inode_partial_folio(folio, lstart, lend)) {
396                         start = folio->index + folio_nr_pages(folio);
397                         if (same_folio)
398                                 end = folio->index;
399                 }
400                 folio_unlock(folio);
401                 folio_put(folio);
402                 folio = NULL;
403         }
404
405         if (!same_folio)
406                 folio = __filemap_get_folio(mapping, lend >> PAGE_SHIFT,
407                                                 FGP_LOCK, 0);
408         if (folio) {
409                 if (!truncate_inode_partial_folio(folio, lstart, lend))
410                         end = folio->index;
411                 folio_unlock(folio);
412                 folio_put(folio);
413         }
414
415         index = start;
416         while (index < end) {
417                 cond_resched();
418                 if (!find_get_entries(mapping, index, end - 1, &fbatch,
419                                 indices)) {
420                         /* If all gone from start onwards, we're done */
421                         if (index == start)
422                                 break;
423                         /* Otherwise restart to make sure all gone */
424                         index = start;
425                         continue;
426                 }
427
428                 for (i = 0; i < folio_batch_count(&fbatch); i++) {
429                         struct folio *folio = fbatch.folios[i];
430
431                         /* We rely upon deletion not changing page->index */
432                         index = indices[i];
433
434                         if (xa_is_value(folio))
435                                 continue;
436
437                         folio_lock(folio);
438                         VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
439                         folio_wait_writeback(folio);
440                         truncate_inode_folio(mapping, folio);
441                         folio_unlock(folio);
442                         index = folio_index(folio) + folio_nr_pages(folio) - 1;
443                 }
444                 truncate_folio_batch_exceptionals(mapping, &fbatch, indices);
445                 folio_batch_release(&fbatch);
446                 index++;
447         }
448
449 out:
450         cleancache_invalidate_inode(mapping);
451 }
452 EXPORT_SYMBOL(truncate_inode_pages_range);
453
454 /**
455  * truncate_inode_pages - truncate *all* the pages from an offset
456  * @mapping: mapping to truncate
457  * @lstart: offset from which to truncate
458  *
459  * Called under (and serialised by) inode->i_rwsem and
460  * mapping->invalidate_lock.
461  *
462  * Note: When this function returns, there can be a page in the process of
463  * deletion (inside __delete_from_page_cache()) in the specified range.  Thus
464  * mapping->nrpages can be non-zero when this function returns even after
465  * truncation of the whole mapping.
466  */
467 void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
468 {
469         truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
470 }
471 EXPORT_SYMBOL(truncate_inode_pages);
472
473 /**
474  * truncate_inode_pages_final - truncate *all* pages before inode dies
475  * @mapping: mapping to truncate
476  *
477  * Called under (and serialized by) inode->i_rwsem.
478  *
479  * Filesystems have to use this in the .evict_inode path to inform the
480  * VM that this is the final truncate and the inode is going away.
481  */
482 void truncate_inode_pages_final(struct address_space *mapping)
483 {
484         /*
485          * Page reclaim can not participate in regular inode lifetime
486          * management (can't call iput()) and thus can race with the
487          * inode teardown.  Tell it when the address space is exiting,
488          * so that it does not install eviction information after the
489          * final truncate has begun.
490          */
491         mapping_set_exiting(mapping);
492
493         if (!mapping_empty(mapping)) {
494                 /*
495                  * As truncation uses a lockless tree lookup, cycle
496                  * the tree lock to make sure any ongoing tree
497                  * modification that does not see AS_EXITING is
498                  * completed before starting the final truncate.
499                  */
500                 xa_lock_irq(&mapping->i_pages);
501                 xa_unlock_irq(&mapping->i_pages);
502         }
503
504         /*
505          * Cleancache needs notification even if there are no pages or shadow
506          * entries.
507          */
508         truncate_inode_pages(mapping, 0);
509 }
510 EXPORT_SYMBOL(truncate_inode_pages_final);
511
512 static unsigned long __invalidate_mapping_pages(struct address_space *mapping,
513                 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
514 {
515         pgoff_t indices[PAGEVEC_SIZE];
516         struct folio_batch fbatch;
517         pgoff_t index = start;
518         unsigned long ret;
519         unsigned long count = 0;
520         int i;
521
522         folio_batch_init(&fbatch);
523         while (find_lock_entries(mapping, index, end, &fbatch, indices)) {
524                 for (i = 0; i < folio_batch_count(&fbatch); i++) {
525                         struct page *page = &fbatch.folios[i]->page;
526
527                         /* We rely upon deletion not changing page->index */
528                         index = indices[i];
529
530                         if (xa_is_value(page)) {
531                                 count += invalidate_exceptional_entry(mapping,
532                                                                       index,
533                                                                       page);
534                                 continue;
535                         }
536                         index += thp_nr_pages(page) - 1;
537
538                         ret = invalidate_inode_page(page);
539                         unlock_page(page);
540                         /*
541                          * Invalidation is a hint that the page is no longer
542                          * of interest and try to speed up its reclaim.
543                          */
544                         if (!ret) {
545                                 deactivate_file_page(page);
546                                 /* It is likely on the pagevec of a remote CPU */
547                                 if (nr_pagevec)
548                                         (*nr_pagevec)++;
549                         }
550                         count += ret;
551                 }
552                 folio_batch_remove_exceptionals(&fbatch);
553                 folio_batch_release(&fbatch);
554                 cond_resched();
555                 index++;
556         }
557         return count;
558 }
559
560 /**
561  * invalidate_mapping_pages - Invalidate all clean, unlocked cache of one inode
562  * @mapping: the address_space which holds the cache to invalidate
563  * @start: the offset 'from' which to invalidate
564  * @end: the offset 'to' which to invalidate (inclusive)
565  *
566  * This function removes pages that are clean, unmapped and unlocked,
567  * as well as shadow entries. It will not block on IO activity.
568  *
569  * If you want to remove all the pages of one inode, regardless of
570  * their use and writeback state, use truncate_inode_pages().
571  *
572  * Return: the number of the cache entries that were invalidated
573  */
574 unsigned long invalidate_mapping_pages(struct address_space *mapping,
575                 pgoff_t start, pgoff_t end)
576 {
577         return __invalidate_mapping_pages(mapping, start, end, NULL);
578 }
579 EXPORT_SYMBOL(invalidate_mapping_pages);
580
581 /**
582  * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode
583  * @mapping: the address_space which holds the pages to invalidate
584  * @start: the offset 'from' which to invalidate
585  * @end: the offset 'to' which to invalidate (inclusive)
586  * @nr_pagevec: invalidate failed page number for caller
587  *
588  * This helper is similar to invalidate_mapping_pages(), except that it accounts
589  * for pages that are likely on a pagevec and counts them in @nr_pagevec, which
590  * will be used by the caller.
591  */
592 void invalidate_mapping_pagevec(struct address_space *mapping,
593                 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
594 {
595         __invalidate_mapping_pages(mapping, start, end, nr_pagevec);
596 }
597
598 /*
599  * This is like invalidate_complete_page(), except it ignores the page's
600  * refcount.  We do this because invalidate_inode_pages2() needs stronger
601  * invalidation guarantees, and cannot afford to leave pages behind because
602  * shrink_page_list() has a temp ref on them, or because they're transiently
603  * sitting in the lru_cache_add() pagevecs.
604  */
605 static int invalidate_complete_folio2(struct address_space *mapping,
606                                         struct folio *folio)
607 {
608         if (folio->mapping != mapping)
609                 return 0;
610
611         if (folio_has_private(folio) &&
612             !filemap_release_folio(folio, GFP_KERNEL))
613                 return 0;
614
615         spin_lock(&mapping->host->i_lock);
616         xa_lock_irq(&mapping->i_pages);
617         if (folio_test_dirty(folio))
618                 goto failed;
619
620         BUG_ON(folio_has_private(folio));
621         __filemap_remove_folio(folio, NULL);
622         xa_unlock_irq(&mapping->i_pages);
623         if (mapping_shrinkable(mapping))
624                 inode_add_lru(mapping->host);
625         spin_unlock(&mapping->host->i_lock);
626
627         filemap_free_folio(mapping, folio);
628         return 1;
629 failed:
630         xa_unlock_irq(&mapping->i_pages);
631         spin_unlock(&mapping->host->i_lock);
632         return 0;
633 }
634
635 static int do_launder_folio(struct address_space *mapping, struct folio *folio)
636 {
637         if (!folio_test_dirty(folio))
638                 return 0;
639         if (folio->mapping != mapping || mapping->a_ops->launder_page == NULL)
640                 return 0;
641         return mapping->a_ops->launder_page(&folio->page);
642 }
643
644 /**
645  * invalidate_inode_pages2_range - remove range of pages from an address_space
646  * @mapping: the address_space
647  * @start: the page offset 'from' which to invalidate
648  * @end: the page offset 'to' which to invalidate (inclusive)
649  *
650  * Any pages which are found to be mapped into pagetables are unmapped prior to
651  * invalidation.
652  *
653  * Return: -EBUSY if any pages could not be invalidated.
654  */
655 int invalidate_inode_pages2_range(struct address_space *mapping,
656                                   pgoff_t start, pgoff_t end)
657 {
658         pgoff_t indices[PAGEVEC_SIZE];
659         struct folio_batch fbatch;
660         pgoff_t index;
661         int i;
662         int ret = 0;
663         int ret2 = 0;
664         int did_range_unmap = 0;
665
666         if (mapping_empty(mapping))
667                 goto out;
668
669         folio_batch_init(&fbatch);
670         index = start;
671         while (find_get_entries(mapping, index, end, &fbatch, indices)) {
672                 for (i = 0; i < folio_batch_count(&fbatch); i++) {
673                         struct folio *folio = fbatch.folios[i];
674
675                         /* We rely upon deletion not changing folio->index */
676                         index = indices[i];
677
678                         if (xa_is_value(folio)) {
679                                 if (!invalidate_exceptional_entry2(mapping,
680                                                 index, folio))
681                                         ret = -EBUSY;
682                                 continue;
683                         }
684
685                         if (!did_range_unmap && folio_mapped(folio)) {
686                                 /*
687                                  * If folio is mapped, before taking its lock,
688                                  * zap the rest of the file in one hit.
689                                  */
690                                 unmap_mapping_pages(mapping, index,
691                                                 (1 + end - index), false);
692                                 did_range_unmap = 1;
693                         }
694
695                         folio_lock(folio);
696                         VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
697                         if (folio->mapping != mapping) {
698                                 folio_unlock(folio);
699                                 continue;
700                         }
701                         folio_wait_writeback(folio);
702
703                         if (folio_mapped(folio))
704                                 unmap_mapping_folio(folio);
705                         BUG_ON(folio_mapped(folio));
706
707                         ret2 = do_launder_folio(mapping, folio);
708                         if (ret2 == 0) {
709                                 if (!invalidate_complete_folio2(mapping, folio))
710                                         ret2 = -EBUSY;
711                         }
712                         if (ret2 < 0)
713                                 ret = ret2;
714                         folio_unlock(folio);
715                 }
716                 folio_batch_remove_exceptionals(&fbatch);
717                 folio_batch_release(&fbatch);
718                 cond_resched();
719                 index++;
720         }
721         /*
722          * For DAX we invalidate page tables after invalidating page cache.  We
723          * could invalidate page tables while invalidating each entry however
724          * that would be expensive. And doing range unmapping before doesn't
725          * work as we have no cheap way to find whether page cache entry didn't
726          * get remapped later.
727          */
728         if (dax_mapping(mapping)) {
729                 unmap_mapping_pages(mapping, start, end - start + 1, false);
730         }
731 out:
732         cleancache_invalidate_inode(mapping);
733         return ret;
734 }
735 EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
736
737 /**
738  * invalidate_inode_pages2 - remove all pages from an address_space
739  * @mapping: the address_space
740  *
741  * Any pages which are found to be mapped into pagetables are unmapped prior to
742  * invalidation.
743  *
744  * Return: -EBUSY if any pages could not be invalidated.
745  */
746 int invalidate_inode_pages2(struct address_space *mapping)
747 {
748         return invalidate_inode_pages2_range(mapping, 0, -1);
749 }
750 EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
751
752 /**
753  * truncate_pagecache - unmap and remove pagecache that has been truncated
754  * @inode: inode
755  * @newsize: new file size
756  *
757  * inode's new i_size must already be written before truncate_pagecache
758  * is called.
759  *
760  * This function should typically be called before the filesystem
761  * releases resources associated with the freed range (eg. deallocates
762  * blocks). This way, pagecache will always stay logically coherent
763  * with on-disk format, and the filesystem would not have to deal with
764  * situations such as writepage being called for a page that has already
765  * had its underlying blocks deallocated.
766  */
767 void truncate_pagecache(struct inode *inode, loff_t newsize)
768 {
769         struct address_space *mapping = inode->i_mapping;
770         loff_t holebegin = round_up(newsize, PAGE_SIZE);
771
772         /*
773          * unmap_mapping_range is called twice, first simply for
774          * efficiency so that truncate_inode_pages does fewer
775          * single-page unmaps.  However after this first call, and
776          * before truncate_inode_pages finishes, it is possible for
777          * private pages to be COWed, which remain after
778          * truncate_inode_pages finishes, hence the second
779          * unmap_mapping_range call must be made for correctness.
780          */
781         unmap_mapping_range(mapping, holebegin, 0, 1);
782         truncate_inode_pages(mapping, newsize);
783         unmap_mapping_range(mapping, holebegin, 0, 1);
784 }
785 EXPORT_SYMBOL(truncate_pagecache);
786
787 /**
788  * truncate_setsize - update inode and pagecache for a new file size
789  * @inode: inode
790  * @newsize: new file size
791  *
792  * truncate_setsize updates i_size and performs pagecache truncation (if
793  * necessary) to @newsize. It will be typically be called from the filesystem's
794  * setattr function when ATTR_SIZE is passed in.
795  *
796  * Must be called with a lock serializing truncates and writes (generally
797  * i_rwsem but e.g. xfs uses a different lock) and before all filesystem
798  * specific block truncation has been performed.
799  */
800 void truncate_setsize(struct inode *inode, loff_t newsize)
801 {
802         loff_t oldsize = inode->i_size;
803
804         i_size_write(inode, newsize);
805         if (newsize > oldsize)
806                 pagecache_isize_extended(inode, oldsize, newsize);
807         truncate_pagecache(inode, newsize);
808 }
809 EXPORT_SYMBOL(truncate_setsize);
810
811 /**
812  * pagecache_isize_extended - update pagecache after extension of i_size
813  * @inode:      inode for which i_size was extended
814  * @from:       original inode size
815  * @to:         new inode size
816  *
817  * Handle extension of inode size either caused by extending truncate or by
818  * write starting after current i_size. We mark the page straddling current
819  * i_size RO so that page_mkwrite() is called on the nearest write access to
820  * the page.  This way filesystem can be sure that page_mkwrite() is called on
821  * the page before user writes to the page via mmap after the i_size has been
822  * changed.
823  *
824  * The function must be called after i_size is updated so that page fault
825  * coming after we unlock the page will already see the new i_size.
826  * The function must be called while we still hold i_rwsem - this not only
827  * makes sure i_size is stable but also that userspace cannot observe new
828  * i_size value before we are prepared to store mmap writes at new inode size.
829  */
830 void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to)
831 {
832         int bsize = i_blocksize(inode);
833         loff_t rounded_from;
834         struct page *page;
835         pgoff_t index;
836
837         WARN_ON(to > inode->i_size);
838
839         if (from >= to || bsize == PAGE_SIZE)
840                 return;
841         /* Page straddling @from will not have any hole block created? */
842         rounded_from = round_up(from, bsize);
843         if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1)))
844                 return;
845
846         index = from >> PAGE_SHIFT;
847         page = find_lock_page(inode->i_mapping, index);
848         /* Page not cached? Nothing to do */
849         if (!page)
850                 return;
851         /*
852          * See clear_page_dirty_for_io() for details why set_page_dirty()
853          * is needed.
854          */
855         if (page_mkclean(page))
856                 set_page_dirty(page);
857         unlock_page(page);
858         put_page(page);
859 }
860 EXPORT_SYMBOL(pagecache_isize_extended);
861
862 /**
863  * truncate_pagecache_range - unmap and remove pagecache that is hole-punched
864  * @inode: inode
865  * @lstart: offset of beginning of hole
866  * @lend: offset of last byte of hole
867  *
868  * This function should typically be called before the filesystem
869  * releases resources associated with the freed range (eg. deallocates
870  * blocks). This way, pagecache will always stay logically coherent
871  * with on-disk format, and the filesystem would not have to deal with
872  * situations such as writepage being called for a page that has already
873  * had its underlying blocks deallocated.
874  */
875 void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend)
876 {
877         struct address_space *mapping = inode->i_mapping;
878         loff_t unmap_start = round_up(lstart, PAGE_SIZE);
879         loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1;
880         /*
881          * This rounding is currently just for example: unmap_mapping_range
882          * expands its hole outwards, whereas we want it to contract the hole
883          * inwards.  However, existing callers of truncate_pagecache_range are
884          * doing their own page rounding first.  Note that unmap_mapping_range
885          * allows holelen 0 for all, and we allow lend -1 for end of file.
886          */
887
888         /*
889          * Unlike in truncate_pagecache, unmap_mapping_range is called only
890          * once (before truncating pagecache), and without "even_cows" flag:
891          * hole-punching should not remove private COWed pages from the hole.
892          */
893         if ((u64)unmap_end > (u64)unmap_start)
894                 unmap_mapping_range(mapping, unmap_start,
895                                     1 + unmap_end - unmap_start, 0);
896         truncate_inode_pages_range(mapping, lstart, lend);
897 }
898 EXPORT_SYMBOL(truncate_pagecache_range);