blob: 455944264663ef30f90df7027f4766b84446cdee [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);
Jan Karaac401cc2016-05-12 18:29:18 +020043 mapping->nrexceptional--;
Mel Gormanf2187592017-11-15 17:37:44 -080044}
45
46static void clear_shadow_entry(struct address_space *mapping, pgoff_t index,
47 void *entry)
48{
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070049 xa_lock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080050 __clear_shadow_entry(mapping, index, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070051 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner0cd61442014-04-03 14:47:46 -070052}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jan Karac6dcf522016-08-10 17:22:44 +020054/*
Mel Gormanf2187592017-11-15 17:37:44 -080055 * Unconditionally remove exceptional entries. Usually called from truncate
56 * path. Note that the pagevec may be altered by this function by removing
57 * exceptional entries similar to what pagevec_remove_exceptionals does.
Jan Karac6dcf522016-08-10 17:22:44 +020058 */
Mel Gormanf2187592017-11-15 17:37:44 -080059static void truncate_exceptional_pvec_entries(struct address_space *mapping,
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080060 struct pagevec *pvec, pgoff_t *indices)
Jan Karac6dcf522016-08-10 17:22:44 +020061{
Mel Gormanf2187592017-11-15 17:37:44 -080062 int i, j;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080063 bool dax;
Mel Gormanf2187592017-11-15 17:37:44 -080064
Jan Karac6dcf522016-08-10 17:22:44 +020065 /* Handled by shmem itself */
66 if (shmem_mapping(mapping))
67 return;
68
Mel Gormanf2187592017-11-15 17:37:44 -080069 for (j = 0; j < pagevec_count(pvec); j++)
Matthew Wilcox3159f942017-11-03 13:30:42 -040070 if (xa_is_value(pvec->pages[j]))
Mel Gormanf2187592017-11-15 17:37:44 -080071 break;
72
73 if (j == pagevec_count(pvec))
Jan Karac6dcf522016-08-10 17:22:44 +020074 return;
Mel Gormanf2187592017-11-15 17:37:44 -080075
76 dax = dax_mapping(mapping);
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080077 if (!dax)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070078 xa_lock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080079
80 for (i = j; i < pagevec_count(pvec); i++) {
81 struct page *page = pvec->pages[i];
82 pgoff_t index = indices[i];
83
Matthew Wilcox3159f942017-11-03 13:30:42 -040084 if (!xa_is_value(page)) {
Mel Gormanf2187592017-11-15 17:37:44 -080085 pvec->pages[j++] = page;
86 continue;
87 }
88
Mel Gormanf2187592017-11-15 17:37:44 -080089 if (unlikely(dax)) {
90 dax_delete_mapping_entry(mapping, index);
91 continue;
92 }
93
94 __clear_shadow_entry(mapping, index, page);
Jan Karac6dcf522016-08-10 17:22:44 +020095 }
Mel Gormanf2187592017-11-15 17:37:44 -080096
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -080097 if (!dax)
Matthew Wilcoxb93b0162018-04-10 16:36:56 -070098 xa_unlock_irq(&mapping->i_pages);
Mel Gormanf2187592017-11-15 17:37:44 -080099 pvec->nr = j;
Jan Karac6dcf522016-08-10 17:22:44 +0200100}
101
102/*
103 * Invalidate exceptional entry if easily possible. This handles exceptional
Ross Zwisler4636e702017-05-12 15:46:47 -0700104 * entries for invalidate_inode_pages().
Jan Karac6dcf522016-08-10 17:22:44 +0200105 */
106static int invalidate_exceptional_entry(struct address_space *mapping,
107 pgoff_t index, void *entry)
108{
Ross Zwisler4636e702017-05-12 15:46:47 -0700109 /* Handled by shmem itself, or for DAX we do nothing. */
110 if (shmem_mapping(mapping) || dax_mapping(mapping))
Jan Karac6dcf522016-08-10 17:22:44 +0200111 return 1;
Jan Karac6dcf522016-08-10 17:22:44 +0200112 clear_shadow_entry(mapping, index, entry);
113 return 1;
114}
115
116/*
117 * Invalidate exceptional entry if clean. This handles exceptional entries for
118 * invalidate_inode_pages2() so for DAX it evicts only clean entries.
119 */
120static int invalidate_exceptional_entry2(struct address_space *mapping,
121 pgoff_t index, void *entry)
122{
123 /* Handled by shmem itself */
124 if (shmem_mapping(mapping))
125 return 1;
126 if (dax_mapping(mapping))
127 return dax_invalidate_mapping_entry_sync(mapping, index);
128 clear_shadow_entry(mapping, index, entry);
129 return 1;
130}
131
David Howellscf9a2ae2006-08-29 19:05:54 +0100132/**
Fengguang Wu28bc44d2008-02-03 18:04:10 +0200133 * do_invalidatepage - invalidate part or all of a page
David Howellscf9a2ae2006-08-29 19:05:54 +0100134 * @page: the page which is affected
Lukas Czernerd47992f2013-05-21 23:17:23 -0400135 * @offset: start of the range to invalidate
136 * @length: length of the range to invalidate
David Howellscf9a2ae2006-08-29 19:05:54 +0100137 *
138 * do_invalidatepage() is called when all or part of the page has become
139 * invalidated by a truncate operation.
140 *
141 * do_invalidatepage() does not have to release all buffers, but it must
142 * ensure that no dirty buffer is left outside @offset and that no I/O
143 * is underway against any of the blocks which are outside the truncation
144 * point. Because the caller is about to free (and possibly reuse) those
145 * blocks on-disk.
146 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400147void do_invalidatepage(struct page *page, unsigned int offset,
148 unsigned int length)
David Howellscf9a2ae2006-08-29 19:05:54 +0100149{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400150 void (*invalidatepage)(struct page *, unsigned int, unsigned int);
151
David Howellscf9a2ae2006-08-29 19:05:54 +0100152 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200153#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +0100154 if (!invalidatepage)
155 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +0200156#endif
David Howellscf9a2ae2006-08-29 19:05:54 +0100157 if (invalidatepage)
Lukas Czernerd47992f2013-05-21 23:17:23 -0400158 (*invalidatepage)(page, offset, length);
David Howellscf9a2ae2006-08-29 19:05:54 +0100159}
160
Linus Torvaldsecdfc972007-01-26 12:47:06 -0800161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * If truncate cannot remove the fs-private metadata from the page, the page
Shaohua Li62e1c552008-02-04 22:29:33 -0800163 * becomes orphaned. It will be left on the LRU and may even be mapped into
Nick Piggin54cb8822007-07-19 01:46:59 -0700164 * user pagetables if we're racing with filemap_fault().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700166 * We need to bail out if page->mapping is no longer equal to the original
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * mapping. This happens a) when the VM reclaimed the page while we waited on
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800168 * its lock, b) when a concurrent invalidate_mapping_pages got there first and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
170 */
Jan Kara9f4e41f2017-11-15 17:37:15 -0800171static void
172truncate_cleanup_page(struct address_space *mapping, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Jan Kara9f4e41f2017-11-15 17:37:15 -0800174 if (page_mapped(page)) {
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700175 unsigned int nr = thp_nr_pages(page);
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800176 unmap_mapping_pages(mapping, page->index, nr, false);
Jan Kara9f4e41f2017-11-15 17:37:15 -0800177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
David Howells266cf652009-04-03 16:42:36 +0100179 if (page_has_private(page))
Matthew Wilcox (Oracle)fc3a5ac2020-10-15 20:05:50 -0700180 do_invalidatepage(page, 0, thp_size(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700182 /*
183 * Some filesystems seem to re-dirty the page even after
184 * the VM has canceled the dirty bit (eg ext3 journaling).
185 * Hence dirty accounting check is placed after invalidation.
186 */
Tejun Heo11f81be2015-05-22 17:13:15 -0400187 cancel_dirty_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ClearPageMappedToDisk(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191/*
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800192 * This is for invalidate_mapping_pages(). That function can be called at
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700194 * be marked dirty at any time too, so use remove_mapping which safely
195 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
197 * Returns non-zero if the page was successfully invalidated.
198 */
199static int
200invalidate_complete_page(struct address_space *mapping, struct page *page)
201{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700202 int ret;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (page->mapping != mapping)
205 return 0;
206
David Howells266cf652009-04-03 16:42:36 +0100207 if (page_has_private(page) && !try_to_release_page(page, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700210 ret = remove_mapping(mapping, page);
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700211
212 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Nick Piggin750b4982009-09-16 11:50:12 +0200215int truncate_inode_page(struct address_space *mapping, struct page *page)
216{
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700217 VM_BUG_ON_PAGE(PageTail(page), page);
218
Jan Kara9f4e41f2017-11-15 17:37:15 -0800219 if (page->mapping != mapping)
220 return -EIO;
221
222 truncate_cleanup_page(mapping, page);
223 delete_from_page_cache(page);
224 return 0;
Nick Piggin750b4982009-09-16 11:50:12 +0200225}
226
Wu Fengguang83f78662009-09-16 11:50:13 +0200227/*
Andi Kleen25718732009-09-16 11:50:13 +0200228 * Used to get rid of pages on hardware memory corruption.
229 */
230int generic_error_remove_page(struct address_space *mapping, struct page *page)
231{
232 if (!mapping)
233 return -EINVAL;
234 /*
235 * Only punch for normal data pages for now.
236 * Handling other types like directories would need more auditing.
237 */
238 if (!S_ISREG(mapping->host->i_mode))
239 return -EIO;
240 return truncate_inode_page(mapping, page);
241}
242EXPORT_SYMBOL(generic_error_remove_page);
243
244/*
Wu Fengguang83f78662009-09-16 11:50:13 +0200245 * Safely invalidate one page from its pagecache mapping.
246 * It only drops clean, unused pages. The page must be locked.
247 *
248 * Returns 1 if the page is successfully invalidated, otherwise 0.
249 */
250int invalidate_inode_page(struct page *page)
251{
252 struct address_space *mapping = page_mapping(page);
253 if (!mapping)
254 return 0;
255 if (PageDirty(page) || PageWriteback(page))
256 return 0;
257 if (page_mapped(page))
258 return 0;
259 return invalidate_complete_page(mapping, page);
260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/**
Liu Bo73c1e202012-02-21 10:57:20 +0800263 * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 * @mapping: mapping to truncate
265 * @lstart: offset from which to truncate
Lukas Czerner5a720392013-05-27 23:32:35 -0400266 * @lend: offset to which to truncate (inclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
Hans Reiserd7339072006-01-06 00:10:36 -0800268 * Truncate the page cache, removing the pages that are between
Lukas Czerner5a720392013-05-27 23:32:35 -0400269 * specified offsets (and zeroing out partial pages
270 * if lstart or lend + 1 is not page aligned).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
272 * Truncate takes two passes - the first pass is nonblocking. It will not
273 * block on page locks and it will not block on writeback. The second pass
274 * will wait. This is to prevent as much IO as possible in the affected region.
275 * The first pass will remove most pages, so the search cost of the second pass
276 * is low.
277 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * We pass down the cache-hot hint to the page freeing code. Even if the
279 * mapping is large, it is probably the case that the final pages are the most
280 * recently touched, and freeing happens in ascending file offset order.
Lukas Czerner5a720392013-05-27 23:32:35 -0400281 *
282 * Note that since ->invalidatepage() accepts range to invalidate
283 * truncate_inode_pages_range is able to handle cases where lend + 1 is not
284 * page aligned properly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
Hans Reiserd7339072006-01-06 00:10:36 -0800286void truncate_inode_pages_range(struct address_space *mapping,
287 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Lukas Czerner5a720392013-05-27 23:32:35 -0400289 pgoff_t start; /* inclusive */
290 pgoff_t end; /* exclusive */
291 unsigned int partial_start; /* inclusive */
292 unsigned int partial_end; /* exclusive */
293 struct pagevec pvec;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700294 pgoff_t indices[PAGEVEC_SIZE];
Lukas Czerner5a720392013-05-27 23:32:35 -0400295 pgoff_t index;
296 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800298 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700299 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Lukas Czerner5a720392013-05-27 23:32:35 -0400301 /* Offsets within partial pages */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300302 partial_start = lstart & (PAGE_SIZE - 1);
303 partial_end = (lend + 1) & (PAGE_SIZE - 1);
Lukas Czerner5a720392013-05-27 23:32:35 -0400304
305 /*
306 * 'start' and 'end' always covers the range of pages to be fully
307 * truncated. Partial pages are covered with 'partial_start' at the
308 * start of the range and 'partial_end' at the end of the range.
309 * Note that 'end' is exclusive while 'lend' is inclusive.
310 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300311 start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT;
Lukas Czerner5a720392013-05-27 23:32:35 -0400312 if (lend == -1)
313 /*
314 * lend == -1 indicates end-of-file so we have to set 'end'
315 * to the highest possible pgoff_t and since the type is
316 * unsigned we're using -1.
317 */
318 end = -1;
319 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300320 end = (lend + 1) >> PAGE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800321
Mel Gorman86679822017-11-15 17:37:52 -0800322 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700323 index = start;
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800324 while (index < end && find_lock_entries(mapping, index, end - 1,
325 &pvec, indices)) {
326 index = indices[pagevec_count(&pvec) - 1] + 1;
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800327 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800328 for (i = 0; i < pagevec_count(&pvec); i++)
329 truncate_cleanup_page(mapping, pvec.pages[i]);
330 delete_from_page_cache_batch(mapping, &pvec);
331 for (i = 0; i < pagevec_count(&pvec); i++)
332 unlock_page(pvec.pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 pagevec_release(&pvec);
334 cond_resched();
335 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800336
Lukas Czerner5a720392013-05-27 23:32:35 -0400337 if (partial_start) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 struct page *page = find_lock_page(mapping, start - 1);
339 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300340 unsigned int top = PAGE_SIZE;
Lukas Czerner5a720392013-05-27 23:32:35 -0400341 if (start > end) {
342 /* Truncation within a single page */
343 top = partial_end;
344 partial_end = 0;
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 wait_on_page_writeback(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400347 zero_user_segment(page, partial_start, top);
348 cleancache_invalidate_page(mapping, page);
349 if (page_has_private(page))
350 do_invalidatepage(page, partial_start,
351 top - partial_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300353 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 }
Lukas Czerner5a720392013-05-27 23:32:35 -0400356 if (partial_end) {
357 struct page *page = find_lock_page(mapping, end);
358 if (page) {
359 wait_on_page_writeback(page);
360 zero_user_segment(page, 0, partial_end);
361 cleancache_invalidate_page(mapping, page);
362 if (page_has_private(page))
363 do_invalidatepage(page, 0,
364 partial_end);
365 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300366 put_page(page);
Lukas Czerner5a720392013-05-27 23:32:35 -0400367 }
368 }
369 /*
370 * If the truncation happened within a single page no pages
371 * will be released, just zeroed, so we can bail out now.
372 */
373 if (start >= end)
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700376 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 for ( ; ; ) {
378 cond_resched();
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800379 if (!find_get_entries(mapping, index, end - 1, &pvec,
Matthew Wilcox (Oracle)38cefeb2021-02-25 17:16:07 -0800380 indices)) {
Hugh Dickins792ceae2014-07-23 14:00:15 -0700381 /* If all gone from start onwards, we're done */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700382 if (index == start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 break;
Hugh Dickins792ceae2014-07-23 14:00:15 -0700384 /* Otherwise restart to make sure all gone */
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700385 index = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 continue;
387 }
Mel Gormanf2187592017-11-15 17:37:44 -0800388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 for (i = 0; i < pagevec_count(&pvec); i++) {
390 struct page *page = pvec.pages[i];
391
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700392 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700393 index = indices[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700394
Matthew Wilcox3159f942017-11-03 13:30:42 -0400395 if (xa_is_value(page))
Johannes Weiner0cd61442014-04-03 14:47:46 -0700396 continue;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800399 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 wait_on_page_writeback(page);
Nick Piggin750b4982009-09-16 11:50:12 +0200401 truncate_inode_page(mapping, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unlock_page(page);
403 }
Matthew Wilcox (Oracle)31d270f2021-02-25 17:16:03 -0800404 truncate_exceptional_pvec_entries(mapping, &pvec, indices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 pagevec_release(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700406 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700408
409out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400410 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
Hans Reiserd7339072006-01-06 00:10:36 -0800412EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Hans Reiserd7339072006-01-06 00:10:36 -0800414/**
415 * truncate_inode_pages - truncate *all* the pages from an offset
416 * @mapping: mapping to truncate
417 * @lstart: offset from which to truncate
418 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800419 * Called under (and serialised by) inode->i_mutex.
Jan Kara08142572011-06-27 16:18:10 -0700420 *
421 * Note: When this function returns, there can be a page in the process of
422 * deletion (inside __delete_from_page_cache()) in the specified range. Thus
423 * mapping->nrpages can be non-zero when this function returns even after
424 * truncation of the whole mapping.
Hans Reiserd7339072006-01-06 00:10:36 -0800425 */
426void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
427{
428 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
429}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430EXPORT_SYMBOL(truncate_inode_pages);
431
Mike Waychison28697352009-06-16 15:32:59 -0700432/**
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700433 * truncate_inode_pages_final - truncate *all* pages before inode dies
434 * @mapping: mapping to truncate
435 *
436 * Called under (and serialized by) inode->i_mutex.
437 *
438 * Filesystems have to use this in the .evict_inode path to inform the
439 * VM that this is the final truncate and the inode is going away.
440 */
441void truncate_inode_pages_final(struct address_space *mapping)
442{
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800443 unsigned long nrexceptional;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700444 unsigned long nrpages;
445
446 /*
447 * Page reclaim can not participate in regular inode lifetime
448 * management (can't call iput()) and thus can race with the
449 * inode teardown. Tell it when the address space is exiting,
450 * so that it does not install eviction information after the
451 * final truncate has begun.
452 */
453 mapping_set_exiting(mapping);
454
455 /*
456 * When reclaim installs eviction entries, it increases
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800457 * nrexceptional first, then decreases nrpages. Make sure we see
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700458 * this in the right order or we might miss an entry.
459 */
460 nrpages = mapping->nrpages;
461 smp_rmb();
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800462 nrexceptional = mapping->nrexceptional;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700463
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800464 if (nrpages || nrexceptional) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700465 /*
466 * As truncation uses a lockless tree lookup, cycle
467 * the tree lock to make sure any ongoing tree
468 * modification that does not see AS_EXITING is
469 * completed before starting the final truncate.
470 */
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700471 xa_lock_irq(&mapping->i_pages);
472 xa_unlock_irq(&mapping->i_pages);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700473 }
Pavel Tikhomirov6ff38bd2018-11-30 14:09:00 -0800474
475 /*
476 * Cleancache needs notification even if there are no pages or shadow
477 * entries.
478 */
479 truncate_inode_pages(mapping, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700480}
481EXPORT_SYMBOL(truncate_inode_pages_final);
482
Jason Yana77eedb2020-11-01 17:07:50 -0800483static unsigned long __invalidate_mapping_pages(struct address_space *mapping,
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700484 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700486 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700488 pgoff_t index = start;
Minchan Kim31560182011-03-22 16:32:52 -0700489 unsigned long ret;
490 unsigned long count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int i;
492
Mel Gorman86679822017-11-15 17:37:52 -0800493 pagevec_init(&pvec);
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800494 while (find_lock_entries(mapping, index, end, &pvec, indices)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 for (i = 0; i < pagevec_count(&pvec); i++) {
496 struct page *page = pvec.pages[i];
497
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700498 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700499 index = indices[i];
NeilBrowne0f236032006-06-23 02:05:48 -0700500
Matthew Wilcox3159f942017-11-03 13:30:42 -0400501 if (xa_is_value(page)) {
Jan Karac6dcf522016-08-10 17:22:44 +0200502 invalidate_exceptional_entry(mapping, index,
503 page);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700504 continue;
505 }
Matthew Wilcox (Oracle)5c211ba2021-02-25 17:15:56 -0800506 index += thp_nr_pages(page) - 1;
Kirill A. Shutemovfc127da2016-07-26 15:26:07 -0700507
Minchan Kim31560182011-03-22 16:32:52 -0700508 ret = invalidate_inode_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 unlock_page(page);
Minchan Kim31560182011-03-22 16:32:52 -0700510 /*
511 * Invalidation is a hint that the page is no longer
512 * of interest and try to speed up its reclaim.
513 */
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700514 if (!ret) {
Minchan Kimcc5993b2015-04-15 16:13:26 -0700515 deactivate_file_page(page);
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700516 /* It is likely on the pagevec of a remote CPU */
517 if (nr_pagevec)
518 (*nr_pagevec)++;
519 }
Minchan Kim31560182011-03-22 16:32:52 -0700520 count += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700522 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 pagevec_release(&pvec);
Mike Waychison28697352009-06-16 15:32:59 -0700524 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700525 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
Minchan Kim31560182011-03-22 16:32:52 -0700527 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700529
530/**
531 * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode
532 * @mapping: the address_space which holds the pages to invalidate
533 * @start: the offset 'from' which to invalidate
534 * @end: the offset 'to' which to invalidate (inclusive)
535 *
536 * This function only removes the unlocked pages, if you want to
537 * remove all the pages of one inode, you must call truncate_inode_pages.
538 *
539 * invalidate_mapping_pages() will not block on IO activity. It will not
540 * invalidate pages which are dirty, locked, under writeback or mapped into
541 * pagetables.
542 *
543 * Return: the number of the pages that were invalidated
544 */
545unsigned long invalidate_mapping_pages(struct address_space *mapping,
546 pgoff_t start, pgoff_t end)
547{
548 return __invalidate_mapping_pages(mapping, start, end, NULL);
549}
Anton Altaparmakov54bc4852007-02-10 01:45:38 -0800550EXPORT_SYMBOL(invalidate_mapping_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700552/**
Alex Shi649c6df2020-12-14 19:04:59 -0800553 * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode
554 * @mapping: the address_space which holds the pages to invalidate
555 * @start: the offset 'from' which to invalidate
556 * @end: the offset 'to' which to invalidate (inclusive)
557 * @nr_pagevec: invalidate failed page number for caller
558 *
Mauro Carvalho Chehaba00cda32020-12-14 19:14:39 -0800559 * This helper is similar to invalidate_mapping_pages(), except that it accounts
560 * for pages that are likely on a pagevec and counts them in @nr_pagevec, which
561 * will be used by the caller.
Yafang Shaoeb1d7a62020-10-13 16:51:47 -0700562 */
563void invalidate_mapping_pagevec(struct address_space *mapping,
564 pgoff_t start, pgoff_t end, unsigned long *nr_pagevec)
565{
566 __invalidate_mapping_pages(mapping, start, end, nr_pagevec);
567}
568
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700569/*
570 * This is like invalidate_complete_page(), except it ignores the page's
571 * refcount. We do this because invalidate_inode_pages2() needs stronger
572 * invalidation guarantees, and cannot afford to leave pages behind because
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700573 * shrink_page_list() has a temp ref on them, or because they're transiently
574 * sitting in the lru_cache_add() pagevecs.
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700575 */
576static int
577invalidate_complete_page2(struct address_space *mapping, struct page *page)
578{
Greg Thelenc4843a72015-05-22 17:13:16 -0400579 unsigned long flags;
580
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700581 if (page->mapping != mapping)
582 return 0;
583
David Howells266cf652009-04-03 16:42:36 +0100584 if (page_has_private(page) && !try_to_release_page(page, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700585 return 0;
586
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700587 xa_lock_irqsave(&mapping->i_pages, flags);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700588 if (PageDirty(page))
589 goto failed;
590
David Howells266cf652009-04-03 16:42:36 +0100591 BUG_ON(page_has_private(page));
Johannes Weiner62cccb82016-03-15 14:57:22 -0700592 __delete_from_page_cache(page, NULL);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700593 xa_unlock_irqrestore(&mapping->i_pages, flags);
Linus Torvalds6072d132010-12-01 13:35:19 -0500594
595 if (mapping->a_ops->freepage)
596 mapping->a_ops->freepage(page);
597
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300598 put_page(page); /* pagecache ref */
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700599 return 1;
600failed:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700601 xa_unlock_irqrestore(&mapping->i_pages, flags);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700602 return 0;
603}
604
Trond Myklebuste3db7692007-01-10 23:15:39 -0800605static int do_launder_page(struct address_space *mapping, struct page *page)
606{
607 if (!PageDirty(page))
608 return 0;
609 if (page->mapping != mapping || mapping->a_ops->launder_page == NULL)
610 return 0;
611 return mapping->a_ops->launder_page(page);
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/**
615 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700616 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * @start: the page offset 'from' which to invalidate
618 * @end: the page offset 'to' which to invalidate (inclusive)
619 *
620 * Any pages which are found to be mapped into pagetables are unmapped prior to
621 * invalidation.
622 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800623 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
625int invalidate_inode_pages2_range(struct address_space *mapping,
626 pgoff_t start, pgoff_t end)
627{
Johannes Weiner0cd61442014-04-03 14:47:46 -0700628 pgoff_t indices[PAGEVEC_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 struct pagevec pvec;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700630 pgoff_t index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int i;
632 int ret = 0;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700633 int ret2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int did_range_unmap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Andrey Ryabinin32691f02017-05-03 14:56:06 -0700636 if (mapping->nrpages == 0 && mapping->nrexceptional == 0)
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700637 goto out;
Andrey Ryabinin32691f02017-05-03 14:56:06 -0700638
Mel Gorman86679822017-11-15 17:37:52 -0800639 pagevec_init(&pvec);
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700640 index = start;
Matthew Wilcox (Oracle)a656a202021-02-25 17:16:14 -0800641 while (find_get_entries(mapping, index, end, &pvec, indices)) {
Trond Myklebust7b965e02007-02-28 20:13:55 -0800642 for (i = 0; i < pagevec_count(&pvec); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct page *page = pvec.pages[i];
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700644
645 /* We rely upon deletion not changing page->index */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700646 index = indices[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Matthew Wilcox3159f942017-11-03 13:30:42 -0400648 if (xa_is_value(page)) {
Jan Karac6dcf522016-08-10 17:22:44 +0200649 if (!invalidate_exceptional_entry2(mapping,
650 index, page))
651 ret = -EBUSY;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700652 continue;
653 }
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 lock_page(page);
Kirill A. Shutemov5cbc1982016-11-30 15:54:19 -0800656 WARN_ON(page_to_index(page) != index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (page->mapping != mapping) {
658 unlock_page(page);
659 continue;
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 wait_on_page_writeback(page);
Nick Piggind00806b2007-07-19 01:46:57 -0700662 if (page_mapped(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (!did_range_unmap) {
664 /*
665 * Zap the rest of the file in one hit.
666 */
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800667 unmap_mapping_pages(mapping, index,
668 (1 + end - index), false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 did_range_unmap = 1;
670 } else {
671 /*
672 * Just zap this page
673 */
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800674 unmap_mapping_pages(mapping, index,
675 1, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677 }
Nick Piggind00806b2007-07-19 01:46:57 -0700678 BUG_ON(page_mapped(page));
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700679 ret2 = do_launder_page(mapping, page);
680 if (ret2 == 0) {
681 if (!invalidate_complete_page2(mapping, page))
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -0700682 ret2 = -EBUSY;
Hisashi Hifumi0dd13342008-04-28 02:12:08 -0700683 }
684 if (ret2 < 0)
685 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 unlock_page(page);
687 }
Johannes Weiner0cd61442014-04-03 14:47:46 -0700688 pagevec_remove_exceptionals(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 pagevec_release(&pvec);
690 cond_resched();
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700691 index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Jan Karacd656372017-05-12 15:46:50 -0700693 /*
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500694 * For DAX we invalidate page tables after invalidating page cache. We
Jan Karacd656372017-05-12 15:46:50 -0700695 * could invalidate page tables while invalidating each entry however
696 * that would be expensive. And doing range unmapping before doesn't
Matthew Wilcox69b6c132017-11-25 22:52:46 -0500697 * work as we have no cheap way to find whether page cache entry didn't
Jan Karacd656372017-05-12 15:46:50 -0700698 * get remapped later.
699 */
700 if (dax_mapping(mapping)) {
Matthew Wilcox977fbdc2018-01-31 16:17:36 -0800701 unmap_mapping_pages(mapping, start, end - start + 1, false);
Jan Karacd656372017-05-12 15:46:50 -0700702 }
Andrey Ryabinin34ccb692017-05-03 14:56:09 -0700703out:
Dan Magenheimer31677602011-09-21 11:56:28 -0400704 cleancache_invalidate_inode(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return ret;
706}
707EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
708
709/**
710 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700711 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 *
713 * Any pages which are found to be mapped into pagetables are unmapped prior to
714 * invalidation.
715 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800716 * Return: -EBUSY if any pages could not be invalidated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
718int invalidate_inode_pages2(struct address_space *mapping)
719{
720 return invalidate_inode_pages2_range(mapping, 0, -1);
721}
722EXPORT_SYMBOL_GPL(invalidate_inode_pages2);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000723
724/**
725 * truncate_pagecache - unmap and remove pagecache that has been truncated
726 * @inode: inode
Hugh Dickins8a549be2011-07-25 17:12:24 -0700727 * @newsize: new file size
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000728 *
729 * inode's new i_size must already be written before truncate_pagecache
730 * is called.
731 *
732 * This function should typically be called before the filesystem
733 * releases resources associated with the freed range (eg. deallocates
734 * blocks). This way, pagecache will always stay logically coherent
735 * with on-disk format, and the filesystem would not have to deal with
736 * situations such as writepage being called for a page that has already
737 * had its underlying blocks deallocated.
738 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700739void truncate_pagecache(struct inode *inode, loff_t newsize)
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000740{
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900741 struct address_space *mapping = inode->i_mapping;
Hugh Dickins8a549be2011-07-25 17:12:24 -0700742 loff_t holebegin = round_up(newsize, PAGE_SIZE);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000743
OGAWA Hirofumicedabed2010-01-13 21:14:09 +0900744 /*
745 * unmap_mapping_range is called twice, first simply for
746 * efficiency so that truncate_inode_pages does fewer
747 * single-page unmaps. However after this first call, and
748 * before truncate_inode_pages finishes, it is possible for
749 * private pages to be COWed, which remain after
750 * truncate_inode_pages finishes, hence the second
751 * unmap_mapping_range call must be made for correctness.
752 */
Hugh Dickins8a549be2011-07-25 17:12:24 -0700753 unmap_mapping_range(mapping, holebegin, 0, 1);
754 truncate_inode_pages(mapping, newsize);
755 unmap_mapping_range(mapping, holebegin, 0, 1);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000756}
757EXPORT_SYMBOL(truncate_pagecache);
758
759/**
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200760 * truncate_setsize - update inode and pagecache for a new file size
761 * @inode: inode
762 * @newsize: new file size
763 *
Jan Kara382e27d2011-01-20 14:44:26 -0800764 * truncate_setsize updates i_size and performs pagecache truncation (if
765 * necessary) to @newsize. It will be typically be called from the filesystem's
766 * setattr function when ATTR_SIZE is passed in.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200767 *
Jan Kara77783d02014-11-07 08:29:25 +1100768 * Must be called with a lock serializing truncates and writes (generally
769 * i_mutex but e.g. xfs uses a different lock) and before all filesystem
770 * specific block truncation has been performed.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200771 */
772void truncate_setsize(struct inode *inode, loff_t newsize)
773{
Jan Kara90a80202014-10-01 21:49:18 -0400774 loff_t oldsize = inode->i_size;
775
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200776 i_size_write(inode, newsize);
Jan Kara90a80202014-10-01 21:49:18 -0400777 if (newsize > oldsize)
778 pagecache_isize_extended(inode, oldsize, newsize);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700779 truncate_pagecache(inode, newsize);
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200780}
781EXPORT_SYMBOL(truncate_setsize);
782
783/**
Jan Kara90a80202014-10-01 21:49:18 -0400784 * pagecache_isize_extended - update pagecache after extension of i_size
785 * @inode: inode for which i_size was extended
786 * @from: original inode size
787 * @to: new inode size
788 *
789 * Handle extension of inode size either caused by extending truncate or by
790 * write starting after current i_size. We mark the page straddling current
791 * i_size RO so that page_mkwrite() is called on the nearest write access to
792 * the page. This way filesystem can be sure that page_mkwrite() is called on
793 * the page before user writes to the page via mmap after the i_size has been
794 * changed.
795 *
796 * The function must be called after i_size is updated so that page fault
797 * coming after we unlock the page will already see the new i_size.
798 * The function must be called while we still hold i_mutex - this not only
799 * makes sure i_size is stable but also that userspace cannot observe new
800 * i_size value before we are prepared to store mmap writes at new inode size.
801 */
802void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to)
803{
Fabian Frederick93407472017-02-27 14:28:32 -0800804 int bsize = i_blocksize(inode);
Jan Kara90a80202014-10-01 21:49:18 -0400805 loff_t rounded_from;
806 struct page *page;
807 pgoff_t index;
808
Jan Kara90a80202014-10-01 21:49:18 -0400809 WARN_ON(to > inode->i_size);
810
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300811 if (from >= to || bsize == PAGE_SIZE)
Jan Kara90a80202014-10-01 21:49:18 -0400812 return;
813 /* Page straddling @from will not have any hole block created? */
814 rounded_from = round_up(from, bsize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300815 if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1)))
Jan Kara90a80202014-10-01 21:49:18 -0400816 return;
817
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300818 index = from >> PAGE_SHIFT;
Jan Kara90a80202014-10-01 21:49:18 -0400819 page = find_lock_page(inode->i_mapping, index);
820 /* Page not cached? Nothing to do */
821 if (!page)
822 return;
823 /*
824 * See clear_page_dirty_for_io() for details why set_page_dirty()
825 * is needed.
826 */
827 if (page_mkclean(page))
828 set_page_dirty(page);
829 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300830 put_page(page);
Jan Kara90a80202014-10-01 21:49:18 -0400831}
832EXPORT_SYMBOL(pagecache_isize_extended);
833
834/**
Hugh Dickins623e3db2012-03-28 14:42:40 -0700835 * truncate_pagecache_range - unmap and remove pagecache that is hole-punched
836 * @inode: inode
837 * @lstart: offset of beginning of hole
838 * @lend: offset of last byte of hole
839 *
840 * This function should typically be called before the filesystem
841 * releases resources associated with the freed range (eg. deallocates
842 * blocks). This way, pagecache will always stay logically coherent
843 * with on-disk format, and the filesystem would not have to deal with
844 * situations such as writepage being called for a page that has already
845 * had its underlying blocks deallocated.
846 */
847void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend)
848{
849 struct address_space *mapping = inode->i_mapping;
850 loff_t unmap_start = round_up(lstart, PAGE_SIZE);
851 loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1;
852 /*
853 * This rounding is currently just for example: unmap_mapping_range
854 * expands its hole outwards, whereas we want it to contract the hole
855 * inwards. However, existing callers of truncate_pagecache_range are
Lukas Czerner5a720392013-05-27 23:32:35 -0400856 * doing their own page rounding first. Note that unmap_mapping_range
857 * allows holelen 0 for all, and we allow lend -1 for end of file.
Hugh Dickins623e3db2012-03-28 14:42:40 -0700858 */
859
860 /*
861 * Unlike in truncate_pagecache, unmap_mapping_range is called only
862 * once (before truncating pagecache), and without "even_cows" flag:
863 * hole-punching should not remove private COWed pages from the hole.
864 */
865 if ((u64)unmap_end > (u64)unmap_start)
866 unmap_mapping_range(mapping, unmap_start,
867 1 + unmap_end - unmap_start, 0);
868 truncate_inode_pages_range(mapping, lstart, lend);
869}
870EXPORT_SYMBOL(truncate_pagecache_range);