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