4 * Copyright (C) 2015 Red Hat, Inc.
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
11 #include <linux/sched/signal.h>
12 #include <linux/pagemap.h>
13 #include <linux/rmap.h>
14 #include <linux/swap.h>
15 #include <linux/swapops.h>
16 #include <linux/userfaultfd_k.h>
17 #include <linux/mmu_notifier.h>
18 #include <linux/hugetlb.h>
19 #include <linux/pagemap.h>
20 #include <linux/shmem_fs.h>
21 #include <asm/tlbflush.h>
24 static int mcopy_atomic_pte(struct mm_struct
*dst_mm
,
26 struct vm_area_struct
*dst_vma
,
27 unsigned long dst_addr
,
28 unsigned long src_addr
,
31 struct mem_cgroup
*memcg
;
32 pte_t _dst_pte
, *dst_pte
;
40 page
= alloc_page_vma(GFP_HIGHUSER_MOVABLE
, dst_vma
, dst_addr
);
44 page_kaddr
= kmap_atomic(page
);
45 ret
= copy_from_user(page_kaddr
,
46 (const void __user
*) src_addr
,
48 kunmap_atomic(page_kaddr
);
50 /* fallback to copy_from_user outside mmap_sem */
54 /* don't free the page */
63 * The memory barrier inside __SetPageUptodate makes sure that
64 * preceeding stores to the page contents become visible before
65 * the set_pte_at() write.
67 __SetPageUptodate(page
);
70 if (mem_cgroup_try_charge(page
, dst_mm
, GFP_KERNEL
, &memcg
, false))
73 _dst_pte
= mk_pte(page
, dst_vma
->vm_page_prot
);
74 if (dst_vma
->vm_flags
& VM_WRITE
)
75 _dst_pte
= pte_mkwrite(pte_mkdirty(_dst_pte
));
78 dst_pte
= pte_offset_map_lock(dst_mm
, dst_pmd
, dst_addr
, &ptl
);
79 if (!pte_none(*dst_pte
))
80 goto out_release_uncharge_unlock
;
82 inc_mm_counter(dst_mm
, MM_ANONPAGES
);
83 page_add_new_anon_rmap(page
, dst_vma
, dst_addr
, false);
84 mem_cgroup_commit_charge(page
, memcg
, false, false);
85 lru_cache_add_active_or_unevictable(page
, dst_vma
);
87 set_pte_at(dst_mm
, dst_addr
, dst_pte
, _dst_pte
);
89 /* No need to invalidate - it was non-present before */
90 update_mmu_cache(dst_vma
, dst_addr
, dst_pte
);
92 pte_unmap_unlock(dst_pte
, ptl
);
96 out_release_uncharge_unlock
:
97 pte_unmap_unlock(dst_pte
, ptl
);
98 mem_cgroup_cancel_charge(page
, memcg
, false);
104 static int mfill_zeropage_pte(struct mm_struct
*dst_mm
,
106 struct vm_area_struct
*dst_vma
,
107 unsigned long dst_addr
)
109 pte_t _dst_pte
, *dst_pte
;
113 _dst_pte
= pte_mkspecial(pfn_pte(my_zero_pfn(dst_addr
),
114 dst_vma
->vm_page_prot
));
116 dst_pte
= pte_offset_map_lock(dst_mm
, dst_pmd
, dst_addr
, &ptl
);
117 if (!pte_none(*dst_pte
))
119 set_pte_at(dst_mm
, dst_addr
, dst_pte
, _dst_pte
);
120 /* No need to invalidate - it was non-present before */
121 update_mmu_cache(dst_vma
, dst_addr
, dst_pte
);
124 pte_unmap_unlock(dst_pte
, ptl
);
128 static pmd_t
*mm_alloc_pmd(struct mm_struct
*mm
, unsigned long address
)
134 pgd
= pgd_offset(mm
, address
);
135 p4d
= p4d_alloc(mm
, pgd
, address
);
138 pud
= pud_alloc(mm
, p4d
, address
);
142 * Note that we didn't run this because the pmd was
143 * missing, the *pmd may be already established and in
144 * turn it may also be a trans_huge_pmd.
146 return pmd_alloc(mm
, pud
, address
);
149 #ifdef CONFIG_HUGETLB_PAGE
151 * __mcopy_atomic processing for HUGETLB vmas. Note that this routine is
152 * called with mmap_sem held, it will release mmap_sem before returning.
154 static __always_inline ssize_t
__mcopy_atomic_hugetlb(struct mm_struct
*dst_mm
,
155 struct vm_area_struct
*dst_vma
,
156 unsigned long dst_start
,
157 unsigned long src_start
,
161 int vm_alloc_shared
= dst_vma
->vm_flags
& VM_SHARED
;
162 int vm_shared
= dst_vma
->vm_flags
& VM_SHARED
;
165 unsigned long src_addr
, dst_addr
;
169 unsigned long vma_hpagesize
;
172 struct address_space
*mapping
;
175 * There is no default zero huge page for all huge page sizes as
176 * supported by hugetlb. A PMD_SIZE huge pages may exist as used
177 * by THP. Since we can not reliably insert a zero page, this
178 * feature is not supported.
181 up_read(&dst_mm
->mmap_sem
);
185 src_addr
= src_start
;
186 dst_addr
= dst_start
;
189 vma_hpagesize
= vma_kernel_pagesize(dst_vma
);
192 * Validate alignment based on huge page size
195 if (dst_start
& (vma_hpagesize
- 1) || len
& (vma_hpagesize
- 1))
200 * On routine entry dst_vma is set. If we had to drop mmap_sem and
201 * retry, dst_vma will be set to NULL and we must lookup again.
205 dst_vma
= find_vma(dst_mm
, dst_start
);
206 if (!dst_vma
|| !is_vm_hugetlb_page(dst_vma
))
209 * Only allow __mcopy_atomic_hugetlb on userfaultfd
212 if (!dst_vma
->vm_userfaultfd_ctx
.ctx
)
215 if (dst_start
< dst_vma
->vm_start
||
216 dst_start
+ len
> dst_vma
->vm_end
)
220 if (vma_hpagesize
!= vma_kernel_pagesize(dst_vma
))
223 vm_shared
= dst_vma
->vm_flags
& VM_SHARED
;
226 if (WARN_ON(dst_addr
& (vma_hpagesize
- 1) ||
227 (len
- copied
) & (vma_hpagesize
- 1)))
231 * If not shared, ensure the dst_vma has a anon_vma.
235 if (unlikely(anon_vma_prepare(dst_vma
)))
239 h
= hstate_vma(dst_vma
);
241 while (src_addr
< src_start
+ len
) {
244 BUG_ON(dst_addr
>= dst_start
+ len
);
245 VM_BUG_ON(dst_addr
& ~huge_page_mask(h
));
248 * Serialize via hugetlb_fault_mutex
250 idx
= linear_page_index(dst_vma
, dst_addr
);
251 mapping
= dst_vma
->vm_file
->f_mapping
;
252 hash
= hugetlb_fault_mutex_hash(h
, dst_mm
, dst_vma
, mapping
,
254 mutex_lock(&hugetlb_fault_mutex_table
[hash
]);
257 dst_pte
= huge_pte_alloc(dst_mm
, dst_addr
, huge_page_size(h
));
259 mutex_unlock(&hugetlb_fault_mutex_table
[hash
]);
264 dst_pteval
= huge_ptep_get(dst_pte
);
265 if (!huge_pte_none(dst_pteval
)) {
266 mutex_unlock(&hugetlb_fault_mutex_table
[hash
]);
270 err
= hugetlb_mcopy_atomic_pte(dst_mm
, dst_pte
, dst_vma
,
271 dst_addr
, src_addr
, &page
);
273 mutex_unlock(&hugetlb_fault_mutex_table
[hash
]);
274 vm_alloc_shared
= vm_shared
;
278 if (unlikely(err
== -EFAULT
)) {
279 up_read(&dst_mm
->mmap_sem
);
282 err
= copy_huge_page_from_user(page
,
283 (const void __user
*)src_addr
,
284 pages_per_huge_page(h
), true);
289 down_read(&dst_mm
->mmap_sem
);
297 dst_addr
+= vma_hpagesize
;
298 src_addr
+= vma_hpagesize
;
299 copied
+= vma_hpagesize
;
301 if (fatal_signal_pending(current
))
309 up_read(&dst_mm
->mmap_sem
);
313 * We encountered an error and are about to free a newly
314 * allocated huge page.
316 * Reservation handling is very subtle, and is different for
317 * private and shared mappings. See the routine
318 * restore_reserve_on_error for details. Unfortunately, we
319 * can not call restore_reserve_on_error now as it would
320 * require holding mmap_sem.
322 * If a reservation for the page existed in the reservation
323 * map of a private mapping, the map was modified to indicate
324 * the reservation was consumed when the page was allocated.
325 * We clear the PagePrivate flag now so that the global
326 * reserve count will not be incremented in free_huge_page.
327 * The reservation map will still indicate the reservation
328 * was consumed and possibly prevent later page allocation.
329 * This is better than leaking a global reservation. If no
330 * reservation existed, it is still safe to clear PagePrivate
331 * as no adjustments to reservation counts were made during
334 * The reservation map for shared mappings indicates which
335 * pages have reservations. When a huge page is allocated
336 * for an address with a reservation, no change is made to
337 * the reserve map. In this case PagePrivate will be set
338 * to indicate that the global reservation count should be
339 * incremented when the page is freed. This is the desired
340 * behavior. However, when a huge page is allocated for an
341 * address without a reservation a reservation entry is added
342 * to the reservation map, and PagePrivate will not be set.
343 * When the page is freed, the global reserve count will NOT
344 * be incremented and it will appear as though we have leaked
345 * reserved page. In this case, set PagePrivate so that the
346 * global reserve count will be incremented to match the
347 * reservation map entry which was created.
349 * Note that vm_alloc_shared is based on the flags of the vma
350 * for which the page was originally allocated. dst_vma could
351 * be different or NULL on error.
354 SetPagePrivate(page
);
356 ClearPagePrivate(page
);
361 BUG_ON(!copied
&& !err
);
362 return copied
? copied
: err
;
364 #else /* !CONFIG_HUGETLB_PAGE */
365 /* fail at build time if gcc attempts to use this */
366 extern ssize_t
__mcopy_atomic_hugetlb(struct mm_struct
*dst_mm
,
367 struct vm_area_struct
*dst_vma
,
368 unsigned long dst_start
,
369 unsigned long src_start
,
372 #endif /* CONFIG_HUGETLB_PAGE */
374 static __always_inline ssize_t
mfill_atomic_pte(struct mm_struct
*dst_mm
,
376 struct vm_area_struct
*dst_vma
,
377 unsigned long dst_addr
,
378 unsigned long src_addr
,
384 if (vma_is_anonymous(dst_vma
)) {
386 err
= mcopy_atomic_pte(dst_mm
, dst_pmd
, dst_vma
,
387 dst_addr
, src_addr
, page
);
389 err
= mfill_zeropage_pte(dst_mm
, dst_pmd
,
393 err
= shmem_mcopy_atomic_pte(dst_mm
, dst_pmd
,
397 err
= shmem_mfill_zeropage_pte(dst_mm
, dst_pmd
,
404 static __always_inline ssize_t
__mcopy_atomic(struct mm_struct
*dst_mm
,
405 unsigned long dst_start
,
406 unsigned long src_start
,
410 struct vm_area_struct
*dst_vma
;
413 unsigned long src_addr
, dst_addr
;
418 * Sanitize the command parameters:
420 BUG_ON(dst_start
& ~PAGE_MASK
);
421 BUG_ON(len
& ~PAGE_MASK
);
423 /* Does the address range wrap, or is the span zero-sized? */
424 BUG_ON(src_start
+ len
<= src_start
);
425 BUG_ON(dst_start
+ len
<= dst_start
);
427 src_addr
= src_start
;
428 dst_addr
= dst_start
;
432 down_read(&dst_mm
->mmap_sem
);
435 * Make sure the vma is not shared, that the dst range is
436 * both valid and fully within a single existing vma.
439 dst_vma
= find_vma(dst_mm
, dst_start
);
443 * Be strict and only allow __mcopy_atomic on userfaultfd
444 * registered ranges to prevent userland errors going
445 * unnoticed. As far as the VM consistency is concerned, it
446 * would be perfectly safe to remove this check, but there's
447 * no useful usage for __mcopy_atomic ouside of userfaultfd
448 * registered ranges. This is after all why these are ioctls
449 * belonging to the userfaultfd and not syscalls.
451 if (!dst_vma
->vm_userfaultfd_ctx
.ctx
)
454 if (dst_start
< dst_vma
->vm_start
||
455 dst_start
+ len
> dst_vma
->vm_end
)
460 * shmem_zero_setup is invoked in mmap for MAP_ANONYMOUS|MAP_SHARED but
461 * it will overwrite vm_ops, so vma_is_anonymous must return false.
463 if (WARN_ON_ONCE(vma_is_anonymous(dst_vma
) &&
464 dst_vma
->vm_flags
& VM_SHARED
))
468 * If this is a HUGETLB vma, pass off to appropriate routine
470 if (is_vm_hugetlb_page(dst_vma
))
471 return __mcopy_atomic_hugetlb(dst_mm
, dst_vma
, dst_start
,
472 src_start
, len
, zeropage
);
474 if (!vma_is_anonymous(dst_vma
) && !vma_is_shmem(dst_vma
))
478 * Ensure the dst_vma has a anon_vma or this page
479 * would get a NULL anon_vma when moved in the
483 if (vma_is_anonymous(dst_vma
) && unlikely(anon_vma_prepare(dst_vma
)))
486 while (src_addr
< src_start
+ len
) {
489 BUG_ON(dst_addr
>= dst_start
+ len
);
491 dst_pmd
= mm_alloc_pmd(dst_mm
, dst_addr
);
492 if (unlikely(!dst_pmd
)) {
497 dst_pmdval
= pmd_read_atomic(dst_pmd
);
499 * If the dst_pmd is mapped as THP don't
500 * override it and just be strict.
502 if (unlikely(pmd_trans_huge(dst_pmdval
))) {
506 if (unlikely(pmd_none(dst_pmdval
)) &&
507 unlikely(__pte_alloc(dst_mm
, dst_pmd
, dst_addr
))) {
511 /* If an huge pmd materialized from under us fail */
512 if (unlikely(pmd_trans_huge(*dst_pmd
))) {
517 BUG_ON(pmd_none(*dst_pmd
));
518 BUG_ON(pmd_trans_huge(*dst_pmd
));
520 err
= mfill_atomic_pte(dst_mm
, dst_pmd
, dst_vma
, dst_addr
,
521 src_addr
, &page
, zeropage
);
524 if (unlikely(err
== -EFAULT
)) {
527 up_read(&dst_mm
->mmap_sem
);
530 page_kaddr
= kmap(page
);
531 err
= copy_from_user(page_kaddr
,
532 (const void __user
*) src_addr
,
544 dst_addr
+= PAGE_SIZE
;
545 src_addr
+= PAGE_SIZE
;
548 if (fatal_signal_pending(current
))
556 up_read(&dst_mm
->mmap_sem
);
562 BUG_ON(!copied
&& !err
);
563 return copied
? copied
: err
;
566 ssize_t
mcopy_atomic(struct mm_struct
*dst_mm
, unsigned long dst_start
,
567 unsigned long src_start
, unsigned long len
)
569 return __mcopy_atomic(dst_mm
, dst_start
, src_start
, len
, false);
572 ssize_t
mfill_zeropage(struct mm_struct
*dst_mm
, unsigned long start
,
575 return __mcopy_atomic(dst_mm
, start
, 0, len
, true);