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