]>
Commit | Line | Data |
---|---|---|
457c8996 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * linux/mm/filemap.c | |
4 | * | |
5 | * Copyright (C) 1994-1999 Linus Torvalds | |
6 | */ | |
7 | ||
8 | /* | |
9 | * This file handles the generic file mmap semantics used by | |
10 | * most "normal" filesystems (but you don't /have/ to use this: | |
11 | * the NFS filesystem used to do this differently, for example) | |
12 | */ | |
b95f1b31 | 13 | #include <linux/export.h> |
1da177e4 | 14 | #include <linux/compiler.h> |
f9fe48be | 15 | #include <linux/dax.h> |
1da177e4 | 16 | #include <linux/fs.h> |
3f07c014 | 17 | #include <linux/sched/signal.h> |
c22ce143 | 18 | #include <linux/uaccess.h> |
c59ede7b | 19 | #include <linux/capability.h> |
1da177e4 | 20 | #include <linux/kernel_stat.h> |
5a0e3ad6 | 21 | #include <linux/gfp.h> |
1da177e4 LT |
22 | #include <linux/mm.h> |
23 | #include <linux/swap.h> | |
ffa65753 | 24 | #include <linux/swapops.h> |
cf264e13 | 25 | #include <linux/syscalls.h> |
1da177e4 LT |
26 | #include <linux/mman.h> |
27 | #include <linux/pagemap.h> | |
28 | #include <linux/file.h> | |
29 | #include <linux/uio.h> | |
cfcbfb13 | 30 | #include <linux/error-injection.h> |
1da177e4 LT |
31 | #include <linux/hash.h> |
32 | #include <linux/writeback.h> | |
53253383 | 33 | #include <linux/backing-dev.h> |
1da177e4 | 34 | #include <linux/pagevec.h> |
1da177e4 | 35 | #include <linux/security.h> |
44110fe3 | 36 | #include <linux/cpuset.h> |
00501b53 | 37 | #include <linux/hugetlb.h> |
8a9f3ccd | 38 | #include <linux/memcontrol.h> |
c7df8ad2 | 39 | #include <linux/shmem_fs.h> |
f1820361 | 40 | #include <linux/rmap.h> |
b1d29ba8 | 41 | #include <linux/delayacct.h> |
eb414681 | 42 | #include <linux/psi.h> |
d0e6a582 | 43 | #include <linux/ramfs.h> |
b9306a79 | 44 | #include <linux/page_idle.h> |
ffa65753 | 45 | #include <linux/migrate.h> |
07073eb0 DH |
46 | #include <linux/pipe_fs_i.h> |
47 | #include <linux/splice.h> | |
f9ce0be7 | 48 | #include <asm/pgalloc.h> |
de591a82 | 49 | #include <asm/tlbflush.h> |
0f8053a5 NP |
50 | #include "internal.h" |
51 | ||
fe0bfaaf RJ |
52 | #define CREATE_TRACE_POINTS |
53 | #include <trace/events/filemap.h> | |
54 | ||
1da177e4 | 55 | /* |
1da177e4 LT |
56 | * FIXME: remove all knowledge of the buffer layer from the core VM |
57 | */ | |
148f948b | 58 | #include <linux/buffer_head.h> /* for try_to_free_buffers */ |
1da177e4 | 59 | |
1da177e4 LT |
60 | #include <asm/mman.h> |
61 | ||
cf264e13 NP |
62 | #include "swap.h" |
63 | ||
1da177e4 LT |
64 | /* |
65 | * Shared mappings implemented 30.11.1994. It's not fully working yet, | |
66 | * though. | |
67 | * | |
68 | * Shared mappings now work. 15.8.1995 Bruno. | |
69 | * | |
70 | * finished 'unifying' the page and buffer cache and SMP-threaded the | |
71 | * page-cache, 21.05.1999, Ingo Molnar <[email protected]> | |
72 | * | |
73 | * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <[email protected]> | |
74 | */ | |
75 | ||
76 | /* | |
77 | * Lock ordering: | |
78 | * | |
c8c06efa | 79 | * ->i_mmap_rwsem (truncate_pagecache) |
e621900a | 80 | * ->private_lock (__free_pte->block_dirty_folio) |
5d337b91 | 81 | * ->swap_lock (exclusive_swap_page, others) |
b93b0163 | 82 | * ->i_pages lock |
1da177e4 | 83 | * |
9608703e | 84 | * ->i_rwsem |
730633f0 JK |
85 | * ->invalidate_lock (acquired by fs in truncate path) |
86 | * ->i_mmap_rwsem (truncate->unmap_mapping_range) | |
1da177e4 | 87 | * |
c1e8d7c6 | 88 | * ->mmap_lock |
c8c06efa | 89 | * ->i_mmap_rwsem |
b8072f09 | 90 | * ->page_table_lock or pte_lock (various, mainly in memory.c) |
b93b0163 | 91 | * ->i_pages lock (arch-dependent flush_dcache_mmap_lock) |
1da177e4 | 92 | * |
c1e8d7c6 | 93 | * ->mmap_lock |
730633f0 JK |
94 | * ->invalidate_lock (filemap_fault) |
95 | * ->lock_page (filemap_fault, access_process_vm) | |
1da177e4 | 96 | * |
9608703e | 97 | * ->i_rwsem (generic_perform_write) |
bb523b40 | 98 | * ->mmap_lock (fault_in_readable->do_page_fault) |
1da177e4 | 99 | * |
f758eeab | 100 | * bdi->wb.list_lock |
a66979ab | 101 | * sb_lock (fs/fs-writeback.c) |
b93b0163 | 102 | * ->i_pages lock (__sync_single_inode) |
1da177e4 | 103 | * |
c8c06efa | 104 | * ->i_mmap_rwsem |
0503ea8f | 105 | * ->anon_vma.lock (vma_merge) |
1da177e4 LT |
106 | * |
107 | * ->anon_vma.lock | |
b8072f09 | 108 | * ->page_table_lock or pte_lock (anon_vma_prepare and various) |
1da177e4 | 109 | * |
b8072f09 | 110 | * ->page_table_lock or pte_lock |
5d337b91 | 111 | * ->swap_lock (try_to_unmap_one) |
1da177e4 | 112 | * ->private_lock (try_to_unmap_one) |
b93b0163 | 113 | * ->i_pages lock (try_to_unmap_one) |
15b44736 HD |
114 | * ->lruvec->lru_lock (follow_page->mark_page_accessed) |
115 | * ->lruvec->lru_lock (check_pte_range->isolate_lru_page) | |
1da177e4 | 116 | * ->private_lock (page_remove_rmap->set_page_dirty) |
b93b0163 | 117 | * ->i_pages lock (page_remove_rmap->set_page_dirty) |
f758eeab | 118 | * bdi.wb->list_lock (page_remove_rmap->set_page_dirty) |
250df6ed | 119 | * ->inode->i_lock (page_remove_rmap->set_page_dirty) |
6c77b607 | 120 | * ->memcg->move_lock (page_remove_rmap->folio_memcg_lock) |
f758eeab | 121 | * bdi.wb->list_lock (zap_pte_range->set_page_dirty) |
250df6ed | 122 | * ->inode->i_lock (zap_pte_range->set_page_dirty) |
e621900a | 123 | * ->private_lock (zap_pte_range->block_dirty_folio) |
1da177e4 | 124 | * |
c8c06efa | 125 | * ->i_mmap_rwsem |
9a3c531d | 126 | * ->tasklist_lock (memory_failure, collect_procs_ao) |
1da177e4 LT |
127 | */ |
128 | ||
5c024e6a | 129 | static void page_cache_delete(struct address_space *mapping, |
a548b615 | 130 | struct folio *folio, void *shadow) |
91b0abe3 | 131 | { |
a548b615 MWO |
132 | XA_STATE(xas, &mapping->i_pages, folio->index); |
133 | long nr = 1; | |
c70b647d | 134 | |
5c024e6a | 135 | mapping_set_update(&xas, mapping); |
c70b647d | 136 | |
5c024e6a | 137 | /* hugetlb pages are represented by a single entry in the xarray */ |
a548b615 MWO |
138 | if (!folio_test_hugetlb(folio)) { |
139 | xas_set_order(&xas, folio->index, folio_order(folio)); | |
140 | nr = folio_nr_pages(folio); | |
5c024e6a | 141 | } |
91b0abe3 | 142 | |
a548b615 | 143 | VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio); |
449dd698 | 144 | |
5c024e6a MW |
145 | xas_store(&xas, shadow); |
146 | xas_init_marks(&xas); | |
d3798ae8 | 147 | |
a548b615 | 148 | folio->mapping = NULL; |
2300638b | 149 | /* Leave page->index set: truncation lookup relies upon it */ |
d3798ae8 | 150 | mapping->nrpages -= nr; |
91b0abe3 JW |
151 | } |
152 | ||
621db488 MWO |
153 | static void filemap_unaccount_folio(struct address_space *mapping, |
154 | struct folio *folio) | |
1da177e4 | 155 | { |
621db488 | 156 | long nr; |
1da177e4 | 157 | |
621db488 MWO |
158 | VM_BUG_ON_FOLIO(folio_mapped(folio), folio); |
159 | if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(folio_mapped(folio))) { | |
06b241f3 | 160 | pr_alert("BUG: Bad page cache in process %s pfn:%05lx\n", |
621db488 MWO |
161 | current->comm, folio_pfn(folio)); |
162 | dump_page(&folio->page, "still mapped when deleted"); | |
06b241f3 HD |
163 | dump_stack(); |
164 | add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE); | |
165 | ||
85207ad8 HD |
166 | if (mapping_exiting(mapping) && !folio_test_large(folio)) { |
167 | int mapcount = page_mapcount(&folio->page); | |
168 | ||
169 | if (folio_ref_count(folio) >= mapcount + 2) { | |
170 | /* | |
171 | * All vmas have already been torn down, so it's | |
172 | * a good bet that actually the page is unmapped | |
173 | * and we'd rather not leak it: if we're wrong, | |
174 | * another bad page check should catch it later. | |
175 | */ | |
176 | page_mapcount_reset(&folio->page); | |
177 | folio_ref_sub(folio, mapcount); | |
178 | } | |
06b241f3 HD |
179 | } |
180 | } | |
181 | ||
621db488 MWO |
182 | /* hugetlb folios do not participate in page cache accounting. */ |
183 | if (folio_test_hugetlb(folio)) | |
5ecc4d85 | 184 | return; |
09612fa6 | 185 | |
621db488 | 186 | nr = folio_nr_pages(folio); |
5ecc4d85 | 187 | |
621db488 MWO |
188 | __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, -nr); |
189 | if (folio_test_swapbacked(folio)) { | |
190 | __lruvec_stat_mod_folio(folio, NR_SHMEM, -nr); | |
191 | if (folio_test_pmd_mappable(folio)) | |
192 | __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, -nr); | |
193 | } else if (folio_test_pmd_mappable(folio)) { | |
194 | __lruvec_stat_mod_folio(folio, NR_FILE_THPS, -nr); | |
09d91cda | 195 | filemap_nr_thps_dec(mapping); |
800d8c63 | 196 | } |
5ecc4d85 JK |
197 | |
198 | /* | |
621db488 MWO |
199 | * At this point folio must be either written or cleaned by |
200 | * truncate. Dirty folio here signals a bug and loss of | |
566d3362 | 201 | * unwritten data - on ordinary filesystems. |
5ecc4d85 | 202 | * |
566d3362 HD |
203 | * But it's harmless on in-memory filesystems like tmpfs; and can |
204 | * occur when a driver which did get_user_pages() sets page dirty | |
205 | * before putting it, while the inode is being finally evicted. | |
206 | * | |
207 | * Below fixes dirty accounting after removing the folio entirely | |
621db488 MWO |
208 | * but leaves the dirty flag set: it has no effect for truncated |
209 | * folio and anyway will be cleared before returning folio to | |
5ecc4d85 JK |
210 | * buddy allocator. |
211 | */ | |
566d3362 HD |
212 | if (WARN_ON_ONCE(folio_test_dirty(folio) && |
213 | mapping_can_writeback(mapping))) | |
214 | folio_account_cleaned(folio, inode_to_wb(mapping->host)); | |
5ecc4d85 JK |
215 | } |
216 | ||
217 | /* | |
218 | * Delete a page from the page cache and free it. Caller has to make | |
219 | * sure the page is locked and that nobody else uses it - or that usage | |
b93b0163 | 220 | * is safe. The caller must hold the i_pages lock. |
5ecc4d85 | 221 | */ |
452e9e69 | 222 | void __filemap_remove_folio(struct folio *folio, void *shadow) |
5ecc4d85 | 223 | { |
452e9e69 | 224 | struct address_space *mapping = folio->mapping; |
5ecc4d85 | 225 | |
a0580c6f | 226 | trace_mm_filemap_delete_from_page_cache(folio); |
621db488 | 227 | filemap_unaccount_folio(mapping, folio); |
a548b615 | 228 | page_cache_delete(mapping, folio, shadow); |
1da177e4 LT |
229 | } |
230 | ||
78f42660 | 231 | void filemap_free_folio(struct address_space *mapping, struct folio *folio) |
59c66c5f | 232 | { |
d2329aa0 | 233 | void (*free_folio)(struct folio *); |
3abb28e2 | 234 | int refs = 1; |
59c66c5f | 235 | |
d2329aa0 MWO |
236 | free_folio = mapping->a_ops->free_folio; |
237 | if (free_folio) | |
238 | free_folio(folio); | |
59c66c5f | 239 | |
3abb28e2 MWO |
240 | if (folio_test_large(folio) && !folio_test_hugetlb(folio)) |
241 | refs = folio_nr_pages(folio); | |
242 | folio_put_refs(folio, refs); | |
59c66c5f JK |
243 | } |
244 | ||
702cfbf9 | 245 | /** |
452e9e69 MWO |
246 | * filemap_remove_folio - Remove folio from page cache. |
247 | * @folio: The folio. | |
702cfbf9 | 248 | * |
452e9e69 MWO |
249 | * This must be called only on folios that are locked and have been |
250 | * verified to be in the page cache. It will never put the folio into | |
251 | * the free list because the caller has a reference on the page. | |
702cfbf9 | 252 | */ |
452e9e69 | 253 | void filemap_remove_folio(struct folio *folio) |
1da177e4 | 254 | { |
452e9e69 | 255 | struct address_space *mapping = folio->mapping; |
1da177e4 | 256 | |
452e9e69 | 257 | BUG_ON(!folio_test_locked(folio)); |
51b8c1fe | 258 | spin_lock(&mapping->host->i_lock); |
30472509 | 259 | xa_lock_irq(&mapping->i_pages); |
452e9e69 | 260 | __filemap_remove_folio(folio, NULL); |
30472509 | 261 | xa_unlock_irq(&mapping->i_pages); |
51b8c1fe JW |
262 | if (mapping_shrinkable(mapping)) |
263 | inode_add_lru(mapping->host); | |
264 | spin_unlock(&mapping->host->i_lock); | |
6072d13c | 265 | |
452e9e69 | 266 | filemap_free_folio(mapping, folio); |
97cecb5a | 267 | } |
97cecb5a | 268 | |
aa65c29c | 269 | /* |
51dcbdac MWO |
270 | * page_cache_delete_batch - delete several folios from page cache |
271 | * @mapping: the mapping to which folios belong | |
272 | * @fbatch: batch of folios to delete | |
aa65c29c | 273 | * |
51dcbdac MWO |
274 | * The function walks over mapping->i_pages and removes folios passed in |
275 | * @fbatch from the mapping. The function expects @fbatch to be sorted | |
276 | * by page index and is optimised for it to be dense. | |
277 | * It tolerates holes in @fbatch (mapping entries at those indices are not | |
278 | * modified). | |
aa65c29c | 279 | * |
b93b0163 | 280 | * The function expects the i_pages lock to be held. |
aa65c29c | 281 | */ |
ef8e5717 | 282 | static void page_cache_delete_batch(struct address_space *mapping, |
51dcbdac | 283 | struct folio_batch *fbatch) |
aa65c29c | 284 | { |
51dcbdac | 285 | XA_STATE(xas, &mapping->i_pages, fbatch->folios[0]->index); |
6b24ca4a | 286 | long total_pages = 0; |
4101196b | 287 | int i = 0; |
1afd7ae5 | 288 | struct folio *folio; |
aa65c29c | 289 | |
ef8e5717 | 290 | mapping_set_update(&xas, mapping); |
1afd7ae5 | 291 | xas_for_each(&xas, folio, ULONG_MAX) { |
51dcbdac | 292 | if (i >= folio_batch_count(fbatch)) |
aa65c29c | 293 | break; |
4101196b MWO |
294 | |
295 | /* A swap/dax/shadow entry got inserted? Skip it. */ | |
1afd7ae5 | 296 | if (xa_is_value(folio)) |
aa65c29c | 297 | continue; |
4101196b MWO |
298 | /* |
299 | * A page got inserted in our range? Skip it. We have our | |
300 | * pages locked so they are protected from being removed. | |
301 | * If we see a page whose index is higher than ours, it | |
302 | * means our page has been removed, which shouldn't be | |
303 | * possible because we're holding the PageLock. | |
304 | */ | |
51dcbdac | 305 | if (folio != fbatch->folios[i]) { |
1afd7ae5 | 306 | VM_BUG_ON_FOLIO(folio->index > |
51dcbdac | 307 | fbatch->folios[i]->index, folio); |
4101196b MWO |
308 | continue; |
309 | } | |
310 | ||
1afd7ae5 | 311 | WARN_ON_ONCE(!folio_test_locked(folio)); |
4101196b | 312 | |
6b24ca4a | 313 | folio->mapping = NULL; |
51dcbdac | 314 | /* Leave folio->index set: truncation lookup relies on it */ |
4101196b | 315 | |
6b24ca4a | 316 | i++; |
ef8e5717 | 317 | xas_store(&xas, NULL); |
6b24ca4a | 318 | total_pages += folio_nr_pages(folio); |
aa65c29c JK |
319 | } |
320 | mapping->nrpages -= total_pages; | |
321 | } | |
322 | ||
323 | void delete_from_page_cache_batch(struct address_space *mapping, | |
51dcbdac | 324 | struct folio_batch *fbatch) |
aa65c29c JK |
325 | { |
326 | int i; | |
aa65c29c | 327 | |
51dcbdac | 328 | if (!folio_batch_count(fbatch)) |
aa65c29c JK |
329 | return; |
330 | ||
51b8c1fe | 331 | spin_lock(&mapping->host->i_lock); |
30472509 | 332 | xa_lock_irq(&mapping->i_pages); |
51dcbdac MWO |
333 | for (i = 0; i < folio_batch_count(fbatch); i++) { |
334 | struct folio *folio = fbatch->folios[i]; | |
aa65c29c | 335 | |
a0580c6f MWO |
336 | trace_mm_filemap_delete_from_page_cache(folio); |
337 | filemap_unaccount_folio(mapping, folio); | |
aa65c29c | 338 | } |
51dcbdac | 339 | page_cache_delete_batch(mapping, fbatch); |
30472509 | 340 | xa_unlock_irq(&mapping->i_pages); |
51b8c1fe JW |
341 | if (mapping_shrinkable(mapping)) |
342 | inode_add_lru(mapping->host); | |
343 | spin_unlock(&mapping->host->i_lock); | |
aa65c29c | 344 | |
51dcbdac MWO |
345 | for (i = 0; i < folio_batch_count(fbatch); i++) |
346 | filemap_free_folio(mapping, fbatch->folios[i]); | |
aa65c29c JK |
347 | } |
348 | ||
d72d9e2a | 349 | int filemap_check_errors(struct address_space *mapping) |
865ffef3 DM |
350 | { |
351 | int ret = 0; | |
352 | /* Check for outstanding write errors */ | |
7fcbbaf1 JA |
353 | if (test_bit(AS_ENOSPC, &mapping->flags) && |
354 | test_and_clear_bit(AS_ENOSPC, &mapping->flags)) | |
865ffef3 | 355 | ret = -ENOSPC; |
7fcbbaf1 JA |
356 | if (test_bit(AS_EIO, &mapping->flags) && |
357 | test_and_clear_bit(AS_EIO, &mapping->flags)) | |
865ffef3 DM |
358 | ret = -EIO; |
359 | return ret; | |
360 | } | |
d72d9e2a | 361 | EXPORT_SYMBOL(filemap_check_errors); |
865ffef3 | 362 | |
76341cab JL |
363 | static int filemap_check_and_keep_errors(struct address_space *mapping) |
364 | { | |
365 | /* Check for outstanding write errors */ | |
366 | if (test_bit(AS_EIO, &mapping->flags)) | |
367 | return -EIO; | |
368 | if (test_bit(AS_ENOSPC, &mapping->flags)) | |
369 | return -ENOSPC; | |
370 | return 0; | |
371 | } | |
372 | ||
5a798493 JB |
373 | /** |
374 | * filemap_fdatawrite_wbc - start writeback on mapping dirty pages in range | |
375 | * @mapping: address space structure to write | |
376 | * @wbc: the writeback_control controlling the writeout | |
377 | * | |
378 | * Call writepages on the mapping using the provided wbc to control the | |
379 | * writeout. | |
380 | * | |
381 | * Return: %0 on success, negative error code otherwise. | |
382 | */ | |
383 | int filemap_fdatawrite_wbc(struct address_space *mapping, | |
384 | struct writeback_control *wbc) | |
385 | { | |
386 | int ret; | |
387 | ||
388 | if (!mapping_can_writeback(mapping) || | |
389 | !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) | |
390 | return 0; | |
391 | ||
392 | wbc_attach_fdatawrite_inode(wbc, mapping->host); | |
393 | ret = do_writepages(mapping, wbc); | |
394 | wbc_detach_inode(wbc); | |
395 | return ret; | |
396 | } | |
397 | EXPORT_SYMBOL(filemap_fdatawrite_wbc); | |
398 | ||
1da177e4 | 399 | /** |
485bb99b | 400 | * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range |
67be2dd1 MW |
401 | * @mapping: address space structure to write |
402 | * @start: offset in bytes where the range starts | |
469eb4d0 | 403 | * @end: offset in bytes where the range ends (inclusive) |
67be2dd1 | 404 | * @sync_mode: enable synchronous operation |
1da177e4 | 405 | * |
485bb99b RD |
406 | * Start writeback against all of a mapping's dirty pages that lie |
407 | * within the byte offsets <start, end> inclusive. | |
408 | * | |
1da177e4 | 409 | * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as |
485bb99b | 410 | * opposed to a regular memory cleansing writeback. The difference between |
1da177e4 LT |
411 | * these two operations is that if a dirty page/buffer is encountered, it must |
412 | * be waited upon, and not just skipped over. | |
a862f68a MR |
413 | * |
414 | * Return: %0 on success, negative error code otherwise. | |
1da177e4 | 415 | */ |
ebcf28e1 AM |
416 | int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
417 | loff_t end, int sync_mode) | |
1da177e4 | 418 | { |
1da177e4 LT |
419 | struct writeback_control wbc = { |
420 | .sync_mode = sync_mode, | |
05fe478d | 421 | .nr_to_write = LONG_MAX, |
111ebb6e OH |
422 | .range_start = start, |
423 | .range_end = end, | |
1da177e4 LT |
424 | }; |
425 | ||
5a798493 | 426 | return filemap_fdatawrite_wbc(mapping, &wbc); |
1da177e4 LT |
427 | } |
428 | ||
429 | static inline int __filemap_fdatawrite(struct address_space *mapping, | |
430 | int sync_mode) | |
431 | { | |
111ebb6e | 432 | return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode); |
1da177e4 LT |
433 | } |
434 | ||
435 | int filemap_fdatawrite(struct address_space *mapping) | |
436 | { | |
437 | return __filemap_fdatawrite(mapping, WB_SYNC_ALL); | |
438 | } | |
439 | EXPORT_SYMBOL(filemap_fdatawrite); | |
440 | ||
f4c0a0fd | 441 | int filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
ebcf28e1 | 442 | loff_t end) |
1da177e4 LT |
443 | { |
444 | return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL); | |
445 | } | |
f4c0a0fd | 446 | EXPORT_SYMBOL(filemap_fdatawrite_range); |
1da177e4 | 447 | |
485bb99b RD |
448 | /** |
449 | * filemap_flush - mostly a non-blocking flush | |
450 | * @mapping: target address_space | |
451 | * | |
1da177e4 LT |
452 | * This is a mostly non-blocking flush. Not suitable for data-integrity |
453 | * purposes - I/O may not be started against all dirty pages. | |
a862f68a MR |
454 | * |
455 | * Return: %0 on success, negative error code otherwise. | |
1da177e4 LT |
456 | */ |
457 | int filemap_flush(struct address_space *mapping) | |
458 | { | |
459 | return __filemap_fdatawrite(mapping, WB_SYNC_NONE); | |
460 | } | |
461 | EXPORT_SYMBOL(filemap_flush); | |
462 | ||
7fc9e472 GR |
463 | /** |
464 | * filemap_range_has_page - check if a page exists in range. | |
465 | * @mapping: address space within which to check | |
466 | * @start_byte: offset in bytes where the range starts | |
467 | * @end_byte: offset in bytes where the range ends (inclusive) | |
468 | * | |
469 | * Find at least one page in the range supplied, usually used to check if | |
470 | * direct writing in this range will trigger a writeback. | |
a862f68a MR |
471 | * |
472 | * Return: %true if at least one page exists in the specified range, | |
473 | * %false otherwise. | |
7fc9e472 GR |
474 | */ |
475 | bool filemap_range_has_page(struct address_space *mapping, | |
476 | loff_t start_byte, loff_t end_byte) | |
477 | { | |
eff3b364 | 478 | struct folio *folio; |
8fa8e538 MW |
479 | XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT); |
480 | pgoff_t max = end_byte >> PAGE_SHIFT; | |
7fc9e472 GR |
481 | |
482 | if (end_byte < start_byte) | |
483 | return false; | |
484 | ||
8fa8e538 MW |
485 | rcu_read_lock(); |
486 | for (;;) { | |
eff3b364 MWO |
487 | folio = xas_find(&xas, max); |
488 | if (xas_retry(&xas, folio)) | |
8fa8e538 MW |
489 | continue; |
490 | /* Shadow entries don't count */ | |
eff3b364 | 491 | if (xa_is_value(folio)) |
8fa8e538 MW |
492 | continue; |
493 | /* | |
494 | * We don't need to try to pin this page; we're about to | |
495 | * release the RCU lock anyway. It is enough to know that | |
496 | * there was a page here recently. | |
497 | */ | |
498 | break; | |
499 | } | |
500 | rcu_read_unlock(); | |
7fc9e472 | 501 | |
eff3b364 | 502 | return folio != NULL; |
7fc9e472 GR |
503 | } |
504 | EXPORT_SYMBOL(filemap_range_has_page); | |
505 | ||
5e8fcc1a | 506 | static void __filemap_fdatawait_range(struct address_space *mapping, |
aa750fd7 | 507 | loff_t start_byte, loff_t end_byte) |
1da177e4 | 508 | { |
09cbfeaf KS |
509 | pgoff_t index = start_byte >> PAGE_SHIFT; |
510 | pgoff_t end = end_byte >> PAGE_SHIFT; | |
6817ef51 VMO |
511 | struct folio_batch fbatch; |
512 | unsigned nr_folios; | |
513 | ||
514 | folio_batch_init(&fbatch); | |
1da177e4 | 515 | |
312e9d2f | 516 | while (index <= end) { |
1da177e4 LT |
517 | unsigned i; |
518 | ||
6817ef51 VMO |
519 | nr_folios = filemap_get_folios_tag(mapping, &index, end, |
520 | PAGECACHE_TAG_WRITEBACK, &fbatch); | |
521 | ||
522 | if (!nr_folios) | |
312e9d2f JK |
523 | break; |
524 | ||
6817ef51 VMO |
525 | for (i = 0; i < nr_folios; i++) { |
526 | struct folio *folio = fbatch.folios[i]; | |
1da177e4 | 527 | |
6817ef51 VMO |
528 | folio_wait_writeback(folio); |
529 | folio_clear_error(folio); | |
1da177e4 | 530 | } |
6817ef51 | 531 | folio_batch_release(&fbatch); |
1da177e4 LT |
532 | cond_resched(); |
533 | } | |
aa750fd7 JN |
534 | } |
535 | ||
536 | /** | |
537 | * filemap_fdatawait_range - wait for writeback to complete | |
538 | * @mapping: address space structure to wait for | |
539 | * @start_byte: offset in bytes where the range starts | |
540 | * @end_byte: offset in bytes where the range ends (inclusive) | |
541 | * | |
542 | * Walk the list of under-writeback pages of the given address space | |
543 | * in the given range and wait for all of them. Check error status of | |
544 | * the address space and return it. | |
545 | * | |
546 | * Since the error status of the address space is cleared by this function, | |
547 | * callers are responsible for checking the return value and handling and/or | |
548 | * reporting the error. | |
a862f68a MR |
549 | * |
550 | * Return: error status of the address space. | |
aa750fd7 JN |
551 | */ |
552 | int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte, | |
553 | loff_t end_byte) | |
554 | { | |
5e8fcc1a JL |
555 | __filemap_fdatawait_range(mapping, start_byte, end_byte); |
556 | return filemap_check_errors(mapping); | |
1da177e4 | 557 | } |
d3bccb6f JK |
558 | EXPORT_SYMBOL(filemap_fdatawait_range); |
559 | ||
aa0bfcd9 RZ |
560 | /** |
561 | * filemap_fdatawait_range_keep_errors - wait for writeback to complete | |
562 | * @mapping: address space structure to wait for | |
563 | * @start_byte: offset in bytes where the range starts | |
564 | * @end_byte: offset in bytes where the range ends (inclusive) | |
565 | * | |
566 | * Walk the list of under-writeback pages of the given address space in the | |
567 | * given range and wait for all of them. Unlike filemap_fdatawait_range(), | |
568 | * this function does not clear error status of the address space. | |
569 | * | |
570 | * Use this function if callers don't handle errors themselves. Expected | |
571 | * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2), | |
572 | * fsfreeze(8) | |
573 | */ | |
574 | int filemap_fdatawait_range_keep_errors(struct address_space *mapping, | |
575 | loff_t start_byte, loff_t end_byte) | |
576 | { | |
577 | __filemap_fdatawait_range(mapping, start_byte, end_byte); | |
578 | return filemap_check_and_keep_errors(mapping); | |
579 | } | |
580 | EXPORT_SYMBOL(filemap_fdatawait_range_keep_errors); | |
581 | ||
a823e458 JL |
582 | /** |
583 | * file_fdatawait_range - wait for writeback to complete | |
584 | * @file: file pointing to address space structure to wait for | |
585 | * @start_byte: offset in bytes where the range starts | |
586 | * @end_byte: offset in bytes where the range ends (inclusive) | |
587 | * | |
588 | * Walk the list of under-writeback pages of the address space that file | |
589 | * refers to, in the given range and wait for all of them. Check error | |
590 | * status of the address space vs. the file->f_wb_err cursor and return it. | |
591 | * | |
592 | * Since the error status of the file is advanced by this function, | |
593 | * callers are responsible for checking the return value and handling and/or | |
594 | * reporting the error. | |
a862f68a MR |
595 | * |
596 | * Return: error status of the address space vs. the file->f_wb_err cursor. | |
a823e458 JL |
597 | */ |
598 | int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte) | |
599 | { | |
600 | struct address_space *mapping = file->f_mapping; | |
601 | ||
602 | __filemap_fdatawait_range(mapping, start_byte, end_byte); | |
603 | return file_check_and_advance_wb_err(file); | |
604 | } | |
605 | EXPORT_SYMBOL(file_fdatawait_range); | |
d3bccb6f | 606 | |
aa750fd7 JN |
607 | /** |
608 | * filemap_fdatawait_keep_errors - wait for writeback without clearing errors | |
609 | * @mapping: address space structure to wait for | |
610 | * | |
611 | * Walk the list of under-writeback pages of the given address space | |
612 | * and wait for all of them. Unlike filemap_fdatawait(), this function | |
613 | * does not clear error status of the address space. | |
614 | * | |
615 | * Use this function if callers don't handle errors themselves. Expected | |
616 | * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2), | |
617 | * fsfreeze(8) | |
a862f68a MR |
618 | * |
619 | * Return: error status of the address space. | |
aa750fd7 | 620 | */ |
76341cab | 621 | int filemap_fdatawait_keep_errors(struct address_space *mapping) |
aa750fd7 | 622 | { |
ffb959bb | 623 | __filemap_fdatawait_range(mapping, 0, LLONG_MAX); |
76341cab | 624 | return filemap_check_and_keep_errors(mapping); |
aa750fd7 | 625 | } |
76341cab | 626 | EXPORT_SYMBOL(filemap_fdatawait_keep_errors); |
aa750fd7 | 627 | |
875d91b1 | 628 | /* Returns true if writeback might be needed or already in progress. */ |
9326c9b2 | 629 | static bool mapping_needs_writeback(struct address_space *mapping) |
1da177e4 | 630 | { |
875d91b1 | 631 | return mapping->nrpages; |
1da177e4 | 632 | } |
1da177e4 | 633 | |
4bdcd1dd JA |
634 | bool filemap_range_has_writeback(struct address_space *mapping, |
635 | loff_t start_byte, loff_t end_byte) | |
f8ee8909 JA |
636 | { |
637 | XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT); | |
638 | pgoff_t max = end_byte >> PAGE_SHIFT; | |
b05f41a1 | 639 | struct folio *folio; |
f8ee8909 JA |
640 | |
641 | if (end_byte < start_byte) | |
642 | return false; | |
643 | ||
644 | rcu_read_lock(); | |
b05f41a1 VMO |
645 | xas_for_each(&xas, folio, max) { |
646 | if (xas_retry(&xas, folio)) | |
f8ee8909 | 647 | continue; |
b05f41a1 | 648 | if (xa_is_value(folio)) |
f8ee8909 | 649 | continue; |
b05f41a1 VMO |
650 | if (folio_test_dirty(folio) || folio_test_locked(folio) || |
651 | folio_test_writeback(folio)) | |
f8ee8909 JA |
652 | break; |
653 | } | |
654 | rcu_read_unlock(); | |
b05f41a1 | 655 | return folio != NULL; |
63135aa3 | 656 | } |
4bdcd1dd | 657 | EXPORT_SYMBOL_GPL(filemap_range_has_writeback); |
63135aa3 | 658 | |
485bb99b RD |
659 | /** |
660 | * filemap_write_and_wait_range - write out & wait on a file range | |
661 | * @mapping: the address_space for the pages | |
662 | * @lstart: offset in bytes where the range starts | |
663 | * @lend: offset in bytes where the range ends (inclusive) | |
664 | * | |
469eb4d0 AM |
665 | * Write out and wait upon file offsets lstart->lend, inclusive. |
666 | * | |
0e056eb5 | 667 | * Note that @lend is inclusive (describes the last byte to be written) so |
469eb4d0 | 668 | * that this function can be used to write to the very end-of-file (end = -1). |
a862f68a MR |
669 | * |
670 | * Return: error status of the address space. | |
469eb4d0 | 671 | */ |
1da177e4 LT |
672 | int filemap_write_and_wait_range(struct address_space *mapping, |
673 | loff_t lstart, loff_t lend) | |
674 | { | |
ccac11da | 675 | int err = 0, err2; |
1da177e4 | 676 | |
feeb9b26 BF |
677 | if (lend < lstart) |
678 | return 0; | |
679 | ||
9326c9b2 | 680 | if (mapping_needs_writeback(mapping)) { |
28fd1298 OH |
681 | err = __filemap_fdatawrite_range(mapping, lstart, lend, |
682 | WB_SYNC_ALL); | |
ddf8f376 IW |
683 | /* |
684 | * Even if the above returned error, the pages may be | |
685 | * written partially (e.g. -ENOSPC), so we wait for it. | |
686 | * But the -EIO is special case, it may indicate the worst | |
687 | * thing (e.g. bug) happened, so we avoid waiting for it. | |
688 | */ | |
ccac11da ML |
689 | if (err != -EIO) |
690 | __filemap_fdatawait_range(mapping, lstart, lend); | |
1da177e4 | 691 | } |
ccac11da ML |
692 | err2 = filemap_check_errors(mapping); |
693 | if (!err) | |
694 | err = err2; | |
28fd1298 | 695 | return err; |
1da177e4 | 696 | } |
f6995585 | 697 | EXPORT_SYMBOL(filemap_write_and_wait_range); |
1da177e4 | 698 | |
5660e13d JL |
699 | void __filemap_set_wb_err(struct address_space *mapping, int err) |
700 | { | |
3acdfd28 | 701 | errseq_t eseq = errseq_set(&mapping->wb_err, err); |
5660e13d JL |
702 | |
703 | trace_filemap_set_wb_err(mapping, eseq); | |
704 | } | |
705 | EXPORT_SYMBOL(__filemap_set_wb_err); | |
706 | ||
707 | /** | |
708 | * file_check_and_advance_wb_err - report wb error (if any) that was previously | |
709 | * and advance wb_err to current one | |
710 | * @file: struct file on which the error is being reported | |
711 | * | |
712 | * When userland calls fsync (or something like nfsd does the equivalent), we | |
713 | * want to report any writeback errors that occurred since the last fsync (or | |
714 | * since the file was opened if there haven't been any). | |
715 | * | |
716 | * Grab the wb_err from the mapping. If it matches what we have in the file, | |
717 | * then just quickly return 0. The file is all caught up. | |
718 | * | |
719 | * If it doesn't match, then take the mapping value, set the "seen" flag in | |
720 | * it and try to swap it into place. If it works, or another task beat us | |
721 | * to it with the new value, then update the f_wb_err and return the error | |
722 | * portion. The error at this point must be reported via proper channels | |
723 | * (a'la fsync, or NFS COMMIT operation, etc.). | |
724 | * | |
725 | * While we handle mapping->wb_err with atomic operations, the f_wb_err | |
726 | * value is protected by the f_lock since we must ensure that it reflects | |
727 | * the latest value swapped in for this file descriptor. | |
a862f68a MR |
728 | * |
729 | * Return: %0 on success, negative error code otherwise. | |
5660e13d JL |
730 | */ |
731 | int file_check_and_advance_wb_err(struct file *file) | |
732 | { | |
733 | int err = 0; | |
734 | errseq_t old = READ_ONCE(file->f_wb_err); | |
735 | struct address_space *mapping = file->f_mapping; | |
736 | ||
737 | /* Locklessly handle the common case where nothing has changed */ | |
738 | if (errseq_check(&mapping->wb_err, old)) { | |
739 | /* Something changed, must use slow path */ | |
740 | spin_lock(&file->f_lock); | |
741 | old = file->f_wb_err; | |
742 | err = errseq_check_and_advance(&mapping->wb_err, | |
743 | &file->f_wb_err); | |
744 | trace_file_check_and_advance_wb_err(file, old); | |
745 | spin_unlock(&file->f_lock); | |
746 | } | |
f4e222c5 JL |
747 | |
748 | /* | |
749 | * We're mostly using this function as a drop in replacement for | |
750 | * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect | |
751 | * that the legacy code would have had on these flags. | |
752 | */ | |
753 | clear_bit(AS_EIO, &mapping->flags); | |
754 | clear_bit(AS_ENOSPC, &mapping->flags); | |
5660e13d JL |
755 | return err; |
756 | } | |
757 | EXPORT_SYMBOL(file_check_and_advance_wb_err); | |
758 | ||
759 | /** | |
760 | * file_write_and_wait_range - write out & wait on a file range | |
761 | * @file: file pointing to address_space with pages | |
762 | * @lstart: offset in bytes where the range starts | |
763 | * @lend: offset in bytes where the range ends (inclusive) | |
764 | * | |
765 | * Write out and wait upon file offsets lstart->lend, inclusive. | |
766 | * | |
767 | * Note that @lend is inclusive (describes the last byte to be written) so | |
768 | * that this function can be used to write to the very end-of-file (end = -1). | |
769 | * | |
770 | * After writing out and waiting on the data, we check and advance the | |
771 | * f_wb_err cursor to the latest value, and return any errors detected there. | |
a862f68a MR |
772 | * |
773 | * Return: %0 on success, negative error code otherwise. | |
5660e13d JL |
774 | */ |
775 | int file_write_and_wait_range(struct file *file, loff_t lstart, loff_t lend) | |
776 | { | |
777 | int err = 0, err2; | |
778 | struct address_space *mapping = file->f_mapping; | |
779 | ||
feeb9b26 BF |
780 | if (lend < lstart) |
781 | return 0; | |
782 | ||
9326c9b2 | 783 | if (mapping_needs_writeback(mapping)) { |
5660e13d JL |
784 | err = __filemap_fdatawrite_range(mapping, lstart, lend, |
785 | WB_SYNC_ALL); | |
786 | /* See comment of filemap_write_and_wait() */ | |
787 | if (err != -EIO) | |
788 | __filemap_fdatawait_range(mapping, lstart, lend); | |
789 | } | |
790 | err2 = file_check_and_advance_wb_err(file); | |
791 | if (!err) | |
792 | err = err2; | |
793 | return err; | |
794 | } | |
795 | EXPORT_SYMBOL(file_write_and_wait_range); | |
796 | ||
ef6a3c63 | 797 | /** |
3720dd6d VMO |
798 | * replace_page_cache_folio - replace a pagecache folio with a new one |
799 | * @old: folio to be replaced | |
800 | * @new: folio to replace with | |
801 | * | |
802 | * This function replaces a folio in the pagecache with a new one. On | |
803 | * success it acquires the pagecache reference for the new folio and | |
804 | * drops it for the old folio. Both the old and new folios must be | |
805 | * locked. This function does not add the new folio to the LRU, the | |
ef6a3c63 MS |
806 | * caller must do that. |
807 | * | |
74d60958 | 808 | * The remove + add is atomic. This function cannot fail. |
ef6a3c63 | 809 | */ |
3720dd6d | 810 | void replace_page_cache_folio(struct folio *old, struct folio *new) |
ef6a3c63 | 811 | { |
74d60958 | 812 | struct address_space *mapping = old->mapping; |
d2329aa0 | 813 | void (*free_folio)(struct folio *) = mapping->a_ops->free_folio; |
74d60958 MW |
814 | pgoff_t offset = old->index; |
815 | XA_STATE(xas, &mapping->i_pages, offset); | |
ef6a3c63 | 816 | |
3720dd6d VMO |
817 | VM_BUG_ON_FOLIO(!folio_test_locked(old), old); |
818 | VM_BUG_ON_FOLIO(!folio_test_locked(new), new); | |
819 | VM_BUG_ON_FOLIO(new->mapping, new); | |
ef6a3c63 | 820 | |
3720dd6d | 821 | folio_get(new); |
74d60958 MW |
822 | new->mapping = mapping; |
823 | new->index = offset; | |
ef6a3c63 | 824 | |
3720dd6d | 825 | mem_cgroup_migrate(old, new); |
0d1c2072 | 826 | |
30472509 | 827 | xas_lock_irq(&xas); |
74d60958 | 828 | xas_store(&xas, new); |
4165b9b4 | 829 | |
74d60958 MW |
830 | old->mapping = NULL; |
831 | /* hugetlb pages do not participate in page cache accounting. */ | |
3720dd6d VMO |
832 | if (!folio_test_hugetlb(old)) |
833 | __lruvec_stat_sub_folio(old, NR_FILE_PAGES); | |
834 | if (!folio_test_hugetlb(new)) | |
835 | __lruvec_stat_add_folio(new, NR_FILE_PAGES); | |
836 | if (folio_test_swapbacked(old)) | |
837 | __lruvec_stat_sub_folio(old, NR_SHMEM); | |
838 | if (folio_test_swapbacked(new)) | |
839 | __lruvec_stat_add_folio(new, NR_SHMEM); | |
30472509 | 840 | xas_unlock_irq(&xas); |
d2329aa0 | 841 | if (free_folio) |
3720dd6d VMO |
842 | free_folio(old); |
843 | folio_put(old); | |
ef6a3c63 | 844 | } |
3720dd6d | 845 | EXPORT_SYMBOL_GPL(replace_page_cache_folio); |
ef6a3c63 | 846 | |
9dd3d069 MWO |
847 | noinline int __filemap_add_folio(struct address_space *mapping, |
848 | struct folio *folio, pgoff_t index, gfp_t gfp, void **shadowp) | |
1da177e4 | 849 | { |
9dd3d069 MWO |
850 | XA_STATE(xas, &mapping->i_pages, index); |
851 | int huge = folio_test_hugetlb(folio); | |
da74240e | 852 | bool charged = false; |
d68eccad | 853 | long nr = 1; |
e286781d | 854 | |
9dd3d069 MWO |
855 | VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio); |
856 | VM_BUG_ON_FOLIO(folio_test_swapbacked(folio), folio); | |
74d60958 | 857 | mapping_set_update(&xas, mapping); |
e286781d | 858 | |
3fea5a49 | 859 | if (!huge) { |
d68eccad | 860 | int error = mem_cgroup_charge(folio, NULL, gfp); |
9dd3d069 | 861 | VM_BUG_ON_FOLIO(index & (folio_nr_pages(folio) - 1), folio); |
3fea5a49 | 862 | if (error) |
d68eccad | 863 | return error; |
da74240e | 864 | charged = true; |
d68eccad MWO |
865 | xas_set_order(&xas, index, folio_order(folio)); |
866 | nr = folio_nr_pages(folio); | |
3fea5a49 JW |
867 | } |
868 | ||
198b62f8 | 869 | gfp &= GFP_RECLAIM_MASK; |
d68eccad MWO |
870 | folio_ref_add(folio, nr); |
871 | folio->mapping = mapping; | |
872 | folio->index = xas.xa_index; | |
198b62f8 | 873 | |
74d60958 | 874 | do { |
198b62f8 MWO |
875 | unsigned int order = xa_get_order(xas.xa, xas.xa_index); |
876 | void *entry, *old = NULL; | |
877 | ||
9dd3d069 | 878 | if (order > folio_order(folio)) |
198b62f8 MWO |
879 | xas_split_alloc(&xas, xa_load(xas.xa, xas.xa_index), |
880 | order, gfp); | |
74d60958 | 881 | xas_lock_irq(&xas); |
198b62f8 MWO |
882 | xas_for_each_conflict(&xas, entry) { |
883 | old = entry; | |
884 | if (!xa_is_value(entry)) { | |
885 | xas_set_err(&xas, -EEXIST); | |
886 | goto unlock; | |
887 | } | |
888 | } | |
889 | ||
890 | if (old) { | |
891 | if (shadowp) | |
892 | *shadowp = old; | |
893 | /* entry may have been split before we acquired lock */ | |
894 | order = xa_get_order(xas.xa, xas.xa_index); | |
9dd3d069 | 895 | if (order > folio_order(folio)) { |
d68eccad MWO |
896 | /* How to handle large swap entries? */ |
897 | BUG_ON(shmem_mapping(mapping)); | |
198b62f8 MWO |
898 | xas_split(&xas, old, order); |
899 | xas_reset(&xas); | |
900 | } | |
901 | } | |
902 | ||
9dd3d069 | 903 | xas_store(&xas, folio); |
74d60958 MW |
904 | if (xas_error(&xas)) |
905 | goto unlock; | |
906 | ||
d68eccad | 907 | mapping->nrpages += nr; |
74d60958 MW |
908 | |
909 | /* hugetlb pages do not participate in page cache accounting */ | |
d68eccad MWO |
910 | if (!huge) { |
911 | __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, nr); | |
912 | if (folio_test_pmd_mappable(folio)) | |
913 | __lruvec_stat_mod_folio(folio, | |
914 | NR_FILE_THPS, nr); | |
915 | } | |
74d60958 MW |
916 | unlock: |
917 | xas_unlock_irq(&xas); | |
198b62f8 | 918 | } while (xas_nomem(&xas, gfp)); |
74d60958 | 919 | |
d68eccad | 920 | if (xas_error(&xas)) |
74d60958 | 921 | goto error; |
4165b9b4 | 922 | |
a0580c6f | 923 | trace_mm_filemap_add_to_page_cache(folio); |
66a0c8ee | 924 | return 0; |
74d60958 | 925 | error: |
d68eccad MWO |
926 | if (charged) |
927 | mem_cgroup_uncharge(folio); | |
9dd3d069 | 928 | folio->mapping = NULL; |
66a0c8ee | 929 | /* Leave page->index set: truncation relies upon it */ |
d68eccad MWO |
930 | folio_put_refs(folio, nr); |
931 | return xas_error(&xas); | |
1da177e4 | 932 | } |
9dd3d069 | 933 | ALLOW_ERROR_INJECTION(__filemap_add_folio, ERRNO); |
a528910e | 934 | |
9dd3d069 MWO |
935 | int filemap_add_folio(struct address_space *mapping, struct folio *folio, |
936 | pgoff_t index, gfp_t gfp) | |
1da177e4 | 937 | { |
a528910e | 938 | void *shadow = NULL; |
4f98a2fe RR |
939 | int ret; |
940 | ||
9dd3d069 MWO |
941 | __folio_set_locked(folio); |
942 | ret = __filemap_add_folio(mapping, folio, index, gfp, &shadow); | |
a528910e | 943 | if (unlikely(ret)) |
9dd3d069 | 944 | __folio_clear_locked(folio); |
a528910e JW |
945 | else { |
946 | /* | |
9dd3d069 | 947 | * The folio might have been evicted from cache only |
a528910e | 948 | * recently, in which case it should be activated like |
9dd3d069 MWO |
949 | * any other repeatedly accessed folio. |
950 | * The exception is folios getting rewritten; evicting other | |
f0281a00 RR |
951 | * data from the working set, only to cache data that will |
952 | * get overwritten with something else, is a waste of memory. | |
a528910e | 953 | */ |
9dd3d069 MWO |
954 | WARN_ON_ONCE(folio_test_active(folio)); |
955 | if (!(gfp & __GFP_WRITE) && shadow) | |
956 | workingset_refault(folio, shadow); | |
957 | folio_add_lru(folio); | |
a528910e | 958 | } |
1da177e4 LT |
959 | return ret; |
960 | } | |
9dd3d069 | 961 | EXPORT_SYMBOL_GPL(filemap_add_folio); |
1da177e4 | 962 | |
44110fe3 | 963 | #ifdef CONFIG_NUMA |
bb3c579e | 964 | struct folio *filemap_alloc_folio(gfp_t gfp, unsigned int order) |
44110fe3 | 965 | { |
c0ff7453 | 966 | int n; |
bb3c579e | 967 | struct folio *folio; |
c0ff7453 | 968 | |
44110fe3 | 969 | if (cpuset_do_page_mem_spread()) { |
cc9a6c87 MG |
970 | unsigned int cpuset_mems_cookie; |
971 | do { | |
d26914d1 | 972 | cpuset_mems_cookie = read_mems_allowed_begin(); |
cc9a6c87 | 973 | n = cpuset_mem_spread_node(); |
bb3c579e MWO |
974 | folio = __folio_alloc_node(gfp, order, n); |
975 | } while (!folio && read_mems_allowed_retry(cpuset_mems_cookie)); | |
cc9a6c87 | 976 | |
bb3c579e | 977 | return folio; |
44110fe3 | 978 | } |
bb3c579e | 979 | return folio_alloc(gfp, order); |
44110fe3 | 980 | } |
bb3c579e | 981 | EXPORT_SYMBOL(filemap_alloc_folio); |
44110fe3 PJ |
982 | #endif |
983 | ||
7506ae6a JK |
984 | /* |
985 | * filemap_invalidate_lock_two - lock invalidate_lock for two mappings | |
986 | * | |
987 | * Lock exclusively invalidate_lock of any passed mapping that is not NULL. | |
988 | * | |
989 | * @mapping1: the first mapping to lock | |
990 | * @mapping2: the second mapping to lock | |
991 | */ | |
992 | void filemap_invalidate_lock_two(struct address_space *mapping1, | |
993 | struct address_space *mapping2) | |
994 | { | |
995 | if (mapping1 > mapping2) | |
996 | swap(mapping1, mapping2); | |
997 | if (mapping1) | |
998 | down_write(&mapping1->invalidate_lock); | |
999 | if (mapping2 && mapping1 != mapping2) | |
1000 | down_write_nested(&mapping2->invalidate_lock, 1); | |
1001 | } | |
1002 | EXPORT_SYMBOL(filemap_invalidate_lock_two); | |
1003 | ||
1004 | /* | |
1005 | * filemap_invalidate_unlock_two - unlock invalidate_lock for two mappings | |
1006 | * | |
1007 | * Unlock exclusive invalidate_lock of any passed mapping that is not NULL. | |
1008 | * | |
1009 | * @mapping1: the first mapping to unlock | |
1010 | * @mapping2: the second mapping to unlock | |
1011 | */ | |
1012 | void filemap_invalidate_unlock_two(struct address_space *mapping1, | |
1013 | struct address_space *mapping2) | |
1014 | { | |
1015 | if (mapping1) | |
1016 | up_write(&mapping1->invalidate_lock); | |
1017 | if (mapping2 && mapping1 != mapping2) | |
1018 | up_write(&mapping2->invalidate_lock); | |
1019 | } | |
1020 | EXPORT_SYMBOL(filemap_invalidate_unlock_two); | |
1021 | ||
1da177e4 LT |
1022 | /* |
1023 | * In order to wait for pages to become available there must be | |
1024 | * waitqueues associated with pages. By using a hash table of | |
1025 | * waitqueues where the bucket discipline is to maintain all | |
1026 | * waiters on the same queue and wake all when any of the pages | |
1027 | * become available, and for the woken contexts to check to be | |
1028 | * sure the appropriate page became available, this saves space | |
1029 | * at a cost of "thundering herd" phenomena during rare hash | |
1030 | * collisions. | |
1031 | */ | |
62906027 NP |
1032 | #define PAGE_WAIT_TABLE_BITS 8 |
1033 | #define PAGE_WAIT_TABLE_SIZE (1 << PAGE_WAIT_TABLE_BITS) | |
df4d4f12 | 1034 | static wait_queue_head_t folio_wait_table[PAGE_WAIT_TABLE_SIZE] __cacheline_aligned; |
62906027 | 1035 | |
df4d4f12 | 1036 | static wait_queue_head_t *folio_waitqueue(struct folio *folio) |
1da177e4 | 1037 | { |
df4d4f12 | 1038 | return &folio_wait_table[hash_ptr(folio, PAGE_WAIT_TABLE_BITS)]; |
1da177e4 | 1039 | } |
1da177e4 | 1040 | |
62906027 | 1041 | void __init pagecache_init(void) |
1da177e4 | 1042 | { |
62906027 | 1043 | int i; |
1da177e4 | 1044 | |
62906027 | 1045 | for (i = 0; i < PAGE_WAIT_TABLE_SIZE; i++) |
df4d4f12 | 1046 | init_waitqueue_head(&folio_wait_table[i]); |
62906027 NP |
1047 | |
1048 | page_writeback_init(); | |
1da177e4 | 1049 | } |
1da177e4 | 1050 | |
5ef64cc8 LT |
1051 | /* |
1052 | * The page wait code treats the "wait->flags" somewhat unusually, because | |
5868ec26 | 1053 | * we have multiple different kinds of waits, not just the usual "exclusive" |
5ef64cc8 LT |
1054 | * one. |
1055 | * | |
1056 | * We have: | |
1057 | * | |
1058 | * (a) no special bits set: | |
1059 | * | |
1060 | * We're just waiting for the bit to be released, and when a waker | |
1061 | * calls the wakeup function, we set WQ_FLAG_WOKEN and wake it up, | |
1062 | * and remove it from the wait queue. | |
1063 | * | |
1064 | * Simple and straightforward. | |
1065 | * | |
1066 | * (b) WQ_FLAG_EXCLUSIVE: | |
1067 | * | |
1068 | * The waiter is waiting to get the lock, and only one waiter should | |
1069 | * be woken up to avoid any thundering herd behavior. We'll set the | |
1070 | * WQ_FLAG_WOKEN bit, wake it up, and remove it from the wait queue. | |
1071 | * | |
1072 | * This is the traditional exclusive wait. | |
1073 | * | |
5868ec26 | 1074 | * (c) WQ_FLAG_EXCLUSIVE | WQ_FLAG_CUSTOM: |
5ef64cc8 LT |
1075 | * |
1076 | * The waiter is waiting to get the bit, and additionally wants the | |
1077 | * lock to be transferred to it for fair lock behavior. If the lock | |
1078 | * cannot be taken, we stop walking the wait queue without waking | |
1079 | * the waiter. | |
1080 | * | |
1081 | * This is the "fair lock handoff" case, and in addition to setting | |
1082 | * WQ_FLAG_WOKEN, we set WQ_FLAG_DONE to let the waiter easily see | |
1083 | * that it now has the lock. | |
1084 | */ | |
ac6424b9 | 1085 | static int wake_page_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *arg) |
f62e00cc | 1086 | { |
5ef64cc8 | 1087 | unsigned int flags; |
62906027 NP |
1088 | struct wait_page_key *key = arg; |
1089 | struct wait_page_queue *wait_page | |
1090 | = container_of(wait, struct wait_page_queue, wait); | |
1091 | ||
cdc8fcb4 | 1092 | if (!wake_page_match(wait_page, key)) |
62906027 | 1093 | return 0; |
3510ca20 | 1094 | |
9a1ea439 | 1095 | /* |
5ef64cc8 LT |
1096 | * If it's a lock handoff wait, we get the bit for it, and |
1097 | * stop walking (and do not wake it up) if we can't. | |
9a1ea439 | 1098 | */ |
5ef64cc8 LT |
1099 | flags = wait->flags; |
1100 | if (flags & WQ_FLAG_EXCLUSIVE) { | |
df4d4f12 | 1101 | if (test_bit(key->bit_nr, &key->folio->flags)) |
2a9127fc | 1102 | return -1; |
5ef64cc8 | 1103 | if (flags & WQ_FLAG_CUSTOM) { |
df4d4f12 | 1104 | if (test_and_set_bit(key->bit_nr, &key->folio->flags)) |
5ef64cc8 LT |
1105 | return -1; |
1106 | flags |= WQ_FLAG_DONE; | |
1107 | } | |
2a9127fc | 1108 | } |
f62e00cc | 1109 | |
5ef64cc8 LT |
1110 | /* |
1111 | * We are holding the wait-queue lock, but the waiter that | |
1112 | * is waiting for this will be checking the flags without | |
1113 | * any locking. | |
1114 | * | |
1115 | * So update the flags atomically, and wake up the waiter | |
1116 | * afterwards to avoid any races. This store-release pairs | |
101c0bf6 | 1117 | * with the load-acquire in folio_wait_bit_common(). |
5ef64cc8 LT |
1118 | */ |
1119 | smp_store_release(&wait->flags, flags | WQ_FLAG_WOKEN); | |
2a9127fc LT |
1120 | wake_up_state(wait->private, mode); |
1121 | ||
1122 | /* | |
1123 | * Ok, we have successfully done what we're waiting for, | |
1124 | * and we can unconditionally remove the wait entry. | |
1125 | * | |
5ef64cc8 LT |
1126 | * Note that this pairs with the "finish_wait()" in the |
1127 | * waiter, and has to be the absolute last thing we do. | |
1128 | * After this list_del_init(&wait->entry) the wait entry | |
2a9127fc LT |
1129 | * might be de-allocated and the process might even have |
1130 | * exited. | |
2a9127fc | 1131 | */ |
c6fe44d9 | 1132 | list_del_init_careful(&wait->entry); |
5ef64cc8 | 1133 | return (flags & WQ_FLAG_EXCLUSIVE) != 0; |
f62e00cc KM |
1134 | } |
1135 | ||
6974d7c9 | 1136 | static void folio_wake_bit(struct folio *folio, int bit_nr) |
cbbce822 | 1137 | { |
df4d4f12 | 1138 | wait_queue_head_t *q = folio_waitqueue(folio); |
62906027 NP |
1139 | struct wait_page_key key; |
1140 | unsigned long flags; | |
11a19c7b | 1141 | wait_queue_entry_t bookmark; |
cbbce822 | 1142 | |
df4d4f12 | 1143 | key.folio = folio; |
62906027 NP |
1144 | key.bit_nr = bit_nr; |
1145 | key.page_match = 0; | |
1146 | ||
11a19c7b TC |
1147 | bookmark.flags = 0; |
1148 | bookmark.private = NULL; | |
1149 | bookmark.func = NULL; | |
1150 | INIT_LIST_HEAD(&bookmark.entry); | |
1151 | ||
62906027 | 1152 | spin_lock_irqsave(&q->lock, flags); |
11a19c7b TC |
1153 | __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark); |
1154 | ||
1155 | while (bookmark.flags & WQ_FLAG_BOOKMARK) { | |
1156 | /* | |
1157 | * Take a breather from holding the lock, | |
1158 | * allow pages that finish wake up asynchronously | |
1159 | * to acquire the lock and remove themselves | |
1160 | * from wait queue | |
1161 | */ | |
1162 | spin_unlock_irqrestore(&q->lock, flags); | |
1163 | cpu_relax(); | |
1164 | spin_lock_irqsave(&q->lock, flags); | |
1165 | __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark); | |
1166 | } | |
1167 | ||
62906027 | 1168 | /* |
bb43b14b HD |
1169 | * It's possible to miss clearing waiters here, when we woke our page |
1170 | * waiters, but the hashed waitqueue has waiters for other pages on it. | |
1171 | * That's okay, it's a rare case. The next waker will clear it. | |
62906027 | 1172 | * |
bb43b14b HD |
1173 | * Note that, depending on the page pool (buddy, hugetlb, ZONE_DEVICE, |
1174 | * other), the flag may be cleared in the course of freeing the page; | |
1175 | * but that is not required for correctness. | |
62906027 | 1176 | */ |
bb43b14b | 1177 | if (!waitqueue_active(q) || !key.page_match) |
6974d7c9 | 1178 | folio_clear_waiters(folio); |
bb43b14b | 1179 | |
62906027 NP |
1180 | spin_unlock_irqrestore(&q->lock, flags); |
1181 | } | |
74d81bfa | 1182 | |
4268b480 | 1183 | static void folio_wake(struct folio *folio, int bit) |
74d81bfa | 1184 | { |
4268b480 | 1185 | if (!folio_test_waiters(folio)) |
74d81bfa | 1186 | return; |
6974d7c9 | 1187 | folio_wake_bit(folio, bit); |
74d81bfa | 1188 | } |
62906027 | 1189 | |
9a1ea439 | 1190 | /* |
101c0bf6 | 1191 | * A choice of three behaviors for folio_wait_bit_common(): |
9a1ea439 HD |
1192 | */ |
1193 | enum behavior { | |
1194 | EXCLUSIVE, /* Hold ref to page and take the bit when woken, like | |
7c23c782 | 1195 | * __folio_lock() waiting on then setting PG_locked. |
9a1ea439 HD |
1196 | */ |
1197 | SHARED, /* Hold ref to page and check the bit when woken, like | |
9f2b04a2 | 1198 | * folio_wait_writeback() waiting on PG_writeback. |
9a1ea439 HD |
1199 | */ |
1200 | DROP, /* Drop ref to page before wait, no check when woken, | |
9f2b04a2 | 1201 | * like folio_put_wait_locked() on PG_locked. |
9a1ea439 HD |
1202 | */ |
1203 | }; | |
1204 | ||
2a9127fc | 1205 | /* |
101c0bf6 | 1206 | * Attempt to check (or get) the folio flag, and mark us done |
5ef64cc8 | 1207 | * if successful. |
2a9127fc | 1208 | */ |
101c0bf6 | 1209 | static inline bool folio_trylock_flag(struct folio *folio, int bit_nr, |
2a9127fc LT |
1210 | struct wait_queue_entry *wait) |
1211 | { | |
1212 | if (wait->flags & WQ_FLAG_EXCLUSIVE) { | |
101c0bf6 | 1213 | if (test_and_set_bit(bit_nr, &folio->flags)) |
2a9127fc | 1214 | return false; |
101c0bf6 | 1215 | } else if (test_bit(bit_nr, &folio->flags)) |
2a9127fc LT |
1216 | return false; |
1217 | ||
5ef64cc8 | 1218 | wait->flags |= WQ_FLAG_WOKEN | WQ_FLAG_DONE; |
2a9127fc LT |
1219 | return true; |
1220 | } | |
1221 | ||
5ef64cc8 LT |
1222 | /* How many times do we accept lock stealing from under a waiter? */ |
1223 | int sysctl_page_lock_unfairness = 5; | |
1224 | ||
101c0bf6 MWO |
1225 | static inline int folio_wait_bit_common(struct folio *folio, int bit_nr, |
1226 | int state, enum behavior behavior) | |
62906027 | 1227 | { |
df4d4f12 | 1228 | wait_queue_head_t *q = folio_waitqueue(folio); |
5ef64cc8 | 1229 | int unfairness = sysctl_page_lock_unfairness; |
62906027 | 1230 | struct wait_page_queue wait_page; |
ac6424b9 | 1231 | wait_queue_entry_t *wait = &wait_page.wait; |
b1d29ba8 | 1232 | bool thrashing = false; |
eb414681 | 1233 | unsigned long pflags; |
aa1cf99b | 1234 | bool in_thrashing; |
62906027 | 1235 | |
eb414681 | 1236 | if (bit_nr == PG_locked && |
101c0bf6 | 1237 | !folio_test_uptodate(folio) && folio_test_workingset(folio)) { |
aa1cf99b | 1238 | delayacct_thrashing_start(&in_thrashing); |
eb414681 | 1239 | psi_memstall_enter(&pflags); |
b1d29ba8 JW |
1240 | thrashing = true; |
1241 | } | |
1242 | ||
62906027 NP |
1243 | init_wait(wait); |
1244 | wait->func = wake_page_function; | |
df4d4f12 | 1245 | wait_page.folio = folio; |
62906027 NP |
1246 | wait_page.bit_nr = bit_nr; |
1247 | ||
5ef64cc8 LT |
1248 | repeat: |
1249 | wait->flags = 0; | |
1250 | if (behavior == EXCLUSIVE) { | |
1251 | wait->flags = WQ_FLAG_EXCLUSIVE; | |
1252 | if (--unfairness < 0) | |
1253 | wait->flags |= WQ_FLAG_CUSTOM; | |
1254 | } | |
1255 | ||
2a9127fc LT |
1256 | /* |
1257 | * Do one last check whether we can get the | |
1258 | * page bit synchronously. | |
1259 | * | |
101c0bf6 | 1260 | * Do the folio_set_waiters() marking before that |
2a9127fc LT |
1261 | * to let any waker we _just_ missed know they |
1262 | * need to wake us up (otherwise they'll never | |
1263 | * even go to the slow case that looks at the | |
1264 | * page queue), and add ourselves to the wait | |
1265 | * queue if we need to sleep. | |
1266 | * | |
1267 | * This part needs to be done under the queue | |
1268 | * lock to avoid races. | |
1269 | */ | |
1270 | spin_lock_irq(&q->lock); | |
101c0bf6 MWO |
1271 | folio_set_waiters(folio); |
1272 | if (!folio_trylock_flag(folio, bit_nr, wait)) | |
2a9127fc LT |
1273 | __add_wait_queue_entry_tail(q, wait); |
1274 | spin_unlock_irq(&q->lock); | |
62906027 | 1275 | |
2a9127fc LT |
1276 | /* |
1277 | * From now on, all the logic will be based on | |
5ef64cc8 LT |
1278 | * the WQ_FLAG_WOKEN and WQ_FLAG_DONE flag, to |
1279 | * see whether the page bit testing has already | |
1280 | * been done by the wake function. | |
2a9127fc | 1281 | * |
101c0bf6 | 1282 | * We can drop our reference to the folio. |
2a9127fc LT |
1283 | */ |
1284 | if (behavior == DROP) | |
101c0bf6 | 1285 | folio_put(folio); |
62906027 | 1286 | |
5ef64cc8 LT |
1287 | /* |
1288 | * Note that until the "finish_wait()", or until | |
1289 | * we see the WQ_FLAG_WOKEN flag, we need to | |
1290 | * be very careful with the 'wait->flags', because | |
1291 | * we may race with a waker that sets them. | |
1292 | */ | |
2a9127fc | 1293 | for (;;) { |
5ef64cc8 LT |
1294 | unsigned int flags; |
1295 | ||
62906027 NP |
1296 | set_current_state(state); |
1297 | ||
5ef64cc8 LT |
1298 | /* Loop until we've been woken or interrupted */ |
1299 | flags = smp_load_acquire(&wait->flags); | |
1300 | if (!(flags & WQ_FLAG_WOKEN)) { | |
1301 | if (signal_pending_state(state, current)) | |
1302 | break; | |
1303 | ||
1304 | io_schedule(); | |
1305 | continue; | |
1306 | } | |
1307 | ||
1308 | /* If we were non-exclusive, we're done */ | |
1309 | if (behavior != EXCLUSIVE) | |
a8b169af | 1310 | break; |
9a1ea439 | 1311 | |
5ef64cc8 LT |
1312 | /* If the waker got the lock for us, we're done */ |
1313 | if (flags & WQ_FLAG_DONE) | |
9a1ea439 | 1314 | break; |
2a9127fc | 1315 | |
5ef64cc8 LT |
1316 | /* |
1317 | * Otherwise, if we're getting the lock, we need to | |
1318 | * try to get it ourselves. | |
1319 | * | |
1320 | * And if that fails, we'll have to retry this all. | |
1321 | */ | |
101c0bf6 | 1322 | if (unlikely(test_and_set_bit(bit_nr, folio_flags(folio, 0)))) |
5ef64cc8 LT |
1323 | goto repeat; |
1324 | ||
1325 | wait->flags |= WQ_FLAG_DONE; | |
1326 | break; | |
62906027 NP |
1327 | } |
1328 | ||
5ef64cc8 LT |
1329 | /* |
1330 | * If a signal happened, this 'finish_wait()' may remove the last | |
101c0bf6 | 1331 | * waiter from the wait-queues, but the folio waiters bit will remain |
5ef64cc8 LT |
1332 | * set. That's ok. The next wakeup will take care of it, and trying |
1333 | * to do it here would be difficult and prone to races. | |
1334 | */ | |
62906027 NP |
1335 | finish_wait(q, wait); |
1336 | ||
eb414681 | 1337 | if (thrashing) { |
aa1cf99b | 1338 | delayacct_thrashing_end(&in_thrashing); |
eb414681 JW |
1339 | psi_memstall_leave(&pflags); |
1340 | } | |
b1d29ba8 | 1341 | |
62906027 | 1342 | /* |
5ef64cc8 LT |
1343 | * NOTE! The wait->flags weren't stable until we've done the |
1344 | * 'finish_wait()', and we could have exited the loop above due | |
1345 | * to a signal, and had a wakeup event happen after the signal | |
1346 | * test but before the 'finish_wait()'. | |
1347 | * | |
1348 | * So only after the finish_wait() can we reliably determine | |
1349 | * if we got woken up or not, so we can now figure out the final | |
1350 | * return value based on that state without races. | |
1351 | * | |
1352 | * Also note that WQ_FLAG_WOKEN is sufficient for a non-exclusive | |
1353 | * waiter, but an exclusive one requires WQ_FLAG_DONE. | |
62906027 | 1354 | */ |
5ef64cc8 LT |
1355 | if (behavior == EXCLUSIVE) |
1356 | return wait->flags & WQ_FLAG_DONE ? 0 : -EINTR; | |
62906027 | 1357 | |
2a9127fc | 1358 | return wait->flags & WQ_FLAG_WOKEN ? 0 : -EINTR; |
62906027 NP |
1359 | } |
1360 | ||
ffa65753 AP |
1361 | #ifdef CONFIG_MIGRATION |
1362 | /** | |
1363 | * migration_entry_wait_on_locked - Wait for a migration entry to be removed | |
1364 | * @entry: migration swap entry. | |
ffa65753 AP |
1365 | * @ptl: already locked ptl. This function will drop the lock. |
1366 | * | |
1367 | * Wait for a migration entry referencing the given page to be removed. This is | |
1368 | * equivalent to put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE) except | |
1369 | * this can be called without taking a reference on the page. Instead this | |
1370 | * should be called while holding the ptl for the migration entry referencing | |
1371 | * the page. | |
1372 | * | |
0cb8fd4d | 1373 | * Returns after unlocking the ptl. |
ffa65753 AP |
1374 | * |
1375 | * This follows the same logic as folio_wait_bit_common() so see the comments | |
1376 | * there. | |
1377 | */ | |
0cb8fd4d HD |
1378 | void migration_entry_wait_on_locked(swp_entry_t entry, spinlock_t *ptl) |
1379 | __releases(ptl) | |
ffa65753 AP |
1380 | { |
1381 | struct wait_page_queue wait_page; | |
1382 | wait_queue_entry_t *wait = &wait_page.wait; | |
1383 | bool thrashing = false; | |
ffa65753 | 1384 | unsigned long pflags; |
aa1cf99b | 1385 | bool in_thrashing; |
ffa65753 AP |
1386 | wait_queue_head_t *q; |
1387 | struct folio *folio = page_folio(pfn_swap_entry_to_page(entry)); | |
1388 | ||
1389 | q = folio_waitqueue(folio); | |
1390 | if (!folio_test_uptodate(folio) && folio_test_workingset(folio)) { | |
aa1cf99b | 1391 | delayacct_thrashing_start(&in_thrashing); |
ffa65753 AP |
1392 | psi_memstall_enter(&pflags); |
1393 | thrashing = true; | |
1394 | } | |
1395 | ||
1396 | init_wait(wait); | |
1397 | wait->func = wake_page_function; | |
1398 | wait_page.folio = folio; | |
1399 | wait_page.bit_nr = PG_locked; | |
1400 | wait->flags = 0; | |
1401 | ||
1402 | spin_lock_irq(&q->lock); | |
1403 | folio_set_waiters(folio); | |
1404 | if (!folio_trylock_flag(folio, PG_locked, wait)) | |
1405 | __add_wait_queue_entry_tail(q, wait); | |
1406 | spin_unlock_irq(&q->lock); | |
1407 | ||
1408 | /* | |
1409 | * If a migration entry exists for the page the migration path must hold | |
1410 | * a valid reference to the page, and it must take the ptl to remove the | |
1411 | * migration entry. So the page is valid until the ptl is dropped. | |
1412 | */ | |
0cb8fd4d | 1413 | spin_unlock(ptl); |
ffa65753 AP |
1414 | |
1415 | for (;;) { | |
1416 | unsigned int flags; | |
1417 | ||
1418 | set_current_state(TASK_UNINTERRUPTIBLE); | |
1419 | ||
1420 | /* Loop until we've been woken or interrupted */ | |
1421 | flags = smp_load_acquire(&wait->flags); | |
1422 | if (!(flags & WQ_FLAG_WOKEN)) { | |
1423 | if (signal_pending_state(TASK_UNINTERRUPTIBLE, current)) | |
1424 | break; | |
1425 | ||
1426 | io_schedule(); | |
1427 | continue; | |
1428 | } | |
1429 | break; | |
1430 | } | |
1431 | ||
1432 | finish_wait(q, wait); | |
1433 | ||
1434 | if (thrashing) { | |
aa1cf99b | 1435 | delayacct_thrashing_end(&in_thrashing); |
ffa65753 AP |
1436 | psi_memstall_leave(&pflags); |
1437 | } | |
1438 | } | |
1439 | #endif | |
1440 | ||
101c0bf6 | 1441 | void folio_wait_bit(struct folio *folio, int bit_nr) |
62906027 | 1442 | { |
101c0bf6 | 1443 | folio_wait_bit_common(folio, bit_nr, TASK_UNINTERRUPTIBLE, SHARED); |
62906027 | 1444 | } |
101c0bf6 | 1445 | EXPORT_SYMBOL(folio_wait_bit); |
62906027 | 1446 | |
101c0bf6 | 1447 | int folio_wait_bit_killable(struct folio *folio, int bit_nr) |
62906027 | 1448 | { |
101c0bf6 | 1449 | return folio_wait_bit_common(folio, bit_nr, TASK_KILLABLE, SHARED); |
cbbce822 | 1450 | } |
101c0bf6 | 1451 | EXPORT_SYMBOL(folio_wait_bit_killable); |
cbbce822 | 1452 | |
9a1ea439 | 1453 | /** |
9f2b04a2 MWO |
1454 | * folio_put_wait_locked - Drop a reference and wait for it to be unlocked |
1455 | * @folio: The folio to wait for. | |
48054625 | 1456 | * @state: The sleep state (TASK_KILLABLE, TASK_UNINTERRUPTIBLE, etc). |
9a1ea439 | 1457 | * |
9f2b04a2 | 1458 | * The caller should hold a reference on @folio. They expect the page to |
9a1ea439 | 1459 | * become unlocked relatively soon, but do not wish to hold up migration |
9f2b04a2 | 1460 | * (for example) by holding the reference while waiting for the folio to |
9a1ea439 | 1461 | * come unlocked. After this function returns, the caller should not |
9f2b04a2 | 1462 | * dereference @folio. |
48054625 | 1463 | * |
9f2b04a2 | 1464 | * Return: 0 if the folio was unlocked or -EINTR if interrupted by a signal. |
9a1ea439 | 1465 | */ |
c195c321 | 1466 | static int folio_put_wait_locked(struct folio *folio, int state) |
9a1ea439 | 1467 | { |
9f2b04a2 | 1468 | return folio_wait_bit_common(folio, PG_locked, state, DROP); |
9a1ea439 HD |
1469 | } |
1470 | ||
385e1ca5 | 1471 | /** |
df4d4f12 MWO |
1472 | * folio_add_wait_queue - Add an arbitrary waiter to a folio's wait queue |
1473 | * @folio: Folio defining the wait queue of interest | |
697f619f | 1474 | * @waiter: Waiter to add to the queue |
385e1ca5 | 1475 | * |
df4d4f12 | 1476 | * Add an arbitrary @waiter to the wait queue for the nominated @folio. |
385e1ca5 | 1477 | */ |
df4d4f12 | 1478 | void folio_add_wait_queue(struct folio *folio, wait_queue_entry_t *waiter) |
385e1ca5 | 1479 | { |
df4d4f12 | 1480 | wait_queue_head_t *q = folio_waitqueue(folio); |
385e1ca5 DH |
1481 | unsigned long flags; |
1482 | ||
1483 | spin_lock_irqsave(&q->lock, flags); | |
9c3a815f | 1484 | __add_wait_queue_entry_tail(q, waiter); |
df4d4f12 | 1485 | folio_set_waiters(folio); |
385e1ca5 DH |
1486 | spin_unlock_irqrestore(&q->lock, flags); |
1487 | } | |
df4d4f12 | 1488 | EXPORT_SYMBOL_GPL(folio_add_wait_queue); |
385e1ca5 | 1489 | |
b91e1302 LT |
1490 | #ifndef clear_bit_unlock_is_negative_byte |
1491 | ||
1492 | /* | |
1493 | * PG_waiters is the high bit in the same byte as PG_lock. | |
1494 | * | |
1495 | * On x86 (and on many other architectures), we can clear PG_lock and | |
1496 | * test the sign bit at the same time. But if the architecture does | |
1497 | * not support that special operation, we just do this all by hand | |
1498 | * instead. | |
1499 | * | |
1500 | * The read of PG_waiters has to be after (or concurrently with) PG_locked | |
ffceeb62 | 1501 | * being cleared, but a memory barrier should be unnecessary since it is |
b91e1302 LT |
1502 | * in the same byte as PG_locked. |
1503 | */ | |
1504 | static inline bool clear_bit_unlock_is_negative_byte(long nr, volatile void *mem) | |
1505 | { | |
1506 | clear_bit_unlock(nr, mem); | |
1507 | /* smp_mb__after_atomic(); */ | |
98473f9f | 1508 | return test_bit(PG_waiters, mem); |
b91e1302 LT |
1509 | } |
1510 | ||
1511 | #endif | |
1512 | ||
1da177e4 | 1513 | /** |
4e136428 MWO |
1514 | * folio_unlock - Unlock a locked folio. |
1515 | * @folio: The folio. | |
1516 | * | |
1517 | * Unlocks the folio and wakes up any thread sleeping on the page lock. | |
1518 | * | |
1519 | * Context: May be called from interrupt or process context. May not be | |
1520 | * called from NMI context. | |
1da177e4 | 1521 | */ |
4e136428 | 1522 | void folio_unlock(struct folio *folio) |
1da177e4 | 1523 | { |
4e136428 | 1524 | /* Bit 7 allows x86 to check the byte's sign bit */ |
b91e1302 | 1525 | BUILD_BUG_ON(PG_waiters != 7); |
4e136428 MWO |
1526 | BUILD_BUG_ON(PG_locked > 7); |
1527 | VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio); | |
1528 | if (clear_bit_unlock_is_negative_byte(PG_locked, folio_flags(folio, 0))) | |
6974d7c9 | 1529 | folio_wake_bit(folio, PG_locked); |
1da177e4 | 1530 | } |
4e136428 | 1531 | EXPORT_SYMBOL(folio_unlock); |
1da177e4 | 1532 | |
73e10ded | 1533 | /** |
b47393f8 MWO |
1534 | * folio_end_private_2 - Clear PG_private_2 and wake any waiters. |
1535 | * @folio: The folio. | |
73e10ded | 1536 | * |
b47393f8 MWO |
1537 | * Clear the PG_private_2 bit on a folio and wake up any sleepers waiting for |
1538 | * it. The folio reference held for PG_private_2 being set is released. | |
73e10ded | 1539 | * |
b47393f8 MWO |
1540 | * This is, for example, used when a netfs folio is being written to a local |
1541 | * disk cache, thereby allowing writes to the cache for the same folio to be | |
73e10ded DH |
1542 | * serialised. |
1543 | */ | |
b47393f8 | 1544 | void folio_end_private_2(struct folio *folio) |
73e10ded | 1545 | { |
6974d7c9 MWO |
1546 | VM_BUG_ON_FOLIO(!folio_test_private_2(folio), folio); |
1547 | clear_bit_unlock(PG_private_2, folio_flags(folio, 0)); | |
1548 | folio_wake_bit(folio, PG_private_2); | |
1549 | folio_put(folio); | |
73e10ded | 1550 | } |
b47393f8 | 1551 | EXPORT_SYMBOL(folio_end_private_2); |
73e10ded DH |
1552 | |
1553 | /** | |
b47393f8 MWO |
1554 | * folio_wait_private_2 - Wait for PG_private_2 to be cleared on a folio. |
1555 | * @folio: The folio to wait on. | |
73e10ded | 1556 | * |
b47393f8 | 1557 | * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio. |
73e10ded | 1558 | */ |
b47393f8 | 1559 | void folio_wait_private_2(struct folio *folio) |
73e10ded | 1560 | { |
101c0bf6 MWO |
1561 | while (folio_test_private_2(folio)) |
1562 | folio_wait_bit(folio, PG_private_2); | |
73e10ded | 1563 | } |
b47393f8 | 1564 | EXPORT_SYMBOL(folio_wait_private_2); |
73e10ded DH |
1565 | |
1566 | /** | |
b47393f8 MWO |
1567 | * folio_wait_private_2_killable - Wait for PG_private_2 to be cleared on a folio. |
1568 | * @folio: The folio to wait on. | |
73e10ded | 1569 | * |
b47393f8 | 1570 | * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio or until a |
73e10ded DH |
1571 | * fatal signal is received by the calling task. |
1572 | * | |
1573 | * Return: | |
1574 | * - 0 if successful. | |
1575 | * - -EINTR if a fatal signal was encountered. | |
1576 | */ | |
b47393f8 | 1577 | int folio_wait_private_2_killable(struct folio *folio) |
73e10ded DH |
1578 | { |
1579 | int ret = 0; | |
1580 | ||
101c0bf6 MWO |
1581 | while (folio_test_private_2(folio)) { |
1582 | ret = folio_wait_bit_killable(folio, PG_private_2); | |
73e10ded DH |
1583 | if (ret < 0) |
1584 | break; | |
1585 | } | |
1586 | ||
1587 | return ret; | |
1588 | } | |
b47393f8 | 1589 | EXPORT_SYMBOL(folio_wait_private_2_killable); |
73e10ded | 1590 | |
485bb99b | 1591 | /** |
4268b480 MWO |
1592 | * folio_end_writeback - End writeback against a folio. |
1593 | * @folio: The folio. | |
1da177e4 | 1594 | */ |
4268b480 | 1595 | void folio_end_writeback(struct folio *folio) |
1da177e4 | 1596 | { |
888cf2db | 1597 | /* |
4268b480 MWO |
1598 | * folio_test_clear_reclaim() could be used here but it is an |
1599 | * atomic operation and overkill in this particular case. Failing | |
1600 | * to shuffle a folio marked for immediate reclaim is too mild | |
1601 | * a gain to justify taking an atomic operation penalty at the | |
1602 | * end of every folio writeback. | |
888cf2db | 1603 | */ |
4268b480 MWO |
1604 | if (folio_test_reclaim(folio)) { |
1605 | folio_clear_reclaim(folio); | |
575ced1c | 1606 | folio_rotate_reclaimable(folio); |
888cf2db | 1607 | } |
ac6aadb2 | 1608 | |
073861ed | 1609 | /* |
4268b480 | 1610 | * Writeback does not hold a folio reference of its own, relying |
073861ed | 1611 | * on truncation to wait for the clearing of PG_writeback. |
4268b480 MWO |
1612 | * But here we must make sure that the folio is not freed and |
1613 | * reused before the folio_wake(). | |
073861ed | 1614 | */ |
4268b480 | 1615 | folio_get(folio); |
269ccca3 | 1616 | if (!__folio_end_writeback(folio)) |
ac6aadb2 MS |
1617 | BUG(); |
1618 | ||
4e857c58 | 1619 | smp_mb__after_atomic(); |
4268b480 | 1620 | folio_wake(folio, PG_writeback); |
512b7931 | 1621 | acct_reclaim_writeback(folio); |
4268b480 | 1622 | folio_put(folio); |
1da177e4 | 1623 | } |
4268b480 | 1624 | EXPORT_SYMBOL(folio_end_writeback); |
1da177e4 | 1625 | |
485bb99b | 1626 | /** |
7c23c782 MWO |
1627 | * __folio_lock - Get a lock on the folio, assuming we need to sleep to get it. |
1628 | * @folio: The folio to lock | |
1da177e4 | 1629 | */ |
7c23c782 | 1630 | void __folio_lock(struct folio *folio) |
1da177e4 | 1631 | { |
101c0bf6 | 1632 | folio_wait_bit_common(folio, PG_locked, TASK_UNINTERRUPTIBLE, |
9a1ea439 | 1633 | EXCLUSIVE); |
1da177e4 | 1634 | } |
7c23c782 | 1635 | EXPORT_SYMBOL(__folio_lock); |
1da177e4 | 1636 | |
af7f29d9 | 1637 | int __folio_lock_killable(struct folio *folio) |
2687a356 | 1638 | { |
101c0bf6 | 1639 | return folio_wait_bit_common(folio, PG_locked, TASK_KILLABLE, |
9a1ea439 | 1640 | EXCLUSIVE); |
2687a356 | 1641 | } |
af7f29d9 | 1642 | EXPORT_SYMBOL_GPL(__folio_lock_killable); |
2687a356 | 1643 | |
ffdc8dab | 1644 | static int __folio_lock_async(struct folio *folio, struct wait_page_queue *wait) |
dd3e6d50 | 1645 | { |
df4d4f12 | 1646 | struct wait_queue_head *q = folio_waitqueue(folio); |
f32b5dd7 MWO |
1647 | int ret = 0; |
1648 | ||
df4d4f12 | 1649 | wait->folio = folio; |
f32b5dd7 MWO |
1650 | wait->bit_nr = PG_locked; |
1651 | ||
1652 | spin_lock_irq(&q->lock); | |
1653 | __add_wait_queue_entry_tail(q, &wait->wait); | |
ffdc8dab MWO |
1654 | folio_set_waiters(folio); |
1655 | ret = !folio_trylock(folio); | |
f32b5dd7 MWO |
1656 | /* |
1657 | * If we were successful now, we know we're still on the | |
1658 | * waitqueue as we're still under the lock. This means it's | |
1659 | * safe to remove and return success, we know the callback | |
1660 | * isn't going to trigger. | |
1661 | */ | |
1662 | if (!ret) | |
1663 | __remove_wait_queue(q, &wait->wait); | |
1664 | else | |
1665 | ret = -EIOCBQUEUED; | |
1666 | spin_unlock_irq(&q->lock); | |
1667 | return ret; | |
dd3e6d50 JA |
1668 | } |
1669 | ||
9a95f3cf PC |
1670 | /* |
1671 | * Return values: | |
9138e47e MWO |
1672 | * true - folio is locked; mmap_lock is still held. |
1673 | * false - folio is not locked. | |
3e4e28c5 | 1674 | * mmap_lock has been released (mmap_read_unlock(), unless flags had both |
9a95f3cf | 1675 | * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in |
c1e8d7c6 | 1676 | * which case mmap_lock is still held. |
9a95f3cf | 1677 | * |
9138e47e MWO |
1678 | * If neither ALLOW_RETRY nor KILLABLE are set, will always return true |
1679 | * with the folio locked and the mmap_lock unperturbed. | |
9a95f3cf | 1680 | */ |
9138e47e | 1681 | bool __folio_lock_or_retry(struct folio *folio, struct mm_struct *mm, |
d065bd81 ML |
1682 | unsigned int flags) |
1683 | { | |
4064b982 | 1684 | if (fault_flag_allow_retry_first(flags)) { |
37b23e05 | 1685 | /* |
c1e8d7c6 | 1686 | * CAUTION! In this case, mmap_lock is not released |
37b23e05 KM |
1687 | * even though return 0. |
1688 | */ | |
1689 | if (flags & FAULT_FLAG_RETRY_NOWAIT) | |
9138e47e | 1690 | return false; |
37b23e05 | 1691 | |
d8ed45c5 | 1692 | mmap_read_unlock(mm); |
37b23e05 | 1693 | if (flags & FAULT_FLAG_KILLABLE) |
6baa8d60 | 1694 | folio_wait_locked_killable(folio); |
37b23e05 | 1695 | else |
6baa8d60 | 1696 | folio_wait_locked(folio); |
9138e47e | 1697 | return false; |
800bca7c HL |
1698 | } |
1699 | if (flags & FAULT_FLAG_KILLABLE) { | |
9138e47e | 1700 | bool ret; |
37b23e05 | 1701 | |
af7f29d9 | 1702 | ret = __folio_lock_killable(folio); |
800bca7c HL |
1703 | if (ret) { |
1704 | mmap_read_unlock(mm); | |
9138e47e | 1705 | return false; |
800bca7c HL |
1706 | } |
1707 | } else { | |
af7f29d9 | 1708 | __folio_lock(folio); |
d065bd81 | 1709 | } |
800bca7c | 1710 | |
9138e47e | 1711 | return true; |
d065bd81 ML |
1712 | } |
1713 | ||
e7b563bb | 1714 | /** |
0d3f9296 MW |
1715 | * page_cache_next_miss() - Find the next gap in the page cache. |
1716 | * @mapping: Mapping. | |
1717 | * @index: Index. | |
1718 | * @max_scan: Maximum range to search. | |
e7b563bb | 1719 | * |
0d3f9296 MW |
1720 | * Search the range [index, min(index + max_scan - 1, ULONG_MAX)] for the |
1721 | * gap with the lowest index. | |
e7b563bb | 1722 | * |
0d3f9296 MW |
1723 | * This function may be called under the rcu_read_lock. However, this will |
1724 | * not atomically search a snapshot of the cache at a single point in time. | |
1725 | * For example, if a gap is created at index 5, then subsequently a gap is | |
1726 | * created at index 10, page_cache_next_miss covering both indices may | |
1727 | * return 10 if called under the rcu_read_lock. | |
e7b563bb | 1728 | * |
0d3f9296 MW |
1729 | * Return: The index of the gap if found, otherwise an index outside the |
1730 | * range specified (in which case 'return - index >= max_scan' will be true). | |
16f8eb3e | 1731 | * In the rare case of index wrap-around, 0 will be returned. |
e7b563bb | 1732 | */ |
0d3f9296 | 1733 | pgoff_t page_cache_next_miss(struct address_space *mapping, |
e7b563bb JW |
1734 | pgoff_t index, unsigned long max_scan) |
1735 | { | |
0d3f9296 | 1736 | XA_STATE(xas, &mapping->i_pages, index); |
e7b563bb | 1737 | |
0d3f9296 MW |
1738 | while (max_scan--) { |
1739 | void *entry = xas_next(&xas); | |
1740 | if (!entry || xa_is_value(entry)) | |
16f8eb3e MK |
1741 | break; |
1742 | if (xas.xa_index == 0) | |
1743 | break; | |
e7b563bb JW |
1744 | } |
1745 | ||
16f8eb3e | 1746 | return xas.xa_index; |
e7b563bb | 1747 | } |
0d3f9296 | 1748 | EXPORT_SYMBOL(page_cache_next_miss); |
e7b563bb JW |
1749 | |
1750 | /** | |
2346a560 | 1751 | * page_cache_prev_miss() - Find the previous gap in the page cache. |
0d3f9296 MW |
1752 | * @mapping: Mapping. |
1753 | * @index: Index. | |
1754 | * @max_scan: Maximum range to search. | |
e7b563bb | 1755 | * |
0d3f9296 MW |
1756 | * Search the range [max(index - max_scan + 1, 0), index] for the |
1757 | * gap with the highest index. | |
e7b563bb | 1758 | * |
0d3f9296 MW |
1759 | * This function may be called under the rcu_read_lock. However, this will |
1760 | * not atomically search a snapshot of the cache at a single point in time. | |
1761 | * For example, if a gap is created at index 10, then subsequently a gap is | |
1762 | * created at index 5, page_cache_prev_miss() covering both indices may | |
1763 | * return 5 if called under the rcu_read_lock. | |
e7b563bb | 1764 | * |
0d3f9296 MW |
1765 | * Return: The index of the gap if found, otherwise an index outside the |
1766 | * range specified (in which case 'index - return >= max_scan' will be true). | |
16f8eb3e | 1767 | * In the rare case of wrap-around, ULONG_MAX will be returned. |
e7b563bb | 1768 | */ |
0d3f9296 | 1769 | pgoff_t page_cache_prev_miss(struct address_space *mapping, |
e7b563bb JW |
1770 | pgoff_t index, unsigned long max_scan) |
1771 | { | |
0d3f9296 | 1772 | XA_STATE(xas, &mapping->i_pages, index); |
e7b563bb | 1773 | |
0d3f9296 MW |
1774 | while (max_scan--) { |
1775 | void *entry = xas_prev(&xas); | |
1776 | if (!entry || xa_is_value(entry)) | |
16f8eb3e MK |
1777 | break; |
1778 | if (xas.xa_index == ULONG_MAX) | |
1779 | break; | |
e7b563bb JW |
1780 | } |
1781 | ||
16f8eb3e | 1782 | return xas.xa_index; |
e7b563bb | 1783 | } |
0d3f9296 | 1784 | EXPORT_SYMBOL(page_cache_prev_miss); |
e7b563bb | 1785 | |
020853b6 MWO |
1786 | /* |
1787 | * Lockless page cache protocol: | |
1788 | * On the lookup side: | |
1789 | * 1. Load the folio from i_pages | |
1790 | * 2. Increment the refcount if it's not zero | |
1791 | * 3. If the folio is not found by xas_reload(), put the refcount and retry | |
1792 | * | |
1793 | * On the removal side: | |
1794 | * A. Freeze the page (by zeroing the refcount if nobody else has a reference) | |
1795 | * B. Remove the page from i_pages | |
1796 | * C. Return the page to the page allocator | |
1797 | * | |
1798 | * This means that any page may have its reference count temporarily | |
1799 | * increased by a speculative page cache (or fast GUP) lookup as it can | |
1800 | * be allocated by another user before the RCU grace period expires. | |
1801 | * Because the refcount temporarily acquired here may end up being the | |
1802 | * last refcount on the page, any page allocation must be freeable by | |
1803 | * folio_put(). | |
1804 | */ | |
1805 | ||
44835d20 | 1806 | /* |
263e721e | 1807 | * filemap_get_entry - Get a page cache entry. |
485bb99b | 1808 | * @mapping: the address_space to search |
a6de4b48 | 1809 | * @index: The page cache index. |
0cd6144a | 1810 | * |
bca65eea MWO |
1811 | * Looks up the page cache entry at @mapping & @index. If it is a folio, |
1812 | * it is returned with an increased refcount. If it is a shadow entry | |
1813 | * of a previously evicted folio, or a swap entry from shmem/tmpfs, | |
1814 | * it is returned without further action. | |
485bb99b | 1815 | * |
bca65eea | 1816 | * Return: The folio, swap or shadow entry, %NULL if nothing is found. |
1da177e4 | 1817 | */ |
263e721e | 1818 | void *filemap_get_entry(struct address_space *mapping, pgoff_t index) |
1da177e4 | 1819 | { |
a6de4b48 | 1820 | XA_STATE(xas, &mapping->i_pages, index); |
bca65eea | 1821 | struct folio *folio; |
1da177e4 | 1822 | |
a60637c8 NP |
1823 | rcu_read_lock(); |
1824 | repeat: | |
4c7472c0 | 1825 | xas_reset(&xas); |
bca65eea MWO |
1826 | folio = xas_load(&xas); |
1827 | if (xas_retry(&xas, folio)) | |
4c7472c0 MW |
1828 | goto repeat; |
1829 | /* | |
1830 | * A shadow entry of a recently evicted page, or a swap entry from | |
1831 | * shmem/tmpfs. Return it without attempting to raise page count. | |
1832 | */ | |
bca65eea | 1833 | if (!folio || xa_is_value(folio)) |
4c7472c0 | 1834 | goto out; |
83929372 | 1835 | |
bca65eea | 1836 | if (!folio_try_get_rcu(folio)) |
4c7472c0 | 1837 | goto repeat; |
83929372 | 1838 | |
bca65eea MWO |
1839 | if (unlikely(folio != xas_reload(&xas))) { |
1840 | folio_put(folio); | |
4c7472c0 | 1841 | goto repeat; |
a60637c8 | 1842 | } |
27d20fdd | 1843 | out: |
a60637c8 NP |
1844 | rcu_read_unlock(); |
1845 | ||
bca65eea | 1846 | return folio; |
1da177e4 | 1847 | } |
1da177e4 | 1848 | |
0cd6144a | 1849 | /** |
3f0c6a07 | 1850 | * __filemap_get_folio - Find and get a reference to a folio. |
2294b32e MWO |
1851 | * @mapping: The address_space to search. |
1852 | * @index: The page index. | |
3f0c6a07 MWO |
1853 | * @fgp_flags: %FGP flags modify how the folio is returned. |
1854 | * @gfp: Memory allocation flags to use if %FGP_CREAT is specified. | |
1da177e4 | 1855 | * |
2294b32e | 1856 | * Looks up the page cache entry at @mapping & @index. |
0cd6144a | 1857 | * |
2294b32e | 1858 | * @fgp_flags can be zero or more of these flags: |
0e056eb5 | 1859 | * |
3f0c6a07 MWO |
1860 | * * %FGP_ACCESSED - The folio will be marked accessed. |
1861 | * * %FGP_LOCK - The folio is returned locked. | |
2294b32e | 1862 | * * %FGP_CREAT - If no page is present then a new page is allocated using |
3f0c6a07 | 1863 | * @gfp and added to the page cache and the VM's LRU list. |
2294b32e MWO |
1864 | * The page is returned locked and with an increased refcount. |
1865 | * * %FGP_FOR_MMAP - The caller wants to do its own locking dance if the | |
1866 | * page is already in cache. If the page was allocated, unlock it before | |
1867 | * returning so the caller can do the same dance. | |
3f0c6a07 MWO |
1868 | * * %FGP_WRITE - The page will be written to by the caller. |
1869 | * * %FGP_NOFS - __GFP_FS will get cleared in gfp. | |
1870 | * * %FGP_NOWAIT - Don't get blocked by page lock. | |
b27652d9 | 1871 | * * %FGP_STABLE - Wait for the folio to be stable (finished writeback) |
1da177e4 | 1872 | * |
2294b32e MWO |
1873 | * If %FGP_LOCK or %FGP_CREAT are specified then the function may sleep even |
1874 | * if the %GFP flags specified for %FGP_CREAT are atomic. | |
1da177e4 | 1875 | * |
2457aec6 | 1876 | * If there is a page cache page, it is returned with an increased refcount. |
a862f68a | 1877 | * |
66dabbb6 | 1878 | * Return: The found folio or an ERR_PTR() otherwise. |
1da177e4 | 1879 | */ |
3f0c6a07 MWO |
1880 | struct folio *__filemap_get_folio(struct address_space *mapping, pgoff_t index, |
1881 | int fgp_flags, gfp_t gfp) | |
1da177e4 | 1882 | { |
3f0c6a07 | 1883 | struct folio *folio; |
2457aec6 | 1884 | |
1da177e4 | 1885 | repeat: |
263e721e | 1886 | folio = filemap_get_entry(mapping, index); |
48c9d113 | 1887 | if (xa_is_value(folio)) |
3f0c6a07 | 1888 | folio = NULL; |
3f0c6a07 | 1889 | if (!folio) |
2457aec6 MG |
1890 | goto no_page; |
1891 | ||
1892 | if (fgp_flags & FGP_LOCK) { | |
1893 | if (fgp_flags & FGP_NOWAIT) { | |
3f0c6a07 MWO |
1894 | if (!folio_trylock(folio)) { |
1895 | folio_put(folio); | |
66dabbb6 | 1896 | return ERR_PTR(-EAGAIN); |
2457aec6 MG |
1897 | } |
1898 | } else { | |
3f0c6a07 | 1899 | folio_lock(folio); |
2457aec6 MG |
1900 | } |
1901 | ||
1902 | /* Has the page been truncated? */ | |
3f0c6a07 MWO |
1903 | if (unlikely(folio->mapping != mapping)) { |
1904 | folio_unlock(folio); | |
1905 | folio_put(folio); | |
2457aec6 MG |
1906 | goto repeat; |
1907 | } | |
3f0c6a07 | 1908 | VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio); |
2457aec6 MG |
1909 | } |
1910 | ||
c16eb000 | 1911 | if (fgp_flags & FGP_ACCESSED) |
3f0c6a07 | 1912 | folio_mark_accessed(folio); |
b9306a79 YS |
1913 | else if (fgp_flags & FGP_WRITE) { |
1914 | /* Clear idle flag for buffer write */ | |
3f0c6a07 MWO |
1915 | if (folio_test_idle(folio)) |
1916 | folio_clear_idle(folio); | |
b9306a79 | 1917 | } |
2457aec6 | 1918 | |
b27652d9 MWO |
1919 | if (fgp_flags & FGP_STABLE) |
1920 | folio_wait_stable(folio); | |
2457aec6 | 1921 | no_page: |
3f0c6a07 | 1922 | if (!folio && (fgp_flags & FGP_CREAT)) { |
2457aec6 | 1923 | int err; |
f56753ac | 1924 | if ((fgp_flags & FGP_WRITE) && mapping_can_writeback(mapping)) |
3f0c6a07 | 1925 | gfp |= __GFP_WRITE; |
45f87de5 | 1926 | if (fgp_flags & FGP_NOFS) |
3f0c6a07 | 1927 | gfp &= ~__GFP_FS; |
0dd316ba JA |
1928 | if (fgp_flags & FGP_NOWAIT) { |
1929 | gfp &= ~GFP_KERNEL; | |
1930 | gfp |= GFP_NOWAIT | __GFP_NOWARN; | |
1931 | } | |
2457aec6 | 1932 | |
3f0c6a07 MWO |
1933 | folio = filemap_alloc_folio(gfp, 0); |
1934 | if (!folio) | |
66dabbb6 | 1935 | return ERR_PTR(-ENOMEM); |
2457aec6 | 1936 | |
a75d4c33 | 1937 | if (WARN_ON_ONCE(!(fgp_flags & (FGP_LOCK | FGP_FOR_MMAP)))) |
2457aec6 MG |
1938 | fgp_flags |= FGP_LOCK; |
1939 | ||
eb39d618 | 1940 | /* Init accessed so avoid atomic mark_page_accessed later */ |
2457aec6 | 1941 | if (fgp_flags & FGP_ACCESSED) |
3f0c6a07 | 1942 | __folio_set_referenced(folio); |
2457aec6 | 1943 | |
3f0c6a07 | 1944 | err = filemap_add_folio(mapping, folio, index, gfp); |
eb2be189 | 1945 | if (unlikely(err)) { |
3f0c6a07 MWO |
1946 | folio_put(folio); |
1947 | folio = NULL; | |
eb2be189 NP |
1948 | if (err == -EEXIST) |
1949 | goto repeat; | |
1da177e4 | 1950 | } |
a75d4c33 JB |
1951 | |
1952 | /* | |
3f0c6a07 MWO |
1953 | * filemap_add_folio locks the page, and for mmap |
1954 | * we expect an unlocked page. | |
a75d4c33 | 1955 | */ |
3f0c6a07 MWO |
1956 | if (folio && (fgp_flags & FGP_FOR_MMAP)) |
1957 | folio_unlock(folio); | |
1da177e4 | 1958 | } |
2457aec6 | 1959 | |
66dabbb6 CH |
1960 | if (!folio) |
1961 | return ERR_PTR(-ENOENT); | |
3f0c6a07 | 1962 | return folio; |
1da177e4 | 1963 | } |
3f0c6a07 | 1964 | EXPORT_SYMBOL(__filemap_get_folio); |
1da177e4 | 1965 | |
f5e6429a | 1966 | static inline struct folio *find_get_entry(struct xa_state *xas, pgoff_t max, |
c7bad633 MWO |
1967 | xa_mark_t mark) |
1968 | { | |
f5e6429a | 1969 | struct folio *folio; |
c7bad633 MWO |
1970 | |
1971 | retry: | |
1972 | if (mark == XA_PRESENT) | |
f5e6429a | 1973 | folio = xas_find(xas, max); |
c7bad633 | 1974 | else |
f5e6429a | 1975 | folio = xas_find_marked(xas, max, mark); |
c7bad633 | 1976 | |
f5e6429a | 1977 | if (xas_retry(xas, folio)) |
c7bad633 MWO |
1978 | goto retry; |
1979 | /* | |
1980 | * A shadow entry of a recently evicted page, a swap | |
1981 | * entry from shmem/tmpfs or a DAX entry. Return it | |
1982 | * without attempting to raise page count. | |
1983 | */ | |
f5e6429a MWO |
1984 | if (!folio || xa_is_value(folio)) |
1985 | return folio; | |
c7bad633 | 1986 | |
f5e6429a | 1987 | if (!folio_try_get_rcu(folio)) |
c7bad633 MWO |
1988 | goto reset; |
1989 | ||
f5e6429a MWO |
1990 | if (unlikely(folio != xas_reload(xas))) { |
1991 | folio_put(folio); | |
c7bad633 MWO |
1992 | goto reset; |
1993 | } | |
1994 | ||
f5e6429a | 1995 | return folio; |
c7bad633 MWO |
1996 | reset: |
1997 | xas_reset(xas); | |
1998 | goto retry; | |
1999 | } | |
2000 | ||
0cd6144a JW |
2001 | /** |
2002 | * find_get_entries - gang pagecache lookup | |
2003 | * @mapping: The address_space to search | |
2004 | * @start: The starting page cache index | |
ca122fe4 | 2005 | * @end: The final page index (inclusive). |
0e499ed3 | 2006 | * @fbatch: Where the resulting entries are placed. |
0cd6144a JW |
2007 | * @indices: The cache indices corresponding to the entries in @entries |
2008 | * | |
cf2039af | 2009 | * find_get_entries() will search for and return a batch of entries in |
0e499ed3 MWO |
2010 | * the mapping. The entries are placed in @fbatch. find_get_entries() |
2011 | * takes a reference on any actual folios it returns. | |
0cd6144a | 2012 | * |
0e499ed3 MWO |
2013 | * The entries have ascending indexes. The indices may not be consecutive |
2014 | * due to not-present entries or large folios. | |
0cd6144a | 2015 | * |
0e499ed3 | 2016 | * Any shadow entries of evicted folios, or swap entries from |
139b6a6f | 2017 | * shmem/tmpfs, are included in the returned array. |
0cd6144a | 2018 | * |
0e499ed3 | 2019 | * Return: The number of entries which were found. |
0cd6144a | 2020 | */ |
9fb6beea | 2021 | unsigned find_get_entries(struct address_space *mapping, pgoff_t *start, |
0e499ed3 | 2022 | pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices) |
0cd6144a | 2023 | { |
9fb6beea | 2024 | XA_STATE(xas, &mapping->i_pages, *start); |
f5e6429a | 2025 | struct folio *folio; |
0cd6144a JW |
2026 | |
2027 | rcu_read_lock(); | |
f5e6429a | 2028 | while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) { |
0e499ed3 MWO |
2029 | indices[fbatch->nr] = xas.xa_index; |
2030 | if (!folio_batch_add(fbatch, folio)) | |
0cd6144a JW |
2031 | break; |
2032 | } | |
2033 | rcu_read_unlock(); | |
cf2039af | 2034 | |
9fb6beea VMO |
2035 | if (folio_batch_count(fbatch)) { |
2036 | unsigned long nr = 1; | |
2037 | int idx = folio_batch_count(fbatch) - 1; | |
2038 | ||
2039 | folio = fbatch->folios[idx]; | |
2040 | if (!xa_is_value(folio) && !folio_test_hugetlb(folio)) | |
2041 | nr = folio_nr_pages(folio); | |
2042 | *start = indices[idx] + nr; | |
2043 | } | |
0e499ed3 | 2044 | return folio_batch_count(fbatch); |
0cd6144a JW |
2045 | } |
2046 | ||
5c211ba2 MWO |
2047 | /** |
2048 | * find_lock_entries - Find a batch of pagecache entries. | |
2049 | * @mapping: The address_space to search. | |
2050 | * @start: The starting page cache index. | |
2051 | * @end: The final page index (inclusive). | |
51dcbdac MWO |
2052 | * @fbatch: Where the resulting entries are placed. |
2053 | * @indices: The cache indices of the entries in @fbatch. | |
5c211ba2 MWO |
2054 | * |
2055 | * find_lock_entries() will return a batch of entries from @mapping. | |
f5e6429a MWO |
2056 | * Swap, shadow and DAX entries are included. Folios are returned |
2057 | * locked and with an incremented refcount. Folios which are locked | |
2058 | * by somebody else or under writeback are skipped. Folios which are | |
2059 | * partially outside the range are not returned. | |
5c211ba2 MWO |
2060 | * |
2061 | * The entries have ascending indexes. The indices may not be consecutive | |
f5e6429a MWO |
2062 | * due to not-present entries, large folios, folios which could not be |
2063 | * locked or folios under writeback. | |
5c211ba2 MWO |
2064 | * |
2065 | * Return: The number of entries which were found. | |
2066 | */ | |
3392ca12 | 2067 | unsigned find_lock_entries(struct address_space *mapping, pgoff_t *start, |
51dcbdac | 2068 | pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices) |
5c211ba2 | 2069 | { |
3392ca12 | 2070 | XA_STATE(xas, &mapping->i_pages, *start); |
f5e6429a | 2071 | struct folio *folio; |
5c211ba2 MWO |
2072 | |
2073 | rcu_read_lock(); | |
f5e6429a MWO |
2074 | while ((folio = find_get_entry(&xas, end, XA_PRESENT))) { |
2075 | if (!xa_is_value(folio)) { | |
3392ca12 | 2076 | if (folio->index < *start) |
5c211ba2 | 2077 | goto put; |
87b11f86 | 2078 | if (folio_next_index(folio) - 1 > end) |
5c211ba2 | 2079 | goto put; |
f5e6429a | 2080 | if (!folio_trylock(folio)) |
5c211ba2 | 2081 | goto put; |
f5e6429a MWO |
2082 | if (folio->mapping != mapping || |
2083 | folio_test_writeback(folio)) | |
5c211ba2 | 2084 | goto unlock; |
f5e6429a MWO |
2085 | VM_BUG_ON_FOLIO(!folio_contains(folio, xas.xa_index), |
2086 | folio); | |
5c211ba2 | 2087 | } |
51dcbdac MWO |
2088 | indices[fbatch->nr] = xas.xa_index; |
2089 | if (!folio_batch_add(fbatch, folio)) | |
5c211ba2 | 2090 | break; |
6b24ca4a | 2091 | continue; |
5c211ba2 | 2092 | unlock: |
f5e6429a | 2093 | folio_unlock(folio); |
5c211ba2 | 2094 | put: |
f5e6429a | 2095 | folio_put(folio); |
5c211ba2 MWO |
2096 | } |
2097 | rcu_read_unlock(); | |
2098 | ||
3392ca12 VMO |
2099 | if (folio_batch_count(fbatch)) { |
2100 | unsigned long nr = 1; | |
2101 | int idx = folio_batch_count(fbatch) - 1; | |
2102 | ||
2103 | folio = fbatch->folios[idx]; | |
2104 | if (!xa_is_value(folio) && !folio_test_hugetlb(folio)) | |
2105 | nr = folio_nr_pages(folio); | |
2106 | *start = indices[idx] + nr; | |
2107 | } | |
51dcbdac | 2108 | return folio_batch_count(fbatch); |
5c211ba2 MWO |
2109 | } |
2110 | ||
1da177e4 | 2111 | /** |
be0ced5e | 2112 | * filemap_get_folios - Get a batch of folios |
1da177e4 LT |
2113 | * @mapping: The address_space to search |
2114 | * @start: The starting page index | |
b947cee4 | 2115 | * @end: The final page index (inclusive) |
be0ced5e | 2116 | * @fbatch: The batch to fill. |
1da177e4 | 2117 | * |
be0ced5e MWO |
2118 | * Search for and return a batch of folios in the mapping starting at |
2119 | * index @start and up to index @end (inclusive). The folios are returned | |
2120 | * in @fbatch with an elevated reference count. | |
1da177e4 | 2121 | * |
be0ced5e MWO |
2122 | * The first folio may start before @start; if it does, it will contain |
2123 | * @start. The final folio may extend beyond @end; if it does, it will | |
2124 | * contain @end. The folios have ascending indices. There may be gaps | |
2125 | * between the folios if there are indices which have no folio in the | |
2126 | * page cache. If folios are added to or removed from the page cache | |
2127 | * while this is running, they may or may not be found by this call. | |
1da177e4 | 2128 | * |
be0ced5e MWO |
2129 | * Return: The number of folios which were found. |
2130 | * We also update @start to index the next folio for the traversal. | |
1da177e4 | 2131 | */ |
be0ced5e MWO |
2132 | unsigned filemap_get_folios(struct address_space *mapping, pgoff_t *start, |
2133 | pgoff_t end, struct folio_batch *fbatch) | |
1da177e4 | 2134 | { |
fd1b3cee | 2135 | XA_STATE(xas, &mapping->i_pages, *start); |
f5e6429a | 2136 | struct folio *folio; |
a60637c8 NP |
2137 | |
2138 | rcu_read_lock(); | |
be0ced5e | 2139 | while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) { |
fd1b3cee | 2140 | /* Skip over shadow, swap and DAX entries */ |
f5e6429a | 2141 | if (xa_is_value(folio)) |
8079b1c8 | 2142 | continue; |
be0ced5e MWO |
2143 | if (!folio_batch_add(fbatch, folio)) { |
2144 | unsigned long nr = folio_nr_pages(folio); | |
a60637c8 | 2145 | |
be0ced5e MWO |
2146 | if (folio_test_hugetlb(folio)) |
2147 | nr = 1; | |
2148 | *start = folio->index + nr; | |
b947cee4 JK |
2149 | goto out; |
2150 | } | |
a60637c8 | 2151 | } |
5b280c0c | 2152 | |
b947cee4 JK |
2153 | /* |
2154 | * We come here when there is no page beyond @end. We take care to not | |
2155 | * overflow the index @start as it confuses some of the callers. This | |
fd1b3cee | 2156 | * breaks the iteration when there is a page at index -1 but that is |
b947cee4 JK |
2157 | * already broken anyway. |
2158 | */ | |
2159 | if (end == (pgoff_t)-1) | |
2160 | *start = (pgoff_t)-1; | |
2161 | else | |
2162 | *start = end + 1; | |
2163 | out: | |
a60637c8 | 2164 | rcu_read_unlock(); |
d72dc8a2 | 2165 | |
be0ced5e MWO |
2166 | return folio_batch_count(fbatch); |
2167 | } | |
2168 | EXPORT_SYMBOL(filemap_get_folios); | |
2169 | ||
6b24ca4a MWO |
2170 | static inline |
2171 | bool folio_more_pages(struct folio *folio, pgoff_t index, pgoff_t max) | |
2172 | { | |
2173 | if (!folio_test_large(folio) || folio_test_hugetlb(folio)) | |
2174 | return false; | |
2175 | if (index >= max) | |
2176 | return false; | |
87b11f86 | 2177 | return index < folio_next_index(folio) - 1; |
1da177e4 LT |
2178 | } |
2179 | ||
ebf43500 | 2180 | /** |
35b47146 | 2181 | * filemap_get_folios_contig - Get a batch of contiguous folios |
ebf43500 | 2182 | * @mapping: The address_space to search |
35b47146 VMO |
2183 | * @start: The starting page index |
2184 | * @end: The final page index (inclusive) | |
2185 | * @fbatch: The batch to fill | |
ebf43500 | 2186 | * |
35b47146 VMO |
2187 | * filemap_get_folios_contig() works exactly like filemap_get_folios(), |
2188 | * except the returned folios are guaranteed to be contiguous. This may | |
2189 | * not return all contiguous folios if the batch gets filled up. | |
ebf43500 | 2190 | * |
35b47146 VMO |
2191 | * Return: The number of folios found. |
2192 | * Also update @start to be positioned for traversal of the next folio. | |
ebf43500 | 2193 | */ |
35b47146 VMO |
2194 | |
2195 | unsigned filemap_get_folios_contig(struct address_space *mapping, | |
2196 | pgoff_t *start, pgoff_t end, struct folio_batch *fbatch) | |
ebf43500 | 2197 | { |
35b47146 VMO |
2198 | XA_STATE(xas, &mapping->i_pages, *start); |
2199 | unsigned long nr; | |
e1c37722 | 2200 | struct folio *folio; |
a60637c8 NP |
2201 | |
2202 | rcu_read_lock(); | |
35b47146 VMO |
2203 | |
2204 | for (folio = xas_load(&xas); folio && xas.xa_index <= end; | |
2205 | folio = xas_next(&xas)) { | |
e1c37722 | 2206 | if (xas_retry(&xas, folio)) |
3ece58a2 MW |
2207 | continue; |
2208 | /* | |
2209 | * If the entry has been swapped out, we can stop looking. | |
2210 | * No current caller is looking for DAX entries. | |
2211 | */ | |
e1c37722 | 2212 | if (xa_is_value(folio)) |
35b47146 | 2213 | goto update_start; |
ebf43500 | 2214 | |
e1c37722 | 2215 | if (!folio_try_get_rcu(folio)) |
3ece58a2 | 2216 | goto retry; |
83929372 | 2217 | |
e1c37722 | 2218 | if (unlikely(folio != xas_reload(&xas))) |
35b47146 | 2219 | goto put_folio; |
a60637c8 | 2220 | |
35b47146 VMO |
2221 | if (!folio_batch_add(fbatch, folio)) { |
2222 | nr = folio_nr_pages(folio); | |
2223 | ||
2224 | if (folio_test_hugetlb(folio)) | |
2225 | nr = 1; | |
2226 | *start = folio->index + nr; | |
2227 | goto out; | |
6b24ca4a | 2228 | } |
3ece58a2 | 2229 | continue; |
35b47146 | 2230 | put_folio: |
e1c37722 | 2231 | folio_put(folio); |
35b47146 | 2232 | |
3ece58a2 MW |
2233 | retry: |
2234 | xas_reset(&xas); | |
ebf43500 | 2235 | } |
35b47146 VMO |
2236 | |
2237 | update_start: | |
2238 | nr = folio_batch_count(fbatch); | |
2239 | ||
2240 | if (nr) { | |
2241 | folio = fbatch->folios[nr - 1]; | |
2242 | if (folio_test_hugetlb(folio)) | |
2243 | *start = folio->index + 1; | |
2244 | else | |
87b11f86 | 2245 | *start = folio_next_index(folio); |
35b47146 VMO |
2246 | } |
2247 | out: | |
a60637c8 | 2248 | rcu_read_unlock(); |
35b47146 | 2249 | return folio_batch_count(fbatch); |
ebf43500 | 2250 | } |
35b47146 | 2251 | EXPORT_SYMBOL(filemap_get_folios_contig); |
ebf43500 | 2252 | |
485bb99b | 2253 | /** |
247f9e1f VMO |
2254 | * filemap_get_folios_tag - Get a batch of folios matching @tag |
2255 | * @mapping: The address_space to search | |
2256 | * @start: The starting page index | |
2257 | * @end: The final page index (inclusive) | |
2258 | * @tag: The tag index | |
2259 | * @fbatch: The batch to fill | |
485bb99b | 2260 | * |
247f9e1f | 2261 | * Same as filemap_get_folios(), but only returning folios tagged with @tag. |
a862f68a | 2262 | * |
247f9e1f VMO |
2263 | * Return: The number of folios found. |
2264 | * Also update @start to index the next folio for traversal. | |
1da177e4 | 2265 | */ |
247f9e1f VMO |
2266 | unsigned filemap_get_folios_tag(struct address_space *mapping, pgoff_t *start, |
2267 | pgoff_t end, xa_mark_t tag, struct folio_batch *fbatch) | |
1da177e4 | 2268 | { |
247f9e1f | 2269 | XA_STATE(xas, &mapping->i_pages, *start); |
f5e6429a | 2270 | struct folio *folio; |
a60637c8 NP |
2271 | |
2272 | rcu_read_lock(); | |
247f9e1f | 2273 | while ((folio = find_get_entry(&xas, end, tag)) != NULL) { |
a6906972 MW |
2274 | /* |
2275 | * Shadow entries should never be tagged, but this iteration | |
2276 | * is lockless so there is a window for page reclaim to evict | |
247f9e1f | 2277 | * a page we saw tagged. Skip over it. |
a6906972 | 2278 | */ |
f5e6429a | 2279 | if (xa_is_value(folio)) |
139b6a6f | 2280 | continue; |
247f9e1f VMO |
2281 | if (!folio_batch_add(fbatch, folio)) { |
2282 | unsigned long nr = folio_nr_pages(folio); | |
a60637c8 | 2283 | |
247f9e1f VMO |
2284 | if (folio_test_hugetlb(folio)) |
2285 | nr = 1; | |
2286 | *start = folio->index + nr; | |
72b045ae JK |
2287 | goto out; |
2288 | } | |
a60637c8 | 2289 | } |
72b045ae | 2290 | /* |
247f9e1f VMO |
2291 | * We come here when there is no page beyond @end. We take care to not |
2292 | * overflow the index @start as it confuses some of the callers. This | |
2293 | * breaks the iteration when there is a page at index -1 but that is | |
2294 | * already broke anyway. | |
72b045ae JK |
2295 | */ |
2296 | if (end == (pgoff_t)-1) | |
247f9e1f | 2297 | *start = (pgoff_t)-1; |
72b045ae | 2298 | else |
247f9e1f | 2299 | *start = end + 1; |
72b045ae | 2300 | out: |
a60637c8 | 2301 | rcu_read_unlock(); |
1da177e4 | 2302 | |
247f9e1f | 2303 | return folio_batch_count(fbatch); |
1da177e4 | 2304 | } |
247f9e1f | 2305 | EXPORT_SYMBOL(filemap_get_folios_tag); |
1da177e4 | 2306 | |
76d42bd9 WF |
2307 | /* |
2308 | * CD/DVDs are error prone. When a medium error occurs, the driver may fail | |
2309 | * a _large_ part of the i/o request. Imagine the worst scenario: | |
2310 | * | |
2311 | * ---R__________________________________________B__________ | |
2312 | * ^ reading here ^ bad block(assume 4k) | |
2313 | * | |
2314 | * read(R) => miss => readahead(R...B) => media error => frustrating retries | |
2315 | * => failing the whole request => read(R) => read(R+1) => | |
2316 | * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) => | |
2317 | * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) => | |
2318 | * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ...... | |
2319 | * | |
2320 | * It is going insane. Fix it by quickly scaling down the readahead size. | |
2321 | */ | |
0f8e2db4 | 2322 | static void shrink_readahead_size_eio(struct file_ra_state *ra) |
76d42bd9 | 2323 | { |
76d42bd9 | 2324 | ra->ra_pages /= 4; |
76d42bd9 WF |
2325 | } |
2326 | ||
cbd59c48 | 2327 | /* |
25d6a23e | 2328 | * filemap_get_read_batch - Get a batch of folios for read |
cbd59c48 | 2329 | * |
25d6a23e MWO |
2330 | * Get a batch of folios which represent a contiguous range of bytes in |
2331 | * the file. No exceptional entries will be returned. If @index is in | |
2332 | * the middle of a folio, the entire folio will be returned. The last | |
2333 | * folio in the batch may have the readahead flag set or the uptodate flag | |
2334 | * clear so that the caller can take the appropriate action. | |
cbd59c48 MWO |
2335 | */ |
2336 | static void filemap_get_read_batch(struct address_space *mapping, | |
25d6a23e | 2337 | pgoff_t index, pgoff_t max, struct folio_batch *fbatch) |
cbd59c48 MWO |
2338 | { |
2339 | XA_STATE(xas, &mapping->i_pages, index); | |
bdb72932 | 2340 | struct folio *folio; |
cbd59c48 MWO |
2341 | |
2342 | rcu_read_lock(); | |
bdb72932 MWO |
2343 | for (folio = xas_load(&xas); folio; folio = xas_next(&xas)) { |
2344 | if (xas_retry(&xas, folio)) | |
cbd59c48 | 2345 | continue; |
bdb72932 | 2346 | if (xas.xa_index > max || xa_is_value(folio)) |
cbd59c48 | 2347 | break; |
cb995f4e MWO |
2348 | if (xa_is_sibling(folio)) |
2349 | break; | |
bdb72932 | 2350 | if (!folio_try_get_rcu(folio)) |
cbd59c48 MWO |
2351 | goto retry; |
2352 | ||
bdb72932 | 2353 | if (unlikely(folio != xas_reload(&xas))) |
25d6a23e | 2354 | goto put_folio; |
cbd59c48 | 2355 | |
25d6a23e | 2356 | if (!folio_batch_add(fbatch, folio)) |
cbd59c48 | 2357 | break; |
bdb72932 | 2358 | if (!folio_test_uptodate(folio)) |
cbd59c48 | 2359 | break; |
bdb72932 | 2360 | if (folio_test_readahead(folio)) |
cbd59c48 | 2361 | break; |
87b11f86 | 2362 | xas_advance(&xas, folio_next_index(folio) - 1); |
cbd59c48 | 2363 | continue; |
25d6a23e | 2364 | put_folio: |
bdb72932 | 2365 | folio_put(folio); |
cbd59c48 MWO |
2366 | retry: |
2367 | xas_reset(&xas); | |
2368 | } | |
2369 | rcu_read_unlock(); | |
2370 | } | |
2371 | ||
290e1a32 | 2372 | static int filemap_read_folio(struct file *file, filler_t filler, |
9d427b4e | 2373 | struct folio *folio) |
723ef24b | 2374 | { |
17604240 CH |
2375 | bool workingset = folio_test_workingset(folio); |
2376 | unsigned long pflags; | |
723ef24b KO |
2377 | int error; |
2378 | ||
723ef24b | 2379 | /* |
68430303 | 2380 | * A previous I/O error may have been due to temporary failures, |
7e0a1265 | 2381 | * eg. multipath errors. PG_error will be set again if read_folio |
68430303 | 2382 | * fails. |
723ef24b | 2383 | */ |
9d427b4e | 2384 | folio_clear_error(folio); |
17604240 | 2385 | |
723ef24b | 2386 | /* Start the actual read. The read will unlock the page. */ |
17604240 CH |
2387 | if (unlikely(workingset)) |
2388 | psi_memstall_enter(&pflags); | |
290e1a32 | 2389 | error = filler(file, folio); |
17604240 CH |
2390 | if (unlikely(workingset)) |
2391 | psi_memstall_leave(&pflags); | |
68430303 MWO |
2392 | if (error) |
2393 | return error; | |
723ef24b | 2394 | |
9d427b4e | 2395 | error = folio_wait_locked_killable(folio); |
68430303 MWO |
2396 | if (error) |
2397 | return error; | |
9d427b4e | 2398 | if (folio_test_uptodate(folio)) |
aa1ec2f6 | 2399 | return 0; |
290e1a32 MWO |
2400 | if (file) |
2401 | shrink_readahead_size_eio(&file->f_ra); | |
aa1ec2f6 | 2402 | return -EIO; |
723ef24b KO |
2403 | } |
2404 | ||
fce70da3 | 2405 | static bool filemap_range_uptodate(struct address_space *mapping, |
dd5b9d00 DH |
2406 | loff_t pos, size_t count, struct folio *folio, |
2407 | bool need_uptodate) | |
fce70da3 | 2408 | { |
2fa4eeb8 | 2409 | if (folio_test_uptodate(folio)) |
fce70da3 MWO |
2410 | return true; |
2411 | /* pipes can't handle partially uptodate pages */ | |
dd5b9d00 | 2412 | if (need_uptodate) |
fce70da3 MWO |
2413 | return false; |
2414 | if (!mapping->a_ops->is_partially_uptodate) | |
2415 | return false; | |
2fa4eeb8 | 2416 | if (mapping->host->i_blkbits >= folio_shift(folio)) |
fce70da3 MWO |
2417 | return false; |
2418 | ||
2fa4eeb8 MWO |
2419 | if (folio_pos(folio) > pos) { |
2420 | count -= folio_pos(folio) - pos; | |
fce70da3 MWO |
2421 | pos = 0; |
2422 | } else { | |
2fa4eeb8 | 2423 | pos -= folio_pos(folio); |
fce70da3 MWO |
2424 | } |
2425 | ||
2e7e80f7 | 2426 | return mapping->a_ops->is_partially_uptodate(folio, pos, count); |
fce70da3 MWO |
2427 | } |
2428 | ||
4612aeef | 2429 | static int filemap_update_page(struct kiocb *iocb, |
dd5b9d00 DH |
2430 | struct address_space *mapping, size_t count, |
2431 | struct folio *folio, bool need_uptodate) | |
723ef24b | 2432 | { |
723ef24b KO |
2433 | int error; |
2434 | ||
730633f0 JK |
2435 | if (iocb->ki_flags & IOCB_NOWAIT) { |
2436 | if (!filemap_invalidate_trylock_shared(mapping)) | |
2437 | return -EAGAIN; | |
2438 | } else { | |
2439 | filemap_invalidate_lock_shared(mapping); | |
2440 | } | |
2441 | ||
ffdc8dab | 2442 | if (!folio_trylock(folio)) { |
730633f0 | 2443 | error = -EAGAIN; |
87d1d7b6 | 2444 | if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_NOIO)) |
730633f0 | 2445 | goto unlock_mapping; |
87d1d7b6 | 2446 | if (!(iocb->ki_flags & IOCB_WAITQ)) { |
730633f0 | 2447 | filemap_invalidate_unlock_shared(mapping); |
9f2b04a2 MWO |
2448 | /* |
2449 | * This is where we usually end up waiting for a | |
2450 | * previously submitted readahead to finish. | |
2451 | */ | |
2452 | folio_put_wait_locked(folio, TASK_KILLABLE); | |
4612aeef | 2453 | return AOP_TRUNCATED_PAGE; |
bd8a1f36 | 2454 | } |
ffdc8dab | 2455 | error = __folio_lock_async(folio, iocb->ki_waitq); |
87d1d7b6 | 2456 | if (error) |
730633f0 | 2457 | goto unlock_mapping; |
723ef24b | 2458 | } |
723ef24b | 2459 | |
730633f0 | 2460 | error = AOP_TRUNCATED_PAGE; |
ffdc8dab | 2461 | if (!folio->mapping) |
730633f0 | 2462 | goto unlock; |
723ef24b | 2463 | |
fce70da3 | 2464 | error = 0; |
dd5b9d00 DH |
2465 | if (filemap_range_uptodate(mapping, iocb->ki_pos, count, folio, |
2466 | need_uptodate)) | |
fce70da3 MWO |
2467 | goto unlock; |
2468 | ||
2469 | error = -EAGAIN; | |
2470 | if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ)) | |
2471 | goto unlock; | |
2472 | ||
290e1a32 MWO |
2473 | error = filemap_read_folio(iocb->ki_filp, mapping->a_ops->read_folio, |
2474 | folio); | |
730633f0 | 2475 | goto unlock_mapping; |
fce70da3 | 2476 | unlock: |
ffdc8dab | 2477 | folio_unlock(folio); |
730633f0 JK |
2478 | unlock_mapping: |
2479 | filemap_invalidate_unlock_shared(mapping); | |
2480 | if (error == AOP_TRUNCATED_PAGE) | |
ffdc8dab | 2481 | folio_put(folio); |
fce70da3 | 2482 | return error; |
723ef24b KO |
2483 | } |
2484 | ||
a5d4ad09 | 2485 | static int filemap_create_folio(struct file *file, |
f253e185 | 2486 | struct address_space *mapping, pgoff_t index, |
25d6a23e | 2487 | struct folio_batch *fbatch) |
723ef24b | 2488 | { |
a5d4ad09 | 2489 | struct folio *folio; |
723ef24b KO |
2490 | int error; |
2491 | ||
a5d4ad09 MWO |
2492 | folio = filemap_alloc_folio(mapping_gfp_mask(mapping), 0); |
2493 | if (!folio) | |
f253e185 | 2494 | return -ENOMEM; |
723ef24b | 2495 | |
730633f0 | 2496 | /* |
a5d4ad09 MWO |
2497 | * Protect against truncate / hole punch. Grabbing invalidate_lock |
2498 | * here assures we cannot instantiate and bring uptodate new | |
2499 | * pagecache folios after evicting page cache during truncate | |
2500 | * and before actually freeing blocks. Note that we could | |
2501 | * release invalidate_lock after inserting the folio into | |
2502 | * the page cache as the locked folio would then be enough to | |
2503 | * synchronize with hole punching. But there are code paths | |
2504 | * such as filemap_update_page() filling in partially uptodate | |
704528d8 | 2505 | * pages or ->readahead() that need to hold invalidate_lock |
a5d4ad09 MWO |
2506 | * while mapping blocks for IO so let's hold the lock here as |
2507 | * well to keep locking rules simple. | |
730633f0 JK |
2508 | */ |
2509 | filemap_invalidate_lock_shared(mapping); | |
a5d4ad09 | 2510 | error = filemap_add_folio(mapping, folio, index, |
f253e185 MWO |
2511 | mapping_gfp_constraint(mapping, GFP_KERNEL)); |
2512 | if (error == -EEXIST) | |
2513 | error = AOP_TRUNCATED_PAGE; | |
2514 | if (error) | |
2515 | goto error; | |
2516 | ||
290e1a32 | 2517 | error = filemap_read_folio(file, mapping->a_ops->read_folio, folio); |
f253e185 MWO |
2518 | if (error) |
2519 | goto error; | |
2520 | ||
730633f0 | 2521 | filemap_invalidate_unlock_shared(mapping); |
25d6a23e | 2522 | folio_batch_add(fbatch, folio); |
f253e185 MWO |
2523 | return 0; |
2524 | error: | |
730633f0 | 2525 | filemap_invalidate_unlock_shared(mapping); |
a5d4ad09 | 2526 | folio_put(folio); |
f253e185 | 2527 | return error; |
723ef24b KO |
2528 | } |
2529 | ||
5963fe03 | 2530 | static int filemap_readahead(struct kiocb *iocb, struct file *file, |
65bca53b | 2531 | struct address_space *mapping, struct folio *folio, |
5963fe03 MWO |
2532 | pgoff_t last_index) |
2533 | { | |
65bca53b MWO |
2534 | DEFINE_READAHEAD(ractl, file, &file->f_ra, mapping, folio->index); |
2535 | ||
5963fe03 MWO |
2536 | if (iocb->ki_flags & IOCB_NOIO) |
2537 | return -EAGAIN; | |
65bca53b | 2538 | page_cache_async_ra(&ractl, folio, last_index - folio->index); |
5963fe03 MWO |
2539 | return 0; |
2540 | } | |
2541 | ||
dd5b9d00 DH |
2542 | static int filemap_get_pages(struct kiocb *iocb, size_t count, |
2543 | struct folio_batch *fbatch, bool need_uptodate) | |
06c04442 KO |
2544 | { |
2545 | struct file *filp = iocb->ki_filp; | |
2546 | struct address_space *mapping = filp->f_mapping; | |
2547 | struct file_ra_state *ra = &filp->f_ra; | |
2548 | pgoff_t index = iocb->ki_pos >> PAGE_SHIFT; | |
cbd59c48 | 2549 | pgoff_t last_index; |
65bca53b | 2550 | struct folio *folio; |
cbd59c48 | 2551 | int err = 0; |
06c04442 | 2552 | |
5956592c | 2553 | /* "last_index" is the index of the page beyond the end of the read */ |
dd5b9d00 | 2554 | last_index = DIV_ROUND_UP(iocb->ki_pos + count, PAGE_SIZE); |
2642fca6 | 2555 | retry: |
06c04442 KO |
2556 | if (fatal_signal_pending(current)) |
2557 | return -EINTR; | |
2558 | ||
5956592c | 2559 | filemap_get_read_batch(mapping, index, last_index - 1, fbatch); |
25d6a23e | 2560 | if (!folio_batch_count(fbatch)) { |
2642fca6 MWO |
2561 | if (iocb->ki_flags & IOCB_NOIO) |
2562 | return -EAGAIN; | |
2563 | page_cache_sync_readahead(mapping, ra, filp, index, | |
2564 | last_index - index); | |
5956592c | 2565 | filemap_get_read_batch(mapping, index, last_index - 1, fbatch); |
2642fca6 | 2566 | } |
25d6a23e | 2567 | if (!folio_batch_count(fbatch)) { |
f253e185 MWO |
2568 | if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_WAITQ)) |
2569 | return -EAGAIN; | |
a5d4ad09 | 2570 | err = filemap_create_folio(filp, mapping, |
25d6a23e | 2571 | iocb->ki_pos >> PAGE_SHIFT, fbatch); |
f253e185 | 2572 | if (err == AOP_TRUNCATED_PAGE) |
2642fca6 | 2573 | goto retry; |
f253e185 MWO |
2574 | return err; |
2575 | } | |
06c04442 | 2576 | |
25d6a23e | 2577 | folio = fbatch->folios[folio_batch_count(fbatch) - 1]; |
65bca53b MWO |
2578 | if (folio_test_readahead(folio)) { |
2579 | err = filemap_readahead(iocb, filp, mapping, folio, last_index); | |
2642fca6 MWO |
2580 | if (err) |
2581 | goto err; | |
2582 | } | |
65bca53b | 2583 | if (!folio_test_uptodate(folio)) { |
25d6a23e MWO |
2584 | if ((iocb->ki_flags & IOCB_WAITQ) && |
2585 | folio_batch_count(fbatch) > 1) | |
2642fca6 | 2586 | iocb->ki_flags |= IOCB_NOWAIT; |
dd5b9d00 DH |
2587 | err = filemap_update_page(iocb, mapping, count, folio, |
2588 | need_uptodate); | |
2642fca6 MWO |
2589 | if (err) |
2590 | goto err; | |
06c04442 KO |
2591 | } |
2592 | ||
2642fca6 | 2593 | return 0; |
cbd59c48 | 2594 | err: |
2642fca6 | 2595 | if (err < 0) |
65bca53b | 2596 | folio_put(folio); |
25d6a23e | 2597 | if (likely(--fbatch->nr)) |
ff993ba1 | 2598 | return 0; |
4612aeef | 2599 | if (err == AOP_TRUNCATED_PAGE) |
2642fca6 MWO |
2600 | goto retry; |
2601 | return err; | |
06c04442 KO |
2602 | } |
2603 | ||
5ccc944d MWO |
2604 | static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio) |
2605 | { | |
2606 | unsigned int shift = folio_shift(folio); | |
2607 | ||
2608 | return (pos1 >> shift == pos2 >> shift); | |
2609 | } | |
2610 | ||
485bb99b | 2611 | /** |
87fa0f3e CH |
2612 | * filemap_read - Read data from the page cache. |
2613 | * @iocb: The iocb to read. | |
2614 | * @iter: Destination for the data. | |
2615 | * @already_read: Number of bytes already read by the caller. | |
485bb99b | 2616 | * |
87fa0f3e | 2617 | * Copies data from the page cache. If the data is not currently present, |
7e0a1265 | 2618 | * uses the readahead and read_folio address_space operations to fetch it. |
1da177e4 | 2619 | * |
87fa0f3e CH |
2620 | * Return: Total number of bytes copied, including those already read by |
2621 | * the caller. If an error happens before any bytes are copied, returns | |
2622 | * a negative error number. | |
1da177e4 | 2623 | */ |
87fa0f3e CH |
2624 | ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *iter, |
2625 | ssize_t already_read) | |
1da177e4 | 2626 | { |
47c27bc4 | 2627 | struct file *filp = iocb->ki_filp; |
06c04442 | 2628 | struct file_ra_state *ra = &filp->f_ra; |
36e78914 | 2629 | struct address_space *mapping = filp->f_mapping; |
1da177e4 | 2630 | struct inode *inode = mapping->host; |
25d6a23e | 2631 | struct folio_batch fbatch; |
ff993ba1 | 2632 | int i, error = 0; |
06c04442 KO |
2633 | bool writably_mapped; |
2634 | loff_t isize, end_offset; | |
f04d16ee | 2635 | loff_t last_pos = ra->prev_pos; |
1da177e4 | 2636 | |
723ef24b | 2637 | if (unlikely(iocb->ki_pos >= inode->i_sb->s_maxbytes)) |
d05c5f7b | 2638 | return 0; |
3644e2d2 KO |
2639 | if (unlikely(!iov_iter_count(iter))) |
2640 | return 0; | |
2641 | ||
c2a9737f | 2642 | iov_iter_truncate(iter, inode->i_sb->s_maxbytes); |
25d6a23e | 2643 | folio_batch_init(&fbatch); |
c2a9737f | 2644 | |
06c04442 | 2645 | do { |
1da177e4 | 2646 | cond_resched(); |
5abf186a | 2647 | |
723ef24b | 2648 | /* |
06c04442 KO |
2649 | * If we've already successfully copied some data, then we |
2650 | * can no longer safely return -EIOCBQUEUED. Hence mark | |
2651 | * an async read NOWAIT at that point. | |
723ef24b | 2652 | */ |
87fa0f3e | 2653 | if ((iocb->ki_flags & IOCB_WAITQ) && already_read) |
723ef24b KO |
2654 | iocb->ki_flags |= IOCB_NOWAIT; |
2655 | ||
8c8387ee DH |
2656 | if (unlikely(iocb->ki_pos >= i_size_read(inode))) |
2657 | break; | |
2658 | ||
3fc40265 | 2659 | error = filemap_get_pages(iocb, iter->count, &fbatch, false); |
ff993ba1 | 2660 | if (error < 0) |
06c04442 | 2661 | break; |
1da177e4 | 2662 | |
06c04442 KO |
2663 | /* |
2664 | * i_size must be checked after we know the pages are Uptodate. | |
2665 | * | |
2666 | * Checking i_size after the check allows us to calculate | |
2667 | * the correct value for "nr", which means the zero-filled | |
2668 | * part of the page is not copied back to userspace (unless | |
2669 | * another truncate extends the file - this is desired though). | |
2670 | */ | |
2671 | isize = i_size_read(inode); | |
2672 | if (unlikely(iocb->ki_pos >= isize)) | |
25d6a23e | 2673 | goto put_folios; |
06c04442 KO |
2674 | end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count); |
2675 | ||
06c04442 KO |
2676 | /* |
2677 | * Once we start copying data, we don't want to be touching any | |
2678 | * cachelines that might be contended: | |
2679 | */ | |
2680 | writably_mapped = mapping_writably_mapped(mapping); | |
2681 | ||
2682 | /* | |
5ccc944d | 2683 | * When a read accesses the same folio several times, only |
06c04442 KO |
2684 | * mark it as accessed the first time. |
2685 | */ | |
f04d16ee HL |
2686 | if (!pos_same_folio(iocb->ki_pos, last_pos - 1, |
2687 | fbatch.folios[0])) | |
25d6a23e | 2688 | folio_mark_accessed(fbatch.folios[0]); |
06c04442 | 2689 | |
25d6a23e MWO |
2690 | for (i = 0; i < folio_batch_count(&fbatch); i++) { |
2691 | struct folio *folio = fbatch.folios[i]; | |
d996fc7f MWO |
2692 | size_t fsize = folio_size(folio); |
2693 | size_t offset = iocb->ki_pos & (fsize - 1); | |
cbd59c48 | 2694 | size_t bytes = min_t(loff_t, end_offset - iocb->ki_pos, |
d996fc7f | 2695 | fsize - offset); |
cbd59c48 | 2696 | size_t copied; |
06c04442 | 2697 | |
d996fc7f | 2698 | if (end_offset < folio_pos(folio)) |
cbd59c48 MWO |
2699 | break; |
2700 | if (i > 0) | |
d996fc7f | 2701 | folio_mark_accessed(folio); |
06c04442 | 2702 | /* |
d996fc7f MWO |
2703 | * If users can be writing to this folio using arbitrary |
2704 | * virtual addresses, take care of potential aliasing | |
2705 | * before reading the folio on the kernel side. | |
06c04442 | 2706 | */ |
d996fc7f MWO |
2707 | if (writably_mapped) |
2708 | flush_dcache_folio(folio); | |
06c04442 | 2709 | |
d996fc7f | 2710 | copied = copy_folio_to_iter(folio, offset, bytes, iter); |
06c04442 | 2711 | |
87fa0f3e | 2712 | already_read += copied; |
06c04442 | 2713 | iocb->ki_pos += copied; |
f04d16ee | 2714 | last_pos = iocb->ki_pos; |
06c04442 KO |
2715 | |
2716 | if (copied < bytes) { | |
2717 | error = -EFAULT; | |
2718 | break; | |
2719 | } | |
1da177e4 | 2720 | } |
25d6a23e MWO |
2721 | put_folios: |
2722 | for (i = 0; i < folio_batch_count(&fbatch); i++) | |
2723 | folio_put(fbatch.folios[i]); | |
2724 | folio_batch_init(&fbatch); | |
06c04442 | 2725 | } while (iov_iter_count(iter) && iocb->ki_pos < isize && !error); |
1da177e4 | 2726 | |
0c6aa263 | 2727 | file_accessed(filp); |
f04d16ee | 2728 | ra->prev_pos = last_pos; |
87fa0f3e | 2729 | return already_read ? already_read : error; |
1da177e4 | 2730 | } |
87fa0f3e | 2731 | EXPORT_SYMBOL_GPL(filemap_read); |
1da177e4 | 2732 | |
3c435a0f CH |
2733 | int kiocb_write_and_wait(struct kiocb *iocb, size_t count) |
2734 | { | |
2735 | struct address_space *mapping = iocb->ki_filp->f_mapping; | |
2736 | loff_t pos = iocb->ki_pos; | |
2737 | loff_t end = pos + count - 1; | |
2738 | ||
2739 | if (iocb->ki_flags & IOCB_NOWAIT) { | |
2740 | if (filemap_range_needs_writeback(mapping, pos, end)) | |
2741 | return -EAGAIN; | |
2742 | return 0; | |
2743 | } | |
2744 | ||
2745 | return filemap_write_and_wait_range(mapping, pos, end); | |
2746 | } | |
2747 | ||
e003f74a CH |
2748 | int kiocb_invalidate_pages(struct kiocb *iocb, size_t count) |
2749 | { | |
2750 | struct address_space *mapping = iocb->ki_filp->f_mapping; | |
2751 | loff_t pos = iocb->ki_pos; | |
2752 | loff_t end = pos + count - 1; | |
2753 | int ret; | |
2754 | ||
2755 | if (iocb->ki_flags & IOCB_NOWAIT) { | |
2756 | /* we could block if there are any pages in the range */ | |
2757 | if (filemap_range_has_page(mapping, pos, end)) | |
2758 | return -EAGAIN; | |
2759 | } else { | |
2760 | ret = filemap_write_and_wait_range(mapping, pos, end); | |
2761 | if (ret) | |
2762 | return ret; | |
2763 | } | |
2764 | ||
2765 | /* | |
2766 | * After a write we want buffered reads to be sure to go to disk to get | |
2767 | * the new data. We invalidate clean cached page from the region we're | |
2768 | * about to write. We do this *before* the write so that we can return | |
2769 | * without clobbering -EIOCBQUEUED from ->direct_IO(). | |
2770 | */ | |
2771 | return invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT, | |
2772 | end >> PAGE_SHIFT); | |
2773 | } | |
2774 | ||
485bb99b | 2775 | /** |
6abd2322 | 2776 | * generic_file_read_iter - generic filesystem read routine |
485bb99b | 2777 | * @iocb: kernel I/O control block |
6abd2322 | 2778 | * @iter: destination for the data read |
485bb99b | 2779 | * |
6abd2322 | 2780 | * This is the "read_iter()" routine for all filesystems |
1da177e4 | 2781 | * that can use the page cache directly. |
41da51bc AG |
2782 | * |
2783 | * The IOCB_NOWAIT flag in iocb->ki_flags indicates that -EAGAIN shall | |
2784 | * be returned when no data can be read without waiting for I/O requests | |
2785 | * to complete; it doesn't prevent readahead. | |
2786 | * | |
2787 | * The IOCB_NOIO flag in iocb->ki_flags indicates that no new I/O | |
2788 | * requests shall be made for the read or for readahead. When no data | |
2789 | * can be read, -EAGAIN shall be returned. When readahead would be | |
2790 | * triggered, a partial, possibly empty read shall be returned. | |
2791 | * | |
a862f68a MR |
2792 | * Return: |
2793 | * * number of bytes copied, even for partial reads | |
41da51bc | 2794 | * * negative error code (or 0 if IOCB_NOIO) if nothing was read |
1da177e4 LT |
2795 | */ |
2796 | ssize_t | |
ed978a81 | 2797 | generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter) |
1da177e4 | 2798 | { |
e7080a43 | 2799 | size_t count = iov_iter_count(iter); |
47c27bc4 | 2800 | ssize_t retval = 0; |
e7080a43 NS |
2801 | |
2802 | if (!count) | |
826ea860 | 2803 | return 0; /* skip atime */ |
1da177e4 | 2804 | |
2ba48ce5 | 2805 | if (iocb->ki_flags & IOCB_DIRECT) { |
47c27bc4 | 2806 | struct file *file = iocb->ki_filp; |
ed978a81 AV |
2807 | struct address_space *mapping = file->f_mapping; |
2808 | struct inode *inode = mapping->host; | |
1da177e4 | 2809 | |
3c435a0f CH |
2810 | retval = kiocb_write_and_wait(iocb, count); |
2811 | if (retval < 0) | |
2812 | return retval; | |
0d5b0cf2 CH |
2813 | file_accessed(file); |
2814 | ||
5ecda137 | 2815 | retval = mapping->a_ops->direct_IO(iocb, iter); |
c3a69024 | 2816 | if (retval >= 0) { |
c64fb5c7 | 2817 | iocb->ki_pos += retval; |
5ecda137 | 2818 | count -= retval; |
9fe55eea | 2819 | } |
ab2125df PB |
2820 | if (retval != -EIOCBQUEUED) |
2821 | iov_iter_revert(iter, count - iov_iter_count(iter)); | |
66f998f6 | 2822 | |
9fe55eea SW |
2823 | /* |
2824 | * Btrfs can have a short DIO read if we encounter | |
2825 | * compressed extents, so if there was an error, or if | |
2826 | * we've already read everything we wanted to, or if | |
2827 | * there was a short read because we hit EOF, go ahead | |
2828 | * and return. Otherwise fallthrough to buffered io for | |
fbbbad4b MW |
2829 | * the rest of the read. Buffered reads will not work for |
2830 | * DAX files, so don't bother trying. | |
9fe55eea | 2831 | */ |
61d0017e JA |
2832 | if (retval < 0 || !count || IS_DAX(inode)) |
2833 | return retval; | |
2834 | if (iocb->ki_pos >= i_size_read(inode)) | |
826ea860 | 2835 | return retval; |
1da177e4 LT |
2836 | } |
2837 | ||
826ea860 | 2838 | return filemap_read(iocb, iter, retval); |
1da177e4 | 2839 | } |
ed978a81 | 2840 | EXPORT_SYMBOL(generic_file_read_iter); |
1da177e4 | 2841 | |
07073eb0 DH |
2842 | /* |
2843 | * Splice subpages from a folio into a pipe. | |
2844 | */ | |
2845 | size_t splice_folio_into_pipe(struct pipe_inode_info *pipe, | |
2846 | struct folio *folio, loff_t fpos, size_t size) | |
2847 | { | |
2848 | struct page *page; | |
2849 | size_t spliced = 0, offset = offset_in_folio(folio, fpos); | |
2850 | ||
2851 | page = folio_page(folio, offset / PAGE_SIZE); | |
2852 | size = min(size, folio_size(folio) - offset); | |
2853 | offset %= PAGE_SIZE; | |
2854 | ||
2855 | while (spliced < size && | |
2856 | !pipe_full(pipe->head, pipe->tail, pipe->max_usage)) { | |
2857 | struct pipe_buffer *buf = pipe_head_buf(pipe); | |
2858 | size_t part = min_t(size_t, PAGE_SIZE - offset, size - spliced); | |
2859 | ||
2860 | *buf = (struct pipe_buffer) { | |
2861 | .ops = &page_cache_pipe_buf_ops, | |
2862 | .page = page, | |
2863 | .offset = offset, | |
2864 | .len = part, | |
2865 | }; | |
2866 | folio_get(folio); | |
2867 | pipe->head++; | |
2868 | page++; | |
2869 | spliced += part; | |
2870 | offset = 0; | |
2871 | } | |
2872 | ||
2873 | return spliced; | |
2874 | } | |
2875 | ||
9eee8bd8 DH |
2876 | /** |
2877 | * filemap_splice_read - Splice data from a file's pagecache into a pipe | |
2878 | * @in: The file to read from | |
2879 | * @ppos: Pointer to the file position to read from | |
2880 | * @pipe: The pipe to splice into | |
2881 | * @len: The amount to splice | |
2882 | * @flags: The SPLICE_F_* flags | |
2883 | * | |
2884 | * This function gets folios from a file's pagecache and splices them into the | |
2885 | * pipe. Readahead will be called as necessary to fill more folios. This may | |
2886 | * be used for blockdevs also. | |
2887 | * | |
2888 | * Return: On success, the number of bytes read will be returned and *@ppos | |
2889 | * will be updated if appropriate; 0 will be returned if there is no more data | |
2890 | * to be read; -EAGAIN will be returned if the pipe had no space, and some | |
2891 | * other negative error code will be returned on error. A short read may occur | |
2892 | * if the pipe has insufficient space, we reach the end of the data or we hit a | |
2893 | * hole. | |
07073eb0 DH |
2894 | */ |
2895 | ssize_t filemap_splice_read(struct file *in, loff_t *ppos, | |
2896 | struct pipe_inode_info *pipe, | |
2897 | size_t len, unsigned int flags) | |
2898 | { | |
2899 | struct folio_batch fbatch; | |
2900 | struct kiocb iocb; | |
2901 | size_t total_spliced = 0, used, npages; | |
2902 | loff_t isize, end_offset; | |
2903 | bool writably_mapped; | |
2904 | int i, error = 0; | |
2905 | ||
83aeff88 DH |
2906 | if (unlikely(*ppos >= in->f_mapping->host->i_sb->s_maxbytes)) |
2907 | return 0; | |
2908 | ||
07073eb0 DH |
2909 | init_sync_kiocb(&iocb, in); |
2910 | iocb.ki_pos = *ppos; | |
2911 | ||
2912 | /* Work out how much data we can actually add into the pipe */ | |
2913 | used = pipe_occupancy(pipe->head, pipe->tail); | |
2914 | npages = max_t(ssize_t, pipe->max_usage - used, 0); | |
2915 | len = min_t(size_t, len, npages * PAGE_SIZE); | |
2916 | ||
2917 | folio_batch_init(&fbatch); | |
2918 | ||
2919 | do { | |
2920 | cond_resched(); | |
2921 | ||
c3722208 | 2922 | if (*ppos >= i_size_read(in->f_mapping->host)) |
07073eb0 DH |
2923 | break; |
2924 | ||
2925 | iocb.ki_pos = *ppos; | |
2926 | error = filemap_get_pages(&iocb, len, &fbatch, true); | |
2927 | if (error < 0) | |
2928 | break; | |
2929 | ||
2930 | /* | |
2931 | * i_size must be checked after we know the pages are Uptodate. | |
2932 | * | |
2933 | * Checking i_size after the check allows us to calculate | |
2934 | * the correct value for "nr", which means the zero-filled | |
2935 | * part of the page is not copied back to userspace (unless | |
2936 | * another truncate extends the file - this is desired though). | |
2937 | */ | |
c3722208 | 2938 | isize = i_size_read(in->f_mapping->host); |
07073eb0 DH |
2939 | if (unlikely(*ppos >= isize)) |
2940 | break; | |
2941 | end_offset = min_t(loff_t, isize, *ppos + len); | |
2942 | ||
2943 | /* | |
2944 | * Once we start copying data, we don't want to be touching any | |
2945 | * cachelines that might be contended: | |
2946 | */ | |
2947 | writably_mapped = mapping_writably_mapped(in->f_mapping); | |
2948 | ||
2949 | for (i = 0; i < folio_batch_count(&fbatch); i++) { | |
2950 | struct folio *folio = fbatch.folios[i]; | |
2951 | size_t n; | |
2952 | ||
2953 | if (folio_pos(folio) >= end_offset) | |
2954 | goto out; | |
2955 | folio_mark_accessed(folio); | |
2956 | ||
2957 | /* | |
2958 | * If users can be writing to this folio using arbitrary | |
2959 | * virtual addresses, take care of potential aliasing | |
2960 | * before reading the folio on the kernel side. | |
2961 | */ | |
2962 | if (writably_mapped) | |
2963 | flush_dcache_folio(folio); | |
2964 | ||
2965 | n = min_t(loff_t, len, isize - *ppos); | |
2966 | n = splice_folio_into_pipe(pipe, folio, *ppos, n); | |
2967 | if (!n) | |
2968 | goto out; | |
2969 | len -= n; | |
2970 | total_spliced += n; | |
2971 | *ppos += n; | |
2972 | in->f_ra.prev_pos = *ppos; | |
2973 | if (pipe_full(pipe->head, pipe->tail, pipe->max_usage)) | |
2974 | goto out; | |
2975 | } | |
2976 | ||
2977 | folio_batch_release(&fbatch); | |
2978 | } while (len); | |
2979 | ||
2980 | out: | |
2981 | folio_batch_release(&fbatch); | |
2982 | file_accessed(in); | |
2983 | ||
2984 | return total_spliced ? total_spliced : error; | |
2985 | } | |
7c8e01eb | 2986 | EXPORT_SYMBOL(filemap_splice_read); |
07073eb0 | 2987 | |
f5e6429a MWO |
2988 | static inline loff_t folio_seek_hole_data(struct xa_state *xas, |
2989 | struct address_space *mapping, struct folio *folio, | |
54fa39ac | 2990 | loff_t start, loff_t end, bool seek_data) |
41139aa4 | 2991 | { |
54fa39ac MWO |
2992 | const struct address_space_operations *ops = mapping->a_ops; |
2993 | size_t offset, bsz = i_blocksize(mapping->host); | |
2994 | ||
f5e6429a | 2995 | if (xa_is_value(folio) || folio_test_uptodate(folio)) |
54fa39ac MWO |
2996 | return seek_data ? start : end; |
2997 | if (!ops->is_partially_uptodate) | |
2998 | return seek_data ? end : start; | |
2999 | ||
3000 | xas_pause(xas); | |
3001 | rcu_read_unlock(); | |
f5e6429a MWO |
3002 | folio_lock(folio); |
3003 | if (unlikely(folio->mapping != mapping)) | |
54fa39ac MWO |
3004 | goto unlock; |
3005 | ||
f5e6429a | 3006 | offset = offset_in_folio(folio, start) & ~(bsz - 1); |
54fa39ac MWO |
3007 | |
3008 | do { | |
2e7e80f7 | 3009 | if (ops->is_partially_uptodate(folio, offset, bsz) == |
f5e6429a | 3010 | seek_data) |
54fa39ac MWO |
3011 | break; |
3012 | start = (start + bsz) & ~(bsz - 1); | |
3013 | offset += bsz; | |
f5e6429a | 3014 | } while (offset < folio_size(folio)); |
54fa39ac | 3015 | unlock: |
f5e6429a | 3016 | folio_unlock(folio); |
54fa39ac MWO |
3017 | rcu_read_lock(); |
3018 | return start; | |
41139aa4 MWO |
3019 | } |
3020 | ||
f5e6429a | 3021 | static inline size_t seek_folio_size(struct xa_state *xas, struct folio *folio) |
41139aa4 | 3022 | { |
f5e6429a | 3023 | if (xa_is_value(folio)) |
41139aa4 | 3024 | return PAGE_SIZE << xa_get_order(xas->xa, xas->xa_index); |
f5e6429a | 3025 | return folio_size(folio); |
41139aa4 MWO |
3026 | } |
3027 | ||
3028 | /** | |
3029 | * mapping_seek_hole_data - Seek for SEEK_DATA / SEEK_HOLE in the page cache. | |
3030 | * @mapping: Address space to search. | |
3031 | * @start: First byte to consider. | |
3032 | * @end: Limit of search (exclusive). | |
3033 | * @whence: Either SEEK_HOLE or SEEK_DATA. | |
3034 | * | |
3035 | * If the page cache knows which blocks contain holes and which blocks | |
3036 | * contain data, your filesystem can use this function to implement | |
3037 | * SEEK_HOLE and SEEK_DATA. This is useful for filesystems which are | |
3038 | * entirely memory-based such as tmpfs, and filesystems which support | |
3039 | * unwritten extents. | |
3040 | * | |
f0953a1b | 3041 | * Return: The requested offset on success, or -ENXIO if @whence specifies |
41139aa4 MWO |
3042 | * SEEK_DATA and there is no data after @start. There is an implicit hole |
3043 | * after @end - 1, so SEEK_HOLE returns @end if all the bytes between @start | |
3044 | * and @end contain data. | |
3045 | */ | |
3046 | loff_t mapping_seek_hole_data(struct address_space *mapping, loff_t start, | |
3047 | loff_t end, int whence) | |
3048 | { | |
3049 | XA_STATE(xas, &mapping->i_pages, start >> PAGE_SHIFT); | |
ed98b015 | 3050 | pgoff_t max = (end - 1) >> PAGE_SHIFT; |
41139aa4 | 3051 | bool seek_data = (whence == SEEK_DATA); |
f5e6429a | 3052 | struct folio *folio; |
41139aa4 MWO |
3053 | |
3054 | if (end <= start) | |
3055 | return -ENXIO; | |
3056 | ||
3057 | rcu_read_lock(); | |
f5e6429a | 3058 | while ((folio = find_get_entry(&xas, max, XA_PRESENT))) { |
ed98b015 | 3059 | loff_t pos = (u64)xas.xa_index << PAGE_SHIFT; |
f5e6429a | 3060 | size_t seek_size; |
41139aa4 MWO |
3061 | |
3062 | if (start < pos) { | |
3063 | if (!seek_data) | |
3064 | goto unlock; | |
3065 | start = pos; | |
3066 | } | |
3067 | ||
f5e6429a MWO |
3068 | seek_size = seek_folio_size(&xas, folio); |
3069 | pos = round_up((u64)pos + 1, seek_size); | |
3070 | start = folio_seek_hole_data(&xas, mapping, folio, start, pos, | |
54fa39ac MWO |
3071 | seek_data); |
3072 | if (start < pos) | |
41139aa4 | 3073 | goto unlock; |
ed98b015 HD |
3074 | if (start >= end) |
3075 | break; | |
3076 | if (seek_size > PAGE_SIZE) | |
3077 | xas_set(&xas, pos >> PAGE_SHIFT); | |
f5e6429a MWO |
3078 | if (!xa_is_value(folio)) |
3079 | folio_put(folio); | |
41139aa4 | 3080 | } |
41139aa4 | 3081 | if (seek_data) |
ed98b015 | 3082 | start = -ENXIO; |
41139aa4 MWO |
3083 | unlock: |
3084 | rcu_read_unlock(); | |
f5e6429a MWO |
3085 | if (folio && !xa_is_value(folio)) |
3086 | folio_put(folio); | |
41139aa4 MWO |
3087 | if (start > end) |
3088 | return end; | |
3089 | return start; | |
3090 | } | |
3091 | ||
1da177e4 | 3092 | #ifdef CONFIG_MMU |
1da177e4 | 3093 | #define MMAP_LOTSAMISS (100) |
6b4c9f44 | 3094 | /* |
e292e6d6 | 3095 | * lock_folio_maybe_drop_mmap - lock the page, possibly dropping the mmap_lock |
6b4c9f44 | 3096 | * @vmf - the vm_fault for this fault. |
e292e6d6 | 3097 | * @folio - the folio to lock. |
6b4c9f44 JB |
3098 | * @fpin - the pointer to the file we may pin (or is already pinned). |
3099 | * | |
e292e6d6 MWO |
3100 | * This works similar to lock_folio_or_retry in that it can drop the |
3101 | * mmap_lock. It differs in that it actually returns the folio locked | |
3102 | * if it returns 1 and 0 if it couldn't lock the folio. If we did have | |
3103 | * to drop the mmap_lock then fpin will point to the pinned file and | |
3104 | * needs to be fput()'ed at a later point. | |
6b4c9f44 | 3105 | */ |
e292e6d6 | 3106 | static int lock_folio_maybe_drop_mmap(struct vm_fault *vmf, struct folio *folio, |
6b4c9f44 JB |
3107 | struct file **fpin) |
3108 | { | |
7c23c782 | 3109 | if (folio_trylock(folio)) |
6b4c9f44 JB |
3110 | return 1; |
3111 | ||
8b0f9fa2 LT |
3112 | /* |
3113 | * NOTE! This will make us return with VM_FAULT_RETRY, but with | |
c1e8d7c6 | 3114 | * the mmap_lock still held. That's how FAULT_FLAG_RETRY_NOWAIT |
8b0f9fa2 LT |
3115 | * is supposed to work. We have way too many special cases.. |
3116 | */ | |
6b4c9f44 JB |
3117 | if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT) |
3118 | return 0; | |
3119 | ||
3120 | *fpin = maybe_unlock_mmap_for_io(vmf, *fpin); | |
3121 | if (vmf->flags & FAULT_FLAG_KILLABLE) { | |
af7f29d9 | 3122 | if (__folio_lock_killable(folio)) { |
6b4c9f44 | 3123 | /* |
c1e8d7c6 | 3124 | * We didn't have the right flags to drop the mmap_lock, |
6b4c9f44 JB |
3125 | * but all fault_handlers only check for fatal signals |
3126 | * if we return VM_FAULT_RETRY, so we need to drop the | |
c1e8d7c6 | 3127 | * mmap_lock here and return 0 if we don't have a fpin. |
6b4c9f44 JB |
3128 | */ |
3129 | if (*fpin == NULL) | |
d8ed45c5 | 3130 | mmap_read_unlock(vmf->vma->vm_mm); |
6b4c9f44 JB |
3131 | return 0; |
3132 | } | |
3133 | } else | |
7c23c782 MWO |
3134 | __folio_lock(folio); |
3135 | ||
6b4c9f44 JB |
3136 | return 1; |
3137 | } | |
3138 | ||
ef00e08e | 3139 | /* |
6b4c9f44 JB |
3140 | * Synchronous readahead happens when we don't even find a page in the page |
3141 | * cache at all. We don't want to perform IO under the mmap sem, so if we have | |
3142 | * to drop the mmap sem we return the file that was pinned in order for us to do | |
3143 | * that. If we didn't pin a file then we return NULL. The file that is | |
3144 | * returned needs to be fput()'ed when we're done with it. | |
ef00e08e | 3145 | */ |
6b4c9f44 | 3146 | static struct file *do_sync_mmap_readahead(struct vm_fault *vmf) |
ef00e08e | 3147 | { |
2a1180f1 JB |
3148 | struct file *file = vmf->vma->vm_file; |
3149 | struct file_ra_state *ra = &file->f_ra; | |
ef00e08e | 3150 | struct address_space *mapping = file->f_mapping; |
fcd9ae4f | 3151 | DEFINE_READAHEAD(ractl, file, ra, mapping, vmf->pgoff); |
6b4c9f44 | 3152 | struct file *fpin = NULL; |
dcfa24ba | 3153 | unsigned long vm_flags = vmf->vma->vm_flags; |
e630bfac | 3154 | unsigned int mmap_miss; |
ef00e08e | 3155 | |
4687fdbb MWO |
3156 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
3157 | /* Use the readahead code, even if readahead is disabled */ | |
dcfa24ba | 3158 | if (vm_flags & VM_HUGEPAGE) { |
4687fdbb MWO |
3159 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
3160 | ractl._index &= ~((unsigned long)HPAGE_PMD_NR - 1); | |
3161 | ra->size = HPAGE_PMD_NR; | |
3162 | /* | |
3163 | * Fetch two PMD folios, so we get the chance to actually | |
3164 | * readahead, unless we've been told not to. | |
3165 | */ | |
dcfa24ba | 3166 | if (!(vm_flags & VM_RAND_READ)) |
4687fdbb MWO |
3167 | ra->size *= 2; |
3168 | ra->async_size = HPAGE_PMD_NR; | |
3169 | page_cache_ra_order(&ractl, ra, HPAGE_PMD_ORDER); | |
3170 | return fpin; | |
3171 | } | |
3172 | #endif | |
3173 | ||
ef00e08e | 3174 | /* If we don't want any read-ahead, don't bother */ |
dcfa24ba | 3175 | if (vm_flags & VM_RAND_READ) |
6b4c9f44 | 3176 | return fpin; |
275b12bf | 3177 | if (!ra->ra_pages) |
6b4c9f44 | 3178 | return fpin; |
ef00e08e | 3179 | |
dcfa24ba | 3180 | if (vm_flags & VM_SEQ_READ) { |
6b4c9f44 | 3181 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
fcd9ae4f | 3182 | page_cache_sync_ra(&ractl, ra->ra_pages); |
6b4c9f44 | 3183 | return fpin; |
ef00e08e LT |
3184 | } |
3185 | ||
207d04ba | 3186 | /* Avoid banging the cache line if not needed */ |
e630bfac KS |
3187 | mmap_miss = READ_ONCE(ra->mmap_miss); |
3188 | if (mmap_miss < MMAP_LOTSAMISS * 10) | |
3189 | WRITE_ONCE(ra->mmap_miss, ++mmap_miss); | |
ef00e08e LT |
3190 | |
3191 | /* | |
3192 | * Do we miss much more than hit in this file? If so, | |
3193 | * stop bothering with read-ahead. It will only hurt. | |
3194 | */ | |
e630bfac | 3195 | if (mmap_miss > MMAP_LOTSAMISS) |
6b4c9f44 | 3196 | return fpin; |
ef00e08e | 3197 | |
d30a1100 WF |
3198 | /* |
3199 | * mmap read-around | |
3200 | */ | |
6b4c9f44 | 3201 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
db660d46 | 3202 | ra->start = max_t(long, 0, vmf->pgoff - ra->ra_pages / 2); |
600e19af RG |
3203 | ra->size = ra->ra_pages; |
3204 | ra->async_size = ra->ra_pages / 4; | |
db660d46 | 3205 | ractl._index = ra->start; |
56a4d67c | 3206 | page_cache_ra_order(&ractl, ra, 0); |
6b4c9f44 | 3207 | return fpin; |
ef00e08e LT |
3208 | } |
3209 | ||
3210 | /* | |
3211 | * Asynchronous readahead happens when we find the page and PG_readahead, | |
6b4c9f44 | 3212 | * so we want to possibly extend the readahead further. We return the file that |
c1e8d7c6 | 3213 | * was pinned if we have to drop the mmap_lock in order to do IO. |
ef00e08e | 3214 | */ |
6b4c9f44 | 3215 | static struct file *do_async_mmap_readahead(struct vm_fault *vmf, |
79598ced | 3216 | struct folio *folio) |
ef00e08e | 3217 | { |
2a1180f1 JB |
3218 | struct file *file = vmf->vma->vm_file; |
3219 | struct file_ra_state *ra = &file->f_ra; | |
79598ced | 3220 | DEFINE_READAHEAD(ractl, file, ra, file->f_mapping, vmf->pgoff); |
6b4c9f44 | 3221 | struct file *fpin = NULL; |
e630bfac | 3222 | unsigned int mmap_miss; |
ef00e08e LT |
3223 | |
3224 | /* If we don't want any read-ahead, don't bother */ | |
5c72feee | 3225 | if (vmf->vma->vm_flags & VM_RAND_READ || !ra->ra_pages) |
6b4c9f44 | 3226 | return fpin; |
79598ced | 3227 | |
e630bfac KS |
3228 | mmap_miss = READ_ONCE(ra->mmap_miss); |
3229 | if (mmap_miss) | |
3230 | WRITE_ONCE(ra->mmap_miss, --mmap_miss); | |
79598ced MWO |
3231 | |
3232 | if (folio_test_readahead(folio)) { | |
6b4c9f44 | 3233 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
79598ced | 3234 | page_cache_async_ra(&ractl, folio, ra->ra_pages); |
6b4c9f44 JB |
3235 | } |
3236 | return fpin; | |
ef00e08e LT |
3237 | } |
3238 | ||
485bb99b | 3239 | /** |
54cb8821 | 3240 | * filemap_fault - read in file data for page fault handling |
d0217ac0 | 3241 | * @vmf: struct vm_fault containing details of the fault |
485bb99b | 3242 | * |
54cb8821 | 3243 | * filemap_fault() is invoked via the vma operations vector for a |
1da177e4 LT |
3244 | * mapped memory region to read in file data during a page fault. |
3245 | * | |
3246 | * The goto's are kind of ugly, but this streamlines the normal case of having | |
3247 | * it in the page cache, and handles the special cases reasonably without | |
3248 | * having a lot of duplicated code. | |
9a95f3cf | 3249 | * |
c1e8d7c6 | 3250 | * vma->vm_mm->mmap_lock must be held on entry. |
9a95f3cf | 3251 | * |
c1e8d7c6 | 3252 | * If our return value has VM_FAULT_RETRY set, it's because the mmap_lock |
e292e6d6 | 3253 | * may be dropped before doing I/O or by lock_folio_maybe_drop_mmap(). |
9a95f3cf | 3254 | * |
c1e8d7c6 | 3255 | * If our return value does not have VM_FAULT_RETRY set, the mmap_lock |
9a95f3cf PC |
3256 | * has not been released. |
3257 | * | |
3258 | * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set. | |
a862f68a MR |
3259 | * |
3260 | * Return: bitwise-OR of %VM_FAULT_ codes. | |
1da177e4 | 3261 | */ |
2bcd6454 | 3262 | vm_fault_t filemap_fault(struct vm_fault *vmf) |
1da177e4 LT |
3263 | { |
3264 | int error; | |
11bac800 | 3265 | struct file *file = vmf->vma->vm_file; |
6b4c9f44 | 3266 | struct file *fpin = NULL; |
1da177e4 | 3267 | struct address_space *mapping = file->f_mapping; |
1da177e4 | 3268 | struct inode *inode = mapping->host; |
e292e6d6 MWO |
3269 | pgoff_t max_idx, index = vmf->pgoff; |
3270 | struct folio *folio; | |
2bcd6454 | 3271 | vm_fault_t ret = 0; |
730633f0 | 3272 | bool mapping_locked = false; |
1da177e4 | 3273 | |
e292e6d6 MWO |
3274 | max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); |
3275 | if (unlikely(index >= max_idx)) | |
5307cc1a | 3276 | return VM_FAULT_SIGBUS; |
1da177e4 | 3277 | |
1da177e4 | 3278 | /* |
49426420 | 3279 | * Do we have something in the page cache already? |
1da177e4 | 3280 | */ |
e292e6d6 | 3281 | folio = filemap_get_folio(mapping, index); |
66dabbb6 | 3282 | if (likely(!IS_ERR(folio))) { |
1da177e4 | 3283 | /* |
730633f0 JK |
3284 | * We found the page, so try async readahead before waiting for |
3285 | * the lock. | |
1da177e4 | 3286 | */ |
730633f0 | 3287 | if (!(vmf->flags & FAULT_FLAG_TRIED)) |
79598ced | 3288 | fpin = do_async_mmap_readahead(vmf, folio); |
e292e6d6 | 3289 | if (unlikely(!folio_test_uptodate(folio))) { |
730633f0 JK |
3290 | filemap_invalidate_lock_shared(mapping); |
3291 | mapping_locked = true; | |
3292 | } | |
3293 | } else { | |
ef00e08e | 3294 | /* No page in the page cache at all */ |
ef00e08e | 3295 | count_vm_event(PGMAJFAULT); |
2262185c | 3296 | count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT); |
ef00e08e | 3297 | ret = VM_FAULT_MAJOR; |
6b4c9f44 | 3298 | fpin = do_sync_mmap_readahead(vmf); |
ef00e08e | 3299 | retry_find: |
730633f0 | 3300 | /* |
e292e6d6 | 3301 | * See comment in filemap_create_folio() why we need |
730633f0 JK |
3302 | * invalidate_lock |
3303 | */ | |
3304 | if (!mapping_locked) { | |
3305 | filemap_invalidate_lock_shared(mapping); | |
3306 | mapping_locked = true; | |
3307 | } | |
e292e6d6 | 3308 | folio = __filemap_get_folio(mapping, index, |
a75d4c33 JB |
3309 | FGP_CREAT|FGP_FOR_MMAP, |
3310 | vmf->gfp_mask); | |
66dabbb6 | 3311 | if (IS_ERR(folio)) { |
6b4c9f44 JB |
3312 | if (fpin) |
3313 | goto out_retry; | |
730633f0 | 3314 | filemap_invalidate_unlock_shared(mapping); |
e520e932 | 3315 | return VM_FAULT_OOM; |
6b4c9f44 | 3316 | } |
1da177e4 LT |
3317 | } |
3318 | ||
e292e6d6 | 3319 | if (!lock_folio_maybe_drop_mmap(vmf, folio, &fpin)) |
6b4c9f44 | 3320 | goto out_retry; |
b522c94d ML |
3321 | |
3322 | /* Did it get truncated? */ | |
e292e6d6 MWO |
3323 | if (unlikely(folio->mapping != mapping)) { |
3324 | folio_unlock(folio); | |
3325 | folio_put(folio); | |
b522c94d ML |
3326 | goto retry_find; |
3327 | } | |
e292e6d6 | 3328 | VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio); |
b522c94d | 3329 | |
1da177e4 | 3330 | /* |
d00806b1 NP |
3331 | * We have a locked page in the page cache, now we need to check |
3332 | * that it's up-to-date. If not, it is going to be due to an error. | |
1da177e4 | 3333 | */ |
e292e6d6 | 3334 | if (unlikely(!folio_test_uptodate(folio))) { |
730633f0 JK |
3335 | /* |
3336 | * The page was in cache and uptodate and now it is not. | |
3337 | * Strange but possible since we didn't hold the page lock all | |
3338 | * the time. Let's drop everything get the invalidate lock and | |
3339 | * try again. | |
3340 | */ | |
3341 | if (!mapping_locked) { | |
e292e6d6 MWO |
3342 | folio_unlock(folio); |
3343 | folio_put(folio); | |
730633f0 JK |
3344 | goto retry_find; |
3345 | } | |
1da177e4 | 3346 | goto page_not_uptodate; |
730633f0 | 3347 | } |
1da177e4 | 3348 | |
6b4c9f44 | 3349 | /* |
c1e8d7c6 | 3350 | * We've made it this far and we had to drop our mmap_lock, now is the |
6b4c9f44 JB |
3351 | * time to return to the upper layer and have it re-find the vma and |
3352 | * redo the fault. | |
3353 | */ | |
3354 | if (fpin) { | |
e292e6d6 | 3355 | folio_unlock(folio); |
6b4c9f44 JB |
3356 | goto out_retry; |
3357 | } | |
730633f0 JK |
3358 | if (mapping_locked) |
3359 | filemap_invalidate_unlock_shared(mapping); | |
6b4c9f44 | 3360 | |
ef00e08e LT |
3361 | /* |
3362 | * Found the page and have a reference on it. | |
3363 | * We must recheck i_size under page lock. | |
3364 | */ | |
e292e6d6 MWO |
3365 | max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE); |
3366 | if (unlikely(index >= max_idx)) { | |
3367 | folio_unlock(folio); | |
3368 | folio_put(folio); | |
5307cc1a | 3369 | return VM_FAULT_SIGBUS; |
d00806b1 NP |
3370 | } |
3371 | ||
e292e6d6 | 3372 | vmf->page = folio_file_page(folio, index); |
83c54070 | 3373 | return ret | VM_FAULT_LOCKED; |
1da177e4 | 3374 | |
1da177e4 | 3375 | page_not_uptodate: |
1da177e4 LT |
3376 | /* |
3377 | * Umm, take care of errors if the page isn't up-to-date. | |
3378 | * Try to re-read it _once_. We do this synchronously, | |
3379 | * because there really aren't any performance issues here | |
3380 | * and we need to check for errors. | |
3381 | */ | |
6b4c9f44 | 3382 | fpin = maybe_unlock_mmap_for_io(vmf, fpin); |
290e1a32 | 3383 | error = filemap_read_folio(file, mapping->a_ops->read_folio, folio); |
6b4c9f44 JB |
3384 | if (fpin) |
3385 | goto out_retry; | |
e292e6d6 | 3386 | folio_put(folio); |
d00806b1 NP |
3387 | |
3388 | if (!error || error == AOP_TRUNCATED_PAGE) | |
994fc28c | 3389 | goto retry_find; |
730633f0 | 3390 | filemap_invalidate_unlock_shared(mapping); |
1da177e4 | 3391 | |
d0217ac0 | 3392 | return VM_FAULT_SIGBUS; |
6b4c9f44 JB |
3393 | |
3394 | out_retry: | |
3395 | /* | |
c1e8d7c6 | 3396 | * We dropped the mmap_lock, we need to return to the fault handler to |
6b4c9f44 JB |
3397 | * re-find the vma and come back and find our hopefully still populated |
3398 | * page. | |
3399 | */ | |
38a55db9 | 3400 | if (!IS_ERR(folio)) |
e292e6d6 | 3401 | folio_put(folio); |
730633f0 JK |
3402 | if (mapping_locked) |
3403 | filemap_invalidate_unlock_shared(mapping); | |
6b4c9f44 JB |
3404 | if (fpin) |
3405 | fput(fpin); | |
3406 | return ret | VM_FAULT_RETRY; | |
54cb8821 NP |
3407 | } |
3408 | EXPORT_SYMBOL(filemap_fault); | |
3409 | ||
8808ecab MWO |
3410 | static bool filemap_map_pmd(struct vm_fault *vmf, struct folio *folio, |
3411 | pgoff_t start) | |
f1820361 | 3412 | { |
f9ce0be7 KS |
3413 | struct mm_struct *mm = vmf->vma->vm_mm; |
3414 | ||
3415 | /* Huge page is mapped? No need to proceed. */ | |
3416 | if (pmd_trans_huge(*vmf->pmd)) { | |
8808ecab MWO |
3417 | folio_unlock(folio); |
3418 | folio_put(folio); | |
f9ce0be7 KS |
3419 | return true; |
3420 | } | |
3421 | ||
8808ecab MWO |
3422 | if (pmd_none(*vmf->pmd) && folio_test_pmd_mappable(folio)) { |
3423 | struct page *page = folio_file_page(folio, start); | |
e0f43fa5 YS |
3424 | vm_fault_t ret = do_set_pmd(vmf, page); |
3425 | if (!ret) { | |
3426 | /* The page is mapped successfully, reference consumed. */ | |
8808ecab | 3427 | folio_unlock(folio); |
e0f43fa5 | 3428 | return true; |
f9ce0be7 | 3429 | } |
f9ce0be7 KS |
3430 | } |
3431 | ||
03c4f204 QZ |
3432 | if (pmd_none(*vmf->pmd)) |
3433 | pmd_install(mm, vmf->pmd, &vmf->prealloc_pte); | |
f9ce0be7 | 3434 | |
f9ce0be7 KS |
3435 | return false; |
3436 | } | |
3437 | ||
820b05e9 | 3438 | static struct folio *next_uptodate_page(struct folio *folio, |
f9ce0be7 KS |
3439 | struct address_space *mapping, |
3440 | struct xa_state *xas, pgoff_t end_pgoff) | |
3441 | { | |
3442 | unsigned long max_idx; | |
3443 | ||
3444 | do { | |
9184a307 | 3445 | if (!folio) |
f9ce0be7 | 3446 | return NULL; |
9184a307 | 3447 | if (xas_retry(xas, folio)) |
f9ce0be7 | 3448 | continue; |
9184a307 | 3449 | if (xa_is_value(folio)) |
f9ce0be7 | 3450 | continue; |
9184a307 | 3451 | if (folio_test_locked(folio)) |
f9ce0be7 | 3452 | continue; |
9184a307 | 3453 | if (!folio_try_get_rcu(folio)) |
f9ce0be7 KS |
3454 | continue; |
3455 | /* Has the page moved or been split? */ | |
9184a307 | 3456 | if (unlikely(folio != xas_reload(xas))) |
f9ce0be7 | 3457 | goto skip; |
9184a307 | 3458 | if (!folio_test_uptodate(folio) || folio_test_readahead(folio)) |
f9ce0be7 | 3459 | goto skip; |
9184a307 | 3460 | if (!folio_trylock(folio)) |
f9ce0be7 | 3461 | goto skip; |
9184a307 | 3462 | if (folio->mapping != mapping) |
f9ce0be7 | 3463 | goto unlock; |
9184a307 | 3464 | if (!folio_test_uptodate(folio)) |
f9ce0be7 KS |
3465 | goto unlock; |
3466 | max_idx = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE); | |
3467 | if (xas->xa_index >= max_idx) | |
3468 | goto unlock; | |
820b05e9 | 3469 | return folio; |
f9ce0be7 | 3470 | unlock: |
9184a307 | 3471 | folio_unlock(folio); |
f9ce0be7 | 3472 | skip: |
9184a307 MWO |
3473 | folio_put(folio); |
3474 | } while ((folio = xas_next_entry(xas, end_pgoff)) != NULL); | |
f9ce0be7 KS |
3475 | |
3476 | return NULL; | |
3477 | } | |
3478 | ||
820b05e9 | 3479 | static inline struct folio *first_map_page(struct address_space *mapping, |
f9ce0be7 KS |
3480 | struct xa_state *xas, |
3481 | pgoff_t end_pgoff) | |
3482 | { | |
3483 | return next_uptodate_page(xas_find(xas, end_pgoff), | |
3484 | mapping, xas, end_pgoff); | |
3485 | } | |
3486 | ||
820b05e9 | 3487 | static inline struct folio *next_map_page(struct address_space *mapping, |
f9ce0be7 KS |
3488 | struct xa_state *xas, |
3489 | pgoff_t end_pgoff) | |
3490 | { | |
3491 | return next_uptodate_page(xas_next_entry(xas, end_pgoff), | |
3492 | mapping, xas, end_pgoff); | |
3493 | } | |
3494 | ||
3495 | vm_fault_t filemap_map_pages(struct vm_fault *vmf, | |
3496 | pgoff_t start_pgoff, pgoff_t end_pgoff) | |
3497 | { | |
3498 | struct vm_area_struct *vma = vmf->vma; | |
3499 | struct file *file = vma->vm_file; | |
f1820361 | 3500 | struct address_space *mapping = file->f_mapping; |
bae473a4 | 3501 | pgoff_t last_pgoff = start_pgoff; |
9d3af4b4 | 3502 | unsigned long addr; |
070e807c | 3503 | XA_STATE(xas, &mapping->i_pages, start_pgoff); |
820b05e9 MWO |
3504 | struct folio *folio; |
3505 | struct page *page; | |
e630bfac | 3506 | unsigned int mmap_miss = READ_ONCE(file->f_ra.mmap_miss); |
f9ce0be7 | 3507 | vm_fault_t ret = 0; |
f1820361 KS |
3508 | |
3509 | rcu_read_lock(); | |
820b05e9 MWO |
3510 | folio = first_map_page(mapping, &xas, end_pgoff); |
3511 | if (!folio) | |
f9ce0be7 | 3512 | goto out; |
f1820361 | 3513 | |
8808ecab | 3514 | if (filemap_map_pmd(vmf, folio, start_pgoff)) { |
f9ce0be7 KS |
3515 | ret = VM_FAULT_NOPAGE; |
3516 | goto out; | |
3517 | } | |
f1820361 | 3518 | |
9d3af4b4 WD |
3519 | addr = vma->vm_start + ((start_pgoff - vma->vm_pgoff) << PAGE_SHIFT); |
3520 | vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl); | |
65747aaf HD |
3521 | if (!vmf->pte) { |
3522 | folio_unlock(folio); | |
3523 | folio_put(folio); | |
3524 | goto out; | |
3525 | } | |
f9ce0be7 | 3526 | do { |
6b24ca4a | 3527 | again: |
820b05e9 | 3528 | page = folio_file_page(folio, xas.xa_index); |
f9ce0be7 | 3529 | if (PageHWPoison(page)) |
f1820361 KS |
3530 | goto unlock; |
3531 | ||
e630bfac KS |
3532 | if (mmap_miss > 0) |
3533 | mmap_miss--; | |
7267ec00 | 3534 | |
9d3af4b4 | 3535 | addr += (xas.xa_index - last_pgoff) << PAGE_SHIFT; |
f9ce0be7 | 3536 | vmf->pte += xas.xa_index - last_pgoff; |
070e807c | 3537 | last_pgoff = xas.xa_index; |
f9ce0be7 | 3538 | |
5c041f5d PX |
3539 | /* |
3540 | * NOTE: If there're PTE markers, we'll leave them to be | |
3541 | * handled in the specific fault path, and it'll prohibit the | |
3542 | * fault-around logic. | |
3543 | */ | |
c33c7948 | 3544 | if (!pte_none(ptep_get(vmf->pte))) |
7267ec00 | 3545 | goto unlock; |
f9ce0be7 | 3546 | |
46bdb427 | 3547 | /* We're about to handle the fault */ |
9d3af4b4 | 3548 | if (vmf->address == addr) |
46bdb427 | 3549 | ret = VM_FAULT_NOPAGE; |
46bdb427 | 3550 | |
9d3af4b4 | 3551 | do_set_pte(vmf, page, addr); |
f9ce0be7 | 3552 | /* no need to invalidate: a not-present page won't be cached */ |
9d3af4b4 | 3553 | update_mmu_cache(vma, addr, vmf->pte); |
6b24ca4a MWO |
3554 | if (folio_more_pages(folio, xas.xa_index, end_pgoff)) { |
3555 | xas.xa_index++; | |
3556 | folio_ref_inc(folio); | |
3557 | goto again; | |
3558 | } | |
820b05e9 | 3559 | folio_unlock(folio); |
f9ce0be7 | 3560 | continue; |
f1820361 | 3561 | unlock: |
6b24ca4a MWO |
3562 | if (folio_more_pages(folio, xas.xa_index, end_pgoff)) { |
3563 | xas.xa_index++; | |
3564 | goto again; | |
3565 | } | |
820b05e9 MWO |
3566 | folio_unlock(folio); |
3567 | folio_put(folio); | |
3568 | } while ((folio = next_map_page(mapping, &xas, end_pgoff)) != NULL); | |
f9ce0be7 KS |
3569 | pte_unmap_unlock(vmf->pte, vmf->ptl); |
3570 | out: | |
f1820361 | 3571 | rcu_read_unlock(); |
e630bfac | 3572 | WRITE_ONCE(file->f_ra.mmap_miss, mmap_miss); |
f9ce0be7 | 3573 | return ret; |
f1820361 KS |
3574 | } |
3575 | EXPORT_SYMBOL(filemap_map_pages); | |
3576 | ||
2bcd6454 | 3577 | vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf) |
4fcf1c62 | 3578 | { |
5df1a672 | 3579 | struct address_space *mapping = vmf->vma->vm_file->f_mapping; |
960ea971 | 3580 | struct folio *folio = page_folio(vmf->page); |
2bcd6454 | 3581 | vm_fault_t ret = VM_FAULT_LOCKED; |
4fcf1c62 | 3582 | |
5df1a672 | 3583 | sb_start_pagefault(mapping->host->i_sb); |
11bac800 | 3584 | file_update_time(vmf->vma->vm_file); |
960ea971 MWO |
3585 | folio_lock(folio); |
3586 | if (folio->mapping != mapping) { | |
3587 | folio_unlock(folio); | |
4fcf1c62 JK |
3588 | ret = VM_FAULT_NOPAGE; |
3589 | goto out; | |
3590 | } | |
14da9200 | 3591 | /* |
960ea971 | 3592 | * We mark the folio dirty already here so that when freeze is in |
14da9200 | 3593 | * progress, we are guaranteed that writeback during freezing will |
960ea971 | 3594 | * see the dirty folio and writeprotect it again. |
14da9200 | 3595 | */ |
960ea971 MWO |
3596 | folio_mark_dirty(folio); |
3597 | folio_wait_stable(folio); | |
4fcf1c62 | 3598 | out: |
5df1a672 | 3599 | sb_end_pagefault(mapping->host->i_sb); |
4fcf1c62 JK |
3600 | return ret; |
3601 | } | |
4fcf1c62 | 3602 | |
f0f37e2f | 3603 | const struct vm_operations_struct generic_file_vm_ops = { |
54cb8821 | 3604 | .fault = filemap_fault, |
f1820361 | 3605 | .map_pages = filemap_map_pages, |
4fcf1c62 | 3606 | .page_mkwrite = filemap_page_mkwrite, |
1da177e4 LT |
3607 | }; |
3608 | ||
3609 | /* This is used for a general mmap of a disk file */ | |
3610 | ||
68d68ff6 | 3611 | int generic_file_mmap(struct file *file, struct vm_area_struct *vma) |
1da177e4 LT |
3612 | { |
3613 | struct address_space *mapping = file->f_mapping; | |
3614 | ||
7e0a1265 | 3615 | if (!mapping->a_ops->read_folio) |
1da177e4 LT |
3616 | return -ENOEXEC; |
3617 | file_accessed(file); | |
3618 | vma->vm_ops = &generic_file_vm_ops; | |
3619 | return 0; | |
3620 | } | |
1da177e4 LT |
3621 | |
3622 | /* | |
3623 | * This is for filesystems which do not implement ->writepage. | |
3624 | */ | |
3625 | int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma) | |
3626 | { | |
3627 | if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) | |
3628 | return -EINVAL; | |
3629 | return generic_file_mmap(file, vma); | |
3630 | } | |
3631 | #else | |
4b96a37d | 3632 | vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf) |
45397228 | 3633 | { |
4b96a37d | 3634 | return VM_FAULT_SIGBUS; |
45397228 | 3635 | } |
68d68ff6 | 3636 | int generic_file_mmap(struct file *file, struct vm_area_struct *vma) |
1da177e4 LT |
3637 | { |
3638 | return -ENOSYS; | |
3639 | } | |
68d68ff6 | 3640 | int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma) |
1da177e4 LT |
3641 | { |
3642 | return -ENOSYS; | |
3643 | } | |
3644 | #endif /* CONFIG_MMU */ | |
3645 | ||
45397228 | 3646 | EXPORT_SYMBOL(filemap_page_mkwrite); |
1da177e4 LT |
3647 | EXPORT_SYMBOL(generic_file_mmap); |
3648 | EXPORT_SYMBOL(generic_file_readonly_mmap); | |
3649 | ||
539a3322 | 3650 | static struct folio *do_read_cache_folio(struct address_space *mapping, |
e9b5b23e | 3651 | pgoff_t index, filler_t filler, struct file *file, gfp_t gfp) |
67f9fd91 | 3652 | { |
539a3322 | 3653 | struct folio *folio; |
1da177e4 | 3654 | int err; |
07950008 MWO |
3655 | |
3656 | if (!filler) | |
3657 | filler = mapping->a_ops->read_folio; | |
1da177e4 | 3658 | repeat: |
539a3322 | 3659 | folio = filemap_get_folio(mapping, index); |
66dabbb6 | 3660 | if (IS_ERR(folio)) { |
539a3322 MWO |
3661 | folio = filemap_alloc_folio(gfp, 0); |
3662 | if (!folio) | |
eb2be189 | 3663 | return ERR_PTR(-ENOMEM); |
539a3322 | 3664 | err = filemap_add_folio(mapping, folio, index, gfp); |
eb2be189 | 3665 | if (unlikely(err)) { |
539a3322 | 3666 | folio_put(folio); |
eb2be189 NP |
3667 | if (err == -EEXIST) |
3668 | goto repeat; | |
22ecdb4f | 3669 | /* Presumably ENOMEM for xarray node */ |
1da177e4 LT |
3670 | return ERR_PTR(err); |
3671 | } | |
32b63529 | 3672 | |
9bc3e869 | 3673 | goto filler; |
32b63529 | 3674 | } |
539a3322 | 3675 | if (folio_test_uptodate(folio)) |
1da177e4 LT |
3676 | goto out; |
3677 | ||
81f4c03b MWO |
3678 | if (!folio_trylock(folio)) { |
3679 | folio_put_wait_locked(folio, TASK_UNINTERRUPTIBLE); | |
3680 | goto repeat; | |
3681 | } | |
ebded027 | 3682 | |
81f4c03b | 3683 | /* Folio was truncated from mapping */ |
539a3322 MWO |
3684 | if (!folio->mapping) { |
3685 | folio_unlock(folio); | |
3686 | folio_put(folio); | |
32b63529 | 3687 | goto repeat; |
1da177e4 | 3688 | } |
ebded027 MG |
3689 | |
3690 | /* Someone else locked and filled the page in a very small window */ | |
539a3322 MWO |
3691 | if (folio_test_uptodate(folio)) { |
3692 | folio_unlock(folio); | |
1da177e4 LT |
3693 | goto out; |
3694 | } | |
faffdfa0 | 3695 | |
9bc3e869 | 3696 | filler: |
290e1a32 | 3697 | err = filemap_read_folio(file, filler, folio); |
1dfa24a4 | 3698 | if (err) { |
9bc3e869 | 3699 | folio_put(folio); |
1dfa24a4 MWO |
3700 | if (err == AOP_TRUNCATED_PAGE) |
3701 | goto repeat; | |
9bc3e869 MWO |
3702 | return ERR_PTR(err); |
3703 | } | |
32b63529 | 3704 | |
c855ff37 | 3705 | out: |
539a3322 MWO |
3706 | folio_mark_accessed(folio); |
3707 | return folio; | |
6fe6900e | 3708 | } |
0531b2aa LT |
3709 | |
3710 | /** | |
e9b5b23e MWO |
3711 | * read_cache_folio - Read into page cache, fill it if needed. |
3712 | * @mapping: The address_space to read from. | |
3713 | * @index: The index to read. | |
3714 | * @filler: Function to perform the read, or NULL to use aops->read_folio(). | |
3715 | * @file: Passed to filler function, may be NULL if not required. | |
0531b2aa | 3716 | * |
e9b5b23e MWO |
3717 | * Read one page into the page cache. If it succeeds, the folio returned |
3718 | * will contain @index, but it may not be the first page of the folio. | |
a862f68a | 3719 | * |
e9b5b23e MWO |
3720 | * If the filler function returns an error, it will be returned to the |
3721 | * caller. | |
730633f0 | 3722 | * |
e9b5b23e MWO |
3723 | * Context: May sleep. Expects mapping->invalidate_lock to be held. |
3724 | * Return: An uptodate folio on success, ERR_PTR() on failure. | |
0531b2aa | 3725 | */ |
539a3322 | 3726 | struct folio *read_cache_folio(struct address_space *mapping, pgoff_t index, |
e9b5b23e | 3727 | filler_t filler, struct file *file) |
539a3322 | 3728 | { |
e9b5b23e | 3729 | return do_read_cache_folio(mapping, index, filler, file, |
539a3322 MWO |
3730 | mapping_gfp_mask(mapping)); |
3731 | } | |
3732 | EXPORT_SYMBOL(read_cache_folio); | |
3733 | ||
3e629597 MWO |
3734 | /** |
3735 | * mapping_read_folio_gfp - Read into page cache, using specified allocation flags. | |
3736 | * @mapping: The address_space for the folio. | |
3737 | * @index: The index that the allocated folio will contain. | |
3738 | * @gfp: The page allocator flags to use if allocating. | |
3739 | * | |
3740 | * This is the same as "read_cache_folio(mapping, index, NULL, NULL)", but with | |
3741 | * any new memory allocations done using the specified allocation flags. | |
3742 | * | |
3743 | * The most likely error from this function is EIO, but ENOMEM is | |
3744 | * possible and so is EINTR. If ->read_folio returns another error, | |
3745 | * that will be returned to the caller. | |
3746 | * | |
3747 | * The function expects mapping->invalidate_lock to be already held. | |
3748 | * | |
3749 | * Return: Uptodate folio on success, ERR_PTR() on failure. | |
3750 | */ | |
3751 | struct folio *mapping_read_folio_gfp(struct address_space *mapping, | |
3752 | pgoff_t index, gfp_t gfp) | |
3753 | { | |
3754 | return do_read_cache_folio(mapping, index, NULL, NULL, gfp); | |
3755 | } | |
3756 | EXPORT_SYMBOL(mapping_read_folio_gfp); | |
3757 | ||
539a3322 | 3758 | static struct page *do_read_cache_page(struct address_space *mapping, |
e9b5b23e | 3759 | pgoff_t index, filler_t *filler, struct file *file, gfp_t gfp) |
539a3322 MWO |
3760 | { |
3761 | struct folio *folio; | |
3762 | ||
e9b5b23e | 3763 | folio = do_read_cache_folio(mapping, index, filler, file, gfp); |
539a3322 MWO |
3764 | if (IS_ERR(folio)) |
3765 | return &folio->page; | |
3766 | return folio_file_page(folio, index); | |
3767 | } | |
3768 | ||
67f9fd91 | 3769 | struct page *read_cache_page(struct address_space *mapping, |
e9b5b23e | 3770 | pgoff_t index, filler_t *filler, struct file *file) |
0531b2aa | 3771 | { |
e9b5b23e | 3772 | return do_read_cache_page(mapping, index, filler, file, |
d322a8e5 | 3773 | mapping_gfp_mask(mapping)); |
0531b2aa | 3774 | } |
67f9fd91 | 3775 | EXPORT_SYMBOL(read_cache_page); |
0531b2aa LT |
3776 | |
3777 | /** | |
3778 | * read_cache_page_gfp - read into page cache, using specified page allocation flags. | |
3779 | * @mapping: the page's address_space | |
3780 | * @index: the page index | |
3781 | * @gfp: the page allocator flags to use if allocating | |
3782 | * | |
3783 | * This is the same as "read_mapping_page(mapping, index, NULL)", but with | |
e6f67b8c | 3784 | * any new page allocations done using the specified allocation flags. |
0531b2aa LT |
3785 | * |
3786 | * If the page does not get brought uptodate, return -EIO. | |
a862f68a | 3787 | * |
730633f0 JK |
3788 | * The function expects mapping->invalidate_lock to be already held. |
3789 | * | |
a862f68a | 3790 | * Return: up to date page on success, ERR_PTR() on failure. |
0531b2aa LT |
3791 | */ |
3792 | struct page *read_cache_page_gfp(struct address_space *mapping, | |
3793 | pgoff_t index, | |
3794 | gfp_t gfp) | |
3795 | { | |
6c45b454 | 3796 | return do_read_cache_page(mapping, index, NULL, NULL, gfp); |
0531b2aa LT |
3797 | } |
3798 | EXPORT_SYMBOL(read_cache_page_gfp); | |
3799 | ||
a92853b6 KK |
3800 | /* |
3801 | * Warn about a page cache invalidation failure during a direct I/O write. | |
3802 | */ | |
c402a9a9 | 3803 | static void dio_warn_stale_pagecache(struct file *filp) |
a92853b6 KK |
3804 | { |
3805 | static DEFINE_RATELIMIT_STATE(_rs, 86400 * HZ, DEFAULT_RATELIMIT_BURST); | |
3806 | char pathname[128]; | |
a92853b6 KK |
3807 | char *path; |
3808 | ||
5df1a672 | 3809 | errseq_set(&filp->f_mapping->wb_err, -EIO); |
a92853b6 KK |
3810 | if (__ratelimit(&_rs)) { |
3811 | path = file_path(filp, pathname, sizeof(pathname)); | |
3812 | if (IS_ERR(path)) | |
3813 | path = "(unknown)"; | |
3814 | pr_crit("Page cache invalidation failure on direct I/O. Possible data corruption due to collision with buffered I/O!\n"); | |
3815 | pr_crit("File: %s PID: %d Comm: %.20s\n", path, current->pid, | |
3816 | current->comm); | |
3817 | } | |
3818 | } | |
3819 | ||
c402a9a9 | 3820 | void kiocb_invalidate_post_direct_write(struct kiocb *iocb, size_t count) |
1da177e4 | 3821 | { |
c402a9a9 | 3822 | struct address_space *mapping = iocb->ki_filp->f_mapping; |
1da177e4 | 3823 | |
c402a9a9 CH |
3824 | if (mapping->nrpages && |
3825 | invalidate_inode_pages2_range(mapping, | |
3826 | iocb->ki_pos >> PAGE_SHIFT, | |
3827 | (iocb->ki_pos + count - 1) >> PAGE_SHIFT)) | |
3828 | dio_warn_stale_pagecache(iocb->ki_filp); | |
3829 | } | |
a969e903 | 3830 | |
1da177e4 | 3831 | ssize_t |
1af5bb49 | 3832 | generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from) |
1da177e4 | 3833 | { |
c402a9a9 CH |
3834 | struct address_space *mapping = iocb->ki_filp->f_mapping; |
3835 | size_t write_len = iov_iter_count(from); | |
3836 | ssize_t written; | |
a969e903 | 3837 | |
55635ba7 AR |
3838 | /* |
3839 | * If a page can not be invalidated, return 0 to fall back | |
3840 | * to buffered write. | |
3841 | */ | |
e003f74a | 3842 | written = kiocb_invalidate_pages(iocb, write_len); |
55635ba7 AR |
3843 | if (written) { |
3844 | if (written == -EBUSY) | |
3845 | return 0; | |
c402a9a9 | 3846 | return written; |
a969e903 CH |
3847 | } |
3848 | ||
639a93a5 | 3849 | written = mapping->a_ops->direct_IO(iocb, from); |
a969e903 CH |
3850 | |
3851 | /* | |
3852 | * Finally, try again to invalidate clean pages which might have been | |
3853 | * cached by non-direct readahead, or faulted in by get_user_pages() | |
3854 | * if the source of the write was an mmap'ed region of the file | |
3855 | * we're writing. Either one is a pretty crazy thing to do, | |
3856 | * so we don't support it 100%. If this invalidation | |
3857 | * fails, tough, the write still worked... | |
332391a9 LC |
3858 | * |
3859 | * Most of the time we do not need this since dio_complete() will do | |
3860 | * the invalidation for us. However there are some file systems that | |
3861 | * do not end up with dio_complete() being called, so let's not break | |
80c1fe90 KK |
3862 | * them by removing it completely. |
3863 | * | |
9266a140 KK |
3864 | * Noticeable example is a blkdev_direct_IO(). |
3865 | * | |
80c1fe90 | 3866 | * Skip invalidation for async writes or if mapping has no pages. |
a969e903 | 3867 | */ |
1da177e4 | 3868 | if (written > 0) { |
c402a9a9 CH |
3869 | struct inode *inode = mapping->host; |
3870 | loff_t pos = iocb->ki_pos; | |
3871 | ||
3872 | kiocb_invalidate_post_direct_write(iocb, written); | |
0116651c | 3873 | pos += written; |
639a93a5 | 3874 | write_len -= written; |
0116651c NK |
3875 | if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) { |
3876 | i_size_write(inode, pos); | |
1da177e4 LT |
3877 | mark_inode_dirty(inode); |
3878 | } | |
5cb6c6c7 | 3879 | iocb->ki_pos = pos; |
1da177e4 | 3880 | } |
ab2125df PB |
3881 | if (written != -EIOCBQUEUED) |
3882 | iov_iter_revert(from, write_len - iov_iter_count(from)); | |
1da177e4 LT |
3883 | return written; |
3884 | } | |
3885 | EXPORT_SYMBOL(generic_file_direct_write); | |
3886 | ||
800ba295 | 3887 | ssize_t generic_perform_write(struct kiocb *iocb, struct iov_iter *i) |
afddba49 | 3888 | { |
800ba295 MWO |
3889 | struct file *file = iocb->ki_filp; |
3890 | loff_t pos = iocb->ki_pos; | |
afddba49 NP |
3891 | struct address_space *mapping = file->f_mapping; |
3892 | const struct address_space_operations *a_ops = mapping->a_ops; | |
3893 | long status = 0; | |
3894 | ssize_t written = 0; | |
674b892e | 3895 | |
afddba49 NP |
3896 | do { |
3897 | struct page *page; | |
afddba49 NP |
3898 | unsigned long offset; /* Offset into pagecache page */ |
3899 | unsigned long bytes; /* Bytes to write to page */ | |
3900 | size_t copied; /* Bytes copied from user */ | |
1468c6f4 | 3901 | void *fsdata = NULL; |
afddba49 | 3902 | |
09cbfeaf KS |
3903 | offset = (pos & (PAGE_SIZE - 1)); |
3904 | bytes = min_t(unsigned long, PAGE_SIZE - offset, | |
afddba49 NP |
3905 | iov_iter_count(i)); |
3906 | ||
3907 | again: | |
00a3d660 LT |
3908 | /* |
3909 | * Bring in the user page that we will copy from _first_. | |
3910 | * Otherwise there's a nasty deadlock on copying from the | |
3911 | * same page as we're writing to, without it being marked | |
3912 | * up-to-date. | |
00a3d660 | 3913 | */ |
631f871f | 3914 | if (unlikely(fault_in_iov_iter_readable(i, bytes) == bytes)) { |
00a3d660 LT |
3915 | status = -EFAULT; |
3916 | break; | |
3917 | } | |
3918 | ||
296291cd JK |
3919 | if (fatal_signal_pending(current)) { |
3920 | status = -EINTR; | |
3921 | break; | |
3922 | } | |
3923 | ||
9d6b0cd7 | 3924 | status = a_ops->write_begin(file, mapping, pos, bytes, |
afddba49 | 3925 | &page, &fsdata); |
2457aec6 | 3926 | if (unlikely(status < 0)) |
afddba49 NP |
3927 | break; |
3928 | ||
931e80e4 | 3929 | if (mapping_writably_mapped(mapping)) |
3930 | flush_dcache_page(page); | |
00a3d660 | 3931 | |
f0b65f39 | 3932 | copied = copy_page_from_iter_atomic(page, offset, bytes, i); |
afddba49 NP |
3933 | flush_dcache_page(page); |
3934 | ||
3935 | status = a_ops->write_end(file, mapping, pos, bytes, copied, | |
3936 | page, fsdata); | |
f0b65f39 AV |
3937 | if (unlikely(status != copied)) { |
3938 | iov_iter_revert(i, copied - max(status, 0L)); | |
3939 | if (unlikely(status < 0)) | |
3940 | break; | |
3941 | } | |
afddba49 NP |
3942 | cond_resched(); |
3943 | ||
bc1bb416 | 3944 | if (unlikely(status == 0)) { |
afddba49 | 3945 | /* |
bc1bb416 AV |
3946 | * A short copy made ->write_end() reject the |
3947 | * thing entirely. Might be memory poisoning | |
3948 | * halfway through, might be a race with munmap, | |
3949 | * might be severe memory pressure. | |
afddba49 | 3950 | */ |
bc1bb416 AV |
3951 | if (copied) |
3952 | bytes = copied; | |
afddba49 NP |
3953 | goto again; |
3954 | } | |
f0b65f39 AV |
3955 | pos += status; |
3956 | written += status; | |
afddba49 NP |
3957 | |
3958 | balance_dirty_pages_ratelimited(mapping); | |
afddba49 NP |
3959 | } while (iov_iter_count(i)); |
3960 | ||
182c25e9 CH |
3961 | if (!written) |
3962 | return status; | |
3963 | iocb->ki_pos += written; | |
3964 | return written; | |
afddba49 | 3965 | } |
3b93f911 | 3966 | EXPORT_SYMBOL(generic_perform_write); |
1da177e4 | 3967 | |
e4dd9de3 | 3968 | /** |
8174202b | 3969 | * __generic_file_write_iter - write data to a file |
e4dd9de3 | 3970 | * @iocb: IO state structure (file, offset, etc.) |
8174202b | 3971 | * @from: iov_iter with data to write |
e4dd9de3 JK |
3972 | * |
3973 | * This function does all the work needed for actually writing data to a | |
3974 | * file. It does all basic checks, removes SUID from the file, updates | |
3975 | * modification times and calls proper subroutines depending on whether we | |
3976 | * do direct IO or a standard buffered write. | |
3977 | * | |
9608703e | 3978 | * It expects i_rwsem to be grabbed unless we work on a block device or similar |
e4dd9de3 JK |
3979 | * object which does not need locking at all. |
3980 | * | |
3981 | * This function does *not* take care of syncing data in case of O_SYNC write. | |
3982 | * A caller has to handle it. This is mainly due to the fact that we want to | |
9608703e | 3983 | * avoid syncing under i_rwsem. |
a862f68a MR |
3984 | * |
3985 | * Return: | |
3986 | * * number of bytes written, even for truncated writes | |
3987 | * * negative error code if no data has been written at all | |
e4dd9de3 | 3988 | */ |
8174202b | 3989 | ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
1da177e4 LT |
3990 | { |
3991 | struct file *file = iocb->ki_filp; | |
68d68ff6 | 3992 | struct address_space *mapping = file->f_mapping; |
44fff0fa CH |
3993 | struct inode *inode = mapping->host; |
3994 | ssize_t ret; | |
1da177e4 | 3995 | |
44fff0fa CH |
3996 | ret = file_remove_privs(file); |
3997 | if (ret) | |
3998 | return ret; | |
1da177e4 | 3999 | |
44fff0fa CH |
4000 | ret = file_update_time(file); |
4001 | if (ret) | |
4002 | return ret; | |
fb5527e6 | 4003 | |
2ba48ce5 | 4004 | if (iocb->ki_flags & IOCB_DIRECT) { |
44fff0fa | 4005 | ret = generic_file_direct_write(iocb, from); |
1da177e4 | 4006 | /* |
fbbbad4b MW |
4007 | * If the write stopped short of completing, fall back to |
4008 | * buffered writes. Some filesystems do this for writes to | |
4009 | * holes, for example. For DAX files, a buffered write will | |
4010 | * not succeed (even if it did, DAX does not handle dirty | |
4011 | * page-cache pages correctly). | |
1da177e4 | 4012 | */ |
44fff0fa CH |
4013 | if (ret < 0 || !iov_iter_count(from) || IS_DAX(inode)) |
4014 | return ret; | |
4015 | return direct_write_fallback(iocb, from, ret, | |
4016 | generic_perform_write(iocb, from)); | |
fb5527e6 | 4017 | } |
44fff0fa CH |
4018 | |
4019 | return generic_perform_write(iocb, from); | |
1da177e4 | 4020 | } |
8174202b | 4021 | EXPORT_SYMBOL(__generic_file_write_iter); |
e4dd9de3 | 4022 | |
e4dd9de3 | 4023 | /** |
8174202b | 4024 | * generic_file_write_iter - write data to a file |
e4dd9de3 | 4025 | * @iocb: IO state structure |
8174202b | 4026 | * @from: iov_iter with data to write |
e4dd9de3 | 4027 | * |
8174202b | 4028 | * This is a wrapper around __generic_file_write_iter() to be used by most |
e4dd9de3 | 4029 | * filesystems. It takes care of syncing the file in case of O_SYNC file |
9608703e | 4030 | * and acquires i_rwsem as needed. |
a862f68a MR |
4031 | * Return: |
4032 | * * negative error code if no data has been written at all of | |
4033 | * vfs_fsync_range() failed for a synchronous write | |
4034 | * * number of bytes written, even for truncated writes | |
e4dd9de3 | 4035 | */ |
8174202b | 4036 | ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
1da177e4 LT |
4037 | { |
4038 | struct file *file = iocb->ki_filp; | |
148f948b | 4039 | struct inode *inode = file->f_mapping->host; |
1da177e4 | 4040 | ssize_t ret; |
1da177e4 | 4041 | |
5955102c | 4042 | inode_lock(inode); |
3309dd04 AV |
4043 | ret = generic_write_checks(iocb, from); |
4044 | if (ret > 0) | |
5f380c7f | 4045 | ret = __generic_file_write_iter(iocb, from); |
5955102c | 4046 | inode_unlock(inode); |
1da177e4 | 4047 | |
e2592217 CH |
4048 | if (ret > 0) |
4049 | ret = generic_write_sync(iocb, ret); | |
1da177e4 LT |
4050 | return ret; |
4051 | } | |
8174202b | 4052 | EXPORT_SYMBOL(generic_file_write_iter); |
1da177e4 | 4053 | |
cf9a2ae8 | 4054 | /** |
82c50f8b MWO |
4055 | * filemap_release_folio() - Release fs-specific metadata on a folio. |
4056 | * @folio: The folio which the kernel is trying to free. | |
4057 | * @gfp: Memory allocation flags (and I/O mode). | |
cf9a2ae8 | 4058 | * |
82c50f8b MWO |
4059 | * The address_space is trying to release any data attached to a folio |
4060 | * (presumably at folio->private). | |
cf9a2ae8 | 4061 | * |
82c50f8b MWO |
4062 | * This will also be called if the private_2 flag is set on a page, |
4063 | * indicating that the folio has other metadata associated with it. | |
266cf658 | 4064 | * |
82c50f8b MWO |
4065 | * The @gfp argument specifies whether I/O may be performed to release |
4066 | * this page (__GFP_IO), and whether the call may block | |
4067 | * (__GFP_RECLAIM & __GFP_FS). | |
cf9a2ae8 | 4068 | * |
82c50f8b | 4069 | * Return: %true if the release was successful, otherwise %false. |
cf9a2ae8 | 4070 | */ |
82c50f8b | 4071 | bool filemap_release_folio(struct folio *folio, gfp_t gfp) |
cf9a2ae8 | 4072 | { |
82c50f8b | 4073 | struct address_space * const mapping = folio->mapping; |
cf9a2ae8 | 4074 | |
82c50f8b | 4075 | BUG_ON(!folio_test_locked(folio)); |
0201ebf2 DH |
4076 | if (!folio_needs_release(folio)) |
4077 | return true; | |
82c50f8b MWO |
4078 | if (folio_test_writeback(folio)) |
4079 | return false; | |
cf9a2ae8 | 4080 | |
fa29000b MWO |
4081 | if (mapping && mapping->a_ops->release_folio) |
4082 | return mapping->a_ops->release_folio(folio, gfp); | |
68189fef | 4083 | return try_to_free_buffers(folio); |
cf9a2ae8 | 4084 | } |
82c50f8b | 4085 | EXPORT_SYMBOL(filemap_release_folio); |
cf264e13 NP |
4086 | |
4087 | #ifdef CONFIG_CACHESTAT_SYSCALL | |
4088 | /** | |
4089 | * filemap_cachestat() - compute the page cache statistics of a mapping | |
4090 | * @mapping: The mapping to compute the statistics for. | |
4091 | * @first_index: The starting page cache index. | |
4092 | * @last_index: The final page index (inclusive). | |
4093 | * @cs: the cachestat struct to write the result to. | |
4094 | * | |
4095 | * This will query the page cache statistics of a mapping in the | |
4096 | * page range of [first_index, last_index] (inclusive). The statistics | |
4097 | * queried include: number of dirty pages, number of pages marked for | |
4098 | * writeback, and the number of (recently) evicted pages. | |
4099 | */ | |
4100 | static void filemap_cachestat(struct address_space *mapping, | |
4101 | pgoff_t first_index, pgoff_t last_index, struct cachestat *cs) | |
4102 | { | |
4103 | XA_STATE(xas, &mapping->i_pages, first_index); | |
4104 | struct folio *folio; | |
4105 | ||
4106 | rcu_read_lock(); | |
4107 | xas_for_each(&xas, folio, last_index) { | |
4108 | unsigned long nr_pages; | |
4109 | pgoff_t folio_first_index, folio_last_index; | |
4110 | ||
4111 | if (xas_retry(&xas, folio)) | |
4112 | continue; | |
4113 | ||
4114 | if (xa_is_value(folio)) { | |
4115 | /* page is evicted */ | |
4116 | void *shadow = (void *)folio; | |
4117 | bool workingset; /* not used */ | |
4118 | int order = xa_get_order(xas.xa, xas.xa_index); | |
4119 | ||
4120 | nr_pages = 1 << order; | |
4121 | folio_first_index = round_down(xas.xa_index, 1 << order); | |
4122 | folio_last_index = folio_first_index + nr_pages - 1; | |
4123 | ||
4124 | /* Folios might straddle the range boundaries, only count covered pages */ | |
4125 | if (folio_first_index < first_index) | |
4126 | nr_pages -= first_index - folio_first_index; | |
4127 | ||
4128 | if (folio_last_index > last_index) | |
4129 | nr_pages -= folio_last_index - last_index; | |
4130 | ||
4131 | cs->nr_evicted += nr_pages; | |
4132 | ||
4133 | #ifdef CONFIG_SWAP /* implies CONFIG_MMU */ | |
4134 | if (shmem_mapping(mapping)) { | |
4135 | /* shmem file - in swap cache */ | |
4136 | swp_entry_t swp = radix_to_swp_entry(folio); | |
4137 | ||
4138 | shadow = get_shadow_from_swap_cache(swp); | |
4139 | } | |
4140 | #endif | |
4141 | if (workingset_test_recent(shadow, true, &workingset)) | |
4142 | cs->nr_recently_evicted += nr_pages; | |
4143 | ||
4144 | goto resched; | |
4145 | } | |
4146 | ||
4147 | nr_pages = folio_nr_pages(folio); | |
4148 | folio_first_index = folio_pgoff(folio); | |
4149 | folio_last_index = folio_first_index + nr_pages - 1; | |
4150 | ||
4151 | /* Folios might straddle the range boundaries, only count covered pages */ | |
4152 | if (folio_first_index < first_index) | |
4153 | nr_pages -= first_index - folio_first_index; | |
4154 | ||
4155 | if (folio_last_index > last_index) | |
4156 | nr_pages -= folio_last_index - last_index; | |
4157 | ||
4158 | /* page is in cache */ | |
4159 | cs->nr_cache += nr_pages; | |
4160 | ||
4161 | if (folio_test_dirty(folio)) | |
4162 | cs->nr_dirty += nr_pages; | |
4163 | ||
4164 | if (folio_test_writeback(folio)) | |
4165 | cs->nr_writeback += nr_pages; | |
4166 | ||
4167 | resched: | |
4168 | if (need_resched()) { | |
4169 | xas_pause(&xas); | |
4170 | cond_resched_rcu(); | |
4171 | } | |
4172 | } | |
4173 | rcu_read_unlock(); | |
4174 | } | |
4175 | ||
4176 | /* | |
4177 | * The cachestat(2) system call. | |
4178 | * | |
4179 | * cachestat() returns the page cache statistics of a file in the | |
4180 | * bytes range specified by `off` and `len`: number of cached pages, | |
4181 | * number of dirty pages, number of pages marked for writeback, | |
4182 | * number of evicted pages, and number of recently evicted pages. | |
4183 | * | |
4184 | * An evicted page is a page that is previously in the page cache | |
4185 | * but has been evicted since. A page is recently evicted if its last | |
4186 | * eviction was recent enough that its reentry to the cache would | |
4187 | * indicate that it is actively being used by the system, and that | |
4188 | * there is memory pressure on the system. | |
4189 | * | |
4190 | * `off` and `len` must be non-negative integers. If `len` > 0, | |
4191 | * the queried range is [`off`, `off` + `len`]. If `len` == 0, | |
4192 | * we will query in the range from `off` to the end of the file. | |
4193 | * | |
4194 | * The `flags` argument is unused for now, but is included for future | |
4195 | * extensibility. User should pass 0 (i.e no flag specified). | |
4196 | * | |
4197 | * Currently, hugetlbfs is not supported. | |
4198 | * | |
4199 | * Because the status of a page can change after cachestat() checks it | |
4200 | * but before it returns to the application, the returned values may | |
4201 | * contain stale information. | |
4202 | * | |
4203 | * return values: | |
4204 | * zero - success | |
4205 | * -EFAULT - cstat or cstat_range points to an illegal address | |
4206 | * -EINVAL - invalid flags | |
4207 | * -EBADF - invalid file descriptor | |
4208 | * -EOPNOTSUPP - file descriptor is of a hugetlbfs file | |
4209 | */ | |
4210 | SYSCALL_DEFINE4(cachestat, unsigned int, fd, | |
4211 | struct cachestat_range __user *, cstat_range, | |
4212 | struct cachestat __user *, cstat, unsigned int, flags) | |
4213 | { | |
4214 | struct fd f = fdget(fd); | |
4215 | struct address_space *mapping; | |
4216 | struct cachestat_range csr; | |
4217 | struct cachestat cs; | |
4218 | pgoff_t first_index, last_index; | |
4219 | ||
4220 | if (!f.file) | |
4221 | return -EBADF; | |
4222 | ||
4223 | if (copy_from_user(&csr, cstat_range, | |
4224 | sizeof(struct cachestat_range))) { | |
4225 | fdput(f); | |
4226 | return -EFAULT; | |
4227 | } | |
4228 | ||
4229 | /* hugetlbfs is not supported */ | |
4230 | if (is_file_hugepages(f.file)) { | |
4231 | fdput(f); | |
4232 | return -EOPNOTSUPP; | |
4233 | } | |
4234 | ||
4235 | if (flags != 0) { | |
4236 | fdput(f); | |
4237 | return -EINVAL; | |
4238 | } | |
4239 | ||
4240 | first_index = csr.off >> PAGE_SHIFT; | |
4241 | last_index = | |
4242 | csr.len == 0 ? ULONG_MAX : (csr.off + csr.len - 1) >> PAGE_SHIFT; | |
4243 | memset(&cs, 0, sizeof(struct cachestat)); | |
4244 | mapping = f.file->f_mapping; | |
4245 | filemap_cachestat(mapping, first_index, last_index, &cs); | |
4246 | fdput(f); | |
4247 | ||
4248 | if (copy_to_user(cstat, &cs, sizeof(struct cachestat))) | |
4249 | return -EFAULT; | |
4250 | ||
4251 | return 0; | |
4252 | } | |
4253 | #endif /* CONFIG_CACHESTAT_SYSCALL */ |