blob: c98feea75a107a121b578bd9844f3bce39c028ae [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * mm/truncate.c - code for taking down pages from address_spaces
4 *
5 * Copyright (C) 2002, Linus Torvalds
6 *
Francois Camie1f8e872008-10-15 22:01:59 -07007 * 10Sep2002 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Initial version.
9 */
10
11#include <linux/kernel.h>
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -070012#include <linux/backing-dev.h>
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080013#include <linux/dax.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mm.h>
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070016#include <linux/swap.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040017#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pagemap.h>
Nate Diller01f27052007-05-09 02:35:07 -070019#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/pagevec.h>
Andrew Mortone08748ce2006-12-10 02:19:31 -080021#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/buffer_head.h> /* grr. try_to_release_page,
Jan Karaaaa40592005-10-30 15:00:16 -080023 do_invalidatepage */
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080024#include <linux/shmem_fs.h>
Dan Magenheimerc515e1f2011-05-26 10:01:43 -060025#include <linux/cleancache.h>
Jan Kara90a80202014-10-01 21:49:18 -040026#include <linux/rmap.h>
Rik van Rielba470de2008-10-18 20:26:50 -070027#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Mel Gormanf2187592017-11-15 17:37:44 -080029/*
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 */
34static inline void __clear_shadow_entry(struct address_space *mapping,
35 pgoff_t index, void *entry)
Johannes Weiner0cd61442014-04-03 14:47:46 -070036{
Matthew Wilcox69b6c132017-11-25 22:52:46 -050037 XA_STATE(xas, &mapping->i_pages, index);
Johannes Weiner449dd692014-04-03 14:47:56 -070038
Matthew Wilcox69b6c132017-11-25 22:52:46 -050039 xas_set_update(&xas, workingset_update_node);
40 if (xas_load(&xas) != entry)
Mel Gormanf2187592017-11-15 17:37:44 -080041 return;
Matthew Wilcox69b6c132017-11-25 22:52:46 -050042 xas_store(&xas, NULL);
Mel Gormanf2187592017-11-15 17:37:44 -080043}
44
45static void clear_shadow_entry(struct address_space *mapping, pgoff_t index,
46 void *entry)
47{
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080048 spin_lock(&mapping->host->i_lock);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070049 xa_lock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080050 __clear_shadow_entry(mapping, index, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070051 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080052 if (mapping_shrinkable(mapping))
53 inode_add_lru(mapping->host);
54 spin_unlock(&mapping->host->i_lock);
Johannes Weiner0cd61442014-04-03 14:47:46 -070055}
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jan Karac6dcf522016-08-10 17:22:44 +020057/*
Mel Gormanf2187592017-11-15 17:37:44 -080058 * Unconditionally remove exceptional entries. Usually called from truncate
59 * path. Note that the pagevec may be altered by this function by removing
60 * exceptional entries similar to what pagevec_remove_exceptionals does.
Jan Karac6dcf522016-08-10 17:22:44 +020061 */
Mel Gormanf2187592017-11-15 17:37:44 -080062static void truncate_exceptional_pvec_entries(struct address_space *mapping,
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080063 struct pagevec *pvec, pgoff_t *indices)
Jan Karac6dcf522016-08-10 17:22:44 +020064{
Mel Gormanf2187592017-11-15 17:37:44 -080065 int i, j;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080066 bool dax;
Mel Gormanf2187592017-11-15 17:37:44 -080067
Jan Karac6dcf522016-08-10 17:22:44 +020068 /* Handled by shmem itself */
69 if (shmem_mapping(mapping))
70 return;
71
Mel Gormanf2187592017-11-15 17:37:44 -080072 for (j = 0; j < pagevec_count(pvec); j++)
Matthew Wilcox3159f942017-11-03 13:30:42 -040073 if (xa_is_value(pvec->pages[j]))
Mel Gormanf2187592017-11-15 17:37:44 -080074 break;
75
76 if (j == pagevec_count(pvec))
Jan Karac6dcf522016-08-10 17:22:44 +020077 return;
Mel Gormanf2187592017-11-15 17:37:44 -080078
79 dax = dax_mapping(mapping);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080080 if (!dax) {
81 spin_lock(&mapping->host->i_lock);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070082 xa_lock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080083 }
Mel Gormanf2187592017-11-15 17:37:44 -080084
85 for (i = j; i < pagevec_count(pvec); i++) {
86 struct page *page = pvec->pages[i];
87 pgoff_t index = indices[i];
88
Matthew Wilcox3159f942017-11-03 13:30:42 -040089 if (!xa_is_value(page)) {
Mel Gormanf2187592017-11-15 17:37:44 -080090 pvec->pages[j++] = page;
91 continue;
92 }
93
Mel Gormanf2187592017-11-15 17:37:44 -080094 if (unlikely(dax)) {
95 dax_delete_mapping_entry(mapping, index);
96 continue;
97 }
98
99 __clear_shadow_entry(mapping, index, page);
Jan Karac6dcf522016-08-10 17:22:44 +0200100 }
Mel Gormanf2187592017-11-15 17:37:44 -0800101
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800102 if (!dax) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700103 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800104 if (mapping_shrinkable(mapping))
105 inode_add_lru(mapping->host);
106 spin_unlock(&mapping->host->i_lock);
107 }
Mel Gormanf2187592017-11-15 17:37:44 -0800108 pvec->nr = j;
Jan Karac6dcf522016-08-10 17:22:44 +0200109}
110
111/*
112 * Invalidate exceptional entry if easily possible. This handles exceptional
Ross Zwisler4636e702017-05-12 15:46:47 -0700113 * entries for invalidate_inode_pages().
Jan Karac6dcf522016-08-10 17:22:44 +0200114 */
115static int invalidate_exceptional_entry(struct address_space *mapping,
116 pgoff_t index, void *entry)
117{
Ross Zwisler4636e702017-05-12 15:46:47 -0700118 /* Handled by shmem itself, or for DAX we do nothing. */
119 if (shmem_mapping(mapping) || dax_mapping(mapping))
Jan Karac6dcf522016-08-10 17:22:44 +0200120 return 1;
Jan Karac6dcf522016-08-10 17:22:44 +0200121 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 */
129static 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
David Howellscf9a2ae2006-08-29 19:05:54 +0100141/**
Fengguang Wu28bc44d2008-02-03 18:04:10 +0200142 * do_invalidatepage - invalidate part or all of a page
David Howellscf9a2ae2006-08-29 19:05:54 +0100143 * @page: the page which is affected
Lukas Czernerd47992f2013-05-21 23:17:23 -0400144 * @offset: start of the range to invalidate
145 * @length: length of the range to invalidate
David Howellscf9a2ae2006-08-29 19:05:54 +0100146 *
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 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400156void do_invalidatepage(struct page *page, unsigned int offset,
157 unsigned int length)
David Howellscf9a2ae2006-08-29 19:05:54 +0100158{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400159 void (*invalidatepage)(struct page *, unsigned int, unsigned int);
160
David Howellscf9a2ae2006-08-29 19:05:54 +0100161 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200162#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +0100163 if (!invalidatepage)
164 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200165#endif
David Howellscf9a2ae2006-08-29 19:05:54 +0100166 if (invalidatepage)
Lukas Czernerd47992f2013-05-21 23:17:23 -0400167 (*invalidatepage)(page, offset, length);
David Howellscf9a2ae2006-08-29 19:05:54 +0100168}
169
Linus Torvaldsecdfc972007-01-26 12:47:06 -0800170/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * If truncate cannot remove the fs-private metadata from the page, the page
Shaohua Li62e1c552008-02-04 22:29:33 -0800172 * becomes orphaned. It will be left on the LRU and may even be mapped into
Nick Piggin54cb8822007-07-19 01:46:59 -0700173 * user pagetables if we're racing with filemap_fault().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700175 * We need to bail out if page->mapping is no longer equal to the original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * mapping. This happens a) when the VM reclaimed the page while we waited on
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800177 * its lock, b) when a concurrent invalidate_mapping_pages got there first and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
179 */
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500180static void truncate_cleanup_folio(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500182 if (folio_mapped(folio))
Matthew Wilcox (Oracle)35066592021-11-28 14:53:35 -0500183 unmap_mapping_folio(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500185 if (folio_has_private(folio))
186 do_invalidatepage(&folio->page, 0, folio_size(folio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700188 /*
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 */
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500193 folio_cancel_dirty(folio);
194 folio_clear_mappedtodisk(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/*
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800198 * This is for invalidate_mapping_pages(). That function can be called at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700200 * be marked dirty at any time too, so use remove_mapping which safely
201 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 *
203 * Returns non-zero if the page was successfully invalidated.
204 */
205static int
206invalidate_complete_page(struct address_space *mapping, struct page *page)
207{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700208 int ret;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (page->mapping != mapping)
211 return 0;
212
David Howells266cf652009-04-03 16:42:36 +0100213 if (page_has_private(page) && !try_to_release_page(page, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700216 ret = remove_mapping(mapping, page);
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700217
218 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Nick Piggin750b4982009-09-16 11:50:12 +0200221int truncate_inode_page(struct address_space *mapping, struct page *page)
222{
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500223 struct folio *folio = page_folio(page);
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700224 VM_BUG_ON_PAGE(PageTail(page), page);
225
Jan Kara9f4e41f2017-11-15 17:37:15 -0800226 if (page->mapping != mapping)
227 return -EIO;
228
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500229 truncate_cleanup_folio(folio);
230 filemap_remove_folio(folio);
Jan Kara9f4e41f2017-11-15 17:37:15 -0800231 return 0;
Nick Piggin750b4982009-09-16 11:50:12 +0200232}
233
Wu Fengguang83f78662009-09-16 11:50:13 +0200234/*
Andi Kleen25718732009-09-16 11:50:13 +0200235 * Used to get rid of pages on hardware memory corruption.
236 */
237int generic_error_remove_page(struct address_space *mapping, struct page *page)
238{
239 if (!mapping)
240 return -EINVAL;
241 /*
242 * Only punch for normal data pages for now.
243 * Handling other types like directories would need more auditing.
244 */
245 if (!S_ISREG(mapping->host->i_mode))
246 return -EIO;
247 return truncate_inode_page(mapping, page);
248}
249EXPORT_SYMBOL(generic_error_remove_page);
250
251/*
Wu Fengguang83f78662009-09-16 11:50:13 +0200252 * Safely invalidate one page from its pagecache mapping.
253 * It only drops clean, unused pages. The page must be locked.
254 *
255 * Returns 1 if the page is successfully invalidated, otherwise 0.
256 */
257int invalidate_inode_page(struct page *page)
258{
259 struct address_space *mapping = page_mapping(page);
260 if (!mapping)
261 return 0;
262 if (PageDirty(page) || PageWriteback(page))
263 return 0;
264 if (page_mapped(page))
265 return 0;
266 return invalidate_complete_page(mapping, page);
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/**
Liu Bo73c1e202012-02-21 10:57:20 +0800270 * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * @mapping: mapping to truncate
272 * @lstart: offset from which to truncate
Lukas Czerner5a720392013-05-27 23:32:35 -0400273 * @lend: offset to which to truncate (inclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 *
Hans Reiserd7339072006-01-06 00:10:36 -0800275 * Truncate the page cache, removing the pages that are between
Lukas Czerner5a720392013-05-27 23:32:35 -0400276 * specified offsets (and zeroing out partial pages
277 * if lstart or lend + 1 is not page aligned).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
279 * Truncate takes two passes - the first pass is nonblocking. It will not
280 * block on page locks and it will not block on writeback. The second pass
281 * will wait. This is to prevent as much IO as possible in the affected region.
282 * The first pass will remove most pages, so the search cost of the second pass
283 * is low.
284 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * We pass down the cache-hot hint to the page freeing code. Even if the
286 * mapping is large, it is probably the case that the final pages are the most
287 * recently touched, and freeing happens in ascending file offset order.
Lukas Czerner5a720392013-05-27 23:32:35 -0400288 *
289 * Note that since ->invalidatepage() accepts range to invalidate
290 * truncate_inode_pages_range is able to handle cases where lend + 1 is not
291 * page aligned properly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
Hans Reiserd7339072006-01-06 00:10:36 -0800293void truncate_inode_pages_range(struct address_space *mapping,
294 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Lukas Czerner5a720392013-05-27 23:32:35 -0400296 pgoff_t start; /* inclusive */
297 pgoff_t end; /* exclusive */
298 unsigned int partial_start; /* inclusive */
299 unsigned int partial_end; /* exclusive */
300 struct pagevec pvec;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700301 pgoff_t indices[PAGEVEC_SIZE];
Lukas Czerner5a720392013-05-27 23:32:35 -0400302 pgoff_t index;
303 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700305 if (mapping_empty(mapping))
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700306 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Lukas Czerner5a720392013-05-27 23:32:35 -0400308 /* Offsets within partial pages */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300309 partial_start = lstart & (PAGE_SIZE - 1);
310 partial_end = (lend + 1) & (PAGE_SIZE - 1);
Lukas Czerner5a720392013-05-27 23:32:35 -0400311
312 /*
313 * 'start' and 'end' always covers the range of pages to be fully
314 * truncated. Partial pages are covered with 'partial_start' at the
315 * start of the range and 'partial_end' at the end of the range.
316 * Note that 'end' is exclusive while 'lend' is inclusive.
317 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300318 start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
Lukas Czerner5a720392013-05-27 23:32:35 -0400319 if (lend == -1)
320 /*
321 * lend == -1 indicates end-of-file so we have to set 'end'
322 * to the highest possible pgoff_t and since the type is
323 * unsigned we're using -1.
324 */
325 end = -1;
326 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300327 end = (lend + 1) >> PAGE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800328
Mel Gorman86679822017-11-15 17:37:52 -0800329 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700330 index = start;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800331 while (index < end && find_lock_entries(mapping, index, end - 1,
332 &pvec, indices)) {
333 index = indices[pagevec_count(&pvec) - 1] + 1;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800334 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800335 for (i = 0; i < pagevec_count(&pvec); i++)
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500336 truncate_cleanup_folio(page_folio(pvec.pages[i]));
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800337 delete_from_page_cache_batch(mapping, &pvec);
338 for (i = 0; i < pagevec_count(&pvec); i++)
339 unlock_page(pvec.pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 pagevec_release(&pvec);
341 cond_resched();
342 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800343
Lukas Czerner5a720392013-05-27 23:32:35 -0400344 if (partial_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct page *page = find_lock_page(mapping, start - 1);
346 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300347 unsigned int top = PAGE_SIZE;
Lukas Czerner5a720392013-05-27 23:32:35 -0400348 if (start > end) {
349 /* Truncation within a single page */
350 top = partial_end;
351 partial_end = 0;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 wait_on_page_writeback(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400354 zero_user_segment(page, partial_start, top);
355 cleancache_invalidate_page(mapping, page);
356 if (page_has_private(page))
357 do_invalidatepage(page, partial_start,
358 top - partial_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300360 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 }
Lukas Czerner5a720392013-05-27 23:32:35 -0400363 if (partial_end) {
364 struct page *page = find_lock_page(mapping, end);
365 if (page) {
366 wait_on_page_writeback(page);
367 zero_user_segment(page, 0, partial_end);
368 cleancache_invalidate_page(mapping, page);
369 if (page_has_private(page))
370 do_invalidatepage(page, 0,
371 partial_end);
372 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300373 put_page(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400374 }
375 }
376 /*
377 * If the truncation happened within a single page no pages
378 * will be released, just zeroed, so we can bail out now.
379 */
380 if (start >= end)
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700383 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 for ( ; ; ) {
385 cond_resched();
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800386 if (!find_get_entries(mapping, index, end - 1, &pvec,
Matthew Wilcox (Oracle)38cefeb2021-02-25 17:16:07 -0800387 indices)) {
Hugh Dickins792ceae2014-07-23 14:00:15 -0700388 /* If all gone from start onwards, we're done */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700389 if (index == start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 break;
Hugh Dickins792ceae2014-07-23 14:00:15 -0700391 /* Otherwise restart to make sure all gone */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700392 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 continue;
394 }
Mel Gormanf2187592017-11-15 17:37:44 -0800395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 for (i = 0; i < pagevec_count(&pvec); i++) {
397 struct page *page = pvec.pages[i];
398
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700399 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700400 index = indices[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700401
Matthew Wilcox3159f942017-11-03 13:30:42 -0400402 if (xa_is_value(page))
Johannes Weiner0cd61442014-04-03 14:47:46 -0700403 continue;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800406 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 wait_on_page_writeback(page);
Nick Piggin750b4982009-09-16 11:50:12 +0200408 truncate_inode_page(mapping, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 unlock_page(page);
410 }
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800411 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 pagevec_release(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700413 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700415
416out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400417 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
Hans Reiserd7339072006-01-06 00:10:36 -0800419EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Hans Reiserd7339072006-01-06 00:10:36 -0800421/**
422 * truncate_inode_pages - truncate *all* the pages from an offset
423 * @mapping: mapping to truncate
424 * @lstart: offset from which to truncate
425 *
Jan Kara730633f2021-01-28 19:19:45 +0100426 * Called under (and serialised by) inode->i_rwsem and
427 * mapping->invalidate_lock.
Jan Kara08142572011-06-27 16:18:10 -0700428 *
429 * Note: When this function returns, there can be a page in the process of
430 * deletion (inside __delete_from_page_cache()) in the specified range. Thus
431 * mapping->nrpages can be non-zero when this function returns even after
432 * truncation of the whole mapping.
Hans Reiserd7339072006-01-06 00:10:36 -0800433 */
434void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
435{
436 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
437}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438EXPORT_SYMBOL(truncate_inode_pages);
439
Mike Waychison28697352009-06-16 15:32:59 -0700440/**
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700441 * truncate_inode_pages_final - truncate *all* pages before inode dies
442 * @mapping: mapping to truncate
443 *
Jan Kara96087032021-04-12 15:50:21 +0200444 * Called under (and serialized by) inode->i_rwsem.
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700445 *
446 * Filesystems have to use this in the .evict_inode path to inform the
447 * VM that this is the final truncate and the inode is going away.
448 */
449void truncate_inode_pages_final(struct address_space *mapping)
450{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700451 /*
452 * Page reclaim can not participate in regular inode lifetime
453 * management (can't call iput()) and thus can race with the
454 * inode teardown. Tell it when the address space is exiting,
455 * so that it does not install eviction information after the
456 * final truncate has begun.
457 */
458 mapping_set_exiting(mapping);
459
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700460 if (!mapping_empty(mapping)) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700461 /*
462 * As truncation uses a lockless tree lookup, cycle
463 * the tree lock to make sure any ongoing tree
464 * modification that does not see AS_EXITING is
465 * completed before starting the final truncate.
466 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700467 xa_lock_irq(&mapping->i_pages);
468 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700469 }
Pavel Tikhomirov6ff38bd2018-11-30 14:09:00 -0800470
471 /*
472 * Cleancache needs notification even if there are no pages or shadow
473 * entries.
474 */
475 truncate_inode_pages(mapping, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700476}
477EXPORT_SYMBOL(truncate_inode_pages_final);
478
Jason Yana77eedb2020-11-01 17:07:50 -0800479static unsigned long __invalidate_mapping_pages(struct address_space *mapping,
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700480 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700482 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700484 pgoff_t index = start;
Minchan Kim31560182011-03-22 16:32:52 -0700485 unsigned long ret;
486 unsigned long count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int i;
488
Mel Gorman86679822017-11-15 17:37:52 -0800489 pagevec_init(&pvec);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800490 while (find_lock_entries(mapping, index, end, &pvec, indices)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 for (i = 0; i < pagevec_count(&pvec); i++) {
492 struct page *page = pvec.pages[i];
493
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700494 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700495 index = indices[i];
NeilBrowne0f236032006-06-23 02:05:48 -0700496
Matthew Wilcox3159f942017-11-03 13:30:42 -0400497 if (xa_is_value(page)) {
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700498 count += invalidate_exceptional_entry(mapping,
499 index,
500 page);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700501 continue;
502 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800503 index += thp_nr_pages(page) - 1;
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700504
Minchan Kim31560182011-03-22 16:32:52 -0700505 ret = invalidate_inode_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 unlock_page(page);
Minchan Kim31560182011-03-22 16:32:52 -0700507 /*
508 * Invalidation is a hint that the page is no longer
509 * of interest and try to speed up its reclaim.
510 */
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700511 if (!ret) {
Minchan Kimcc5993b2015-04-15 16:13:26 -0700512 deactivate_file_page(page);
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700513 /* It is likely on the pagevec of a remote CPU */
514 if (nr_pagevec)
515 (*nr_pagevec)++;
516 }
Minchan Kim31560182011-03-22 16:32:52 -0700517 count += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700519 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 pagevec_release(&pvec);
Mike Waychison28697352009-06-16 15:32:59 -0700521 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700522 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Minchan Kim31560182011-03-22 16:32:52 -0700524 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700526
527/**
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700528 * invalidate_mapping_pages - Invalidate all clean, unlocked cache of one inode
529 * @mapping: the address_space which holds the cache to invalidate
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700530 * @start: the offset 'from' which to invalidate
531 * @end: the offset 'to' which to invalidate (inclusive)
532 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700533 * This function removes pages that are clean, unmapped and unlocked,
534 * as well as shadow entries. It will not block on IO activity.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700535 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700536 * If you want to remove all the pages of one inode, regardless of
537 * their use and writeback state, use truncate_inode_pages().
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700538 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700539 * Return: the number of the cache entries that were invalidated
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700540 */
541unsigned long invalidate_mapping_pages(struct address_space *mapping,
542 pgoff_t start, pgoff_t end)
543{
544 return __invalidate_mapping_pages(mapping, start, end, NULL);
545}
Anton Altaparmakov54bc4852007-02-10 01:45:38 -0800546EXPORT_SYMBOL(invalidate_mapping_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700548/**
Alex Shi649c6df2020-12-14 19:04:59 -0800549 * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode
550 * @mapping: the address_space which holds the pages to invalidate
551 * @start: the offset 'from' which to invalidate
552 * @end: the offset 'to' which to invalidate (inclusive)
553 * @nr_pagevec: invalidate failed page number for caller
554 *
Mauro Carvalho Chehaba00cda32020-12-14 19:14:39 -0800555 * This helper is similar to invalidate_mapping_pages(), except that it accounts
556 * for pages that are likely on a pagevec and counts them in @nr_pagevec, which
557 * will be used by the caller.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700558 */
559void invalidate_mapping_pagevec(struct address_space *mapping,
560 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
561{
562 __invalidate_mapping_pages(mapping, start, end, nr_pagevec);
563}
564
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700565/*
566 * This is like invalidate_complete_page(), except it ignores the page's
567 * refcount. We do this because invalidate_inode_pages2() needs stronger
568 * invalidation guarantees, and cannot afford to leave pages behind because
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700569 * shrink_page_list() has a temp ref on them, or because they're transiently
570 * sitting in the lru_cache_add() pagevecs.
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700571 */
572static int
573invalidate_complete_page2(struct address_space *mapping, struct page *page)
574{
575 if (page->mapping != mapping)
576 return 0;
577
David Howells266cf652009-04-03 16:42:36 +0100578 if (page_has_private(page) && !try_to_release_page(page, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700579 return 0;
580
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800581 spin_lock(&mapping->host->i_lock);
Johannes Weiner30472502021-09-02 14:53:18 -0700582 xa_lock_irq(&mapping->i_pages);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700583 if (PageDirty(page))
584 goto failed;
585
David Howells266cf652009-04-03 16:42:36 +0100586 BUG_ON(page_has_private(page));
Johannes Weiner62cccb82016-03-15 14:57:22 -0700587 __delete_from_page_cache(page, NULL);
Johannes Weiner30472502021-09-02 14:53:18 -0700588 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800589 if (mapping_shrinkable(mapping))
590 inode_add_lru(mapping->host);
591 spin_unlock(&mapping->host->i_lock);
Linus Torvalds6072d132010-12-01 13:35:19 -0500592
593 if (mapping->a_ops->freepage)
594 mapping->a_ops->freepage(page);
595
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300596 put_page(page); /* pagecache ref */
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700597 return 1;
598failed:
Johannes Weiner30472502021-09-02 14:53:18 -0700599 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800600 spin_unlock(&mapping->host->i_lock);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700601 return 0;
602}
603
Trond Myklebuste3db7692007-01-10 23:15:39 -0800604static int do_launder_page(struct address_space *mapping, struct page *page)
605{
606 if (!PageDirty(page))
607 return 0;
608 if (page->mapping != mapping || mapping->a_ops->launder_page == NULL)
609 return 0;
610 return mapping->a_ops->launder_page(page);
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/**
614 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700615 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * @start: the page offset 'from' which to invalidate
617 * @end: the page offset 'to' which to invalidate (inclusive)
618 *
619 * Any pages which are found to be mapped into pagetables are unmapped prior to
620 * invalidation.
621 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800622 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624int invalidate_inode_pages2_range(struct address_space *mapping,
625 pgoff_t start, pgoff_t end)
626{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700627 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700629 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int i;
631 int ret = 0;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700632 int ret2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int did_range_unmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700635 if (mapping_empty(mapping))
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700636 goto out;
Andrey Ryabinin32691f02017-05-03 14:56:06 -0700637
Mel Gorman86679822017-11-15 17:37:52 -0800638 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700639 index = start;
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800640 while (find_get_entries(mapping, index, end, &pvec, indices)) {
Trond Myklebust7b965e02007-02-28 20:13:55 -0800641 for (i = 0; i < pagevec_count(&pvec); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct page *page = pvec.pages[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700643
644 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700645 index = indices[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Matthew Wilcox3159f942017-11-03 13:30:42 -0400647 if (xa_is_value(page)) {
Jan Karac6dcf522016-08-10 17:22:44 +0200648 if (!invalidate_exceptional_entry2(mapping,
649 index, page))
650 ret = -EBUSY;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700651 continue;
652 }
653
Hugh Dickins22061a12021-06-15 18:24:03 -0700654 if (!did_range_unmap && page_mapped(page)) {
655 /*
656 * If page is mapped, before taking its lock,
657 * zap the rest of the file in one hit.
658 */
659 unmap_mapping_pages(mapping, index,
660 (1 + end - index), false);
661 did_range_unmap = 1;
662 }
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800665 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (page->mapping != mapping) {
667 unlock_page(page);
668 continue;
669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 wait_on_page_writeback(page);
Hugh Dickins22061a12021-06-15 18:24:03 -0700671
672 if (page_mapped(page))
Matthew Wilcox (Oracle)35066592021-11-28 14:53:35 -0500673 unmap_mapping_folio(page_folio(page));
Nick Piggind00806b2007-07-19 01:46:57 -0700674 BUG_ON(page_mapped(page));
Hugh Dickins22061a12021-06-15 18:24:03 -0700675
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700676 ret2 = do_launder_page(mapping, page);
677 if (ret2 == 0) {
678 if (!invalidate_complete_page2(mapping, page))
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -0700679 ret2 = -EBUSY;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700680 }
681 if (ret2 < 0)
682 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 unlock_page(page);
684 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700685 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 pagevec_release(&pvec);
687 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700688 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Jan Karacd656372017-05-12 15:46:50 -0700690 /*
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500691 * For DAX we invalidate page tables after invalidating page cache. We
Jan Karacd656372017-05-12 15:46:50 -0700692 * could invalidate page tables while invalidating each entry however
693 * that would be expensive. And doing range unmapping before doesn't
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500694 * work as we have no cheap way to find whether page cache entry didn't
Jan Karacd656372017-05-12 15:46:50 -0700695 * get remapped later.
696 */
697 if (dax_mapping(mapping)) {
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800698 unmap_mapping_pages(mapping, start, end - start + 1, false);
Jan Karacd656372017-05-12 15:46:50 -0700699 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700700out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400701 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return ret;
703}
704EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
705
706/**
707 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700708 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 *
710 * Any pages which are found to be mapped into pagetables are unmapped prior to
711 * invalidation.
712 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800713 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
715int invalidate_inode_pages2(struct address_space *mapping)
716{
717 return invalidate_inode_pages2_range(mapping, 0, -1);
718}
719EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000720
721/**
722 * truncate_pagecache - unmap and remove pagecache that has been truncated
723 * @inode: inode
Hugh Dickins8a549be2011-07-25 17:12:24 -0700724 * @newsize: new file size
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000725 *
726 * inode's new i_size must already be written before truncate_pagecache
727 * is called.
728 *
729 * This function should typically be called before the filesystem
730 * releases resources associated with the freed range (eg. deallocates
731 * blocks). This way, pagecache will always stay logically coherent
732 * with on-disk format, and the filesystem would not have to deal with
733 * situations such as writepage being called for a page that has already
734 * had its underlying blocks deallocated.
735 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700736void truncate_pagecache(struct inode *inode, loff_t newsize)
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000737{
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900738 struct address_space *mapping = inode->i_mapping;
Hugh Dickins8a549be2011-07-25 17:12:24 -0700739 loff_t holebegin = round_up(newsize, PAGE_SIZE);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000740
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900741 /*
742 * unmap_mapping_range is called twice, first simply for
743 * efficiency so that truncate_inode_pages does fewer
744 * single-page unmaps. However after this first call, and
745 * before truncate_inode_pages finishes, it is possible for
746 * private pages to be COWed, which remain after
747 * truncate_inode_pages finishes, hence the second
748 * unmap_mapping_range call must be made for correctness.
749 */
Hugh Dickins8a549be2011-07-25 17:12:24 -0700750 unmap_mapping_range(mapping, holebegin, 0, 1);
751 truncate_inode_pages(mapping, newsize);
752 unmap_mapping_range(mapping, holebegin, 0, 1);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000753}
754EXPORT_SYMBOL(truncate_pagecache);
755
756/**
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200757 * truncate_setsize - update inode and pagecache for a new file size
758 * @inode: inode
759 * @newsize: new file size
760 *
Jan Kara382e27d2011-01-20 14:44:26 -0800761 * truncate_setsize updates i_size and performs pagecache truncation (if
762 * necessary) to @newsize. It will be typically be called from the filesystem's
763 * setattr function when ATTR_SIZE is passed in.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200764 *
Jan Kara77783d02014-11-07 08:29:25 +1100765 * Must be called with a lock serializing truncates and writes (generally
Jan Kara96087032021-04-12 15:50:21 +0200766 * i_rwsem but e.g. xfs uses a different lock) and before all filesystem
Jan Kara77783d02014-11-07 08:29:25 +1100767 * specific block truncation has been performed.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200768 */
769void truncate_setsize(struct inode *inode, loff_t newsize)
770{
Jan Kara90a80202014-10-01 21:49:18 -0400771 loff_t oldsize = inode->i_size;
772
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200773 i_size_write(inode, newsize);
Jan Kara90a80202014-10-01 21:49:18 -0400774 if (newsize > oldsize)
775 pagecache_isize_extended(inode, oldsize, newsize);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700776 truncate_pagecache(inode, newsize);
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200777}
778EXPORT_SYMBOL(truncate_setsize);
779
780/**
Jan Kara90a80202014-10-01 21:49:18 -0400781 * pagecache_isize_extended - update pagecache after extension of i_size
782 * @inode: inode for which i_size was extended
783 * @from: original inode size
784 * @to: new inode size
785 *
786 * Handle extension of inode size either caused by extending truncate or by
787 * write starting after current i_size. We mark the page straddling current
788 * i_size RO so that page_mkwrite() is called on the nearest write access to
789 * the page. This way filesystem can be sure that page_mkwrite() is called on
790 * the page before user writes to the page via mmap after the i_size has been
791 * changed.
792 *
793 * The function must be called after i_size is updated so that page fault
794 * coming after we unlock the page will already see the new i_size.
Jan Kara96087032021-04-12 15:50:21 +0200795 * The function must be called while we still hold i_rwsem - this not only
Jan Kara90a80202014-10-01 21:49:18 -0400796 * makes sure i_size is stable but also that userspace cannot observe new
797 * i_size value before we are prepared to store mmap writes at new inode size.
798 */
799void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to)
800{
Fabian Frederick93407472017-02-27 14:28:32 -0800801 int bsize = i_blocksize(inode);
Jan Kara90a80202014-10-01 21:49:18 -0400802 loff_t rounded_from;
803 struct page *page;
804 pgoff_t index;
805
Jan Kara90a80202014-10-01 21:49:18 -0400806 WARN_ON(to > inode->i_size);
807
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300808 if (from >= to || bsize == PAGE_SIZE)
Jan Kara90a80202014-10-01 21:49:18 -0400809 return;
810 /* Page straddling @from will not have any hole block created? */
811 rounded_from = round_up(from, bsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300812 if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1)))
Jan Kara90a80202014-10-01 21:49:18 -0400813 return;
814
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300815 index = from >> PAGE_SHIFT;
Jan Kara90a80202014-10-01 21:49:18 -0400816 page = find_lock_page(inode->i_mapping, index);
817 /* Page not cached? Nothing to do */
818 if (!page)
819 return;
820 /*
821 * See clear_page_dirty_for_io() for details why set_page_dirty()
822 * is needed.
823 */
824 if (page_mkclean(page))
825 set_page_dirty(page);
826 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300827 put_page(page);
Jan Kara90a80202014-10-01 21:49:18 -0400828}
829EXPORT_SYMBOL(pagecache_isize_extended);
830
831/**
Hugh Dickins623e3db2012-03-28 14:42:40 -0700832 * truncate_pagecache_range - unmap and remove pagecache that is hole-punched
833 * @inode: inode
834 * @lstart: offset of beginning of hole
835 * @lend: offset of last byte of hole
836 *
837 * This function should typically be called before the filesystem
838 * releases resources associated with the freed range (eg. deallocates
839 * blocks). This way, pagecache will always stay logically coherent
840 * with on-disk format, and the filesystem would not have to deal with
841 * situations such as writepage being called for a page that has already
842 * had its underlying blocks deallocated.
843 */
844void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend)
845{
846 struct address_space *mapping = inode->i_mapping;
847 loff_t unmap_start = round_up(lstart, PAGE_SIZE);
848 loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1;
849 /*
850 * This rounding is currently just for example: unmap_mapping_range
851 * expands its hole outwards, whereas we want it to contract the hole
852 * inwards. However, existing callers of truncate_pagecache_range are
Lukas Czerner5a720392013-05-27 23:32:35 -0400853 * doing their own page rounding first. Note that unmap_mapping_range
854 * allows holelen 0 for all, and we allow lend -1 for end of file.
Hugh Dickins623e3db2012-03-28 14:42:40 -0700855 */
856
857 /*
858 * Unlike in truncate_pagecache, unmap_mapping_range is called only
859 * once (before truncating pagecache), and without "even_cows" flag:
860 * hole-punching should not remove private COWed pages from the hole.
861 */
862 if ((u64)unmap_end > (u64)unmap_start)
863 unmap_mapping_range(mapping, unmap_start,
864 1 + unmap_end - unmap_start, 0);
865 truncate_inode_pages_range(mapping, lstart, lend);
866}
867EXPORT_SYMBOL(truncate_pagecache_range);