blob: 714eaf19821d7f4f251dde2237828a06c379b0da [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{
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 Weiner0cd61442014-04-03 14:47:46 -070051}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Jan Karac6dcf522016-08-10 17:22:44 +020053/*
Mel Gormanf2187592017-11-15 17:37:44 -080054 * Unconditionally remove exceptional entries. Usually called from truncate
55 * path. Note that the pagevec may be altered by this function by removing
56 * exceptional entries similar to what pagevec_remove_exceptionals does.
Jan Karac6dcf522016-08-10 17:22:44 +020057 */
Mel Gormanf2187592017-11-15 17:37:44 -080058static void truncate_exceptional_pvec_entries(struct address_space *mapping,
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080059 struct pagevec *pvec, pgoff_t *indices)
Jan Karac6dcf522016-08-10 17:22:44 +020060{
Mel Gormanf2187592017-11-15 17:37:44 -080061 int i, j;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080062 bool dax;
Mel Gormanf2187592017-11-15 17:37:44 -080063
Jan Karac6dcf522016-08-10 17:22:44 +020064 /* Handled by shmem itself */
65 if (shmem_mapping(mapping))
66 return;
67
Mel Gormanf2187592017-11-15 17:37:44 -080068 for (j = 0; j < pagevec_count(pvec); j++)
Matthew Wilcox3159f942017-11-03 13:30:42 -040069 if (xa_is_value(pvec->pages[j]))
Mel Gormanf2187592017-11-15 17:37:44 -080070 break;
71
72 if (j == pagevec_count(pvec))
Jan Karac6dcf522016-08-10 17:22:44 +020073 return;
Mel Gormanf2187592017-11-15 17:37:44 -080074
75 dax = dax_mapping(mapping);
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080076 if (!dax)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070077 xa_lock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080078
79 for (i = j; i < pagevec_count(pvec); i++) {
80 struct page *page = pvec->pages[i];
81 pgoff_t index = indices[i];
82
Matthew Wilcox3159f942017-11-03 13:30:42 -040083 if (!xa_is_value(page)) {
Mel Gormanf2187592017-11-15 17:37:44 -080084 pvec->pages[j++] = page;
85 continue;
86 }
87
Mel Gormanf2187592017-11-15 17:37:44 -080088 if (unlikely(dax)) {
89 dax_delete_mapping_entry(mapping, index);
90 continue;
91 }
92
93 __clear_shadow_entry(mapping, index, page);
Jan Karac6dcf522016-08-10 17:22:44 +020094 }
Mel Gormanf2187592017-11-15 17:37:44 -080095
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080096 if (!dax)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070097 xa_unlock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080098 pvec->nr = j;
Jan Karac6dcf522016-08-10 17:22:44 +020099}
100
101/*
102 * Invalidate exceptional entry if easily possible. This handles exceptional
Ross Zwisler4636e702017-05-12 15:46:47 -0700103 * entries for invalidate_inode_pages().
Jan Karac6dcf522016-08-10 17:22:44 +0200104 */
105static int invalidate_exceptional_entry(struct address_space *mapping,
106 pgoff_t index, void *entry)
107{
Ross Zwisler4636e702017-05-12 15:46:47 -0700108 /* Handled by shmem itself, or for DAX we do nothing. */
109 if (shmem_mapping(mapping) || dax_mapping(mapping))
Jan Karac6dcf522016-08-10 17:22:44 +0200110 return 1;
Jan Karac6dcf522016-08-10 17:22:44 +0200111 clear_shadow_entry(mapping, index, entry);
112 return 1;
113}
114
115/*
116 * Invalidate exceptional entry if clean. This handles exceptional entries for
117 * invalidate_inode_pages2() so for DAX it evicts only clean entries.
118 */
119static int invalidate_exceptional_entry2(struct address_space *mapping,
120 pgoff_t index, void *entry)
121{
122 /* Handled by shmem itself */
123 if (shmem_mapping(mapping))
124 return 1;
125 if (dax_mapping(mapping))
126 return dax_invalidate_mapping_entry_sync(mapping, index);
127 clear_shadow_entry(mapping, index, entry);
128 return 1;
129}
130
David Howellscf9a2ae2006-08-29 19:05:54 +0100131/**
Fengguang Wu28bc44d2008-02-03 18:04:10 +0200132 * do_invalidatepage - invalidate part or all of a page
David Howellscf9a2ae2006-08-29 19:05:54 +0100133 * @page: the page which is affected
Lukas Czernerd47992f2013-05-21 23:17:23 -0400134 * @offset: start of the range to invalidate
135 * @length: length of the range to invalidate
David Howellscf9a2ae2006-08-29 19:05:54 +0100136 *
137 * do_invalidatepage() is called when all or part of the page has become
138 * invalidated by a truncate operation.
139 *
140 * do_invalidatepage() does not have to release all buffers, but it must
141 * ensure that no dirty buffer is left outside @offset and that no I/O
142 * is underway against any of the blocks which are outside the truncation
143 * point. Because the caller is about to free (and possibly reuse) those
144 * blocks on-disk.
145 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400146void do_invalidatepage(struct page *page, unsigned int offset,
147 unsigned int length)
David Howellscf9a2ae2006-08-29 19:05:54 +0100148{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400149 void (*invalidatepage)(struct page *, unsigned int, unsigned int);
150
David Howellscf9a2ae2006-08-29 19:05:54 +0100151 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200152#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +0100153 if (!invalidatepage)
154 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200155#endif
David Howellscf9a2ae2006-08-29 19:05:54 +0100156 if (invalidatepage)
Lukas Czernerd47992f2013-05-21 23:17:23 -0400157 (*invalidatepage)(page, offset, length);
David Howellscf9a2ae2006-08-29 19:05:54 +0100158}
159
Linus Torvaldsecdfc972007-01-26 12:47:06 -0800160/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * If truncate cannot remove the fs-private metadata from the page, the page
Shaohua Li62e1c552008-02-04 22:29:33 -0800162 * becomes orphaned. It will be left on the LRU and may even be mapped into
Nick Piggin54cb8822007-07-19 01:46:59 -0700163 * user pagetables if we're racing with filemap_fault().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700165 * We need to bail out if page->mapping is no longer equal to the original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * mapping. This happens a) when the VM reclaimed the page while we waited on
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800167 * its lock, b) when a concurrent invalidate_mapping_pages got there first and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
169 */
Hugh Dickins22061a12021-06-15 18:24:03 -0700170static void truncate_cleanup_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Hugh Dickins22061a12021-06-15 18:24:03 -0700172 if (page_mapped(page))
173 unmap_mapping_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
David Howells266cf652009-04-03 16:42:36 +0100175 if (page_has_private(page))
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700176 do_invalidatepage(page, 0, thp_size(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700178 /*
179 * Some filesystems seem to re-dirty the page even after
180 * the VM has canceled the dirty bit (eg ext3 journaling).
181 * Hence dirty accounting check is placed after invalidation.
182 */
Tejun Heo11f81be2015-05-22 17:13:15 -0400183 cancel_dirty_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 ClearPageMappedToDisk(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187/*
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800188 * This is for invalidate_mapping_pages(). That function can be called at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700190 * be marked dirty at any time too, so use remove_mapping which safely
191 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
193 * Returns non-zero if the page was successfully invalidated.
194 */
195static int
196invalidate_complete_page(struct address_space *mapping, struct page *page)
197{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700198 int ret;
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (page->mapping != mapping)
201 return 0;
202
David Howells266cf652009-04-03 16:42:36 +0100203 if (page_has_private(page) && !try_to_release_page(page, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 0;
205
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700206 ret = remove_mapping(mapping, page);
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700207
208 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Nick Piggin750b4982009-09-16 11:50:12 +0200211int truncate_inode_page(struct address_space *mapping, struct page *page)
212{
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700213 VM_BUG_ON_PAGE(PageTail(page), page);
214
Jan Kara9f4e41f2017-11-15 17:37:15 -0800215 if (page->mapping != mapping)
216 return -EIO;
217
Hugh Dickins22061a12021-06-15 18:24:03 -0700218 truncate_cleanup_page(page);
Jan Kara9f4e41f2017-11-15 17:37:15 -0800219 delete_from_page_cache(page);
220 return 0;
Nick Piggin750b4982009-09-16 11:50:12 +0200221}
222
Wu Fengguang83f78662009-09-16 11:50:13 +0200223/*
Andi Kleen25718732009-09-16 11:50:13 +0200224 * Used to get rid of pages on hardware memory corruption.
225 */
226int generic_error_remove_page(struct address_space *mapping, struct page *page)
227{
228 if (!mapping)
229 return -EINVAL;
230 /*
231 * Only punch for normal data pages for now.
232 * Handling other types like directories would need more auditing.
233 */
234 if (!S_ISREG(mapping->host->i_mode))
235 return -EIO;
236 return truncate_inode_page(mapping, page);
237}
238EXPORT_SYMBOL(generic_error_remove_page);
239
240/*
Wu Fengguang83f78662009-09-16 11:50:13 +0200241 * Safely invalidate one page from its pagecache mapping.
242 * It only drops clean, unused pages. The page must be locked.
243 *
244 * Returns 1 if the page is successfully invalidated, otherwise 0.
245 */
246int invalidate_inode_page(struct page *page)
247{
248 struct address_space *mapping = page_mapping(page);
249 if (!mapping)
250 return 0;
251 if (PageDirty(page) || PageWriteback(page))
252 return 0;
253 if (page_mapped(page))
254 return 0;
255 return invalidate_complete_page(mapping, page);
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/**
Liu Bo73c1e202012-02-21 10:57:20 +0800259 * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * @mapping: mapping to truncate
261 * @lstart: offset from which to truncate
Lukas Czerner5a720392013-05-27 23:32:35 -0400262 * @lend: offset to which to truncate (inclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
Hans Reiserd7339072006-01-06 00:10:36 -0800264 * Truncate the page cache, removing the pages that are between
Lukas Czerner5a720392013-05-27 23:32:35 -0400265 * specified offsets (and zeroing out partial pages
266 * if lstart or lend + 1 is not page aligned).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
268 * Truncate takes two passes - the first pass is nonblocking. It will not
269 * block on page locks and it will not block on writeback. The second pass
270 * will wait. This is to prevent as much IO as possible in the affected region.
271 * The first pass will remove most pages, so the search cost of the second pass
272 * is low.
273 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * We pass down the cache-hot hint to the page freeing code. Even if the
275 * mapping is large, it is probably the case that the final pages are the most
276 * recently touched, and freeing happens in ascending file offset order.
Lukas Czerner5a720392013-05-27 23:32:35 -0400277 *
278 * Note that since ->invalidatepage() accepts range to invalidate
279 * truncate_inode_pages_range is able to handle cases where lend + 1 is not
280 * page aligned properly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Hans Reiserd7339072006-01-06 00:10:36 -0800282void truncate_inode_pages_range(struct address_space *mapping,
283 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Lukas Czerner5a720392013-05-27 23:32:35 -0400285 pgoff_t start; /* inclusive */
286 pgoff_t end; /* exclusive */
287 unsigned int partial_start; /* inclusive */
288 unsigned int partial_end; /* exclusive */
289 struct pagevec pvec;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700290 pgoff_t indices[PAGEVEC_SIZE];
Lukas Czerner5a720392013-05-27 23:32:35 -0400291 pgoff_t index;
292 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700294 if (mapping_empty(mapping))
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700295 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Lukas Czerner5a720392013-05-27 23:32:35 -0400297 /* Offsets within partial pages */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300298 partial_start = lstart & (PAGE_SIZE - 1);
299 partial_end = (lend + 1) & (PAGE_SIZE - 1);
Lukas Czerner5a720392013-05-27 23:32:35 -0400300
301 /*
302 * 'start' and 'end' always covers the range of pages to be fully
303 * truncated. Partial pages are covered with 'partial_start' at the
304 * start of the range and 'partial_end' at the end of the range.
305 * Note that 'end' is exclusive while 'lend' is inclusive.
306 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300307 start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
Lukas Czerner5a720392013-05-27 23:32:35 -0400308 if (lend == -1)
309 /*
310 * lend == -1 indicates end-of-file so we have to set 'end'
311 * to the highest possible pgoff_t and since the type is
312 * unsigned we're using -1.
313 */
314 end = -1;
315 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300316 end = (lend + 1) >> PAGE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800317
Mel Gorman86679822017-11-15 17:37:52 -0800318 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700319 index = start;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800320 while (index < end && find_lock_entries(mapping, index, end - 1,
321 &pvec, indices)) {
322 index = indices[pagevec_count(&pvec) - 1] + 1;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800323 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800324 for (i = 0; i < pagevec_count(&pvec); i++)
Hugh Dickins22061a12021-06-15 18:24:03 -0700325 truncate_cleanup_page(pvec.pages[i]);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800326 delete_from_page_cache_batch(mapping, &pvec);
327 for (i = 0; i < pagevec_count(&pvec); i++)
328 unlock_page(pvec.pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 pagevec_release(&pvec);
330 cond_resched();
331 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800332
Lukas Czerner5a720392013-05-27 23:32:35 -0400333 if (partial_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct page *page = find_lock_page(mapping, start - 1);
335 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300336 unsigned int top = PAGE_SIZE;
Lukas Czerner5a720392013-05-27 23:32:35 -0400337 if (start > end) {
338 /* Truncation within a single page */
339 top = partial_end;
340 partial_end = 0;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 wait_on_page_writeback(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400343 zero_user_segment(page, partial_start, top);
344 cleancache_invalidate_page(mapping, page);
345 if (page_has_private(page))
346 do_invalidatepage(page, partial_start,
347 top - partial_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300349 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 }
Lukas Czerner5a720392013-05-27 23:32:35 -0400352 if (partial_end) {
353 struct page *page = find_lock_page(mapping, end);
354 if (page) {
355 wait_on_page_writeback(page);
356 zero_user_segment(page, 0, partial_end);
357 cleancache_invalidate_page(mapping, page);
358 if (page_has_private(page))
359 do_invalidatepage(page, 0,
360 partial_end);
361 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300362 put_page(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400363 }
364 }
365 /*
366 * If the truncation happened within a single page no pages
367 * will be released, just zeroed, so we can bail out now.
368 */
369 if (start >= end)
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700370 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700372 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 for ( ; ; ) {
374 cond_resched();
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800375 if (!find_get_entries(mapping, index, end - 1, &pvec,
Matthew Wilcox (Oracle)38cefeb2021-02-25 17:16:07 -0800376 indices)) {
Hugh Dickins792ceae2014-07-23 14:00:15 -0700377 /* If all gone from start onwards, we're done */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700378 if (index == start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
Hugh Dickins792ceae2014-07-23 14:00:15 -0700380 /* Otherwise restart to make sure all gone */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700381 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 continue;
383 }
Mel Gormanf2187592017-11-15 17:37:44 -0800384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 for (i = 0; i < pagevec_count(&pvec); i++) {
386 struct page *page = pvec.pages[i];
387
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700388 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700389 index = indices[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700390
Matthew Wilcox3159f942017-11-03 13:30:42 -0400391 if (xa_is_value(page))
Johannes Weiner0cd61442014-04-03 14:47:46 -0700392 continue;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800395 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 wait_on_page_writeback(page);
Nick Piggin750b4982009-09-16 11:50:12 +0200397 truncate_inode_page(mapping, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unlock_page(page);
399 }
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800400 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 pagevec_release(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700402 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700404
405out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400406 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
Hans Reiserd7339072006-01-06 00:10:36 -0800408EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Hans Reiserd7339072006-01-06 00:10:36 -0800410/**
411 * truncate_inode_pages - truncate *all* the pages from an offset
412 * @mapping: mapping to truncate
413 * @lstart: offset from which to truncate
414 *
Jan Kara730633f2021-01-28 19:19:45 +0100415 * Called under (and serialised by) inode->i_rwsem and
416 * mapping->invalidate_lock.
Jan Kara08142572011-06-27 16:18:10 -0700417 *
418 * Note: When this function returns, there can be a page in the process of
419 * deletion (inside __delete_from_page_cache()) in the specified range. Thus
420 * mapping->nrpages can be non-zero when this function returns even after
421 * truncation of the whole mapping.
Hans Reiserd7339072006-01-06 00:10:36 -0800422 */
423void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
424{
425 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
426}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427EXPORT_SYMBOL(truncate_inode_pages);
428
Mike Waychison28697352009-06-16 15:32:59 -0700429/**
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700430 * truncate_inode_pages_final - truncate *all* pages before inode dies
431 * @mapping: mapping to truncate
432 *
Jan Kara96087032021-04-12 15:50:21 +0200433 * Called under (and serialized by) inode->i_rwsem.
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700434 *
435 * Filesystems have to use this in the .evict_inode path to inform the
436 * VM that this is the final truncate and the inode is going away.
437 */
438void truncate_inode_pages_final(struct address_space *mapping)
439{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700440 /*
441 * Page reclaim can not participate in regular inode lifetime
442 * management (can't call iput()) and thus can race with the
443 * inode teardown. Tell it when the address space is exiting,
444 * so that it does not install eviction information after the
445 * final truncate has begun.
446 */
447 mapping_set_exiting(mapping);
448
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700449 if (!mapping_empty(mapping)) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700450 /*
451 * As truncation uses a lockless tree lookup, cycle
452 * the tree lock to make sure any ongoing tree
453 * modification that does not see AS_EXITING is
454 * completed before starting the final truncate.
455 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700456 xa_lock_irq(&mapping->i_pages);
457 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700458 }
Pavel Tikhomirov6ff38bd2018-11-30 14:09:00 -0800459
460 /*
461 * Cleancache needs notification even if there are no pages or shadow
462 * entries.
463 */
464 truncate_inode_pages(mapping, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700465}
466EXPORT_SYMBOL(truncate_inode_pages_final);
467
Jason Yana77eedb2020-11-01 17:07:50 -0800468static unsigned long __invalidate_mapping_pages(struct address_space *mapping,
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700469 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700471 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700473 pgoff_t index = start;
Minchan Kim31560182011-03-22 16:32:52 -0700474 unsigned long ret;
475 unsigned long count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int i;
477
Mel Gorman86679822017-11-15 17:37:52 -0800478 pagevec_init(&pvec);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800479 while (find_lock_entries(mapping, index, end, &pvec, indices)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 for (i = 0; i < pagevec_count(&pvec); i++) {
481 struct page *page = pvec.pages[i];
482
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700483 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700484 index = indices[i];
NeilBrowne0f236032006-06-23 02:05:48 -0700485
Matthew Wilcox3159f942017-11-03 13:30:42 -0400486 if (xa_is_value(page)) {
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700487 count += invalidate_exceptional_entry(mapping,
488 index,
489 page);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700490 continue;
491 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800492 index += thp_nr_pages(page) - 1;
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700493
Minchan Kim31560182011-03-22 16:32:52 -0700494 ret = invalidate_inode_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 unlock_page(page);
Minchan Kim31560182011-03-22 16:32:52 -0700496 /*
497 * Invalidation is a hint that the page is no longer
498 * of interest and try to speed up its reclaim.
499 */
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700500 if (!ret) {
Minchan Kimcc5993b2015-04-15 16:13:26 -0700501 deactivate_file_page(page);
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700502 /* It is likely on the pagevec of a remote CPU */
503 if (nr_pagevec)
504 (*nr_pagevec)++;
505 }
Minchan Kim31560182011-03-22 16:32:52 -0700506 count += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700508 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 pagevec_release(&pvec);
Mike Waychison28697352009-06-16 15:32:59 -0700510 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700511 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Minchan Kim31560182011-03-22 16:32:52 -0700513 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700515
516/**
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700517 * invalidate_mapping_pages - Invalidate all clean, unlocked cache of one inode
518 * @mapping: the address_space which holds the cache to invalidate
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700519 * @start: the offset 'from' which to invalidate
520 * @end: the offset 'to' which to invalidate (inclusive)
521 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700522 * This function removes pages that are clean, unmapped and unlocked,
523 * as well as shadow entries. It will not block on IO activity.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700524 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700525 * If you want to remove all the pages of one inode, regardless of
526 * their use and writeback state, use truncate_inode_pages().
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700527 *
Johannes Weiner7ae12c82021-09-02 14:53:24 -0700528 * Return: the number of the cache entries that were invalidated
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700529 */
530unsigned long invalidate_mapping_pages(struct address_space *mapping,
531 pgoff_t start, pgoff_t end)
532{
533 return __invalidate_mapping_pages(mapping, start, end, NULL);
534}
Anton Altaparmakov54bc4852007-02-10 01:45:38 -0800535EXPORT_SYMBOL(invalidate_mapping_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700537/**
Alex Shi649c6df2020-12-14 19:04:59 -0800538 * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode
539 * @mapping: the address_space which holds the pages to invalidate
540 * @start: the offset 'from' which to invalidate
541 * @end: the offset 'to' which to invalidate (inclusive)
542 * @nr_pagevec: invalidate failed page number for caller
543 *
Mauro Carvalho Chehaba00cda32020-12-14 19:14:39 -0800544 * This helper is similar to invalidate_mapping_pages(), except that it accounts
545 * for pages that are likely on a pagevec and counts them in @nr_pagevec, which
546 * will be used by the caller.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700547 */
548void invalidate_mapping_pagevec(struct address_space *mapping,
549 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
550{
551 __invalidate_mapping_pages(mapping, start, end, nr_pagevec);
552}
553
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700554/*
555 * This is like invalidate_complete_page(), except it ignores the page's
556 * refcount. We do this because invalidate_inode_pages2() needs stronger
557 * invalidation guarantees, and cannot afford to leave pages behind because
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700558 * shrink_page_list() has a temp ref on them, or because they're transiently
559 * sitting in the lru_cache_add() pagevecs.
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700560 */
561static int
562invalidate_complete_page2(struct address_space *mapping, struct page *page)
563{
564 if (page->mapping != mapping)
565 return 0;
566
David Howells266cf652009-04-03 16:42:36 +0100567 if (page_has_private(page) && !try_to_release_page(page, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700568 return 0;
569
Johannes Weiner30472502021-09-02 14:53:18 -0700570 xa_lock_irq(&mapping->i_pages);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700571 if (PageDirty(page))
572 goto failed;
573
David Howells266cf652009-04-03 16:42:36 +0100574 BUG_ON(page_has_private(page));
Johannes Weiner62cccb82016-03-15 14:57:22 -0700575 __delete_from_page_cache(page, NULL);
Johannes Weiner30472502021-09-02 14:53:18 -0700576 xa_unlock_irq(&mapping->i_pages);
Linus Torvalds6072d132010-12-01 13:35:19 -0500577
578 if (mapping->a_ops->freepage)
579 mapping->a_ops->freepage(page);
580
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300581 put_page(page); /* pagecache ref */
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700582 return 1;
583failed:
Johannes Weiner30472502021-09-02 14:53:18 -0700584 xa_unlock_irq(&mapping->i_pages);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700585 return 0;
586}
587
Trond Myklebuste3db7692007-01-10 23:15:39 -0800588static int do_launder_page(struct address_space *mapping, struct page *page)
589{
590 if (!PageDirty(page))
591 return 0;
592 if (page->mapping != mapping || mapping->a_ops->launder_page == NULL)
593 return 0;
594 return mapping->a_ops->launder_page(page);
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/**
598 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700599 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * @start: the page offset 'from' which to invalidate
601 * @end: the page offset 'to' which to invalidate (inclusive)
602 *
603 * Any pages which are found to be mapped into pagetables are unmapped prior to
604 * invalidation.
605 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800606 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
608int invalidate_inode_pages2_range(struct address_space *mapping,
609 pgoff_t start, pgoff_t end)
610{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700611 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700613 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 int i;
615 int ret = 0;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700616 int ret2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 int did_range_unmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700619 if (mapping_empty(mapping))
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700620 goto out;
Andrey Ryabinin32691f02017-05-03 14:56:06 -0700621
Mel Gorman86679822017-11-15 17:37:52 -0800622 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700623 index = start;
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800624 while (find_get_entries(mapping, index, end, &pvec, indices)) {
Trond Myklebust7b965e02007-02-28 20:13:55 -0800625 for (i = 0; i < pagevec_count(&pvec); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct page *page = pvec.pages[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700627
628 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700629 index = indices[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Matthew Wilcox3159f942017-11-03 13:30:42 -0400631 if (xa_is_value(page)) {
Jan Karac6dcf522016-08-10 17:22:44 +0200632 if (!invalidate_exceptional_entry2(mapping,
633 index, page))
634 ret = -EBUSY;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700635 continue;
636 }
637
Hugh Dickins22061a12021-06-15 18:24:03 -0700638 if (!did_range_unmap && page_mapped(page)) {
639 /*
640 * If page is mapped, before taking its lock,
641 * zap the rest of the file in one hit.
642 */
643 unmap_mapping_pages(mapping, index,
644 (1 + end - index), false);
645 did_range_unmap = 1;
646 }
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800649 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (page->mapping != mapping) {
651 unlock_page(page);
652 continue;
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 wait_on_page_writeback(page);
Hugh Dickins22061a12021-06-15 18:24:03 -0700655
656 if (page_mapped(page))
657 unmap_mapping_page(page);
Nick Piggind00806b2007-07-19 01:46:57 -0700658 BUG_ON(page_mapped(page));
Hugh Dickins22061a12021-06-15 18:24:03 -0700659
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700660 ret2 = do_launder_page(mapping, page);
661 if (ret2 == 0) {
662 if (!invalidate_complete_page2(mapping, page))
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -0700663 ret2 = -EBUSY;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700664 }
665 if (ret2 < 0)
666 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 unlock_page(page);
668 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700669 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 pagevec_release(&pvec);
671 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700672 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Jan Karacd656372017-05-12 15:46:50 -0700674 /*
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500675 * For DAX we invalidate page tables after invalidating page cache. We
Jan Karacd656372017-05-12 15:46:50 -0700676 * could invalidate page tables while invalidating each entry however
677 * that would be expensive. And doing range unmapping before doesn't
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500678 * work as we have no cheap way to find whether page cache entry didn't
Jan Karacd656372017-05-12 15:46:50 -0700679 * get remapped later.
680 */
681 if (dax_mapping(mapping)) {
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800682 unmap_mapping_pages(mapping, start, end - start + 1, false);
Jan Karacd656372017-05-12 15:46:50 -0700683 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700684out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400685 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return ret;
687}
688EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
689
690/**
691 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700692 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *
694 * Any pages which are found to be mapped into pagetables are unmapped prior to
695 * invalidation.
696 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800697 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
699int invalidate_inode_pages2(struct address_space *mapping)
700{
701 return invalidate_inode_pages2_range(mapping, 0, -1);
702}
703EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000704
705/**
706 * truncate_pagecache - unmap and remove pagecache that has been truncated
707 * @inode: inode
Hugh Dickins8a549be2011-07-25 17:12:24 -0700708 * @newsize: new file size
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000709 *
710 * inode's new i_size must already be written before truncate_pagecache
711 * is called.
712 *
713 * This function should typically be called before the filesystem
714 * releases resources associated with the freed range (eg. deallocates
715 * blocks). This way, pagecache will always stay logically coherent
716 * with on-disk format, and the filesystem would not have to deal with
717 * situations such as writepage being called for a page that has already
718 * had its underlying blocks deallocated.
719 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700720void truncate_pagecache(struct inode *inode, loff_t newsize)
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000721{
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900722 struct address_space *mapping = inode->i_mapping;
Hugh Dickins8a549be2011-07-25 17:12:24 -0700723 loff_t holebegin = round_up(newsize, PAGE_SIZE);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000724
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900725 /*
726 * unmap_mapping_range is called twice, first simply for
727 * efficiency so that truncate_inode_pages does fewer
728 * single-page unmaps. However after this first call, and
729 * before truncate_inode_pages finishes, it is possible for
730 * private pages to be COWed, which remain after
731 * truncate_inode_pages finishes, hence the second
732 * unmap_mapping_range call must be made for correctness.
733 */
Hugh Dickins8a549be2011-07-25 17:12:24 -0700734 unmap_mapping_range(mapping, holebegin, 0, 1);
735 truncate_inode_pages(mapping, newsize);
736 unmap_mapping_range(mapping, holebegin, 0, 1);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000737}
738EXPORT_SYMBOL(truncate_pagecache);
739
740/**
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200741 * truncate_setsize - update inode and pagecache for a new file size
742 * @inode: inode
743 * @newsize: new file size
744 *
Jan Kara382e27d2011-01-20 14:44:26 -0800745 * truncate_setsize updates i_size and performs pagecache truncation (if
746 * necessary) to @newsize. It will be typically be called from the filesystem's
747 * setattr function when ATTR_SIZE is passed in.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200748 *
Jan Kara77783d02014-11-07 08:29:25 +1100749 * Must be called with a lock serializing truncates and writes (generally
Jan Kara96087032021-04-12 15:50:21 +0200750 * i_rwsem but e.g. xfs uses a different lock) and before all filesystem
Jan Kara77783d02014-11-07 08:29:25 +1100751 * specific block truncation has been performed.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200752 */
753void truncate_setsize(struct inode *inode, loff_t newsize)
754{
Jan Kara90a80202014-10-01 21:49:18 -0400755 loff_t oldsize = inode->i_size;
756
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200757 i_size_write(inode, newsize);
Jan Kara90a80202014-10-01 21:49:18 -0400758 if (newsize > oldsize)
759 pagecache_isize_extended(inode, oldsize, newsize);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700760 truncate_pagecache(inode, newsize);
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200761}
762EXPORT_SYMBOL(truncate_setsize);
763
764/**
Jan Kara90a80202014-10-01 21:49:18 -0400765 * pagecache_isize_extended - update pagecache after extension of i_size
766 * @inode: inode for which i_size was extended
767 * @from: original inode size
768 * @to: new inode size
769 *
770 * Handle extension of inode size either caused by extending truncate or by
771 * write starting after current i_size. We mark the page straddling current
772 * i_size RO so that page_mkwrite() is called on the nearest write access to
773 * the page. This way filesystem can be sure that page_mkwrite() is called on
774 * the page before user writes to the page via mmap after the i_size has been
775 * changed.
776 *
777 * The function must be called after i_size is updated so that page fault
778 * coming after we unlock the page will already see the new i_size.
Jan Kara96087032021-04-12 15:50:21 +0200779 * The function must be called while we still hold i_rwsem - this not only
Jan Kara90a80202014-10-01 21:49:18 -0400780 * makes sure i_size is stable but also that userspace cannot observe new
781 * i_size value before we are prepared to store mmap writes at new inode size.
782 */
783void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to)
784{
Fabian Frederick93407472017-02-27 14:28:32 -0800785 int bsize = i_blocksize(inode);
Jan Kara90a80202014-10-01 21:49:18 -0400786 loff_t rounded_from;
787 struct page *page;
788 pgoff_t index;
789
Jan Kara90a80202014-10-01 21:49:18 -0400790 WARN_ON(to > inode->i_size);
791
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300792 if (from >= to || bsize == PAGE_SIZE)
Jan Kara90a80202014-10-01 21:49:18 -0400793 return;
794 /* Page straddling @from will not have any hole block created? */
795 rounded_from = round_up(from, bsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300796 if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1)))
Jan Kara90a80202014-10-01 21:49:18 -0400797 return;
798
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300799 index = from >> PAGE_SHIFT;
Jan Kara90a80202014-10-01 21:49:18 -0400800 page = find_lock_page(inode->i_mapping, index);
801 /* Page not cached? Nothing to do */
802 if (!page)
803 return;
804 /*
805 * See clear_page_dirty_for_io() for details why set_page_dirty()
806 * is needed.
807 */
808 if (page_mkclean(page))
809 set_page_dirty(page);
810 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300811 put_page(page);
Jan Kara90a80202014-10-01 21:49:18 -0400812}
813EXPORT_SYMBOL(pagecache_isize_extended);
814
815/**
Hugh Dickins623e3db2012-03-28 14:42:40 -0700816 * truncate_pagecache_range - unmap and remove pagecache that is hole-punched
817 * @inode: inode
818 * @lstart: offset of beginning of hole
819 * @lend: offset of last byte of hole
820 *
821 * This function should typically be called before the filesystem
822 * releases resources associated with the freed range (eg. deallocates
823 * blocks). This way, pagecache will always stay logically coherent
824 * with on-disk format, and the filesystem would not have to deal with
825 * situations such as writepage being called for a page that has already
826 * had its underlying blocks deallocated.
827 */
828void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend)
829{
830 struct address_space *mapping = inode->i_mapping;
831 loff_t unmap_start = round_up(lstart, PAGE_SIZE);
832 loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1;
833 /*
834 * This rounding is currently just for example: unmap_mapping_range
835 * expands its hole outwards, whereas we want it to contract the hole
836 * inwards. However, existing callers of truncate_pagecache_range are
Lukas Czerner5a720392013-05-27 23:32:35 -0400837 * doing their own page rounding first. Note that unmap_mapping_range
838 * allows holelen 0 for all, and we allow lend -1 for end of file.
Hugh Dickins623e3db2012-03-28 14:42:40 -0700839 */
840
841 /*
842 * Unlike in truncate_pagecache, unmap_mapping_range is called only
843 * once (before truncating pagecache), and without "even_cows" flag:
844 * hole-punching should not remove private COWed pages from the hole.
845 */
846 if ((u64)unmap_end > (u64)unmap_start)
847 unmap_mapping_range(mapping, unmap_start,
848 1 + unmap_end - unmap_start, 0);
849 truncate_inode_pages_range(mapping, lstart, lend);
850}
851EXPORT_SYMBOL(truncate_pagecache_range);