OSDN Git Service

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