1 /* SPDX-License-Identifier: GPL-2.0 */
3 * include/linux/userfaultfd_k.h
5 * Copyright (C) 2015 Red Hat, Inc.
9 #ifndef _LINUX_USERFAULTFD_K_H
10 #define _LINUX_USERFAULTFD_K_H
12 #ifdef CONFIG_USERFAULTFD
14 #include <linux/userfaultfd.h> /* linux/include/uapi/linux/userfaultfd.h */
16 #include <linux/fcntl.h>
18 #include <linux/swap.h>
19 #include <linux/swapops.h>
20 #include <asm-generic/pgtable_uffd.h>
21 #include <linux/hugetlb_inline.h>
23 /* The set of all possible UFFD-related VM flags. */
24 #define __VM_UFFD_FLAGS (VM_UFFD_MISSING | VM_UFFD_WP | VM_UFFD_MINOR)
27 * CAREFUL: Check include/uapi/asm-generic/fcntl.h when defining
28 * new flags, since they might collide with O_* ones. We want
29 * to re-use O_* flags that couldn't possibly have a meaning
30 * from userfaultfd, in order to leave a free define-space for
33 #define UFFD_CLOEXEC O_CLOEXEC
34 #define UFFD_NONBLOCK O_NONBLOCK
36 #define UFFD_SHARED_FCNTL_FLAGS (O_CLOEXEC | O_NONBLOCK)
37 #define UFFD_FLAGS_SET (EFD_SHARED_FCNTL_FLAGS)
39 extern vm_fault_t handle_userfault(struct vm_fault *vmf, unsigned long reason);
42 * The mode of operation for __mcopy_atomic and its helpers.
44 * This is almost an implementation detail (mcopy_atomic below doesn't take this
45 * as a parameter), but it's exposed here because memory-kind-specific
46 * implementations (e.g. hugetlbfs) need to know the mode of operation.
48 enum mcopy_atomic_mode {
49 /* A normal copy_from_user into the destination range. */
51 /* Don't copy; map the destination range to the zero page. */
52 MCOPY_ATOMIC_ZEROPAGE,
53 /* Just install pte(s) with the existing page(s) in the page cache. */
54 MCOPY_ATOMIC_CONTINUE,
57 extern 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);
62 extern ssize_t mcopy_atomic(struct mm_struct *dst_mm, unsigned long dst_start,
63 unsigned long src_start, unsigned long len,
64 atomic_t *mmap_changing, __u64 mode);
65 extern ssize_t mfill_zeropage(struct mm_struct *dst_mm,
66 unsigned long dst_start,
68 atomic_t *mmap_changing);
69 extern ssize_t mcopy_continue(struct mm_struct *dst_mm, unsigned long dst_start,
70 unsigned long len, atomic_t *mmap_changing);
71 extern int mwriteprotect_range(struct mm_struct *dst_mm,
72 unsigned long start, unsigned long len,
73 bool enable_wp, atomic_t *mmap_changing);
74 extern long uffd_wp_range(struct mm_struct *dst_mm, struct vm_area_struct *vma,
75 unsigned long start, unsigned long len, bool enable_wp);
78 static inline bool is_mergeable_vm_userfaultfd_ctx(struct vm_area_struct *vma,
79 struct vm_userfaultfd_ctx vm_ctx)
81 return vma->vm_userfaultfd_ctx.ctx == vm_ctx.ctx;
85 * Never enable huge pmd sharing on some uffd registered vmas:
87 * - VM_UFFD_WP VMAs, because write protect information is per pgtable entry.
89 * - VM_UFFD_MINOR VMAs, because otherwise we would never get minor faults for
90 * VMAs which share huge pmds. (If you have two mappings to the same
91 * underlying pages, and fault in the non-UFFD-registered one with a write,
92 * with huge pmd sharing this would *also* setup the second UFFD-registered
93 * mapping, and we'd not get minor faults.)
95 static inline bool uffd_disable_huge_pmd_share(struct vm_area_struct *vma)
97 return vma->vm_flags & (VM_UFFD_WP | VM_UFFD_MINOR);
101 * Don't do fault around for either WP or MINOR registered uffd range. For
102 * MINOR registered range, fault around will be a total disaster and ptes can
103 * be installed without notifications; for WP it should mostly be fine as long
104 * as the fault around checks for pte_none() before the installation, however
105 * to be super safe we just forbid it.
107 static inline bool uffd_disable_fault_around(struct vm_area_struct *vma)
109 return vma->vm_flags & (VM_UFFD_WP | VM_UFFD_MINOR);
112 static inline bool userfaultfd_missing(struct vm_area_struct *vma)
114 return vma->vm_flags & VM_UFFD_MISSING;
117 static inline bool userfaultfd_wp(struct vm_area_struct *vma)
119 return vma->vm_flags & VM_UFFD_WP;
122 static inline bool userfaultfd_minor(struct vm_area_struct *vma)
124 return vma->vm_flags & VM_UFFD_MINOR;
127 static inline bool userfaultfd_pte_wp(struct vm_area_struct *vma,
130 return userfaultfd_wp(vma) && pte_uffd_wp(pte);
133 static inline bool userfaultfd_huge_pmd_wp(struct vm_area_struct *vma,
136 return userfaultfd_wp(vma) && pmd_uffd_wp(pmd);
139 static inline bool userfaultfd_armed(struct vm_area_struct *vma)
141 return vma->vm_flags & __VM_UFFD_FLAGS;
144 static inline bool vma_can_userfault(struct vm_area_struct *vma,
145 unsigned long vm_flags)
147 if ((vm_flags & VM_UFFD_MINOR) &&
148 (!is_vm_hugetlb_page(vma) && !vma_is_shmem(vma)))
150 #ifndef CONFIG_PTE_MARKER_UFFD_WP
152 * If user requested uffd-wp but not enabled pte markers for
153 * uffd-wp, then shmem & hugetlbfs are not supported but only
156 if ((vm_flags & VM_UFFD_WP) && !vma_is_anonymous(vma))
159 return vma_is_anonymous(vma) || is_vm_hugetlb_page(vma) ||
163 extern int dup_userfaultfd(struct vm_area_struct *, struct list_head *);
164 extern void dup_userfaultfd_complete(struct list_head *);
166 extern void mremap_userfaultfd_prep(struct vm_area_struct *,
167 struct vm_userfaultfd_ctx *);
168 extern void mremap_userfaultfd_complete(struct vm_userfaultfd_ctx *,
169 unsigned long from, unsigned long to,
172 extern bool userfaultfd_remove(struct vm_area_struct *vma,
176 extern int userfaultfd_unmap_prep(struct mm_struct *mm, unsigned long start,
177 unsigned long end, struct list_head *uf);
178 extern void userfaultfd_unmap_complete(struct mm_struct *mm,
179 struct list_head *uf);
181 #else /* CONFIG_USERFAULTFD */
184 static inline vm_fault_t handle_userfault(struct vm_fault *vmf,
185 unsigned long reason)
187 return VM_FAULT_SIGBUS;
190 static inline bool is_mergeable_vm_userfaultfd_ctx(struct vm_area_struct *vma,
191 struct vm_userfaultfd_ctx vm_ctx)
196 static inline bool userfaultfd_missing(struct vm_area_struct *vma)
201 static inline bool userfaultfd_wp(struct vm_area_struct *vma)
206 static inline bool userfaultfd_minor(struct vm_area_struct *vma)
211 static inline bool userfaultfd_pte_wp(struct vm_area_struct *vma,
217 static inline bool userfaultfd_huge_pmd_wp(struct vm_area_struct *vma,
224 static inline bool userfaultfd_armed(struct vm_area_struct *vma)
229 static inline int dup_userfaultfd(struct vm_area_struct *vma,
235 static inline void dup_userfaultfd_complete(struct list_head *l)
239 static inline void mremap_userfaultfd_prep(struct vm_area_struct *vma,
240 struct vm_userfaultfd_ctx *ctx)
244 static inline void mremap_userfaultfd_complete(struct vm_userfaultfd_ctx *ctx,
251 static inline bool userfaultfd_remove(struct vm_area_struct *vma,
258 static inline int userfaultfd_unmap_prep(struct mm_struct *mm,
259 unsigned long start, unsigned long end,
260 struct list_head *uf)
265 static inline void userfaultfd_unmap_complete(struct mm_struct *mm,
266 struct list_head *uf)
270 static inline bool uffd_disable_fault_around(struct vm_area_struct *vma)
275 #endif /* CONFIG_USERFAULTFD */
277 static inline bool pte_marker_entry_uffd_wp(swp_entry_t entry)
279 #ifdef CONFIG_PTE_MARKER_UFFD_WP
280 return is_pte_marker_entry(entry) &&
281 (pte_marker_get(entry) & PTE_MARKER_UFFD_WP);
287 static inline bool pte_marker_uffd_wp(pte_t pte)
289 #ifdef CONFIG_PTE_MARKER_UFFD_WP
292 if (!is_swap_pte(pte))
295 entry = pte_to_swp_entry(pte);
297 return pte_marker_entry_uffd_wp(entry);
304 * Returns true if this is a swap pte and was uffd-wp wr-protected in either
305 * forms (pte marker or a normal swap pte), false otherwise.
307 static inline bool pte_swp_uffd_wp_any(pte_t pte)
309 #ifdef CONFIG_PTE_MARKER_UFFD_WP
310 if (!is_swap_pte(pte))
313 if (pte_swp_uffd_wp(pte))
316 if (pte_marker_uffd_wp(pte))
322 #endif /* _LINUX_USERFAULTFD_K_H */