1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2015 Red Hat, Inc.
9 #include <linux/sched/signal.h>
10 #include <linux/pagemap.h>
11 #include <linux/rmap.h>
12 #include <linux/swap.h>
13 #include <linux/swapops.h>
14 #include <linux/userfaultfd_k.h>
15 #include <linux/mmu_notifier.h>
16 #include <linux/hugetlb.h>
17 #include <linux/shmem_fs.h>
18 #include <asm/tlbflush.h>
21 static __always_inline
22 struct vm_area_struct *find_dst_vma(struct mm_struct *dst_mm,
23 unsigned long dst_start,
27 * Make sure that the dst range is both valid and fully within a
28 * single existing vma.
30 struct vm_area_struct *dst_vma;
32 dst_vma = find_vma(dst_mm, dst_start);
36 if (dst_start < dst_vma->vm_start ||
37 dst_start + len > dst_vma->vm_end)
41 * Check the vma is registered in uffd, this is required to
42 * enforce the VM_MAYWRITE check done at uffd registration
45 if (!dst_vma->vm_userfaultfd_ctx.ctx)
52 * Install PTEs, to map dst_addr (within dst_vma) to page.
54 * This function handles both MCOPY_ATOMIC_NORMAL and _CONTINUE for both shmem
55 * and anon, and for both shared and private VMAs.
57 int mfill_atomic_install_pte(struct mm_struct *dst_mm, pmd_t *dst_pmd,
58 struct vm_area_struct *dst_vma,
59 unsigned long dst_addr, struct page *page,
60 bool newly_allocated, bool wp_copy)
63 pte_t _dst_pte, *dst_pte;
64 bool writable = dst_vma->vm_flags & VM_WRITE;
65 bool vm_shared = dst_vma->vm_flags & VM_SHARED;
66 bool page_in_cache = page->mapping;
69 pgoff_t offset, max_off;
71 _dst_pte = mk_pte(page, dst_vma->vm_page_prot);
72 _dst_pte = pte_mkdirty(_dst_pte);
73 if (page_in_cache && !vm_shared)
77 _dst_pte = pte_mkuffd_wp(_dst_pte);
79 _dst_pte = pte_mkwrite(_dst_pte);
82 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
84 if (vma_is_shmem(dst_vma)) {
85 /* serialize against truncate with the page table lock */
86 inode = dst_vma->vm_file->f_inode;
87 offset = linear_page_index(dst_vma, dst_addr);
88 max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
90 if (unlikely(offset >= max_off))
95 if (!pte_none(*dst_pte))
99 page_add_file_rmap(page, false);
101 page_add_new_anon_rmap(page, dst_vma, dst_addr, false);
104 * Must happen after rmap, as mm_counter() checks mapping (via
105 * PageAnon()), which is set by __page_set_anon_rmap().
107 inc_mm_counter(dst_mm, mm_counter(page));
110 lru_cache_add_inactive_or_unevictable(page, dst_vma);
112 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
114 /* No need to invalidate - it was non-present before */
115 update_mmu_cache(dst_vma, dst_addr, dst_pte);
118 pte_unmap_unlock(dst_pte, ptl);
122 static int mcopy_atomic_pte(struct mm_struct *dst_mm,
124 struct vm_area_struct *dst_vma,
125 unsigned long dst_addr,
126 unsigned long src_addr,
136 page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, dst_vma, dst_addr);
140 page_kaddr = kmap_atomic(page);
141 ret = copy_from_user(page_kaddr,
142 (const void __user *) src_addr,
144 kunmap_atomic(page_kaddr);
146 /* fallback to copy_from_user outside mmap_lock */
150 /* don't free the page */
159 * The memory barrier inside __SetPageUptodate makes sure that
160 * preceding stores to the page contents become visible before
161 * the set_pte_at() write.
163 __SetPageUptodate(page);
166 if (mem_cgroup_charge(page_folio(page), dst_mm, GFP_KERNEL))
169 ret = mfill_atomic_install_pte(dst_mm, dst_pmd, dst_vma, dst_addr,
170 page, true, wp_copy);
180 static int mfill_zeropage_pte(struct mm_struct *dst_mm,
182 struct vm_area_struct *dst_vma,
183 unsigned long dst_addr)
185 pte_t _dst_pte, *dst_pte;
188 pgoff_t offset, max_off;
191 _dst_pte = pte_mkspecial(pfn_pte(my_zero_pfn(dst_addr),
192 dst_vma->vm_page_prot));
193 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
194 if (dst_vma->vm_file) {
195 /* the shmem MAP_PRIVATE case requires checking the i_size */
196 inode = dst_vma->vm_file->f_inode;
197 offset = linear_page_index(dst_vma, dst_addr);
198 max_off = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
200 if (unlikely(offset >= max_off))
204 if (!pte_none(*dst_pte))
206 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
207 /* No need to invalidate - it was non-present before */
208 update_mmu_cache(dst_vma, dst_addr, dst_pte);
211 pte_unmap_unlock(dst_pte, ptl);
215 /* Handles UFFDIO_CONTINUE for all shmem VMAs (shared or private). */
216 static int mcontinue_atomic_pte(struct mm_struct *dst_mm,
218 struct vm_area_struct *dst_vma,
219 unsigned long dst_addr,
222 struct inode *inode = file_inode(dst_vma->vm_file);
223 pgoff_t pgoff = linear_page_index(dst_vma, dst_addr);
227 ret = shmem_getpage(inode, pgoff, &page, SGP_READ);
235 ret = mfill_atomic_install_pte(dst_mm, dst_pmd, dst_vma, dst_addr,
236 page, false, wp_copy);
250 static pmd_t *mm_alloc_pmd(struct mm_struct *mm, unsigned long address)
256 pgd = pgd_offset(mm, address);
257 p4d = p4d_alloc(mm, pgd, address);
260 pud = pud_alloc(mm, p4d, address);
264 * Note that we didn't run this because the pmd was
265 * missing, the *pmd may be already established and in
266 * turn it may also be a trans_huge_pmd.
268 return pmd_alloc(mm, pud, address);
271 #ifdef CONFIG_HUGETLB_PAGE
273 * __mcopy_atomic processing for HUGETLB vmas. Note that this routine is
274 * called with mmap_lock held, it will release mmap_lock before returning.
276 static __always_inline ssize_t __mcopy_atomic_hugetlb(struct mm_struct *dst_mm,
277 struct vm_area_struct *dst_vma,
278 unsigned long dst_start,
279 unsigned long src_start,
281 enum mcopy_atomic_mode mode)
283 int vm_shared = dst_vma->vm_flags & VM_SHARED;
286 unsigned long src_addr, dst_addr;
289 unsigned long vma_hpagesize;
292 struct address_space *mapping;
295 * There is no default zero huge page for all huge page sizes as
296 * supported by hugetlb. A PMD_SIZE huge pages may exist as used
297 * by THP. Since we can not reliably insert a zero page, this
298 * feature is not supported.
300 if (mode == MCOPY_ATOMIC_ZEROPAGE) {
301 mmap_read_unlock(dst_mm);
305 src_addr = src_start;
306 dst_addr = dst_start;
309 vma_hpagesize = vma_kernel_pagesize(dst_vma);
312 * Validate alignment based on huge page size
315 if (dst_start & (vma_hpagesize - 1) || len & (vma_hpagesize - 1))
320 * On routine entry dst_vma is set. If we had to drop mmap_lock and
321 * retry, dst_vma will be set to NULL and we must lookup again.
325 dst_vma = find_dst_vma(dst_mm, dst_start, len);
326 if (!dst_vma || !is_vm_hugetlb_page(dst_vma))
330 if (vma_hpagesize != vma_kernel_pagesize(dst_vma))
333 vm_shared = dst_vma->vm_flags & VM_SHARED;
337 * If not shared, ensure the dst_vma has a anon_vma.
341 if (unlikely(anon_vma_prepare(dst_vma)))
345 while (src_addr < src_start + len) {
346 BUG_ON(dst_addr >= dst_start + len);
349 * Serialize via i_mmap_rwsem and hugetlb_fault_mutex.
350 * i_mmap_rwsem ensures the dst_pte remains valid even
351 * in the case of shared pmds. fault mutex prevents
352 * races with other faulting threads.
354 mapping = dst_vma->vm_file->f_mapping;
355 i_mmap_lock_read(mapping);
356 idx = linear_page_index(dst_vma, dst_addr);
357 hash = hugetlb_fault_mutex_hash(mapping, idx);
358 mutex_lock(&hugetlb_fault_mutex_table[hash]);
361 dst_pte = huge_pte_alloc(dst_mm, dst_vma, dst_addr, vma_hpagesize);
363 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
364 i_mmap_unlock_read(mapping);
368 if (mode != MCOPY_ATOMIC_CONTINUE &&
369 !huge_pte_none(huge_ptep_get(dst_pte))) {
371 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
372 i_mmap_unlock_read(mapping);
376 err = hugetlb_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma,
377 dst_addr, src_addr, mode, &page);
379 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
380 i_mmap_unlock_read(mapping);
384 if (unlikely(err == -ENOENT)) {
385 mmap_read_unlock(dst_mm);
388 err = copy_huge_page_from_user(page,
389 (const void __user *)src_addr,
390 vma_hpagesize / PAGE_SIZE,
396 mmap_read_lock(dst_mm);
404 dst_addr += vma_hpagesize;
405 src_addr += vma_hpagesize;
406 copied += vma_hpagesize;
408 if (fatal_signal_pending(current))
416 mmap_read_unlock(dst_mm);
422 BUG_ON(!copied && !err);
423 return copied ? copied : err;
425 #else /* !CONFIG_HUGETLB_PAGE */
426 /* fail at build time if gcc attempts to use this */
427 extern ssize_t __mcopy_atomic_hugetlb(struct mm_struct *dst_mm,
428 struct vm_area_struct *dst_vma,
429 unsigned long dst_start,
430 unsigned long src_start,
432 enum mcopy_atomic_mode mode);
433 #endif /* CONFIG_HUGETLB_PAGE */
435 static __always_inline ssize_t mfill_atomic_pte(struct mm_struct *dst_mm,
437 struct vm_area_struct *dst_vma,
438 unsigned long dst_addr,
439 unsigned long src_addr,
441 enum mcopy_atomic_mode mode,
446 if (mode == MCOPY_ATOMIC_CONTINUE) {
447 return mcontinue_atomic_pte(dst_mm, dst_pmd, dst_vma, dst_addr,
452 * The normal page fault path for a shmem will invoke the
453 * fault, fill the hole in the file and COW it right away. The
454 * result generates plain anonymous memory. So when we are
455 * asked to fill an hole in a MAP_PRIVATE shmem mapping, we'll
456 * generate anonymous memory directly without actually filling
457 * the hole. For the MAP_PRIVATE case the robustness check
458 * only happens in the pagetable (to verify it's still none)
459 * and not in the radix tree.
461 if (!(dst_vma->vm_flags & VM_SHARED)) {
462 if (mode == MCOPY_ATOMIC_NORMAL)
463 err = mcopy_atomic_pte(dst_mm, dst_pmd, dst_vma,
464 dst_addr, src_addr, page,
467 err = mfill_zeropage_pte(dst_mm, dst_pmd,
470 VM_WARN_ON_ONCE(wp_copy);
471 err = shmem_mfill_atomic_pte(dst_mm, dst_pmd, dst_vma,
473 mode != MCOPY_ATOMIC_NORMAL,
480 static __always_inline ssize_t __mcopy_atomic(struct mm_struct *dst_mm,
481 unsigned long dst_start,
482 unsigned long src_start,
484 enum mcopy_atomic_mode mcopy_mode,
485 atomic_t *mmap_changing,
488 struct vm_area_struct *dst_vma;
491 unsigned long src_addr, dst_addr;
497 * Sanitize the command parameters:
499 BUG_ON(dst_start & ~PAGE_MASK);
500 BUG_ON(len & ~PAGE_MASK);
502 /* Does the address range wrap, or is the span zero-sized? */
503 BUG_ON(src_start + len <= src_start);
504 BUG_ON(dst_start + len <= dst_start);
506 src_addr = src_start;
507 dst_addr = dst_start;
511 mmap_read_lock(dst_mm);
514 * If memory mappings are changing because of non-cooperative
515 * operation (e.g. mremap) running in parallel, bail out and
516 * request the user to retry later
519 if (mmap_changing && atomic_read(mmap_changing))
523 * Make sure the vma is not shared, that the dst range is
524 * both valid and fully within a single existing vma.
527 dst_vma = find_dst_vma(dst_mm, dst_start, len);
533 * shmem_zero_setup is invoked in mmap for MAP_ANONYMOUS|MAP_SHARED but
534 * it will overwrite vm_ops, so vma_is_anonymous must return false.
536 if (WARN_ON_ONCE(vma_is_anonymous(dst_vma) &&
537 dst_vma->vm_flags & VM_SHARED))
541 * validate 'mode' now that we know the dst_vma: don't allow
542 * a wrprotect copy if the userfaultfd didn't register as WP.
544 wp_copy = mode & UFFDIO_COPY_MODE_WP;
545 if (wp_copy && !(dst_vma->vm_flags & VM_UFFD_WP))
549 * If this is a HUGETLB vma, pass off to appropriate routine
551 if (is_vm_hugetlb_page(dst_vma))
552 return __mcopy_atomic_hugetlb(dst_mm, dst_vma, dst_start,
553 src_start, len, mcopy_mode);
555 if (!vma_is_anonymous(dst_vma) && !vma_is_shmem(dst_vma))
557 if (!vma_is_shmem(dst_vma) && mcopy_mode == MCOPY_ATOMIC_CONTINUE)
561 * Ensure the dst_vma has a anon_vma or this page
562 * would get a NULL anon_vma when moved in the
566 if (!(dst_vma->vm_flags & VM_SHARED) &&
567 unlikely(anon_vma_prepare(dst_vma)))
570 while (src_addr < src_start + len) {
573 BUG_ON(dst_addr >= dst_start + len);
575 dst_pmd = mm_alloc_pmd(dst_mm, dst_addr);
576 if (unlikely(!dst_pmd)) {
581 dst_pmdval = pmd_read_atomic(dst_pmd);
583 * If the dst_pmd is mapped as THP don't
584 * override it and just be strict.
586 if (unlikely(pmd_trans_huge(dst_pmdval))) {
590 if (unlikely(pmd_none(dst_pmdval)) &&
591 unlikely(__pte_alloc(dst_mm, dst_pmd))) {
595 /* If an huge pmd materialized from under us fail */
596 if (unlikely(pmd_trans_huge(*dst_pmd))) {
601 BUG_ON(pmd_none(*dst_pmd));
602 BUG_ON(pmd_trans_huge(*dst_pmd));
604 err = mfill_atomic_pte(dst_mm, dst_pmd, dst_vma, dst_addr,
605 src_addr, &page, mcopy_mode, wp_copy);
608 if (unlikely(err == -ENOENT)) {
611 mmap_read_unlock(dst_mm);
614 page_kaddr = kmap(page);
615 err = copy_from_user(page_kaddr,
616 (const void __user *) src_addr,
628 dst_addr += PAGE_SIZE;
629 src_addr += PAGE_SIZE;
632 if (fatal_signal_pending(current))
640 mmap_read_unlock(dst_mm);
646 BUG_ON(!copied && !err);
647 return copied ? copied : err;
650 ssize_t mcopy_atomic(struct mm_struct *dst_mm, unsigned long dst_start,
651 unsigned long src_start, unsigned long len,
652 atomic_t *mmap_changing, __u64 mode)
654 return __mcopy_atomic(dst_mm, dst_start, src_start, len,
655 MCOPY_ATOMIC_NORMAL, mmap_changing, mode);
658 ssize_t mfill_zeropage(struct mm_struct *dst_mm, unsigned long start,
659 unsigned long len, atomic_t *mmap_changing)
661 return __mcopy_atomic(dst_mm, start, 0, len, MCOPY_ATOMIC_ZEROPAGE,
665 ssize_t mcopy_continue(struct mm_struct *dst_mm, unsigned long start,
666 unsigned long len, atomic_t *mmap_changing)
668 return __mcopy_atomic(dst_mm, start, 0, len, MCOPY_ATOMIC_CONTINUE,
672 int mwriteprotect_range(struct mm_struct *dst_mm, unsigned long start,
673 unsigned long len, bool enable_wp,
674 atomic_t *mmap_changing)
676 struct vm_area_struct *dst_vma;
681 * Sanitize the command parameters:
683 BUG_ON(start & ~PAGE_MASK);
684 BUG_ON(len & ~PAGE_MASK);
686 /* Does the address range wrap, or is the span zero-sized? */
687 BUG_ON(start + len <= start);
689 mmap_read_lock(dst_mm);
692 * If memory mappings are changing because of non-cooperative
693 * operation (e.g. mremap) running in parallel, bail out and
694 * request the user to retry later
697 if (mmap_changing && atomic_read(mmap_changing))
701 dst_vma = find_dst_vma(dst_mm, start, len);
703 * Make sure the vma is not shared, that the dst range is
704 * both valid and fully within a single existing vma.
706 if (!dst_vma || (dst_vma->vm_flags & VM_SHARED))
708 if (!userfaultfd_wp(dst_vma))
710 if (!vma_is_anonymous(dst_vma))
714 newprot = vm_get_page_prot(dst_vma->vm_flags & ~(VM_WRITE));
716 newprot = vm_get_page_prot(dst_vma->vm_flags);
718 change_protection(dst_vma, start, start + len, newprot,
719 enable_wp ? MM_CP_UFFD_WP : MM_CP_UFFD_WP_RESOLVE);
723 mmap_read_unlock(dst_mm);