Thomas Gleixner | 20c8ccb | 2019-06-04 10:11:32 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fs/userfaultfd.c |
| 4 | * |
| 5 | * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org> |
| 6 | * Copyright (C) 2008-2009 Red Hat, Inc. |
| 7 | * Copyright (C) 2015 Red Hat, Inc. |
| 8 | * |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 9 | * Some part derived from fs/eventfd.c (anon inode setup) and |
| 10 | * mm/ksm.c (mm hashing). |
| 11 | */ |
| 12 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 13 | #include <linux/list.h> |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 14 | #include <linux/hashtable.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 15 | #include <linux/sched/signal.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 16 | #include <linux/sched/mm.h> |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 17 | #include <linux/mm.h> |
Peter Xu | 6dfeaff | 2021-05-04 18:33:13 -0700 | [diff] [blame] | 18 | #include <linux/mmu_notifier.h> |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 19 | #include <linux/poll.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/seq_file.h> |
| 22 | #include <linux/file.h> |
| 23 | #include <linux/bug.h> |
| 24 | #include <linux/anon_inodes.h> |
| 25 | #include <linux/syscalls.h> |
| 26 | #include <linux/userfaultfd_k.h> |
| 27 | #include <linux/mempolicy.h> |
| 28 | #include <linux/ioctl.h> |
| 29 | #include <linux/security.h> |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 30 | #include <linux/hugetlb.h> |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 31 | |
Lokesh Gidra | d0d4730 | 2020-12-14 19:13:54 -0800 | [diff] [blame] | 32 | int sysctl_unprivileged_userfaultfd __read_mostly; |
Peter Xu | cefdca0 | 2019-05-13 17:16:41 -0700 | [diff] [blame] | 33 | |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 34 | static struct kmem_cache *userfaultfd_ctx_cachep __read_mostly; |
| 35 | |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Start with fault_pending_wqh and fault_wqh so they're more likely |
| 38 | * to be in the same cacheline. |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 39 | * |
| 40 | * Locking order: |
| 41 | * fd_wqh.lock |
| 42 | * fault_pending_wqh.lock |
| 43 | * fault_wqh.lock |
| 44 | * event_wqh.lock |
| 45 | * |
| 46 | * To avoid deadlocks, IRQs must be disabled when taking any of the above locks, |
| 47 | * since fd_wqh.lock is taken by aio_poll() while it's holding a lock that's |
| 48 | * also taken in IRQ context. |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 49 | */ |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 50 | struct userfaultfd_ctx { |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 51 | /* waitqueue head for the pending (i.e. not read) userfaults */ |
| 52 | wait_queue_head_t fault_pending_wqh; |
| 53 | /* waitqueue head for the userfaults */ |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 54 | wait_queue_head_t fault_wqh; |
| 55 | /* waitqueue head for the pseudo fd to wakeup poll/read */ |
| 56 | wait_queue_head_t fd_wqh; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 57 | /* waitqueue head for events */ |
| 58 | wait_queue_head_t event_wqh; |
Andrea Arcangeli | 2c5b7e1 | 2015-09-04 15:47:23 -0700 | [diff] [blame] | 59 | /* a refile sequence protected by fault_pending_wqh lock */ |
Ahmed S. Darwish | 2ca97ac | 2020-07-20 17:55:28 +0200 | [diff] [blame] | 60 | seqcount_spinlock_t refile_seq; |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 61 | /* pseudo fd refcounting */ |
Eric Biggers | ca88042 | 2018-12-28 00:34:43 -0800 | [diff] [blame] | 62 | refcount_t refcount; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 63 | /* userfaultfd syscall flags */ |
| 64 | unsigned int flags; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 65 | /* features requested from the userspace */ |
| 66 | unsigned int features; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 67 | /* released */ |
| 68 | bool released; |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 69 | /* memory mappings are changing because of non-cooperative event */ |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 70 | atomic_t mmap_changing; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 71 | /* mm with one ore more vmas attached to this userfaultfd_ctx */ |
| 72 | struct mm_struct *mm; |
| 73 | }; |
| 74 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 75 | struct userfaultfd_fork_ctx { |
| 76 | struct userfaultfd_ctx *orig; |
| 77 | struct userfaultfd_ctx *new; |
| 78 | struct list_head list; |
| 79 | }; |
| 80 | |
Mike Rapoport | 897ab3e | 2017-02-24 14:58:22 -0800 | [diff] [blame] | 81 | struct userfaultfd_unmap_ctx { |
| 82 | struct userfaultfd_ctx *ctx; |
| 83 | unsigned long start; |
| 84 | unsigned long end; |
| 85 | struct list_head list; |
| 86 | }; |
| 87 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 88 | struct userfaultfd_wait_queue { |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 89 | struct uffd_msg msg; |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 90 | wait_queue_entry_t wq; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 91 | struct userfaultfd_ctx *ctx; |
Andrea Arcangeli | 15a77c6 | 2017-01-24 15:17:59 -0800 | [diff] [blame] | 92 | bool waken; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | struct userfaultfd_wake_range { |
| 96 | unsigned long start; |
| 97 | unsigned long len; |
| 98 | }; |
| 99 | |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 100 | /* internal indication that UFFD_API ioctl was successfully executed */ |
| 101 | #define UFFD_FEATURE_INITIALIZED (1u << 31) |
| 102 | |
| 103 | static bool userfaultfd_is_initialized(struct userfaultfd_ctx *ctx) |
| 104 | { |
| 105 | return ctx->features & UFFD_FEATURE_INITIALIZED; |
| 106 | } |
| 107 | |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 108 | static int userfaultfd_wake_function(wait_queue_entry_t *wq, unsigned mode, |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 109 | int wake_flags, void *key) |
| 110 | { |
| 111 | struct userfaultfd_wake_range *range = key; |
| 112 | int ret; |
| 113 | struct userfaultfd_wait_queue *uwq; |
| 114 | unsigned long start, len; |
| 115 | |
| 116 | uwq = container_of(wq, struct userfaultfd_wait_queue, wq); |
| 117 | ret = 0; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 118 | /* len == 0 means wake all */ |
| 119 | start = range->start; |
| 120 | len = range->len; |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 121 | if (len && (start > uwq->msg.arg.pagefault.address || |
| 122 | start + len <= uwq->msg.arg.pagefault.address)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 123 | goto out; |
Andrea Arcangeli | 15a77c6 | 2017-01-24 15:17:59 -0800 | [diff] [blame] | 124 | WRITE_ONCE(uwq->waken, true); |
| 125 | /* |
Peter Zijlstra | a9668cd | 2017-06-07 17:51:27 +0200 | [diff] [blame] | 126 | * The Program-Order guarantees provided by the scheduler |
| 127 | * ensure uwq->waken is visible before the task is woken. |
Andrea Arcangeli | 15a77c6 | 2017-01-24 15:17:59 -0800 | [diff] [blame] | 128 | */ |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 129 | ret = wake_up_state(wq->private, mode); |
Peter Zijlstra | a9668cd | 2017-06-07 17:51:27 +0200 | [diff] [blame] | 130 | if (ret) { |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 131 | /* |
| 132 | * Wake only once, autoremove behavior. |
| 133 | * |
Peter Zijlstra | a9668cd | 2017-06-07 17:51:27 +0200 | [diff] [blame] | 134 | * After the effect of list_del_init is visible to the other |
| 135 | * CPUs, the waitqueue may disappear from under us, see the |
| 136 | * !list_empty_careful() in handle_userfault(). |
| 137 | * |
| 138 | * try_to_wake_up() has an implicit smp_mb(), and the |
| 139 | * wq->private is read before calling the extern function |
| 140 | * "wake_up_state" (which in turns calls try_to_wake_up). |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 141 | */ |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 142 | list_del_init(&wq->entry); |
Peter Zijlstra | a9668cd | 2017-06-07 17:51:27 +0200 | [diff] [blame] | 143 | } |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 144 | out: |
| 145 | return ret; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * userfaultfd_ctx_get - Acquires a reference to the internal userfaultfd |
| 150 | * context. |
| 151 | * @ctx: [in] Pointer to the userfaultfd context. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 152 | */ |
| 153 | static void userfaultfd_ctx_get(struct userfaultfd_ctx *ctx) |
| 154 | { |
Eric Biggers | ca88042 | 2018-12-28 00:34:43 -0800 | [diff] [blame] | 155 | refcount_inc(&ctx->refcount); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /** |
| 159 | * userfaultfd_ctx_put - Releases a reference to the internal userfaultfd |
| 160 | * context. |
| 161 | * @ctx: [in] Pointer to userfaultfd context. |
| 162 | * |
| 163 | * The userfaultfd context reference must have been previously acquired either |
| 164 | * with userfaultfd_ctx_get() or userfaultfd_ctx_fdget(). |
| 165 | */ |
| 166 | static void userfaultfd_ctx_put(struct userfaultfd_ctx *ctx) |
| 167 | { |
Eric Biggers | ca88042 | 2018-12-28 00:34:43 -0800 | [diff] [blame] | 168 | if (refcount_dec_and_test(&ctx->refcount)) { |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 169 | VM_BUG_ON(spin_is_locked(&ctx->fault_pending_wqh.lock)); |
| 170 | VM_BUG_ON(waitqueue_active(&ctx->fault_pending_wqh)); |
| 171 | VM_BUG_ON(spin_is_locked(&ctx->fault_wqh.lock)); |
| 172 | VM_BUG_ON(waitqueue_active(&ctx->fault_wqh)); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 173 | VM_BUG_ON(spin_is_locked(&ctx->event_wqh.lock)); |
| 174 | VM_BUG_ON(waitqueue_active(&ctx->event_wqh)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 175 | VM_BUG_ON(spin_is_locked(&ctx->fd_wqh.lock)); |
| 176 | VM_BUG_ON(waitqueue_active(&ctx->fd_wqh)); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 177 | mmdrop(ctx->mm); |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 178 | kmem_cache_free(userfaultfd_ctx_cachep, ctx); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 182 | static inline void msg_init(struct uffd_msg *msg) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 183 | { |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 184 | BUILD_BUG_ON(sizeof(struct uffd_msg) != 32); |
| 185 | /* |
| 186 | * Must use memset to zero out the paddings or kernel data is |
| 187 | * leaked to userland. |
| 188 | */ |
| 189 | memset(msg, 0, sizeof(struct uffd_msg)); |
| 190 | } |
| 191 | |
| 192 | static inline struct uffd_msg userfault_msg(unsigned long address, |
| 193 | unsigned int flags, |
Alexey Perevalov | 9d4ac93 | 2017-09-06 16:23:56 -0700 | [diff] [blame] | 194 | unsigned long reason, |
| 195 | unsigned int features) |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 196 | { |
| 197 | struct uffd_msg msg; |
| 198 | msg_init(&msg); |
| 199 | msg.event = UFFD_EVENT_PAGEFAULT; |
| 200 | msg.arg.pagefault.address = address; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 201 | /* |
| 202 | * These flags indicate why the userfault occurred: |
| 203 | * - UFFD_PAGEFAULT_FLAG_WP indicates a write protect fault. |
| 204 | * - UFFD_PAGEFAULT_FLAG_MINOR indicates a minor fault. |
| 205 | * - Neither of these flags being set indicates a MISSING fault. |
| 206 | * |
| 207 | * Separately, UFFD_PAGEFAULT_FLAG_WRITE indicates it was a write |
| 208 | * fault. Otherwise, it was a read fault. |
| 209 | */ |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 210 | if (flags & FAULT_FLAG_WRITE) |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 211 | msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WRITE; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 212 | if (reason & VM_UFFD_WP) |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 213 | msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WP; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 214 | if (reason & VM_UFFD_MINOR) |
| 215 | msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_MINOR; |
Alexey Perevalov | 9d4ac93 | 2017-09-06 16:23:56 -0700 | [diff] [blame] | 216 | if (features & UFFD_FEATURE_THREAD_ID) |
Andrea Arcangeli | a36985d | 2017-09-06 16:23:59 -0700 | [diff] [blame] | 217 | msg.arg.pagefault.feat.ptid = task_pid_vnr(current); |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 218 | return msg; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 221 | #ifdef CONFIG_HUGETLB_PAGE |
| 222 | /* |
| 223 | * Same functionality as userfaultfd_must_wait below with modifications for |
| 224 | * hugepmd ranges. |
| 225 | */ |
| 226 | static inline bool userfaultfd_huge_must_wait(struct userfaultfd_ctx *ctx, |
Punit Agrawal | 7868a20 | 2017-07-06 15:39:42 -0700 | [diff] [blame] | 227 | struct vm_area_struct *vma, |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 228 | unsigned long address, |
| 229 | unsigned long flags, |
| 230 | unsigned long reason) |
| 231 | { |
| 232 | struct mm_struct *mm = ctx->mm; |
Janosch Frank | 1e2c043 | 2018-07-03 17:02:39 -0700 | [diff] [blame] | 233 | pte_t *ptep, pte; |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 234 | bool ret = true; |
| 235 | |
Michel Lespinasse | 42fc541 | 2020-06-08 21:33:44 -0700 | [diff] [blame] | 236 | mmap_assert_locked(mm); |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 237 | |
Janosch Frank | 1e2c043 | 2018-07-03 17:02:39 -0700 | [diff] [blame] | 238 | ptep = huge_pte_offset(mm, address, vma_mmu_pagesize(vma)); |
| 239 | |
| 240 | if (!ptep) |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 241 | goto out; |
| 242 | |
| 243 | ret = false; |
Janosch Frank | 1e2c043 | 2018-07-03 17:02:39 -0700 | [diff] [blame] | 244 | pte = huge_ptep_get(ptep); |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 245 | |
| 246 | /* |
| 247 | * Lockless access: we're in a wait_event so it's ok if it |
| 248 | * changes under us. |
| 249 | */ |
Janosch Frank | 1e2c043 | 2018-07-03 17:02:39 -0700 | [diff] [blame] | 250 | if (huge_pte_none(pte)) |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 251 | ret = true; |
Janosch Frank | 1e2c043 | 2018-07-03 17:02:39 -0700 | [diff] [blame] | 252 | if (!huge_pte_write(pte) && (reason & VM_UFFD_WP)) |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 253 | ret = true; |
| 254 | out: |
| 255 | return ret; |
| 256 | } |
| 257 | #else |
| 258 | static inline bool userfaultfd_huge_must_wait(struct userfaultfd_ctx *ctx, |
Punit Agrawal | 7868a20 | 2017-07-06 15:39:42 -0700 | [diff] [blame] | 259 | struct vm_area_struct *vma, |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 260 | unsigned long address, |
| 261 | unsigned long flags, |
| 262 | unsigned long reason) |
| 263 | { |
| 264 | return false; /* should never get here */ |
| 265 | } |
| 266 | #endif /* CONFIG_HUGETLB_PAGE */ |
| 267 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 268 | /* |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 269 | * Verify the pagetables are still not ok after having reigstered into |
| 270 | * the fault_pending_wqh to avoid userland having to UFFDIO_WAKE any |
| 271 | * userfault that has already been resolved, if userfaultfd_read and |
| 272 | * UFFDIO_COPY|ZEROPAGE are being run simultaneously on two different |
| 273 | * threads. |
| 274 | */ |
| 275 | static inline bool userfaultfd_must_wait(struct userfaultfd_ctx *ctx, |
| 276 | unsigned long address, |
| 277 | unsigned long flags, |
| 278 | unsigned long reason) |
| 279 | { |
| 280 | struct mm_struct *mm = ctx->mm; |
| 281 | pgd_t *pgd; |
Kirill A. Shutemov | c2febaf | 2017-03-09 17:24:07 +0300 | [diff] [blame] | 282 | p4d_t *p4d; |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 283 | pud_t *pud; |
| 284 | pmd_t *pmd, _pmd; |
| 285 | pte_t *pte; |
| 286 | bool ret = true; |
| 287 | |
Michel Lespinasse | 42fc541 | 2020-06-08 21:33:44 -0700 | [diff] [blame] | 288 | mmap_assert_locked(mm); |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 289 | |
| 290 | pgd = pgd_offset(mm, address); |
| 291 | if (!pgd_present(*pgd)) |
| 292 | goto out; |
Kirill A. Shutemov | c2febaf | 2017-03-09 17:24:07 +0300 | [diff] [blame] | 293 | p4d = p4d_offset(pgd, address); |
| 294 | if (!p4d_present(*p4d)) |
| 295 | goto out; |
| 296 | pud = pud_offset(p4d, address); |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 297 | if (!pud_present(*pud)) |
| 298 | goto out; |
| 299 | pmd = pmd_offset(pud, address); |
| 300 | /* |
| 301 | * READ_ONCE must function as a barrier with narrower scope |
| 302 | * and it must be equivalent to: |
| 303 | * _pmd = *pmd; barrier(); |
| 304 | * |
| 305 | * This is to deal with the instability (as in |
| 306 | * pmd_trans_unstable) of the pmd. |
| 307 | */ |
| 308 | _pmd = READ_ONCE(*pmd); |
Huang Ying | a365ac0 | 2018-01-31 16:17:32 -0800 | [diff] [blame] | 309 | if (pmd_none(_pmd)) |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 310 | goto out; |
| 311 | |
| 312 | ret = false; |
Huang Ying | a365ac0 | 2018-01-31 16:17:32 -0800 | [diff] [blame] | 313 | if (!pmd_present(_pmd)) |
| 314 | goto out; |
| 315 | |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 316 | if (pmd_trans_huge(_pmd)) { |
| 317 | if (!pmd_write(_pmd) && (reason & VM_UFFD_WP)) |
| 318 | ret = true; |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 319 | goto out; |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 320 | } |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 321 | |
| 322 | /* |
| 323 | * the pmd is stable (as in !pmd_trans_unstable) so we can re-read it |
| 324 | * and use the standard pte_offset_map() instead of parsing _pmd. |
| 325 | */ |
| 326 | pte = pte_offset_map(pmd, address); |
| 327 | /* |
| 328 | * Lockless access: we're in a wait_event so it's ok if it |
| 329 | * changes under us. |
| 330 | */ |
| 331 | if (pte_none(*pte)) |
| 332 | ret = true; |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 333 | if (!pte_write(*pte) && (reason & VM_UFFD_WP)) |
| 334 | ret = true; |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 335 | pte_unmap(pte); |
| 336 | |
| 337 | out: |
| 338 | return ret; |
| 339 | } |
| 340 | |
Peter Zijlstra | 2f064a5 | 2021-06-11 10:28:17 +0200 | [diff] [blame] | 341 | static inline unsigned int userfaultfd_get_blocking_state(unsigned int flags) |
Peter Xu | 3e69ad0 | 2020-04-01 21:09:00 -0700 | [diff] [blame] | 342 | { |
| 343 | if (flags & FAULT_FLAG_INTERRUPTIBLE) |
| 344 | return TASK_INTERRUPTIBLE; |
| 345 | |
| 346 | if (flags & FAULT_FLAG_KILLABLE) |
| 347 | return TASK_KILLABLE; |
| 348 | |
| 349 | return TASK_UNINTERRUPTIBLE; |
| 350 | } |
| 351 | |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 352 | /* |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 353 | * The locking rules involved in returning VM_FAULT_RETRY depending on |
| 354 | * FAULT_FLAG_ALLOW_RETRY, FAULT_FLAG_RETRY_NOWAIT and |
| 355 | * FAULT_FLAG_KILLABLE are not straightforward. The "Caution" |
| 356 | * recommendation in __lock_page_or_retry is not an understatement. |
| 357 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 358 | * If FAULT_FLAG_ALLOW_RETRY is set, the mmap_lock must be released |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 359 | * before returning VM_FAULT_RETRY only if FAULT_FLAG_RETRY_NOWAIT is |
| 360 | * not set. |
| 361 | * |
| 362 | * If FAULT_FLAG_ALLOW_RETRY is set but FAULT_FLAG_KILLABLE is not |
| 363 | * set, VM_FAULT_RETRY can still be returned if and only if there are |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 364 | * fatal_signal_pending()s, and the mmap_lock must be released before |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 365 | * returning it. |
| 366 | */ |
Souptick Joarder | 2b74030 | 2018-08-23 17:01:36 -0700 | [diff] [blame] | 367 | vm_fault_t handle_userfault(struct vm_fault *vmf, unsigned long reason) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 368 | { |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 369 | struct mm_struct *mm = vmf->vma->vm_mm; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 370 | struct userfaultfd_ctx *ctx; |
| 371 | struct userfaultfd_wait_queue uwq; |
Souptick Joarder | 2b74030 | 2018-08-23 17:01:36 -0700 | [diff] [blame] | 372 | vm_fault_t ret = VM_FAULT_SIGBUS; |
Peter Xu | 3e69ad0 | 2020-04-01 21:09:00 -0700 | [diff] [blame] | 373 | bool must_wait; |
Peter Zijlstra | 2f064a5 | 2021-06-11 10:28:17 +0200 | [diff] [blame] | 374 | unsigned int blocking_state; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 375 | |
Andrea Arcangeli | 64c2b20 | 2017-06-16 14:02:37 -0700 | [diff] [blame] | 376 | /* |
| 377 | * We don't do userfault handling for the final child pid update. |
| 378 | * |
| 379 | * We also don't do userfault handling during |
| 380 | * coredumping. hugetlbfs has the special |
| 381 | * follow_hugetlb_page() to skip missing pages in the |
| 382 | * FOLL_DUMP case, anon memory also checks for FOLL_DUMP with |
| 383 | * the no_page_table() helper in follow_page_mask(), but the |
| 384 | * shmem_vm_ops->fault method is invoked even during |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 385 | * coredumping without mmap_lock and it ends up here. |
Andrea Arcangeli | 64c2b20 | 2017-06-16 14:02:37 -0700 | [diff] [blame] | 386 | */ |
| 387 | if (current->flags & (PF_EXITING|PF_DUMPCORE)) |
| 388 | goto out; |
| 389 | |
| 390 | /* |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 391 | * Coredumping runs without mmap_lock so we can only check that |
| 392 | * the mmap_lock is held, if PF_DUMPCORE was not set. |
Andrea Arcangeli | 64c2b20 | 2017-06-16 14:02:37 -0700 | [diff] [blame] | 393 | */ |
Michel Lespinasse | 42fc541 | 2020-06-08 21:33:44 -0700 | [diff] [blame] | 394 | mmap_assert_locked(mm); |
Andrea Arcangeli | 64c2b20 | 2017-06-16 14:02:37 -0700 | [diff] [blame] | 395 | |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 396 | ctx = vmf->vma->vm_userfaultfd_ctx.ctx; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 397 | if (!ctx) |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 398 | goto out; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 399 | |
| 400 | BUG_ON(ctx->mm != mm); |
| 401 | |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 402 | /* Any unrecognized flag is a bug. */ |
| 403 | VM_BUG_ON(reason & ~__VM_UFFD_FLAGS); |
| 404 | /* 0 or > 1 flags set is a bug; we expect exactly 1. */ |
| 405 | VM_BUG_ON(!reason || (reason & (reason - 1))); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 406 | |
Prakash Sangappa | 2d6d6f5 | 2017-09-06 16:23:39 -0700 | [diff] [blame] | 407 | if (ctx->features & UFFD_FEATURE_SIGBUS) |
| 408 | goto out; |
Lokesh Gidra | 37cd057 | 2020-12-14 19:13:49 -0800 | [diff] [blame] | 409 | if ((vmf->flags & FAULT_FLAG_USER) == 0 && |
| 410 | ctx->flags & UFFD_USER_MODE_ONLY) { |
| 411 | printk_once(KERN_WARNING "uffd: Set unprivileged_userfaultfd " |
| 412 | "sysctl knob to 1 if kernel faults must be handled " |
| 413 | "without obtaining CAP_SYS_PTRACE capability\n"); |
| 414 | goto out; |
| 415 | } |
Prakash Sangappa | 2d6d6f5 | 2017-09-06 16:23:39 -0700 | [diff] [blame] | 416 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 417 | /* |
| 418 | * If it's already released don't get it. This avoids to loop |
| 419 | * in __get_user_pages if userfaultfd_release waits on the |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 420 | * caller of handle_userfault to release the mmap_lock. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 421 | */ |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 422 | if (unlikely(READ_ONCE(ctx->released))) { |
Andrea Arcangeli | 656710a | 2017-09-08 16:12:42 -0700 | [diff] [blame] | 423 | /* |
| 424 | * Don't return VM_FAULT_SIGBUS in this case, so a non |
| 425 | * cooperative manager can close the uffd after the |
| 426 | * last UFFDIO_COPY, without risking to trigger an |
| 427 | * involuntary SIGBUS if the process was starting the |
| 428 | * userfaultfd while the userfaultfd was still armed |
| 429 | * (but after the last UFFDIO_COPY). If the uffd |
| 430 | * wasn't already closed when the userfault reached |
| 431 | * this point, that would normally be solved by |
| 432 | * userfaultfd_must_wait returning 'false'. |
| 433 | * |
| 434 | * If we were to return VM_FAULT_SIGBUS here, the non |
| 435 | * cooperative manager would be instead forced to |
| 436 | * always call UFFDIO_UNREGISTER before it can safely |
| 437 | * close the uffd. |
| 438 | */ |
| 439 | ret = VM_FAULT_NOPAGE; |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 440 | goto out; |
Andrea Arcangeli | 656710a | 2017-09-08 16:12:42 -0700 | [diff] [blame] | 441 | } |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 442 | |
| 443 | /* |
| 444 | * Check that we can return VM_FAULT_RETRY. |
| 445 | * |
| 446 | * NOTE: it should become possible to return VM_FAULT_RETRY |
| 447 | * even if FAULT_FLAG_TRIED is set without leading to gup() |
| 448 | * -EBUSY failures, if the userfaultfd is to be extended for |
| 449 | * VM_UFFD_WP tracking and we intend to arm the userfault |
| 450 | * without first stopping userland access to the memory. For |
| 451 | * VM_UFFD_MISSING userfaults this is enough for now. |
| 452 | */ |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 453 | if (unlikely(!(vmf->flags & FAULT_FLAG_ALLOW_RETRY))) { |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 454 | /* |
| 455 | * Validate the invariant that nowait must allow retry |
| 456 | * to be sure not to return SIGBUS erroneously on |
| 457 | * nowait invocations. |
| 458 | */ |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 459 | BUG_ON(vmf->flags & FAULT_FLAG_RETRY_NOWAIT); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 460 | #ifdef CONFIG_DEBUG_VM |
| 461 | if (printk_ratelimit()) { |
| 462 | printk(KERN_WARNING |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 463 | "FAULT_FLAG_ALLOW_RETRY missing %x\n", |
| 464 | vmf->flags); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 465 | dump_stack(); |
| 466 | } |
| 467 | #endif |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 468 | goto out; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | /* |
| 472 | * Handle nowait, not much to do other than tell it to retry |
| 473 | * and wait. |
| 474 | */ |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 475 | ret = VM_FAULT_RETRY; |
Jan Kara | 82b0f8c | 2016-12-14 15:06:58 -0800 | [diff] [blame] | 476 | if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT) |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 477 | goto out; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 478 | |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 479 | /* take the reference before dropping the mmap_lock */ |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 480 | userfaultfd_ctx_get(ctx); |
| 481 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 482 | init_waitqueue_func_entry(&uwq.wq, userfaultfd_wake_function); |
| 483 | uwq.wq.private = current; |
Alexey Perevalov | 9d4ac93 | 2017-09-06 16:23:56 -0700 | [diff] [blame] | 484 | uwq.msg = userfault_msg(vmf->address, vmf->flags, reason, |
| 485 | ctx->features); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 486 | uwq.ctx = ctx; |
Andrea Arcangeli | 15a77c6 | 2017-01-24 15:17:59 -0800 | [diff] [blame] | 487 | uwq.waken = false; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 488 | |
Peter Xu | 3e69ad0 | 2020-04-01 21:09:00 -0700 | [diff] [blame] | 489 | blocking_state = userfaultfd_get_blocking_state(vmf->flags); |
Andrea Arcangeli | dfa37dc | 2015-09-04 15:47:18 -0700 | [diff] [blame] | 490 | |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 491 | spin_lock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 492 | /* |
| 493 | * After the __add_wait_queue the uwq is visible to userland |
| 494 | * through poll/read(). |
| 495 | */ |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 496 | __add_wait_queue(&ctx->fault_pending_wqh, &uwq.wq); |
| 497 | /* |
| 498 | * The smp_mb() after __set_current_state prevents the reads |
| 499 | * following the spin_unlock to happen before the list_add in |
| 500 | * __add_wait_queue. |
| 501 | */ |
Andrea Arcangeli | 15a77c6 | 2017-01-24 15:17:59 -0800 | [diff] [blame] | 502 | set_current_state(blocking_state); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 503 | spin_unlock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 504 | |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 505 | if (!is_vm_hugetlb_page(vmf->vma)) |
| 506 | must_wait = userfaultfd_must_wait(ctx, vmf->address, vmf->flags, |
| 507 | reason); |
| 508 | else |
Punit Agrawal | 7868a20 | 2017-07-06 15:39:42 -0700 | [diff] [blame] | 509 | must_wait = userfaultfd_huge_must_wait(ctx, vmf->vma, |
| 510 | vmf->address, |
Mike Kravetz | 369cd212 | 2017-02-22 15:43:10 -0800 | [diff] [blame] | 511 | vmf->flags, reason); |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 512 | mmap_read_unlock(mm); |
Andrea Arcangeli | 8d2afd9 | 2015-09-04 15:46:51 -0700 | [diff] [blame] | 513 | |
Linus Torvalds | f9bf352 | 2020-08-02 10:42:31 -0700 | [diff] [blame] | 514 | if (likely(must_wait && !READ_ONCE(ctx->released))) { |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 515 | wake_up_poll(&ctx->fd_wqh, EPOLLIN); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 516 | schedule(); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 517 | } |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 518 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 519 | __set_current_state(TASK_RUNNING); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 520 | |
| 521 | /* |
| 522 | * Here we race with the list_del; list_add in |
| 523 | * userfaultfd_ctx_read(), however because we don't ever run |
| 524 | * list_del_init() to refile across the two lists, the prev |
| 525 | * and next pointers will never point to self. list_add also |
| 526 | * would never let any of the two pointers to point to |
| 527 | * self. So list_empty_careful won't risk to see both pointers |
| 528 | * pointing to self at any time during the list refile. The |
| 529 | * only case where list_del_init() is called is the full |
| 530 | * removal in the wake function and there we don't re-list_add |
| 531 | * and it's fine not to block on the spinlock. The uwq on this |
| 532 | * kernel stack can be released after the list_del_init. |
| 533 | */ |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 534 | if (!list_empty_careful(&uwq.wq.entry)) { |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 535 | spin_lock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 536 | /* |
| 537 | * No need of list_del_init(), the uwq on the stack |
| 538 | * will be freed shortly anyway. |
| 539 | */ |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 540 | list_del(&uwq.wq.entry); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 541 | spin_unlock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 542 | } |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 543 | |
| 544 | /* |
| 545 | * ctx may go away after this if the userfault pseudo fd is |
| 546 | * already released. |
| 547 | */ |
| 548 | userfaultfd_ctx_put(ctx); |
| 549 | |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 550 | out: |
| 551 | return ret; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 552 | } |
| 553 | |
Andrea Arcangeli | 8c9e7bb | 2017-03-09 16:16:54 -0800 | [diff] [blame] | 554 | static void userfaultfd_event_wait_completion(struct userfaultfd_ctx *ctx, |
| 555 | struct userfaultfd_wait_queue *ewq) |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 556 | { |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 557 | struct userfaultfd_ctx *release_new_ctx; |
| 558 | |
Andrea Arcangeli | 9a69a82 | 2017-03-09 16:16:52 -0800 | [diff] [blame] | 559 | if (WARN_ON_ONCE(current->flags & PF_EXITING)) |
| 560 | goto out; |
| 561 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 562 | ewq->ctx = ctx; |
| 563 | init_waitqueue_entry(&ewq->wq, current); |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 564 | release_new_ctx = NULL; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 565 | |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 566 | spin_lock_irq(&ctx->event_wqh.lock); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 567 | /* |
| 568 | * After the __add_wait_queue the uwq is visible to userland |
| 569 | * through poll/read(). |
| 570 | */ |
| 571 | __add_wait_queue(&ctx->event_wqh, &ewq->wq); |
| 572 | for (;;) { |
| 573 | set_current_state(TASK_KILLABLE); |
| 574 | if (ewq->msg.event == 0) |
| 575 | break; |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 576 | if (READ_ONCE(ctx->released) || |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 577 | fatal_signal_pending(current)) { |
Andrea Arcangeli | 384632e | 2017-10-03 16:15:38 -0700 | [diff] [blame] | 578 | /* |
| 579 | * &ewq->wq may be queued in fork_event, but |
| 580 | * __remove_wait_queue ignores the head |
| 581 | * parameter. It would be a problem if it |
| 582 | * didn't. |
| 583 | */ |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 584 | __remove_wait_queue(&ctx->event_wqh, &ewq->wq); |
Mike Rapoport | 7eb76d4 | 2017-03-09 16:17:09 -0800 | [diff] [blame] | 585 | if (ewq->msg.event == UFFD_EVENT_FORK) { |
| 586 | struct userfaultfd_ctx *new; |
| 587 | |
| 588 | new = (struct userfaultfd_ctx *) |
| 589 | (unsigned long) |
| 590 | ewq->msg.arg.reserved.reserved1; |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 591 | release_new_ctx = new; |
Mike Rapoport | 7eb76d4 | 2017-03-09 16:17:09 -0800 | [diff] [blame] | 592 | } |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 593 | break; |
| 594 | } |
| 595 | |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 596 | spin_unlock_irq(&ctx->event_wqh.lock); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 597 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 598 | wake_up_poll(&ctx->fd_wqh, EPOLLIN); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 599 | schedule(); |
| 600 | |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 601 | spin_lock_irq(&ctx->event_wqh.lock); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 602 | } |
| 603 | __set_current_state(TASK_RUNNING); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 604 | spin_unlock_irq(&ctx->event_wqh.lock); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 605 | |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 606 | if (release_new_ctx) { |
| 607 | struct vm_area_struct *vma; |
| 608 | struct mm_struct *mm = release_new_ctx->mm; |
| 609 | |
| 610 | /* the various vma->vm_userfaultfd_ctx still points to it */ |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 611 | mmap_write_lock(mm); |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 612 | for (vma = mm->mmap; vma; vma = vma->vm_next) |
Mike Rapoport | 31e810a | 2018-08-02 15:36:09 -0700 | [diff] [blame] | 613 | if (vma->vm_userfaultfd_ctx.ctx == release_new_ctx) { |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 614 | vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 615 | vma->vm_flags &= ~__VM_UFFD_FLAGS; |
Mike Rapoport | 31e810a | 2018-08-02 15:36:09 -0700 | [diff] [blame] | 616 | } |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 617 | mmap_write_unlock(mm); |
Andrea Arcangeli | 0cbb4b4 | 2018-01-04 16:18:09 -0800 | [diff] [blame] | 618 | |
| 619 | userfaultfd_ctx_put(release_new_ctx); |
| 620 | } |
| 621 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 622 | /* |
| 623 | * ctx may go away after this if the userfault pseudo fd is |
| 624 | * already released. |
| 625 | */ |
Andrea Arcangeli | 9a69a82 | 2017-03-09 16:16:52 -0800 | [diff] [blame] | 626 | out: |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 627 | atomic_dec(&ctx->mmap_changing); |
| 628 | VM_BUG_ON(atomic_read(&ctx->mmap_changing) < 0); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 629 | userfaultfd_ctx_put(ctx); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static void userfaultfd_event_complete(struct userfaultfd_ctx *ctx, |
| 633 | struct userfaultfd_wait_queue *ewq) |
| 634 | { |
| 635 | ewq->msg.event = 0; |
| 636 | wake_up_locked(&ctx->event_wqh); |
| 637 | __remove_wait_queue(&ctx->event_wqh, &ewq->wq); |
| 638 | } |
| 639 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 640 | int dup_userfaultfd(struct vm_area_struct *vma, struct list_head *fcs) |
| 641 | { |
| 642 | struct userfaultfd_ctx *ctx = NULL, *octx; |
| 643 | struct userfaultfd_fork_ctx *fctx; |
| 644 | |
| 645 | octx = vma->vm_userfaultfd_ctx.ctx; |
| 646 | if (!octx || !(octx->features & UFFD_FEATURE_EVENT_FORK)) { |
| 647 | vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 648 | vma->vm_flags &= ~__VM_UFFD_FLAGS; |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 649 | return 0; |
| 650 | } |
| 651 | |
| 652 | list_for_each_entry(fctx, fcs, list) |
| 653 | if (fctx->orig == octx) { |
| 654 | ctx = fctx->new; |
| 655 | break; |
| 656 | } |
| 657 | |
| 658 | if (!ctx) { |
| 659 | fctx = kmalloc(sizeof(*fctx), GFP_KERNEL); |
| 660 | if (!fctx) |
| 661 | return -ENOMEM; |
| 662 | |
| 663 | ctx = kmem_cache_alloc(userfaultfd_ctx_cachep, GFP_KERNEL); |
| 664 | if (!ctx) { |
| 665 | kfree(fctx); |
| 666 | return -ENOMEM; |
| 667 | } |
| 668 | |
Eric Biggers | ca88042 | 2018-12-28 00:34:43 -0800 | [diff] [blame] | 669 | refcount_set(&ctx->refcount, 1); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 670 | ctx->flags = octx->flags; |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 671 | ctx->features = octx->features; |
| 672 | ctx->released = false; |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 673 | atomic_set(&ctx->mmap_changing, 0); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 674 | ctx->mm = vma->vm_mm; |
Mike Rapoport | 00bb31f | 2017-11-15 17:36:56 -0800 | [diff] [blame] | 675 | mmgrab(ctx->mm); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 676 | |
| 677 | userfaultfd_ctx_get(octx); |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 678 | atomic_inc(&octx->mmap_changing); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 679 | fctx->orig = octx; |
| 680 | fctx->new = ctx; |
| 681 | list_add_tail(&fctx->list, fcs); |
| 682 | } |
| 683 | |
| 684 | vma->vm_userfaultfd_ctx.ctx = ctx; |
| 685 | return 0; |
| 686 | } |
| 687 | |
Andrea Arcangeli | 8c9e7bb | 2017-03-09 16:16:54 -0800 | [diff] [blame] | 688 | static void dup_fctx(struct userfaultfd_fork_ctx *fctx) |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 689 | { |
| 690 | struct userfaultfd_ctx *ctx = fctx->orig; |
| 691 | struct userfaultfd_wait_queue ewq; |
| 692 | |
| 693 | msg_init(&ewq.msg); |
| 694 | |
| 695 | ewq.msg.event = UFFD_EVENT_FORK; |
| 696 | ewq.msg.arg.reserved.reserved1 = (unsigned long)fctx->new; |
| 697 | |
Andrea Arcangeli | 8c9e7bb | 2017-03-09 16:16:54 -0800 | [diff] [blame] | 698 | userfaultfd_event_wait_completion(ctx, &ewq); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | void dup_userfaultfd_complete(struct list_head *fcs) |
| 702 | { |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 703 | struct userfaultfd_fork_ctx *fctx, *n; |
| 704 | |
| 705 | list_for_each_entry_safe(fctx, n, fcs, list) { |
Andrea Arcangeli | 8c9e7bb | 2017-03-09 16:16:54 -0800 | [diff] [blame] | 706 | dup_fctx(fctx); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 707 | list_del(&fctx->list); |
| 708 | kfree(fctx); |
| 709 | } |
| 710 | } |
| 711 | |
Pavel Emelyanov | 72f8765 | 2017-02-22 15:42:34 -0800 | [diff] [blame] | 712 | void mremap_userfaultfd_prep(struct vm_area_struct *vma, |
| 713 | struct vm_userfaultfd_ctx *vm_ctx) |
| 714 | { |
| 715 | struct userfaultfd_ctx *ctx; |
| 716 | |
| 717 | ctx = vma->vm_userfaultfd_ctx.ctx; |
Peter Xu | 3cfd22b | 2018-12-28 00:38:47 -0800 | [diff] [blame] | 718 | |
| 719 | if (!ctx) |
| 720 | return; |
| 721 | |
| 722 | if (ctx->features & UFFD_FEATURE_EVENT_REMAP) { |
Pavel Emelyanov | 72f8765 | 2017-02-22 15:42:34 -0800 | [diff] [blame] | 723 | vm_ctx->ctx = ctx; |
| 724 | userfaultfd_ctx_get(ctx); |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 725 | atomic_inc(&ctx->mmap_changing); |
Peter Xu | 3cfd22b | 2018-12-28 00:38:47 -0800 | [diff] [blame] | 726 | } else { |
| 727 | /* Drop uffd context if remap feature not enabled */ |
| 728 | vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 729 | vma->vm_flags &= ~__VM_UFFD_FLAGS; |
Pavel Emelyanov | 72f8765 | 2017-02-22 15:42:34 -0800 | [diff] [blame] | 730 | } |
| 731 | } |
| 732 | |
Andrea Arcangeli | 90794bf | 2017-02-22 15:42:37 -0800 | [diff] [blame] | 733 | void mremap_userfaultfd_complete(struct vm_userfaultfd_ctx *vm_ctx, |
Pavel Emelyanov | 72f8765 | 2017-02-22 15:42:34 -0800 | [diff] [blame] | 734 | unsigned long from, unsigned long to, |
| 735 | unsigned long len) |
| 736 | { |
Andrea Arcangeli | 90794bf | 2017-02-22 15:42:37 -0800 | [diff] [blame] | 737 | struct userfaultfd_ctx *ctx = vm_ctx->ctx; |
Pavel Emelyanov | 72f8765 | 2017-02-22 15:42:34 -0800 | [diff] [blame] | 738 | struct userfaultfd_wait_queue ewq; |
| 739 | |
| 740 | if (!ctx) |
| 741 | return; |
| 742 | |
| 743 | if (to & ~PAGE_MASK) { |
| 744 | userfaultfd_ctx_put(ctx); |
| 745 | return; |
| 746 | } |
| 747 | |
| 748 | msg_init(&ewq.msg); |
| 749 | |
| 750 | ewq.msg.event = UFFD_EVENT_REMAP; |
| 751 | ewq.msg.arg.remap.from = from; |
| 752 | ewq.msg.arg.remap.to = to; |
| 753 | ewq.msg.arg.remap.len = len; |
| 754 | |
| 755 | userfaultfd_event_wait_completion(ctx, &ewq); |
| 756 | } |
| 757 | |
Andrea Arcangeli | 70ccb92 | 2017-03-09 16:17:11 -0800 | [diff] [blame] | 758 | bool userfaultfd_remove(struct vm_area_struct *vma, |
Mike Rapoport | d811914 | 2017-02-24 14:56:02 -0800 | [diff] [blame] | 759 | unsigned long start, unsigned long end) |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 760 | { |
| 761 | struct mm_struct *mm = vma->vm_mm; |
| 762 | struct userfaultfd_ctx *ctx; |
| 763 | struct userfaultfd_wait_queue ewq; |
| 764 | |
| 765 | ctx = vma->vm_userfaultfd_ctx.ctx; |
Mike Rapoport | d811914 | 2017-02-24 14:56:02 -0800 | [diff] [blame] | 766 | if (!ctx || !(ctx->features & UFFD_FEATURE_EVENT_REMOVE)) |
Andrea Arcangeli | 70ccb92 | 2017-03-09 16:17:11 -0800 | [diff] [blame] | 767 | return true; |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 768 | |
| 769 | userfaultfd_ctx_get(ctx); |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 770 | atomic_inc(&ctx->mmap_changing); |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 771 | mmap_read_unlock(mm); |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 772 | |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 773 | msg_init(&ewq.msg); |
| 774 | |
Mike Rapoport | d811914 | 2017-02-24 14:56:02 -0800 | [diff] [blame] | 775 | ewq.msg.event = UFFD_EVENT_REMOVE; |
| 776 | ewq.msg.arg.remove.start = start; |
| 777 | ewq.msg.arg.remove.end = end; |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 778 | |
| 779 | userfaultfd_event_wait_completion(ctx, &ewq); |
| 780 | |
Andrea Arcangeli | 70ccb92 | 2017-03-09 16:17:11 -0800 | [diff] [blame] | 781 | return false; |
Pavel Emelyanov | 05ce772 | 2017-02-22 15:42:40 -0800 | [diff] [blame] | 782 | } |
| 783 | |
Mike Rapoport | 897ab3e | 2017-02-24 14:58:22 -0800 | [diff] [blame] | 784 | static bool has_unmap_ctx(struct userfaultfd_ctx *ctx, struct list_head *unmaps, |
| 785 | unsigned long start, unsigned long end) |
| 786 | { |
| 787 | struct userfaultfd_unmap_ctx *unmap_ctx; |
| 788 | |
| 789 | list_for_each_entry(unmap_ctx, unmaps, list) |
| 790 | if (unmap_ctx->ctx == ctx && unmap_ctx->start == start && |
| 791 | unmap_ctx->end == end) |
| 792 | return true; |
| 793 | |
| 794 | return false; |
| 795 | } |
| 796 | |
| 797 | int userfaultfd_unmap_prep(struct vm_area_struct *vma, |
| 798 | unsigned long start, unsigned long end, |
| 799 | struct list_head *unmaps) |
| 800 | { |
| 801 | for ( ; vma && vma->vm_start < end; vma = vma->vm_next) { |
| 802 | struct userfaultfd_unmap_ctx *unmap_ctx; |
| 803 | struct userfaultfd_ctx *ctx = vma->vm_userfaultfd_ctx.ctx; |
| 804 | |
| 805 | if (!ctx || !(ctx->features & UFFD_FEATURE_EVENT_UNMAP) || |
| 806 | has_unmap_ctx(ctx, unmaps, start, end)) |
| 807 | continue; |
| 808 | |
| 809 | unmap_ctx = kzalloc(sizeof(*unmap_ctx), GFP_KERNEL); |
| 810 | if (!unmap_ctx) |
| 811 | return -ENOMEM; |
| 812 | |
| 813 | userfaultfd_ctx_get(ctx); |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 814 | atomic_inc(&ctx->mmap_changing); |
Mike Rapoport | 897ab3e | 2017-02-24 14:58:22 -0800 | [diff] [blame] | 815 | unmap_ctx->ctx = ctx; |
| 816 | unmap_ctx->start = start; |
| 817 | unmap_ctx->end = end; |
| 818 | list_add_tail(&unmap_ctx->list, unmaps); |
| 819 | } |
| 820 | |
| 821 | return 0; |
| 822 | } |
| 823 | |
| 824 | void userfaultfd_unmap_complete(struct mm_struct *mm, struct list_head *uf) |
| 825 | { |
| 826 | struct userfaultfd_unmap_ctx *ctx, *n; |
| 827 | struct userfaultfd_wait_queue ewq; |
| 828 | |
| 829 | list_for_each_entry_safe(ctx, n, uf, list) { |
| 830 | msg_init(&ewq.msg); |
| 831 | |
| 832 | ewq.msg.event = UFFD_EVENT_UNMAP; |
| 833 | ewq.msg.arg.remove.start = ctx->start; |
| 834 | ewq.msg.arg.remove.end = ctx->end; |
| 835 | |
| 836 | userfaultfd_event_wait_completion(ctx->ctx, &ewq); |
| 837 | |
| 838 | list_del(&ctx->list); |
| 839 | kfree(ctx); |
| 840 | } |
| 841 | } |
| 842 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 843 | static int userfaultfd_release(struct inode *inode, struct file *file) |
| 844 | { |
| 845 | struct userfaultfd_ctx *ctx = file->private_data; |
| 846 | struct mm_struct *mm = ctx->mm; |
| 847 | struct vm_area_struct *vma, *prev; |
| 848 | /* len == 0 means wake all */ |
| 849 | struct userfaultfd_wake_range range = { .len = 0, }; |
| 850 | unsigned long new_flags; |
| 851 | |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 852 | WRITE_ONCE(ctx->released, true); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 853 | |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 854 | if (!mmget_not_zero(mm)) |
| 855 | goto wakeup; |
| 856 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 857 | /* |
| 858 | * Flush page faults out of all CPUs. NOTE: all page faults |
| 859 | * must be retried without returning VM_FAULT_SIGBUS if |
| 860 | * userfaultfd_ctx_get() succeeds but vma->vma_userfault_ctx |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 861 | * changes while handle_userfault released the mmap_lock. So |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 862 | * it's critical that released is set to true (above), before |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 863 | * taking the mmap_lock for writing. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 864 | */ |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 865 | mmap_write_lock(mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 866 | prev = NULL; |
| 867 | for (vma = mm->mmap; vma; vma = vma->vm_next) { |
| 868 | cond_resched(); |
| 869 | BUG_ON(!!vma->vm_userfaultfd_ctx.ctx ^ |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 870 | !!(vma->vm_flags & __VM_UFFD_FLAGS)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 871 | if (vma->vm_userfaultfd_ctx.ctx != ctx) { |
| 872 | prev = vma; |
| 873 | continue; |
| 874 | } |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 875 | new_flags = vma->vm_flags & ~__VM_UFFD_FLAGS; |
Jann Horn | 4d45e75 | 2020-10-15 20:13:00 -0700 | [diff] [blame] | 876 | prev = vma_merge(mm, prev, vma->vm_start, vma->vm_end, |
| 877 | new_flags, vma->anon_vma, |
| 878 | vma->vm_file, vma->vm_pgoff, |
| 879 | vma_policy(vma), |
| 880 | NULL_VM_UFFD_CTX); |
| 881 | if (prev) |
| 882 | vma = prev; |
| 883 | else |
| 884 | prev = vma; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 885 | vma->vm_flags = new_flags; |
| 886 | vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX; |
| 887 | } |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 888 | mmap_write_unlock(mm); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 889 | mmput(mm); |
| 890 | wakeup: |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 891 | /* |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 892 | * After no new page faults can wait on this fault_*wqh, flush |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 893 | * the last page faults that may have been already waiting on |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 894 | * the fault_*wqh. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 895 | */ |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 896 | spin_lock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | ac5be6b | 2015-09-22 14:58:49 -0700 | [diff] [blame] | 897 | __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL, &range); |
Matthew Wilcox | c430d1e | 2018-08-21 21:56:30 -0700 | [diff] [blame] | 898 | __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, &range); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 899 | spin_unlock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 900 | |
Mike Rapoport | 5a18b64 | 2017-08-02 13:32:24 -0700 | [diff] [blame] | 901 | /* Flush pending events that may still wait on event_wqh */ |
| 902 | wake_up_all(&ctx->event_wqh); |
| 903 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 904 | wake_up_poll(&ctx->fd_wqh, EPOLLHUP); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 905 | userfaultfd_ctx_put(ctx); |
| 906 | return 0; |
| 907 | } |
| 908 | |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 909 | /* fault_pending_wqh.lock must be hold by the caller */ |
Pavel Emelyanov | 6dcc27f | 2017-02-22 15:42:18 -0800 | [diff] [blame] | 910 | static inline struct userfaultfd_wait_queue *find_userfault_in( |
| 911 | wait_queue_head_t *wqh) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 912 | { |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 913 | wait_queue_entry_t *wq; |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 914 | struct userfaultfd_wait_queue *uwq; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 915 | |
Lance Roy | 456a737 | 2018-10-04 23:45:44 -0700 | [diff] [blame] | 916 | lockdep_assert_held(&wqh->lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 917 | |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 918 | uwq = NULL; |
Pavel Emelyanov | 6dcc27f | 2017-02-22 15:42:18 -0800 | [diff] [blame] | 919 | if (!waitqueue_active(wqh)) |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 920 | goto out; |
| 921 | /* walk in reverse to provide FIFO behavior to read userfaults */ |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 922 | wq = list_last_entry(&wqh->head, typeof(*wq), entry); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 923 | uwq = container_of(wq, struct userfaultfd_wait_queue, wq); |
| 924 | out: |
| 925 | return uwq; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 926 | } |
| 927 | |
Pavel Emelyanov | 6dcc27f | 2017-02-22 15:42:18 -0800 | [diff] [blame] | 928 | static inline struct userfaultfd_wait_queue *find_userfault( |
| 929 | struct userfaultfd_ctx *ctx) |
| 930 | { |
| 931 | return find_userfault_in(&ctx->fault_pending_wqh); |
| 932 | } |
| 933 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 934 | static inline struct userfaultfd_wait_queue *find_userfault_evt( |
| 935 | struct userfaultfd_ctx *ctx) |
| 936 | { |
| 937 | return find_userfault_in(&ctx->event_wqh); |
| 938 | } |
| 939 | |
Al Viro | 076ccb7 | 2017-07-03 01:02:18 -0400 | [diff] [blame] | 940 | static __poll_t userfaultfd_poll(struct file *file, poll_table *wait) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 941 | { |
| 942 | struct userfaultfd_ctx *ctx = file->private_data; |
Al Viro | 076ccb7 | 2017-07-03 01:02:18 -0400 | [diff] [blame] | 943 | __poll_t ret; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 944 | |
| 945 | poll_wait(file, &ctx->fd_wqh, wait); |
| 946 | |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 947 | if (!userfaultfd_is_initialized(ctx)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 948 | return EPOLLERR; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 949 | |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 950 | /* |
| 951 | * poll() never guarantees that read won't block. |
| 952 | * userfaults can be waken before they're read(). |
| 953 | */ |
| 954 | if (unlikely(!(file->f_flags & O_NONBLOCK))) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 955 | return EPOLLERR; |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 956 | /* |
| 957 | * lockless access to see if there are pending faults |
| 958 | * __pollwait last action is the add_wait_queue but |
| 959 | * the spin_unlock would allow the waitqueue_active to |
| 960 | * pass above the actual list_add inside |
| 961 | * add_wait_queue critical section. So use a full |
| 962 | * memory barrier to serialize the list_add write of |
| 963 | * add_wait_queue() with the waitqueue_active read |
| 964 | * below. |
| 965 | */ |
| 966 | ret = 0; |
| 967 | smp_mb(); |
| 968 | if (waitqueue_active(&ctx->fault_pending_wqh)) |
| 969 | ret = EPOLLIN; |
| 970 | else if (waitqueue_active(&ctx->event_wqh)) |
| 971 | ret = EPOLLIN; |
| 972 | |
| 973 | return ret; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 974 | } |
| 975 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 976 | static const struct file_operations userfaultfd_fops; |
| 977 | |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 978 | static int resolve_userfault_fork(struct userfaultfd_ctx *new, |
| 979 | struct inode *inode, |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 980 | struct uffd_msg *msg) |
| 981 | { |
| 982 | int fd; |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 983 | |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 984 | fd = anon_inode_getfd_secure("[userfaultfd]", &userfaultfd_fops, new, |
| 985 | O_RDWR | (new->flags & UFFD_SHARED_FCNTL_FLAGS), inode); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 986 | if (fd < 0) |
| 987 | return fd; |
| 988 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 989 | msg->arg.reserved.reserved1 = 0; |
| 990 | msg->arg.fork.ufd = fd; |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 991 | return 0; |
| 992 | } |
| 993 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 994 | static ssize_t userfaultfd_ctx_read(struct userfaultfd_ctx *ctx, int no_wait, |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 995 | struct uffd_msg *msg, struct inode *inode) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 996 | { |
| 997 | ssize_t ret; |
| 998 | DECLARE_WAITQUEUE(wait, current); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 999 | struct userfaultfd_wait_queue *uwq; |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1000 | /* |
| 1001 | * Handling fork event requires sleeping operations, so |
| 1002 | * we drop the event_wqh lock, then do these ops, then |
| 1003 | * lock it back and wake up the waiter. While the lock is |
| 1004 | * dropped the ewq may go away so we keep track of it |
| 1005 | * carefully. |
| 1006 | */ |
| 1007 | LIST_HEAD(fork_event); |
| 1008 | struct userfaultfd_ctx *fork_nctx = NULL; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1009 | |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1010 | /* always take the fd_wqh lock before the fault_pending_wqh lock */ |
Christoph Hellwig | ae62c16 | 2018-10-26 15:02:19 -0700 | [diff] [blame] | 1011 | spin_lock_irq(&ctx->fd_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1012 | __add_wait_queue(&ctx->fd_wqh, &wait); |
| 1013 | for (;;) { |
| 1014 | set_current_state(TASK_INTERRUPTIBLE); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1015 | spin_lock(&ctx->fault_pending_wqh.lock); |
| 1016 | uwq = find_userfault(ctx); |
| 1017 | if (uwq) { |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1018 | /* |
Andrea Arcangeli | 2c5b7e1 | 2015-09-04 15:47:23 -0700 | [diff] [blame] | 1019 | * Use a seqcount to repeat the lockless check |
| 1020 | * in wake_userfault() to avoid missing |
| 1021 | * wakeups because during the refile both |
| 1022 | * waitqueue could become empty if this is the |
| 1023 | * only userfault. |
| 1024 | */ |
| 1025 | write_seqcount_begin(&ctx->refile_seq); |
| 1026 | |
| 1027 | /* |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1028 | * The fault_pending_wqh.lock prevents the uwq |
| 1029 | * to disappear from under us. |
| 1030 | * |
| 1031 | * Refile this userfault from |
| 1032 | * fault_pending_wqh to fault_wqh, it's not |
| 1033 | * pending anymore after we read it. |
| 1034 | * |
| 1035 | * Use list_del() by hand (as |
| 1036 | * userfaultfd_wake_function also uses |
| 1037 | * list_del_init() by hand) to be sure nobody |
| 1038 | * changes __remove_wait_queue() to use |
| 1039 | * list_del_init() in turn breaking the |
| 1040 | * !list_empty_careful() check in |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 1041 | * handle_userfault(). The uwq->wq.head list |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1042 | * must never be empty at any time during the |
| 1043 | * refile, or the waitqueue could disappear |
| 1044 | * from under us. The "wait_queue_head_t" |
| 1045 | * parameter of __remove_wait_queue() is unused |
| 1046 | * anyway. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1047 | */ |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 1048 | list_del(&uwq->wq.entry); |
Matthew Wilcox | c430d1e | 2018-08-21 21:56:30 -0700 | [diff] [blame] | 1049 | add_wait_queue(&ctx->fault_wqh, &uwq->wq); |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1050 | |
Andrea Arcangeli | 2c5b7e1 | 2015-09-04 15:47:23 -0700 | [diff] [blame] | 1051 | write_seqcount_end(&ctx->refile_seq); |
| 1052 | |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1053 | /* careful to always initialize msg if ret == 0 */ |
| 1054 | *msg = uwq->msg; |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1055 | spin_unlock(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1056 | ret = 0; |
| 1057 | break; |
| 1058 | } |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1059 | spin_unlock(&ctx->fault_pending_wqh.lock); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 1060 | |
| 1061 | spin_lock(&ctx->event_wqh.lock); |
| 1062 | uwq = find_userfault_evt(ctx); |
| 1063 | if (uwq) { |
| 1064 | *msg = uwq->msg; |
| 1065 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1066 | if (uwq->msg.event == UFFD_EVENT_FORK) { |
| 1067 | fork_nctx = (struct userfaultfd_ctx *) |
| 1068 | (unsigned long) |
| 1069 | uwq->msg.arg.reserved.reserved1; |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 1070 | list_move(&uwq->wq.entry, &fork_event); |
Andrea Arcangeli | 384632e | 2017-10-03 16:15:38 -0700 | [diff] [blame] | 1071 | /* |
| 1072 | * fork_nctx can be freed as soon as |
| 1073 | * we drop the lock, unless we take a |
| 1074 | * reference on it. |
| 1075 | */ |
| 1076 | userfaultfd_ctx_get(fork_nctx); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1077 | spin_unlock(&ctx->event_wqh.lock); |
| 1078 | ret = 0; |
| 1079 | break; |
| 1080 | } |
| 1081 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 1082 | userfaultfd_event_complete(ctx, uwq); |
| 1083 | spin_unlock(&ctx->event_wqh.lock); |
| 1084 | ret = 0; |
| 1085 | break; |
| 1086 | } |
| 1087 | spin_unlock(&ctx->event_wqh.lock); |
| 1088 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1089 | if (signal_pending(current)) { |
| 1090 | ret = -ERESTARTSYS; |
| 1091 | break; |
| 1092 | } |
| 1093 | if (no_wait) { |
| 1094 | ret = -EAGAIN; |
| 1095 | break; |
| 1096 | } |
Christoph Hellwig | ae62c16 | 2018-10-26 15:02:19 -0700 | [diff] [blame] | 1097 | spin_unlock_irq(&ctx->fd_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1098 | schedule(); |
Christoph Hellwig | ae62c16 | 2018-10-26 15:02:19 -0700 | [diff] [blame] | 1099 | spin_lock_irq(&ctx->fd_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1100 | } |
| 1101 | __remove_wait_queue(&ctx->fd_wqh, &wait); |
| 1102 | __set_current_state(TASK_RUNNING); |
Christoph Hellwig | ae62c16 | 2018-10-26 15:02:19 -0700 | [diff] [blame] | 1103 | spin_unlock_irq(&ctx->fd_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1104 | |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1105 | if (!ret && msg->event == UFFD_EVENT_FORK) { |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 1106 | ret = resolve_userfault_fork(fork_nctx, inode, msg); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 1107 | spin_lock_irq(&ctx->event_wqh.lock); |
Andrea Arcangeli | 384632e | 2017-10-03 16:15:38 -0700 | [diff] [blame] | 1108 | if (!list_empty(&fork_event)) { |
| 1109 | /* |
| 1110 | * The fork thread didn't abort, so we can |
| 1111 | * drop the temporary refcount. |
| 1112 | */ |
| 1113 | userfaultfd_ctx_put(fork_nctx); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1114 | |
Andrea Arcangeli | 384632e | 2017-10-03 16:15:38 -0700 | [diff] [blame] | 1115 | uwq = list_first_entry(&fork_event, |
| 1116 | typeof(*uwq), |
| 1117 | wq.entry); |
| 1118 | /* |
| 1119 | * If fork_event list wasn't empty and in turn |
| 1120 | * the event wasn't already released by fork |
| 1121 | * (the event is allocated on fork kernel |
| 1122 | * stack), put the event back to its place in |
| 1123 | * the event_wq. fork_event head will be freed |
| 1124 | * as soon as we return so the event cannot |
| 1125 | * stay queued there no matter the current |
| 1126 | * "ret" value. |
| 1127 | */ |
| 1128 | list_del(&uwq->wq.entry); |
| 1129 | __add_wait_queue(&ctx->event_wqh, &uwq->wq); |
| 1130 | |
| 1131 | /* |
| 1132 | * Leave the event in the waitqueue and report |
| 1133 | * error to userland if we failed to resolve |
| 1134 | * the userfault fork. |
| 1135 | */ |
| 1136 | if (likely(!ret)) |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1137 | userfaultfd_event_complete(ctx, uwq); |
Andrea Arcangeli | 384632e | 2017-10-03 16:15:38 -0700 | [diff] [blame] | 1138 | } else { |
| 1139 | /* |
| 1140 | * Here the fork thread aborted and the |
| 1141 | * refcount from the fork thread on fork_nctx |
| 1142 | * has already been released. We still hold |
| 1143 | * the reference we took before releasing the |
| 1144 | * lock above. If resolve_userfault_fork |
| 1145 | * failed we've to drop it because the |
| 1146 | * fork_nctx has to be freed in such case. If |
| 1147 | * it succeeded we'll hold it because the new |
| 1148 | * uffd references it. |
| 1149 | */ |
| 1150 | if (ret) |
| 1151 | userfaultfd_ctx_put(fork_nctx); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1152 | } |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 1153 | spin_unlock_irq(&ctx->event_wqh.lock); |
Pavel Emelyanov | 893e26e | 2017-02-22 15:42:27 -0800 | [diff] [blame] | 1154 | } |
| 1155 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1156 | return ret; |
| 1157 | } |
| 1158 | |
| 1159 | static ssize_t userfaultfd_read(struct file *file, char __user *buf, |
| 1160 | size_t count, loff_t *ppos) |
| 1161 | { |
| 1162 | struct userfaultfd_ctx *ctx = file->private_data; |
| 1163 | ssize_t _ret, ret = 0; |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1164 | struct uffd_msg msg; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1165 | int no_wait = file->f_flags & O_NONBLOCK; |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 1166 | struct inode *inode = file_inode(file); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1167 | |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1168 | if (!userfaultfd_is_initialized(ctx)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1169 | return -EINVAL; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1170 | |
| 1171 | for (;;) { |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1172 | if (count < sizeof(msg)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1173 | return ret ? ret : -EINVAL; |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 1174 | _ret = userfaultfd_ctx_read(ctx, no_wait, &msg, inode); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1175 | if (_ret < 0) |
| 1176 | return ret ? ret : _ret; |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1177 | if (copy_to_user((__u64 __user *) buf, &msg, sizeof(msg))) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1178 | return ret ? ret : -EFAULT; |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1179 | ret += sizeof(msg); |
| 1180 | buf += sizeof(msg); |
| 1181 | count -= sizeof(msg); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1182 | /* |
| 1183 | * Allow to read more than one fault at time but only |
| 1184 | * block if waiting for the very first one. |
| 1185 | */ |
| 1186 | no_wait = O_NONBLOCK; |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | static void __wake_userfault(struct userfaultfd_ctx *ctx, |
| 1191 | struct userfaultfd_wake_range *range) |
| 1192 | { |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 1193 | spin_lock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1194 | /* wake all in the range and autoremove */ |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1195 | if (waitqueue_active(&ctx->fault_pending_wqh)) |
Andrea Arcangeli | ac5be6b | 2015-09-22 14:58:49 -0700 | [diff] [blame] | 1196 | __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL, |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 1197 | range); |
| 1198 | if (waitqueue_active(&ctx->fault_wqh)) |
Matthew Wilcox | c430d1e | 2018-08-21 21:56:30 -0700 | [diff] [blame] | 1199 | __wake_up(&ctx->fault_wqh, TASK_NORMAL, 1, range); |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 1200 | spin_unlock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | static __always_inline void wake_userfault(struct userfaultfd_ctx *ctx, |
| 1204 | struct userfaultfd_wake_range *range) |
| 1205 | { |
Andrea Arcangeli | 2c5b7e1 | 2015-09-04 15:47:23 -0700 | [diff] [blame] | 1206 | unsigned seq; |
| 1207 | bool need_wakeup; |
| 1208 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1209 | /* |
| 1210 | * To be sure waitqueue_active() is not reordered by the CPU |
| 1211 | * before the pagetable update, use an explicit SMP memory |
Michel Lespinasse | 3e4e28c | 2020-06-08 21:33:51 -0700 | [diff] [blame] | 1212 | * barrier here. PT lock release or mmap_read_unlock(mm) still |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1213 | * have release semantics that can allow the |
| 1214 | * waitqueue_active() to be reordered before the pte update. |
| 1215 | */ |
| 1216 | smp_mb(); |
| 1217 | |
| 1218 | /* |
| 1219 | * Use waitqueue_active because it's very frequent to |
| 1220 | * change the address space atomically even if there are no |
| 1221 | * userfaults yet. So we take the spinlock only when we're |
| 1222 | * sure we've userfaults to wake. |
| 1223 | */ |
Andrea Arcangeli | 2c5b7e1 | 2015-09-04 15:47:23 -0700 | [diff] [blame] | 1224 | do { |
| 1225 | seq = read_seqcount_begin(&ctx->refile_seq); |
| 1226 | need_wakeup = waitqueue_active(&ctx->fault_pending_wqh) || |
| 1227 | waitqueue_active(&ctx->fault_wqh); |
| 1228 | cond_resched(); |
| 1229 | } while (read_seqcount_retry(&ctx->refile_seq, seq)); |
| 1230 | if (need_wakeup) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1231 | __wake_userfault(ctx, range); |
| 1232 | } |
| 1233 | |
| 1234 | static __always_inline int validate_range(struct mm_struct *mm, |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1235 | __u64 start, __u64 len) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1236 | { |
| 1237 | __u64 task_size = mm->task_size; |
| 1238 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1239 | if (start & ~PAGE_MASK) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1240 | return -EINVAL; |
| 1241 | if (len & ~PAGE_MASK) |
| 1242 | return -EINVAL; |
| 1243 | if (!len) |
| 1244 | return -EINVAL; |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1245 | if (start < mmap_min_addr) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1246 | return -EINVAL; |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1247 | if (start >= task_size) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1248 | return -EINVAL; |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1249 | if (len > task_size - start) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1250 | return -EINVAL; |
| 1251 | return 0; |
| 1252 | } |
| 1253 | |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1254 | static inline bool vma_can_userfault(struct vm_area_struct *vma, |
| 1255 | unsigned long vm_flags) |
Mike Rapoport | ba6907d | 2017-02-22 15:43:22 -0800 | [diff] [blame] | 1256 | { |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1257 | /* FIXME: add WP support to hugetlbfs and shmem */ |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1258 | if (vm_flags & VM_UFFD_WP) { |
| 1259 | if (is_vm_hugetlb_page(vma) || vma_is_shmem(vma)) |
| 1260 | return false; |
| 1261 | } |
| 1262 | |
| 1263 | if (vm_flags & VM_UFFD_MINOR) { |
Axel Rasmussen | c949b09 | 2021-06-30 18:49:20 -0700 | [diff] [blame] | 1264 | if (!(is_vm_hugetlb_page(vma) || vma_is_shmem(vma))) |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1265 | return false; |
| 1266 | } |
| 1267 | |
| 1268 | return vma_is_anonymous(vma) || is_vm_hugetlb_page(vma) || |
| 1269 | vma_is_shmem(vma); |
Mike Rapoport | ba6907d | 2017-02-22 15:43:22 -0800 | [diff] [blame] | 1270 | } |
| 1271 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1272 | static int userfaultfd_register(struct userfaultfd_ctx *ctx, |
| 1273 | unsigned long arg) |
| 1274 | { |
| 1275 | struct mm_struct *mm = ctx->mm; |
| 1276 | struct vm_area_struct *vma, *prev, *cur; |
| 1277 | int ret; |
| 1278 | struct uffdio_register uffdio_register; |
| 1279 | struct uffdio_register __user *user_uffdio_register; |
| 1280 | unsigned long vm_flags, new_flags; |
| 1281 | bool found; |
Mike Rapoport | ce53e8e | 2017-09-06 16:23:12 -0700 | [diff] [blame] | 1282 | bool basic_ioctls; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1283 | unsigned long start, end, vma_end; |
| 1284 | |
| 1285 | user_uffdio_register = (struct uffdio_register __user *) arg; |
| 1286 | |
| 1287 | ret = -EFAULT; |
| 1288 | if (copy_from_user(&uffdio_register, user_uffdio_register, |
| 1289 | sizeof(uffdio_register)-sizeof(__u64))) |
| 1290 | goto out; |
| 1291 | |
| 1292 | ret = -EINVAL; |
| 1293 | if (!uffdio_register.mode) |
| 1294 | goto out; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1295 | if (uffdio_register.mode & ~UFFD_API_REGISTER_MODES) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1296 | goto out; |
| 1297 | vm_flags = 0; |
| 1298 | if (uffdio_register.mode & UFFDIO_REGISTER_MODE_MISSING) |
| 1299 | vm_flags |= VM_UFFD_MISSING; |
Peter Xu | 00b151f | 2021-06-30 18:49:06 -0700 | [diff] [blame] | 1300 | if (uffdio_register.mode & UFFDIO_REGISTER_MODE_WP) { |
| 1301 | #ifndef CONFIG_HAVE_ARCH_USERFAULTFD_WP |
| 1302 | goto out; |
| 1303 | #endif |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1304 | vm_flags |= VM_UFFD_WP; |
Peter Xu | 00b151f | 2021-06-30 18:49:06 -0700 | [diff] [blame] | 1305 | } |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1306 | if (uffdio_register.mode & UFFDIO_REGISTER_MODE_MINOR) { |
| 1307 | #ifndef CONFIG_HAVE_ARCH_USERFAULTFD_MINOR |
| 1308 | goto out; |
| 1309 | #endif |
| 1310 | vm_flags |= VM_UFFD_MINOR; |
| 1311 | } |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1312 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1313 | ret = validate_range(mm, uffdio_register.range.start, |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1314 | uffdio_register.range.len); |
| 1315 | if (ret) |
| 1316 | goto out; |
| 1317 | |
| 1318 | start = uffdio_register.range.start; |
| 1319 | end = start + uffdio_register.range.len; |
| 1320 | |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1321 | ret = -ENOMEM; |
| 1322 | if (!mmget_not_zero(mm)) |
| 1323 | goto out; |
| 1324 | |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 1325 | mmap_write_lock(mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1326 | vma = find_vma_prev(mm, start, &prev); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1327 | if (!vma) |
| 1328 | goto out_unlock; |
| 1329 | |
| 1330 | /* check that there's at least one vma in the range */ |
| 1331 | ret = -EINVAL; |
| 1332 | if (vma->vm_start >= end) |
| 1333 | goto out_unlock; |
| 1334 | |
| 1335 | /* |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 1336 | * If the first vma contains huge pages, make sure start address |
| 1337 | * is aligned to huge page size. |
| 1338 | */ |
| 1339 | if (is_vm_hugetlb_page(vma)) { |
| 1340 | unsigned long vma_hpagesize = vma_kernel_pagesize(vma); |
| 1341 | |
| 1342 | if (start & (vma_hpagesize - 1)) |
| 1343 | goto out_unlock; |
| 1344 | } |
| 1345 | |
| 1346 | /* |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1347 | * Search for not compatible vmas. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1348 | */ |
| 1349 | found = false; |
Mike Rapoport | ce53e8e | 2017-09-06 16:23:12 -0700 | [diff] [blame] | 1350 | basic_ioctls = false; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1351 | for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) { |
| 1352 | cond_resched(); |
| 1353 | |
| 1354 | BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^ |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1355 | !!(cur->vm_flags & __VM_UFFD_FLAGS)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1356 | |
| 1357 | /* check not compatible vmas */ |
| 1358 | ret = -EINVAL; |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1359 | if (!vma_can_userfault(cur, vm_flags)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1360 | goto out_unlock; |
Andrea Arcangeli | 29ec9066 | 2018-11-30 14:09:32 -0800 | [diff] [blame] | 1361 | |
| 1362 | /* |
| 1363 | * UFFDIO_COPY will fill file holes even without |
| 1364 | * PROT_WRITE. This check enforces that if this is a |
| 1365 | * MAP_SHARED, the process has write permission to the backing |
| 1366 | * file. If VM_MAYWRITE is set it also enforces that on a |
| 1367 | * MAP_SHARED vma: there is no F_WRITE_SEAL and no further |
| 1368 | * F_WRITE_SEAL can be taken until the vma is destroyed. |
| 1369 | */ |
| 1370 | ret = -EPERM; |
| 1371 | if (unlikely(!(cur->vm_flags & VM_MAYWRITE))) |
| 1372 | goto out_unlock; |
| 1373 | |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 1374 | /* |
| 1375 | * If this vma contains ending address, and huge pages |
| 1376 | * check alignment. |
| 1377 | */ |
| 1378 | if (is_vm_hugetlb_page(cur) && end <= cur->vm_end && |
| 1379 | end > cur->vm_start) { |
| 1380 | unsigned long vma_hpagesize = vma_kernel_pagesize(cur); |
| 1381 | |
| 1382 | ret = -EINVAL; |
| 1383 | |
| 1384 | if (end & (vma_hpagesize - 1)) |
| 1385 | goto out_unlock; |
| 1386 | } |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1387 | if ((vm_flags & VM_UFFD_WP) && !(cur->vm_flags & VM_MAYWRITE)) |
| 1388 | goto out_unlock; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1389 | |
| 1390 | /* |
| 1391 | * Check that this vma isn't already owned by a |
| 1392 | * different userfaultfd. We can't allow more than one |
| 1393 | * userfaultfd to own a single vma simultaneously or we |
| 1394 | * wouldn't know which one to deliver the userfaults to. |
| 1395 | */ |
| 1396 | ret = -EBUSY; |
| 1397 | if (cur->vm_userfaultfd_ctx.ctx && |
| 1398 | cur->vm_userfaultfd_ctx.ctx != ctx) |
| 1399 | goto out_unlock; |
| 1400 | |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 1401 | /* |
| 1402 | * Note vmas containing huge pages |
| 1403 | */ |
Mike Rapoport | ce53e8e | 2017-09-06 16:23:12 -0700 | [diff] [blame] | 1404 | if (is_vm_hugetlb_page(cur)) |
| 1405 | basic_ioctls = true; |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 1406 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1407 | found = true; |
| 1408 | } |
| 1409 | BUG_ON(!found); |
| 1410 | |
| 1411 | if (vma->vm_start < start) |
| 1412 | prev = vma; |
| 1413 | |
| 1414 | ret = 0; |
| 1415 | do { |
| 1416 | cond_resched(); |
| 1417 | |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1418 | BUG_ON(!vma_can_userfault(vma, vm_flags)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1419 | BUG_ON(vma->vm_userfaultfd_ctx.ctx && |
| 1420 | vma->vm_userfaultfd_ctx.ctx != ctx); |
Andrea Arcangeli | 29ec9066 | 2018-11-30 14:09:32 -0800 | [diff] [blame] | 1421 | WARN_ON(!(vma->vm_flags & VM_MAYWRITE)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1422 | |
| 1423 | /* |
| 1424 | * Nothing to do: this vma is already registered into this |
| 1425 | * userfaultfd and with the right tracking mode too. |
| 1426 | */ |
| 1427 | if (vma->vm_userfaultfd_ctx.ctx == ctx && |
| 1428 | (vma->vm_flags & vm_flags) == vm_flags) |
| 1429 | goto skip; |
| 1430 | |
| 1431 | if (vma->vm_start > start) |
| 1432 | start = vma->vm_start; |
| 1433 | vma_end = min(end, vma->vm_end); |
| 1434 | |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1435 | new_flags = (vma->vm_flags & ~__VM_UFFD_FLAGS) | vm_flags; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1436 | prev = vma_merge(mm, prev, start, vma_end, new_flags, |
| 1437 | vma->anon_vma, vma->vm_file, vma->vm_pgoff, |
| 1438 | vma_policy(vma), |
| 1439 | ((struct vm_userfaultfd_ctx){ ctx })); |
| 1440 | if (prev) { |
| 1441 | vma = prev; |
| 1442 | goto next; |
| 1443 | } |
| 1444 | if (vma->vm_start < start) { |
| 1445 | ret = split_vma(mm, vma, start, 1); |
| 1446 | if (ret) |
| 1447 | break; |
| 1448 | } |
| 1449 | if (vma->vm_end > end) { |
| 1450 | ret = split_vma(mm, vma, end, 0); |
| 1451 | if (ret) |
| 1452 | break; |
| 1453 | } |
| 1454 | next: |
| 1455 | /* |
| 1456 | * In the vma_merge() successful mprotect-like case 8: |
| 1457 | * the next vma was merged into the current one and |
| 1458 | * the current one has not been updated yet. |
| 1459 | */ |
| 1460 | vma->vm_flags = new_flags; |
| 1461 | vma->vm_userfaultfd_ctx.ctx = ctx; |
| 1462 | |
Peter Xu | 6dfeaff | 2021-05-04 18:33:13 -0700 | [diff] [blame] | 1463 | if (is_vm_hugetlb_page(vma) && uffd_disable_huge_pmd_share(vma)) |
| 1464 | hugetlb_unshare_all_pmds(vma); |
| 1465 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1466 | skip: |
| 1467 | prev = vma; |
| 1468 | start = vma->vm_end; |
| 1469 | vma = vma->vm_next; |
| 1470 | } while (vma && vma->vm_start < end); |
| 1471 | out_unlock: |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 1472 | mmap_write_unlock(mm); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1473 | mmput(mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1474 | if (!ret) { |
Peter Xu | 1481930 | 2020-04-06 20:06:29 -0700 | [diff] [blame] | 1475 | __u64 ioctls_out; |
| 1476 | |
| 1477 | ioctls_out = basic_ioctls ? UFFD_API_RANGE_IOCTLS_BASIC : |
| 1478 | UFFD_API_RANGE_IOCTLS; |
| 1479 | |
| 1480 | /* |
| 1481 | * Declare the WP ioctl only if the WP mode is |
| 1482 | * specified and all checks passed with the range |
| 1483 | */ |
| 1484 | if (!(uffdio_register.mode & UFFDIO_REGISTER_MODE_WP)) |
| 1485 | ioctls_out &= ~((__u64)1 << _UFFDIO_WRITEPROTECT); |
| 1486 | |
Axel Rasmussen | f619147 | 2021-05-04 18:35:49 -0700 | [diff] [blame] | 1487 | /* CONTINUE ioctl is only supported for MINOR ranges. */ |
| 1488 | if (!(uffdio_register.mode & UFFDIO_REGISTER_MODE_MINOR)) |
| 1489 | ioctls_out &= ~((__u64)1 << _UFFDIO_CONTINUE); |
| 1490 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1491 | /* |
| 1492 | * Now that we scanned all vmas we can already tell |
| 1493 | * userland which ioctls methods are guaranteed to |
| 1494 | * succeed on this range. |
| 1495 | */ |
Peter Xu | 1481930 | 2020-04-06 20:06:29 -0700 | [diff] [blame] | 1496 | if (put_user(ioctls_out, &user_uffdio_register->ioctls)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1497 | ret = -EFAULT; |
| 1498 | } |
| 1499 | out: |
| 1500 | return ret; |
| 1501 | } |
| 1502 | |
| 1503 | static int userfaultfd_unregister(struct userfaultfd_ctx *ctx, |
| 1504 | unsigned long arg) |
| 1505 | { |
| 1506 | struct mm_struct *mm = ctx->mm; |
| 1507 | struct vm_area_struct *vma, *prev, *cur; |
| 1508 | int ret; |
| 1509 | struct uffdio_range uffdio_unregister; |
| 1510 | unsigned long new_flags; |
| 1511 | bool found; |
| 1512 | unsigned long start, end, vma_end; |
| 1513 | const void __user *buf = (void __user *)arg; |
| 1514 | |
| 1515 | ret = -EFAULT; |
| 1516 | if (copy_from_user(&uffdio_unregister, buf, sizeof(uffdio_unregister))) |
| 1517 | goto out; |
| 1518 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1519 | ret = validate_range(mm, uffdio_unregister.start, |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1520 | uffdio_unregister.len); |
| 1521 | if (ret) |
| 1522 | goto out; |
| 1523 | |
| 1524 | start = uffdio_unregister.start; |
| 1525 | end = start + uffdio_unregister.len; |
| 1526 | |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1527 | ret = -ENOMEM; |
| 1528 | if (!mmget_not_zero(mm)) |
| 1529 | goto out; |
| 1530 | |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 1531 | mmap_write_lock(mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1532 | vma = find_vma_prev(mm, start, &prev); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1533 | if (!vma) |
| 1534 | goto out_unlock; |
| 1535 | |
| 1536 | /* check that there's at least one vma in the range */ |
| 1537 | ret = -EINVAL; |
| 1538 | if (vma->vm_start >= end) |
| 1539 | goto out_unlock; |
| 1540 | |
| 1541 | /* |
Mike Kravetz | cab350a | 2017-02-22 15:43:04 -0800 | [diff] [blame] | 1542 | * If the first vma contains huge pages, make sure start address |
| 1543 | * is aligned to huge page size. |
| 1544 | */ |
| 1545 | if (is_vm_hugetlb_page(vma)) { |
| 1546 | unsigned long vma_hpagesize = vma_kernel_pagesize(vma); |
| 1547 | |
| 1548 | if (start & (vma_hpagesize - 1)) |
| 1549 | goto out_unlock; |
| 1550 | } |
| 1551 | |
| 1552 | /* |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1553 | * Search for not compatible vmas. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1554 | */ |
| 1555 | found = false; |
| 1556 | ret = -EINVAL; |
| 1557 | for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) { |
| 1558 | cond_resched(); |
| 1559 | |
| 1560 | BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^ |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1561 | !!(cur->vm_flags & __VM_UFFD_FLAGS)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1562 | |
| 1563 | /* |
| 1564 | * Check not compatible vmas, not strictly required |
| 1565 | * here as not compatible vmas cannot have an |
| 1566 | * userfaultfd_ctx registered on them, but this |
| 1567 | * provides for more strict behavior to notice |
| 1568 | * unregistration errors. |
| 1569 | */ |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1570 | if (!vma_can_userfault(cur, cur->vm_flags)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1571 | goto out_unlock; |
| 1572 | |
| 1573 | found = true; |
| 1574 | } |
| 1575 | BUG_ON(!found); |
| 1576 | |
| 1577 | if (vma->vm_start < start) |
| 1578 | prev = vma; |
| 1579 | |
| 1580 | ret = 0; |
| 1581 | do { |
| 1582 | cond_resched(); |
| 1583 | |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1584 | BUG_ON(!vma_can_userfault(vma, vma->vm_flags)); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1585 | |
| 1586 | /* |
| 1587 | * Nothing to do: this vma is already registered into this |
| 1588 | * userfaultfd and with the right tracking mode too. |
| 1589 | */ |
| 1590 | if (!vma->vm_userfaultfd_ctx.ctx) |
| 1591 | goto skip; |
| 1592 | |
Andrea Arcangeli | 01e881f | 2018-12-14 14:17:17 -0800 | [diff] [blame] | 1593 | WARN_ON(!(vma->vm_flags & VM_MAYWRITE)); |
| 1594 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1595 | if (vma->vm_start > start) |
| 1596 | start = vma->vm_start; |
| 1597 | vma_end = min(end, vma->vm_end); |
| 1598 | |
Andrea Arcangeli | 09fa529 | 2017-02-22 15:42:46 -0800 | [diff] [blame] | 1599 | if (userfaultfd_missing(vma)) { |
| 1600 | /* |
| 1601 | * Wake any concurrent pending userfault while |
| 1602 | * we unregister, so they will not hang |
| 1603 | * permanently and it avoids userland to call |
| 1604 | * UFFDIO_WAKE explicitly. |
| 1605 | */ |
| 1606 | struct userfaultfd_wake_range range; |
| 1607 | range.start = start; |
| 1608 | range.len = vma_end - start; |
| 1609 | wake_userfault(vma->vm_userfaultfd_ctx.ctx, &range); |
| 1610 | } |
| 1611 | |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1612 | new_flags = vma->vm_flags & ~__VM_UFFD_FLAGS; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1613 | prev = vma_merge(mm, prev, start, vma_end, new_flags, |
| 1614 | vma->anon_vma, vma->vm_file, vma->vm_pgoff, |
| 1615 | vma_policy(vma), |
| 1616 | NULL_VM_UFFD_CTX); |
| 1617 | if (prev) { |
| 1618 | vma = prev; |
| 1619 | goto next; |
| 1620 | } |
| 1621 | if (vma->vm_start < start) { |
| 1622 | ret = split_vma(mm, vma, start, 1); |
| 1623 | if (ret) |
| 1624 | break; |
| 1625 | } |
| 1626 | if (vma->vm_end > end) { |
| 1627 | ret = split_vma(mm, vma, end, 0); |
| 1628 | if (ret) |
| 1629 | break; |
| 1630 | } |
| 1631 | next: |
| 1632 | /* |
| 1633 | * In the vma_merge() successful mprotect-like case 8: |
| 1634 | * the next vma was merged into the current one and |
| 1635 | * the current one has not been updated yet. |
| 1636 | */ |
| 1637 | vma->vm_flags = new_flags; |
| 1638 | vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX; |
| 1639 | |
| 1640 | skip: |
| 1641 | prev = vma; |
| 1642 | start = vma->vm_end; |
| 1643 | vma = vma->vm_next; |
| 1644 | } while (vma && vma->vm_start < end); |
| 1645 | out_unlock: |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 1646 | mmap_write_unlock(mm); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1647 | mmput(mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1648 | out: |
| 1649 | return ret; |
| 1650 | } |
| 1651 | |
| 1652 | /* |
Andrea Arcangeli | ba85c70 | 2015-09-04 15:46:41 -0700 | [diff] [blame] | 1653 | * userfaultfd_wake may be used in combination with the |
| 1654 | * UFFDIO_*_MODE_DONTWAKE to wakeup userfaults in batches. |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1655 | */ |
| 1656 | static int userfaultfd_wake(struct userfaultfd_ctx *ctx, |
| 1657 | unsigned long arg) |
| 1658 | { |
| 1659 | int ret; |
| 1660 | struct uffdio_range uffdio_wake; |
| 1661 | struct userfaultfd_wake_range range; |
| 1662 | const void __user *buf = (void __user *)arg; |
| 1663 | |
| 1664 | ret = -EFAULT; |
| 1665 | if (copy_from_user(&uffdio_wake, buf, sizeof(uffdio_wake))) |
| 1666 | goto out; |
| 1667 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1668 | ret = validate_range(ctx->mm, uffdio_wake.start, uffdio_wake.len); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1669 | if (ret) |
| 1670 | goto out; |
| 1671 | |
| 1672 | range.start = uffdio_wake.start; |
| 1673 | range.len = uffdio_wake.len; |
| 1674 | |
| 1675 | /* |
| 1676 | * len == 0 means wake all and we don't want to wake all here, |
| 1677 | * so check it again to be sure. |
| 1678 | */ |
| 1679 | VM_BUG_ON(!range.len); |
| 1680 | |
| 1681 | wake_userfault(ctx, &range); |
| 1682 | ret = 0; |
| 1683 | |
| 1684 | out: |
| 1685 | return ret; |
| 1686 | } |
| 1687 | |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1688 | static int userfaultfd_copy(struct userfaultfd_ctx *ctx, |
| 1689 | unsigned long arg) |
| 1690 | { |
| 1691 | __s64 ret; |
| 1692 | struct uffdio_copy uffdio_copy; |
| 1693 | struct uffdio_copy __user *user_uffdio_copy; |
| 1694 | struct userfaultfd_wake_range range; |
| 1695 | |
| 1696 | user_uffdio_copy = (struct uffdio_copy __user *) arg; |
| 1697 | |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 1698 | ret = -EAGAIN; |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 1699 | if (atomic_read(&ctx->mmap_changing)) |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 1700 | goto out; |
| 1701 | |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1702 | ret = -EFAULT; |
| 1703 | if (copy_from_user(&uffdio_copy, user_uffdio_copy, |
| 1704 | /* don't copy "copy" last field */ |
| 1705 | sizeof(uffdio_copy)-sizeof(__s64))) |
| 1706 | goto out; |
| 1707 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1708 | ret = validate_range(ctx->mm, uffdio_copy.dst, uffdio_copy.len); |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1709 | if (ret) |
| 1710 | goto out; |
| 1711 | /* |
| 1712 | * double check for wraparound just in case. copy_from_user() |
| 1713 | * will later check uffdio_copy.src + uffdio_copy.len to fit |
| 1714 | * in the userland range. |
| 1715 | */ |
| 1716 | ret = -EINVAL; |
| 1717 | if (uffdio_copy.src + uffdio_copy.len <= uffdio_copy.src) |
| 1718 | goto out; |
Andrea Arcangeli | 72981e0 | 2020-04-06 20:05:41 -0700 | [diff] [blame] | 1719 | if (uffdio_copy.mode & ~(UFFDIO_COPY_MODE_DONTWAKE|UFFDIO_COPY_MODE_WP)) |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1720 | goto out; |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1721 | if (mmget_not_zero(ctx->mm)) { |
| 1722 | ret = mcopy_atomic(ctx->mm, uffdio_copy.dst, uffdio_copy.src, |
Andrea Arcangeli | 72981e0 | 2020-04-06 20:05:41 -0700 | [diff] [blame] | 1723 | uffdio_copy.len, &ctx->mmap_changing, |
| 1724 | uffdio_copy.mode); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1725 | mmput(ctx->mm); |
Mike Rapoport | 9633318 | 2017-02-24 14:58:31 -0800 | [diff] [blame] | 1726 | } else { |
Mike Rapoport | e86b298 | 2017-08-10 15:24:32 -0700 | [diff] [blame] | 1727 | return -ESRCH; |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1728 | } |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1729 | if (unlikely(put_user(ret, &user_uffdio_copy->copy))) |
| 1730 | return -EFAULT; |
| 1731 | if (ret < 0) |
| 1732 | goto out; |
| 1733 | BUG_ON(!ret); |
| 1734 | /* len == 0 would wake all */ |
| 1735 | range.len = ret; |
| 1736 | if (!(uffdio_copy.mode & UFFDIO_COPY_MODE_DONTWAKE)) { |
| 1737 | range.start = uffdio_copy.dst; |
| 1738 | wake_userfault(ctx, &range); |
| 1739 | } |
| 1740 | ret = range.len == uffdio_copy.len ? 0 : -EAGAIN; |
| 1741 | out: |
| 1742 | return ret; |
| 1743 | } |
| 1744 | |
| 1745 | static int userfaultfd_zeropage(struct userfaultfd_ctx *ctx, |
| 1746 | unsigned long arg) |
| 1747 | { |
| 1748 | __s64 ret; |
| 1749 | struct uffdio_zeropage uffdio_zeropage; |
| 1750 | struct uffdio_zeropage __user *user_uffdio_zeropage; |
| 1751 | struct userfaultfd_wake_range range; |
| 1752 | |
| 1753 | user_uffdio_zeropage = (struct uffdio_zeropage __user *) arg; |
| 1754 | |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 1755 | ret = -EAGAIN; |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 1756 | if (atomic_read(&ctx->mmap_changing)) |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 1757 | goto out; |
| 1758 | |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1759 | ret = -EFAULT; |
| 1760 | if (copy_from_user(&uffdio_zeropage, user_uffdio_zeropage, |
| 1761 | /* don't copy "zeropage" last field */ |
| 1762 | sizeof(uffdio_zeropage)-sizeof(__s64))) |
| 1763 | goto out; |
| 1764 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1765 | ret = validate_range(ctx->mm, uffdio_zeropage.range.start, |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1766 | uffdio_zeropage.range.len); |
| 1767 | if (ret) |
| 1768 | goto out; |
| 1769 | ret = -EINVAL; |
| 1770 | if (uffdio_zeropage.mode & ~UFFDIO_ZEROPAGE_MODE_DONTWAKE) |
| 1771 | goto out; |
| 1772 | |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1773 | if (mmget_not_zero(ctx->mm)) { |
| 1774 | ret = mfill_zeropage(ctx->mm, uffdio_zeropage.range.start, |
Mike Rapoport | df2cc96 | 2018-06-07 17:09:25 -0700 | [diff] [blame] | 1775 | uffdio_zeropage.range.len, |
| 1776 | &ctx->mmap_changing); |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1777 | mmput(ctx->mm); |
Mike Rapoport | 9d95aa4 | 2017-08-02 13:32:15 -0700 | [diff] [blame] | 1778 | } else { |
Mike Rapoport | e86b298 | 2017-08-10 15:24:32 -0700 | [diff] [blame] | 1779 | return -ESRCH; |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 1780 | } |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1781 | if (unlikely(put_user(ret, &user_uffdio_zeropage->zeropage))) |
| 1782 | return -EFAULT; |
| 1783 | if (ret < 0) |
| 1784 | goto out; |
| 1785 | /* len == 0 would wake all */ |
| 1786 | BUG_ON(!ret); |
| 1787 | range.len = ret; |
| 1788 | if (!(uffdio_zeropage.mode & UFFDIO_ZEROPAGE_MODE_DONTWAKE)) { |
| 1789 | range.start = uffdio_zeropage.range.start; |
| 1790 | wake_userfault(ctx, &range); |
| 1791 | } |
| 1792 | ret = range.len == uffdio_zeropage.range.len ? 0 : -EAGAIN; |
| 1793 | out: |
| 1794 | return ret; |
| 1795 | } |
| 1796 | |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1797 | static int userfaultfd_writeprotect(struct userfaultfd_ctx *ctx, |
| 1798 | unsigned long arg) |
| 1799 | { |
| 1800 | int ret; |
| 1801 | struct uffdio_writeprotect uffdio_wp; |
| 1802 | struct uffdio_writeprotect __user *user_uffdio_wp; |
| 1803 | struct userfaultfd_wake_range range; |
Peter Xu | 23080e2 | 2020-04-06 20:06:20 -0700 | [diff] [blame] | 1804 | bool mode_wp, mode_dontwake; |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1805 | |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 1806 | if (atomic_read(&ctx->mmap_changing)) |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1807 | return -EAGAIN; |
| 1808 | |
| 1809 | user_uffdio_wp = (struct uffdio_writeprotect __user *) arg; |
| 1810 | |
| 1811 | if (copy_from_user(&uffdio_wp, user_uffdio_wp, |
| 1812 | sizeof(struct uffdio_writeprotect))) |
| 1813 | return -EFAULT; |
| 1814 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1815 | ret = validate_range(ctx->mm, uffdio_wp.range.start, |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1816 | uffdio_wp.range.len); |
| 1817 | if (ret) |
| 1818 | return ret; |
| 1819 | |
| 1820 | if (uffdio_wp.mode & ~(UFFDIO_WRITEPROTECT_MODE_DONTWAKE | |
| 1821 | UFFDIO_WRITEPROTECT_MODE_WP)) |
| 1822 | return -EINVAL; |
Peter Xu | 23080e2 | 2020-04-06 20:06:20 -0700 | [diff] [blame] | 1823 | |
| 1824 | mode_wp = uffdio_wp.mode & UFFDIO_WRITEPROTECT_MODE_WP; |
| 1825 | mode_dontwake = uffdio_wp.mode & UFFDIO_WRITEPROTECT_MODE_DONTWAKE; |
| 1826 | |
| 1827 | if (mode_wp && mode_dontwake) |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1828 | return -EINVAL; |
| 1829 | |
| 1830 | ret = mwriteprotect_range(ctx->mm, uffdio_wp.range.start, |
Peter Xu | 23080e2 | 2020-04-06 20:06:20 -0700 | [diff] [blame] | 1831 | uffdio_wp.range.len, mode_wp, |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1832 | &ctx->mmap_changing); |
| 1833 | if (ret) |
| 1834 | return ret; |
| 1835 | |
Peter Xu | 23080e2 | 2020-04-06 20:06:20 -0700 | [diff] [blame] | 1836 | if (!mode_wp && !mode_dontwake) { |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1837 | range.start = uffdio_wp.range.start; |
| 1838 | range.len = uffdio_wp.range.len; |
| 1839 | wake_userfault(ctx, &range); |
| 1840 | } |
| 1841 | return ret; |
| 1842 | } |
| 1843 | |
Axel Rasmussen | f619147 | 2021-05-04 18:35:49 -0700 | [diff] [blame] | 1844 | static int userfaultfd_continue(struct userfaultfd_ctx *ctx, unsigned long arg) |
| 1845 | { |
| 1846 | __s64 ret; |
| 1847 | struct uffdio_continue uffdio_continue; |
| 1848 | struct uffdio_continue __user *user_uffdio_continue; |
| 1849 | struct userfaultfd_wake_range range; |
| 1850 | |
| 1851 | user_uffdio_continue = (struct uffdio_continue __user *)arg; |
| 1852 | |
| 1853 | ret = -EAGAIN; |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 1854 | if (atomic_read(&ctx->mmap_changing)) |
Axel Rasmussen | f619147 | 2021-05-04 18:35:49 -0700 | [diff] [blame] | 1855 | goto out; |
| 1856 | |
| 1857 | ret = -EFAULT; |
| 1858 | if (copy_from_user(&uffdio_continue, user_uffdio_continue, |
| 1859 | /* don't copy the output fields */ |
| 1860 | sizeof(uffdio_continue) - (sizeof(__s64)))) |
| 1861 | goto out; |
| 1862 | |
Peter Collingbourne | e71e2ac | 2021-07-23 15:50:01 -0700 | [diff] [blame] | 1863 | ret = validate_range(ctx->mm, uffdio_continue.range.start, |
Axel Rasmussen | f619147 | 2021-05-04 18:35:49 -0700 | [diff] [blame] | 1864 | uffdio_continue.range.len); |
| 1865 | if (ret) |
| 1866 | goto out; |
| 1867 | |
| 1868 | ret = -EINVAL; |
| 1869 | /* double check for wraparound just in case. */ |
| 1870 | if (uffdio_continue.range.start + uffdio_continue.range.len <= |
| 1871 | uffdio_continue.range.start) { |
| 1872 | goto out; |
| 1873 | } |
| 1874 | if (uffdio_continue.mode & ~UFFDIO_CONTINUE_MODE_DONTWAKE) |
| 1875 | goto out; |
| 1876 | |
| 1877 | if (mmget_not_zero(ctx->mm)) { |
| 1878 | ret = mcopy_continue(ctx->mm, uffdio_continue.range.start, |
| 1879 | uffdio_continue.range.len, |
| 1880 | &ctx->mmap_changing); |
| 1881 | mmput(ctx->mm); |
| 1882 | } else { |
| 1883 | return -ESRCH; |
| 1884 | } |
| 1885 | |
| 1886 | if (unlikely(put_user(ret, &user_uffdio_continue->mapped))) |
| 1887 | return -EFAULT; |
| 1888 | if (ret < 0) |
| 1889 | goto out; |
| 1890 | |
| 1891 | /* len == 0 would wake all */ |
| 1892 | BUG_ON(!ret); |
| 1893 | range.len = ret; |
| 1894 | if (!(uffdio_continue.mode & UFFDIO_CONTINUE_MODE_DONTWAKE)) { |
| 1895 | range.start = uffdio_continue.range.start; |
| 1896 | wake_userfault(ctx, &range); |
| 1897 | } |
| 1898 | ret = range.len == uffdio_continue.range.len ? 0 : -EAGAIN; |
| 1899 | |
| 1900 | out: |
| 1901 | return ret; |
| 1902 | } |
| 1903 | |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 1904 | static inline unsigned int uffd_ctx_features(__u64 user_features) |
| 1905 | { |
| 1906 | /* |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1907 | * For the current set of features the bits just coincide. Set |
| 1908 | * UFFD_FEATURE_INITIALIZED to mark the features as enabled. |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 1909 | */ |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1910 | return (unsigned int)user_features | UFFD_FEATURE_INITIALIZED; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 1911 | } |
| 1912 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1913 | /* |
| 1914 | * userland asks for a certain API version and we return which bits |
| 1915 | * and ioctl commands are implemented in this kernel for such API |
| 1916 | * version or -EINVAL if unknown. |
| 1917 | */ |
| 1918 | static int userfaultfd_api(struct userfaultfd_ctx *ctx, |
| 1919 | unsigned long arg) |
| 1920 | { |
| 1921 | struct uffdio_api uffdio_api; |
| 1922 | void __user *buf = (void __user *)arg; |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1923 | unsigned int ctx_features; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1924 | int ret; |
Andrea Arcangeli | 6560314 | 2017-02-22 15:42:24 -0800 | [diff] [blame] | 1925 | __u64 features; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1926 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1927 | ret = -EFAULT; |
Andrea Arcangeli | a9b85f9 | 2015-09-04 15:46:37 -0700 | [diff] [blame] | 1928 | if (copy_from_user(&uffdio_api, buf, sizeof(uffdio_api))) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1929 | goto out; |
Andrea Arcangeli | 6560314 | 2017-02-22 15:42:24 -0800 | [diff] [blame] | 1930 | features = uffdio_api.features; |
Mike Rapoport | 3c1c24d | 2019-11-30 17:58:01 -0800 | [diff] [blame] | 1931 | ret = -EINVAL; |
| 1932 | if (uffdio_api.api != UFFD_API || (features & ~UFFD_API_FEATURES)) |
| 1933 | goto err_out; |
| 1934 | ret = -EPERM; |
| 1935 | if ((features & UFFD_FEATURE_EVENT_FORK) && !capable(CAP_SYS_PTRACE)) |
| 1936 | goto err_out; |
Andrea Arcangeli | 6560314 | 2017-02-22 15:42:24 -0800 | [diff] [blame] | 1937 | /* report all available features and ioctls to userland */ |
| 1938 | uffdio_api.features = UFFD_API_FEATURES; |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1939 | #ifndef CONFIG_HAVE_ARCH_USERFAULTFD_MINOR |
Axel Rasmussen | 964ab00 | 2021-06-30 18:49:27 -0700 | [diff] [blame] | 1940 | uffdio_api.features &= |
| 1941 | ~(UFFD_FEATURE_MINOR_HUGETLBFS | UFFD_FEATURE_MINOR_SHMEM); |
Axel Rasmussen | 7677f7f | 2021-05-04 18:35:36 -0700 | [diff] [blame] | 1942 | #endif |
Peter Xu | 00b151f | 2021-06-30 18:49:06 -0700 | [diff] [blame] | 1943 | #ifndef CONFIG_HAVE_ARCH_USERFAULTFD_WP |
| 1944 | uffdio_api.features &= ~UFFD_FEATURE_PAGEFAULT_FLAG_WP; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1945 | #endif |
| 1946 | uffdio_api.ioctls = UFFD_API_IOCTLS; |
| 1947 | ret = -EFAULT; |
| 1948 | if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api))) |
| 1949 | goto out; |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1950 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1951 | /* only enable the requested features for this uffd context */ |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1952 | ctx_features = uffd_ctx_features(features); |
| 1953 | ret = -EINVAL; |
| 1954 | if (cmpxchg(&ctx->features, 0, ctx_features) != 0) |
| 1955 | goto err_out; |
| 1956 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1957 | ret = 0; |
| 1958 | out: |
| 1959 | return ret; |
| 1960 | err_out: |
| 1961 | memset(&uffdio_api, 0, sizeof(uffdio_api)); |
| 1962 | if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api))) |
| 1963 | ret = -EFAULT; |
| 1964 | goto out; |
| 1965 | } |
| 1966 | |
| 1967 | static long userfaultfd_ioctl(struct file *file, unsigned cmd, |
Andrea Arcangeli | e6485a4 | 2015-09-04 15:47:15 -0700 | [diff] [blame] | 1968 | unsigned long arg) |
| 1969 | { |
| 1970 | int ret = -EINVAL; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1971 | struct userfaultfd_ctx *ctx = file->private_data; |
| 1972 | |
Nadav Amit | 22e5fe2 | 2021-09-02 14:58:59 -0700 | [diff] [blame] | 1973 | if (cmd != UFFDIO_API && !userfaultfd_is_initialized(ctx)) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1974 | return -EINVAL; |
| 1975 | |
| 1976 | switch(cmd) { |
| 1977 | case UFFDIO_API: |
| 1978 | ret = userfaultfd_api(ctx, arg); |
| 1979 | break; |
| 1980 | case UFFDIO_REGISTER: |
| 1981 | ret = userfaultfd_register(ctx, arg); |
| 1982 | break; |
| 1983 | case UFFDIO_UNREGISTER: |
| 1984 | ret = userfaultfd_unregister(ctx, arg); |
| 1985 | break; |
| 1986 | case UFFDIO_WAKE: |
Andrea Arcangeli | ad465cae | 2015-09-04 15:47:11 -0700 | [diff] [blame] | 1987 | ret = userfaultfd_wake(ctx, arg); |
| 1988 | break; |
| 1989 | case UFFDIO_COPY: |
| 1990 | ret = userfaultfd_copy(ctx, arg); |
| 1991 | break; |
| 1992 | case UFFDIO_ZEROPAGE: |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 1993 | ret = userfaultfd_zeropage(ctx, arg); |
| 1994 | break; |
Andrea Arcangeli | 63b2d41 | 2020-04-06 20:06:12 -0700 | [diff] [blame] | 1995 | case UFFDIO_WRITEPROTECT: |
| 1996 | ret = userfaultfd_writeprotect(ctx, arg); |
| 1997 | break; |
Axel Rasmussen | f619147 | 2021-05-04 18:35:49 -0700 | [diff] [blame] | 1998 | case UFFDIO_CONTINUE: |
| 1999 | ret = userfaultfd_continue(ctx, arg); |
| 2000 | break; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2001 | } |
| 2002 | return ret; |
| 2003 | } |
| 2004 | |
| 2005 | #ifdef CONFIG_PROC_FS |
| 2006 | static void userfaultfd_show_fdinfo(struct seq_file *m, struct file *f) |
| 2007 | { |
| 2008 | struct userfaultfd_ctx *ctx = f->private_data; |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 2009 | wait_queue_entry_t *wq; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2010 | unsigned long pending = 0, total = 0; |
| 2011 | |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 2012 | spin_lock_irq(&ctx->fault_pending_wqh.lock); |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 2013 | list_for_each_entry(wq, &ctx->fault_pending_wqh.head, entry) { |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 2014 | pending++; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2015 | total++; |
| 2016 | } |
Ingo Molnar | 2055da9 | 2017-06-20 12:06:46 +0200 | [diff] [blame] | 2017 | list_for_each_entry(wq, &ctx->fault_wqh.head, entry) { |
Andrea Arcangeli | 15b726e | 2015-09-04 15:46:44 -0700 | [diff] [blame] | 2018 | total++; |
| 2019 | } |
Eric Biggers | cbcfa13 | 2019-07-04 15:14:39 -0700 | [diff] [blame] | 2020 | spin_unlock_irq(&ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2021 | |
| 2022 | /* |
| 2023 | * If more protocols will be added, there will be all shown |
| 2024 | * separated by a space. Like this: |
| 2025 | * protocols: aa:... bb:... |
| 2026 | */ |
| 2027 | seq_printf(m, "pending:\t%lu\ntotal:\t%lu\nAPI:\t%Lx:%x:%Lx\n", |
Mike Rapoport | 045098e | 2017-04-07 16:04:42 -0700 | [diff] [blame] | 2028 | pending, total, UFFD_API, ctx->features, |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2029 | UFFD_API_IOCTLS|UFFD_API_RANGE_IOCTLS); |
| 2030 | } |
| 2031 | #endif |
| 2032 | |
| 2033 | static const struct file_operations userfaultfd_fops = { |
| 2034 | #ifdef CONFIG_PROC_FS |
| 2035 | .show_fdinfo = userfaultfd_show_fdinfo, |
| 2036 | #endif |
| 2037 | .release = userfaultfd_release, |
| 2038 | .poll = userfaultfd_poll, |
| 2039 | .read = userfaultfd_read, |
| 2040 | .unlocked_ioctl = userfaultfd_ioctl, |
Arnd Bergmann | 1832f2d | 2018-09-11 21:59:08 +0200 | [diff] [blame] | 2041 | .compat_ioctl = compat_ptr_ioctl, |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2042 | .llseek = noop_llseek, |
| 2043 | }; |
| 2044 | |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2045 | static void init_once_userfaultfd_ctx(void *mem) |
| 2046 | { |
| 2047 | struct userfaultfd_ctx *ctx = (struct userfaultfd_ctx *) mem; |
| 2048 | |
| 2049 | init_waitqueue_head(&ctx->fault_pending_wqh); |
| 2050 | init_waitqueue_head(&ctx->fault_wqh); |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 2051 | init_waitqueue_head(&ctx->event_wqh); |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2052 | init_waitqueue_head(&ctx->fd_wqh); |
Ahmed S. Darwish | 2ca97ac | 2020-07-20 17:55:28 +0200 | [diff] [blame] | 2053 | seqcount_spinlock_init(&ctx->refile_seq, &ctx->fault_pending_wqh.lock); |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2054 | } |
| 2055 | |
Eric Biggers | 284cd24 | 2018-01-31 16:19:48 -0800 | [diff] [blame] | 2056 | SYSCALL_DEFINE1(userfaultfd, int, flags) |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2057 | { |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2058 | struct userfaultfd_ctx *ctx; |
Eric Biggers | 284cd24 | 2018-01-31 16:19:48 -0800 | [diff] [blame] | 2059 | int fd; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2060 | |
Lokesh Gidra | d0d4730 | 2020-12-14 19:13:54 -0800 | [diff] [blame] | 2061 | if (!sysctl_unprivileged_userfaultfd && |
| 2062 | (flags & UFFD_USER_MODE_ONLY) == 0 && |
| 2063 | !capable(CAP_SYS_PTRACE)) { |
| 2064 | printk_once(KERN_WARNING "uffd: Set unprivileged_userfaultfd " |
| 2065 | "sysctl knob to 1 if kernel faults must be handled " |
| 2066 | "without obtaining CAP_SYS_PTRACE capability\n"); |
Peter Xu | cefdca0 | 2019-05-13 17:16:41 -0700 | [diff] [blame] | 2067 | return -EPERM; |
Lokesh Gidra | d0d4730 | 2020-12-14 19:13:54 -0800 | [diff] [blame] | 2068 | } |
Peter Xu | cefdca0 | 2019-05-13 17:16:41 -0700 | [diff] [blame] | 2069 | |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2070 | BUG_ON(!current->mm); |
| 2071 | |
| 2072 | /* Check the UFFD_* constants for consistency. */ |
Lokesh Gidra | 37cd057 | 2020-12-14 19:13:49 -0800 | [diff] [blame] | 2073 | BUILD_BUG_ON(UFFD_USER_MODE_ONLY & UFFD_SHARED_FCNTL_FLAGS); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2074 | BUILD_BUG_ON(UFFD_CLOEXEC != O_CLOEXEC); |
| 2075 | BUILD_BUG_ON(UFFD_NONBLOCK != O_NONBLOCK); |
| 2076 | |
Lokesh Gidra | 37cd057 | 2020-12-14 19:13:49 -0800 | [diff] [blame] | 2077 | if (flags & ~(UFFD_SHARED_FCNTL_FLAGS | UFFD_USER_MODE_ONLY)) |
Eric Biggers | 284cd24 | 2018-01-31 16:19:48 -0800 | [diff] [blame] | 2078 | return -EINVAL; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2079 | |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2080 | ctx = kmem_cache_alloc(userfaultfd_ctx_cachep, GFP_KERNEL); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2081 | if (!ctx) |
Eric Biggers | 284cd24 | 2018-01-31 16:19:48 -0800 | [diff] [blame] | 2082 | return -ENOMEM; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2083 | |
Eric Biggers | ca88042 | 2018-12-28 00:34:43 -0800 | [diff] [blame] | 2084 | refcount_set(&ctx->refcount, 1); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2085 | ctx->flags = flags; |
Pavel Emelyanov | 9cd75c3 | 2017-02-22 15:42:21 -0800 | [diff] [blame] | 2086 | ctx->features = 0; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2087 | ctx->released = false; |
Nadav Amit | a759a90 | 2021-09-02 14:58:56 -0700 | [diff] [blame] | 2088 | atomic_set(&ctx->mmap_changing, 0); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2089 | ctx->mm = current->mm; |
| 2090 | /* prevent the mm struct to be freed */ |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 2091 | mmgrab(ctx->mm); |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2092 | |
Daniel Colascione | b537900 | 2021-01-08 14:22:23 -0800 | [diff] [blame] | 2093 | fd = anon_inode_getfd_secure("[userfaultfd]", &userfaultfd_fops, ctx, |
| 2094 | O_RDWR | (flags & UFFD_SHARED_FCNTL_FLAGS), NULL); |
Eric Biggers | 284cd24 | 2018-01-31 16:19:48 -0800 | [diff] [blame] | 2095 | if (fd < 0) { |
Oleg Nesterov | d2005e3 | 2016-05-20 16:58:36 -0700 | [diff] [blame] | 2096 | mmdrop(ctx->mm); |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2097 | kmem_cache_free(userfaultfd_ctx_cachep, ctx); |
Eric Biggers | c03e946 | 2015-09-17 16:01:54 -0700 | [diff] [blame] | 2098 | } |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2099 | return fd; |
Andrea Arcangeli | 86039bd | 2015-09-04 15:46:31 -0700 | [diff] [blame] | 2100 | } |
Andrea Arcangeli | 3004ec9 | 2015-09-04 15:46:48 -0700 | [diff] [blame] | 2101 | |
| 2102 | static int __init userfaultfd_init(void) |
| 2103 | { |
| 2104 | userfaultfd_ctx_cachep = kmem_cache_create("userfaultfd_ctx_cache", |
| 2105 | sizeof(struct userfaultfd_ctx), |
| 2106 | 0, |
| 2107 | SLAB_HWCACHE_ALIGN|SLAB_PANIC, |
| 2108 | init_once_userfaultfd_ctx); |
| 2109 | return 0; |
| 2110 | } |
| 2111 | __initcall(userfaultfd_init); |