blob: 9dbf0b75da5defbada187e9b7fe5215a69031ff4 [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>
Jan Kara90a80202014-10-01 21:49:18 -040025#include <linux/rmap.h>
Rik van Rielba470de2008-10-18 20:26:50 -070026#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Mel Gormanf2187592017-11-15 17:37:44 -080028/*
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 */
33static inline void __clear_shadow_entry(struct address_space *mapping,
34 pgoff_t index, void *entry)
Johannes Weiner0cd61442014-04-03 14:47:46 -070035{
Matthew Wilcox69b6c132017-11-25 22:52:46 -050036 XA_STATE(xas, &mapping->i_pages, index);
Johannes Weiner449dd692014-04-03 14:47:56 -070037
Matthew Wilcox69b6c132017-11-25 22:52:46 -050038 xas_set_update(&xas, workingset_update_node);
39 if (xas_load(&xas) != entry)
Mel Gormanf2187592017-11-15 17:37:44 -080040 return;
Matthew Wilcox69b6c132017-11-25 22:52:46 -050041 xas_store(&xas, NULL);
Mel Gormanf2187592017-11-15 17:37:44 -080042}
43
44static void clear_shadow_entry(struct address_space *mapping, pgoff_t index,
45 void *entry)
46{
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080047 spin_lock(&mapping->host->i_lock);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070048 xa_lock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080049 __clear_shadow_entry(mapping, index, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070050 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080051 if (mapping_shrinkable(mapping))
52 inode_add_lru(mapping->host);
53 spin_unlock(&mapping->host->i_lock);
Johannes Weiner0cd61442014-04-03 14:47:46 -070054}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jan Karac6dcf522016-08-10 17:22:44 +020056/*
Mel Gormanf2187592017-11-15 17:37:44 -080057 * Unconditionally remove exceptional entries. Usually called from truncate
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050058 * path. Note that the folio_batch may be altered by this function by removing
Matthew Wilcox (Oracle)1613fac2021-12-07 14:28:49 -050059 * exceptional entries similar to what folio_batch_remove_exceptionals() does.
Jan Karac6dcf522016-08-10 17:22:44 +020060 */
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050061static void truncate_folio_batch_exceptionals(struct address_space *mapping,
62 struct folio_batch *fbatch, pgoff_t *indices)
Jan Karac6dcf522016-08-10 17:22:44 +020063{
Mel Gormanf2187592017-11-15 17:37:44 -080064 int i, j;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080065 bool dax;
Mel Gormanf2187592017-11-15 17:37:44 -080066
Jan Karac6dcf522016-08-10 17:22:44 +020067 /* Handled by shmem itself */
68 if (shmem_mapping(mapping))
69 return;
70
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050071 for (j = 0; j < folio_batch_count(fbatch); j++)
72 if (xa_is_value(fbatch->folios[j]))
Mel Gormanf2187592017-11-15 17:37:44 -080073 break;
74
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050075 if (j == folio_batch_count(fbatch))
Jan Karac6dcf522016-08-10 17:22:44 +020076 return;
Mel Gormanf2187592017-11-15 17:37:44 -080077
78 dax = dax_mapping(mapping);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080079 if (!dax) {
80 spin_lock(&mapping->host->i_lock);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070081 xa_lock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -080082 }
Mel Gormanf2187592017-11-15 17:37:44 -080083
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050084 for (i = j; i < folio_batch_count(fbatch); i++) {
85 struct folio *folio = fbatch->folios[i];
Mel Gormanf2187592017-11-15 17:37:44 -080086 pgoff_t index = indices[i];
87
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050088 if (!xa_is_value(folio)) {
89 fbatch->folios[j++] = folio;
Mel Gormanf2187592017-11-15 17:37:44 -080090 continue;
91 }
92
Mel Gormanf2187592017-11-15 17:37:44 -080093 if (unlikely(dax)) {
94 dax_delete_mapping_entry(mapping, index);
95 continue;
96 }
97
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -050098 __clear_shadow_entry(mapping, index, folio);
Jan Karac6dcf522016-08-10 17:22:44 +020099 }
Mel Gormanf2187592017-11-15 17:37:44 -0800100
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800101 if (!dax) {
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700102 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800103 if (mapping_shrinkable(mapping))
104 inode_add_lru(mapping->host);
105 spin_unlock(&mapping->host->i_lock);
106 }
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500107 fbatch->nr = j;
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400108}
109
Jan Karac6dcf522016-08-10 17:22:44 +0200110/*
111 * Invalidate exceptional entry if easily possible. This handles exceptional
Ross Zwisler4636e702017-05-12 15:46:47 -0700112 * entries for invalidate_inode_pages().
Jan Karac6dcf522016-08-10 17:22:44 +0200113 */
114static int invalidate_exceptional_entry(struct address_space *mapping,
115 pgoff_t index, void *entry)
116{
Ross Zwisler4636e702017-05-12 15:46:47 -0700117 /* Handled by shmem itself, or for DAX we do nothing. */
118 if (shmem_mapping(mapping) || dax_mapping(mapping))
Jan Karac6dcf522016-08-10 17:22:44 +0200119 return 1;
Jan Karac6dcf522016-08-10 17:22:44 +0200120 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 */
128static 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
David Howellscf9a2ae2006-08-29 19:05:54 +0100140/**
Fengguang Wu28bc44d2008-02-03 18:04:10 +0200141 * do_invalidatepage - invalidate part or all of a page
David Howellscf9a2ae2006-08-29 19:05:54 +0100142 * @page: the page which is affected
Lukas Czernerd47992f2013-05-21 23:17:23 -0400143 * @offset: start of the range to invalidate
144 * @length: length of the range to invalidate
David Howellscf9a2ae2006-08-29 19:05:54 +0100145 *
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 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400155void do_invalidatepage(struct page *page, unsigned int offset,
156 unsigned int length)
David Howellscf9a2ae2006-08-29 19:05:54 +0100157{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400158 void (*invalidatepage)(struct page *, unsigned int, unsigned int);
159
David Howellscf9a2ae2006-08-29 19:05:54 +0100160 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200161#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +0100162 if (!invalidatepage)
163 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200164#endif
David Howellscf9a2ae2006-08-29 19:05:54 +0100165 if (invalidatepage)
Lukas Czernerd47992f2013-05-21 23:17:23 -0400166 (*invalidatepage)(page, offset, length);
David Howellscf9a2ae2006-08-29 19:05:54 +0100167}
168
Linus Torvaldsecdfc972007-01-26 12:47:06 -0800169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * If truncate cannot remove the fs-private metadata from the page, the page
Shaohua Li62e1c552008-02-04 22:29:33 -0800171 * becomes orphaned. It will be left on the LRU and may even be mapped into
Nick Piggin54cb8822007-07-19 01:46:59 -0700172 * user pagetables if we're racing with filemap_fault().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700174 * We need to bail out if page->mapping is no longer equal to the original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * mapping. This happens a) when the VM reclaimed the page while we waited on
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800176 * its lock, b) when a concurrent invalidate_mapping_pages got there first and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
178 */
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500179static void truncate_cleanup_folio(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500181 if (folio_mapped(folio))
Matthew Wilcox (Oracle)35066592021-11-28 14:53:35 -0500182 unmap_mapping_folio(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500184 if (folio_has_private(folio))
185 do_invalidatepage(&folio->page, 0, folio_size(folio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700187 /*
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 */
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500192 folio_cancel_dirty(folio);
193 folio_clear_mappedtodisk(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/*
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800197 * This is for invalidate_mapping_pages(). That function can be called at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700199 * be marked dirty at any time too, so use remove_mapping which safely
200 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 *
202 * Returns non-zero if the page was successfully invalidated.
203 */
204static int
205invalidate_complete_page(struct address_space *mapping, struct page *page)
206{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (page->mapping != mapping)
209 return 0;
210
David Howells266cf652009-04-03 16:42:36 +0100211 if (page_has_private(page) && !try_to_release_page(page, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213
chiminghao43b93122022-01-14 14:05:10 -0800214 return remove_mapping(mapping, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Matthew Wilcox (Oracle)1e84a3d2021-12-02 16:01:55 -0500217int truncate_inode_folio(struct address_space *mapping, struct folio *folio)
Nick Piggin750b4982009-09-16 11:50:12 +0200218{
Matthew Wilcox (Oracle)1e84a3d2021-12-02 16:01:55 -0500219 if (folio->mapping != mapping)
Jan Kara9f4e41f2017-11-15 17:37:15 -0800220 return -EIO;
221
Matthew Wilcox (Oracle)efe99bb2021-11-26 13:58:10 -0500222 truncate_cleanup_folio(folio);
223 filemap_remove_folio(folio);
Jan Kara9f4e41f2017-11-15 17:37:15 -0800224 return 0;
Nick Piggin750b4982009-09-16 11:50:12 +0200225}
226
Wu Fengguang83f78662009-09-16 11:50:13 +0200227/*
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400228 * Handle partial folios. The folio may be entirely within the
229 * range if a split has raced with us. If not, we zero the part of the
230 * folio that's within the [start, end] range, and then split the folio if
231 * it's large. split_page_range() will discard pages which now lie beyond
232 * i_size, and we rely on the caller to discard pages which lie within a
233 * newly created hole.
234 *
235 * Returns false if splitting failed so the caller can avoid
236 * discarding the entire folio which is stubbornly unsplit.
237 */
238bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end)
239{
240 loff_t pos = folio_pos(folio);
241 unsigned int offset, length;
242
243 if (pos < start)
244 offset = start - pos;
245 else
246 offset = 0;
247 length = folio_size(folio);
248 if (pos + length <= (u64)end)
249 length = length - offset;
250 else
251 length = end + 1 - pos - offset;
252
253 folio_wait_writeback(folio);
254 if (length == folio_size(folio)) {
255 truncate_inode_folio(folio->mapping, folio);
256 return true;
257 }
258
259 /*
260 * We may be zeroing pages we're about to discard, but it avoids
261 * doing a complex calculation here, and then doing the zeroing
262 * anyway if the page split fails.
263 */
264 folio_zero_range(folio, offset, length);
265
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400266 if (folio_has_private(folio))
267 do_invalidatepage(&folio->page, offset, length);
268 if (!folio_test_large(folio))
269 return true;
270 if (split_huge_page(&folio->page) == 0)
271 return true;
272 if (folio_test_dirty(folio))
273 return false;
274 truncate_inode_folio(folio->mapping, folio);
275 return true;
276}
277
278/*
Andi Kleen25718732009-09-16 11:50:13 +0200279 * Used to get rid of pages on hardware memory corruption.
280 */
281int generic_error_remove_page(struct address_space *mapping, struct page *page)
282{
Matthew Wilcox (Oracle)1e84a3d2021-12-02 16:01:55 -0500283 VM_BUG_ON_PAGE(PageTail(page), page);
284
Andi Kleen25718732009-09-16 11:50:13 +0200285 if (!mapping)
286 return -EINVAL;
287 /*
288 * Only punch for normal data pages for now.
289 * Handling other types like directories would need more auditing.
290 */
291 if (!S_ISREG(mapping->host->i_mode))
292 return -EIO;
Matthew Wilcox (Oracle)1e84a3d2021-12-02 16:01:55 -0500293 return truncate_inode_folio(mapping, page_folio(page));
Andi Kleen25718732009-09-16 11:50:13 +0200294}
295EXPORT_SYMBOL(generic_error_remove_page);
296
297/*
Wu Fengguang83f78662009-09-16 11:50:13 +0200298 * Safely invalidate one page from its pagecache mapping.
299 * It only drops clean, unused pages. The page must be locked.
300 *
301 * Returns 1 if the page is successfully invalidated, otherwise 0.
302 */
303int invalidate_inode_page(struct page *page)
304{
305 struct address_space *mapping = page_mapping(page);
306 if (!mapping)
307 return 0;
308 if (PageDirty(page) || PageWriteback(page))
309 return 0;
310 if (page_mapped(page))
311 return 0;
312 return invalidate_complete_page(mapping, page);
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/**
Liu Bo73c1e202012-02-21 10:57:20 +0800316 * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * @mapping: mapping to truncate
318 * @lstart: offset from which to truncate
Lukas Czerner5a720392013-05-27 23:32:35 -0400319 * @lend: offset to which to truncate (inclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 *
Hans Reiserd7339072006-01-06 00:10:36 -0800321 * Truncate the page cache, removing the pages that are between
Lukas Czerner5a720392013-05-27 23:32:35 -0400322 * specified offsets (and zeroing out partial pages
323 * if lstart or lend + 1 is not page aligned).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 *
325 * Truncate takes two passes - the first pass is nonblocking. It will not
326 * block on page locks and it will not block on writeback. The second pass
327 * will wait. This is to prevent as much IO as possible in the affected region.
328 * The first pass will remove most pages, so the search cost of the second pass
329 * is low.
330 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * We pass down the cache-hot hint to the page freeing code. Even if the
332 * mapping is large, it is probably the case that the final pages are the most
333 * recently touched, and freeing happens in ascending file offset order.
Lukas Czerner5a720392013-05-27 23:32:35 -0400334 *
335 * Note that since ->invalidatepage() accepts range to invalidate
336 * truncate_inode_pages_range is able to handle cases where lend + 1 is not
337 * page aligned properly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Hans Reiserd7339072006-01-06 00:10:36 -0800339void truncate_inode_pages_range(struct address_space *mapping,
340 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Lukas Czerner5a720392013-05-27 23:32:35 -0400342 pgoff_t start; /* inclusive */
343 pgoff_t end; /* exclusive */
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400344 struct folio_batch fbatch;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700345 pgoff_t indices[PAGEVEC_SIZE];
Lukas Czerner5a720392013-05-27 23:32:35 -0400346 pgoff_t index;
347 int i;
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400348 struct folio *folio;
349 bool same_folio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700351 if (mapping_empty(mapping))
Christoph Hellwig0a4ee512022-01-21 22:14:34 -0800352 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Lukas Czerner5a720392013-05-27 23:32:35 -0400354 /*
355 * 'start' and 'end' always covers the range of pages to be fully
356 * truncated. Partial pages are covered with 'partial_start' at the
357 * start of the range and 'partial_end' at the end of the range.
358 * Note that 'end' is exclusive while 'lend' is inclusive.
359 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300360 start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
Lukas Czerner5a720392013-05-27 23:32:35 -0400361 if (lend == -1)
362 /*
363 * lend == -1 indicates end-of-file so we have to set 'end'
364 * to the highest possible pgoff_t and since the type is
365 * unsigned we're using -1.
366 */
367 end = -1;
368 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300369 end = (lend + 1) >> PAGE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800370
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500371 folio_batch_init(&fbatch);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700372 index = start;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800373 while (index < end && find_lock_entries(mapping, index, end - 1,
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500374 &fbatch, indices)) {
375 index = indices[folio_batch_count(&fbatch) - 1] + 1;
376 truncate_folio_batch_exceptionals(mapping, &fbatch, indices);
377 for (i = 0; i < folio_batch_count(&fbatch); i++)
378 truncate_cleanup_folio(fbatch.folios[i]);
379 delete_from_page_cache_batch(mapping, &fbatch);
380 for (i = 0; i < folio_batch_count(&fbatch); i++)
381 folio_unlock(fbatch.folios[i]);
382 folio_batch_release(&fbatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 cond_resched();
384 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800385
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400386 same_folio = (lstart >> PAGE_SHIFT) == (lend >> PAGE_SHIFT);
387 folio = __filemap_get_folio(mapping, lstart >> PAGE_SHIFT, FGP_LOCK, 0);
388 if (folio) {
389 same_folio = lend < folio_pos(folio) + folio_size(folio);
390 if (!truncate_inode_partial_folio(folio, lstart, lend)) {
391 start = folio->index + folio_nr_pages(folio);
392 if (same_folio)
393 end = folio->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400395 folio_unlock(folio);
396 folio_put(folio);
397 folio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400399
400 if (!same_folio)
401 folio = __filemap_get_folio(mapping, lend >> PAGE_SHIFT,
402 FGP_LOCK, 0);
403 if (folio) {
404 if (!truncate_inode_partial_folio(folio, lstart, lend))
405 end = folio->index;
406 folio_unlock(folio);
407 folio_put(folio);
Lukas Czerner5a720392013-05-27 23:32:35 -0400408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700410 index = start;
Matthew Wilcox (Oracle)b9a8a412020-05-27 17:59:22 -0400411 while (index < end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 cond_resched();
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400413 if (!find_get_entries(mapping, index, end - 1, &fbatch,
Matthew Wilcox (Oracle)38cefeb2021-02-25 17:16:07 -0800414 indices)) {
Hugh Dickins792ceae2014-07-23 14:00:15 -0700415 /* If all gone from start onwards, we're done */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700416 if (index == start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
Hugh Dickins792ceae2014-07-23 14:00:15 -0700418 /* Otherwise restart to make sure all gone */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700419 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 continue;
421 }
Mel Gormanf2187592017-11-15 17:37:44 -0800422
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400423 for (i = 0; i < folio_batch_count(&fbatch); i++) {
424 struct folio *folio = fbatch.folios[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700426 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700427 index = indices[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700428
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400429 if (xa_is_value(folio))
Johannes Weiner0cd61442014-04-03 14:47:46 -0700430 continue;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700431
Matthew Wilcox (Oracle)1e84a3d2021-12-02 16:01:55 -0500432 folio_lock(folio);
433 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
434 folio_wait_writeback(folio);
435 truncate_inode_folio(mapping, folio);
436 folio_unlock(folio);
Matthew Wilcox (Oracle)ccbbf762021-11-26 13:25:38 -0500437 index = folio_index(folio) + folio_nr_pages(folio) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400439 truncate_folio_batch_exceptionals(mapping, &fbatch, indices);
440 folio_batch_release(&fbatch);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700441 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443}
Hans Reiserd7339072006-01-06 00:10:36 -0800444EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Hans Reiserd7339072006-01-06 00:10:36 -0800446/**
447 * truncate_inode_pages - truncate *all* the pages from an offset
448 * @mapping: mapping to truncate
449 * @lstart: offset from which to truncate
450 *
Jan Kara730633f2021-01-28 19:19:45 +0100451 * Called under (and serialised by) inode->i_rwsem and
452 * mapping->invalidate_lock.
Jan Kara08142572011-06-27 16:18:10 -0700453 *
454 * Note: When this function returns, there can be a page in the process of
455 * deletion (inside __delete_from_page_cache()) in the specified range. Thus
456 * mapping->nrpages can be non-zero when this function returns even after
457 * truncation of the whole mapping.
Hans Reiserd7339072006-01-06 00:10:36 -0800458 */
459void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
460{
461 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
462}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463EXPORT_SYMBOL(truncate_inode_pages);
464
Mike Waychison28697352009-06-16 15:32:59 -0700465/**
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700466 * truncate_inode_pages_final - truncate *all* pages before inode dies
467 * @mapping: mapping to truncate
468 *
Jan Kara96087032021-04-12 15:50:21 +0200469 * Called under (and serialized by) inode->i_rwsem.
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700470 *
471 * Filesystems have to use this in the .evict_inode path to inform the
472 * VM that this is the final truncate and the inode is going away.
473 */
474void truncate_inode_pages_final(struct address_space *mapping)
475{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700476 /*
477 * Page reclaim can not participate in regular inode lifetime
478 * management (can't call iput()) and thus can race with the
479 * inode teardown. Tell it when the address space is exiting,
480 * so that it does not install eviction information after the
481 * final truncate has begun.
482 */
483 mapping_set_exiting(mapping);
484
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700485 if (!mapping_empty(mapping)) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700486 /*
487 * As truncation uses a lockless tree lookup, cycle
488 * the tree lock to make sure any ongoing tree
489 * modification that does not see AS_EXITING is
490 * completed before starting the final truncate.
491 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700492 xa_lock_irq(&mapping->i_pages);
493 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700494 }
Pavel Tikhomirov6ff38bd2018-11-30 14:09:00 -0800495
Pavel Tikhomirov6ff38bd2018-11-30 14:09:00 -0800496 truncate_inode_pages(mapping, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700497}
498EXPORT_SYMBOL(truncate_inode_pages_final);
499
Jason Yana77eedb2020-11-01 17:07:50 -0800500static unsigned long __invalidate_mapping_pages(struct address_space *mapping,
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700501 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700503 pgoff_t indices[PAGEVEC_SIZE];
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500504 struct folio_batch fbatch;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700505 pgoff_t index = start;
Minchan Kim31560182011-03-22 16:32:52 -0700506 unsigned long ret;
507 unsigned long count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 int i;
509
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500510 folio_batch_init(&fbatch);
511 while (find_lock_entries(mapping, index, end, &fbatch, indices)) {
512 for (i = 0; i < folio_batch_count(&fbatch); i++) {
513 struct page *page = &fbatch.folios[i]->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700515 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700516 index = indices[i];
NeilBrowne0f236032006-06-23 02:05:48 -0700517
Matthew Wilcox3159f942017-11-03 13:30:42 -0400518 if (xa_is_value(page)) {
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700519 count += invalidate_exceptional_entry(mapping,
520 index,
521 page);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700522 continue;
523 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800524 index += thp_nr_pages(page) - 1;
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700525
Minchan Kim31560182011-03-22 16:32:52 -0700526 ret = invalidate_inode_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 unlock_page(page);
Minchan Kim31560182011-03-22 16:32:52 -0700528 /*
529 * Invalidation is a hint that the page is no longer
530 * of interest and try to speed up its reclaim.
531 */
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700532 if (!ret) {
Minchan Kimcc5993b2015-04-15 16:13:26 -0700533 deactivate_file_page(page);
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700534 /* It is likely on the pagevec of a remote CPU */
535 if (nr_pagevec)
536 (*nr_pagevec)++;
537 }
Minchan Kim31560182011-03-22 16:32:52 -0700538 count += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Matthew Wilcox (Oracle)51dcbda2021-12-07 14:15:07 -0500540 folio_batch_remove_exceptionals(&fbatch);
541 folio_batch_release(&fbatch);
Mike Waychison28697352009-06-16 15:32:59 -0700542 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700543 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Minchan Kim31560182011-03-22 16:32:52 -0700545 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700547
548/**
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700549 * invalidate_mapping_pages - Invalidate all clean, unlocked cache of one inode
550 * @mapping: the address_space which holds the cache to invalidate
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700551 * @start: the offset 'from' which to invalidate
552 * @end: the offset 'to' which to invalidate (inclusive)
553 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700554 * This function removes pages that are clean, unmapped and unlocked,
555 * as well as shadow entries. It will not block on IO activity.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700556 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700557 * If you want to remove all the pages of one inode, regardless of
558 * their use and writeback state, use truncate_inode_pages().
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700559 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700560 * Return: the number of the cache entries that were invalidated
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700561 */
562unsigned long invalidate_mapping_pages(struct address_space *mapping,
563 pgoff_t start, pgoff_t end)
564{
565 return __invalidate_mapping_pages(mapping, start, end, NULL);
566}
Anton Altaparmakov54bc4852007-02-10 01:45:38 -0800567EXPORT_SYMBOL(invalidate_mapping_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700569/**
Alex Shi649c6df2020-12-14 19:04:59 -0800570 * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode
571 * @mapping: the address_space which holds the pages to invalidate
572 * @start: the offset 'from' which to invalidate
573 * @end: the offset 'to' which to invalidate (inclusive)
574 * @nr_pagevec: invalidate failed page number for caller
575 *
Mauro Carvalho Chehaba00cda32020-12-14 19:14:39 -0800576 * This helper is similar to invalidate_mapping_pages(), except that it accounts
577 * for pages that are likely on a pagevec and counts them in @nr_pagevec, which
578 * will be used by the caller.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700579 */
580void invalidate_mapping_pagevec(struct address_space *mapping,
581 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
582{
583 __invalidate_mapping_pages(mapping, start, end, nr_pagevec);
584}
585
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700586/*
587 * This is like invalidate_complete_page(), except it ignores the page's
588 * refcount. We do this because invalidate_inode_pages2() needs stronger
589 * invalidation guarantees, and cannot afford to leave pages behind because
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700590 * shrink_page_list() has a temp ref on them, or because they're transiently
591 * sitting in the lru_cache_add() pagevecs.
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700592 */
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400593static int invalidate_complete_folio2(struct address_space *mapping,
594 struct folio *folio)
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700595{
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400596 if (folio->mapping != mapping)
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700597 return 0;
598
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400599 if (folio_has_private(folio) &&
600 !filemap_release_folio(folio, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700601 return 0;
602
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800603 spin_lock(&mapping->host->i_lock);
Johannes Weiner30472502021-09-02 14:53:18 -0700604 xa_lock_irq(&mapping->i_pages);
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400605 if (folio_test_dirty(folio))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700606 goto failed;
607
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400608 BUG_ON(folio_has_private(folio));
609 __filemap_remove_folio(folio, NULL);
Johannes Weiner30472502021-09-02 14:53:18 -0700610 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800611 if (mapping_shrinkable(mapping))
612 inode_add_lru(mapping->host);
613 spin_unlock(&mapping->host->i_lock);
Linus Torvalds6072d132010-12-01 13:35:19 -0500614
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400615 filemap_free_folio(mapping, folio);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700616 return 1;
617failed:
Johannes Weiner30472502021-09-02 14:53:18 -0700618 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner51b8c1f2021-11-08 18:31:24 -0800619 spin_unlock(&mapping->host->i_lock);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700620 return 0;
621}
622
Matthew Wilcox (Oracle)f6357c32021-05-20 08:17:44 -0400623static int do_launder_folio(struct address_space *mapping, struct folio *folio)
Trond Myklebuste3db7692007-01-10 23:15:39 -0800624{
Matthew Wilcox (Oracle)f6357c32021-05-20 08:17:44 -0400625 if (!folio_test_dirty(folio))
Trond Myklebuste3db7692007-01-10 23:15:39 -0800626 return 0;
Matthew Wilcox (Oracle)f6357c32021-05-20 08:17:44 -0400627 if (folio->mapping != mapping || mapping->a_ops->launder_page == NULL)
Trond Myklebuste3db7692007-01-10 23:15:39 -0800628 return 0;
Matthew Wilcox (Oracle)f6357c32021-05-20 08:17:44 -0400629 return mapping->a_ops->launder_page(&folio->page);
Trond Myklebuste3db7692007-01-10 23:15:39 -0800630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/**
633 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700634 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * @start: the page offset 'from' which to invalidate
636 * @end: the page offset 'to' which to invalidate (inclusive)
637 *
638 * Any pages which are found to be mapped into pagetables are unmapped prior to
639 * invalidation.
640 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800641 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643int invalidate_inode_pages2_range(struct address_space *mapping,
644 pgoff_t start, pgoff_t end)
645{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700646 pgoff_t indices[PAGEVEC_SIZE];
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400647 struct folio_batch fbatch;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700648 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int i;
650 int ret = 0;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700651 int ret2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 int did_range_unmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700654 if (mapping_empty(mapping))
Christoph Hellwig0a4ee512022-01-21 22:14:34 -0800655 return 0;
Andrey Ryabinin32691f02017-05-03 14:56:06 -0700656
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400657 folio_batch_init(&fbatch);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700658 index = start;
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400659 while (find_get_entries(mapping, index, end, &fbatch, indices)) {
660 for (i = 0; i < folio_batch_count(&fbatch); i++) {
661 struct folio *folio = fbatch.folios[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700662
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500663 /* We rely upon deletion not changing folio->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700664 index = indices[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400666 if (xa_is_value(folio)) {
Jan Karac6dcf522016-08-10 17:22:44 +0200667 if (!invalidate_exceptional_entry2(mapping,
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400668 index, folio))
Jan Karac6dcf522016-08-10 17:22:44 +0200669 ret = -EBUSY;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700670 continue;
671 }
672
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500673 if (!did_range_unmap && folio_mapped(folio)) {
Hugh Dickins22061a12021-06-15 18:24:03 -0700674 /*
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500675 * If folio is mapped, before taking its lock,
Hugh Dickins22061a12021-06-15 18:24:03 -0700676 * zap the rest of the file in one hit.
677 */
678 unmap_mapping_pages(mapping, index,
679 (1 + end - index), false);
680 did_range_unmap = 1;
681 }
682
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500683 folio_lock(folio);
684 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
685 if (folio->mapping != mapping) {
686 folio_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 continue;
688 }
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500689 folio_wait_writeback(folio);
Hugh Dickins22061a12021-06-15 18:24:03 -0700690
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500691 if (folio_mapped(folio))
692 unmap_mapping_folio(folio);
693 BUG_ON(folio_mapped(folio));
Hugh Dickins22061a12021-06-15 18:24:03 -0700694
Matthew Wilcox (Oracle)f6357c32021-05-20 08:17:44 -0400695 ret2 = do_launder_folio(mapping, folio);
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700696 if (ret2 == 0) {
Matthew Wilcox (Oracle)78f42662021-07-28 15:52:34 -0400697 if (!invalidate_complete_folio2(mapping, folio))
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -0700698 ret2 = -EBUSY;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700699 }
700 if (ret2 < 0)
701 ret = ret2;
Matthew Wilcox (Oracle)fae9bc42021-12-02 23:25:01 -0500702 folio_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Matthew Wilcox (Oracle)0e499ed2020-09-01 23:17:50 -0400704 folio_batch_remove_exceptionals(&fbatch);
705 folio_batch_release(&fbatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700707 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Jan Karacd656372017-05-12 15:46:50 -0700709 /*
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500710 * For DAX we invalidate page tables after invalidating page cache. We
Jan Karacd656372017-05-12 15:46:50 -0700711 * could invalidate page tables while invalidating each entry however
712 * that would be expensive. And doing range unmapping before doesn't
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500713 * work as we have no cheap way to find whether page cache entry didn't
Jan Karacd656372017-05-12 15:46:50 -0700714 * get remapped later.
715 */
716 if (dax_mapping(mapping)) {
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800717 unmap_mapping_pages(mapping, start, end - start + 1, false);
Jan Karacd656372017-05-12 15:46:50 -0700718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return ret;
720}
721EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
722
723/**
724 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700725 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 *
727 * Any pages which are found to be mapped into pagetables are unmapped prior to
728 * invalidation.
729 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800730 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
732int invalidate_inode_pages2(struct address_space *mapping)
733{
734 return invalidate_inode_pages2_range(mapping, 0, -1);
735}
736EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000737
738/**
739 * truncate_pagecache - unmap and remove pagecache that has been truncated
740 * @inode: inode
Hugh Dickins8a549be2011-07-25 17:12:24 -0700741 * @newsize: new file size
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000742 *
743 * inode's new i_size must already be written before truncate_pagecache
744 * is called.
745 *
746 * This function should typically be called before the filesystem
747 * releases resources associated with the freed range (eg. deallocates
748 * blocks). This way, pagecache will always stay logically coherent
749 * with on-disk format, and the filesystem would not have to deal with
750 * situations such as writepage being called for a page that has already
751 * had its underlying blocks deallocated.
752 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700753void truncate_pagecache(struct inode *inode, loff_t newsize)
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000754{
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900755 struct address_space *mapping = inode->i_mapping;
Hugh Dickins8a549be2011-07-25 17:12:24 -0700756 loff_t holebegin = round_up(newsize, PAGE_SIZE);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000757
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900758 /*
759 * unmap_mapping_range is called twice, first simply for
760 * efficiency so that truncate_inode_pages does fewer
761 * single-page unmaps. However after this first call, and
762 * before truncate_inode_pages finishes, it is possible for
763 * private pages to be COWed, which remain after
764 * truncate_inode_pages finishes, hence the second
765 * unmap_mapping_range call must be made for correctness.
766 */
Hugh Dickins8a549be2011-07-25 17:12:24 -0700767 unmap_mapping_range(mapping, holebegin, 0, 1);
768 truncate_inode_pages(mapping, newsize);
769 unmap_mapping_range(mapping, holebegin, 0, 1);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000770}
771EXPORT_SYMBOL(truncate_pagecache);
772
773/**
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200774 * truncate_setsize - update inode and pagecache for a new file size
775 * @inode: inode
776 * @newsize: new file size
777 *
Jan Kara382e27d2011-01-20 14:44:26 -0800778 * truncate_setsize updates i_size and performs pagecache truncation (if
779 * necessary) to @newsize. It will be typically be called from the filesystem's
780 * setattr function when ATTR_SIZE is passed in.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200781 *
Jan Kara77783d02014-11-07 08:29:25 +1100782 * Must be called with a lock serializing truncates and writes (generally
Jan Kara96087032021-04-12 15:50:21 +0200783 * i_rwsem but e.g. xfs uses a different lock) and before all filesystem
Jan Kara77783d02014-11-07 08:29:25 +1100784 * specific block truncation has been performed.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200785 */
786void truncate_setsize(struct inode *inode, loff_t newsize)
787{
Jan Kara90a80202014-10-01 21:49:18 -0400788 loff_t oldsize = inode->i_size;
789
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200790 i_size_write(inode, newsize);
Jan Kara90a80202014-10-01 21:49:18 -0400791 if (newsize > oldsize)
792 pagecache_isize_extended(inode, oldsize, newsize);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700793 truncate_pagecache(inode, newsize);
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200794}
795EXPORT_SYMBOL(truncate_setsize);
796
797/**
Jan Kara90a80202014-10-01 21:49:18 -0400798 * pagecache_isize_extended - update pagecache after extension of i_size
799 * @inode: inode for which i_size was extended
800 * @from: original inode size
801 * @to: new inode size
802 *
803 * Handle extension of inode size either caused by extending truncate or by
804 * write starting after current i_size. We mark the page straddling current
805 * i_size RO so that page_mkwrite() is called on the nearest write access to
806 * the page. This way filesystem can be sure that page_mkwrite() is called on
807 * the page before user writes to the page via mmap after the i_size has been
808 * changed.
809 *
810 * The function must be called after i_size is updated so that page fault
811 * coming after we unlock the page will already see the new i_size.
Jan Kara96087032021-04-12 15:50:21 +0200812 * The function must be called while we still hold i_rwsem - this not only
Jan Kara90a80202014-10-01 21:49:18 -0400813 * makes sure i_size is stable but also that userspace cannot observe new
814 * i_size value before we are prepared to store mmap writes at new inode size.
815 */
816void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to)
817{
Fabian Frederick93407472017-02-27 14:28:32 -0800818 int bsize = i_blocksize(inode);
Jan Kara90a80202014-10-01 21:49:18 -0400819 loff_t rounded_from;
820 struct page *page;
821 pgoff_t index;
822
Jan Kara90a80202014-10-01 21:49:18 -0400823 WARN_ON(to > inode->i_size);
824
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300825 if (from >= to || bsize == PAGE_SIZE)
Jan Kara90a80202014-10-01 21:49:18 -0400826 return;
827 /* Page straddling @from will not have any hole block created? */
828 rounded_from = round_up(from, bsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300829 if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1)))
Jan Kara90a80202014-10-01 21:49:18 -0400830 return;
831
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300832 index = from >> PAGE_SHIFT;
Jan Kara90a80202014-10-01 21:49:18 -0400833 page = find_lock_page(inode->i_mapping, index);
834 /* Page not cached? Nothing to do */
835 if (!page)
836 return;
837 /*
838 * See clear_page_dirty_for_io() for details why set_page_dirty()
839 * is needed.
840 */
841 if (page_mkclean(page))
842 set_page_dirty(page);
843 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300844 put_page(page);
Jan Kara90a80202014-10-01 21:49:18 -0400845}
846EXPORT_SYMBOL(pagecache_isize_extended);
847
848/**
Hugh Dickins623e3db2012-03-28 14:42:40 -0700849 * truncate_pagecache_range - unmap and remove pagecache that is hole-punched
850 * @inode: inode
851 * @lstart: offset of beginning of hole
852 * @lend: offset of last byte of hole
853 *
854 * This function should typically be called before the filesystem
855 * releases resources associated with the freed range (eg. deallocates
856 * blocks). This way, pagecache will always stay logically coherent
857 * with on-disk format, and the filesystem would not have to deal with
858 * situations such as writepage being called for a page that has already
859 * had its underlying blocks deallocated.
860 */
861void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend)
862{
863 struct address_space *mapping = inode->i_mapping;
864 loff_t unmap_start = round_up(lstart, PAGE_SIZE);
865 loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1;
866 /*
867 * This rounding is currently just for example: unmap_mapping_range
868 * expands its hole outwards, whereas we want it to contract the hole
869 * inwards. However, existing callers of truncate_pagecache_range are
Lukas Czerner5a720392013-05-27 23:32:35 -0400870 * doing their own page rounding first. Note that unmap_mapping_range
871 * allows holelen 0 for all, and we allow lend -1 for end of file.
Hugh Dickins623e3db2012-03-28 14:42:40 -0700872 */
873
874 /*
875 * Unlike in truncate_pagecache, unmap_mapping_range is called only
876 * once (before truncating pagecache), and without "even_cows" flag:
877 * hole-punching should not remove private COWed pages from the hole.
878 */
879 if ((u64)unmap_end > (u64)unmap_start)
880 unmap_mapping_range(mapping, unmap_start,
881 1 + unmap_end - unmap_start, 0);
882 truncate_inode_pages_range(mapping, lstart, lend);
883}
884EXPORT_SYMBOL(truncate_pagecache_range);