1 2 // SPDX-License-Identifier: GPL-2.0-only 3 /* 4 * linux/mm/memory.c 5 * 6 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds 7 */ 8 9 /* 10 * demand-loading started 01.12.91 - seems it is high on the list of 11 * things wanted, and it should be easy to implement. - Linus 12 */ 13 14 /* 15 * Ok, demand-loading was easy, shared pages a little bit tricker. Shared 16 * pages started 02.12.91, seems to work. - Linus. 17 * 18 * Tested sharing by executing about 30 /bin/sh: under the old kernel it 19 * would have taken more than the 6M I have free, but it worked well as 20 * far as I could see. 21 * 22 * Also corrected some "invalidate()"s - I wasn't doing enough of them. 23 */ 24 25 /* 26 * Real VM (paging to/from disk) started 18.12.91. Much more work and 27 * thought has to go into this. Oh, well.. 28 * 19.12.91 - works, somewhat. Sometimes I get faults, don't know why. 29 * Found it. Everything seems to work now. 30 * 20.12.91 - Ok, making the swap-device changeable like the root. 31 */ 32 33 /* 34 * 05.04.94 - Multi-page memory management added for v1.1. 35 * Idea by Alex Bligh (alex@cconcepts.co.uk) 36 * 37 * 16.07.99 - Support of BIGMEM added by Gerhard Wichert, Siemens AG 38 * (Gerhard.Wichert@pdb.siemens.de) 39 * 40 * Aug/Sep 2004 Changed to four level page tables (Andi Kleen) 41 */ 42 43 #include <linux/kernel_stat.h> 44 #include <linux/mm.h> 45 #include <linux/mm_inline.h> 46 #include <linux/sched/mm.h> 47 #include <linux/sched/coredump.h> 48 #include <linux/sched/numa_balancing.h> 49 #include <linux/sched/task.h> 50 #include <linux/hugetlb.h> 51 #include <linux/mman.h> 52 #include <linux/swap.h> 53 #include <linux/highmem.h> 54 #include <linux/pagemap.h> 55 #include <linux/memremap.h> 56 #include <linux/kmsan.h> 57 #include <linux/ksm.h> 58 #include <linux/rmap.h> 59 #include <linux/export.h> 60 #include <linux/delayacct.h> 61 #include <linux/init.h> 62 #include <linux/pfn_t.h> 63 #include <linux/writeback.h> 64 #include <linux/memcontrol.h> 65 #include <linux/mmu_notifier.h> 66 #include <linux/swapops.h> 67 #include <linux/elf.h> 68 #include <linux/gfp.h> 69 #include <linux/migrate.h> 70 #include <linux/string.h> 71 #include <linux/memory-tiers.h> 72 #include <linux/debugfs.h> 73 #include <linux/userfaultfd_k.h> 74 #include <linux/dax.h> 75 #include <linux/oom.h> 76 #include <linux/numa.h> 77 #include <linux/perf_event.h> 78 #include <linux/ptrace.h> 79 #include <linux/vmalloc.h> 80 #include <linux/sched/sysctl.h> 81 82 #include <trace/events/kmem.h> 83 84 #include <asm/io.h> 85 #include <asm/mmu_context.h> 86 #include <asm/pgalloc.h> 87 #include <linux/uaccess.h> 88 #include <asm/tlb.h> 89 #include <asm/tlbflush.h> 90 91 #include "pgalloc-track.h" 92 #include "internal.h" 93 #include "swap.h" 94 95 #if defined(LAST_CPUPID_NOT_IN_PAGE_FLAGS) && !defined(CONFIG_COMPILE_TEST) 96 #warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid. 97 #endif 98 99 #ifndef CONFIG_NUMA 100 unsigned long max_mapnr; 101 EXPORT_SYMBOL(max_mapnr); 102 103 struct page *mem_map; 104 EXPORT_SYMBOL(mem_map); 105 #endif 106 107 static vm_fault_t do_fault(struct vm_fault *vmf); 108 static vm_fault_t do_anonymous_page(struct vm_fault *vmf); 109 static bool vmf_pte_changed(struct vm_fault *vmf); 110 111 /* 112 * Return true if the original pte was a uffd-wp pte marker (so the pte was 113 * wr-protected). 114 */ 115 static __always_inline bool vmf_orig_pte_uffd_wp(struct vm_fault *vmf) 116 { 117 if (!userfaultfd_wp(vmf->vma)) 118 return false; 119 if (!(vmf->flags & FAULT_FLAG_ORIG_PTE_VALID)) 120 return false; 121 122 return pte_marker_uffd_wp(vmf->orig_pte); 123 } 124 125 /* 126 * A number of key systems in x86 including ioremap() rely on the assumption 127 * that high_memory defines the upper bound on direct map memory, then end 128 * of ZONE_NORMAL. 129 */ 130 void *high_memory; 131 EXPORT_SYMBOL(high_memory); 132 133 /* 134 * Randomize the address space (stacks, mmaps, brk, etc.). 135 * 136 * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization, 137 * as ancient (libc5 based) binaries can segfault. ) 138 */ 139 int randomize_va_space __read_mostly = 140 #ifdef CONFIG_COMPAT_BRK 141 1; 142 #else 143 2; 144 #endif 145 146 #ifndef arch_wants_old_prefaulted_pte 147 static inline bool arch_wants_old_prefaulted_pte(void) 148 { 149 /* 150 * Transitioning a PTE from 'old' to 'young' can be expensive on 151 * some architectures, even if it's performed in hardware. By 152 * default, "false" means prefaulted entries will be 'young'. 153 */ 154 return false; 155 } 156 #endif 157 158 static int __init disable_randmaps(char *s) 159 { 160 randomize_va_space = 0; 161 return 1; 162 } 163 __setup("norandmaps", disable_randmaps); 164 165 unsigned long zero_pfn __read_mostly; 166 EXPORT_SYMBOL(zero_pfn); 167 168 unsigned long highest_memmap_pfn __read_mostly; 169 170 /* 171 * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init() 172 */ 173 static int __init init_zero_pfn(void) 174 { 175 zero_pfn = page_to_pfn(ZERO_PAGE(0)); 176 return 0; 177 } 178 early_initcall(init_zero_pfn); 179 180 void mm_trace_rss_stat(struct mm_struct *mm, int member) 181 { 182 trace_rss_stat(mm, member); 183 } 184 185 /* 186 * Note: this doesn't free the actual pages themselves. That 187 * has been handled earlier when unmapping all the memory regions. 188 */ 189 static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd, 190 unsigned long addr) 191 { 192 pgtable_t token = pmd_pgtable(*pmd); 193 pmd_clear(pmd); 194 pte_free_tlb(tlb, token, addr); 195 mm_dec_nr_ptes(tlb->mm); 196 } 197 198 static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud, 199 unsigned long addr, unsigned long end, 200 unsigned long floor, unsigned long ceiling) 201 { 202 pmd_t *pmd; 203 unsigned long next; 204 unsigned long start; 205 206 start = addr; 207 pmd = pmd_offset(pud, addr); 208 do { 209 next = pmd_addr_end(addr, end); 210 if (pmd_none_or_clear_bad(pmd)) 211 continue; 212 free_pte_range(tlb, pmd, addr); 213 } while (pmd++, addr = next, addr != end); 214 215 start &= PUD_MASK; 216 if (start < floor) 217 return; 218 if (ceiling) { 219 ceiling &= PUD_MASK; 220 if (!ceiling) 221 return; 222 } 223 if (end - 1 > ceiling - 1) 224 return; 225 226 pmd = pmd_offset(pud, start); 227 pud_clear(pud); 228 pmd_free_tlb(tlb, pmd, start); 229 mm_dec_nr_pmds(tlb->mm); 230 } 231 232 static inline void free_pud_range(struct mmu_gather *tlb, p4d_t *p4d, 233 unsigned long addr, unsigned long end, 234 unsigned long floor, unsigned long ceiling) 235 { 236 pud_t *pud; 237 unsigned long next; 238 unsigned long start; 239 240 start = addr; 241 pud = pud_offset(p4d, addr); 242 do { 243 next = pud_addr_end(addr, end); 244 if (pud_none_or_clear_bad(pud)) 245 continue; 246 free_pmd_range(tlb, pud, addr, next, floor, ceiling); 247 } while (pud++, addr = next, addr != end); 248 249 start &= P4D_MASK; 250 if (start < floor) 251 return; 252 if (ceiling) { 253 ceiling &= P4D_MASK; 254 if (!ceiling) 255 return; 256 } 257 if (end - 1 > ceiling - 1) 258 return; 259 260 pud = pud_offset(p4d, start); 261 p4d_clear(p4d); 262 pud_free_tlb(tlb, pud, start); 263 mm_dec_nr_puds(tlb->mm); 264 } 265 266 static inline void free_p4d_range(struct mmu_gather *tlb, pgd_t *pgd, 267 unsigned long addr, unsigned long end, 268 unsigned long floor, unsigned long ceiling) 269 { 270 p4d_t *p4d; 271 unsigned long next; 272 unsigned long start; 273 274 start = addr; 275 p4d = p4d_offset(pgd, addr); 276 do { 277 next = p4d_addr_end(addr, end); 278 if (p4d_none_or_clear_bad(p4d)) 279 continue; 280 free_pud_range(tlb, p4d, addr, next, floor, ceiling); 281 } while (p4d++, addr = next, addr != end); 282 283 start &= PGDIR_MASK; 284 if (start < floor) 285 return; 286 if (ceiling) { 287 ceiling &= PGDIR_MASK; 288 if (!ceiling) 289 return; 290 } 291 if (end - 1 > ceiling - 1) 292 return; 293 294 p4d = p4d_offset(pgd, start); 295 pgd_clear(pgd); 296 p4d_free_tlb(tlb, p4d, start); 297 } 298 299 /* 300 * This function frees user-level page tables of a process. 301 */ 302 void free_pgd_range(struct mmu_gather *tlb, 303 unsigned long addr, unsigned long end, 304 unsigned long floor, unsigned long ceiling) 305 { 306 pgd_t *pgd; 307 unsigned long next; 308 309 /* 310 * The next few lines have given us lots of grief... 311 * 312 * Why are we testing PMD* at this top level? Because often 313 * there will be no work to do at all, and we'd prefer not to 314 * go all the way down to the bottom just to discover that. 315 * 316 * Why all these "- 1"s? Because 0 represents both the bottom 317 * of the address space and the top of it (using -1 for the 318 * top wouldn't help much: the masks would do the wrong thing). 319 * The rule is that addr 0 and floor 0 refer to the bottom of 320 * the address space, but end 0 and ceiling 0 refer to the top 321 * Comparisons need to use "end - 1" and "ceiling - 1" (though 322 * that end 0 case should be mythical). 323 * 324 * Wherever addr is brought up or ceiling brought down, we must 325 * be careful to reject "the opposite 0" before it confuses the 326 * subsequent tests. But what about where end is brought down 327 * by PMD_SIZE below? no, end can't go down to 0 there. 328 * 329 * Whereas we round start (addr) and ceiling down, by different 330 * masks at different levels, in order to test whether a table 331 * now has no other vmas using it, so can be freed, we don't 332 * bother to round floor or end up - the tests don't need that. 333 */ 334 335 addr &= PMD_MASK; 336 if (addr < floor) { 337 addr += PMD_SIZE; 338 if (!addr) 339 return; 340 } 341 if (ceiling) { 342 ceiling &= PMD_MASK; 343 if (!ceiling) 344 return; 345 } 346 if (end - 1 > ceiling - 1) 347 end -= PMD_SIZE; 348 if (addr > end - 1) 349 return; 350 /* 351 * We add page table cache pages with PAGE_SIZE, 352 * (see pte_free_tlb()), flush the tlb if we need 353 */ 354 tlb_change_page_size(tlb, PAGE_SIZE); 355 pgd = pgd_offset(tlb->mm, addr); 356 do { 357 next = pgd_addr_end(addr, end); 358 if (pgd_none_or_clear_bad(pgd)) 359 continue; 360 free_p4d_range(tlb, pgd, addr, next, floor, ceiling); 361 } while (pgd++, addr = next, addr != end); 362 } 363 364 void free_pgtables(struct mmu_gather *tlb, struct ma_state *mas, 365 struct vm_area_struct *vma, unsigned long floor, 366 unsigned long ceiling, bool mm_wr_locked) 367 { 368 struct unlink_vma_file_batch vb; 369 370 do { 371 unsigned long addr = vma->vm_start; 372 struct vm_area_struct *next; 373 374 /* 375 * Note: USER_PGTABLES_CEILING may be passed as ceiling and may 376 * be 0. This will underflow and is okay. 377 */ 378 next = mas_find(mas, ceiling - 1); 379 if (unlikely(xa_is_zero(next))) 380 next = NULL; 381 382 /* 383 * Hide vma from rmap and truncate_pagecache before freeing 384 * pgtables 385 */ 386 if (mm_wr_locked) 387 vma_start_write(vma); 388 unlink_anon_vmas(vma); 389 390 if (is_vm_hugetlb_page(vma)) { 391 unlink_file_vma(vma); 392 hugetlb_free_pgd_range(tlb, addr, vma->vm_end, 393 floor, next ? next->vm_start : ceiling); 394 } else { 395 unlink_file_vma_batch_init(&vb); 396 unlink_file_vma_batch_add(&vb, vma); 397 398 /* 399 * Optimization: gather nearby vmas into one call down 400 */ 401 while (next && next->vm_start <= vma->vm_end + PMD_SIZE 402 && !is_vm_hugetlb_page(next)) { 403 vma = next; 404 next = mas_find(mas, ceiling - 1); 405 if (unlikely(xa_is_zero(next))) 406 next = NULL; 407 if (mm_wr_locked) 408 vma_start_write(vma); 409 unlink_anon_vmas(vma); 410 unlink_file_vma_batch_add(&vb, vma); 411 } 412 unlink_file_vma_batch_final(&vb); 413 free_pgd_range(tlb, addr, vma->vm_end, 414 floor, next ? next->vm_start : ceiling); 415 } 416 vma = next; 417 } while (vma); 418 } 419 420 void pmd_install(struct mm_struct *mm, pmd_t *pmd, pgtable_t *pte) 421 { 422 spinlock_t *ptl = pmd_lock(mm, pmd); 423 424 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */ 425 mm_inc_nr_ptes(mm); 426 /* 427 * Ensure all pte setup (eg. pte page lock and page clearing) are 428 * visible before the pte is made visible to other CPUs by being 429 * put into page tables. 430 * 431 * The other side of the story is the pointer chasing in the page 432 * table walking code (when walking the page table without locking; 433 * ie. most of the time). Fortunately, these data accesses consist 434 * of a chain of data-dependent loads, meaning most CPUs (alpha 435 * being the notable exception) will already guarantee loads are 436 * seen in-order. See the alpha page table accessors for the 437 * smp_rmb() barriers in page table walking code. 438 */ 439 smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */ 440 pmd_populate(mm, pmd, *pte); 441 *pte = NULL; 442 } 443 spin_unlock(ptl); 444 } 445 446 int __pte_alloc(struct mm_struct *mm, pmd_t *pmd) 447 { 448 pgtable_t new = pte_alloc_one(mm); 449 if (!new) 450 return -ENOMEM; 451 452 pmd_install(mm, pmd, &new); 453 if (new) 454 pte_free(mm, new); 455 return 0; 456 } 457 458 int __pte_alloc_kernel(pmd_t *pmd) 459 { 460 pte_t *new = pte_alloc_one_kernel(&init_mm); 461 if (!new) 462 return -ENOMEM; 463 464 spin_lock(&init_mm.page_table_lock); 465 if (likely(pmd_none(*pmd))) { /* Has another populated it ? */ 466 smp_wmb(); /* See comment in pmd_install() */ 467 pmd_populate_kernel(&init_mm, pmd, new); 468 new = NULL; 469 } 470 spin_unlock(&init_mm.page_table_lock); 471 if (new) 472 pte_free_kernel(&init_mm, new); 473 return 0; 474 } 475 476 static inline void init_rss_vec(int *rss) 477 { 478 memset(rss, 0, sizeof(int) * NR_MM_COUNTERS); 479 } 480 481 static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss) 482 { 483 int i; 484 485 for (i = 0; i < NR_MM_COUNTERS; i++) 486 if (rss[i]) 487 add_mm_counter(mm, i, rss[i]); 488 } 489 490 /* 491 * This function is called to print an error when a bad pte 492 * is found. For example, we might have a PFN-mapped pte in 493 * a region that doesn't allow it. 494 * 495 * The calling function must still handle the error. 496 */ 497 static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr, 498 pte_t pte, struct page *page) 499 { 500 pgd_t *pgd = pgd_offset(vma->vm_mm, addr); 501 p4d_t *p4d = p4d_offset(pgd, addr); 502 pud_t *pud = pud_offset(p4d, addr); 503 pmd_t *pmd = pmd_offset(pud, addr); 504 struct address_space *mapping; 505 pgoff_t index; 506 static unsigned long resume; 507 static unsigned long nr_shown; 508 static unsigned long nr_unshown; 509 510 /* 511 * Allow a burst of 60 reports, then keep quiet for that minute; 512 * or allow a steady drip of one report per second. 513 */ 514 if (nr_shown == 60) { 515 if (time_before(jiffies, resume)) { 516 nr_unshown++; 517 return; 518 } 519 if (nr_unshown) { 520 pr_alert("BUG: Bad page map: %lu messages suppressed\n", 521 nr_unshown); 522 nr_unshown = 0; 523 } 524 nr_shown = 0; 525 } 526 if (nr_shown++ == 0) 527 resume = jiffies + 60 * HZ; 528 529 mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL; 530 index = linear_page_index(vma, addr); 531 532 pr_alert("BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n", 533 current->comm, 534 (long long)pte_val(pte), (long long)pmd_val(*pmd)); 535 if (page) 536 dump_page(page, "bad pte"); 537 pr_alert("addr:%px vm_flags:%08lx anon_vma:%px mapping:%px index:%lx\n", 538 (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index); 539 pr_alert("file:%pD fault:%ps mmap:%ps read_folio:%ps\n", 540 vma->vm_file, 541 vma->vm_ops ? vma->vm_ops->fault : NULL, 542 vma->vm_file ? vma->vm_file->f_op->mmap : NULL, 543 mapping ? mapping->a_ops->read_folio : NULL); 544 dump_stack(); 545 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE); 546 } 547 548 /* 549 * vm_normal_page -- This function gets the "struct page" associated with a pte. 550 * 551 * "Special" mappings do not wish to be associated with a "struct page" (either 552 * it doesn't exist, or it exists but they don't want to touch it). In this 553 * case, NULL is returned here. "Normal" mappings do have a struct page. 554 * 555 * There are 2 broad cases. Firstly, an architecture may define a pte_special() 556 * pte bit, in which case this function is trivial. Secondly, an architecture 557 * may not have a spare pte bit, which requires a more complicated scheme, 558 * described below. 559 * 560 * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a 561 * special mapping (even if there are underlying and valid "struct pages"). 562 * COWed pages of a VM_PFNMAP are always normal. 563 * 564 * The way we recognize COWed pages within VM_PFNMAP mappings is through the 565 * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit 566 * set, and the vm_pgoff will point to the first PFN mapped: thus every special 567 * mapping will always honor the rule 568 * 569 * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT) 570 * 571 * And for normal mappings this is false. 572 * 573 * This restricts such mappings to be a linear translation from virtual address 574 * to pfn. To get around this restriction, we allow arbitrary mappings so long 575 * as the vma is not a COW mapping; in that case, we know that all ptes are 576 * special (because none can have been COWed). 577 * 578 * 579 * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP. 580 * 581 * VM_MIXEDMAP mappings can likewise contain memory with or without "struct 582 * page" backing, however the difference is that _all_ pages with a struct 583 * page (that is, those where pfn_valid is true) are refcounted and considered 584 * normal pages by the VM. The only exception are zeropages, which are 585 * *never* refcounted. 586 * 587 * The disadvantage is that pages are refcounted (which can be slower and 588 * simply not an option for some PFNMAP users). The advantage is that we 589 * don't have to follow the strict linearity rule of PFNMAP mappings in 590 * order to support COWable mappings. 591 * 592 */ 593 struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, 594 pte_t pte) 595 { 596 unsigned long pfn = pte_pfn(pte); 597 598 if (IS_ENABLED(CONFIG_ARCH_HAS_PTE_SPECIAL)) { 599 if (likely(!pte_special(pte))) 600 goto check_pfn; 601 if (vma->vm_ops && vma->vm_ops->find_special_page) 602 return vma->vm_ops->find_special_page(vma, addr); 603 if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP)) 604 return NULL; 605 if (is_zero_pfn(pfn)) 606 return NULL; 607 if (pte_devmap(pte)) 608 /* 609 * NOTE: New users of ZONE_DEVICE will not set pte_devmap() 610 * and will have refcounts incremented on their struct pages 611 * when they are inserted into PTEs, thus they are safe to 612 * return here. Legacy ZONE_DEVICE pages that set pte_devmap() 613 * do not have refcounts. Example of legacy ZONE_DEVICE is 614 * MEMORY_DEVICE_FS_DAX type in pmem or virtio_fs drivers. 615 */ 616 return NULL; 617 618 print_bad_pte(vma, addr, pte, NULL); 619 return NULL; 620 } 621 622 /* !CONFIG_ARCH_HAS_PTE_SPECIAL case follows: */ 623 624 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) { 625 if (vma->vm_flags & VM_MIXEDMAP) { 626 if (!pfn_valid(pfn)) 627 return NULL; 628 if (is_zero_pfn(pfn)) 629 return NULL; 630 goto out; 631 } else { 632 unsigned long off; 633 off = (addr - vma->vm_start) >> PAGE_SHIFT; 634 if (pfn == vma->vm_pgoff + off) 635 return NULL; 636 if (!is_cow_mapping(vma->vm_flags)) 637 return NULL; 638 } 639 } 640 641 if (is_zero_pfn(pfn)) 642 return NULL; 643 644 check_pfn: 645 if (unlikely(pfn > highest_memmap_pfn)) { 646 print_bad_pte(vma, addr, pte, NULL); 647 return NULL; 648 } 649 650 /* 651 * NOTE! We still have PageReserved() pages in the page tables. 652 * eg. VDSO mappings can cause them to exist. 653 */ 654 out: 655 VM_WARN_ON_ONCE(is_zero_pfn(pfn)); 656 return pfn_to_page(pfn); 657 } 658 659 struct folio *vm_normal_folio(struct vm_area_struct *vma, unsigned long addr, 660 pte_t pte) 661 { 662 struct page *page = vm_normal_page(vma, addr, pte); 663 664 if (page) 665 return page_folio(page); 666 return NULL; 667 } 668 669 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 670 struct page *vm_normal_page_pmd(struct vm_area_struct *vma, unsigned long addr, 671 pmd_t pmd) 672 { 673 unsigned long pfn = pmd_pfn(pmd); 674 675 /* 676 * There is no pmd_special() but there may be special pmds, e.g. 677 * in a direct-access (dax) mapping, so let's just replicate the 678 * !CONFIG_ARCH_HAS_PTE_SPECIAL case from vm_normal_page() here. 679 */ 680 if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) { 681 if (vma->vm_flags & VM_MIXEDMAP) { 682 if (!pfn_valid(pfn)) 683 return NULL; 684 goto out; 685 } else { 686 unsigned long off; 687 off = (addr - vma->vm_start) >> PAGE_SHIFT; 688 if (pfn == vma->vm_pgoff + off) 689 return NULL; 690 if (!is_cow_mapping(vma->vm_flags)) 691 return NULL; 692 } 693 } 694 695 if (pmd_devmap(pmd)) 696 return NULL; 697 if (is_huge_zero_pmd(pmd)) 698 return NULL; 699 if (unlikely(pfn > highest_memmap_pfn)) 700 return NULL; 701 702 /* 703 * NOTE! We still have PageReserved() pages in the page tables. 704 * eg. VDSO mappings can cause them to exist. 705 */ 706 out: 707 return pfn_to_page(pfn); 708 } 709 710 struct folio *vm_normal_folio_pmd(struct vm_area_struct *vma, 711 unsigned long addr, pmd_t pmd) 712 { 713 struct page *page = vm_normal_page_pmd(vma, addr, pmd); 714 715 if (page) 716 return page_folio(page); 717 return NULL; 718 } 719 #endif 720 721 static void restore_exclusive_pte(struct vm_area_struct *vma, 722 struct page *page, unsigned long address, 723 pte_t *ptep) 724 { 725 struct folio *folio = page_folio(page); 726 pte_t orig_pte; 727 pte_t pte; 728 swp_entry_t entry; 729 730 orig_pte = ptep_get(ptep); 731 pte = pte_mkold(mk_pte(page, READ_ONCE(vma->vm_page_prot))); 732 if (pte_swp_soft_dirty(orig_pte)) 733 pte = pte_mksoft_dirty(pte); 734 735 entry = pte_to_swp_entry(orig_pte); 736 if (pte_swp_uffd_wp(orig_pte)) 737 pte = pte_mkuffd_wp(pte); 738 else if (is_writable_device_exclusive_entry(entry)) 739 pte = maybe_mkwrite(pte_mkdirty(pte), vma); 740 741 VM_BUG_ON_FOLIO(pte_write(pte) && (!folio_test_anon(folio) && 742 PageAnonExclusive(page)), folio); 743 744 /* 745 * No need to take a page reference as one was already 746 * created when the swap entry was made. 747 */ 748 if (folio_test_anon(folio)) 749 folio_add_anon_rmap_pte(folio, page, vma, address, RMAP_NONE); 750 else 751 /* 752 * Currently device exclusive access only supports anonymous 753 * memory so the entry shouldn't point to a filebacked page. 754 */ 755 WARN_ON_ONCE(1); 756 757 set_pte_at(vma->vm_mm, address, ptep, pte); 758 759 /* 760 * No need to invalidate - it was non-present before. However 761 * secondary CPUs may have mappings that need invalidating. 762 */ 763 update_mmu_cache(vma, address, ptep); 764 } 765 766 /* 767 * Tries to restore an exclusive pte if the page lock can be acquired without 768 * sleeping. 769 */ 770 static int 771 try_restore_exclusive_pte(pte_t *src_pte, struct vm_area_struct *vma, 772 unsigned long addr) 773 { 774 swp_entry_t entry = pte_to_swp_entry(ptep_get(src_pte)); 775 struct page *page = pfn_swap_entry_to_page(entry); 776 777 if (trylock_page(page)) { 778 restore_exclusive_pte(vma, page, addr, src_pte); 779 unlock_page(page); 780 return 0; 781 } 782 783 return -EBUSY; 784 } 785 786 /* 787 * copy one vm_area from one task to the other. Assumes the page tables 788 * already present in the new task to be cleared in the whole range 789 * covered by this vma. 790 */ 791 792 static unsigned long 793 copy_nonpresent_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm, 794 pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *dst_vma, 795 struct vm_area_struct *src_vma, unsigned long addr, int *rss) 796 { 797 unsigned long vm_flags = dst_vma->vm_flags; 798 pte_t orig_pte = ptep_get(src_pte); 799 pte_t pte = orig_pte; 800 struct folio *folio; 801 struct page *page; 802 swp_entry_t entry = pte_to_swp_entry(orig_pte); 803 804 if (likely(!non_swap_entry(entry))) { 805 if (swap_duplicate(entry) < 0) 806 return -EIO; 807 808 /* make sure dst_mm is on swapoff's mmlist. */ 809 if (unlikely(list_empty(&dst_mm->mmlist))) { 810 spin_lock(&mmlist_lock); 811 if (list_empty(&dst_mm->mmlist)) 812 list_add(&dst_mm->mmlist, 813 &src_mm->mmlist); 814 spin_unlock(&mmlist_lock); 815 } 816 /* Mark the swap entry as shared. */ 817 if (pte_swp_exclusive(orig_pte)) { 818 pte = pte_swp_clear_exclusive(orig_pte); 819 set_pte_at(src_mm, addr, src_pte, pte); 820 } 821 rss[MM_SWAPENTS]++; 822 } else if (is_migration_entry(entry)) { 823 folio = pfn_swap_entry_folio(entry); 824 825 rss[mm_counter(folio)]++; 826 827 if (!is_readable_migration_entry(entry) && 828 is_cow_mapping(vm_flags)) { 829 /* 830 * COW mappings require pages in both parent and child 831 * to be set to read. A previously exclusive entry is 832 * now shared. 833 */ 834 entry = make_readable_migration_entry( 835 swp_offset(entry)); 836 pte = swp_entry_to_pte(entry); 837 if (pte_swp_soft_dirty(orig_pte)) 838 pte = pte_swp_mksoft_dirty(pte); 839 if (pte_swp_uffd_wp(orig_pte)) 840 pte = pte_swp_mkuffd_wp(pte); 841 set_pte_at(src_mm, addr, src_pte, pte); 842 } 843 } else if (is_device_private_entry(entry)) { 844 page = pfn_swap_entry_to_page(entry); 845 folio = page_folio(page); 846 847 /* 848 * Update rss count even for unaddressable pages, as 849 * they should treated just like normal pages in this 850 * respect. 851 * 852 * We will likely want to have some new rss counters 853 * for unaddressable pages, at some point. But for now 854 * keep things as they are. 855 */ 856 folio_get(folio); 857 rss[mm_counter(folio)]++; 858 /* Cannot fail as these pages cannot get pinned. */ 859 folio_try_dup_anon_rmap_pte(folio, page, src_vma); 860 861 /* 862 * We do not preserve soft-dirty information, because so 863 * far, checkpoint/restore is the only feature that 864 * requires that. And checkpoint/restore does not work 865 * when a device driver is involved (you cannot easily 866 * save and restore device driver state). 867 */ 868 if (is_writable_device_private_entry(entry) && 869 is_cow_mapping(vm_flags)) { 870 entry = make_readable_device_private_entry( 871 swp_offset(entry)); 872 pte = swp_entry_to_pte(entry); 873 if (pte_swp_uffd_wp(orig_pte)) 874 pte = pte_swp_mkuffd_wp(pte); 875 set_pte_at(src_mm, addr, src_pte, pte); 876 } 877 } else if (is_device_exclusive_entry(entry)) { 878 /* 879 * Make device exclusive entries present by restoring the 880 * original entry then copying as for a present pte. Device 881 * exclusive entries currently only support private writable 882 * (ie. COW) mappings. 883 */ 884 VM_BUG_ON(!is_cow_mapping(src_vma->vm_flags)); 885 if (try_restore_exclusive_pte(src_pte, src_vma, addr)) 886 return -EBUSY; 887 return -ENOENT; 888 } else if (is_pte_marker_entry(entry)) { 889 pte_marker marker = copy_pte_marker(entry, dst_vma); 890 891 if (marker) 892 set_pte_at(dst_mm, addr, dst_pte, 893 make_pte_marker(marker)); 894 return 0; 895 } 896 if (!userfaultfd_wp(dst_vma)) 897 pte = pte_swp_clear_uffd_wp(pte); 898 set_pte_at(dst_mm, addr, dst_pte, pte); 899 return 0; 900 } 901 902 /* 903 * Copy a present and normal page. 904 * 905 * NOTE! The usual case is that this isn't required; 906 * instead, the caller can just increase the page refcount 907 * and re-use the pte the traditional way. 908 * 909 * And if we need a pre-allocated page but don't yet have 910 * one, return a negative error to let the preallocation 911 * code know so that it can do so outside the page table 912 * lock. 913 */ 914 static inline int 915 copy_present_page(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 916 pte_t *dst_pte, pte_t *src_pte, unsigned long addr, int *rss, 917 struct folio **prealloc, struct page *page) 918 { 919 struct folio *new_folio; 920 pte_t pte; 921 922 new_folio = *prealloc; 923 if (!new_folio) 924 return -EAGAIN; 925 926 /* 927 * We have a prealloc page, all good! Take it 928 * over and copy the page & arm it. 929 */ 930 *prealloc = NULL; 931 copy_user_highpage(&new_folio->page, page, addr, src_vma); 932 __folio_mark_uptodate(new_folio); 933 folio_add_new_anon_rmap(new_folio, dst_vma, addr); 934 folio_add_lru_vma(new_folio, dst_vma); 935 rss[MM_ANONPAGES]++; 936 937 /* All done, just insert the new page copy in the child */ 938 pte = mk_pte(&new_folio->page, dst_vma->vm_page_prot); 939 pte = maybe_mkwrite(pte_mkdirty(pte), dst_vma); 940 if (userfaultfd_pte_wp(dst_vma, ptep_get(src_pte))) 941 /* Uffd-wp needs to be delivered to dest pte as well */ 942 pte = pte_mkuffd_wp(pte); 943 set_pte_at(dst_vma->vm_mm, addr, dst_pte, pte); 944 return 0; 945 } 946 947 static __always_inline void __copy_present_ptes(struct vm_area_struct *dst_vma, 948 struct vm_area_struct *src_vma, pte_t *dst_pte, pte_t *src_pte, 949 pte_t pte, unsigned long addr, int nr) 950 { 951 struct mm_struct *src_mm = src_vma->vm_mm; 952 953 /* If it's a COW mapping, write protect it both processes. */ 954 if (is_cow_mapping(src_vma->vm_flags) && pte_write(pte)) { 955 wrprotect_ptes(src_mm, addr, src_pte, nr); 956 pte = pte_wrprotect(pte); 957 } 958 959 /* If it's a shared mapping, mark it clean in the child. */ 960 if (src_vma->vm_flags & VM_SHARED) 961 pte = pte_mkclean(pte); 962 pte = pte_mkold(pte); 963 964 if (!userfaultfd_wp(dst_vma)) 965 pte = pte_clear_uffd_wp(pte); 966 967 set_ptes(dst_vma->vm_mm, addr, dst_pte, pte, nr); 968 } 969 970 /* 971 * Copy one present PTE, trying to batch-process subsequent PTEs that map 972 * consecutive pages of the same folio by copying them as well. 973 * 974 * Returns -EAGAIN if one preallocated page is required to copy the next PTE. 975 * Otherwise, returns the number of copied PTEs (at least 1). 976 */ 977 static inline int 978 copy_present_ptes(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 979 pte_t *dst_pte, pte_t *src_pte, pte_t pte, unsigned long addr, 980 int max_nr, int *rss, struct folio **prealloc) 981 { 982 struct page *page; 983 struct folio *folio; 984 bool any_writable; 985 fpb_t flags = 0; 986 int err, nr; 987 988 page = vm_normal_page(src_vma, addr, pte); 989 if (unlikely(!page)) 990 goto copy_pte; 991 992 folio = page_folio(page); 993 994 /* 995 * If we likely have to copy, just don't bother with batching. Make 996 * sure that the common "small folio" case is as fast as possible 997 * by keeping the batching logic separate. 998 */ 999 if (unlikely(!*prealloc && folio_test_large(folio) && max_nr != 1)) { 1000 if (src_vma->vm_flags & VM_SHARED) 1001 flags |= FPB_IGNORE_DIRTY; 1002 if (!vma_soft_dirty_enabled(src_vma)) 1003 flags |= FPB_IGNORE_SOFT_DIRTY; 1004 1005 nr = folio_pte_batch(folio, addr, src_pte, pte, max_nr, flags, 1006 &any_writable, NULL, NULL); 1007 folio_ref_add(folio, nr); 1008 if (folio_test_anon(folio)) { 1009 if (unlikely(folio_try_dup_anon_rmap_ptes(folio, page, 1010 nr, src_vma))) { 1011 folio_ref_sub(folio, nr); 1012 return -EAGAIN; 1013 } 1014 rss[MM_ANONPAGES] += nr; 1015 VM_WARN_ON_FOLIO(PageAnonExclusive(page), folio); 1016 } else { 1017 folio_dup_file_rmap_ptes(folio, page, nr); 1018 rss[mm_counter_file(folio)] += nr; 1019 } 1020 if (any_writable) 1021 pte = pte_mkwrite(pte, src_vma); 1022 __copy_present_ptes(dst_vma, src_vma, dst_pte, src_pte, pte, 1023 addr, nr); 1024 return nr; 1025 } 1026 1027 folio_get(folio); 1028 if (folio_test_anon(folio)) { 1029 /* 1030 * If this page may have been pinned by the parent process, 1031 * copy the page immediately for the child so that we'll always 1032 * guarantee the pinned page won't be randomly replaced in the 1033 * future. 1034 */ 1035 if (unlikely(folio_try_dup_anon_rmap_pte(folio, page, src_vma))) { 1036 /* Page may be pinned, we have to copy. */ 1037 folio_put(folio); 1038 err = copy_present_page(dst_vma, src_vma, dst_pte, src_pte, 1039 addr, rss, prealloc, page); 1040 return err ? err : 1; 1041 } 1042 rss[MM_ANONPAGES]++; 1043 VM_WARN_ON_FOLIO(PageAnonExclusive(page), folio); 1044 } else { 1045 folio_dup_file_rmap_pte(folio, page); 1046 rss[mm_counter_file(folio)]++; 1047 } 1048 1049 copy_pte: 1050 __copy_present_ptes(dst_vma, src_vma, dst_pte, src_pte, pte, addr, 1); 1051 return 1; 1052 } 1053 1054 static inline struct folio *folio_prealloc(struct mm_struct *src_mm, 1055 struct vm_area_struct *vma, unsigned long addr, bool need_zero) 1056 { 1057 struct folio *new_folio; 1058 1059 if (need_zero) 1060 new_folio = vma_alloc_zeroed_movable_folio(vma, addr); 1061 else 1062 new_folio = vma_alloc_folio(GFP_HIGHUSER_MOVABLE, 0, vma, 1063 addr, false); 1064 1065 if (!new_folio) 1066 return NULL; 1067 1068 if (mem_cgroup_charge(new_folio, src_mm, GFP_KERNEL)) { 1069 folio_put(new_folio); 1070 return NULL; 1071 } 1072 folio_throttle_swaprate(new_folio, GFP_KERNEL); 1073 1074 return new_folio; 1075 } 1076 1077 static int 1078 copy_pte_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 1079 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr, 1080 unsigned long end) 1081 { 1082 struct mm_struct *dst_mm = dst_vma->vm_mm; 1083 struct mm_struct *src_mm = src_vma->vm_mm; 1084 pte_t *orig_src_pte, *orig_dst_pte; 1085 pte_t *src_pte, *dst_pte; 1086 pte_t ptent; 1087 spinlock_t *src_ptl, *dst_ptl; 1088 int progress, max_nr, ret = 0; 1089 int rss[NR_MM_COUNTERS]; 1090 swp_entry_t entry = (swp_entry_t){0}; 1091 struct folio *prealloc = NULL; 1092 int nr; 1093 1094 again: 1095 progress = 0; 1096 init_rss_vec(rss); 1097 1098 /* 1099 * copy_pmd_range()'s prior pmd_none_or_clear_bad(src_pmd), and the 1100 * error handling here, assume that exclusive mmap_lock on dst and src 1101 * protects anon from unexpected THP transitions; with shmem and file 1102 * protected by mmap_lock-less collapse skipping areas with anon_vma 1103 * (whereas vma_needs_copy() skips areas without anon_vma). A rework 1104 * can remove such assumptions later, but this is good enough for now. 1105 */ 1106 dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl); 1107 if (!dst_pte) { 1108 ret = -ENOMEM; 1109 goto out; 1110 } 1111 src_pte = pte_offset_map_nolock(src_mm, src_pmd, addr, &src_ptl); 1112 if (!src_pte) { 1113 pte_unmap_unlock(dst_pte, dst_ptl); 1114 /* ret == 0 */ 1115 goto out; 1116 } 1117 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING); 1118 orig_src_pte = src_pte; 1119 orig_dst_pte = dst_pte; 1120 arch_enter_lazy_mmu_mode(); 1121 1122 do { 1123 nr = 1; 1124 1125 /* 1126 * We are holding two locks at this point - either of them 1127 * could generate latencies in another task on another CPU. 1128 */ 1129 if (progress >= 32) { 1130 progress = 0; 1131 if (need_resched() || 1132 spin_needbreak(src_ptl) || spin_needbreak(dst_ptl)) 1133 break; 1134 } 1135 ptent = ptep_get(src_pte); 1136 if (pte_none(ptent)) { 1137 progress++; 1138 continue; 1139 } 1140 if (unlikely(!pte_present(ptent))) { 1141 ret = copy_nonpresent_pte(dst_mm, src_mm, 1142 dst_pte, src_pte, 1143 dst_vma, src_vma, 1144 addr, rss); 1145 if (ret == -EIO) { 1146 entry = pte_to_swp_entry(ptep_get(src_pte)); 1147 break; 1148 } else if (ret == -EBUSY) { 1149 break; 1150 } else if (!ret) { 1151 progress += 8; 1152 continue; 1153 } 1154 ptent = ptep_get(src_pte); 1155 VM_WARN_ON_ONCE(!pte_present(ptent)); 1156 1157 /* 1158 * Device exclusive entry restored, continue by copying 1159 * the now present pte. 1160 */ 1161 WARN_ON_ONCE(ret != -ENOENT); 1162 } 1163 /* copy_present_ptes() will clear `*prealloc' if consumed */ 1164 max_nr = (end - addr) / PAGE_SIZE; 1165 ret = copy_present_ptes(dst_vma, src_vma, dst_pte, src_pte, 1166 ptent, addr, max_nr, rss, &prealloc); 1167 /* 1168 * If we need a pre-allocated page for this pte, drop the 1169 * locks, allocate, and try again. 1170 */ 1171 if (unlikely(ret == -EAGAIN)) 1172 break; 1173 if (unlikely(prealloc)) { 1174 /* 1175 * pre-alloc page cannot be reused by next time so as 1176 * to strictly follow mempolicy (e.g., alloc_page_vma() 1177 * will allocate page according to address). This 1178 * could only happen if one pinned pte changed. 1179 */ 1180 folio_put(prealloc); 1181 prealloc = NULL; 1182 } 1183 nr = ret; 1184 progress += 8 * nr; 1185 } while (dst_pte += nr, src_pte += nr, addr += PAGE_SIZE * nr, 1186 addr != end); 1187 1188 arch_leave_lazy_mmu_mode(); 1189 pte_unmap_unlock(orig_src_pte, src_ptl); 1190 add_mm_rss_vec(dst_mm, rss); 1191 pte_unmap_unlock(orig_dst_pte, dst_ptl); 1192 cond_resched(); 1193 1194 if (ret == -EIO) { 1195 VM_WARN_ON_ONCE(!entry.val); 1196 if (add_swap_count_continuation(entry, GFP_KERNEL) < 0) { 1197 ret = -ENOMEM; 1198 goto out; 1199 } 1200 entry.val = 0; 1201 } else if (ret == -EBUSY) { 1202 goto out; 1203 } else if (ret == -EAGAIN) { 1204 prealloc = folio_prealloc(src_mm, src_vma, addr, false); 1205 if (!prealloc) 1206 return -ENOMEM; 1207 } else if (ret < 0) { 1208 VM_WARN_ON_ONCE(1); 1209 } 1210 1211 /* We've captured and resolved the error. Reset, try again. */ 1212 ret = 0; 1213 1214 if (addr != end) 1215 goto again; 1216 out: 1217 if (unlikely(prealloc)) 1218 folio_put(prealloc); 1219 return ret; 1220 } 1221 1222 static inline int 1223 copy_pmd_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 1224 pud_t *dst_pud, pud_t *src_pud, unsigned long addr, 1225 unsigned long end) 1226 { 1227 struct mm_struct *dst_mm = dst_vma->vm_mm; 1228 struct mm_struct *src_mm = src_vma->vm_mm; 1229 pmd_t *src_pmd, *dst_pmd; 1230 unsigned long next; 1231 1232 dst_pmd = pmd_alloc(dst_mm, dst_pud, addr); 1233 if (!dst_pmd) 1234 return -ENOMEM; 1235 src_pmd = pmd_offset(src_pud, addr); 1236 do { 1237 next = pmd_addr_end(addr, end); 1238 if (is_swap_pmd(*src_pmd) || pmd_trans_huge(*src_pmd) 1239 || pmd_devmap(*src_pmd)) { 1240 int err; 1241 VM_BUG_ON_VMA(next-addr != HPAGE_PMD_SIZE, src_vma); 1242 err = copy_huge_pmd(dst_mm, src_mm, dst_pmd, src_pmd, 1243 addr, dst_vma, src_vma); 1244 if (err == -ENOMEM) 1245 return -ENOMEM; 1246 if (!err) 1247 continue; 1248 /* fall through */ 1249 } 1250 if (pmd_none_or_clear_bad(src_pmd)) 1251 continue; 1252 if (copy_pte_range(dst_vma, src_vma, dst_pmd, src_pmd, 1253 addr, next)) 1254 return -ENOMEM; 1255 } while (dst_pmd++, src_pmd++, addr = next, addr != end); 1256 return 0; 1257 } 1258 1259 static inline int 1260 copy_pud_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 1261 p4d_t *dst_p4d, p4d_t *src_p4d, unsigned long addr, 1262 unsigned long end) 1263 { 1264 struct mm_struct *dst_mm = dst_vma->vm_mm; 1265 struct mm_struct *src_mm = src_vma->vm_mm; 1266 pud_t *src_pud, *dst_pud; 1267 unsigned long next; 1268 1269 dst_pud = pud_alloc(dst_mm, dst_p4d, addr); 1270 if (!dst_pud) 1271 return -ENOMEM; 1272 src_pud = pud_offset(src_p4d, addr); 1273 do { 1274 next = pud_addr_end(addr, end); 1275 if (pud_trans_huge(*src_pud) || pud_devmap(*src_pud)) { 1276 int err; 1277 1278 VM_BUG_ON_VMA(next-addr != HPAGE_PUD_SIZE, src_vma); 1279 err = copy_huge_pud(dst_mm, src_mm, 1280 dst_pud, src_pud, addr, src_vma); 1281 if (err == -ENOMEM) 1282 return -ENOMEM; 1283 if (!err) 1284 continue; 1285 /* fall through */ 1286 } 1287 if (pud_none_or_clear_bad(src_pud)) 1288 continue; 1289 if (copy_pmd_range(dst_vma, src_vma, dst_pud, src_pud, 1290 addr, next)) 1291 return -ENOMEM; 1292 } while (dst_pud++, src_pud++, addr = next, addr != end); 1293 return 0; 1294 } 1295 1296 static inline int 1297 copy_p4d_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma, 1298 pgd_t *dst_pgd, pgd_t *src_pgd, unsigned long addr, 1299 unsigned long end) 1300 { 1301 struct mm_struct *dst_mm = dst_vma->vm_mm; 1302 p4d_t *src_p4d, *dst_p4d; 1303 unsigned long next; 1304 1305 dst_p4d = p4d_alloc(dst_mm, dst_pgd, addr); 1306 if (!dst_p4d) 1307 return -ENOMEM; 1308 src_p4d = p4d_offset(src_pgd, addr); 1309 do { 1310 next = p4d_addr_end(addr, end); 1311 if (p4d_none_or_clear_bad(src_p4d)) 1312 continue; 1313 if (copy_pud_range(dst_vma, src_vma, dst_p4d, src_p4d, 1314 addr, next)) 1315 return -ENOMEM; 1316 } while (dst_p4d++, src_p4d++, addr = next, addr != end); 1317 return 0; 1318 } 1319 1320 /* 1321 * Return true if the vma needs to copy the pgtable during this fork(). Return 1322 * false when we can speed up fork() by allowing lazy page faults later until 1323 * when the child accesses the memory range. 1324 */ 1325 static bool 1326 vma_needs_copy(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma) 1327 { 1328 /* 1329 * Always copy pgtables when dst_vma has uffd-wp enabled even if it's 1330 * file-backed (e.g. shmem). Because when uffd-wp is enabled, pgtable 1331 * contains uffd-wp protection information, that's something we can't 1332 * retrieve from page cache, and skip copying will lose those info. 1333 */ 1334 if (userfaultfd_wp(dst_vma)) 1335 return true; 1336 1337 if (src_vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP)) 1338 return true; 1339 1340 if (src_vma->anon_vma) 1341 return true; 1342 1343 /* 1344 * Don't copy ptes where a page fault will fill them correctly. Fork 1345 * becomes much lighter when there are big shared or private readonly 1346 * mappings. The tradeoff is that copy_page_range is more efficient 1347 * than faulting. 1348 */ 1349 return false; 1350 } 1351 1352 int 1353 copy_page_range(struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma) 1354 { 1355 pgd_t *src_pgd, *dst_pgd; 1356 unsigned long next; 1357 unsigned long addr = src_vma->vm_start; 1358 unsigned long end = src_vma->vm_end; 1359 struct mm_struct *dst_mm = dst_vma->vm_mm; 1360 struct mm_struct *src_mm = src_vma->vm_mm; 1361 struct mmu_notifier_range range; 1362 bool is_cow; 1363 int ret; 1364 1365 if (!vma_needs_copy(dst_vma, src_vma)) 1366 return 0; 1367 1368 if (is_vm_hugetlb_page(src_vma)) 1369 return copy_hugetlb_page_range(dst_mm, src_mm, dst_vma, src_vma); 1370 1371 if (unlikely(src_vma->vm_flags & VM_PFNMAP)) { 1372 /* 1373 * We do not free on error cases below as remove_vma 1374 * gets called on error from higher level routine 1375 */ 1376 ret = track_pfn_copy(src_vma); 1377 if (ret) 1378 return ret; 1379 } 1380 1381 /* 1382 * We need to invalidate the secondary MMU mappings only when 1383 * there could be a permission downgrade on the ptes of the 1384 * parent mm. And a permission downgrade will only happen if 1385 * is_cow_mapping() returns true. 1386 */ 1387 is_cow = is_cow_mapping(src_vma->vm_flags); 1388 1389 if (is_cow) { 1390 mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_PAGE, 1391 0, src_mm, addr, end); 1392 mmu_notifier_invalidate_range_start(&range); 1393 /* 1394 * Disabling preemption is not needed for the write side, as 1395 * the read side doesn't spin, but goes to the mmap_lock. 1396 * 1397 * Use the raw variant of the seqcount_t write API to avoid 1398 * lockdep complaining about preemptibility. 1399 */ 1400 vma_assert_write_locked(src_vma); 1401 raw_write_seqcount_begin(&src_mm->write_protect_seq); 1402 } 1403 1404 ret = 0; 1405 dst_pgd = pgd_offset(dst_mm, addr); 1406 src_pgd = pgd_offset(src_mm, addr); 1407 do { 1408 next = pgd_addr_end(addr, end); 1409 if (pgd_none_or_clear_bad(src_pgd)) 1410 continue; 1411 if (unlikely(copy_p4d_range(dst_vma, src_vma, dst_pgd, src_pgd, 1412 addr, next))) { 1413 untrack_pfn_clear(dst_vma); 1414 ret = -ENOMEM; 1415 break; 1416 } 1417 } while (dst_pgd++, src_pgd++, addr = next, addr != end); 1418 1419 if (is_cow) { 1420 raw_write_seqcount_end(&src_mm->write_protect_seq); 1421 mmu_notifier_invalidate_range_end(&range); 1422 } 1423 return ret; 1424 } 1425 1426 /* Whether we should zap all COWed (private) pages too */ 1427 static inline bool should_zap_cows(struct zap_details *details) 1428 { 1429 /* By default, zap all pages */ 1430 if (!details) 1431 return true; 1432 1433 /* Or, we zap COWed pages only if the caller wants to */ 1434 return details->even_cows; 1435 } 1436 1437 /* Decides whether we should zap this folio with the folio pointer specified */ 1438 static inline bool should_zap_folio(struct zap_details *details, 1439 struct folio *folio) 1440 { 1441 /* If we can make a decision without *folio.. */ 1442 if (should_zap_cows(details)) 1443 return true; 1444 1445 /* Otherwise we should only zap non-anon folios */ 1446 return !folio_test_anon(folio); 1447 } 1448 1449 static inline bool zap_drop_file_uffd_wp(struct zap_details *details) 1450 { 1451 if (!details) 1452 return false; 1453 1454 return details->zap_flags & ZAP_FLAG_DROP_MARKER; 1455 } 1456 1457 /* 1458 * This function makes sure that we'll replace the none pte with an uffd-wp 1459 * swap special pte marker when necessary. Must be with the pgtable lock held. 1460 */ 1461 static inline void 1462 zap_install_uffd_wp_if_needed(struct vm_area_struct *vma, 1463 unsigned long addr, pte_t *pte, int nr, 1464 struct zap_details *details, pte_t pteval) 1465 { 1466 /* Zap on anonymous always means dropping everything */ 1467 if (vma_is_anonymous(vma)) 1468 return; 1469 1470 if (zap_drop_file_uffd_wp(details)) 1471 return; 1472 1473 for (;;) { 1474 /* the PFN in the PTE is irrelevant. */ 1475 pte_install_uffd_wp_if_needed(vma, addr, pte, pteval); 1476 if (--nr == 0) 1477 break; 1478 pte++; 1479 addr += PAGE_SIZE; 1480 } 1481 } 1482 1483 static __always_inline void zap_present_folio_ptes(struct mmu_gather *tlb, 1484 struct vm_area_struct *vma, struct folio *folio, 1485 struct page *page, pte_t *pte, pte_t ptent, unsigned int nr, 1486 unsigned long addr, struct zap_details *details, int *rss, 1487 bool *force_flush, bool *force_break) 1488 { 1489 struct mm_struct *mm = tlb->mm; 1490 bool delay_rmap = false; 1491 1492 if (!folio_test_anon(folio)) { 1493 ptent = get_and_clear_full_ptes(mm, addr, pte, nr, tlb->fullmm); 1494 if (pte_dirty(ptent)) { 1495 folio_mark_dirty(folio); 1496 if (tlb_delay_rmap(tlb)) { 1497 delay_rmap = true; 1498 *force_flush = true; 1499 } 1500 } 1501 if (pte_young(ptent) && likely(vma_has_recency(vma))) 1502 folio_mark_accessed(folio); 1503 rss[mm_counter(folio)] -= nr; 1504 } else { 1505 /* We don't need up-to-date accessed/dirty bits. */ 1506 clear_full_ptes(mm, addr, pte, nr, tlb->fullmm); 1507 rss[MM_ANONPAGES] -= nr; 1508 } 1509 /* Checking a single PTE in a batch is sufficient. */ 1510 arch_check_zapped_pte(vma, ptent); 1511 tlb_remove_tlb_entries(tlb, pte, nr, addr); 1512 if (unlikely(userfaultfd_pte_wp(vma, ptent))) 1513 zap_install_uffd_wp_if_needed(vma, addr, pte, nr, details, 1514 ptent); 1515 1516 if (!delay_rmap) { 1517 folio_remove_rmap_ptes(folio, page, nr, vma); 1518 1519 if (unlikely(folio_mapcount(folio) < 0)) 1520 print_bad_pte(vma, addr, ptent, page); 1521 } 1522 if (unlikely(__tlb_remove_folio_pages(tlb, page, nr, delay_rmap))) { 1523 *force_flush = true; 1524 *force_break = true; 1525 } 1526 } 1527 1528 /* 1529 * Zap or skip at least one present PTE, trying to batch-process subsequent 1530 * PTEs that map consecutive pages of the same folio. 1531 * 1532 * Returns the number of processed (skipped or zapped) PTEs (at least 1). 1533 */ 1534 static inline int zap_present_ptes(struct mmu_gather *tlb, 1535 struct vm_area_struct *vma, pte_t *pte, pte_t ptent, 1536 unsigned int max_nr, unsigned long addr, 1537 struct zap_details *details, int *rss, bool *force_flush, 1538 bool *force_break) 1539 { 1540 const fpb_t fpb_flags = FPB_IGNORE_DIRTY | FPB_IGNORE_SOFT_DIRTY; 1541 struct mm_struct *mm = tlb->mm; 1542 struct folio *folio; 1543 struct page *page; 1544 int nr; 1545 1546 page = vm_normal_page(vma, addr, ptent); 1547 if (!page) { 1548 /* We don't need up-to-date accessed/dirty bits. */ 1549 ptep_get_and_clear_full(mm, addr, pte, tlb->fullmm); 1550 arch_check_zapped_pte(vma, ptent); 1551 tlb_remove_tlb_entry(tlb, pte, addr); 1552 if (userfaultfd_pte_wp(vma, ptent)) 1553 zap_install_uffd_wp_if_needed(vma, addr, pte, 1, 1554 details, ptent); 1555 ksm_might_unmap_zero_page(mm, ptent); 1556 return 1; 1557 } 1558 1559 folio = page_folio(page); 1560 if (unlikely(!should_zap_folio(details, folio))) 1561 return 1; 1562 1563 /* 1564 * Make sure that the common "small folio" case is as fast as possible 1565 * by keeping the batching logic separate. 1566 */ 1567 if (unlikely(folio_test_large(folio) && max_nr != 1)) { 1568 nr = folio_pte_batch(folio, addr, pte, ptent, max_nr, fpb_flags, 1569 NULL, NULL, NULL); 1570 1571 zap_present_folio_ptes(tlb, vma, folio, page, pte, ptent, nr, 1572 addr, details, rss, force_flush, 1573 force_break); 1574 return nr; 1575 } 1576 zap_present_folio_ptes(tlb, vma, folio, page, pte, ptent, 1, addr, 1577 details, rss, force_flush, force_break); 1578 return 1; 1579 } 1580 1581 static unsigned long zap_pte_range(struct mmu_gather *tlb, 1582 struct vm_area_struct *vma, pmd_t *pmd, 1583 unsigned long addr, unsigned long end, 1584 struct zap_details *details) 1585 { 1586 bool force_flush = false, force_break = false; 1587 struct mm_struct *mm = tlb->mm; 1588 int rss[NR_MM_COUNTERS]; 1589 spinlock_t *ptl; 1590 pte_t *start_pte; 1591 pte_t *pte; 1592 swp_entry_t entry; 1593 int nr; 1594 1595 tlb_change_page_size(tlb, PAGE_SIZE); 1596 init_rss_vec(rss); 1597 start_pte = pte = pte_offset_map_lock(mm, pmd, addr, &ptl); 1598 if (!pte) 1599 return addr; 1600 1601 flush_tlb_batched_pending(mm); 1602 arch_enter_lazy_mmu_mode(); 1603 do { 1604 pte_t ptent = ptep_get(pte); 1605 struct folio *folio; 1606 struct page *page; 1607 int max_nr; 1608 1609 nr = 1; 1610 if (pte_none(ptent)) 1611 continue; 1612 1613 if (need_resched()) 1614 break; 1615 1616 if (pte_present(ptent)) { 1617 max_nr = (end - addr) / PAGE_SIZE; 1618 nr = zap_present_ptes(tlb, vma, pte, ptent, max_nr, 1619 addr, details, rss, &force_flush, 1620 &force_break); 1621 if (unlikely(force_break)) { 1622 addr += nr * PAGE_SIZE; 1623 break; 1624 } 1625 continue; 1626 } 1627 1628 entry = pte_to_swp_entry(ptent); 1629 if (is_device_private_entry(entry) || 1630 is_device_exclusive_entry(entry)) { 1631 page = pfn_swap_entry_to_page(entry); 1632 folio = page_folio(page); 1633 if (unlikely(!should_zap_folio(details, folio))) 1634 continue; 1635 /* 1636 * Both device private/exclusive mappings should only 1637 * work with anonymous page so far, so we don't need to 1638 * consider uffd-wp bit when zap. For more information, 1639 * see zap_install_uffd_wp_if_needed(). 1640 */ 1641 WARN_ON_ONCE(!vma_is_anonymous(vma)); 1642 rss[mm_counter(folio)]--; 1643 if (is_device_private_entry(entry)) 1644 folio_remove_rmap_pte(folio, page, vma); 1645 folio_put(folio); 1646 } else if (!non_swap_entry(entry)) { 1647 max_nr = (end - addr) / PAGE_SIZE; 1648 nr = swap_pte_batch(pte, max_nr, ptent); 1649 /* Genuine swap entries, hence a private anon pages */ 1650 if (!should_zap_cows(details)) 1651 continue; 1652 rss[MM_SWAPENTS] -= nr; 1653 free_swap_and_cache_nr(entry, nr); 1654 } else if (is_migration_entry(entry)) { 1655 folio = pfn_swap_entry_folio(entry); 1656 if (!should_zap_folio(details, folio)) 1657 continue; 1658 rss[mm_counter(folio)]--; 1659 } else if (pte_marker_entry_uffd_wp(entry)) { 1660 /* 1661 * For anon: always drop the marker; for file: only 1662 * drop the marker if explicitly requested. 1663 */ 1664 if (!vma_is_anonymous(vma) && 1665 !zap_drop_file_uffd_wp(details)) 1666 continue; 1667 } else if (is_hwpoison_entry(entry) || 1668 is_poisoned_swp_entry(entry)) { 1669 if (!should_zap_cows(details)) 1670 continue; 1671 } else { 1672 /* We should have covered all the swap entry types */ 1673 pr_alert("unrecognized swap entry 0x%lx\n", entry.val); 1674 WARN_ON_ONCE(1); 1675 } 1676 clear_not_present_full_ptes(mm, addr, pte, nr, tlb->fullmm); 1677 zap_install_uffd_wp_if_needed(vma, addr, pte, nr, details, ptent); 1678 } while (pte += nr, addr += PAGE_SIZE * nr, addr != end); 1679 1680 add_mm_rss_vec(mm, rss); 1681 arch_leave_lazy_mmu_mode(); 1682 1683 /* Do the actual TLB flush before dropping ptl */ 1684 if (force_flush) { 1685 tlb_flush_mmu_tlbonly(tlb); 1686 tlb_flush_rmaps(tlb, vma); 1687 } 1688 pte_unmap_unlock(start_pte, ptl); 1689 1690 /* 1691 * If we forced a TLB flush (either due to running out of 1692 * batch buffers or because we needed to flush dirty TLB 1693 * entries before releasing the ptl), free the batched 1694 * memory too. Come back again if we didn't do everything. 1695 */ 1696 if (force_flush) 1697 tlb_flush_mmu(tlb); 1698 1699 return addr; 1700 } 1701 1702 static inline unsigned long zap_pmd_range(struct mmu_gather *tlb, 1703 struct vm_area_struct *vma, pud_t *pud, 1704 unsigned long addr, unsigned long end, 1705 struct zap_details *details) 1706 { 1707 pmd_t *pmd; 1708 unsigned long next; 1709 1710 pmd = pmd_offset(pud, addr); 1711 do { 1712 next = pmd_addr_end(addr, end); 1713 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) { 1714 if (next - addr != HPAGE_PMD_SIZE) 1715 __split_huge_pmd(vma, pmd, addr, false, NULL); 1716 else if (zap_huge_pmd(tlb, vma, pmd, addr)) { 1717 addr = next; 1718 continue; 1719 } 1720 /* fall through */ 1721 } else if (details && details->single_folio && 1722 folio_test_pmd_mappable(details->single_folio) && 1723 next - addr == HPAGE_PMD_SIZE && pmd_none(*pmd)) { 1724 spinlock_t *ptl = pmd_lock(tlb->mm, pmd); 1725 /* 1726 * Take and drop THP pmd lock so that we cannot return 1727 * prematurely, while zap_huge_pmd() has cleared *pmd, 1728 * but not yet decremented compound_mapcount(). 1729 */ 1730 spin_unlock(ptl); 1731 } 1732 if (pmd_none(*pmd)) { 1733 addr = next; 1734 continue; 1735 } 1736 addr = zap_pte_range(tlb, vma, pmd, addr, next, details); 1737 if (addr != next) 1738 pmd--; 1739 } while (pmd++, cond_resched(), addr != end); 1740 1741 return addr; 1742 } 1743 1744 static inline unsigned long zap_pud_range(struct mmu_gather *tlb, 1745 struct vm_area_struct *vma, p4d_t *p4d, 1746 unsigned long addr, unsigned long end, 1747 struct zap_details *details) 1748 { 1749 pud_t *pud; 1750 unsigned long next; 1751 1752 pud = pud_offset(p4d, addr); 1753 do { 1754 next = pud_addr_end(addr, end); 1755 if (pud_trans_huge(*pud) || pud_devmap(*pud)) { 1756 if (next - addr != HPAGE_PUD_SIZE) { 1757 mmap_assert_locked(tlb->mm); 1758 split_huge_pud(vma, pud, addr); 1759 } else if (zap_huge_pud(tlb, vma, pud, addr)) 1760 goto next; 1761 /* fall through */ 1762 } 1763 if (pud_none_or_clear_bad(pud)) 1764 continue; 1765 next = zap_pmd_range(tlb, vma, pud, addr, next, details); 1766 next: 1767 cond_resched(); 1768 } while (pud++, addr = next, addr != end); 1769 1770 return addr; 1771 } 1772 1773 static inline unsigned long zap_p4d_range(struct mmu_gather *tlb, 1774 struct vm_area_struct *vma, pgd_t *pgd, 1775 unsigned long addr, unsigned long end, 1776 struct zap_details *details) 1777 { 1778 p4d_t *p4d; 1779 unsigned long next; 1780 1781 p4d = p4d_offset(pgd, addr); 1782 do { 1783 next = p4d_addr_end(addr, end); 1784 if (p4d_none_or_clear_bad(p4d)) 1785 continue; 1786 next = zap_pud_range(tlb, vma, p4d, addr, next, details); 1787 } while (p4d++, addr = next, addr != end); 1788 1789 return addr; 1790 } 1791 1792 void unmap_page_range(struct mmu_gather *tlb, 1793 struct vm_area_struct *vma, 1794 unsigned long addr, unsigned long end, 1795 struct zap_details *details) 1796 { 1797 pgd_t *pgd; 1798 unsigned long next; 1799 1800 BUG_ON(addr >= end); 1801 tlb_start_vma(tlb, vma); 1802 pgd = pgd_offset(vma->vm_mm, addr); 1803 do { 1804 next = pgd_addr_end(addr, end); 1805 if (pgd_none_or_clear_bad(pgd)) 1806 continue; 1807 next = zap_p4d_range(tlb, vma, pgd, addr, next, details); 1808 } while (pgd++, addr = next, addr != end); 1809 tlb_end_vma(tlb, vma); 1810 } 1811 1812 1813 static void unmap_single_vma(struct mmu_gather *tlb, 1814 struct vm_area_struct *vma, unsigned long start_addr, 1815 unsigned long end_addr, 1816 struct zap_details *details, bool mm_wr_locked) 1817 { 1818 unsigned long start = max(vma->vm_start, start_addr); 1819 unsigned long end; 1820 1821 if (start >= vma->vm_end) 1822 return; 1823 end = min(vma->vm_end, end_addr); 1824 if (end <= vma->vm_start) 1825 return; 1826 1827 if (vma->vm_file) 1828 uprobe_munmap(vma, start, end); 1829 1830 if (unlikely(vma->vm_flags & VM_PFNMAP)) 1831 untrack_pfn(vma, 0, 0, mm_wr_locked); 1832 1833 if (start != end) { 1834 if (unlikely(is_vm_hugetlb_page(vma))) { 1835 /* 1836 * It is undesirable to test vma->vm_file as it 1837 * should be non-null for valid hugetlb area. 1838 * However, vm_file will be NULL in the error 1839 * cleanup path of mmap_region. When 1840 * hugetlbfs ->mmap method fails, 1841 * mmap_region() nullifies vma->vm_file 1842 * before calling this function to clean up. 1843 * Since no pte has actually been setup, it is 1844 * safe to do nothing in this case. 1845 */ 1846 if (vma->vm_file) { 1847 zap_flags_t zap_flags = details ? 1848 details->zap_flags : 0; 1849 __unmap_hugepage_range(tlb, vma, start, end, 1850 NULL, zap_flags); 1851 } 1852 } else 1853 unmap_page_range(tlb, vma, start, end, details); 1854 } 1855 } 1856 1857 /** 1858 * unmap_vmas - unmap a range of memory covered by a list of vma's 1859 * @tlb: address of the caller's struct mmu_gather 1860 * @mas: the maple state 1861 * @vma: the starting vma 1862 * @start_addr: virtual address at which to start unmapping 1863 * @end_addr: virtual address at which to end unmapping 1864 * @tree_end: The maximum index to check 1865 * @mm_wr_locked: lock flag 1866 * 1867 * Unmap all pages in the vma list. 1868 * 1869 * Only addresses between `start' and `end' will be unmapped. 1870 * 1871 * The VMA list must be sorted in ascending virtual address order. 1872 * 1873 * unmap_vmas() assumes that the caller will flush the whole unmapped address 1874 * range after unmap_vmas() returns. So the only responsibility here is to 1875 * ensure that any thus-far unmapped pages are flushed before unmap_vmas() 1876 * drops the lock and schedules. 1877 */ 1878 void unmap_vmas(struct mmu_gather *tlb, struct ma_state *mas, 1879 struct vm_area_struct *vma, unsigned long start_addr, 1880 unsigned long end_addr, unsigned long tree_end, 1881 bool mm_wr_locked) 1882 { 1883 struct mmu_notifier_range range; 1884 struct zap_details details = { 1885 .zap_flags = ZAP_FLAG_DROP_MARKER | ZAP_FLAG_UNMAP, 1886 /* Careful - we need to zap private pages too! */ 1887 .even_cows = true, 1888 }; 1889 1890 mmu_notifier_range_init(&range, MMU_NOTIFY_UNMAP, 0, vma->vm_mm, 1891 start_addr, end_addr); 1892 mmu_notifier_invalidate_range_start(&range); 1893 do { 1894 unsigned long start = start_addr; 1895 unsigned long end = end_addr; 1896 hugetlb_zap_begin(vma, &start, &end); 1897 unmap_single_vma(tlb, vma, start, end, &details, 1898 mm_wr_locked); 1899 hugetlb_zap_end(vma, &details); 1900 vma = mas_find(mas, tree_end - 1); 1901 } while (vma && likely(!xa_is_zero(vma))); 1902 mmu_notifier_invalidate_range_end(&range); 1903 } 1904 1905 /** 1906 * zap_page_range_single - remove user pages in a given range 1907 * @vma: vm_area_struct holding the applicable pages 1908 * @address: starting address of pages to zap 1909 * @size: number of bytes to zap 1910 * @details: details of shared cache invalidation 1911 * 1912 * The range must fit into one VMA. 1913 */ 1914 void zap_page_range_single(struct vm_area_struct *vma, unsigned long address, 1915 unsigned long size, struct zap_details *details) 1916 { 1917 const unsigned long end = address + size; 1918 struct mmu_notifier_range range; 1919 struct mmu_gather tlb; 1920 1921 lru_add_drain(); 1922 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm, 1923 address, end); 1924 hugetlb_zap_begin(vma, &range.start, &range.end); 1925 tlb_gather_mmu(&tlb, vma->vm_mm); 1926 update_hiwater_rss(vma->vm_mm); 1927 mmu_notifier_invalidate_range_start(&range); 1928 /* 1929 * unmap 'address-end' not 'range.start-range.end' as range 1930 * could have been expanded for hugetlb pmd sharing. 1931 */ 1932 unmap_single_vma(&tlb, vma, address, end, details, false); 1933 mmu_notifier_invalidate_range_end(&range); 1934 tlb_finish_mmu(&tlb); 1935 hugetlb_zap_end(vma, details); 1936 } 1937 1938 /** 1939 * zap_vma_ptes - remove ptes mapping the vma 1940 * @vma: vm_area_struct holding ptes to be zapped 1941 * @address: starting address of pages to zap 1942 * @size: number of bytes to zap 1943 * 1944 * This function only unmaps ptes assigned to VM_PFNMAP vmas. 1945 * 1946 * The entire address range must be fully contained within the vma. 1947 * 1948 */ 1949 void zap_vma_ptes(struct vm_area_struct *vma, unsigned long address, 1950 unsigned long size) 1951 { 1952 if (!range_in_vma(vma, address, address + size) || 1953 !(vma->vm_flags & VM_PFNMAP)) 1954 return; 1955 1956 zap_page_range_single(vma, address, size, NULL); 1957 } 1958 EXPORT_SYMBOL_GPL(zap_vma_ptes); 1959 1960 static pmd_t *walk_to_pmd(struct mm_struct *mm, unsigned long addr) 1961 { 1962 pgd_t *pgd; 1963 p4d_t *p4d; 1964 pud_t *pud; 1965 pmd_t *pmd; 1966 1967 pgd = pgd_offset(mm, addr); 1968 p4d = p4d_alloc(mm, pgd, addr); 1969 if (!p4d) 1970 return NULL; 1971 pud = pud_alloc(mm, p4d, addr); 1972 if (!pud) 1973 return NULL; 1974 pmd = pmd_alloc(mm, pud, addr); 1975 if (!pmd) 1976 return NULL; 1977 1978 VM_BUG_ON(pmd_trans_huge(*pmd)); 1979 return pmd; 1980 } 1981 1982 pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr, 1983 spinlock_t **ptl) 1984 { 1985 pmd_t *pmd = walk_to_pmd(mm, addr); 1986 1987 if (!pmd) 1988 return NULL; 1989 return pte_alloc_map_lock(mm, pmd, addr, ptl); 1990 } 1991 1992 static bool vm_mixed_zeropage_allowed(struct vm_area_struct *vma) 1993 { 1994 VM_WARN_ON_ONCE(vma->vm_flags & VM_PFNMAP); 1995 /* 1996 * Whoever wants to forbid the zeropage after some zeropages 1997 * might already have been mapped has to scan the page tables and 1998 * bail out on any zeropages. Zeropages in COW mappings can 1999 * be unshared using FAULT_FLAG_UNSHARE faults. 2000 */ 2001 if (mm_forbids_zeropage(vma->vm_mm)) 2002 return false; 2003 /* zeropages in COW mappings are common and unproblematic. */ 2004 if (is_cow_mapping(vma->vm_flags)) 2005 return true; 2006 /* Mappings that do not allow for writable PTEs are unproblematic. */ 2007 if (!(vma->vm_flags & (VM_WRITE | VM_MAYWRITE))) 2008 return true; 2009 /* 2010 * Why not allow any VMA that has vm_ops->pfn_mkwrite? GUP could 2011 * find the shared zeropage and longterm-pin it, which would 2012 * be problematic as soon as the zeropage gets replaced by a different 2013 * page due to vma->vm_ops->pfn_mkwrite, because what's mapped would 2014 * now differ to what GUP looked up. FSDAX is incompatible to 2015 * FOLL_LONGTERM and VM_IO is incompatible to GUP completely (see 2016 * check_vma_flags). 2017 */ 2018 return vma->vm_ops && vma->vm_ops->pfn_mkwrite && 2019 (vma_is_fsdax(vma) || vma->vm_flags & VM_IO); 2020 } 2021 2022 static int validate_page_before_insert(struct vm_area_struct *vma, 2023 struct page *page) 2024 { 2025 struct folio *folio = page_folio(page); 2026 2027 if (!folio_ref_count(folio)) 2028 return -EINVAL; 2029 if (unlikely(is_zero_folio(folio))) { 2030 if (!vm_mixed_zeropage_allowed(vma)) 2031 return -EINVAL; 2032 return 0; 2033 } 2034 if (folio_test_anon(folio) || folio_test_slab(folio) || 2035 page_has_type(page)) 2036 return -EINVAL; 2037 flush_dcache_folio(folio); 2038 return 0; 2039 } 2040 2041 static int insert_page_into_pte_locked(struct vm_area_struct *vma, pte_t *pte, 2042 unsigned long addr, struct page *page, pgprot_t prot) 2043 { 2044 struct folio *folio = page_folio(page); 2045 pte_t pteval; 2046 2047 if (!pte_none(ptep_get(pte))) 2048 return -EBUSY; 2049 /* Ok, finally just insert the thing.. */ 2050 pteval = mk_pte(page, prot); 2051 if (unlikely(is_zero_folio(folio))) { 2052 pteval = pte_mkspecial(pteval); 2053 } else { 2054 folio_get(folio); 2055 inc_mm_counter(vma->vm_mm, mm_counter_file(folio)); 2056 folio_add_file_rmap_pte(folio, page, vma); 2057 } 2058 set_pte_at(vma->vm_mm, addr, pte, pteval); 2059 return 0; 2060 } 2061 2062 static int insert_page(struct vm_area_struct *vma, unsigned long addr, 2063 struct page *page, pgprot_t prot) 2064 { 2065 int retval; 2066 pte_t *pte; 2067 spinlock_t *ptl; 2068 2069 retval = validate_page_before_insert(vma, page); 2070 if (retval) 2071 goto out; 2072 retval = -ENOMEM; 2073 pte = get_locked_pte(vma->vm_mm, addr, &ptl); 2074 if (!pte) 2075 goto out; 2076 retval = insert_page_into_pte_locked(vma, pte, addr, page, prot); 2077 pte_unmap_unlock(pte, ptl); 2078 out: 2079 return retval; 2080 } 2081 2082 static int insert_page_in_batch_locked(struct vm_area_struct *vma, pte_t *pte, 2083 unsigned long addr, struct page *page, pgprot_t prot) 2084 { 2085 int err; 2086 2087 err = validate_page_before_insert(vma, page); 2088 if (err) 2089 return err; 2090 return insert_page_into_pte_locked(vma, pte, addr, page, prot); 2091 } 2092 2093 /* insert_pages() amortizes the cost of spinlock operations 2094 * when inserting pages in a loop. 2095 */ 2096 static int insert_pages(struct vm_area_struct *vma, unsigned long addr, 2097 struct page **pages, unsigned long *num, pgprot_t prot) 2098 { 2099 pmd_t *pmd = NULL; 2100 pte_t *start_pte, *pte; 2101 spinlock_t *pte_lock; 2102 struct mm_struct *const mm = vma->vm_mm; 2103 unsigned long curr_page_idx = 0; 2104 unsigned long remaining_pages_total = *num; 2105 unsigned long pages_to_write_in_pmd; 2106 int ret; 2107 more: 2108 ret = -EFAULT; 2109 pmd = walk_to_pmd(mm, addr); 2110 if (!pmd) 2111 goto out; 2112 2113 pages_to_write_in_pmd = min_t(unsigned long, 2114 remaining_pages_total, PTRS_PER_PTE - pte_index(addr)); 2115 2116 /* Allocate the PTE if necessary; takes PMD lock once only. */ 2117 ret = -ENOMEM; 2118 if (pte_alloc(mm, pmd)) 2119 goto out; 2120 2121 while (pages_to_write_in_pmd) { 2122 int pte_idx = 0; 2123 const int batch_size = min_t(int, pages_to_write_in_pmd, 8); 2124 2125 start_pte = pte_offset_map_lock(mm, pmd, addr, &pte_lock); 2126 if (!start_pte) { 2127 ret = -EFAULT; 2128 goto out; 2129 } 2130 for (pte = start_pte; pte_idx < batch_size; ++pte, ++pte_idx) { 2131 int err = insert_page_in_batch_locked(vma, pte, 2132 addr, pages[curr_page_idx], prot); 2133 if (unlikely(err)) { 2134 pte_unmap_unlock(start_pte, pte_lock); 2135 ret = err; 2136 remaining_pages_total -= pte_idx; 2137 goto out; 2138 } 2139 addr += PAGE_SIZE; 2140 ++curr_page_idx; 2141 } 2142 pte_unmap_unlock(start_pte, pte_lock); 2143 pages_to_write_in_pmd -= batch_size; 2144 remaining_pages_total -= batch_size; 2145 } 2146 if (remaining_pages_total) 2147 goto more; 2148 ret = 0; 2149 out: 2150 *num = remaining_pages_total; 2151 return ret; 2152 } 2153 2154 /** 2155 * vm_insert_pages - insert multiple pages into user vma, batching the pmd lock. 2156 * @vma: user vma to map to 2157 * @addr: target start user address of these pages 2158 * @pages: source kernel pages 2159 * @num: in: number of pages to map. out: number of pages that were *not* 2160 * mapped. (0 means all pages were successfully mapped). 2161 * 2162 * Preferred over vm_insert_page() when inserting multiple pages. 2163 * 2164 * In case of error, we may have mapped a subset of the provided 2165 * pages. It is the caller's responsibility to account for this case. 2166 * 2167 * The same restrictions apply as in vm_insert_page(). 2168 */ 2169 int vm_insert_pages(struct vm_area_struct *vma, unsigned long addr, 2170 struct page **pages, unsigned long *num) 2171 { 2172 const unsigned long end_addr = addr + (*num * PAGE_SIZE) - 1; 2173 2174 if (addr < vma->vm_start || end_addr >= vma->vm_end) 2175 return -EFAULT; 2176 if (!(vma->vm_flags & VM_MIXEDMAP)) { 2177 BUG_ON(mmap_read_trylock(vma->vm_mm)); 2178 BUG_ON(vma->vm_flags & VM_PFNMAP); 2179 vm_flags_set(vma, VM_MIXEDMAP); 2180 } 2181 /* Defer page refcount checking till we're about to map that page. */ 2182 return insert_pages(vma, addr, pages, num, vma->vm_page_prot); 2183 } 2184 EXPORT_SYMBOL(vm_insert_pages); 2185 2186 /** 2187 * vm_insert_page - insert single page into user vma 2188 * @vma: user vma to map to 2189 * @addr: target user address of this page 2190 * @page: source kernel page 2191 * 2192 * This allows drivers to insert individual pages they've allocated 2193 * into a user vma. The zeropage is supported in some VMAs, 2194 * see vm_mixed_zeropage_allowed(). 2195 * 2196 * The page has to be a nice clean _individual_ kernel allocation. 2197 * If you allocate a compound page, you need to have marked it as 2198 * such (__GFP_COMP), or manually just split the page up yourself 2199 * (see split_page()). 2200 * 2201 * NOTE! Traditionally this was done with "remap_pfn_range()" which 2202 * took an arbitrary page protection parameter. This doesn't allow 2203 * that. Your vma protection will have to be set up correctly, which 2204 * means that if you want a shared writable mapping, you'd better 2205 * ask for a shared writable mapping! 2206 * 2207 * The page does not need to be reserved. 2208 * 2209 * Usually this function is called from f_op->mmap() handler 2210 * under mm->mmap_lock write-lock, so it can change vma->vm_flags. 2211 * Caller must set VM_MIXEDMAP on vma if it wants to call this 2212 * function from other places, for example from page-fault handler. 2213 * 2214 * Return: %0 on success, negative error code otherwise. 2215 */ 2216 int vm_insert_page(struct vm_area_struct *vma, unsigned long addr, 2217 struct page *page) 2218 { 2219 if (addr < vma->vm_start || addr >= vma->vm_end) 2220 return -EFAULT; 2221 if (!(vma->vm_flags & VM_MIXEDMAP)) { 2222 BUG_ON(mmap_read_trylock(vma->vm_mm)); 2223 BUG_ON(vma->vm_flags & VM_PFNMAP); 2224 vm_flags_set(vma, VM_MIXEDMAP); 2225 } 2226 return insert_page(vma, addr, page, vma->vm_page_prot); 2227 } 2228 EXPORT_SYMBOL(vm_insert_page); 2229 2230 /* 2231 * __vm_map_pages - maps range of kernel pages into user vma 2232 * @vma: user vma to map to 2233 * @pages: pointer to array of source kernel pages 2234 * @num: number of pages in page array 2235 * @offset: user's requested vm_pgoff 2236 * 2237 * This allows drivers to map range of kernel pages into a user vma. 2238 * The zeropage is supported in some VMAs, see 2239 * vm_mixed_zeropage_allowed(). 2240 * 2241 * Return: 0 on success and error code otherwise. 2242 */ 2243 static int __vm_map_pages(struct vm_area_struct *vma, struct page **pages, 2244 unsigned long num, unsigned long offset) 2245 { 2246 unsigned long count = vma_pages(vma); 2247 unsigned long uaddr = vma->vm_start; 2248 int ret, i; 2249 2250 /* Fail if the user requested offset is beyond the end of the object */ 2251 if (offset >= num) 2252 return -ENXIO; 2253 2254 /* Fail if the user requested size exceeds available object size */ 2255 if (count > num - offset) 2256 return -ENXIO; 2257 2258 for (i = 0; i < count; i++) { 2259 ret = vm_insert_page(vma, uaddr, pages[offset + i]); 2260 if (ret < 0) 2261 return ret; 2262 uaddr += PAGE_SIZE; 2263 } 2264 2265 return 0; 2266 } 2267 2268 /** 2269 * vm_map_pages - maps range of kernel pages starts with non zero offset 2270 * @vma: user vma to map to 2271 * @pages: pointer to array of source kernel pages 2272 * @num: number of pages in page array 2273 * 2274 * Maps an object consisting of @num pages, catering for the user's 2275 * requested vm_pgoff 2276 * 2277 * If we fail to insert any page into the vma, the function will return 2278 * immediately leaving any previously inserted pages present. Callers 2279 * from the mmap handler may immediately return the error as their caller 2280 * will destroy the vma, removing any successfully inserted pages. Other 2281 * callers should make their own arrangements for calling unmap_region(). 2282 * 2283 * Context: Process context. Called by mmap handlers. 2284 * Return: 0 on success and error code otherwise. 2285 */ 2286 int vm_map_pages(struct vm_area_struct *vma, struct page **pages, 2287 unsigned long num) 2288 { 2289 return __vm_map_pages(vma, pages, num, vma->vm_pgoff); 2290 } 2291 EXPORT_SYMBOL(vm_map_pages); 2292 2293 /** 2294 * vm_map_pages_zero - map range of kernel pages starts with zero offset 2295 * @vma: user vma to map to 2296 * @pages: pointer to array of source kernel pages 2297 * @num: number of pages in page array 2298 * 2299 * Similar to vm_map_pages(), except that it explicitly sets the offset 2300 * to 0. This function is intended for the drivers that did not consider 2301 * vm_pgoff. 2302 * 2303 * Context: Process context. Called by mmap handlers. 2304 * Return: 0 on success and error code otherwise. 2305 */ 2306 int vm_map_pages_zero(struct vm_area_struct *vma, struct page **pages, 2307 unsigned long num) 2308 { 2309 return __vm_map_pages(vma, pages, num, 0); 2310 } 2311 EXPORT_SYMBOL(vm_map_pages_zero); 2312 2313 static vm_fault_t insert_pfn(struct vm_area_struct *vma, unsigned long addr, 2314 pfn_t pfn, pgprot_t prot, bool mkwrite) 2315 { 2316 struct mm_struct *mm = vma->vm_mm; 2317 pte_t *pte, entry; 2318 spinlock_t *ptl; 2319 2320 pte = get_locked_pte(mm, addr, &ptl); 2321 if (!pte) 2322 return VM_FAULT_OOM; 2323 entry = ptep_get(pte); 2324 if (!pte_none(entry)) { 2325 if (mkwrite) { 2326 /* 2327 * For read faults on private mappings the PFN passed 2328 * in may not match the PFN we have mapped if the 2329 * mapped PFN is a writeable COW page. In the mkwrite 2330 * case we are creating a writable PTE for a shared 2331 * mapping and we expect the PFNs to match. If they 2332 * don't match, we are likely racing with block 2333 * allocation and mapping invalidation so just skip the 2334 * update. 2335 */ 2336 if (pte_pfn(entry) != pfn_t_to_pfn(pfn)) { 2337 WARN_ON_ONCE(!is_zero_pfn(pte_pfn(entry))); 2338 goto out_unlock; 2339 } 2340 entry = pte_mkyoung(entry); 2341 entry = maybe_mkwrite(pte_mkdirty(entry), vma); 2342 if (ptep_set_access_flags(vma, addr, pte, entry, 1)) 2343 update_mmu_cache(vma, addr, pte); 2344 } 2345 goto out_unlock; 2346 } 2347 2348 /* Ok, finally just insert the thing.. */ 2349 if (pfn_t_devmap(pfn)) 2350 entry = pte_mkdevmap(pfn_t_pte(pfn, prot)); 2351 else 2352 entry = pte_mkspecial(pfn_t_pte(pfn, prot)); 2353 2354 if (mkwrite) { 2355 entry = pte_mkyoung(entry); 2356 entry = maybe_mkwrite(pte_mkdirty(entry), vma); 2357 } 2358 2359 set_pte_at(mm, addr, pte, entry); 2360 update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */ 2361 2362 out_unlock: 2363 pte_unmap_unlock(pte, ptl); 2364 return VM_FAULT_NOPAGE; 2365 } 2366 2367 /** 2368 * vmf_insert_pfn_prot - insert single pfn into user vma with specified pgprot 2369 * @vma: user vma to map to 2370 * @addr: target user address of this page 2371 * @pfn: source kernel pfn 2372 * @pgprot: pgprot flags for the inserted page 2373 * 2374 * This is exactly like vmf_insert_pfn(), except that it allows drivers 2375 * to override pgprot on a per-page basis. 2376 * 2377 * This only makes sense for IO mappings, and it makes no sense for 2378 * COW mappings. In general, using multiple vmas is preferable; 2379 * vmf_insert_pfn_prot should only be used if using multiple VMAs is 2380 * impractical. 2381 * 2382 * pgprot typically only differs from @vma->vm_page_prot when drivers set 2383 * caching- and encryption bits different than those of @vma->vm_page_prot, 2384 * because the caching- or encryption mode may not be known at mmap() time. 2385 * 2386 * This is ok as long as @vma->vm_page_prot is not used by the core vm 2387 * to set caching and encryption bits for those vmas (except for COW pages). 2388 * This is ensured by core vm only modifying these page table entries using 2389 * functions that don't touch caching- or encryption bits, using pte_modify() 2390 * if needed. (See for example mprotect()). 2391 * 2392 * Also when new page-table entries are created, this is only done using the 2393 * fault() callback, and never using the value of vma->vm_page_prot, 2394 * except for page-table entries that point to anonymous pages as the result 2395 * of COW. 2396 * 2397 * Context: Process context. May allocate using %GFP_KERNEL. 2398 * Return: vm_fault_t value. 2399 */ 2400 vm_fault_t vmf_insert_pfn_prot(struct vm_area_struct *vma, unsigned long addr, 2401 unsigned long pfn, pgprot_t pgprot) 2402 { 2403 /* 2404 * Technically, architectures with pte_special can avoid all these 2405 * restrictions (same for remap_pfn_range). However we would like 2406 * consistency in testing and feature parity among all, so we should 2407 * try to keep these invariants in place for everybody. 2408 */ 2409 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))); 2410 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) == 2411 (VM_PFNMAP|VM_MIXEDMAP)); 2412 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags)); 2413 BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn)); 2414 2415 if (addr < vma->vm_start || addr >= vma->vm_end) 2416 return VM_FAULT_SIGBUS; 2417 2418 if (!pfn_modify_allowed(pfn, pgprot)) 2419 return VM_FAULT_SIGBUS; 2420 2421 track_pfn_insert(vma, &pgprot, __pfn_to_pfn_t(pfn, PFN_DEV)); 2422 2423 return insert_pfn(vma, addr, __pfn_to_pfn_t(pfn, PFN_DEV), pgprot, 2424 false); 2425 } 2426 EXPORT_SYMBOL(vmf_insert_pfn_prot); 2427 2428 /** 2429 * vmf_insert_pfn - insert single pfn into user vma 2430 * @vma: user vma to map to 2431 * @addr: target user address of this page 2432 * @pfn: source kernel pfn 2433 * 2434 * Similar to vm_insert_page, this allows drivers to insert individual pages 2435 * they've allocated into a user vma. Same comments apply. 2436 * 2437 * This function should only be called from a vm_ops->fault handler, and 2438 * in that case the handler should return the result of this function. 2439 * 2440 * vma cannot be a COW mapping. 2441 * 2442 * As this is called only for pages that do not currently exist, we 2443 * do not need to flush old virtual caches or the TLB. 2444 * 2445 * Context: Process context. May allocate using %GFP_KERNEL. 2446 * Return: vm_fault_t value. 2447 */ 2448 vm_fault_t vmf_insert_pfn(struct vm_area_struct *vma, unsigned long addr, 2449 unsigned long pfn) 2450 { 2451 return vmf_insert_pfn_prot(vma, addr, pfn, vma->vm_page_prot); 2452 } 2453 EXPORT_SYMBOL(vmf_insert_pfn); 2454 2455 static bool vm_mixed_ok(struct vm_area_struct *vma, pfn_t pfn, bool mkwrite) 2456 { 2457 if (unlikely(is_zero_pfn(pfn_t_to_pfn(pfn))) && 2458 (mkwrite || !vm_mixed_zeropage_allowed(vma))) 2459 return false; 2460 /* these checks mirror the abort conditions in vm_normal_page */ 2461 if (vma->vm_flags & VM_MIXEDMAP) 2462 return true; 2463 if (pfn_t_devmap(pfn)) 2464 return true; 2465 if (pfn_t_special(pfn)) 2466 return true; 2467 if (is_zero_pfn(pfn_t_to_pfn(pfn))) 2468 return true; 2469 return false; 2470 } 2471 2472 static vm_fault_t __vm_insert_mixed(struct vm_area_struct *vma, 2473 unsigned long addr, pfn_t pfn, bool mkwrite) 2474 { 2475 pgprot_t pgprot = vma->vm_page_prot; 2476 int err; 2477 2478 if (!vm_mixed_ok(vma, pfn, mkwrite)) 2479 return VM_FAULT_SIGBUS; 2480 2481 if (addr < vma->vm_start || addr >= vma->vm_end) 2482 return VM_FAULT_SIGBUS; 2483 2484 track_pfn_insert(vma, &pgprot, pfn); 2485 2486 if (!pfn_modify_allowed(pfn_t_to_pfn(pfn), pgprot)) 2487 return VM_FAULT_SIGBUS; 2488 2489 /* 2490 * If we don't have pte special, then we have to use the pfn_valid() 2491 * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must* 2492 * refcount the page if pfn_valid is true (hence insert_page rather 2493 * than insert_pfn). If a zero_pfn were inserted into a VM_MIXEDMAP 2494 * without pte special, it would there be refcounted as a normal page. 2495 */ 2496 if (!IS_ENABLED(CONFIG_ARCH_HAS_PTE_SPECIAL) && 2497 !pfn_t_devmap(pfn) && pfn_t_valid(pfn)) { 2498 struct page *page; 2499 2500 /* 2501 * At this point we are committed to insert_page() 2502 * regardless of whether the caller specified flags that 2503 * result in pfn_t_has_page() == false. 2504 */ 2505 page = pfn_to_page(pfn_t_to_pfn(pfn)); 2506 err = insert_page(vma, addr, page, pgprot); 2507 } else { 2508 return insert_pfn(vma, addr, pfn, pgprot, mkwrite); 2509 } 2510 2511 if (err == -ENOMEM) 2512 return VM_FAULT_OOM; 2513 if (err < 0 && err != -EBUSY) 2514 return VM_FAULT_SIGBUS; 2515 2516 return VM_FAULT_NOPAGE; 2517 } 2518 2519 vm_fault_t vmf_insert_mixed(struct vm_area_struct *vma, unsigned long addr, 2520 pfn_t pfn) 2521 { 2522 return __vm_insert_mixed(vma, addr, pfn, false); 2523 } 2524 EXPORT_SYMBOL(vmf_insert_mixed); 2525 2526 /* 2527 * If the insertion of PTE failed because someone else already added a 2528 * different entry in the mean time, we treat that as success as we assume 2529 * the same entry was actually inserted. 2530 */ 2531 vm_fault_t vmf_insert_mixed_mkwrite(struct vm_area_struct *vma, 2532 unsigned long addr, pfn_t pfn) 2533 { 2534 return __vm_insert_mixed(vma, addr, pfn, true); 2535 } 2536 EXPORT_SYMBOL(vmf_insert_mixed_mkwrite); 2537 2538 /* 2539 * maps a range of physical memory into the requested pages. the old 2540 * mappings are removed. any references to nonexistent pages results 2541 * in null mappings (currently treated as "copy-on-access") 2542 */ 2543 static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd, 2544 unsigned long addr, unsigned long end, 2545 unsigned long pfn, pgprot_t prot) 2546 { 2547 pte_t *pte, *mapped_pte; 2548 spinlock_t *ptl; 2549 int err = 0; 2550 2551 mapped_pte = pte = pte_alloc_map_lock(mm, pmd, addr, &ptl); 2552 if (!pte) 2553 return -ENOMEM; 2554 arch_enter_lazy_mmu_mode(); 2555 do { 2556 BUG_ON(!pte_none(ptep_get(pte))); 2557 if (!pfn_modify_allowed(pfn, prot)) { 2558 err = -EACCES; 2559 break; 2560 } 2561 set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot))); 2562 pfn++; 2563 } while (pte++, addr += PAGE_SIZE, addr != end); 2564 arch_leave_lazy_mmu_mode(); 2565 pte_unmap_unlock(mapped_pte, ptl); 2566 return err; 2567 } 2568 2569 static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud, 2570 unsigned long addr, unsigned long end, 2571 unsigned long pfn, pgprot_t prot) 2572 { 2573 pmd_t *pmd; 2574 unsigned long next; 2575 int err; 2576 2577 pfn -= addr >> PAGE_SHIFT; 2578 pmd = pmd_alloc(mm, pud, addr); 2579 if (!pmd) 2580 return -ENOMEM; 2581 VM_BUG_ON(pmd_trans_huge(*pmd)); 2582 do { 2583 next = pmd_addr_end(addr, end); 2584 err = remap_pte_range(mm, pmd, addr, next, 2585 pfn + (addr >> PAGE_SHIFT), prot); 2586 if (err) 2587 return err; 2588 } while (pmd++, addr = next, addr != end); 2589 return 0; 2590 } 2591 2592 static inline int remap_pud_range(struct mm_struct *mm, p4d_t *p4d, 2593 unsigned long addr, unsigned long end, 2594 unsigned long pfn, pgprot_t prot) 2595 { 2596 pud_t *pud; 2597 unsigned long next; 2598 int err; 2599 2600 pfn -= addr >> PAGE_SHIFT; 2601 pud = pud_alloc(mm, p4d, addr); 2602 if (!pud) 2603 return -ENOMEM; 2604 do { 2605 next = pud_addr_end(addr, end); 2606 err = remap_pmd_range(mm, pud, addr, next, 2607 pfn + (addr >> PAGE_SHIFT), prot); 2608 if (err) 2609 return err; 2610 } while (pud++, addr = next, addr != end); 2611 return 0; 2612 } 2613 2614 static inline int remap_p4d_range(struct mm_struct *mm, pgd_t *pgd, 2615 unsigned long addr, unsigned long end, 2616 unsigned long pfn, pgprot_t prot) 2617 { 2618 p4d_t *p4d; 2619 unsigned long next; 2620 int err; 2621 2622 pfn -= addr >> PAGE_SHIFT; 2623 p4d = p4d_alloc(mm, pgd, addr); 2624 if (!p4d) 2625 return -ENOMEM; 2626 do { 2627 next = p4d_addr_end(addr, end); 2628 err = remap_pud_range(mm, p4d, addr, next, 2629 pfn + (addr >> PAGE_SHIFT), prot); 2630 if (err) 2631 return err; 2632 } while (p4d++, addr = next, addr != end); 2633 return 0; 2634 } 2635 2636 /* 2637 * Variant of remap_pfn_range that does not call track_pfn_remap. The caller 2638 * must have pre-validated the caching bits of the pgprot_t. 2639 */ 2640 int remap_pfn_range_notrack(struct vm_area_struct *vma, unsigned long addr, 2641 unsigned long pfn, unsigned long size, pgprot_t prot) 2642 { 2643 pgd_t *pgd; 2644 unsigned long next; 2645 unsigned long end = addr + PAGE_ALIGN(size); 2646 struct mm_struct *mm = vma->vm_mm; 2647 int err; 2648 2649 if (WARN_ON_ONCE(!PAGE_ALIGNED(addr))) 2650 return -EINVAL; 2651 2652 /* 2653 * Physically remapped pages are special. Tell the 2654 * rest of the world about it: 2655 * VM_IO tells people not to look at these pages 2656 * (accesses can have side effects). 2657 * VM_PFNMAP tells the core MM that the base pages are just 2658 * raw PFN mappings, and do not have a "struct page" associated 2659 * with them. 2660 * VM_DONTEXPAND 2661 * Disable vma merging and expanding with mremap(). 2662 * VM_DONTDUMP 2663 * Omit vma from core dump, even when VM_IO turned off. 2664 * 2665 * There's a horrible special case to handle copy-on-write 2666 * behaviour that some programs depend on. We mark the "original" 2667 * un-COW'ed pages by matching them up with "vma->vm_pgoff". 2668 * See vm_normal_page() for details. 2669 */ 2670 if (is_cow_mapping(vma->vm_flags)) { 2671 if (addr != vma->vm_start || end != vma->vm_end) 2672 return -EINVAL; 2673 vma->vm_pgoff = pfn; 2674 } 2675 2676 vm_flags_set(vma, VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP); 2677 2678 BUG_ON(addr >= end); 2679 pfn -= addr >> PAGE_SHIFT; 2680 pgd = pgd_offset(mm, addr); 2681 flush_cache_range(vma, addr, end); 2682 do { 2683 next = pgd_addr_end(addr, end); 2684 err = remap_p4d_range(mm, pgd, addr, next, 2685 pfn + (addr >> PAGE_SHIFT), prot); 2686 if (err) 2687 return err; 2688 } while (pgd++, addr = next, addr != end); 2689 2690 return 0; 2691 } 2692 2693 /** 2694 * remap_pfn_range - remap kernel memory to userspace 2695 * @vma: user vma to map to 2696 * @addr: target page aligned user address to start at 2697 * @pfn: page frame number of kernel physical memory address 2698 * @size: size of mapping area 2699 * @prot: page protection flags for this mapping 2700 * 2701 * Note: this is only safe if the mm semaphore is held when called. 2702 * 2703 * Return: %0 on success, negative error code otherwise. 2704 */ 2705 int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr, 2706 unsigned long pfn, unsigned long size, pgprot_t prot) 2707 { 2708 int err; 2709 2710 err = track_pfn_remap(vma, &prot, pfn, addr, PAGE_ALIGN(size)); 2711 if (err) 2712 return -EINVAL; 2713 2714 err = remap_pfn_range_notrack(vma, addr, pfn, size, prot); 2715 if (err) 2716 untrack_pfn(vma, pfn, PAGE_ALIGN(size), true); 2717 return err; 2718 } 2719 EXPORT_SYMBOL(remap_pfn_range); 2720 2721 /** 2722 * vm_iomap_memory - remap memory to userspace 2723 * @vma: user vma to map to 2724 * @start: start of the physical memory to be mapped 2725 * @len: size of area 2726 * 2727 * This is a simplified io_remap_pfn_range() for common driver use. The 2728 * driver just needs to give us the physical memory range to be mapped, 2729 * we'll figure out the rest from the vma information. 2730 * 2731 * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get 2732 * whatever write-combining details or similar. 2733 * 2734 * Return: %0 on success, negative error code otherwise. 2735 */ 2736 int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len) 2737 { 2738 unsigned long vm_len, pfn, pages; 2739 2740 /* Check that the physical memory area passed in looks valid */ 2741 if (start + len < start) 2742 return -EINVAL; 2743 /* 2744 * You *really* shouldn't map things that aren't page-aligned, 2745 * but we've historically allowed it because IO memory might 2746 * just have smaller alignment. 2747 */ 2748 len += start & ~PAGE_MASK; 2749 pfn = start >> PAGE_SHIFT; 2750 pages = (len + ~PAGE_MASK) >> PAGE_SHIFT; 2751 if (pfn + pages < pfn) 2752 return -EINVAL; 2753 2754 /* We start the mapping 'vm_pgoff' pages into the area */ 2755 if (vma->vm_pgoff > pages) 2756 return -EINVAL; 2757 pfn += vma->vm_pgoff; 2758 pages -= vma->vm_pgoff; 2759 2760 /* Can we fit all of the mapping? */ 2761 vm_len = vma->vm_end - vma->vm_start; 2762 if (vm_len >> PAGE_SHIFT > pages) 2763 return -EINVAL; 2764 2765 /* Ok, let it rip */ 2766 return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot); 2767 } 2768 EXPORT_SYMBOL(vm_iomap_memory); 2769 2770 static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd, 2771 unsigned long addr, unsigned long end, 2772 pte_fn_t fn, void *data, bool create, 2773 pgtbl_mod_mask *mask) 2774 { 2775 pte_t *pte, *mapped_pte; 2776 int err = 0; 2777 spinlock_t *ptl; 2778 2779 if (create) { 2780 mapped_pte = pte = (mm == &init_mm) ? 2781 pte_alloc_kernel_track(pmd, addr, mask) : 2782 pte_alloc_map_lock(mm, pmd, addr, &ptl); 2783 if (!pte) 2784 return -ENOMEM; 2785 } else { 2786 mapped_pte = pte = (mm == &init_mm) ? 2787 pte_offset_kernel(pmd, addr) : 2788 pte_offset_map_lock(mm, pmd, addr, &ptl); 2789 if (!pte) 2790 return -EINVAL; 2791 } 2792 2793 arch_enter_lazy_mmu_mode(); 2794 2795 if (fn) { 2796 do { 2797 if (create || !pte_none(ptep_get(pte))) { 2798 err = fn(pte++, addr, data); 2799 if (err) 2800 break; 2801 } 2802 } while (addr += PAGE_SIZE, addr != end); 2803 } 2804 *mask |= PGTBL_PTE_MODIFIED; 2805 2806 arch_leave_lazy_mmu_mode(); 2807 2808 if (mm != &init_mm) 2809 pte_unmap_unlock(mapped_pte, ptl); 2810 return err; 2811 } 2812 2813 static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud, 2814 unsigned long addr, unsigned long end, 2815 pte_fn_t fn, void *data, bool create, 2816 pgtbl_mod_mask *mask) 2817 { 2818 pmd_t *pmd; 2819 unsigned long next; 2820 int err = 0; 2821 2822 BUG_ON(pud_leaf(*pud)); 2823 2824 if (create) { 2825 pmd = pmd_alloc_track(mm, pud, addr, mask); 2826 if (!pmd) 2827 return -ENOMEM; 2828 } else { 2829 pmd = pmd_offset(pud, addr); 2830 } 2831 do { 2832 next = pmd_addr_end(addr, end); 2833 if (pmd_none(*pmd) && !create) 2834 continue; 2835 if (WARN_ON_ONCE(pmd_leaf(*pmd))) 2836 return -EINVAL; 2837 if (!pmd_none(*pmd) && WARN_ON_ONCE(pmd_bad(*pmd))) { 2838 if (!create) 2839 continue; 2840 pmd_clear_bad(pmd); 2841 } 2842 err = apply_to_pte_range(mm, pmd, addr, next, 2843 fn, data, create, mask); 2844 if (err) 2845 break; 2846 } while (pmd++, addr = next, addr != end); 2847 2848 return err; 2849 } 2850 2851 static int apply_to_pud_range(struct mm_struct *mm, p4d_t *p4d, 2852 unsigned long addr, unsigned long end, 2853 pte_fn_t fn, void *data, bool create, 2854 pgtbl_mod_mask *mask) 2855 { 2856 pud_t *pud; 2857 unsigned long next; 2858 int err = 0; 2859 2860 if (create) { 2861 pud = pud_alloc_track(mm, p4d, addr, mask); 2862 if (!pud) 2863 return -ENOMEM; 2864 } else { 2865 pud = pud_offset(p4d, addr); 2866 } 2867 do { 2868 next = pud_addr_end(addr, end); 2869 if (pud_none(*pud) && !create) 2870 continue; 2871 if (WARN_ON_ONCE(pud_leaf(*pud))) 2872 return -EINVAL; 2873 if (!pud_none(*pud) && WARN_ON_ONCE(pud_bad(*pud))) { 2874 if (!create) 2875 continue; 2876 pud_clear_bad(pud); 2877 } 2878 err = apply_to_pmd_range(mm, pud, addr, next, 2879 fn, data, create, mask); 2880 if (err) 2881 break; 2882 } while (pud++, addr = next, addr != end); 2883 2884 return err; 2885 } 2886 2887 static int apply_to_p4d_range(struct mm_struct *mm, pgd_t *pgd, 2888 unsigned long addr, unsigned long end, 2889 pte_fn_t fn, void *data, bool create, 2890 pgtbl_mod_mask *mask) 2891 { 2892 p4d_t *p4d; 2893 unsigned long next; 2894 int err = 0; 2895 2896 if (create) { 2897 p4d = p4d_alloc_track(mm, pgd, addr, mask); 2898 if (!p4d) 2899 return -ENOMEM; 2900 } else { 2901 p4d = p4d_offset(pgd, addr); 2902 } 2903 do { 2904 next = p4d_addr_end(addr, end); 2905 if (p4d_none(*p4d) && !create) 2906 continue; 2907 if (WARN_ON_ONCE(p4d_leaf(*p4d))) 2908 return -EINVAL; 2909 if (!p4d_none(*p4d) && WARN_ON_ONCE(p4d_bad(*p4d))) { 2910 if (!create) 2911 continue; 2912 p4d_clear_bad(p4d); 2913 } 2914 err = apply_to_pud_range(mm, p4d, addr, next, 2915 fn, data, create, mask); 2916 if (err) 2917 break; 2918 } while (p4d++, addr = next, addr != end); 2919 2920 return err; 2921 } 2922 2923 static int __apply_to_page_range(struct mm_struct *mm, unsigned long addr, 2924 unsigned long size, pte_fn_t fn, 2925 void *data, bool create) 2926 { 2927 pgd_t *pgd; 2928 unsigned long start = addr, next; 2929 unsigned long end = addr + size; 2930 pgtbl_mod_mask mask = 0; 2931 int err = 0; 2932 2933 if (WARN_ON(addr >= end)) 2934 return -EINVAL; 2935 2936 pgd = pgd_offset(mm, addr); 2937 do { 2938 next = pgd_addr_end(addr, end); 2939 if (pgd_none(*pgd) && !create) 2940 continue; 2941 if (WARN_ON_ONCE(pgd_leaf(*pgd))) 2942 return -EINVAL; 2943 if (!pgd_none(*pgd) && WARN_ON_ONCE(pgd_bad(*pgd))) { 2944 if (!create) 2945 continue; 2946 pgd_clear_bad(pgd); 2947 } 2948 err = apply_to_p4d_range(mm, pgd, addr, next, 2949 fn, data, create, &mask); 2950 if (err) 2951 break; 2952 } while (pgd++, addr = next, addr != end); 2953 2954 if (mask & ARCH_PAGE_TABLE_SYNC_MASK) 2955 arch_sync_kernel_mappings(start, start + size); 2956 2957 return err; 2958 } 2959 2960 /* 2961 * Scan a region of virtual memory, filling in page tables as necessary 2962 * and calling a provided function on each leaf page table. 2963 */ 2964 int apply_to_page_range(struct mm_struct *mm, unsigned long addr, 2965 unsigned long size, pte_fn_t fn, void *data) 2966 { 2967 return __apply_to_page_range(mm, addr, size, fn, data, true); 2968 } 2969 EXPORT_SYMBOL_GPL(apply_to_page_range); 2970 2971 /* 2972 * Scan a region of virtual memory, calling a provided function on 2973 * each leaf page table where it exists. 2974 * 2975 * Unlike apply_to_page_range, this does _not_ fill in page tables 2976 * where they are absent. 2977 */ 2978 int apply_to_existing_page_range(struct mm_struct *mm, unsigned long addr, 2979 unsigned long size, pte_fn_t fn, void *data) 2980 { 2981 return __apply_to_page_range(mm, addr, size, fn, data, false); 2982 } 2983 EXPORT_SYMBOL_GPL(apply_to_existing_page_range); 2984 2985 /* 2986 * handle_pte_fault chooses page fault handler according to an entry which was 2987 * read non-atomically. Before making any commitment, on those architectures 2988 * or configurations (e.g. i386 with PAE) which might give a mix of unmatched 2989 * parts, do_swap_page must check under lock before unmapping the pte and 2990 * proceeding (but do_wp_page is only called after already making such a check; 2991 * and do_anonymous_page can safely check later on). 2992 */ 2993 static inline int pte_unmap_same(struct vm_fault *vmf) 2994 { 2995 int same = 1; 2996 #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPTION) 2997 if (sizeof(pte_t) > sizeof(unsigned long)) { 2998 spin_lock(vmf->ptl); 2999 same = pte_same(ptep_get(vmf->pte), vmf->orig_pte); 3000 spin_unlock(vmf->ptl); 3001 } 3002 #endif 3003 pte_unmap(vmf->pte); 3004 vmf->pte = NULL; 3005 return same; 3006 } 3007 3008 /* 3009 * Return: 3010 * 0: copied succeeded 3011 * -EHWPOISON: copy failed due to hwpoison in source page 3012 * -EAGAIN: copied failed (some other reason) 3013 */ 3014 static inline int __wp_page_copy_user(struct page *dst, struct page *src, 3015 struct vm_fault *vmf) 3016 { 3017 int ret; 3018 void *kaddr; 3019 void __user *uaddr; 3020 struct vm_area_struct *vma = vmf->vma; 3021 struct mm_struct *mm = vma->vm_mm; 3022 unsigned long addr = vmf->address; 3023 3024 if (likely(src)) { 3025 if (copy_mc_user_highpage(dst, src, addr, vma)) { 3026 memory_failure_queue(page_to_pfn(src), 0); 3027 return -EHWPOISON; 3028 } 3029 return 0; 3030 } 3031 3032 /* 3033 * If the source page was a PFN mapping, we don't have 3034 * a "struct page" for it. We do a best-effort copy by 3035 * just copying from the original user address. If that 3036 * fails, we just zero-fill it. Live with it. 3037 */ 3038 kaddr = kmap_local_page(dst); 3039 pagefault_disable(); 3040 uaddr = (void __user *)(addr & PAGE_MASK); 3041 3042 /* 3043 * On architectures with software "accessed" bits, we would 3044 * take a double page fault, so mark it accessed here. 3045 */ 3046 vmf->pte = NULL; 3047 if (!arch_has_hw_pte_young() && !pte_young(vmf->orig_pte)) { 3048 pte_t entry; 3049 3050 vmf->pte = pte_offset_map_lock(mm, vmf->pmd, addr, &vmf->ptl); 3051 if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte))) { 3052 /* 3053 * Other thread has already handled the fault 3054 * and update local tlb only 3055 */ 3056 if (vmf->pte) 3057 update_mmu_tlb(vma, addr, vmf->pte); 3058 ret = -EAGAIN; 3059 goto pte_unlock; 3060 } 3061 3062 entry = pte_mkyoung(vmf->orig_pte); 3063 if (ptep_set_access_flags(vma, addr, vmf->pte, entry, 0)) 3064 update_mmu_cache_range(vmf, vma, addr, vmf->pte, 1); 3065 } 3066 3067 /* 3068 * This really shouldn't fail, because the page is there 3069 * in the page tables. But it might just be unreadable, 3070 * in which case we just give up and fill the result with 3071 * zeroes. 3072 */ 3073 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE)) { 3074 if (vmf->pte) 3075 goto warn; 3076 3077 /* Re-validate under PTL if the page is still mapped */ 3078 vmf->pte = pte_offset_map_lock(mm, vmf->pmd, addr, &vmf->ptl); 3079 if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte))) { 3080 /* The PTE changed under us, update local tlb */ 3081 if (vmf->pte) 3082 update_mmu_tlb(vma, addr, vmf->pte); 3083 ret = -EAGAIN; 3084 goto pte_unlock; 3085 } 3086 3087 /* 3088 * The same page can be mapped back since last copy attempt. 3089 * Try to copy again under PTL. 3090 */ 3091 if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE)) { 3092 /* 3093 * Give a warn in case there can be some obscure 3094 * use-case 3095 */ 3096 warn: 3097 WARN_ON_ONCE(1); 3098 clear_page(kaddr); 3099 } 3100 } 3101 3102 ret = 0; 3103 3104 pte_unlock: 3105 if (vmf->pte) 3106 pte_unmap_unlock(vmf->pte, vmf->ptl); 3107 pagefault_enable(); 3108 kunmap_local(kaddr); 3109 flush_dcache_page(dst); 3110 3111 return ret; 3112 } 3113 3114 static gfp_t __get_fault_gfp_mask(struct vm_area_struct *vma) 3115 { 3116 struct file *vm_file = vma->vm_file; 3117 3118 if (vm_file) 3119 return mapping_gfp_mask(vm_file->f_mapping) | __GFP_FS | __GFP_IO; 3120 3121 /* 3122 * Special mappings (e.g. VDSO) do not have any file so fake 3123 * a default GFP_KERNEL for them. 3124 */ 3125 return GFP_KERNEL; 3126 } 3127 3128 /* 3129 * Notify the address space that the page is about to become writable so that 3130 * it can prohibit this or wait for the page to get into an appropriate state. 3131 * 3132 * We do this without the lock held, so that it can sleep if it needs to. 3133 */ 3134 static vm_fault_t do_page_mkwrite(struct vm_fault *vmf, struct folio *folio) 3135 { 3136 vm_fault_t ret; 3137 unsigned int old_flags = vmf->flags; 3138 3139 vmf->flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE; 3140 3141 if (vmf->vma->vm_file && 3142 IS_SWAPFILE(vmf->vma->vm_file->f_mapping->host)) 3143 return VM_FAULT_SIGBUS; 3144 3145 ret = vmf->vma->vm_ops->page_mkwrite(vmf); 3146 /* Restore original flags so that caller is not surprised */ 3147 vmf->flags = old_flags; 3148 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) 3149 return ret; 3150 if (unlikely(!(ret & VM_FAULT_LOCKED))) { 3151 folio_lock(folio); 3152 if (!folio->mapping) { 3153 folio_unlock(folio); 3154 return 0; /* retry */ 3155 } 3156 ret |= VM_FAULT_LOCKED; 3157 } else 3158 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio); 3159 return ret; 3160 } 3161 3162 /* 3163 * Handle dirtying of a page in shared file mapping on a write fault. 3164 * 3165 * The function expects the page to be locked and unlocks it. 3166 */ 3167 static vm_fault_t fault_dirty_shared_page(struct vm_fault *vmf) 3168 { 3169 struct vm_area_struct *vma = vmf->vma; 3170 struct address_space *mapping; 3171 struct folio *folio = page_folio(vmf->page); 3172 bool dirtied; 3173 bool page_mkwrite = vma->vm_ops && vma->vm_ops->page_mkwrite; 3174 3175 dirtied = folio_mark_dirty(folio); 3176 VM_BUG_ON_FOLIO(folio_test_anon(folio), folio); 3177 /* 3178 * Take a local copy of the address_space - folio.mapping may be zeroed 3179 * by truncate after folio_unlock(). The address_space itself remains 3180 * pinned by vma->vm_file's reference. We rely on folio_unlock()'s 3181 * release semantics to prevent the compiler from undoing this copying. 3182 */ 3183 mapping = folio_raw_mapping(folio); 3184 folio_unlock(folio); 3185 3186 if (!page_mkwrite) 3187 file_update_time(vma->vm_file); 3188 3189 /* 3190 * Throttle page dirtying rate down to writeback speed. 3191 * 3192 * mapping may be NULL here because some device drivers do not 3193 * set page.mapping but still dirty their pages 3194 * 3195 * Drop the mmap_lock before waiting on IO, if we can. The file 3196 * is pinning the mapping, as per above. 3197 */ 3198 if ((dirtied || page_mkwrite) && mapping) { 3199 struct file *fpin; 3200 3201 fpin = maybe_unlock_mmap_for_io(vmf, NULL); 3202 balance_dirty_pages_ratelimited(mapping); 3203 if (fpin) { 3204 fput(fpin); 3205 return VM_FAULT_COMPLETED; 3206 } 3207 } 3208 3209 return 0; 3210 } 3211 3212 /* 3213 * Handle write page faults for pages that can be reused in the current vma 3214 * 3215 * This can happen either due to the mapping being with the VM_SHARED flag, 3216 * or due to us being the last reference standing to the page. In either 3217 * case, all we need to do here is to mark the page as writable and update 3218 * any related book-keeping. 3219 */ 3220 static inline void wp_page_reuse(struct vm_fault *vmf, struct folio *folio) 3221 __releases(vmf->ptl) 3222 { 3223 struct vm_area_struct *vma = vmf->vma; 3224 pte_t entry; 3225 3226 VM_BUG_ON(!(vmf->flags & FAULT_FLAG_WRITE)); 3227 VM_WARN_ON(is_zero_pfn(pte_pfn(vmf->orig_pte))); 3228 3229 if (folio) { 3230 VM_BUG_ON(folio_test_anon(folio) && 3231 !PageAnonExclusive(vmf->page)); 3232 /* 3233 * Clear the folio's cpupid information as the existing 3234 * information potentially belongs to a now completely 3235 * unrelated process. 3236 */ 3237 folio_xchg_last_cpupid(folio, (1 << LAST_CPUPID_SHIFT) - 1); 3238 } 3239 3240 flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte)); 3241 entry = pte_mkyoung(vmf->orig_pte); 3242 entry = maybe_mkwrite(pte_mkdirty(entry), vma); 3243 if (ptep_set_access_flags(vma, vmf->address, vmf->pte, entry, 1)) 3244 update_mmu_cache_range(vmf, vma, vmf->address, vmf->pte, 1); 3245 pte_unmap_unlock(vmf->pte, vmf->ptl); 3246 count_vm_event(PGREUSE); 3247 } 3248 3249 /* 3250 * We could add a bitflag somewhere, but for now, we know that all 3251 * vm_ops that have a ->map_pages have been audited and don't need 3252 * the mmap_lock to be held. 3253 */ 3254 static inline vm_fault_t vmf_can_call_fault(const struct vm_fault *vmf) 3255 { 3256 struct vm_area_struct *vma = vmf->vma; 3257 3258 if (vma->vm_ops->map_pages || !(vmf->flags & FAULT_FLAG_VMA_LOCK)) 3259 return 0; 3260 vma_end_read(vma); 3261 return VM_FAULT_RETRY; 3262 } 3263 3264 /** 3265 * vmf_anon_prepare - Prepare to handle an anonymous fault. 3266 * @vmf: The vm_fault descriptor passed from the fault handler. 3267 * 3268 * When preparing to insert an anonymous page into a VMA from a 3269 * fault handler, call this function rather than anon_vma_prepare(). 3270 * If this vma does not already have an associated anon_vma and we are 3271 * only protected by the per-VMA lock, the caller must retry with the 3272 * mmap_lock held. __anon_vma_prepare() will look at adjacent VMAs to 3273 * determine if this VMA can share its anon_vma, and that's not safe to 3274 * do with only the per-VMA lock held for this VMA. 3275 * 3276 * Return: 0 if fault handling can proceed. Any other value should be 3277 * returned to the caller. 3278 */ 3279 vm_fault_t vmf_anon_prepare(struct vm_fault *vmf) 3280 { 3281 struct vm_area_struct *vma = vmf->vma; 3282 vm_fault_t ret = 0; 3283 3284 if (likely(vma->anon_vma)) 3285 return 0; 3286 if (vmf->flags & FAULT_FLAG_VMA_LOCK) { 3287 if (!mmap_read_trylock(vma->vm_mm)) { 3288 vma_end_read(vma); 3289 return VM_FAULT_RETRY; 3290 } 3291 } 3292 if (__anon_vma_prepare(vma)) 3293 ret = VM_FAULT_OOM; 3294 if (vmf->flags & FAULT_FLAG_VMA_LOCK) 3295 mmap_read_unlock(vma->vm_mm); 3296 return ret; 3297 } 3298 3299 /* 3300 * Handle the case of a page which we actually need to copy to a new page, 3301 * either due to COW or unsharing. 3302 * 3303 * Called with mmap_lock locked and the old page referenced, but 3304 * without the ptl held. 3305 * 3306 * High level logic flow: 3307 * 3308 * - Allocate a page, copy the content of the old page to the new one. 3309 * - Handle book keeping and accounting - cgroups, mmu-notifiers, etc. 3310 * - Take the PTL. If the pte changed, bail out and release the allocated page 3311 * - If the pte is still the way we remember it, update the page table and all 3312 * relevant references. This includes dropping the reference the page-table 3313 * held to the old page, as well as updating the rmap. 3314 * - In any case, unlock the PTL and drop the reference we took to the old page. 3315 */ 3316 static vm_fault_t wp_page_copy(struct vm_fault *vmf) 3317 { 3318 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE; 3319 struct vm_area_struct *vma = vmf->vma; 3320 struct mm_struct *mm = vma->vm_mm; 3321 struct folio *old_folio = NULL; 3322 struct folio *new_folio = NULL; 3323 pte_t entry; 3324 int page_copied = 0; 3325 struct mmu_notifier_range range; 3326 vm_fault_t ret; 3327 bool pfn_is_zero; 3328 3329 delayacct_wpcopy_start(); 3330 3331 if (vmf->page) 3332 old_folio = page_folio(vmf->page); 3333 ret = vmf_anon_prepare(vmf); 3334 if (unlikely(ret)) 3335 goto out; 3336 3337 pfn_is_zero = is_zero_pfn(pte_pfn(vmf->orig_pte)); 3338 new_folio = folio_prealloc(mm, vma, vmf->address, pfn_is_zero); 3339 if (!new_folio) 3340 goto oom; 3341 3342 if (!pfn_is_zero) { 3343 int err; 3344 3345 err = __wp_page_copy_user(&new_folio->page, vmf->page, vmf); 3346 if (err) { 3347 /* 3348 * COW failed, if the fault was solved by other, 3349 * it's fine. If not, userspace would re-fault on 3350 * the same address and we will handle the fault 3351 * from the second attempt. 3352 * The -EHWPOISON case will not be retried. 3353 */ 3354 folio_put(new_folio); 3355 if (old_folio) 3356 folio_put(old_folio); 3357 3358 delayacct_wpcopy_end(); 3359 return err == -EHWPOISON ? VM_FAULT_HWPOISON : 0; 3360 } 3361 kmsan_copy_page_meta(&new_folio->page, vmf->page); 3362 } 3363 3364 __folio_mark_uptodate(new_folio); 3365 3366 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, 3367 vmf->address & PAGE_MASK, 3368 (vmf->address & PAGE_MASK) + PAGE_SIZE); 3369 mmu_notifier_invalidate_range_start(&range); 3370 3371 /* 3372 * Re-check the pte - we dropped the lock 3373 */ 3374 vmf->pte = pte_offset_map_lock(mm, vmf->pmd, vmf->address, &vmf->ptl); 3375 if (likely(vmf->pte && pte_same(ptep_get(vmf->pte), vmf->orig_pte))) { 3376 if (old_folio) { 3377 if (!folio_test_anon(old_folio)) { 3378 dec_mm_counter(mm, mm_counter_file(old_folio)); 3379 inc_mm_counter(mm, MM_ANONPAGES); 3380 } 3381 } else { 3382 ksm_might_unmap_zero_page(mm, vmf->orig_pte); 3383 inc_mm_counter(mm, MM_ANONPAGES); 3384 } 3385 flush_cache_page(vma, vmf->address, pte_pfn(vmf->orig_pte)); 3386 entry = mk_pte(&new_folio->page, vma->vm_page_prot); 3387 entry = pte_sw_mkyoung(entry); 3388 if (unlikely(unshare)) { 3389 if (pte_soft_dirty(vmf->orig_pte)) 3390 entry = pte_mksoft_dirty(entry); 3391 if (pte_uffd_wp(vmf->orig_pte)) 3392 entry = pte_mkuffd_wp(entry); 3393 } else { 3394 entry = maybe_mkwrite(pte_mkdirty(entry), vma); 3395 } 3396 3397 /* 3398 * Clear the pte entry and flush it first, before updating the 3399 * pte with the new entry, to keep TLBs on different CPUs in 3400 * sync. This code used to set the new PTE then flush TLBs, but 3401 * that left a window where the new PTE could be loaded into 3402 * some TLBs while the old PTE remains in others. 3403 */ 3404 ptep_clear_flush(vma, vmf->address, vmf->pte); 3405 folio_add_new_anon_rmap(new_folio, vma, vmf->address); 3406 folio_add_lru_vma(new_folio, vma); 3407 BUG_ON(unshare && pte_write(entry)); 3408 set_pte_at(mm, vmf->address, vmf->pte, entry); 3409 update_mmu_cache_range(vmf, vma, vmf->address, vmf->pte, 1); 3410 if (old_folio) { 3411 /* 3412 * Only after switching the pte to the new page may 3413 * we remove the mapcount here. Otherwise another 3414 * process may come and find the rmap count decremented 3415 * before the pte is switched to the new page, and 3416 * "reuse" the old page writing into it while our pte 3417 * here still points into it and can be read by other 3418 * threads. 3419 * 3420 * The critical issue is to order this 3421 * folio_remove_rmap_pte() with the ptp_clear_flush 3422 * above. Those stores are ordered by (if nothing else,) 3423 * the barrier present in the atomic_add_negative 3424 * in folio_remove_rmap_pte(); 3425 * 3426 * Then the TLB flush in ptep_clear_flush ensures that 3427 * no process can access the old page before the 3428 * decremented mapcount is visible. And the old page 3429 * cannot be reused until after the decremented 3430 * mapcount is visible. So transitively, TLBs to 3431 * old page will be flushed before it can be reused. 3432 */ 3433 folio_remove_rmap_pte(old_folio, vmf->page, vma); 3434 } 3435 3436 /* Free the old page.. */ 3437 new_folio = old_folio; 3438 page_copied = 1; 3439 pte_unmap_unlock(vmf->pte, vmf->ptl); 3440 } else if (vmf->pte) { 3441 update_mmu_tlb(vma, vmf->address, vmf->pte); 3442 pte_unmap_unlock(vmf->pte, vmf->ptl); 3443 } 3444 3445 mmu_notifier_invalidate_range_end(&range); 3446 3447 if (new_folio) 3448 folio_put(new_folio); 3449 if (old_folio) { 3450 if (page_copied) 3451 free_swap_cache(old_folio); 3452 folio_put(old_folio); 3453 } 3454 3455 delayacct_wpcopy_end(); 3456 return 0; 3457 oom: 3458 ret = VM_FAULT_OOM; 3459 out: 3460 if (old_folio) 3461 folio_put(old_folio); 3462 3463 delayacct_wpcopy_end(); 3464 return ret; 3465 } 3466 3467 /** 3468 * finish_mkwrite_fault - finish page fault for a shared mapping, making PTE 3469 * writeable once the page is prepared 3470 * 3471 * @vmf: structure describing the fault 3472 * @folio: the folio of vmf->page 3473 * 3474 * This function handles all that is needed to finish a write page fault in a 3475 * shared mapping due to PTE being read-only once the mapped page is prepared. 3476 * It handles locking of PTE and modifying it. 3477 * 3478 * The function expects the page to be locked or other protection against 3479 * concurrent faults / writeback (such as DAX radix tree locks). 3480 * 3481 * Return: %0 on success, %VM_FAULT_NOPAGE when PTE got changed before 3482 * we acquired PTE lock. 3483 */ 3484 static vm_fault_t finish_mkwrite_fault(struct vm_fault *vmf, struct folio *folio) 3485 { 3486 WARN_ON_ONCE(!(vmf->vma->vm_flags & VM_SHARED)); 3487 vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, vmf->address, 3488 &vmf->ptl); 3489 if (!vmf->pte) 3490 return VM_FAULT_NOPAGE; 3491 /* 3492 * We might have raced with another page fault while we released the 3493 * pte_offset_map_lock. 3494 */ 3495 if (!pte_same(ptep_get(vmf->pte), vmf->orig_pte)) { 3496 update_mmu_tlb(vmf->vma, vmf->address, vmf->pte); 3497 pte_unmap_unlock(vmf->pte, vmf->ptl); 3498 return VM_FAULT_NOPAGE; 3499 } 3500 wp_page_reuse(vmf, folio); 3501 return 0; 3502 } 3503 3504 /* 3505 * Handle write page faults for VM_MIXEDMAP or VM_PFNMAP for a VM_SHARED 3506 * mapping 3507 */ 3508 static vm_fault_t wp_pfn_shared(struct vm_fault *vmf) 3509 { 3510 struct vm_area_struct *vma = vmf->vma; 3511 3512 if (vma->vm_ops && vma->vm_ops->pfn_mkwrite) { 3513 vm_fault_t ret; 3514 3515 pte_unmap_unlock(vmf->pte, vmf->ptl); 3516 ret = vmf_can_call_fault(vmf); 3517 if (ret) 3518 return ret; 3519 3520 vmf->flags |= FAULT_FLAG_MKWRITE; 3521 ret = vma->vm_ops->pfn_mkwrite(vmf); 3522 if (ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)) 3523 return ret; 3524 return finish_mkwrite_fault(vmf, NULL); 3525 } 3526 wp_page_reuse(vmf, NULL); 3527 return 0; 3528 } 3529 3530 static vm_fault_t wp_page_shared(struct vm_fault *vmf, struct folio *folio) 3531 __releases(vmf->ptl) 3532 { 3533 struct vm_area_struct *vma = vmf->vma; 3534 vm_fault_t ret = 0; 3535 3536 folio_get(folio); 3537 3538 if (vma->vm_ops && vma->vm_ops->page_mkwrite) { 3539 vm_fault_t tmp; 3540 3541 pte_unmap_unlock(vmf->pte, vmf->ptl); 3542 tmp = vmf_can_call_fault(vmf); 3543 if (tmp) { 3544 folio_put(folio); 3545 return tmp; 3546 } 3547 3548 tmp = do_page_mkwrite(vmf, folio); 3549 if (unlikely(!tmp || (tmp & 3550 (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) { 3551 folio_put(folio); 3552 return tmp; 3553 } 3554 tmp = finish_mkwrite_fault(vmf, folio); 3555 if (unlikely(tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE))) { 3556 folio_unlock(folio); 3557 folio_put(folio); 3558 return tmp; 3559 } 3560 } else { 3561 wp_page_reuse(vmf, folio); 3562 folio_lock(folio); 3563 } 3564 ret |= fault_dirty_shared_page(vmf); 3565 folio_put(folio); 3566 3567 return ret; 3568 } 3569 3570 static bool wp_can_reuse_anon_folio(struct folio *folio, 3571 struct vm_area_struct *vma) 3572 { 3573 /* 3574 * We could currently only reuse a subpage of a large folio if no 3575 * other subpages of the large folios are still mapped. However, 3576 * let's just consistently not reuse subpages even if we could 3577 * reuse in that scenario, and give back a large folio a bit 3578 * sooner. 3579 */ 3580 if (folio_test_large(folio)) 3581 return false; 3582 3583 /* 3584 * We have to verify under folio lock: these early checks are 3585 * just an optimization to avoid locking the folio and freeing 3586 * the swapcache if there is little hope that we can reuse. 3587 * 3588 * KSM doesn't necessarily raise the folio refcount. 3589 */ 3590 if (folio_test_ksm(folio) || folio_ref_count(folio) > 3) 3591 return false; 3592 if (!folio_test_lru(folio)) 3593 /* 3594 * We cannot easily detect+handle references from 3595 * remote LRU caches or references to LRU folios. 3596 */ 3597 lru_add_drain(); 3598 if (folio_ref_count(folio) > 1 + folio_test_swapcache(folio)) 3599 return false; 3600 if (!folio_trylock(folio)) 3601 return false; 3602 if (folio_test_swapcache(folio)) 3603 folio_free_swap(folio); 3604 if (folio_test_ksm(folio) || folio_ref_count(folio) != 1) { 3605 folio_unlock(folio); 3606 return false; 3607 } 3608 /* 3609 * Ok, we've got the only folio reference from our mapping 3610 * and the folio is locked, it's dark out, and we're wearing 3611 * sunglasses. Hit it. 3612 */ 3613 folio_move_anon_rmap(folio, vma); 3614 folio_unlock(folio); 3615 return true; 3616 } 3617 3618 /* 3619 * This routine handles present pages, when 3620 * * users try to write to a shared page (FAULT_FLAG_WRITE) 3621 * * GUP wants to take a R/O pin on a possibly shared anonymous page 3622 * (FAULT_FLAG_UNSHARE) 3623 * 3624 * It is done by copying the page to a new address and decrementing the 3625 * shared-page counter for the old page. 3626 * 3627 * Note that this routine assumes that the protection checks have been 3628 * done by the caller (the low-level page fault routine in most cases). 3629 * Thus, with FAULT_FLAG_WRITE, we can safely just mark it writable once we've 3630 * done any necessary COW. 3631 * 3632 * In case of FAULT_FLAG_WRITE, we also mark the page dirty at this point even 3633 * though the page will change only once the write actually happens. This 3634 * avoids a few races, and potentially makes it more efficient. 3635 * 3636 * We enter with non-exclusive mmap_lock (to exclude vma changes, 3637 * but allow concurrent faults), with pte both mapped and locked. 3638 * We return with mmap_lock still held, but pte unmapped and unlocked. 3639 */ 3640 static vm_fault_t do_wp_page(struct vm_fault *vmf) 3641 __releases(vmf->ptl) 3642 { 3643 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE; 3644 struct vm_area_struct *vma = vmf->vma; 3645 struct folio *folio = NULL; 3646 pte_t pte; 3647 3648 if (likely(!unshare)) { 3649 if (userfaultfd_pte_wp(vma, ptep_get(vmf->pte))) { 3650 if (!userfaultfd_wp_async(vma)) { 3651 pte_unmap_unlock(vmf->pte, vmf->ptl); 3652 return handle_userfault(vmf, VM_UFFD_WP); 3653 } 3654 3655 /* 3656 * Nothing needed (cache flush, TLB invalidations, 3657 * etc.) because we're only removing the uffd-wp bit, 3658 * which is completely invisible to the user. 3659 */ 3660 pte = pte_clear_uffd_wp(ptep_get(vmf->pte)); 3661 3662 set_pte_at(vma->vm_mm, vmf->address, vmf->pte, pte); 3663 /* 3664 * Update this to be prepared for following up CoW 3665 * handling 3666 */ 3667 vmf->orig_pte = pte; 3668 } 3669 3670 /* 3671 * Userfaultfd write-protect can defer flushes. Ensure the TLB 3672 * is flushed in this case before copying. 3673 */ 3674 if (unlikely(userfaultfd_wp(vmf->vma) && 3675 mm_tlb_flush_pending(vmf->vma->vm_mm))) 3676 flush_tlb_page(vmf->vma, vmf->address); 3677 } 3678 3679 vmf->page = vm_normal_page(vma, vmf->address, vmf->orig_pte); 3680 3681 if (vmf->page) 3682 folio = page_folio(vmf->page); 3683 3684 /* 3685 * Shared mapping: we are guaranteed to have VM_WRITE and 3686 * FAULT_FLAG_WRITE set at this point. 3687 */ 3688 if (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) { 3689 /* 3690 * VM_MIXEDMAP !pfn_valid() case, or VM_SOFTDIRTY clear on a 3691 * VM_PFNMAP VMA. 3692 * 3693 * We should not cow pages in a shared writeable mapping. 3694 * Just mark the pages writable and/or call ops->pfn_mkwrite. 3695 */ 3696 if (!vmf->page) 3697 return wp_pfn_shared(vmf); 3698 return wp_page_shared(vmf, folio); 3699 } 3700 3701 /* 3702 * Private mapping: create an exclusive anonymous page copy if reuse 3703 * is impossible. We might miss VM_WRITE for FOLL_FORCE handling. 3704 * 3705 * If we encounter a page that is marked exclusive, we must reuse 3706 * the page without further checks. 3707 */ 3708 if (folio && folio_test_anon(folio) && 3709 (PageAnonExclusive(vmf->page) || wp_can_reuse_anon_folio(folio, vma))) { 3710 if (!PageAnonExclusive(vmf->page)) 3711 SetPageAnonExclusive(vmf->page); 3712 if (unlikely(unshare)) { 3713 pte_unmap_unlock(vmf->pte, vmf->ptl); 3714 return 0; 3715 } 3716 wp_page_reuse(vmf, folio); 3717 return 0; 3718 } 3719 /* 3720 * Ok, we need to copy. Oh, well.. 3721 */ 3722 if (folio) 3723 folio_get(folio); 3724 3725 pte_unmap_unlock(vmf->pte, vmf->ptl); 3726 #ifdef CONFIG_KSM 3727 if (folio && folio_test_ksm(folio)) 3728 count_vm_event(COW_KSM); 3729 #endif 3730 return wp_page_copy(vmf); 3731 } 3732 3733 static void unmap_mapping_range_vma(struct vm_area_struct *vma, 3734 unsigned long start_addr, unsigned long end_addr, 3735 struct zap_details *details) 3736 { 3737 zap_page_range_single(vma, start_addr, end_addr - start_addr, details); 3738 } 3739 3740 static inline void unmap_mapping_range_tree(struct rb_root_cached *root, 3741 pgoff_t first_index, 3742 pgoff_t last_index, 3743 struct zap_details *details) 3744 { 3745 struct vm_area_struct *vma; 3746 pgoff_t vba, vea, zba, zea; 3747 3748 vma_interval_tree_foreach(vma, root, first_index, last_index) { 3749 vba = vma->vm_pgoff; 3750 vea = vba + vma_pages(vma) - 1; 3751 zba = max(first_index, vba); 3752 zea = min(last_index, vea); 3753 3754 unmap_mapping_range_vma(vma, 3755 ((zba - vba) << PAGE_SHIFT) + vma->vm_start, 3756 ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start, 3757 details); 3758 } 3759 } 3760 3761 /** 3762 * unmap_mapping_folio() - Unmap single folio from processes. 3763 * @folio: The locked folio to be unmapped. 3764 * 3765 * Unmap this folio from any userspace process which still has it mmaped. 3766 * Typically, for efficiency, the range of nearby pages has already been 3767 * unmapped by unmap_mapping_pages() or unmap_mapping_range(). But once 3768 * truncation or invalidation holds the lock on a folio, it may find that 3769 * the page has been remapped again: and then uses unmap_mapping_folio() 3770 * to unmap it finally. 3771 */ 3772 void unmap_mapping_folio(struct folio *folio) 3773 { 3774 struct address_space *mapping = folio->mapping; 3775 struct zap_details details = { }; 3776 pgoff_t first_index; 3777 pgoff_t last_index; 3778 3779 VM_BUG_ON(!folio_test_locked(folio)); 3780 3781 first_index = folio->index; 3782 last_index = folio_next_index(folio) - 1; 3783 3784 details.even_cows = false; 3785 details.single_folio = folio; 3786 details.zap_flags = ZAP_FLAG_DROP_MARKER; 3787 3788 i_mmap_lock_read(mapping); 3789 if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root))) 3790 unmap_mapping_range_tree(&mapping->i_mmap, first_index, 3791 last_index, &details); 3792 i_mmap_unlock_read(mapping); 3793 } 3794 3795 /** 3796 * unmap_mapping_pages() - Unmap pages from processes. 3797 * @mapping: The address space containing pages to be unmapped. 3798 * @start: Index of first page to be unmapped. 3799 * @nr: Number of pages to be unmapped. 0 to unmap to end of file. 3800 * @even_cows: Whether to unmap even private COWed pages. 3801 * 3802 * Unmap the pages in this address space from any userspace process which 3803 * has them mmaped. Generally, you want to remove COWed pages as well when 3804 * a file is being truncated, but not when invalidating pages from the page 3805 * cache. 3806 */ 3807 void unmap_mapping_pages(struct address_space *mapping, pgoff_t start, 3808 pgoff_t nr, bool even_cows) 3809 { 3810 struct zap_details details = { }; 3811 pgoff_t first_index = start; 3812 pgoff_t last_index = start + nr - 1; 3813 3814 details.even_cows = even_cows; 3815 if (last_index < first_index) 3816 last_index = ULONG_MAX; 3817 3818 i_mmap_lock_read(mapping); 3819 if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root))) 3820 unmap_mapping_range_tree(&mapping->i_mmap, first_index, 3821 last_index, &details); 3822 i_mmap_unlock_read(mapping); 3823 } 3824 EXPORT_SYMBOL_GPL(unmap_mapping_pages); 3825 3826 /** 3827 * unmap_mapping_range - unmap the portion of all mmaps in the specified 3828 * address_space corresponding to the specified byte range in the underlying 3829 * file. 3830 * 3831 * @mapping: the address space containing mmaps to be unmapped. 3832 * @holebegin: byte in first page to unmap, relative to the start of 3833 * the underlying file. This will be rounded down to a PAGE_SIZE 3834 * boundary. Note that this is different from truncate_pagecache(), which 3835 * must keep the partial page. In contrast, we must get rid of 3836 * partial pages. 3837 * @holelen: size of prospective hole in bytes. This will be rounded 3838 * up to a PAGE_SIZE boundary. A holelen of zero truncates to the 3839 * end of the file. 3840 * @even_cows: 1 when truncating a file, unmap even private COWed pages; 3841 * but 0 when invalidating pagecache, don't throw away private data. 3842 */ 3843 void unmap_mapping_range(struct address_space *mapping, 3844 loff_t const holebegin, loff_t const holelen, int even_cows) 3845 { 3846 pgoff_t hba = (pgoff_t)(holebegin) >> PAGE_SHIFT; 3847 pgoff_t hlen = ((pgoff_t)(holelen) + PAGE_SIZE - 1) >> PAGE_SHIFT; 3848 3849 /* Check for overflow. */ 3850 if (sizeof(holelen) > sizeof(hlen)) { 3851 long long holeend = 3852 (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT; 3853 if (holeend & ~(long long)ULONG_MAX) 3854 hlen = ULONG_MAX - hba + 1; 3855 } 3856 3857 unmap_mapping_pages(mapping, hba, hlen, even_cows); 3858 } 3859 EXPORT_SYMBOL(unmap_mapping_range); 3860 3861 /* 3862 * Restore a potential device exclusive pte to a working pte entry 3863 */ 3864 static vm_fault_t remove_device_exclusive_entry(struct vm_fault *vmf) 3865 { 3866 struct folio *folio = page_folio(vmf->page); 3867 struct vm_area_struct *vma = vmf->vma; 3868 struct mmu_notifier_range range; 3869 vm_fault_t ret; 3870 3871 /* 3872 * We need a reference to lock the folio because we don't hold 3873 * the PTL so a racing thread can remove the device-exclusive 3874 * entry and unmap it. If the folio is free the entry must 3875 * have been removed already. If it happens to have already 3876 * been re-allocated after being freed all we do is lock and 3877 * unlock it. 3878 */ 3879 if (!folio_try_get(folio)) 3880 return 0; 3881 3882 ret = folio_lock_or_retry(folio, vmf); 3883 if (ret) { 3884 folio_put(folio); 3885 return ret; 3886 } 3887 mmu_notifier_range_init_owner(&range, MMU_NOTIFY_EXCLUSIVE, 0, 3888 vma->vm_mm, vmf->address & PAGE_MASK, 3889 (vmf->address & PAGE_MASK) + PAGE_SIZE, NULL); 3890 mmu_notifier_invalidate_range_start(&range); 3891 3892 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address, 3893 &vmf->ptl); 3894 if (likely(vmf->pte && pte_same(ptep_get(vmf->pte), vmf->orig_pte))) 3895 restore_exclusive_pte(vma, vmf->page, vmf->address, vmf->pte); 3896 3897 if (vmf->pte) 3898 pte_unmap_unlock(vmf->pte, vmf->ptl); 3899 folio_unlock(folio); 3900 folio_put(folio); 3901 3902 mmu_notifier_invalidate_range_end(&range); 3903 return 0; 3904 } 3905 3906 static inline bool should_try_to_free_swap(struct folio *folio, 3907 struct vm_area_struct *vma, 3908 unsigned int fault_flags) 3909 { 3910 if (!folio_test_swapcache(folio)) 3911 return false; 3912 if (mem_cgroup_swap_full(folio) || (vma->vm_flags & VM_LOCKED) || 3913 folio_test_mlocked(folio)) 3914 return true; 3915 /* 3916 * If we want to map a page that's in the swapcache writable, we 3917 * have to detect via the refcount if we're really the exclusive 3918 * user. Try freeing the swapcache to get rid of the swapcache 3919 * reference only in case it's likely that we'll be the exlusive user. 3920 */ 3921 return (fault_flags & FAULT_FLAG_WRITE) && !folio_test_ksm(folio) && 3922 folio_ref_count(folio) == (1 + folio_nr_pages(folio)); 3923 } 3924 3925 static vm_fault_t pte_marker_clear(struct vm_fault *vmf) 3926 { 3927 vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, 3928 vmf->address, &vmf->ptl); 3929 if (!vmf->pte) 3930 return 0; 3931 /* 3932 * Be careful so that we will only recover a special uffd-wp pte into a 3933 * none pte. Otherwise it means the pte could have changed, so retry. 3934 * 3935 * This should also cover the case where e.g. the pte changed 3936 * quickly from a PTE_MARKER_UFFD_WP into PTE_MARKER_POISONED. 3937 * So is_pte_marker() check is not enough to safely drop the pte. 3938 */ 3939 if (pte_same(vmf->orig_pte, ptep_get(vmf->pte))) 3940 pte_clear(vmf->vma->vm_mm, vmf->address, vmf->pte); 3941 pte_unmap_unlock(vmf->pte, vmf->ptl); 3942 return 0; 3943 } 3944 3945 static vm_fault_t do_pte_missing(struct vm_fault *vmf) 3946 { 3947 if (vma_is_anonymous(vmf->vma)) 3948 return do_anonymous_page(vmf); 3949 else 3950 return do_fault(vmf); 3951 } 3952 3953 /* 3954 * This is actually a page-missing access, but with uffd-wp special pte 3955 * installed. It means this pte was wr-protected before being unmapped. 3956 */ 3957 static vm_fault_t pte_marker_handle_uffd_wp(struct vm_fault *vmf) 3958 { 3959 /* 3960 * Just in case there're leftover special ptes even after the region 3961 * got unregistered - we can simply clear them. 3962 */ 3963 if (unlikely(!userfaultfd_wp(vmf->vma))) 3964 return pte_marker_clear(vmf); 3965 3966 return do_pte_missing(vmf); 3967 } 3968 3969 static vm_fault_t handle_pte_marker(struct vm_fault *vmf) 3970 { 3971 swp_entry_t entry = pte_to_swp_entry(vmf->orig_pte); 3972 unsigned long marker = pte_marker_get(entry); 3973 3974 /* 3975 * PTE markers should never be empty. If anything weird happened, 3976 * the best thing to do is to kill the process along with its mm. 3977 */ 3978 if (WARN_ON_ONCE(!marker)) 3979 return VM_FAULT_SIGBUS; 3980 3981 /* Higher priority than uffd-wp when data corrupted */ 3982 if (marker & PTE_MARKER_POISONED) 3983 return VM_FAULT_HWPOISON; 3984 3985 if (pte_marker_entry_uffd_wp(entry)) 3986 return pte_marker_handle_uffd_wp(vmf); 3987 3988 /* This is an unknown pte marker */ 3989 return VM_FAULT_SIGBUS; 3990 } 3991 3992 /* 3993 * We enter with non-exclusive mmap_lock (to exclude vma changes, 3994 * but allow concurrent faults), and pte mapped but not yet locked. 3995 * We return with pte unmapped and unlocked. 3996 * 3997 * We return with the mmap_lock locked or unlocked in the same cases 3998 * as does filemap_fault(). 3999 */ 4000 vm_fault_t do_swap_page(struct vm_fault *vmf) 4001 { 4002 struct vm_area_struct *vma = vmf->vma; 4003 struct folio *swapcache, *folio = NULL; 4004 struct page *page; 4005 struct swap_info_struct *si = NULL; 4006 rmap_t rmap_flags = RMAP_NONE; 4007 bool need_clear_cache = false; 4008 bool exclusive = false; 4009 swp_entry_t entry; 4010 pte_t pte; 4011 vm_fault_t ret = 0; 4012 void *shadow = NULL; 4013 int nr_pages; 4014 unsigned long page_idx; 4015 unsigned long address; 4016 pte_t *ptep; 4017 4018 if (!pte_unmap_same(vmf)) 4019 goto out; 4020 4021 entry = pte_to_swp_entry(vmf->orig_pte); 4022 if (unlikely(non_swap_entry(entry))) { 4023 if (is_migration_entry(entry)) { 4024 migration_entry_wait(vma->vm_mm, vmf->pmd, 4025 vmf->address); 4026 } else if (is_device_exclusive_entry(entry)) { 4027 vmf->page = pfn_swap_entry_to_page(entry); 4028 ret = remove_device_exclusive_entry(vmf); 4029 } else if (is_device_private_entry(entry)) { 4030 if (vmf->flags & FAULT_FLAG_VMA_LOCK) { 4031 /* 4032 * migrate_to_ram is not yet ready to operate 4033 * under VMA lock. 4034 */ 4035 vma_end_read(vma); 4036 ret = VM_FAULT_RETRY; 4037 goto out; 4038 } 4039 4040 vmf->page = pfn_swap_entry_to_page(entry); 4041 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, 4042 vmf->address, &vmf->ptl); 4043 if (unlikely(!vmf->pte || 4044 !pte_same(ptep_get(vmf->pte), 4045 vmf->orig_pte))) 4046 goto unlock; 4047 4048 /* 4049 * Get a page reference while we know the page can't be 4050 * freed. 4051 */ 4052 get_page(vmf->page); 4053 pte_unmap_unlock(vmf->pte, vmf->ptl); 4054 ret = vmf->page->pgmap->ops->migrate_to_ram(vmf); 4055 put_page(vmf->page); 4056 } else if (is_hwpoison_entry(entry)) { 4057 ret = VM_FAULT_HWPOISON; 4058 } else if (is_pte_marker_entry(entry)) { 4059 ret = handle_pte_marker(vmf); 4060 } else { 4061 print_bad_pte(vma, vmf->address, vmf->orig_pte, NULL); 4062 ret = VM_FAULT_SIGBUS; 4063 } 4064 goto out; 4065 } 4066 4067 /* Prevent swapoff from happening to us. */ 4068 si = get_swap_device(entry); 4069 if (unlikely(!si)) 4070 goto out; 4071 4072 folio = swap_cache_get_folio(entry, vma, vmf->address); 4073 if (folio) 4074 page = folio_file_page(folio, swp_offset(entry)); 4075 swapcache = folio; 4076 4077 if (!folio) { 4078 if (data_race(si->flags & SWP_SYNCHRONOUS_IO) && 4079 __swap_count(entry) == 1) { 4080 /* 4081 * Prevent parallel swapin from proceeding with 4082 * the cache flag. Otherwise, another thread may 4083 * finish swapin first, free the entry, and swapout 4084 * reusing the same entry. It's undetectable as 4085 * pte_same() returns true due to entry reuse. 4086 */ 4087 if (swapcache_prepare(entry)) { 4088 /* Relax a bit to prevent rapid repeated page faults */ 4089 schedule_timeout_uninterruptible(1); 4090 goto out; 4091 } 4092 need_clear_cache = true; 4093 4094 /* skip swapcache */ 4095 folio = vma_alloc_folio(GFP_HIGHUSER_MOVABLE, 0, 4096 vma, vmf->address, false); 4097 page = &folio->page; 4098 if (folio) { 4099 __folio_set_locked(folio); 4100 __folio_set_swapbacked(folio); 4101 4102 if (mem_cgroup_swapin_charge_folio(folio, 4103 vma->vm_mm, GFP_KERNEL, 4104 entry)) { 4105 ret = VM_FAULT_OOM; 4106 goto out_page; 4107 } 4108 mem_cgroup_swapin_uncharge_swap(entry); 4109 4110 shadow = get_shadow_from_swap_cache(entry); 4111 if (shadow) 4112 workingset_refault(folio, shadow); 4113 4114 folio_add_lru(folio); 4115 4116 /* To provide entry to swap_read_folio() */ 4117 folio->swap = entry; 4118 swap_read_folio(folio, true, NULL); 4119 folio->private = NULL; 4120 } 4121 } else { 4122 page = swapin_readahead(entry, GFP_HIGHUSER_MOVABLE, 4123 vmf); 4124 if (page) 4125 folio = page_folio(page); 4126 swapcache = folio; 4127 } 4128 4129 if (!folio) { 4130 /* 4131 * Back out if somebody else faulted in this pte 4132 * while we released the pte lock. 4133 */ 4134 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, 4135 vmf->address, &vmf->ptl); 4136 if (likely(vmf->pte && 4137 pte_same(ptep_get(vmf->pte), vmf->orig_pte))) 4138 ret = VM_FAULT_OOM; 4139 goto unlock; 4140 } 4141 4142 /* Had to read the page from swap area: Major fault */ 4143 ret = VM_FAULT_MAJOR; 4144 count_vm_event(PGMAJFAULT); 4145 count_memcg_event_mm(vma->vm_mm, PGMAJFAULT); 4146 } else if (PageHWPoison(page)) { 4147 /* 4148 * hwpoisoned dirty swapcache pages are kept for killing 4149 * owner processes (which may be unknown at hwpoison time) 4150 */ 4151 ret = VM_FAULT_HWPOISON; 4152 goto out_release; 4153 } 4154 4155 ret |= folio_lock_or_retry(folio, vmf); 4156 if (ret & VM_FAULT_RETRY) 4157 goto out_release; 4158 4159 if (swapcache) { 4160 /* 4161 * Make sure folio_free_swap() or swapoff did not release the 4162 * swapcache from under us. The page pin, and pte_same test 4163 * below, are not enough to exclude that. Even if it is still 4164 * swapcache, we need to check that the page's swap has not 4165 * changed. 4166 */ 4167 if (unlikely(!folio_test_swapcache(folio) || 4168 page_swap_entry(page).val != entry.val)) 4169 goto out_page; 4170 4171 /* 4172 * KSM sometimes has to copy on read faults, for example, if 4173 * page->index of !PageKSM() pages would be nonlinear inside the 4174 * anon VMA -- PageKSM() is lost on actual swapout. 4175 */ 4176 folio = ksm_might_need_to_copy(folio, vma, vmf->address); 4177 if (unlikely(!folio)) { 4178 ret = VM_FAULT_OOM; 4179 folio = swapcache; 4180 goto out_page; 4181 } else if (unlikely(folio == ERR_PTR(-EHWPOISON))) { 4182 ret = VM_FAULT_HWPOISON; 4183 folio = swapcache; 4184 goto out_page; 4185 } 4186 if (folio != swapcache) 4187 page = folio_page(folio, 0); 4188 4189 /* 4190 * If we want to map a page that's in the swapcache writable, we 4191 * have to detect via the refcount if we're really the exclusive 4192 * owner. Try removing the extra reference from the local LRU 4193 * caches if required. 4194 */ 4195 if ((vmf->flags & FAULT_FLAG_WRITE) && folio == swapcache && 4196 !folio_test_ksm(folio) && !folio_test_lru(folio)) 4197 lru_add_drain(); 4198 } 4199 4200 folio_throttle_swaprate(folio, GFP_KERNEL); 4201 4202 /* 4203 * Back out if somebody else already faulted in this pte. 4204 */ 4205 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, vmf->address, 4206 &vmf->ptl); 4207 if (unlikely(!vmf->pte || !pte_same(ptep_get(vmf->pte), vmf->orig_pte))) 4208 goto out_nomap; 4209 4210 if (unlikely(!folio_test_uptodate(folio))) { 4211 ret = VM_FAULT_SIGBUS; 4212 goto out_nomap; 4213 } 4214 4215 nr_pages = 1; 4216 page_idx = 0; 4217 address = vmf->address; 4218 ptep = vmf->pte; 4219 if (folio_test_large(folio) && folio_test_swapcache(folio)) { 4220 int nr = folio_nr_pages(folio); 4221 unsigned long idx = folio_page_idx(folio, page); 4222 unsigned long folio_start = address - idx * PAGE_SIZE; 4223 unsigned long folio_end = folio_start + nr * PAGE_SIZE; 4224 pte_t *folio_ptep; 4225 pte_t folio_pte; 4226 4227 if (unlikely(folio_start < max(address & PMD_MASK, vma->vm_start))) 4228 goto check_folio; 4229 if (unlikely(folio_end > pmd_addr_end(address, vma->vm_end))) 4230 goto check_folio; 4231 4232 folio_ptep = vmf->pte - idx; 4233 folio_pte = ptep_get(folio_ptep); 4234 if (!pte_same(folio_pte, pte_move_swp_offset(vmf->orig_pte, -idx)) || 4235 swap_pte_batch(folio_ptep, nr, folio_pte) != nr) 4236 goto check_folio; 4237 4238 page_idx = idx; 4239 address = folio_start; 4240 ptep = folio_ptep; 4241 nr_pages = nr; 4242 entry = folio->swap; 4243 page = &folio->page; 4244 } 4245 4246 check_folio: 4247 /* 4248 * PG_anon_exclusive reuses PG_mappedtodisk for anon pages. A swap pte 4249 * must never point at an anonymous page in the swapcache that is 4250 * PG_anon_exclusive. Sanity check that this holds and especially, that 4251 * no filesystem set PG_mappedtodisk on a page in the swapcache. Sanity 4252 * check after taking the PT lock and making sure that nobody 4253 * concurrently faulted in this page and set PG_anon_exclusive. 4254 */ 4255 BUG_ON(!folio_test_anon(folio) && folio_test_mappedtodisk(folio)); 4256 BUG_ON(folio_test_anon(folio) && PageAnonExclusive(page)); 4257 4258 /* 4259 * Check under PT lock (to protect against concurrent fork() sharing 4260 * the swap entry concurrently) for certainly exclusive pages. 4261 */ 4262 if (!folio_test_ksm(folio)) { 4263 exclusive = pte_swp_exclusive(vmf->orig_pte); 4264 if (folio != swapcache) { 4265 /* 4266 * We have a fresh page that is not exposed to the 4267 * swapcache -> certainly exclusive. 4268 */ 4269 exclusive = true; 4270 } else if (exclusive && folio_test_writeback(folio) && 4271 data_race(si->flags & SWP_STABLE_WRITES)) { 4272 /* 4273 * This is tricky: not all swap backends support 4274 * concurrent page modifications while under writeback. 4275 * 4276 * So if we stumble over such a page in the swapcache 4277 * we must not set the page exclusive, otherwise we can 4278 * map it writable without further checks and modify it 4279 * while still under writeback. 4280 * 4281 * For these problematic swap backends, simply drop the 4282 * exclusive marker: this is perfectly fine as we start 4283 * writeback only if we fully unmapped the page and 4284 * there are no unexpected references on the page after 4285 * unmapping succeeded. After fully unmapped, no 4286 * further GUP references (FOLL_GET and FOLL_PIN) can 4287 * appear, so dropping the exclusive marker and mapping 4288 * it only R/O is fine. 4289 */ 4290 exclusive = false; 4291 } 4292 } 4293 4294 /* 4295 * Some architectures may have to restore extra metadata to the page 4296 * when reading from swap. This metadata may be indexed by swap entry 4297 * so this must be called before swap_free(). 4298 */ 4299 arch_swap_restore(folio_swap(entry, folio), folio); 4300 4301 /* 4302 * Remove the swap entry and conditionally try to free up the swapcache. 4303 * We're already holding a reference on the page but haven't mapped it 4304 * yet. 4305 */ 4306 swap_free_nr(entry, nr_pages); 4307 if (should_try_to_free_swap(folio, vma, vmf->flags)) 4308 folio_free_swap(folio); 4309 4310 add_mm_counter(vma->vm_mm, MM_ANONPAGES, nr_pages); 4311 add_mm_counter(vma->vm_mm, MM_SWAPENTS, -nr_pages); 4312 pte = mk_pte(page, vma->vm_page_prot); 4313 4314 /* 4315 * Same logic as in do_wp_page(); however, optimize for pages that are 4316 * certainly not shared either because we just allocated them without 4317 * exposing them to the swapcache or because the swap entry indicates 4318 * exclusivity. 4319 */ 4320 if (!folio_test_ksm(folio) && 4321 (exclusive || folio_ref_count(folio) == 1)) { 4322 if (vmf->flags & FAULT_FLAG_WRITE) { 4323 pte = maybe_mkwrite(pte_mkdirty(pte), vma); 4324 vmf->flags &= ~FAULT_FLAG_WRITE; 4325 } 4326 rmap_flags |= RMAP_EXCLUSIVE; 4327 } 4328 folio_ref_add(folio, nr_pages - 1); 4329 flush_icache_pages(vma, page, nr_pages); 4330 if (pte_swp_soft_dirty(vmf->orig_pte)) 4331 pte = pte_mksoft_dirty(pte); 4332 if (pte_swp_uffd_wp(vmf->orig_pte)) 4333 pte = pte_mkuffd_wp(pte); 4334 vmf->orig_pte = pte_advance_pfn(pte, page_idx); 4335 4336 /* ksm created a completely new copy */ 4337 if (unlikely(folio != swapcache && swapcache)) { 4338 folio_add_new_anon_rmap(folio, vma, address); 4339 folio_add_lru_vma(folio, vma); 4340 } else { 4341 folio_add_anon_rmap_ptes(folio, page, nr_pages, vma, address, 4342 rmap_flags); 4343 } 4344 4345 VM_BUG_ON(!folio_test_anon(folio) || 4346 (pte_write(pte) && !PageAnonExclusive(page))); 4347 set_ptes(vma->vm_mm, address, ptep, pte, nr_pages); 4348 arch_do_swap_page_nr(vma->vm_mm, vma, address, 4349 pte, pte, nr_pages); 4350 4351 folio_unlock(folio); 4352 if (folio != swapcache && swapcache) { 4353 /* 4354 * Hold the lock to avoid the swap entry to be reused 4355 * until we take the PT lock for the pte_same() check 4356 * (to avoid false positives from pte_same). For 4357 * further safety release the lock after the swap_free 4358 * so that the swap count won't change under a 4359 * parallel locked swapcache. 4360 */ 4361 folio_unlock(swapcache); 4362 folio_put(swapcache); 4363 } 4364 4365 if (vmf->flags & FAULT_FLAG_WRITE) { 4366 ret |= do_wp_page(vmf); 4367 if (ret & VM_FAULT_ERROR) 4368 ret &= VM_FAULT_ERROR; 4369 goto out; 4370 } 4371 4372 /* No need to invalidate - it was non-present before */ 4373 update_mmu_cache_range(vmf, vma, address, ptep, nr_pages); 4374 unlock: 4375 if (vmf->pte) 4376 pte_unmap_unlock(vmf->pte, vmf->ptl); 4377 out: 4378 /* Clear the swap cache pin for direct swapin after PTL unlock */ 4379 if (need_clear_cache) 4380 swapcache_clear(si, entry); 4381 if (si) 4382 put_swap_device(si); 4383 return ret; 4384 out_nomap: 4385 if (vmf->pte) 4386 pte_unmap_unlock(vmf->pte, vmf->ptl); 4387 out_page: 4388 folio_unlock(folio); 4389 out_release: 4390 folio_put(folio); 4391 if (folio != swapcache && swapcache) { 4392 folio_unlock(swapcache); 4393 folio_put(swapcache); 4394 } 4395 if (need_clear_cache) 4396 swapcache_clear(si, entry); 4397 if (si) 4398 put_swap_device(si); 4399 return ret; 4400 } 4401 4402 static bool pte_range_none(pte_t *pte, int nr_pages) 4403 { 4404 int i; 4405 4406 for (i = 0; i < nr_pages; i++) { 4407 if (!pte_none(ptep_get_lockless(pte + i))) 4408 return false; 4409 } 4410 4411 return true; 4412 } 4413 4414 static struct folio *alloc_anon_folio(struct vm_fault *vmf) 4415 { 4416 struct vm_area_struct *vma = vmf->vma; 4417 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 4418 unsigned long orders; 4419 struct folio *folio; 4420 unsigned long addr; 4421 pte_t *pte; 4422 gfp_t gfp; 4423 int order; 4424 4425 /* 4426 * If uffd is active for the vma we need per-page fault fidelity to 4427 * maintain the uffd semantics. 4428 */ 4429 if (unlikely(userfaultfd_armed(vma))) 4430 goto fallback; 4431 4432 /* 4433 * Get a list of all the (large) orders below PMD_ORDER that are enabled 4434 * for this vma. Then filter out the orders that can't be allocated over 4435 * the faulting address and still be fully contained in the vma. 4436 */ 4437 orders = thp_vma_allowable_orders(vma, vma->vm_flags, 4438 TVA_IN_PF | TVA_ENFORCE_SYSFS, BIT(PMD_ORDER) - 1); 4439 orders = thp_vma_suitable_orders(vma, vmf->address, orders); 4440 4441 if (!orders) 4442 goto fallback; 4443 4444 pte = pte_offset_map(vmf->pmd, vmf->address & PMD_MASK); 4445 if (!pte) 4446 return ERR_PTR(-EAGAIN); 4447 4448 /* 4449 * Find the highest order where the aligned range is completely 4450 * pte_none(). Note that all remaining orders will be completely 4451 * pte_none(). 4452 */ 4453 order = highest_order(orders); 4454 while (orders) { 4455 addr = ALIGN_DOWN(vmf->address, PAGE_SIZE << order); 4456 if (pte_range_none(pte + pte_index(addr), 1 << order)) 4457 break; 4458 order = next_order(&orders, order); 4459 } 4460 4461 pte_unmap(pte); 4462 4463 if (!orders) 4464 goto fallback; 4465 4466 /* Try allocating the highest of the remaining orders. */ 4467 gfp = vma_thp_gfp_mask(vma); 4468 while (orders) { 4469 addr = ALIGN_DOWN(vmf->address, PAGE_SIZE << order); 4470 folio = vma_alloc_folio(gfp, order, vma, addr, true); 4471 if (folio) { 4472 if (mem_cgroup_charge(folio, vma->vm_mm, gfp)) { 4473 count_mthp_stat(order, MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE); 4474 folio_put(folio); 4475 goto next; 4476 } 4477 folio_throttle_swaprate(folio, gfp); 4478 clear_huge_page(&folio->page, vmf->address, 1 << order); 4479 return folio; 4480 } 4481 next: 4482 count_mthp_stat(order, MTHP_STAT_ANON_FAULT_FALLBACK); 4483 order = next_order(&orders, order); 4484 } 4485 4486 fallback: 4487 #endif 4488 return folio_prealloc(vma->vm_mm, vma, vmf->address, true); 4489 } 4490 4491 /* 4492 * We enter with non-exclusive mmap_lock (to exclude vma changes, 4493 * but allow concurrent faults), and pte mapped but not yet locked. 4494 * We return with mmap_lock still held, but pte unmapped and unlocked. 4495 */ 4496 static vm_fault_t do_anonymous_page(struct vm_fault *vmf) 4497 { 4498 struct vm_area_struct *vma = vmf->vma; 4499 unsigned long addr = vmf->address; 4500 struct folio *folio; 4501 vm_fault_t ret = 0; 4502 int nr_pages = 1; 4503 pte_t entry; 4504 4505 /* File mapping without ->vm_ops ? */ 4506 if (vma->vm_flags & VM_SHARED) 4507 return VM_FAULT_SIGBUS; 4508 4509 /* 4510 * Use pte_alloc() instead of pte_alloc_map(), so that OOM can 4511 * be distinguished from a transient failure of pte_offset_map(). 4512 */ 4513 if (pte_alloc(vma->vm_mm, vmf->pmd)) 4514 return VM_FAULT_OOM; 4515 4516 /* Use the zero-page for reads */ 4517 if (!(vmf->flags & FAULT_FLAG_WRITE) && 4518 !mm_forbids_zeropage(vma->vm_mm)) { 4519 entry = pte_mkspecial(pfn_pte(my_zero_pfn(vmf->address), 4520 vma->vm_page_prot)); 4521 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, 4522 vmf->address, &vmf->ptl); 4523 if (!vmf->pte) 4524 goto unlock; 4525 if (vmf_pte_changed(vmf)) { 4526 update_mmu_tlb(vma, vmf->address, vmf->pte); 4527 goto unlock; 4528 } 4529 ret = check_stable_address_space(vma->vm_mm); 4530 if (ret) 4531 goto unlock; 4532 /* Deliver the page fault to userland, check inside PT lock */ 4533 if (userfaultfd_missing(vma)) { 4534 pte_unmap_unlock(vmf->pte, vmf->ptl); 4535 return handle_userfault(vmf, VM_UFFD_MISSING); 4536 } 4537 goto setpte; 4538 } 4539 4540 /* Allocate our own private page. */ 4541 ret = vmf_anon_prepare(vmf); 4542 if (ret) 4543 return ret; 4544 /* Returns NULL on OOM or ERR_PTR(-EAGAIN) if we must retry the fault */ 4545 folio = alloc_anon_folio(vmf); 4546 if (IS_ERR(folio)) 4547 return 0; 4548 if (!folio) 4549 goto oom; 4550 4551 nr_pages = folio_nr_pages(folio); 4552 addr = ALIGN_DOWN(vmf->address, nr_pages * PAGE_SIZE); 4553 4554 /* 4555 * The memory barrier inside __folio_mark_uptodate makes sure that 4556 * preceding stores to the page contents become visible before 4557 * the set_pte_at() write. 4558 */ 4559 __folio_mark_uptodate(folio); 4560 4561 entry = mk_pte(&folio->page, vma->vm_page_prot); 4562 entry = pte_sw_mkyoung(entry); 4563 if (vma->vm_flags & VM_WRITE) 4564 entry = pte_mkwrite(pte_mkdirty(entry), vma); 4565 4566 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl); 4567 if (!vmf->pte) 4568 goto release; 4569 if (nr_pages == 1 && vmf_pte_changed(vmf)) { 4570 update_mmu_tlb(vma, addr, vmf->pte); 4571 goto release; 4572 } else if (nr_pages > 1 && !pte_range_none(vmf->pte, nr_pages)) { 4573 update_mmu_tlb_range(vma, addr, vmf->pte, nr_pages); 4574 goto release; 4575 } 4576 4577 ret = check_stable_address_space(vma->vm_mm); 4578 if (ret) 4579 goto release; 4580 4581 /* Deliver the page fault to userland, check inside PT lock */ 4582 if (userfaultfd_missing(vma)) { 4583 pte_unmap_unlock(vmf->pte, vmf->ptl); 4584 folio_put(folio); 4585 return handle_userfault(vmf, VM_UFFD_MISSING); 4586 } 4587 4588 folio_ref_add(folio, nr_pages - 1); 4589 add_mm_counter(vma->vm_mm, MM_ANONPAGES, nr_pages); 4590 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 4591 count_mthp_stat(folio_order(folio), MTHP_STAT_ANON_FAULT_ALLOC); 4592 #endif 4593 folio_add_new_anon_rmap(folio, vma, addr); 4594 folio_add_lru_vma(folio, vma); 4595 setpte: 4596 if (vmf_orig_pte_uffd_wp(vmf)) 4597 entry = pte_mkuffd_wp(entry); 4598 set_ptes(vma->vm_mm, addr, vmf->pte, entry, nr_pages); 4599 4600 /* No need to invalidate - it was non-present before */ 4601 update_mmu_cache_range(vmf, vma, addr, vmf->pte, nr_pages); 4602 unlock: 4603 if (vmf->pte) 4604 pte_unmap_unlock(vmf->pte, vmf->ptl); 4605 return ret; 4606 release: 4607 folio_put(folio); 4608 goto unlock; 4609 oom: 4610 return VM_FAULT_OOM; 4611 } 4612 4613 /* 4614 * The mmap_lock must have been held on entry, and may have been 4615 * released depending on flags and vma->vm_ops->fault() return value. 4616 * See filemap_fault() and __lock_page_retry(). 4617 */ 4618 static vm_fault_t __do_fault(struct vm_fault *vmf) 4619 { 4620 struct vm_area_struct *vma = vmf->vma; 4621 struct folio *folio; 4622 vm_fault_t ret; 4623 4624 /* 4625 * Preallocate pte before we take page_lock because this might lead to 4626 * deadlocks for memcg reclaim which waits for pages under writeback: 4627 * lock_page(A) 4628 * SetPageWriteback(A) 4629 * unlock_page(A) 4630 * lock_page(B) 4631 * lock_page(B) 4632 * pte_alloc_one 4633 * shrink_folio_list 4634 * wait_on_page_writeback(A) 4635 * SetPageWriteback(B) 4636 * unlock_page(B) 4637 * # flush A, B to clear the writeback 4638 */ 4639 if (pmd_none(*vmf->pmd) && !vmf->prealloc_pte) { 4640 vmf->prealloc_pte = pte_alloc_one(vma->vm_mm); 4641 if (!vmf->prealloc_pte) 4642 return VM_FAULT_OOM; 4643 } 4644 4645 ret = vma->vm_ops->fault(vmf); 4646 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY | 4647 VM_FAULT_DONE_COW))) 4648 return ret; 4649 4650 folio = page_folio(vmf->page); 4651 if (unlikely(PageHWPoison(vmf->page))) { 4652 vm_fault_t poisonret = VM_FAULT_HWPOISON; 4653 if (ret & VM_FAULT_LOCKED) { 4654 if (page_mapped(vmf->page)) 4655 unmap_mapping_folio(folio); 4656 /* Retry if a clean folio was removed from the cache. */ 4657 if (mapping_evict_folio(folio->mapping, folio)) 4658 poisonret = VM_FAULT_NOPAGE; 4659 folio_unlock(folio); 4660 } 4661 folio_put(folio); 4662 vmf->page = NULL; 4663 return poisonret; 4664 } 4665 4666 if (unlikely(!(ret & VM_FAULT_LOCKED))) 4667 folio_lock(folio); 4668 else 4669 VM_BUG_ON_PAGE(!folio_test_locked(folio), vmf->page); 4670 4671 return ret; 4672 } 4673 4674 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 4675 static void deposit_prealloc_pte(struct vm_fault *vmf) 4676 { 4677 struct vm_area_struct *vma = vmf->vma; 4678 4679 pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, vmf->prealloc_pte); 4680 /* 4681 * We are going to consume the prealloc table, 4682 * count that as nr_ptes. 4683 */ 4684 mm_inc_nr_ptes(vma->vm_mm); 4685 vmf->prealloc_pte = NULL; 4686 } 4687 4688 vm_fault_t do_set_pmd(struct vm_fault *vmf, struct page *page) 4689 { 4690 struct folio *folio = page_folio(page); 4691 struct vm_area_struct *vma = vmf->vma; 4692 bool write = vmf->flags & FAULT_FLAG_WRITE; 4693 unsigned long haddr = vmf->address & HPAGE_PMD_MASK; 4694 pmd_t entry; 4695 vm_fault_t ret = VM_FAULT_FALLBACK; 4696 4697 if (!thp_vma_suitable_order(vma, haddr, PMD_ORDER)) 4698 return ret; 4699 4700 if (folio_order(folio) != HPAGE_PMD_ORDER) 4701 return ret; 4702 page = &folio->page; 4703 4704 /* 4705 * Just backoff if any subpage of a THP is corrupted otherwise 4706 * the corrupted page may mapped by PMD silently to escape the 4707 * check. This kind of THP just can be PTE mapped. Access to 4708 * the corrupted subpage should trigger SIGBUS as expected. 4709 */ 4710 if (unlikely(folio_test_has_hwpoisoned(folio))) 4711 return ret; 4712 4713 /* 4714 * Archs like ppc64 need additional space to store information 4715 * related to pte entry. Use the preallocated table for that. 4716 */ 4717 if (arch_needs_pgtable_deposit() && !vmf->prealloc_pte) { 4718 vmf->prealloc_pte = pte_alloc_one(vma->vm_mm); 4719 if (!vmf->prealloc_pte) 4720 return VM_FAULT_OOM; 4721 } 4722 4723 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd); 4724 if (unlikely(!pmd_none(*vmf->pmd))) 4725 goto out; 4726 4727 flush_icache_pages(vma, page, HPAGE_PMD_NR); 4728 4729 entry = mk_huge_pmd(page, vma->vm_page_prot); 4730 if (write) 4731 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma); 4732 4733 add_mm_counter(vma->vm_mm, mm_counter_file(folio), HPAGE_PMD_NR); 4734 folio_add_file_rmap_pmd(folio, page, vma); 4735 4736 /* 4737 * deposit and withdraw with pmd lock held 4738 */ 4739 if (arch_needs_pgtable_deposit()) 4740 deposit_prealloc_pte(vmf); 4741 4742 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry); 4743 4744 update_mmu_cache_pmd(vma, haddr, vmf->pmd); 4745 4746 /* fault is handled */ 4747 ret = 0; 4748 count_vm_event(THP_FILE_MAPPED); 4749 out: 4750 spin_unlock(vmf->ptl); 4751 return ret; 4752 } 4753 #else 4754 vm_fault_t do_set_pmd(struct vm_fault *vmf, struct page *page) 4755 { 4756 return VM_FAULT_FALLBACK; 4757 } 4758 #endif 4759 4760 /** 4761 * set_pte_range - Set a range of PTEs to point to pages in a folio. 4762 * @vmf: Fault decription. 4763 * @folio: The folio that contains @page. 4764 * @page: The first page to create a PTE for. 4765 * @nr: The number of PTEs to create. 4766 * @addr: The first address to create a PTE for. 4767 */ 4768 void set_pte_range(struct vm_fault *vmf, struct folio *folio, 4769 struct page *page, unsigned int nr, unsigned long addr) 4770 { 4771 struct vm_area_struct *vma = vmf->vma; 4772 bool write = vmf->flags & FAULT_FLAG_WRITE; 4773 bool prefault = in_range(vmf->address, addr, nr * PAGE_SIZE); 4774 pte_t entry; 4775 4776 flush_icache_pages(vma, page, nr); 4777 entry = mk_pte(page, vma->vm_page_prot); 4778 4779 if (prefault && arch_wants_old_prefaulted_pte()) 4780 entry = pte_mkold(entry); 4781 else 4782 entry = pte_sw_mkyoung(entry); 4783 4784 if (write) 4785 entry = maybe_mkwrite(pte_mkdirty(entry), vma); 4786 if (unlikely(vmf_orig_pte_uffd_wp(vmf))) 4787 entry = pte_mkuffd_wp(entry); 4788 /* copy-on-write page */ 4789 if (write && !(vma->vm_flags & VM_SHARED)) { 4790 VM_BUG_ON_FOLIO(nr != 1, folio); 4791 folio_add_new_anon_rmap(folio, vma, addr); 4792 folio_add_lru_vma(folio, vma); 4793 } else { 4794 folio_add_file_rmap_ptes(folio, page, nr, vma); 4795 } 4796 set_ptes(vma->vm_mm, addr, vmf->pte, entry, nr); 4797 4798 /* no need to invalidate: a not-present page won't be cached */ 4799 update_mmu_cache_range(vmf, vma, addr, vmf->pte, nr); 4800 } 4801 4802 static bool vmf_pte_changed(struct vm_fault *vmf) 4803 { 4804 if (vmf->flags & FAULT_FLAG_ORIG_PTE_VALID) 4805 return !pte_same(ptep_get(vmf->pte), vmf->orig_pte); 4806 4807 return !pte_none(ptep_get(vmf->pte)); 4808 } 4809 4810 /** 4811 * finish_fault - finish page fault once we have prepared the page to fault 4812 * 4813 * @vmf: structure describing the fault 4814 * 4815 * This function handles all that is needed to finish a page fault once the 4816 * page to fault in is prepared. It handles locking of PTEs, inserts PTE for 4817 * given page, adds reverse page mapping, handles memcg charges and LRU 4818 * addition. 4819 * 4820 * The function expects the page to be locked and on success it consumes a 4821 * reference of a page being mapped (for the PTE which maps it). 4822 * 4823 * Return: %0 on success, %VM_FAULT_ code in case of error. 4824 */ 4825 vm_fault_t finish_fault(struct vm_fault *vmf) 4826 { 4827 struct vm_area_struct *vma = vmf->vma; 4828 struct page *page; 4829 struct folio *folio; 4830 vm_fault_t ret; 4831 bool is_cow = (vmf->flags & FAULT_FLAG_WRITE) && 4832 !(vma->vm_flags & VM_SHARED); 4833 int type, nr_pages; 4834 unsigned long addr = vmf->address; 4835 4836 /* Did we COW the page? */ 4837 if (is_cow) 4838 page = vmf->cow_page; 4839 else 4840 page = vmf->page; 4841 4842 /* 4843 * check even for read faults because we might have lost our CoWed 4844 * page 4845 */ 4846 if (!(vma->vm_flags & VM_SHARED)) { 4847 ret = check_stable_address_space(vma->vm_mm); 4848 if (ret) 4849 return ret; 4850 } 4851 4852 if (pmd_none(*vmf->pmd)) { 4853 if (PageTransCompound(page)) { 4854 ret = do_set_pmd(vmf, page); 4855 if (ret != VM_FAULT_FALLBACK) 4856 return ret; 4857 } 4858 4859 if (vmf->prealloc_pte) 4860 pmd_install(vma->vm_mm, vmf->pmd, &vmf->prealloc_pte); 4861 else if (unlikely(pte_alloc(vma->vm_mm, vmf->pmd))) 4862 return VM_FAULT_OOM; 4863 } 4864 4865 folio = page_folio(page); 4866 nr_pages = folio_nr_pages(folio); 4867 4868 /* 4869 * Using per-page fault to maintain the uffd semantics, and same 4870 * approach also applies to non-anonymous-shmem faults to avoid 4871 * inflating the RSS of the process. 4872 */ 4873 if (!vma_is_anon_shmem(vma) || unlikely(userfaultfd_armed(vma))) { 4874 nr_pages = 1; 4875 } else if (nr_pages > 1) { 4876 pgoff_t idx = folio_page_idx(folio, page); 4877 /* The page offset of vmf->address within the VMA. */ 4878 pgoff_t vma_off = vmf->pgoff - vmf->vma->vm_pgoff; 4879 /* The index of the entry in the pagetable for fault page. */ 4880 pgoff_t pte_off = pte_index(vmf->address); 4881 4882 /* 4883 * Fallback to per-page fault in case the folio size in page 4884 * cache beyond the VMA limits and PMD pagetable limits. 4885 */ 4886 if (unlikely(vma_off < idx || 4887 vma_off + (nr_pages - idx) > vma_pages(vma) || 4888 pte_off < idx || 4889 pte_off + (nr_pages - idx) > PTRS_PER_PTE)) { 4890 nr_pages = 1; 4891 } else { 4892 /* Now we can set mappings for the whole large folio. */ 4893 addr = vmf->address - idx * PAGE_SIZE; 4894 page = &folio->page; 4895 } 4896 } 4897 4898 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, 4899 addr, &vmf->ptl); 4900 if (!vmf->pte) 4901 return VM_FAULT_NOPAGE; 4902 4903 /* Re-check under ptl */ 4904 if (nr_pages == 1 && unlikely(vmf_pte_changed(vmf))) { 4905 update_mmu_tlb(vma, addr, vmf->pte); 4906 ret = VM_FAULT_NOPAGE; 4907 goto unlock; 4908 } else if (nr_pages > 1 && !pte_range_none(vmf->pte, nr_pages)) { 4909 update_mmu_tlb_range(vma, addr, vmf->pte, nr_pages); 4910 ret = VM_FAULT_NOPAGE; 4911 goto unlock; 4912 } 4913 4914 folio_ref_add(folio, nr_pages - 1); 4915 set_pte_range(vmf, folio, page, nr_pages, addr); 4916 type = is_cow ? MM_ANONPAGES : mm_counter_file(folio); 4917 add_mm_counter(vma->vm_mm, type, nr_pages); 4918 ret = 0; 4919 4920 unlock: 4921 pte_unmap_unlock(vmf->pte, vmf->ptl); 4922 return ret; 4923 } 4924 4925 static unsigned long fault_around_pages __read_mostly = 4926 65536 >> PAGE_SHIFT; 4927 4928 #ifdef CONFIG_DEBUG_FS 4929 static int fault_around_bytes_get(void *data, u64 *val) 4930 { 4931 *val = fault_around_pages << PAGE_SHIFT; 4932 return 0; 4933 } 4934 4935 /* 4936 * fault_around_bytes must be rounded down to the nearest page order as it's 4937 * what do_fault_around() expects to see. 4938 */ 4939 static int fault_around_bytes_set(void *data, u64 val) 4940 { 4941 if (val / PAGE_SIZE > PTRS_PER_PTE) 4942 return -EINVAL; 4943 4944 /* 4945 * The minimum value is 1 page, however this results in no fault-around 4946 * at all. See should_fault_around(). 4947 */ 4948 val = max(val, PAGE_SIZE); 4949 fault_around_pages = rounddown_pow_of_two(val) >> PAGE_SHIFT; 4950 4951 return 0; 4952 } 4953 DEFINE_DEBUGFS_ATTRIBUTE(fault_around_bytes_fops, 4954 fault_around_bytes_get, fault_around_bytes_set, "%llu\n"); 4955 4956 static int __init fault_around_debugfs(void) 4957 { 4958 debugfs_create_file_unsafe("fault_around_bytes", 0644, NULL, NULL, 4959 &fault_around_bytes_fops); 4960 return 0; 4961 } 4962 late_initcall(fault_around_debugfs); 4963 #endif 4964 4965 /* 4966 * do_fault_around() tries to map few pages around the fault address. The hope 4967 * is that the pages will be needed soon and this will lower the number of 4968 * faults to handle. 4969 * 4970 * It uses vm_ops->map_pages() to map the pages, which skips the page if it's 4971 * not ready to be mapped: not up-to-date, locked, etc. 4972 * 4973 * This function doesn't cross VMA or page table boundaries, in order to call 4974 * map_pages() and acquire a PTE lock only once. 4975 * 4976 * fault_around_pages defines how many pages we'll try to map. 4977 * do_fault_around() expects it to be set to a power of two less than or equal 4978 * to PTRS_PER_PTE. 4979 * 4980 * The virtual address of the area that we map is naturally aligned to 4981 * fault_around_pages * PAGE_SIZE rounded down to the machine page size 4982 * (and therefore to page order). This way it's easier to guarantee 4983 * that we don't cross page table boundaries. 4984 */ 4985 static vm_fault_t do_fault_around(struct vm_fault *vmf) 4986 { 4987 pgoff_t nr_pages = READ_ONCE(fault_around_pages); 4988 pgoff_t pte_off = pte_index(vmf->address); 4989 /* The page offset of vmf->address within the VMA. */ 4990 pgoff_t vma_off = vmf->pgoff - vmf->vma->vm_pgoff; 4991 pgoff_t from_pte, to_pte; 4992 vm_fault_t ret; 4993 4994 /* The PTE offset of the start address, clamped to the VMA. */ 4995 from_pte = max(ALIGN_DOWN(pte_off, nr_pages), 4996 pte_off - min(pte_off, vma_off)); 4997 4998 /* The PTE offset of the end address, clamped to the VMA and PTE. */ 4999 to_pte = min3(from_pte + nr_pages, (pgoff_t)PTRS_PER_PTE, 5000 pte_off + vma_pages(vmf->vma) - vma_off) - 1; 5001 5002 if (pmd_none(*vmf->pmd)) { 5003 vmf->prealloc_pte = pte_alloc_one(vmf->vma->vm_mm); 5004 if (!vmf->prealloc_pte) 5005 return VM_FAULT_OOM; 5006 } 5007 5008 rcu_read_lock(); 5009 ret = vmf->vma->vm_ops->map_pages(vmf, 5010 vmf->pgoff + from_pte - pte_off, 5011 vmf->pgoff + to_pte - pte_off); 5012 rcu_read_unlock(); 5013 5014 return ret; 5015 } 5016 5017 /* Return true if we should do read fault-around, false otherwise */ 5018 static inline bool should_fault_around(struct vm_fault *vmf) 5019 { 5020 /* No ->map_pages? No way to fault around... */ 5021 if (!vmf->vma->vm_ops->map_pages) 5022 return false; 5023 5024 if (uffd_disable_fault_around(vmf->vma)) 5025 return false; 5026 5027 /* A single page implies no faulting 'around' at all. */ 5028 return fault_around_pages > 1; 5029 } 5030 5031 static vm_fault_t do_read_fault(struct vm_fault *vmf) 5032 { 5033 vm_fault_t ret = 0; 5034 struct folio *folio; 5035 5036 /* 5037 * Let's call ->map_pages() first and use ->fault() as fallback 5038 * if page by the offset is not ready to be mapped (cold cache or 5039 * something). 5040 */ 5041 if (should_fault_around(vmf)) { 5042 ret = do_fault_around(vmf); 5043 if (ret) 5044 return ret; 5045 } 5046 5047 ret = vmf_can_call_fault(vmf); 5048 if (ret) 5049 return ret; 5050 5051 ret = __do_fault(vmf); 5052 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY))) 5053 return ret; 5054 5055 ret |= finish_fault(vmf); 5056 folio = page_folio(vmf->page); 5057 folio_unlock(folio); 5058 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY))) 5059 folio_put(folio); 5060 return ret; 5061 } 5062 5063 static vm_fault_t do_cow_fault(struct vm_fault *vmf) 5064 { 5065 struct vm_area_struct *vma = vmf->vma; 5066 struct folio *folio; 5067 vm_fault_t ret; 5068 5069 ret = vmf_can_call_fault(vmf); 5070 if (!ret) 5071 ret = vmf_anon_prepare(vmf); 5072 if (ret) 5073 return ret; 5074 5075 folio = folio_prealloc(vma->vm_mm, vma, vmf->address, false); 5076 if (!folio) 5077 return VM_FAULT_OOM; 5078 5079 vmf->cow_page = &folio->page; 5080 5081 ret = __do_fault(vmf); 5082 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY))) 5083 goto uncharge_out; 5084 if (ret & VM_FAULT_DONE_COW) 5085 return ret; 5086 5087 copy_user_highpage(vmf->cow_page, vmf->page, vmf->address, vma); 5088 __folio_mark_uptodate(folio); 5089 5090 ret |= finish_fault(vmf); 5091 unlock_page(vmf->page); 5092 put_page(vmf->page); 5093 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY))) 5094 goto uncharge_out; 5095 return ret; 5096 uncharge_out: 5097 folio_put(folio); 5098 return ret; 5099 } 5100 5101 static vm_fault_t do_shared_fault(struct vm_fault *vmf) 5102 { 5103 struct vm_area_struct *vma = vmf->vma; 5104 vm_fault_t ret, tmp; 5105 struct folio *folio; 5106 5107 ret = vmf_can_call_fault(vmf); 5108 if (ret) 5109 return ret; 5110 5111 ret = __do_fault(vmf); 5112 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY))) 5113 return ret; 5114 5115 folio = page_folio(vmf->page); 5116 5117 /* 5118 * Check if the backing address space wants to know that the page is 5119 * about to become writable 5120 */ 5121 if (vma->vm_ops->page_mkwrite) { 5122 folio_unlock(folio); 5123 tmp = do_page_mkwrite(vmf, folio); 5124 if (unlikely(!tmp || 5125 (tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) { 5126 folio_put(folio); 5127 return tmp; 5128 } 5129 } 5130 5131 ret |= finish_fault(vmf); 5132 if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | 5133 VM_FAULT_RETRY))) { 5134 folio_unlock(folio); 5135 folio_put(folio); 5136 return ret; 5137 } 5138 5139 ret |= fault_dirty_shared_page(vmf); 5140 return ret; 5141 } 5142 5143 /* 5144 * We enter with non-exclusive mmap_lock (to exclude vma changes, 5145 * but allow concurrent faults). 5146 * The mmap_lock may have been released depending on flags and our 5147 * return value. See filemap_fault() and __folio_lock_or_retry(). 5148 * If mmap_lock is released, vma may become invalid (for example 5149 * by other thread calling munmap()). 5150 */ 5151 static vm_fault_t do_fault(struct vm_fault *vmf) 5152 { 5153 struct vm_area_struct *vma = vmf->vma; 5154 struct mm_struct *vm_mm = vma->vm_mm; 5155 vm_fault_t ret; 5156 5157 /* 5158 * The VMA was not fully populated on mmap() or missing VM_DONTEXPAND 5159 */ 5160 if (!vma->vm_ops->fault) { 5161 vmf->pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, 5162 vmf->address, &vmf->ptl); 5163 if (unlikely(!vmf->pte)) 5164 ret = VM_FAULT_SIGBUS; 5165 else { 5166 /* 5167 * Make sure this is not a temporary clearing of pte 5168 * by holding ptl and checking again. A R/M/W update 5169 * of pte involves: take ptl, clearing the pte so that 5170 * we don't have concurrent modification by hardware 5171 * followed by an update. 5172 */ 5173 if (unlikely(pte_none(ptep_get(vmf->pte)))) 5174 ret = VM_FAULT_SIGBUS; 5175 else 5176 ret = VM_FAULT_NOPAGE; 5177 5178 pte_unmap_unlock(vmf->pte, vmf->ptl); 5179 } 5180 } else if (!(vmf->flags & FAULT_FLAG_WRITE)) 5181 ret = do_read_fault(vmf); 5182 else if (!(vma->vm_flags & VM_SHARED)) 5183 ret = do_cow_fault(vmf); 5184 else 5185 ret = do_shared_fault(vmf); 5186 5187 /* preallocated pagetable is unused: free it */ 5188 if (vmf->prealloc_pte) { 5189 pte_free(vm_mm, vmf->prealloc_pte); 5190 vmf->prealloc_pte = NULL; 5191 } 5192 return ret; 5193 } 5194 5195 int numa_migrate_prep(struct folio *folio, struct vm_fault *vmf, 5196 unsigned long addr, int page_nid, int *flags) 5197 { 5198 struct vm_area_struct *vma = vmf->vma; 5199 5200 folio_get(folio); 5201 5202 /* Record the current PID acceesing VMA */ 5203 vma_set_access_pid_bit(vma); 5204 5205 count_vm_numa_event(NUMA_HINT_FAULTS); 5206 if (page_nid == numa_node_id()) { 5207 count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL); 5208 *flags |= TNF_FAULT_LOCAL; 5209 } 5210 5211 return mpol_misplaced(folio, vmf, addr); 5212 } 5213 5214 static void numa_rebuild_single_mapping(struct vm_fault *vmf, struct vm_area_struct *vma, 5215 unsigned long fault_addr, pte_t *fault_pte, 5216 bool writable) 5217 { 5218 pte_t pte, old_pte; 5219 5220 old_pte = ptep_modify_prot_start(vma, fault_addr, fault_pte); 5221 pte = pte_modify(old_pte, vma->vm_page_prot); 5222 pte = pte_mkyoung(pte); 5223 if (writable) 5224 pte = pte_mkwrite(pte, vma); 5225 ptep_modify_prot_commit(vma, fault_addr, fault_pte, old_pte, pte); 5226 update_mmu_cache_range(vmf, vma, fault_addr, fault_pte, 1); 5227 } 5228 5229 static void numa_rebuild_large_mapping(struct vm_fault *vmf, struct vm_area_struct *vma, 5230 struct folio *folio, pte_t fault_pte, 5231 bool ignore_writable, bool pte_write_upgrade) 5232 { 5233 int nr = pte_pfn(fault_pte) - folio_pfn(folio); 5234 unsigned long start, end, addr = vmf->address; 5235 unsigned long addr_start = addr - (nr << PAGE_SHIFT); 5236 unsigned long pt_start = ALIGN_DOWN(addr, PMD_SIZE); 5237 pte_t *start_ptep; 5238 5239 /* Stay within the VMA and within the page table. */ 5240 start = max3(addr_start, pt_start, vma->vm_start); 5241 end = min3(addr_start + folio_size(folio), pt_start + PMD_SIZE, 5242 vma->vm_end); 5243 start_ptep = vmf->pte - ((addr - start) >> PAGE_SHIFT); 5244 5245 /* Restore all PTEs' mapping of the large folio */ 5246 for (addr = start; addr != end; start_ptep++, addr += PAGE_SIZE) { 5247 pte_t ptent = ptep_get(start_ptep); 5248 bool writable = false; 5249 5250 if (!pte_present(ptent) || !pte_protnone(ptent)) 5251 continue; 5252 5253 if (pfn_folio(pte_pfn(ptent)) != folio) 5254 continue; 5255 5256 if (!ignore_writable) { 5257 ptent = pte_modify(ptent, vma->vm_page_prot); 5258 writable = pte_write(ptent); 5259 if (!writable && pte_write_upgrade && 5260 can_change_pte_writable(vma, addr, ptent)) 5261 writable = true; 5262 } 5263 5264 numa_rebuild_single_mapping(vmf, vma, addr, start_ptep, writable); 5265 } 5266 } 5267 5268 static vm_fault_t do_numa_page(struct vm_fault *vmf) 5269 { 5270 struct vm_area_struct *vma = vmf->vma; 5271 struct folio *folio = NULL; 5272 int nid = NUMA_NO_NODE; 5273 bool writable = false, ignore_writable = false; 5274 bool pte_write_upgrade = vma_wants_manual_pte_write_upgrade(vma); 5275 int last_cpupid; 5276 int target_nid; 5277 pte_t pte, old_pte; 5278 int flags = 0, nr_pages; 5279 5280 /* 5281 * The pte cannot be used safely until we verify, while holding the page 5282 * table lock, that its contents have not changed during fault handling. 5283 */ 5284 spin_lock(vmf->ptl); 5285 /* Read the live PTE from the page tables: */ 5286 old_pte = ptep_get(vmf->pte); 5287 5288 if (unlikely(!pte_same(old_pte, vmf->orig_pte))) { 5289 pte_unmap_unlock(vmf->pte, vmf->ptl); 5290 goto out; 5291 } 5292 5293 pte = pte_modify(old_pte, vma->vm_page_prot); 5294 5295 /* 5296 * Detect now whether the PTE could be writable; this information 5297 * is only valid while holding the PT lock. 5298 */ 5299 writable = pte_write(pte); 5300 if (!writable && pte_write_upgrade && 5301 can_change_pte_writable(vma, vmf->address, pte)) 5302 writable = true; 5303 5304 folio = vm_normal_folio(vma, vmf->address, pte); 5305 if (!folio || folio_is_zone_device(folio)) 5306 goto out_map; 5307 5308 /* 5309 * Avoid grouping on RO pages in general. RO pages shouldn't hurt as 5310 * much anyway since they can be in shared cache state. This misses 5311 * the case where a mapping is writable but the process never writes 5312 * to it but pte_write gets cleared during protection updates and 5313 * pte_dirty has unpredictable behaviour between PTE scan updates, 5314 * background writeback, dirty balancing and application behaviour. 5315 */ 5316 if (!writable) 5317 flags |= TNF_NO_GROUP; 5318 5319 /* 5320 * Flag if the folio is shared between multiple address spaces. This 5321 * is later used when determining whether to group tasks together 5322 */ 5323 if (folio_likely_mapped_shared(folio) && (vma->vm_flags & VM_SHARED)) 5324 flags |= TNF_SHARED; 5325 5326 nid = folio_nid(folio); 5327 nr_pages = folio_nr_pages(folio); 5328 /* 5329 * For memory tiering mode, cpupid of slow memory page is used 5330 * to record page access time. So use default value. 5331 */ 5332 if ((sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) && 5333 !node_is_toptier(nid)) 5334 last_cpupid = (-1 & LAST_CPUPID_MASK); 5335 else 5336 last_cpupid = folio_last_cpupid(folio); 5337 target_nid = numa_migrate_prep(folio, vmf, vmf->address, nid, &flags); 5338 if (target_nid == NUMA_NO_NODE) { 5339 folio_put(folio); 5340 goto out_map; 5341 } 5342 pte_unmap_unlock(vmf->pte, vmf->ptl); 5343 writable = false; 5344 ignore_writable = true; 5345 5346 /* Migrate to the requested node */ 5347 if (migrate_misplaced_folio(folio, vma, target_nid)) { 5348 nid = target_nid; 5349 flags |= TNF_MIGRATED; 5350 } else { 5351 flags |= TNF_MIGRATE_FAIL; 5352 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, 5353 vmf->address, &vmf->ptl); 5354 if (unlikely(!vmf->pte)) 5355 goto out; 5356 if (unlikely(!pte_same(ptep_get(vmf->pte), vmf->orig_pte))) { 5357 pte_unmap_unlock(vmf->pte, vmf->ptl); 5358 goto out; 5359 } 5360 goto out_map; 5361 } 5362 5363 out: 5364 if (nid != NUMA_NO_NODE) 5365 task_numa_fault(last_cpupid, nid, nr_pages, flags); 5366 return 0; 5367 out_map: 5368 /* 5369 * Make it present again, depending on how arch implements 5370 * non-accessible ptes, some can allow access by kernel mode. 5371 */ 5372 if (folio && folio_test_large(folio)) 5373 numa_rebuild_large_mapping(vmf, vma, folio, pte, ignore_writable, 5374 pte_write_upgrade); 5375 else 5376 numa_rebuild_single_mapping(vmf, vma, vmf->address, vmf->pte, 5377 writable); 5378 pte_unmap_unlock(vmf->pte, vmf->ptl); 5379 goto out; 5380 } 5381 5382 static inline vm_fault_t create_huge_pmd(struct vm_fault *vmf) 5383 { 5384 struct vm_area_struct *vma = vmf->vma; 5385 if (vma_is_anonymous(vma)) 5386 return do_huge_pmd_anonymous_page(vmf); 5387 if (vma->vm_ops->huge_fault) 5388 return vma->vm_ops->huge_fault(vmf, PMD_ORDER); 5389 return VM_FAULT_FALLBACK; 5390 } 5391 5392 /* `inline' is required to avoid gcc 4.1.2 build error */ 5393 static inline vm_fault_t wp_huge_pmd(struct vm_fault *vmf) 5394 { 5395 struct vm_area_struct *vma = vmf->vma; 5396 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE; 5397 vm_fault_t ret; 5398 5399 if (vma_is_anonymous(vma)) { 5400 if (likely(!unshare) && 5401 userfaultfd_huge_pmd_wp(vma, vmf->orig_pmd)) { 5402 if (userfaultfd_wp_async(vmf->vma)) 5403 goto split; 5404 return handle_userfault(vmf, VM_UFFD_WP); 5405 } 5406 return do_huge_pmd_wp_page(vmf); 5407 } 5408 5409 if (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) { 5410 if (vma->vm_ops->huge_fault) { 5411 ret = vma->vm_ops->huge_fault(vmf, PMD_ORDER); 5412 if (!(ret & VM_FAULT_FALLBACK)) 5413 return ret; 5414 } 5415 } 5416 5417 split: 5418 /* COW or write-notify handled on pte level: split pmd. */ 5419 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL); 5420 5421 return VM_FAULT_FALLBACK; 5422 } 5423 5424 static vm_fault_t create_huge_pud(struct vm_fault *vmf) 5425 { 5426 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && \ 5427 defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD) 5428 struct vm_area_struct *vma = vmf->vma; 5429 /* No support for anonymous transparent PUD pages yet */ 5430 if (vma_is_anonymous(vma)) 5431 return VM_FAULT_FALLBACK; 5432 if (vma->vm_ops->huge_fault) 5433 return vma->vm_ops->huge_fault(vmf, PUD_ORDER); 5434 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ 5435 return VM_FAULT_FALLBACK; 5436 } 5437 5438 static vm_fault_t wp_huge_pud(struct vm_fault *vmf, pud_t orig_pud) 5439 { 5440 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && \ 5441 defined(CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD) 5442 struct vm_area_struct *vma = vmf->vma; 5443 vm_fault_t ret; 5444 5445 /* No support for anonymous transparent PUD pages yet */ 5446 if (vma_is_anonymous(vma)) 5447 goto split; 5448 if (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) { 5449 if (vma->vm_ops->huge_fault) { 5450 ret = vma->vm_ops->huge_fault(vmf, PUD_ORDER); 5451 if (!(ret & VM_FAULT_FALLBACK)) 5452 return ret; 5453 } 5454 } 5455 split: 5456 /* COW or write-notify not handled on PUD level: split pud.*/ 5457 __split_huge_pud(vma, vmf->pud, vmf->address); 5458 #endif /* CONFIG_TRANSPARENT_HUGEPAGE && CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */ 5459 return VM_FAULT_FALLBACK; 5460 } 5461 5462 /* 5463 * These routines also need to handle stuff like marking pages dirty 5464 * and/or accessed for architectures that don't do it in hardware (most 5465 * RISC architectures). The early dirtying is also good on the i386. 5466 * 5467 * There is also a hook called "update_mmu_cache()" that architectures 5468 * with external mmu caches can use to update those (ie the Sparc or 5469 * PowerPC hashed page tables that act as extended TLBs). 5470 * 5471 * We enter with non-exclusive mmap_lock (to exclude vma changes, but allow 5472 * concurrent faults). 5473 * 5474 * The mmap_lock may have been released depending on flags and our return value. 5475 * See filemap_fault() and __folio_lock_or_retry(). 5476 */ 5477 static vm_fault_t handle_pte_fault(struct vm_fault *vmf) 5478 { 5479 pte_t entry; 5480 5481 if (unlikely(pmd_none(*vmf->pmd))) { 5482 /* 5483 * Leave __pte_alloc() until later: because vm_ops->fault may 5484 * want to allocate huge page, and if we expose page table 5485 * for an instant, it will be difficult to retract from 5486 * concurrent faults and from rmap lookups. 5487 */ 5488 vmf->pte = NULL; 5489 vmf->flags &= ~FAULT_FLAG_ORIG_PTE_VALID; 5490 } else { 5491 /* 5492 * A regular pmd is established and it can't morph into a huge 5493 * pmd by anon khugepaged, since that takes mmap_lock in write 5494 * mode; but shmem or file collapse to THP could still morph 5495 * it into a huge pmd: just retry later if so. 5496 */ 5497 vmf->pte = pte_offset_map_nolock(vmf->vma->vm_mm, vmf->pmd, 5498 vmf->address, &vmf->ptl); 5499 if (unlikely(!vmf->pte)) 5500 return 0; 5501 vmf->orig_pte = ptep_get_lockless(vmf->pte); 5502 vmf->flags |= FAULT_FLAG_ORIG_PTE_VALID; 5503 5504 if (pte_none(vmf->orig_pte)) { 5505 pte_unmap(vmf->pte); 5506 vmf->pte = NULL; 5507 } 5508 } 5509 5510 if (!vmf->pte) 5511 return do_pte_missing(vmf); 5512 5513 if (!pte_present(vmf->orig_pte)) 5514 return do_swap_page(vmf); 5515 5516 if (pte_protnone(vmf->orig_pte) && vma_is_accessible(vmf->vma)) 5517 return do_numa_page(vmf); 5518 5519 spin_lock(vmf->ptl); 5520 entry = vmf->orig_pte; 5521 if (unlikely(!pte_same(ptep_get(vmf->pte), entry))) { 5522 update_mmu_tlb(vmf->vma, vmf->address, vmf->pte); 5523 goto unlock; 5524 } 5525 if (vmf->flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) { 5526 if (!pte_write(entry)) 5527 return do_wp_page(vmf); 5528 else if (likely(vmf->flags & FAULT_FLAG_WRITE)) 5529 entry = pte_mkdirty(entry); 5530 } 5531 entry = pte_mkyoung(entry); 5532 if (ptep_set_access_flags(vmf->vma, vmf->address, vmf->pte, entry, 5533 vmf->flags & FAULT_FLAG_WRITE)) { 5534 update_mmu_cache_range(vmf, vmf->vma, vmf->address, 5535 vmf->pte, 1); 5536 } else { 5537 /* Skip spurious TLB flush for retried page fault */ 5538 if (vmf->flags & FAULT_FLAG_TRIED) 5539 goto unlock; 5540 /* 5541 * This is needed only for protection faults but the arch code 5542 * is not yet telling us if this is a protection fault or not. 5543 * This still avoids useless tlb flushes for .text page faults 5544 * with threads. 5545 */ 5546 if (vmf->flags & FAULT_FLAG_WRITE) 5547 flush_tlb_fix_spurious_fault(vmf->vma, vmf->address, 5548 vmf->pte); 5549 } 5550 unlock: 5551 pte_unmap_unlock(vmf->pte, vmf->ptl); 5552 return 0; 5553 } 5554 5555 /* 5556 * On entry, we hold either the VMA lock or the mmap_lock 5557 * (FAULT_FLAG_VMA_LOCK tells you which). If VM_FAULT_RETRY is set in 5558 * the result, the mmap_lock is not held on exit. See filemap_fault() 5559 * and __folio_lock_or_retry(). 5560 */ 5561 static vm_fault_t __handle_mm_fault(struct vm_area_struct *vma, 5562 unsigned long address, unsigned int flags) 5563 { 5564 struct vm_fault vmf = { 5565 .vma = vma, 5566 .address = address & PAGE_MASK, 5567 .real_address = address, 5568 .flags = flags, 5569 .pgoff = linear_page_index(vma, address), 5570 .gfp_mask = __get_fault_gfp_mask(vma), 5571 }; 5572 struct mm_struct *mm = vma->vm_mm; 5573 unsigned long vm_flags = vma->vm_flags; 5574 pgd_t *pgd; 5575 p4d_t *p4d; 5576 vm_fault_t ret; 5577 5578 pgd = pgd_offset(mm, address); 5579 p4d = p4d_alloc(mm, pgd, address); 5580 if (!p4d) 5581 return VM_FAULT_OOM; 5582 5583 vmf.pud = pud_alloc(mm, p4d, address); 5584 if (!vmf.pud) 5585 return VM_FAULT_OOM; 5586 retry_pud: 5587 if (pud_none(*vmf.pud) && 5588 thp_vma_allowable_order(vma, vm_flags, 5589 TVA_IN_PF | TVA_ENFORCE_SYSFS, PUD_ORDER)) { 5590 ret = create_huge_pud(&vmf); 5591 if (!(ret & VM_FAULT_FALLBACK)) 5592 return ret; 5593 } else { 5594 pud_t orig_pud = *vmf.pud; 5595 5596 barrier(); 5597 if (pud_trans_huge(orig_pud) || pud_devmap(orig_pud)) { 5598 5599 /* 5600 * TODO once we support anonymous PUDs: NUMA case and 5601 * FAULT_FLAG_UNSHARE handling. 5602 */ 5603 if ((flags & FAULT_FLAG_WRITE) && !pud_write(orig_pud)) { 5604 ret = wp_huge_pud(&vmf, orig_pud); 5605 if (!(ret & VM_FAULT_FALLBACK)) 5606 return ret; 5607 } else { 5608 huge_pud_set_accessed(&vmf, orig_pud); 5609 return 0; 5610 } 5611 } 5612 } 5613 5614 vmf.pmd = pmd_alloc(mm, vmf.pud, address); 5615 if (!vmf.pmd) 5616 return VM_FAULT_OOM; 5617 5618 /* Huge pud page fault raced with pmd_alloc? */ 5619 if (pud_trans_unstable(vmf.pud)) 5620 goto retry_pud; 5621 5622 if (pmd_none(*vmf.pmd) && 5623 thp_vma_allowable_order(vma, vm_flags, 5624 TVA_IN_PF | TVA_ENFORCE_SYSFS, PMD_ORDER)) { 5625 ret = create_huge_pmd(&vmf); 5626 if (!(ret & VM_FAULT_FALLBACK)) 5627 return ret; 5628 } else { 5629 vmf.orig_pmd = pmdp_get_lockless(vmf.pmd); 5630 5631 if (unlikely(is_swap_pmd(vmf.orig_pmd))) { 5632 VM_BUG_ON(thp_migration_supported() && 5633 !is_pmd_migration_entry(vmf.orig_pmd)); 5634 if (is_pmd_migration_entry(vmf.orig_pmd)) 5635 pmd_migration_entry_wait(mm, vmf.pmd); 5636 return 0; 5637 } 5638 if (pmd_trans_huge(vmf.orig_pmd) || pmd_devmap(vmf.orig_pmd)) { 5639 if (pmd_protnone(vmf.orig_pmd) && vma_is_accessible(vma)) 5640 return do_huge_pmd_numa_page(&vmf); 5641 5642 if ((flags & (FAULT_FLAG_WRITE|FAULT_FLAG_UNSHARE)) && 5643 !pmd_write(vmf.orig_pmd)) { 5644 ret = wp_huge_pmd(&vmf); 5645 if (!(ret & VM_FAULT_FALLBACK)) 5646 return ret; 5647 } else { 5648 huge_pmd_set_accessed(&vmf); 5649 return 0; 5650 } 5651 } 5652 } 5653 5654 return handle_pte_fault(&vmf); 5655 } 5656 5657 /** 5658 * mm_account_fault - Do page fault accounting 5659 * @mm: mm from which memcg should be extracted. It can be NULL. 5660 * @regs: the pt_regs struct pointer. When set to NULL, will skip accounting 5661 * of perf event counters, but we'll still do the per-task accounting to 5662 * the task who triggered this page fault. 5663 * @address: the faulted address. 5664 * @flags: the fault flags. 5665 * @ret: the fault retcode. 5666 * 5667 * This will take care of most of the page fault accounting. Meanwhile, it 5668 * will also include the PERF_COUNT_SW_PAGE_FAULTS_[MAJ|MIN] perf counter 5669 * updates. However, note that the handling of PERF_COUNT_SW_PAGE_FAULTS should 5670 * still be in per-arch page fault handlers at the entry of page fault. 5671 */ 5672 static inline void mm_account_fault(struct mm_struct *mm, struct pt_regs *regs, 5673 unsigned long address, unsigned int flags, 5674 vm_fault_t ret) 5675 { 5676 bool major; 5677 5678 /* Incomplete faults will be accounted upon completion. */ 5679 if (ret & VM_FAULT_RETRY) 5680 return; 5681 5682 /* 5683 * To preserve the behavior of older kernels, PGFAULT counters record 5684 * both successful and failed faults, as opposed to perf counters, 5685 * which ignore failed cases. 5686 */ 5687 count_vm_event(PGFAULT); 5688 count_memcg_event_mm(mm, PGFAULT); 5689 5690 /* 5691 * Do not account for unsuccessful faults (e.g. when the address wasn't 5692 * valid). That includes arch_vma_access_permitted() failing before 5693 * reaching here. So this is not a "this many hardware page faults" 5694 * counter. We should use the hw profiling for that. 5695 */ 5696 if (ret & VM_FAULT_ERROR) 5697 return; 5698 5699 /* 5700 * We define the fault as a major fault when the final successful fault 5701 * is VM_FAULT_MAJOR, or if it retried (which implies that we couldn't 5702 * handle it immediately previously). 5703 */ 5704 major = (ret & VM_FAULT_MAJOR) || (flags & FAULT_FLAG_TRIED); 5705 5706 if (major) 5707 current->maj_flt++; 5708 else 5709 current->min_flt++; 5710 5711 /* 5712 * If the fault is done for GUP, regs will be NULL. We only do the 5713 * accounting for the per thread fault counters who triggered the 5714 * fault, and we skip the perf event updates. 5715 */ 5716 if (!regs) 5717 return; 5718 5719 if (major) 5720 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, address); 5721 else 5722 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address); 5723 } 5724 5725 #ifdef CONFIG_LRU_GEN 5726 static void lru_gen_enter_fault(struct vm_area_struct *vma) 5727 { 5728 /* the LRU algorithm only applies to accesses with recency */ 5729 current->in_lru_fault = vma_has_recency(vma); 5730 } 5731 5732 static void lru_gen_exit_fault(void) 5733 { 5734 current->in_lru_fault = false; 5735 } 5736 #else 5737 static void lru_gen_enter_fault(struct vm_area_struct *vma) 5738 { 5739 } 5740 5741 static void lru_gen_exit_fault(void) 5742 { 5743 } 5744 #endif /* CONFIG_LRU_GEN */ 5745 5746 static vm_fault_t sanitize_fault_flags(struct vm_area_struct *vma, 5747 unsigned int *flags) 5748 { 5749 if (unlikely(*flags & FAULT_FLAG_UNSHARE)) { 5750 if (WARN_ON_ONCE(*flags & FAULT_FLAG_WRITE)) 5751 return VM_FAULT_SIGSEGV; 5752 /* 5753 * FAULT_FLAG_UNSHARE only applies to COW mappings. Let's 5754 * just treat it like an ordinary read-fault otherwise. 5755 */ 5756 if (!is_cow_mapping(vma->vm_flags)) 5757 *flags &= ~FAULT_FLAG_UNSHARE; 5758 } else if (*flags & FAULT_FLAG_WRITE) { 5759 /* Write faults on read-only mappings are impossible ... */ 5760 if (WARN_ON_ONCE(!(vma->vm_flags & VM_MAYWRITE))) 5761 return VM_FAULT_SIGSEGV; 5762 /* ... and FOLL_FORCE only applies to COW mappings. */ 5763 if (WARN_ON_ONCE(!(vma->vm_flags & VM_WRITE) && 5764 !is_cow_mapping(vma->vm_flags))) 5765 return VM_FAULT_SIGSEGV; 5766 } 5767 #ifdef CONFIG_PER_VMA_LOCK 5768 /* 5769 * Per-VMA locks can't be used with FAULT_FLAG_RETRY_NOWAIT because of 5770 * the assumption that lock is dropped on VM_FAULT_RETRY. 5771 */ 5772 if (WARN_ON_ONCE((*flags & 5773 (FAULT_FLAG_VMA_LOCK | FAULT_FLAG_RETRY_NOWAIT)) == 5774 (FAULT_FLAG_VMA_LOCK | FAULT_FLAG_RETRY_NOWAIT))) 5775 return VM_FAULT_SIGSEGV; 5776 #endif 5777 5778 return 0; 5779 } 5780 5781 /* 5782 * By the time we get here, we already hold the mm semaphore 5783 * 5784 * The mmap_lock may have been released depending on flags and our 5785 * return value. See filemap_fault() and __folio_lock_or_retry(). 5786 */ 5787 vm_fault_t handle_mm_fault(struct vm_area_struct *vma, unsigned long address, 5788 unsigned int flags, struct pt_regs *regs) 5789 { 5790 /* If the fault handler drops the mmap_lock, vma may be freed */ 5791 struct mm_struct *mm = vma->vm_mm; 5792 vm_fault_t ret; 5793 5794 __set_current_state(TASK_RUNNING); 5795 5796 ret = sanitize_fault_flags(vma, &flags); 5797 if (ret) 5798 goto out; 5799 5800 if (!arch_vma_access_permitted(vma, flags & FAULT_FLAG_WRITE, 5801 flags & FAULT_FLAG_INSTRUCTION, 5802 flags & FAULT_FLAG_REMOTE)) { 5803 ret = VM_FAULT_SIGSEGV; 5804 goto out; 5805 } 5806 5807 /* 5808 * Enable the memcg OOM handling for faults triggered in user 5809 * space. Kernel faults are handled more gracefully. 5810 */ 5811 if (flags & FAULT_FLAG_USER) 5812 mem_cgroup_enter_user_fault(); 5813 5814 lru_gen_enter_fault(vma); 5815 5816 if (unlikely(is_vm_hugetlb_page(vma))) 5817 ret = hugetlb_fault(vma->vm_mm, vma, address, flags); 5818 else 5819 ret = __handle_mm_fault(vma, address, flags); 5820 5821 lru_gen_exit_fault(); 5822 5823 if (flags & FAULT_FLAG_USER) { 5824 mem_cgroup_exit_user_fault(); 5825 /* 5826 * The task may have entered a memcg OOM situation but 5827 * if the allocation error was handled gracefully (no 5828 * VM_FAULT_OOM), there is no need to kill anything. 5829 * Just clean up the OOM state peacefully. 5830 */ 5831 if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM)) 5832 mem_cgroup_oom_synchronize(false); 5833 } 5834 out: 5835 mm_account_fault(mm, regs, address, flags, ret); 5836 5837 return ret; 5838 } 5839 EXPORT_SYMBOL_GPL(handle_mm_fault); 5840 5841 #ifdef CONFIG_LOCK_MM_AND_FIND_VMA 5842 #include <linux/extable.h> 5843 5844 static inline bool get_mmap_lock_carefully(struct mm_struct *mm, struct pt_regs *regs) 5845 { 5846 if (likely(mmap_read_trylock(mm))) 5847 return true; 5848 5849 if (regs && !user_mode(regs)) { 5850 unsigned long ip = exception_ip(regs); 5851 if (!search_exception_tables(ip)) 5852 return false; 5853 } 5854 5855 return !mmap_read_lock_killable(mm); 5856 } 5857 5858 static inline bool mmap_upgrade_trylock(struct mm_struct *mm) 5859 { 5860 /* 5861 * We don't have this operation yet. 5862 * 5863 * It should be easy enough to do: it's basically a 5864 * atomic_long_try_cmpxchg_acquire() 5865 * from RWSEM_READER_BIAS -> RWSEM_WRITER_LOCKED, but 5866 * it also needs the proper lockdep magic etc. 5867 */ 5868 return false; 5869 } 5870 5871 static inline bool upgrade_mmap_lock_carefully(struct mm_struct *mm, struct pt_regs *regs) 5872 { 5873 mmap_read_unlock(mm); 5874 if (regs && !user_mode(regs)) { 5875 unsigned long ip = exception_ip(regs); 5876 if (!search_exception_tables(ip)) 5877 return false; 5878 } 5879 return !mmap_write_lock_killable(mm); 5880 } 5881 5882 /* 5883 * Helper for page fault handling. 5884 * 5885 * This is kind of equivalend to "mmap_read_lock()" followed 5886 * by "find_extend_vma()", except it's a lot more careful about 5887 * the locking (and will drop the lock on failure). 5888 * 5889 * For example, if we have a kernel bug that causes a page 5890 * fault, we don't want to just use mmap_read_lock() to get 5891 * the mm lock, because that would deadlock if the bug were 5892 * to happen while we're holding the mm lock for writing. 5893 * 5894 * So this checks the exception tables on kernel faults in 5895 * order to only do this all for instructions that are actually 5896 * expected to fault. 5897 * 5898 * We can also actually take the mm lock for writing if we 5899 * need to extend the vma, which helps the VM layer a lot. 5900 */ 5901 struct vm_area_struct *lock_mm_and_find_vma(struct mm_struct *mm, 5902 unsigned long addr, struct pt_regs *regs) 5903 { 5904 struct vm_area_struct *vma; 5905 5906 if (!get_mmap_lock_carefully(mm, regs)) 5907 return NULL; 5908 5909 vma = find_vma(mm, addr); 5910 if (likely(vma && (vma->vm_start <= addr))) 5911 return vma; 5912 5913 /* 5914 * Well, dang. We might still be successful, but only 5915 * if we can extend a vma to do so. 5916 */ 5917 if (!vma || !(vma->vm_flags & VM_GROWSDOWN)) { 5918 mmap_read_unlock(mm); 5919 return NULL; 5920 } 5921 5922 /* 5923 * We can try to upgrade the mmap lock atomically, 5924 * in which case we can continue to use the vma 5925 * we already looked up. 5926 * 5927 * Otherwise we'll have to drop the mmap lock and 5928 * re-take it, and also look up the vma again, 5929 * re-checking it. 5930 */ 5931 if (!mmap_upgrade_trylock(mm)) { 5932 if (!upgrade_mmap_lock_carefully(mm, regs)) 5933 return NULL; 5934 5935 vma = find_vma(mm, addr); 5936 if (!vma) 5937 goto fail; 5938 if (vma->vm_start <= addr) 5939 goto success; 5940 if (!(vma->vm_flags & VM_GROWSDOWN)) 5941 goto fail; 5942 } 5943 5944 if (expand_stack_locked(vma, addr)) 5945 goto fail; 5946 5947 success: 5948 mmap_write_downgrade(mm); 5949 return vma; 5950 5951 fail: 5952 mmap_write_unlock(mm); 5953 return NULL; 5954 } 5955 #endif 5956 5957 #ifdef CONFIG_PER_VMA_LOCK 5958 /* 5959 * Lookup and lock a VMA under RCU protection. Returned VMA is guaranteed to be 5960 * stable and not isolated. If the VMA is not found or is being modified the 5961 * function returns NULL. 5962 */ 5963 struct vm_area_struct *lock_vma_under_rcu(struct mm_struct *mm, 5964 unsigned long address) 5965 { 5966 MA_STATE(mas, &mm->mm_mt, address, address); 5967 struct vm_area_struct *vma; 5968 5969 rcu_read_lock(); 5970 retry: 5971 vma = mas_walk(&mas); 5972 if (!vma) 5973 goto inval; 5974 5975 if (!vma_start_read(vma)) 5976 goto inval; 5977 5978 /* Check since vm_start/vm_end might change before we lock the VMA */ 5979 if (unlikely(address < vma->vm_start || address >= vma->vm_end)) 5980 goto inval_end_read; 5981 5982 /* Check if the VMA got isolated after we found it */ 5983 if (vma->detached) { 5984 vma_end_read(vma); 5985 count_vm_vma_lock_event(VMA_LOCK_MISS); 5986 /* The area was replaced with another one */ 5987 goto retry; 5988 } 5989 5990 rcu_read_unlock(); 5991 return vma; 5992 5993 inval_end_read: 5994 vma_end_read(vma); 5995 inval: 5996 rcu_read_unlock(); 5997 count_vm_vma_lock_event(VMA_LOCK_ABORT); 5998 return NULL; 5999 } 6000 #endif /* CONFIG_PER_VMA_LOCK */ 6001 6002 #ifndef __PAGETABLE_P4D_FOLDED 6003 /* 6004 * Allocate p4d page table. 6005 * We've already handled the fast-path in-line. 6006 */ 6007 int __p4d_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address) 6008 { 6009 p4d_t *new = p4d_alloc_one(mm, address); 6010 if (!new) 6011 return -ENOMEM; 6012 6013 spin_lock(&mm->page_table_lock); 6014 if (pgd_present(*pgd)) { /* Another has populated it */ 6015 p4d_free(mm, new); 6016 } else { 6017 smp_wmb(); /* See comment in pmd_install() */ 6018 pgd_populate(mm, pgd, new); 6019 } 6020 spin_unlock(&mm->page_table_lock); 6021 return 0; 6022 } 6023 #endif /* __PAGETABLE_P4D_FOLDED */ 6024 6025 #ifndef __PAGETABLE_PUD_FOLDED 6026 /* 6027 * Allocate page upper directory. 6028 * We've already handled the fast-path in-line. 6029 */ 6030 int __pud_alloc(struct mm_struct *mm, p4d_t *p4d, unsigned long address) 6031 { 6032 pud_t *new = pud_alloc_one(mm, address); 6033 if (!new) 6034 return -ENOMEM; 6035 6036 spin_lock(&mm->page_table_lock); 6037 if (!p4d_present(*p4d)) { 6038 mm_inc_nr_puds(mm); 6039 smp_wmb(); /* See comment in pmd_install() */ 6040 p4d_populate(mm, p4d, new); 6041 } else /* Another has populated it */ 6042 pud_free(mm, new); 6043 spin_unlock(&mm->page_table_lock); 6044 return 0; 6045 } 6046 #endif /* __PAGETABLE_PUD_FOLDED */ 6047 6048 #ifndef __PAGETABLE_PMD_FOLDED 6049 /* 6050 * Allocate page middle directory. 6051 * We've already handled the fast-path in-line. 6052 */ 6053 int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address) 6054 { 6055 spinlock_t *ptl; 6056 pmd_t *new = pmd_alloc_one(mm, address); 6057 if (!new) 6058 return -ENOMEM; 6059 6060 ptl = pud_lock(mm, pud); 6061 if (!pud_present(*pud)) { 6062 mm_inc_nr_pmds(mm); 6063 smp_wmb(); /* See comment in pmd_install() */ 6064 pud_populate(mm, pud, new); 6065 } else { /* Another has populated it */ 6066 pmd_free(mm, new); 6067 } 6068 spin_unlock(ptl); 6069 return 0; 6070 } 6071 #endif /* __PAGETABLE_PMD_FOLDED */ 6072 6073 /** 6074 * follow_pte - look up PTE at a user virtual address 6075 * @vma: the memory mapping 6076 * @address: user virtual address 6077 * @ptepp: location to store found PTE 6078 * @ptlp: location to store the lock for the PTE 6079 * 6080 * On a successful return, the pointer to the PTE is stored in @ptepp; 6081 * the corresponding lock is taken and its location is stored in @ptlp. 6082 * 6083 * The contents of the PTE are only stable until @ptlp is released using 6084 * pte_unmap_unlock(). This function will fail if the PTE is non-present. 6085 * Present PTEs may include PTEs that map refcounted pages, such as 6086 * anonymous folios in COW mappings. 6087 * 6088 * Callers must be careful when relying on PTE content after 6089 * pte_unmap_unlock(). Especially if the PTE maps a refcounted page, 6090 * callers must protect against invalidation with MMU notifiers; otherwise 6091 * access to the PFN at a later point in time can trigger use-after-free. 6092 * 6093 * Only IO mappings and raw PFN mappings are allowed. The mmap semaphore 6094 * should be taken for read. 6095 * 6096 * This function must not be used to modify PTE content. 6097 * 6098 * Return: zero on success, -ve otherwise. 6099 */ 6100 int follow_pte(struct vm_area_struct *vma, unsigned long address, 6101 pte_t **ptepp, spinlock_t **ptlp) 6102 { 6103 struct mm_struct *mm = vma->vm_mm; 6104 pgd_t *pgd; 6105 p4d_t *p4d; 6106 pud_t *pud; 6107 pmd_t *pmd; 6108 pte_t *ptep; 6109 6110 mmap_assert_locked(mm); 6111 if (unlikely(address < vma->vm_start || address >= vma->vm_end)) 6112 goto out; 6113 6114 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP))) 6115 goto out; 6116 6117 pgd = pgd_offset(mm, address); 6118 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd))) 6119 goto out; 6120 6121 p4d = p4d_offset(pgd, address); 6122 if (p4d_none(*p4d) || unlikely(p4d_bad(*p4d))) 6123 goto out; 6124 6125 pud = pud_offset(p4d, address); 6126 if (pud_none(*pud) || unlikely(pud_bad(*pud))) 6127 goto out; 6128 6129 pmd = pmd_offset(pud, address); 6130 VM_BUG_ON(pmd_trans_huge(*pmd)); 6131 6132 ptep = pte_offset_map_lock(mm, pmd, address, ptlp); 6133 if (!ptep) 6134 goto out; 6135 if (!pte_present(ptep_get(ptep))) 6136 goto unlock; 6137 *ptepp = ptep; 6138 return 0; 6139 unlock: 6140 pte_unmap_unlock(ptep, *ptlp); 6141 out: 6142 return -EINVAL; 6143 } 6144 EXPORT_SYMBOL_GPL(follow_pte); 6145 6146 #ifdef CONFIG_HAVE_IOREMAP_PROT 6147 /** 6148 * generic_access_phys - generic implementation for iomem mmap access 6149 * @vma: the vma to access 6150 * @addr: userspace address, not relative offset within @vma 6151 * @buf: buffer to read/write 6152 * @len: length of transfer 6153 * @write: set to FOLL_WRITE when writing, otherwise reading 6154 * 6155 * This is a generic implementation for &vm_operations_struct.access for an 6156 * iomem mapping. This callback is used by access_process_vm() when the @vma is 6157 * not page based. 6158 */ 6159 int generic_access_phys(struct vm_area_struct *vma, unsigned long addr, 6160 void *buf, int len, int write) 6161 { 6162 resource_size_t phys_addr; 6163 unsigned long prot = 0; 6164 void __iomem *maddr; 6165 pte_t *ptep, pte; 6166 spinlock_t *ptl; 6167 int offset = offset_in_page(addr); 6168 int ret = -EINVAL; 6169 6170 retry: 6171 if (follow_pte(vma, addr, &ptep, &ptl)) 6172 return -EINVAL; 6173 pte = ptep_get(ptep); 6174 pte_unmap_unlock(ptep, ptl); 6175 6176 prot = pgprot_val(pte_pgprot(pte)); 6177 phys_addr = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT; 6178 6179 if ((write & FOLL_WRITE) && !pte_write(pte)) 6180 return -EINVAL; 6181 6182 maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot); 6183 if (!maddr) 6184 return -ENOMEM; 6185 6186 if (follow_pte(vma, addr, &ptep, &ptl)) 6187 goto out_unmap; 6188 6189 if (!pte_same(pte, ptep_get(ptep))) { 6190 pte_unmap_unlock(ptep, ptl); 6191 iounmap(maddr); 6192 6193 goto retry; 6194 } 6195 6196 if (write) 6197 memcpy_toio(maddr + offset, buf, len); 6198 else 6199 memcpy_fromio(buf, maddr + offset, len); 6200 ret = len; 6201 pte_unmap_unlock(ptep, ptl); 6202 out_unmap: 6203 iounmap(maddr); 6204 6205 return ret; 6206 } 6207 EXPORT_SYMBOL_GPL(generic_access_phys); 6208 #endif 6209 6210 /* 6211 * Access another process' address space as given in mm. 6212 */ 6213 static int __access_remote_vm(struct mm_struct *mm, unsigned long addr, 6214 void *buf, int len, unsigned int gup_flags) 6215 { 6216 void *old_buf = buf; 6217 int write = gup_flags & FOLL_WRITE; 6218 6219 if (mmap_read_lock_killable(mm)) 6220 return 0; 6221 6222 /* Untag the address before looking up the VMA */ 6223 addr = untagged_addr_remote(mm, addr); 6224 6225 /* Avoid triggering the temporary warning in __get_user_pages */ 6226 if (!vma_lookup(mm, addr) && !expand_stack(mm, addr)) 6227 return 0; 6228 6229 /* ignore errors, just check how much was successfully transferred */ 6230 while (len) { 6231 int bytes, offset; 6232 void *maddr; 6233 struct vm_area_struct *vma = NULL; 6234 struct page *page = get_user_page_vma_remote(mm, addr, 6235 gup_flags, &vma); 6236 6237 if (IS_ERR(page)) { 6238 /* We might need to expand the stack to access it */ 6239 vma = vma_lookup(mm, addr); 6240 if (!vma) { 6241 vma = expand_stack(mm, addr); 6242 6243 /* mmap_lock was dropped on failure */ 6244 if (!vma) 6245 return buf - old_buf; 6246 6247 /* Try again if stack expansion worked */ 6248 continue; 6249 } 6250 6251 /* 6252 * Check if this is a VM_IO | VM_PFNMAP VMA, which 6253 * we can access using slightly different code. 6254 */ 6255 bytes = 0; 6256 #ifdef CONFIG_HAVE_IOREMAP_PROT 6257 if (vma->vm_ops && vma->vm_ops->access) 6258 bytes = vma->vm_ops->access(vma, addr, buf, 6259 len, write); 6260 #endif 6261 if (bytes <= 0) 6262 break; 6263 } else { 6264 bytes = len; 6265 offset = addr & (PAGE_SIZE-1); 6266 if (bytes > PAGE_SIZE-offset) 6267 bytes = PAGE_SIZE-offset; 6268 6269 maddr = kmap_local_page(page); 6270 if (write) { 6271 copy_to_user_page(vma, page, addr, 6272 maddr + offset, buf, bytes); 6273 set_page_dirty_lock(page); 6274 } else { 6275 copy_from_user_page(vma, page, addr, 6276 buf, maddr + offset, bytes); 6277 } 6278 unmap_and_put_page(page, maddr); 6279 } 6280 len -= bytes; 6281 buf += bytes; 6282 addr += bytes; 6283 } 6284 mmap_read_unlock(mm); 6285 6286 return buf - old_buf; 6287 } 6288 6289 /** 6290 * access_remote_vm - access another process' address space 6291 * @mm: the mm_struct of the target address space 6292 * @addr: start address to access 6293 * @buf: source or destination buffer 6294 * @len: number of bytes to transfer 6295 * @gup_flags: flags modifying lookup behaviour 6296 * 6297 * The caller must hold a reference on @mm. 6298 * 6299 * Return: number of bytes copied from source to destination. 6300 */ 6301 int access_remote_vm(struct mm_struct *mm, unsigned long addr, 6302 void *buf, int len, unsigned int gup_flags) 6303 { 6304 return __access_remote_vm(mm, addr, buf, len, gup_flags); 6305 } 6306 6307 /* 6308 * Access another process' address space. 6309 * Source/target buffer must be kernel space, 6310 * Do not walk the page table directly, use get_user_pages 6311 */ 6312 int access_process_vm(struct task_struct *tsk, unsigned long addr, 6313 void *buf, int len, unsigned int gup_flags) 6314 { 6315 struct mm_struct *mm; 6316 int ret; 6317 6318 mm = get_task_mm(tsk); 6319 if (!mm) 6320 return 0; 6321 6322 ret = __access_remote_vm(mm, addr, buf, len, gup_flags); 6323 6324 mmput(mm); 6325 6326 return ret; 6327 } 6328 EXPORT_SYMBOL_GPL(access_process_vm); 6329 6330 /* 6331 * Print the name of a VMA. 6332 */ 6333 void print_vma_addr(char *prefix, unsigned long ip) 6334 { 6335 struct mm_struct *mm = current->mm; 6336 struct vm_area_struct *vma; 6337 6338 /* 6339 * we might be running from an atomic context so we cannot sleep 6340 */ 6341 if (!mmap_read_trylock(mm)) 6342 return; 6343 6344 vma = vma_lookup(mm, ip); 6345 if (vma && vma->vm_file) { 6346 struct file *f = vma->vm_file; 6347 ip -= vma->vm_start; 6348 ip += vma->vm_pgoff << PAGE_SHIFT; 6349 printk("%s%pD[%lx,%lx+%lx]", prefix, f, ip, 6350 vma->vm_start, 6351 vma->vm_end - vma->vm_start); 6352 } 6353 mmap_read_unlock(mm); 6354 } 6355 6356 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP) 6357 void __might_fault(const char *file, int line) 6358 { 6359 if (pagefault_disabled()) 6360 return; 6361 __might_sleep(file, line); 6362 #if defined(CONFIG_DEBUG_ATOMIC_SLEEP) 6363 if (current->mm) 6364 might_lock_read(¤t->mm->mmap_lock); 6365 #endif 6366 } 6367 EXPORT_SYMBOL(__might_fault); 6368 #endif 6369 6370 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS) 6371 /* 6372 * Process all subpages of the specified huge page with the specified 6373 * operation. The target subpage will be processed last to keep its 6374 * cache lines hot. 6375 */ 6376 static inline int process_huge_page( 6377 unsigned long addr_hint, unsigned int pages_per_huge_page, 6378 int (*process_subpage)(unsigned long addr, int idx, void *arg), 6379 void *arg) 6380 { 6381 int i, n, base, l, ret; 6382 unsigned long addr = addr_hint & 6383 ~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1); 6384 6385 /* Process target subpage last to keep its cache lines hot */ 6386 might_sleep(); 6387 n = (addr_hint - addr) / PAGE_SIZE; 6388 if (2 * n <= pages_per_huge_page) { 6389 /* If target subpage in first half of huge page */ 6390 base = 0; 6391 l = n; 6392 /* Process subpages at the end of huge page */ 6393 for (i = pages_per_huge_page - 1; i >= 2 * n; i--) { 6394 cond_resched(); 6395 ret = process_subpage(addr + i * PAGE_SIZE, i, arg); 6396 if (ret) 6397 return ret; 6398 } 6399 } else { 6400 /* If target subpage in second half of huge page */ 6401 base = pages_per_huge_page - 2 * (pages_per_huge_page - n); 6402 l = pages_per_huge_page - n; 6403 /* Process subpages at the begin of huge page */ 6404 for (i = 0; i < base; i++) { 6405 cond_resched(); 6406 ret = process_subpage(addr + i * PAGE_SIZE, i, arg); 6407 if (ret) 6408 return ret; 6409 } 6410 } 6411 /* 6412 * Process remaining subpages in left-right-left-right pattern 6413 * towards the target subpage 6414 */ 6415 for (i = 0; i < l; i++) { 6416 int left_idx = base + i; 6417 int right_idx = base + 2 * l - 1 - i; 6418 6419 cond_resched(); 6420 ret = process_subpage(addr + left_idx * PAGE_SIZE, left_idx, arg); 6421 if (ret) 6422 return ret; 6423 cond_resched(); 6424 ret = process_subpage(addr + right_idx * PAGE_SIZE, right_idx, arg); 6425 if (ret) 6426 return ret; 6427 } 6428 return 0; 6429 } 6430 6431 static void clear_gigantic_page(struct page *page, 6432 unsigned long addr, 6433 unsigned int pages_per_huge_page) 6434 { 6435 int i; 6436 struct page *p; 6437 6438 might_sleep(); 6439 for (i = 0; i < pages_per_huge_page; i++) { 6440 p = nth_page(page, i); 6441 cond_resched(); 6442 clear_user_highpage(p, addr + i * PAGE_SIZE); 6443 } 6444 } 6445 6446 static int clear_subpage(unsigned long addr, int idx, void *arg) 6447 { 6448 struct page *page = arg; 6449 6450 clear_user_highpage(nth_page(page, idx), addr); 6451 return 0; 6452 } 6453 6454 void clear_huge_page(struct page *page, 6455 unsigned long addr_hint, unsigned int pages_per_huge_page) 6456 { 6457 unsigned long addr = addr_hint & 6458 ~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1); 6459 6460 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) { 6461 clear_gigantic_page(page, addr, pages_per_huge_page); 6462 return; 6463 } 6464 6465 process_huge_page(addr_hint, pages_per_huge_page, clear_subpage, page); 6466 } 6467 6468 static int copy_user_gigantic_page(struct folio *dst, struct folio *src, 6469 unsigned long addr, 6470 struct vm_area_struct *vma, 6471 unsigned int pages_per_huge_page) 6472 { 6473 int i; 6474 struct page *dst_page; 6475 struct page *src_page; 6476 6477 for (i = 0; i < pages_per_huge_page; i++) { 6478 dst_page = folio_page(dst, i); 6479 src_page = folio_page(src, i); 6480 6481 cond_resched(); 6482 if (copy_mc_user_highpage(dst_page, src_page, 6483 addr + i*PAGE_SIZE, vma)) { 6484 memory_failure_queue(page_to_pfn(src_page), 0); 6485 return -EHWPOISON; 6486 } 6487 } 6488 return 0; 6489 } 6490 6491 struct copy_subpage_arg { 6492 struct page *dst; 6493 struct page *src; 6494 struct vm_area_struct *vma; 6495 }; 6496 6497 static int copy_subpage(unsigned long addr, int idx, void *arg) 6498 { 6499 struct copy_subpage_arg *copy_arg = arg; 6500 struct page *dst = nth_page(copy_arg->dst, idx); 6501 struct page *src = nth_page(copy_arg->src, idx); 6502 6503 if (copy_mc_user_highpage(dst, src, addr, copy_arg->vma)) { 6504 memory_failure_queue(page_to_pfn(src), 0); 6505 return -EHWPOISON; 6506 } 6507 return 0; 6508 } 6509 6510 int copy_user_large_folio(struct folio *dst, struct folio *src, 6511 unsigned long addr_hint, struct vm_area_struct *vma) 6512 { 6513 unsigned int pages_per_huge_page = folio_nr_pages(dst); 6514 unsigned long addr = addr_hint & 6515 ~(((unsigned long)pages_per_huge_page << PAGE_SHIFT) - 1); 6516 struct copy_subpage_arg arg = { 6517 .dst = &dst->page, 6518 .src = &src->page, 6519 .vma = vma, 6520 }; 6521 6522 if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) 6523 return copy_user_gigantic_page(dst, src, addr, vma, 6524 pages_per_huge_page); 6525 6526 return process_huge_page(addr_hint, pages_per_huge_page, copy_subpage, &arg); 6527 } 6528 6529 long copy_folio_from_user(struct folio *dst_folio, 6530 const void __user *usr_src, 6531 bool allow_pagefault) 6532 { 6533 void *kaddr; 6534 unsigned long i, rc = 0; 6535 unsigned int nr_pages = folio_nr_pages(dst_folio); 6536 unsigned long ret_val = nr_pages * PAGE_SIZE; 6537 struct page *subpage; 6538 6539 for (i = 0; i < nr_pages; i++) { 6540 subpage = folio_page(dst_folio, i); 6541 kaddr = kmap_local_page(subpage); 6542 if (!allow_pagefault) 6543 pagefault_disable(); 6544 rc = copy_from_user(kaddr, usr_src + i * PAGE_SIZE, PAGE_SIZE); 6545 if (!allow_pagefault) 6546 pagefault_enable(); 6547 kunmap_local(kaddr); 6548 6549 ret_val -= (PAGE_SIZE - rc); 6550 if (rc) 6551 break; 6552 6553 flush_dcache_page(subpage); 6554 6555 cond_resched(); 6556 } 6557 return ret_val; 6558 } 6559 #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */ 6560 6561 #if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS 6562 6563 static struct kmem_cache *page_ptl_cachep; 6564 6565 void __init ptlock_cache_init(void) 6566 { 6567 page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0, 6568 SLAB_PANIC, NULL); 6569 } 6570 6571 bool ptlock_alloc(struct ptdesc *ptdesc) 6572 { 6573 spinlock_t *ptl; 6574 6575 ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL); 6576 if (!ptl) 6577 return false; 6578 ptdesc->ptl = ptl; 6579 return true; 6580 } 6581 6582 void ptlock_free(struct ptdesc *ptdesc) 6583 { 6584 kmem_cache_free(page_ptl_cachep, ptdesc->ptl); 6585 } 6586 #endif 6587 6588 void vma_pgtable_walk_begin(struct vm_area_struct *vma) 6589 { 6590 if (is_vm_hugetlb_page(vma)) 6591 hugetlb_vma_lock_read(vma); 6592 } 6593 6594 void vma_pgtable_walk_end(struct vm_area_struct *vma) 6595 { 6596 if (is_vm_hugetlb_page(vma)) 6597 hugetlb_vma_unlock_read(vma); 6598 } 6599