blob: a79e64f642085af4d4ef0b790cf49c0c2fd9c1b1 [file] [log] [blame]
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001/*
2 * fs/userfaultfd.c
3 *
4 * Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
5 * Copyright (C) 2008-2009 Red Hat, Inc.
6 * Copyright (C) 2015 Red Hat, Inc.
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2. See
9 * the COPYING file in the top-level directory.
10 *
11 * Some part derived from fs/eventfd.c (anon inode setup) and
12 * mm/ksm.c (mm hashing).
13 */
14
15#include <linux/hashtable.h>
16#include <linux/sched.h>
17#include <linux/mm.h>
18#include <linux/poll.h>
19#include <linux/slab.h>
20#include <linux/seq_file.h>
21#include <linux/file.h>
22#include <linux/bug.h>
23#include <linux/anon_inodes.h>
24#include <linux/syscalls.h>
25#include <linux/userfaultfd_k.h>
26#include <linux/mempolicy.h>
27#include <linux/ioctl.h>
28#include <linux/security.h>
29
Andrea Arcangeli3004ec92015-09-04 15:46:48 -070030static struct kmem_cache *userfaultfd_ctx_cachep __read_mostly;
31
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070032enum userfaultfd_state {
33 UFFD_STATE_WAIT_API,
34 UFFD_STATE_RUNNING,
35};
36
Andrea Arcangeli3004ec92015-09-04 15:46:48 -070037/*
38 * Start with fault_pending_wqh and fault_wqh so they're more likely
39 * to be in the same cacheline.
40 */
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070041struct userfaultfd_ctx {
Andrea Arcangeli15b726e2015-09-04 15:46:44 -070042 /* waitqueue head for the pending (i.e. not read) userfaults */
43 wait_queue_head_t fault_pending_wqh;
44 /* waitqueue head for the userfaults */
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070045 wait_queue_head_t fault_wqh;
46 /* waitqueue head for the pseudo fd to wakeup poll/read */
47 wait_queue_head_t fd_wqh;
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -070048 /* a refile sequence protected by fault_pending_wqh lock */
49 struct seqcount refile_seq;
Andrea Arcangeli3004ec92015-09-04 15:46:48 -070050 /* pseudo fd refcounting */
51 atomic_t refcount;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070052 /* userfaultfd syscall flags */
53 unsigned int flags;
54 /* state machine */
55 enum userfaultfd_state state;
56 /* released */
57 bool released;
58 /* mm with one ore more vmas attached to this userfaultfd_ctx */
59 struct mm_struct *mm;
60};
61
62struct userfaultfd_wait_queue {
Andrea Arcangelia9b85f92015-09-04 15:46:37 -070063 struct uffd_msg msg;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070064 wait_queue_t wq;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070065 struct userfaultfd_ctx *ctx;
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -080066 bool waken;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070067};
68
69struct userfaultfd_wake_range {
70 unsigned long start;
71 unsigned long len;
72};
73
74static int userfaultfd_wake_function(wait_queue_t *wq, unsigned mode,
75 int wake_flags, void *key)
76{
77 struct userfaultfd_wake_range *range = key;
78 int ret;
79 struct userfaultfd_wait_queue *uwq;
80 unsigned long start, len;
81
82 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
83 ret = 0;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070084 /* len == 0 means wake all */
85 start = range->start;
86 len = range->len;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -070087 if (len && (start > uwq->msg.arg.pagefault.address ||
88 start + len <= uwq->msg.arg.pagefault.address))
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070089 goto out;
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -080090 WRITE_ONCE(uwq->waken, true);
91 /*
92 * The implicit smp_mb__before_spinlock in try_to_wake_up()
93 * renders uwq->waken visible to other CPUs before the task is
94 * waken.
95 */
Andrea Arcangeli86039bd2015-09-04 15:46:31 -070096 ret = wake_up_state(wq->private, mode);
97 if (ret)
98 /*
99 * Wake only once, autoremove behavior.
100 *
101 * After the effect of list_del_init is visible to the
102 * other CPUs, the waitqueue may disappear from under
103 * us, see the !list_empty_careful() in
104 * handle_userfault(). try_to_wake_up() has an
105 * implicit smp_mb__before_spinlock, and the
106 * wq->private is read before calling the extern
107 * function "wake_up_state" (which in turns calls
108 * try_to_wake_up). While the spin_lock;spin_unlock;
109 * wouldn't be enough, the smp_mb__before_spinlock is
110 * enough to avoid an explicit smp_mb() here.
111 */
112 list_del_init(&wq->task_list);
113out:
114 return ret;
115}
116
117/**
118 * userfaultfd_ctx_get - Acquires a reference to the internal userfaultfd
119 * context.
120 * @ctx: [in] Pointer to the userfaultfd context.
121 *
122 * Returns: In case of success, returns not zero.
123 */
124static void userfaultfd_ctx_get(struct userfaultfd_ctx *ctx)
125{
126 if (!atomic_inc_not_zero(&ctx->refcount))
127 BUG();
128}
129
130/**
131 * userfaultfd_ctx_put - Releases a reference to the internal userfaultfd
132 * context.
133 * @ctx: [in] Pointer to userfaultfd context.
134 *
135 * The userfaultfd context reference must have been previously acquired either
136 * with userfaultfd_ctx_get() or userfaultfd_ctx_fdget().
137 */
138static void userfaultfd_ctx_put(struct userfaultfd_ctx *ctx)
139{
140 if (atomic_dec_and_test(&ctx->refcount)) {
141 VM_BUG_ON(spin_is_locked(&ctx->fault_pending_wqh.lock));
142 VM_BUG_ON(waitqueue_active(&ctx->fault_pending_wqh));
143 VM_BUG_ON(spin_is_locked(&ctx->fault_wqh.lock));
144 VM_BUG_ON(waitqueue_active(&ctx->fault_wqh));
145 VM_BUG_ON(spin_is_locked(&ctx->fd_wqh.lock));
146 VM_BUG_ON(waitqueue_active(&ctx->fd_wqh));
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700147 mmdrop(ctx->mm);
Andrea Arcangeli3004ec92015-09-04 15:46:48 -0700148 kmem_cache_free(userfaultfd_ctx_cachep, ctx);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700149 }
150}
151
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700152static inline void msg_init(struct uffd_msg *msg)
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700153{
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700154 BUILD_BUG_ON(sizeof(struct uffd_msg) != 32);
155 /*
156 * Must use memset to zero out the paddings or kernel data is
157 * leaked to userland.
158 */
159 memset(msg, 0, sizeof(struct uffd_msg));
160}
161
162static inline struct uffd_msg userfault_msg(unsigned long address,
163 unsigned int flags,
164 unsigned long reason)
165{
166 struct uffd_msg msg;
167 msg_init(&msg);
168 msg.event = UFFD_EVENT_PAGEFAULT;
169 msg.arg.pagefault.address = address;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700170 if (flags & FAULT_FLAG_WRITE)
171 /*
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700172 * If UFFD_FEATURE_PAGEFAULT_FLAG_WRITE was set in the
173 * uffdio_api.features and UFFD_PAGEFAULT_FLAG_WRITE
174 * was not set in a UFFD_EVENT_PAGEFAULT, it means it
175 * was a read fault, otherwise if set it means it's
176 * a write fault.
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700177 */
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700178 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WRITE;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700179 if (reason & VM_UFFD_WP)
180 /*
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700181 * If UFFD_FEATURE_PAGEFAULT_FLAG_WP was set in the
182 * uffdio_api.features and UFFD_PAGEFAULT_FLAG_WP was
183 * not set in a UFFD_EVENT_PAGEFAULT, it means it was
184 * a missing fault, otherwise if set it means it's a
185 * write protect fault.
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700186 */
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700187 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WP;
188 return msg;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700189}
190
191/*
Andrea Arcangeli8d2afd92015-09-04 15:46:51 -0700192 * Verify the pagetables are still not ok after having reigstered into
193 * the fault_pending_wqh to avoid userland having to UFFDIO_WAKE any
194 * userfault that has already been resolved, if userfaultfd_read and
195 * UFFDIO_COPY|ZEROPAGE are being run simultaneously on two different
196 * threads.
197 */
198static inline bool userfaultfd_must_wait(struct userfaultfd_ctx *ctx,
199 unsigned long address,
200 unsigned long flags,
201 unsigned long reason)
202{
203 struct mm_struct *mm = ctx->mm;
204 pgd_t *pgd;
205 pud_t *pud;
206 pmd_t *pmd, _pmd;
207 pte_t *pte;
208 bool ret = true;
209
210 VM_BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
211
212 pgd = pgd_offset(mm, address);
213 if (!pgd_present(*pgd))
214 goto out;
215 pud = pud_offset(pgd, address);
216 if (!pud_present(*pud))
217 goto out;
218 pmd = pmd_offset(pud, address);
219 /*
220 * READ_ONCE must function as a barrier with narrower scope
221 * and it must be equivalent to:
222 * _pmd = *pmd; barrier();
223 *
224 * This is to deal with the instability (as in
225 * pmd_trans_unstable) of the pmd.
226 */
227 _pmd = READ_ONCE(*pmd);
228 if (!pmd_present(_pmd))
229 goto out;
230
231 ret = false;
232 if (pmd_trans_huge(_pmd))
233 goto out;
234
235 /*
236 * the pmd is stable (as in !pmd_trans_unstable) so we can re-read it
237 * and use the standard pte_offset_map() instead of parsing _pmd.
238 */
239 pte = pte_offset_map(pmd, address);
240 /*
241 * Lockless access: we're in a wait_event so it's ok if it
242 * changes under us.
243 */
244 if (pte_none(*pte))
245 ret = true;
246 pte_unmap(pte);
247
248out:
249 return ret;
250}
251
252/*
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700253 * The locking rules involved in returning VM_FAULT_RETRY depending on
254 * FAULT_FLAG_ALLOW_RETRY, FAULT_FLAG_RETRY_NOWAIT and
255 * FAULT_FLAG_KILLABLE are not straightforward. The "Caution"
256 * recommendation in __lock_page_or_retry is not an understatement.
257 *
258 * If FAULT_FLAG_ALLOW_RETRY is set, the mmap_sem must be released
259 * before returning VM_FAULT_RETRY only if FAULT_FLAG_RETRY_NOWAIT is
260 * not set.
261 *
262 * If FAULT_FLAG_ALLOW_RETRY is set but FAULT_FLAG_KILLABLE is not
263 * set, VM_FAULT_RETRY can still be returned if and only if there are
264 * fatal_signal_pending()s, and the mmap_sem must be released before
265 * returning it.
266 */
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700267int handle_userfault(struct fault_env *fe, unsigned long reason)
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700268{
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700269 struct mm_struct *mm = fe->vma->vm_mm;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700270 struct userfaultfd_ctx *ctx;
271 struct userfaultfd_wait_queue uwq;
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700272 int ret;
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700273 bool must_wait, return_to_userland;
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -0800274 long blocking_state;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700275
276 BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
277
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700278 ret = VM_FAULT_SIGBUS;
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700279 ctx = fe->vma->vm_userfaultfd_ctx.ctx;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700280 if (!ctx)
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700281 goto out;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700282
283 BUG_ON(ctx->mm != mm);
284
285 VM_BUG_ON(reason & ~(VM_UFFD_MISSING|VM_UFFD_WP));
286 VM_BUG_ON(!(reason & VM_UFFD_MISSING) ^ !!(reason & VM_UFFD_WP));
287
288 /*
289 * If it's already released don't get it. This avoids to loop
290 * in __get_user_pages if userfaultfd_release waits on the
291 * caller of handle_userfault to release the mmap_sem.
292 */
293 if (unlikely(ACCESS_ONCE(ctx->released)))
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700294 goto out;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700295
296 /*
Linus Torvalds39680f52016-03-01 11:56:22 -0800297 * We don't do userfault handling for the final child pid update.
298 */
299 if (current->flags & PF_EXITING)
300 goto out;
301
302 /*
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700303 * Check that we can return VM_FAULT_RETRY.
304 *
305 * NOTE: it should become possible to return VM_FAULT_RETRY
306 * even if FAULT_FLAG_TRIED is set without leading to gup()
307 * -EBUSY failures, if the userfaultfd is to be extended for
308 * VM_UFFD_WP tracking and we intend to arm the userfault
309 * without first stopping userland access to the memory. For
310 * VM_UFFD_MISSING userfaults this is enough for now.
311 */
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700312 if (unlikely(!(fe->flags & FAULT_FLAG_ALLOW_RETRY))) {
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700313 /*
314 * Validate the invariant that nowait must allow retry
315 * to be sure not to return SIGBUS erroneously on
316 * nowait invocations.
317 */
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700318 BUG_ON(fe->flags & FAULT_FLAG_RETRY_NOWAIT);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700319#ifdef CONFIG_DEBUG_VM
320 if (printk_ratelimit()) {
321 printk(KERN_WARNING
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700322 "FAULT_FLAG_ALLOW_RETRY missing %x\n", fe->flags);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700323 dump_stack();
324 }
325#endif
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700326 goto out;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700327 }
328
329 /*
330 * Handle nowait, not much to do other than tell it to retry
331 * and wait.
332 */
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700333 ret = VM_FAULT_RETRY;
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700334 if (fe->flags & FAULT_FLAG_RETRY_NOWAIT)
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700335 goto out;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700336
337 /* take the reference before dropping the mmap_sem */
338 userfaultfd_ctx_get(ctx);
339
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700340 init_waitqueue_func_entry(&uwq.wq, userfaultfd_wake_function);
341 uwq.wq.private = current;
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700342 uwq.msg = userfault_msg(fe->address, fe->flags, reason);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700343 uwq.ctx = ctx;
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -0800344 uwq.waken = false;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700345
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700346 return_to_userland =
347 (fe->flags & (FAULT_FLAG_USER|FAULT_FLAG_KILLABLE)) ==
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700348 (FAULT_FLAG_USER|FAULT_FLAG_KILLABLE);
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -0800349 blocking_state = return_to_userland ? TASK_INTERRUPTIBLE :
350 TASK_KILLABLE;
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700351
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700352 spin_lock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700353 /*
354 * After the __add_wait_queue the uwq is visible to userland
355 * through poll/read().
356 */
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700357 __add_wait_queue(&ctx->fault_pending_wqh, &uwq.wq);
358 /*
359 * The smp_mb() after __set_current_state prevents the reads
360 * following the spin_unlock to happen before the list_add in
361 * __add_wait_queue.
362 */
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -0800363 set_current_state(blocking_state);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700364 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700365
Kirill A. Shutemovbae473a2016-07-26 15:25:20 -0700366 must_wait = userfaultfd_must_wait(ctx, fe->address, fe->flags, reason);
Andrea Arcangeli8d2afd92015-09-04 15:46:51 -0700367 up_read(&mm->mmap_sem);
368
369 if (likely(must_wait && !ACCESS_ONCE(ctx->released) &&
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700370 (return_to_userland ? !signal_pending(current) :
371 !fatal_signal_pending(current)))) {
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700372 wake_up_poll(&ctx->fd_wqh, POLLIN);
373 schedule();
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700374 ret |= VM_FAULT_MAJOR;
Andrea Arcangelidbd9eee2017-01-24 15:17:59 -0800375
376 /*
377 * False wakeups can orginate even from rwsem before
378 * up_read() however userfaults will wait either for a
379 * targeted wakeup on the specific uwq waitqueue from
380 * wake_userfault() or for signals or for uffd
381 * release.
382 */
383 while (!READ_ONCE(uwq.waken)) {
384 /*
385 * This needs the full smp_store_mb()
386 * guarantee as the state write must be
387 * visible to other CPUs before reading
388 * uwq.waken from other CPUs.
389 */
390 set_current_state(blocking_state);
391 if (READ_ONCE(uwq.waken) ||
392 READ_ONCE(ctx->released) ||
393 (return_to_userland ? signal_pending(current) :
394 fatal_signal_pending(current)))
395 break;
396 schedule();
397 }
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700398 }
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700399
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700400 __set_current_state(TASK_RUNNING);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700401
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700402 if (return_to_userland) {
403 if (signal_pending(current) &&
404 !fatal_signal_pending(current)) {
405 /*
406 * If we got a SIGSTOP or SIGCONT and this is
407 * a normal userland page fault, just let
408 * userland return so the signal will be
409 * handled and gdb debugging works. The page
410 * fault code immediately after we return from
411 * this function is going to release the
412 * mmap_sem and it's not depending on it
413 * (unlike gup would if we were not to return
414 * VM_FAULT_RETRY).
415 *
416 * If a fatal signal is pending we still take
417 * the streamlined VM_FAULT_RETRY failure path
418 * and there's no need to retake the mmap_sem
419 * in such case.
420 */
421 down_read(&mm->mmap_sem);
Andrea Arcangeli275314e2017-03-09 16:16:28 -0800422 ret = VM_FAULT_NOPAGE;
Andrea Arcangelidfa37dc2015-09-04 15:47:18 -0700423 }
424 }
425
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700426 /*
427 * Here we race with the list_del; list_add in
428 * userfaultfd_ctx_read(), however because we don't ever run
429 * list_del_init() to refile across the two lists, the prev
430 * and next pointers will never point to self. list_add also
431 * would never let any of the two pointers to point to
432 * self. So list_empty_careful won't risk to see both pointers
433 * pointing to self at any time during the list refile. The
434 * only case where list_del_init() is called is the full
435 * removal in the wake function and there we don't re-list_add
436 * and it's fine not to block on the spinlock. The uwq on this
437 * kernel stack can be released after the list_del_init.
438 */
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700439 if (!list_empty_careful(&uwq.wq.task_list)) {
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700440 spin_lock(&ctx->fault_pending_wqh.lock);
441 /*
442 * No need of list_del_init(), the uwq on the stack
443 * will be freed shortly anyway.
444 */
445 list_del(&uwq.wq.task_list);
446 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700447 }
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700448
449 /*
450 * ctx may go away after this if the userfault pseudo fd is
451 * already released.
452 */
453 userfaultfd_ctx_put(ctx);
454
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700455out:
456 return ret;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700457}
458
459static int userfaultfd_release(struct inode *inode, struct file *file)
460{
461 struct userfaultfd_ctx *ctx = file->private_data;
462 struct mm_struct *mm = ctx->mm;
463 struct vm_area_struct *vma, *prev;
464 /* len == 0 means wake all */
465 struct userfaultfd_wake_range range = { .len = 0, };
466 unsigned long new_flags;
Oleg Nesterov88bc9832019-08-24 17:54:56 -0700467 bool still_valid;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700468
469 ACCESS_ONCE(ctx->released) = true;
470
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700471 if (!mmget_not_zero(mm))
472 goto wakeup;
473
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700474 /*
475 * Flush page faults out of all CPUs. NOTE: all page faults
476 * must be retried without returning VM_FAULT_SIGBUS if
477 * userfaultfd_ctx_get() succeeds but vma->vma_userfault_ctx
478 * changes while handle_userfault released the mmap_sem. So
479 * it's critical that released is set to true (above), before
480 * taking the mmap_sem for writing.
481 */
482 down_write(&mm->mmap_sem);
Oleg Nesterov88bc9832019-08-24 17:54:56 -0700483 still_valid = mmget_still_valid(mm);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700484 prev = NULL;
485 for (vma = mm->mmap; vma; vma = vma->vm_next) {
486 cond_resched();
487 BUG_ON(!!vma->vm_userfaultfd_ctx.ctx ^
488 !!(vma->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
489 if (vma->vm_userfaultfd_ctx.ctx != ctx) {
490 prev = vma;
491 continue;
492 }
493 new_flags = vma->vm_flags & ~(VM_UFFD_MISSING | VM_UFFD_WP);
Oleg Nesterov88bc9832019-08-24 17:54:56 -0700494 if (still_valid) {
495 prev = vma_merge(mm, prev, vma->vm_start, vma->vm_end,
496 new_flags, vma->anon_vma,
497 vma->vm_file, vma->vm_pgoff,
498 vma_policy(vma),
Greg Kroah-Hartman9ca86082019-09-06 12:20:00 +0200499 NULL_VM_UFFD_CTX,
500 vma_get_anon_name(vma));
Oleg Nesterov88bc9832019-08-24 17:54:56 -0700501 if (prev)
502 vma = prev;
503 else
504 prev = vma;
505 }
Laurent Dufourdd2b4652018-04-17 16:33:15 +0200506 vm_write_begin(vma);
507 WRITE_ONCE(vma->vm_flags, new_flags);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700508 vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
Laurent Dufourdd2b4652018-04-17 16:33:15 +0200509 vm_write_end(vma);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700510 }
511 up_write(&mm->mmap_sem);
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700512 mmput(mm);
513wakeup:
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700514 /*
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700515 * After no new page faults can wait on this fault_*wqh, flush
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700516 * the last page faults that may have been already waiting on
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700517 * the fault_*wqh.
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700518 */
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700519 spin_lock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeliac5be6b2015-09-22 14:58:49 -0700520 __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL, &range);
521 __wake_up_locked_key(&ctx->fault_wqh, TASK_NORMAL, &range);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700522 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700523
524 wake_up_poll(&ctx->fd_wqh, POLLHUP);
525 userfaultfd_ctx_put(ctx);
526 return 0;
527}
528
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700529/* fault_pending_wqh.lock must be hold by the caller */
530static inline struct userfaultfd_wait_queue *find_userfault(
531 struct userfaultfd_ctx *ctx)
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700532{
533 wait_queue_t *wq;
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700534 struct userfaultfd_wait_queue *uwq;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700535
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700536 VM_BUG_ON(!spin_is_locked(&ctx->fault_pending_wqh.lock));
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700537
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700538 uwq = NULL;
539 if (!waitqueue_active(&ctx->fault_pending_wqh))
540 goto out;
541 /* walk in reverse to provide FIFO behavior to read userfaults */
542 wq = list_last_entry(&ctx->fault_pending_wqh.task_list,
543 typeof(*wq), task_list);
544 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
545out:
546 return uwq;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700547}
548
549static unsigned int userfaultfd_poll(struct file *file, poll_table *wait)
550{
551 struct userfaultfd_ctx *ctx = file->private_data;
552 unsigned int ret;
553
554 poll_wait(file, &ctx->fd_wqh, wait);
555
556 switch (ctx->state) {
557 case UFFD_STATE_WAIT_API:
558 return POLLERR;
559 case UFFD_STATE_RUNNING:
Andrea Arcangeliba85c702015-09-04 15:46:41 -0700560 /*
561 * poll() never guarantees that read won't block.
562 * userfaults can be waken before they're read().
563 */
564 if (unlikely(!(file->f_flags & O_NONBLOCK)))
565 return POLLERR;
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700566 /*
567 * lockless access to see if there are pending faults
568 * __pollwait last action is the add_wait_queue but
569 * the spin_unlock would allow the waitqueue_active to
570 * pass above the actual list_add inside
571 * add_wait_queue critical section. So use a full
572 * memory barrier to serialize the list_add write of
573 * add_wait_queue() with the waitqueue_active read
574 * below.
575 */
576 ret = 0;
577 smp_mb();
578 if (waitqueue_active(&ctx->fault_pending_wqh))
579 ret = POLLIN;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700580 return ret;
581 default:
582 BUG();
583 }
584}
585
586static ssize_t userfaultfd_ctx_read(struct userfaultfd_ctx *ctx, int no_wait,
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700587 struct uffd_msg *msg)
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700588{
589 ssize_t ret;
590 DECLARE_WAITQUEUE(wait, current);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700591 struct userfaultfd_wait_queue *uwq;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700592
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700593 /* always take the fd_wqh lock before the fault_pending_wqh lock */
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700594 spin_lock(&ctx->fd_wqh.lock);
595 __add_wait_queue(&ctx->fd_wqh, &wait);
596 for (;;) {
597 set_current_state(TASK_INTERRUPTIBLE);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700598 spin_lock(&ctx->fault_pending_wqh.lock);
599 uwq = find_userfault(ctx);
600 if (uwq) {
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700601 /*
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -0700602 * Use a seqcount to repeat the lockless check
603 * in wake_userfault() to avoid missing
604 * wakeups because during the refile both
605 * waitqueue could become empty if this is the
606 * only userfault.
607 */
608 write_seqcount_begin(&ctx->refile_seq);
609
610 /*
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700611 * The fault_pending_wqh.lock prevents the uwq
612 * to disappear from under us.
613 *
614 * Refile this userfault from
615 * fault_pending_wqh to fault_wqh, it's not
616 * pending anymore after we read it.
617 *
618 * Use list_del() by hand (as
619 * userfaultfd_wake_function also uses
620 * list_del_init() by hand) to be sure nobody
621 * changes __remove_wait_queue() to use
622 * list_del_init() in turn breaking the
623 * !list_empty_careful() check in
624 * handle_userfault(). The uwq->wq.task_list
625 * must never be empty at any time during the
626 * refile, or the waitqueue could disappear
627 * from under us. The "wait_queue_head_t"
628 * parameter of __remove_wait_queue() is unused
629 * anyway.
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700630 */
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700631 list_del(&uwq->wq.task_list);
632 __add_wait_queue(&ctx->fault_wqh, &uwq->wq);
633
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -0700634 write_seqcount_end(&ctx->refile_seq);
635
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700636 /* careful to always initialize msg if ret == 0 */
637 *msg = uwq->msg;
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700638 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700639 ret = 0;
640 break;
641 }
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700642 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700643 if (signal_pending(current)) {
644 ret = -ERESTARTSYS;
645 break;
646 }
647 if (no_wait) {
648 ret = -EAGAIN;
649 break;
650 }
651 spin_unlock(&ctx->fd_wqh.lock);
652 schedule();
653 spin_lock(&ctx->fd_wqh.lock);
654 }
655 __remove_wait_queue(&ctx->fd_wqh, &wait);
656 __set_current_state(TASK_RUNNING);
657 spin_unlock(&ctx->fd_wqh.lock);
658
659 return ret;
660}
661
662static ssize_t userfaultfd_read(struct file *file, char __user *buf,
663 size_t count, loff_t *ppos)
664{
665 struct userfaultfd_ctx *ctx = file->private_data;
666 ssize_t _ret, ret = 0;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700667 struct uffd_msg msg;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700668 int no_wait = file->f_flags & O_NONBLOCK;
669
670 if (ctx->state == UFFD_STATE_WAIT_API)
671 return -EINVAL;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700672
673 for (;;) {
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700674 if (count < sizeof(msg))
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700675 return ret ? ret : -EINVAL;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700676 _ret = userfaultfd_ctx_read(ctx, no_wait, &msg);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700677 if (_ret < 0)
678 return ret ? ret : _ret;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700679 if (copy_to_user((__u64 __user *) buf, &msg, sizeof(msg)))
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700680 return ret ? ret : -EFAULT;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -0700681 ret += sizeof(msg);
682 buf += sizeof(msg);
683 count -= sizeof(msg);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700684 /*
685 * Allow to read more than one fault at time but only
686 * block if waiting for the very first one.
687 */
688 no_wait = O_NONBLOCK;
689 }
690}
691
692static void __wake_userfault(struct userfaultfd_ctx *ctx,
693 struct userfaultfd_wake_range *range)
694{
695 unsigned long start, end;
696
697 start = range->start;
698 end = range->start + range->len;
699
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700700 spin_lock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700701 /* wake all in the range and autoremove */
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700702 if (waitqueue_active(&ctx->fault_pending_wqh))
Andrea Arcangeliac5be6b2015-09-22 14:58:49 -0700703 __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL,
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700704 range);
705 if (waitqueue_active(&ctx->fault_wqh))
Andrea Arcangeliac5be6b2015-09-22 14:58:49 -0700706 __wake_up_locked_key(&ctx->fault_wqh, TASK_NORMAL, range);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -0700707 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700708}
709
710static __always_inline void wake_userfault(struct userfaultfd_ctx *ctx,
711 struct userfaultfd_wake_range *range)
712{
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -0700713 unsigned seq;
714 bool need_wakeup;
715
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700716 /*
717 * To be sure waitqueue_active() is not reordered by the CPU
718 * before the pagetable update, use an explicit SMP memory
719 * barrier here. PT lock release or up_read(mmap_sem) still
720 * have release semantics that can allow the
721 * waitqueue_active() to be reordered before the pte update.
722 */
723 smp_mb();
724
725 /*
726 * Use waitqueue_active because it's very frequent to
727 * change the address space atomically even if there are no
728 * userfaults yet. So we take the spinlock only when we're
729 * sure we've userfaults to wake.
730 */
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -0700731 do {
732 seq = read_seqcount_begin(&ctx->refile_seq);
733 need_wakeup = waitqueue_active(&ctx->fault_pending_wqh) ||
734 waitqueue_active(&ctx->fault_wqh);
735 cond_resched();
736 } while (read_seqcount_retry(&ctx->refile_seq, seq));
737 if (need_wakeup)
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700738 __wake_userfault(ctx, range);
739}
740
741static __always_inline int validate_range(struct mm_struct *mm,
742 __u64 start, __u64 len)
743{
744 __u64 task_size = mm->task_size;
745
746 if (start & ~PAGE_MASK)
747 return -EINVAL;
748 if (len & ~PAGE_MASK)
749 return -EINVAL;
750 if (!len)
751 return -EINVAL;
752 if (start < mmap_min_addr)
753 return -EINVAL;
754 if (start >= task_size)
755 return -EINVAL;
756 if (len > task_size - start)
757 return -EINVAL;
758 return 0;
759}
760
761static int userfaultfd_register(struct userfaultfd_ctx *ctx,
762 unsigned long arg)
763{
764 struct mm_struct *mm = ctx->mm;
765 struct vm_area_struct *vma, *prev, *cur;
766 int ret;
767 struct uffdio_register uffdio_register;
768 struct uffdio_register __user *user_uffdio_register;
769 unsigned long vm_flags, new_flags;
770 bool found;
771 unsigned long start, end, vma_end;
772
773 user_uffdio_register = (struct uffdio_register __user *) arg;
774
775 ret = -EFAULT;
776 if (copy_from_user(&uffdio_register, user_uffdio_register,
777 sizeof(uffdio_register)-sizeof(__u64)))
778 goto out;
779
780 ret = -EINVAL;
781 if (!uffdio_register.mode)
782 goto out;
783 if (uffdio_register.mode & ~(UFFDIO_REGISTER_MODE_MISSING|
784 UFFDIO_REGISTER_MODE_WP))
785 goto out;
786 vm_flags = 0;
787 if (uffdio_register.mode & UFFDIO_REGISTER_MODE_MISSING)
788 vm_flags |= VM_UFFD_MISSING;
789 if (uffdio_register.mode & UFFDIO_REGISTER_MODE_WP) {
790 vm_flags |= VM_UFFD_WP;
791 /*
792 * FIXME: remove the below error constraint by
793 * implementing the wprotect tracking mode.
794 */
795 ret = -EINVAL;
796 goto out;
797 }
798
799 ret = validate_range(mm, uffdio_register.range.start,
800 uffdio_register.range.len);
801 if (ret)
802 goto out;
803
804 start = uffdio_register.range.start;
805 end = start + uffdio_register.range.len;
806
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700807 ret = -ENOMEM;
808 if (!mmget_not_zero(mm))
809 goto out;
810
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700811 down_write(&mm->mmap_sem);
Andrea Arcangeli16903f12019-04-18 17:50:52 -0700812 if (!mmget_still_valid(mm))
813 goto out_unlock;
814
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700815 vma = find_vma_prev(mm, start, &prev);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700816 if (!vma)
817 goto out_unlock;
818
819 /* check that there's at least one vma in the range */
820 ret = -EINVAL;
821 if (vma->vm_start >= end)
822 goto out_unlock;
823
824 /*
825 * Search for not compatible vmas.
826 *
827 * FIXME: this shall be relaxed later so that it doesn't fail
828 * on tmpfs backed vmas (in addition to the current allowance
829 * on anonymous vmas).
830 */
831 found = false;
832 for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) {
833 cond_resched();
834
835 BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^
836 !!(cur->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
837
838 /* check not compatible vmas */
839 ret = -EINVAL;
840 if (cur->vm_ops)
841 goto out_unlock;
842
843 /*
Joel Fernandes3de7f8452019-02-15 16:48:07 -0500844 * UFFDIO_COPY will fill file holes even without
845 * PROT_WRITE. This check enforces that if this is a
846 * MAP_SHARED, the process has write permission to the backing
847 * file. If VM_MAYWRITE is set it also enforces that on a
848 * MAP_SHARED vma: there is no F_WRITE_SEAL and no further
849 * F_WRITE_SEAL can be taken until the vma is destroyed.
850 */
851 ret = -EPERM;
852 if (unlikely(!(cur->vm_flags & VM_MAYWRITE)))
853 goto out_unlock;
854
855 /*
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700856 * Check that this vma isn't already owned by a
857 * different userfaultfd. We can't allow more than one
858 * userfaultfd to own a single vma simultaneously or we
859 * wouldn't know which one to deliver the userfaults to.
860 */
861 ret = -EBUSY;
862 if (cur->vm_userfaultfd_ctx.ctx &&
863 cur->vm_userfaultfd_ctx.ctx != ctx)
864 goto out_unlock;
865
866 found = true;
867 }
868 BUG_ON(!found);
869
870 if (vma->vm_start < start)
871 prev = vma;
872
873 ret = 0;
874 do {
875 cond_resched();
876
877 BUG_ON(vma->vm_ops);
878 BUG_ON(vma->vm_userfaultfd_ctx.ctx &&
879 vma->vm_userfaultfd_ctx.ctx != ctx);
Joel Fernandes3de7f8452019-02-15 16:48:07 -0500880 WARN_ON(!(vma->vm_flags & VM_MAYWRITE));
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700881
882 /*
883 * Nothing to do: this vma is already registered into this
884 * userfaultfd and with the right tracking mode too.
885 */
886 if (vma->vm_userfaultfd_ctx.ctx == ctx &&
887 (vma->vm_flags & vm_flags) == vm_flags)
888 goto skip;
889
890 if (vma->vm_start > start)
891 start = vma->vm_start;
892 vma_end = min(end, vma->vm_end);
893
894 new_flags = (vma->vm_flags & ~vm_flags) | vm_flags;
895 prev = vma_merge(mm, prev, start, vma_end, new_flags,
896 vma->anon_vma, vma->vm_file, vma->vm_pgoff,
897 vma_policy(vma),
Colin Cross3e4578f2015-10-27 16:42:08 -0700898 ((struct vm_userfaultfd_ctx){ ctx }),
899 vma_get_anon_name(vma));
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700900 if (prev) {
901 vma = prev;
902 goto next;
903 }
904 if (vma->vm_start < start) {
905 ret = split_vma(mm, vma, start, 1);
906 if (ret)
907 break;
908 }
909 if (vma->vm_end > end) {
910 ret = split_vma(mm, vma, end, 0);
911 if (ret)
912 break;
913 }
914 next:
915 /*
916 * In the vma_merge() successful mprotect-like case 8:
917 * the next vma was merged into the current one and
918 * the current one has not been updated yet.
919 */
Laurent Dufourdd2b4652018-04-17 16:33:15 +0200920 vm_write_begin(vma);
921 WRITE_ONCE(vma->vm_flags, new_flags);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700922 vma->vm_userfaultfd_ctx.ctx = ctx;
Laurent Dufourdd2b4652018-04-17 16:33:15 +0200923 vm_write_end(vma);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700924
925 skip:
926 prev = vma;
927 start = vma->vm_end;
928 vma = vma->vm_next;
929 } while (vma && vma->vm_start < end);
930out_unlock:
931 up_write(&mm->mmap_sem);
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700932 mmput(mm);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700933 if (!ret) {
934 /*
935 * Now that we scanned all vmas we can already tell
936 * userland which ioctls methods are guaranteed to
937 * succeed on this range.
938 */
939 if (put_user(UFFD_API_RANGE_IOCTLS,
940 &user_uffdio_register->ioctls))
941 ret = -EFAULT;
942 }
943out:
944 return ret;
945}
946
947static int userfaultfd_unregister(struct userfaultfd_ctx *ctx,
948 unsigned long arg)
949{
950 struct mm_struct *mm = ctx->mm;
951 struct vm_area_struct *vma, *prev, *cur;
952 int ret;
953 struct uffdio_range uffdio_unregister;
954 unsigned long new_flags;
955 bool found;
956 unsigned long start, end, vma_end;
957 const void __user *buf = (void __user *)arg;
958
959 ret = -EFAULT;
960 if (copy_from_user(&uffdio_unregister, buf, sizeof(uffdio_unregister)))
961 goto out;
962
963 ret = validate_range(mm, uffdio_unregister.start,
964 uffdio_unregister.len);
965 if (ret)
966 goto out;
967
968 start = uffdio_unregister.start;
969 end = start + uffdio_unregister.len;
970
Oleg Nesterovd2005e32016-05-20 16:58:36 -0700971 ret = -ENOMEM;
972 if (!mmget_not_zero(mm))
973 goto out;
974
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700975 down_write(&mm->mmap_sem);
Andrea Arcangeli16903f12019-04-18 17:50:52 -0700976 if (!mmget_still_valid(mm))
977 goto out_unlock;
978
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700979 vma = find_vma_prev(mm, start, &prev);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -0700980 if (!vma)
981 goto out_unlock;
982
983 /* check that there's at least one vma in the range */
984 ret = -EINVAL;
985 if (vma->vm_start >= end)
986 goto out_unlock;
987
988 /*
989 * Search for not compatible vmas.
990 *
991 * FIXME: this shall be relaxed later so that it doesn't fail
992 * on tmpfs backed vmas (in addition to the current allowance
993 * on anonymous vmas).
994 */
995 found = false;
996 ret = -EINVAL;
997 for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) {
998 cond_resched();
999
1000 BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^
1001 !!(cur->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
1002
1003 /*
1004 * Check not compatible vmas, not strictly required
1005 * here as not compatible vmas cannot have an
1006 * userfaultfd_ctx registered on them, but this
1007 * provides for more strict behavior to notice
1008 * unregistration errors.
1009 */
1010 if (cur->vm_ops)
1011 goto out_unlock;
1012
1013 found = true;
1014 }
1015 BUG_ON(!found);
1016
1017 if (vma->vm_start < start)
1018 prev = vma;
1019
1020 ret = 0;
1021 do {
1022 cond_resched();
1023
1024 BUG_ON(vma->vm_ops);
Joel Fernandes3de7f8452019-02-15 16:48:07 -05001025 WARN_ON(!(vma->vm_flags & VM_MAYWRITE));
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001026
1027 /*
1028 * Nothing to do: this vma is already registered into this
1029 * userfaultfd and with the right tracking mode too.
1030 */
1031 if (!vma->vm_userfaultfd_ctx.ctx)
1032 goto skip;
1033
1034 if (vma->vm_start > start)
1035 start = vma->vm_start;
1036 vma_end = min(end, vma->vm_end);
1037
1038 new_flags = vma->vm_flags & ~(VM_UFFD_MISSING | VM_UFFD_WP);
1039 prev = vma_merge(mm, prev, start, vma_end, new_flags,
1040 vma->anon_vma, vma->vm_file, vma->vm_pgoff,
1041 vma_policy(vma),
Colin Cross3e4578f2015-10-27 16:42:08 -07001042 NULL_VM_UFFD_CTX,
1043 vma_get_anon_name(vma));
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001044 if (prev) {
1045 vma = prev;
1046 goto next;
1047 }
1048 if (vma->vm_start < start) {
1049 ret = split_vma(mm, vma, start, 1);
1050 if (ret)
1051 break;
1052 }
1053 if (vma->vm_end > end) {
1054 ret = split_vma(mm, vma, end, 0);
1055 if (ret)
1056 break;
1057 }
1058 next:
1059 /*
1060 * In the vma_merge() successful mprotect-like case 8:
1061 * the next vma was merged into the current one and
1062 * the current one has not been updated yet.
1063 */
Laurent Dufourdd2b4652018-04-17 16:33:15 +02001064 vm_write_begin(vma);
1065 WRITE_ONCE(vma->vm_flags, new_flags);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001066 vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
Laurent Dufourdd2b4652018-04-17 16:33:15 +02001067 vm_write_end(vma);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001068
1069 skip:
1070 prev = vma;
1071 start = vma->vm_end;
1072 vma = vma->vm_next;
1073 } while (vma && vma->vm_start < end);
1074out_unlock:
1075 up_write(&mm->mmap_sem);
Oleg Nesterovd2005e32016-05-20 16:58:36 -07001076 mmput(mm);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001077out:
1078 return ret;
1079}
1080
1081/*
Andrea Arcangeliba85c702015-09-04 15:46:41 -07001082 * userfaultfd_wake may be used in combination with the
1083 * UFFDIO_*_MODE_DONTWAKE to wakeup userfaults in batches.
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001084 */
1085static int userfaultfd_wake(struct userfaultfd_ctx *ctx,
1086 unsigned long arg)
1087{
1088 int ret;
1089 struct uffdio_range uffdio_wake;
1090 struct userfaultfd_wake_range range;
1091 const void __user *buf = (void __user *)arg;
1092
1093 ret = -EFAULT;
1094 if (copy_from_user(&uffdio_wake, buf, sizeof(uffdio_wake)))
1095 goto out;
1096
1097 ret = validate_range(ctx->mm, uffdio_wake.start, uffdio_wake.len);
1098 if (ret)
1099 goto out;
1100
1101 range.start = uffdio_wake.start;
1102 range.len = uffdio_wake.len;
1103
1104 /*
1105 * len == 0 means wake all and we don't want to wake all here,
1106 * so check it again to be sure.
1107 */
1108 VM_BUG_ON(!range.len);
1109
1110 wake_userfault(ctx, &range);
1111 ret = 0;
1112
1113out:
1114 return ret;
1115}
1116
Andrea Arcangeliad465ca2015-09-04 15:47:11 -07001117static int userfaultfd_copy(struct userfaultfd_ctx *ctx,
1118 unsigned long arg)
1119{
1120 __s64 ret;
1121 struct uffdio_copy uffdio_copy;
1122 struct uffdio_copy __user *user_uffdio_copy;
1123 struct userfaultfd_wake_range range;
1124
1125 user_uffdio_copy = (struct uffdio_copy __user *) arg;
1126
1127 ret = -EFAULT;
1128 if (copy_from_user(&uffdio_copy, user_uffdio_copy,
1129 /* don't copy "copy" last field */
1130 sizeof(uffdio_copy)-sizeof(__s64)))
1131 goto out;
1132
1133 ret = validate_range(ctx->mm, uffdio_copy.dst, uffdio_copy.len);
1134 if (ret)
1135 goto out;
1136 /*
1137 * double check for wraparound just in case. copy_from_user()
1138 * will later check uffdio_copy.src + uffdio_copy.len to fit
1139 * in the userland range.
1140 */
1141 ret = -EINVAL;
1142 if (uffdio_copy.src + uffdio_copy.len <= uffdio_copy.src)
1143 goto out;
1144 if (uffdio_copy.mode & ~UFFDIO_COPY_MODE_DONTWAKE)
1145 goto out;
Oleg Nesterovd2005e32016-05-20 16:58:36 -07001146 if (mmget_not_zero(ctx->mm)) {
1147 ret = mcopy_atomic(ctx->mm, uffdio_copy.dst, uffdio_copy.src,
1148 uffdio_copy.len);
1149 mmput(ctx->mm);
1150 }
Andrea Arcangeliad465ca2015-09-04 15:47:11 -07001151 if (unlikely(put_user(ret, &user_uffdio_copy->copy)))
1152 return -EFAULT;
1153 if (ret < 0)
1154 goto out;
1155 BUG_ON(!ret);
1156 /* len == 0 would wake all */
1157 range.len = ret;
1158 if (!(uffdio_copy.mode & UFFDIO_COPY_MODE_DONTWAKE)) {
1159 range.start = uffdio_copy.dst;
1160 wake_userfault(ctx, &range);
1161 }
1162 ret = range.len == uffdio_copy.len ? 0 : -EAGAIN;
1163out:
1164 return ret;
1165}
1166
1167static int userfaultfd_zeropage(struct userfaultfd_ctx *ctx,
1168 unsigned long arg)
1169{
1170 __s64 ret;
1171 struct uffdio_zeropage uffdio_zeropage;
1172 struct uffdio_zeropage __user *user_uffdio_zeropage;
1173 struct userfaultfd_wake_range range;
1174
1175 user_uffdio_zeropage = (struct uffdio_zeropage __user *) arg;
1176
1177 ret = -EFAULT;
1178 if (copy_from_user(&uffdio_zeropage, user_uffdio_zeropage,
1179 /* don't copy "zeropage" last field */
1180 sizeof(uffdio_zeropage)-sizeof(__s64)))
1181 goto out;
1182
1183 ret = validate_range(ctx->mm, uffdio_zeropage.range.start,
1184 uffdio_zeropage.range.len);
1185 if (ret)
1186 goto out;
1187 ret = -EINVAL;
1188 if (uffdio_zeropage.mode & ~UFFDIO_ZEROPAGE_MODE_DONTWAKE)
1189 goto out;
1190
Oleg Nesterovd2005e32016-05-20 16:58:36 -07001191 if (mmget_not_zero(ctx->mm)) {
1192 ret = mfill_zeropage(ctx->mm, uffdio_zeropage.range.start,
1193 uffdio_zeropage.range.len);
1194 mmput(ctx->mm);
1195 }
Andrea Arcangeliad465ca2015-09-04 15:47:11 -07001196 if (unlikely(put_user(ret, &user_uffdio_zeropage->zeropage)))
1197 return -EFAULT;
1198 if (ret < 0)
1199 goto out;
1200 /* len == 0 would wake all */
1201 BUG_ON(!ret);
1202 range.len = ret;
1203 if (!(uffdio_zeropage.mode & UFFDIO_ZEROPAGE_MODE_DONTWAKE)) {
1204 range.start = uffdio_zeropage.range.start;
1205 wake_userfault(ctx, &range);
1206 }
1207 ret = range.len == uffdio_zeropage.range.len ? 0 : -EAGAIN;
1208out:
1209 return ret;
1210}
1211
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001212/*
1213 * userland asks for a certain API version and we return which bits
1214 * and ioctl commands are implemented in this kernel for such API
1215 * version or -EINVAL if unknown.
1216 */
1217static int userfaultfd_api(struct userfaultfd_ctx *ctx,
1218 unsigned long arg)
1219{
1220 struct uffdio_api uffdio_api;
1221 void __user *buf = (void __user *)arg;
1222 int ret;
1223
1224 ret = -EINVAL;
1225 if (ctx->state != UFFD_STATE_WAIT_API)
1226 goto out;
1227 ret = -EFAULT;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -07001228 if (copy_from_user(&uffdio_api, buf, sizeof(uffdio_api)))
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001229 goto out;
Andrea Arcangelia9b85f92015-09-04 15:46:37 -07001230 if (uffdio_api.api != UFFD_API || uffdio_api.features) {
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001231 memset(&uffdio_api, 0, sizeof(uffdio_api));
1232 if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api)))
1233 goto out;
1234 ret = -EINVAL;
1235 goto out;
1236 }
Pavel Emelyanov3f602d22015-09-04 15:46:34 -07001237 uffdio_api.features = UFFD_API_FEATURES;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001238 uffdio_api.ioctls = UFFD_API_IOCTLS;
1239 ret = -EFAULT;
1240 if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api)))
1241 goto out;
1242 ctx->state = UFFD_STATE_RUNNING;
1243 ret = 0;
1244out:
1245 return ret;
1246}
1247
1248static long userfaultfd_ioctl(struct file *file, unsigned cmd,
1249 unsigned long arg)
1250{
1251 int ret = -EINVAL;
1252 struct userfaultfd_ctx *ctx = file->private_data;
1253
Andrea Arcangelie6485a42015-09-04 15:47:15 -07001254 if (cmd != UFFDIO_API && ctx->state == UFFD_STATE_WAIT_API)
1255 return -EINVAL;
1256
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001257 switch(cmd) {
1258 case UFFDIO_API:
1259 ret = userfaultfd_api(ctx, arg);
1260 break;
1261 case UFFDIO_REGISTER:
1262 ret = userfaultfd_register(ctx, arg);
1263 break;
1264 case UFFDIO_UNREGISTER:
1265 ret = userfaultfd_unregister(ctx, arg);
1266 break;
1267 case UFFDIO_WAKE:
1268 ret = userfaultfd_wake(ctx, arg);
1269 break;
Andrea Arcangeliad465ca2015-09-04 15:47:11 -07001270 case UFFDIO_COPY:
1271 ret = userfaultfd_copy(ctx, arg);
1272 break;
1273 case UFFDIO_ZEROPAGE:
1274 ret = userfaultfd_zeropage(ctx, arg);
1275 break;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001276 }
1277 return ret;
1278}
1279
1280#ifdef CONFIG_PROC_FS
1281static void userfaultfd_show_fdinfo(struct seq_file *m, struct file *f)
1282{
1283 struct userfaultfd_ctx *ctx = f->private_data;
1284 wait_queue_t *wq;
1285 struct userfaultfd_wait_queue *uwq;
1286 unsigned long pending = 0, total = 0;
1287
Andrea Arcangeli15b726e2015-09-04 15:46:44 -07001288 spin_lock(&ctx->fault_pending_wqh.lock);
1289 list_for_each_entry(wq, &ctx->fault_pending_wqh.task_list, task_list) {
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001290 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
Andrea Arcangeli15b726e2015-09-04 15:46:44 -07001291 pending++;
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001292 total++;
1293 }
Andrea Arcangeli15b726e2015-09-04 15:46:44 -07001294 list_for_each_entry(wq, &ctx->fault_wqh.task_list, task_list) {
1295 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
1296 total++;
1297 }
1298 spin_unlock(&ctx->fault_pending_wqh.lock);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001299
1300 /*
1301 * If more protocols will be added, there will be all shown
1302 * separated by a space. Like this:
1303 * protocols: aa:... bb:...
1304 */
1305 seq_printf(m, "pending:\t%lu\ntotal:\t%lu\nAPI:\t%Lx:%x:%Lx\n",
Pavel Emelyanov3f602d22015-09-04 15:46:34 -07001306 pending, total, UFFD_API, UFFD_API_FEATURES,
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001307 UFFD_API_IOCTLS|UFFD_API_RANGE_IOCTLS);
1308}
1309#endif
1310
1311static const struct file_operations userfaultfd_fops = {
1312#ifdef CONFIG_PROC_FS
1313 .show_fdinfo = userfaultfd_show_fdinfo,
1314#endif
1315 .release = userfaultfd_release,
1316 .poll = userfaultfd_poll,
1317 .read = userfaultfd_read,
1318 .unlocked_ioctl = userfaultfd_ioctl,
1319 .compat_ioctl = userfaultfd_ioctl,
1320 .llseek = noop_llseek,
1321};
1322
Andrea Arcangeli3004ec92015-09-04 15:46:48 -07001323static void init_once_userfaultfd_ctx(void *mem)
1324{
1325 struct userfaultfd_ctx *ctx = (struct userfaultfd_ctx *) mem;
1326
1327 init_waitqueue_head(&ctx->fault_pending_wqh);
1328 init_waitqueue_head(&ctx->fault_wqh);
1329 init_waitqueue_head(&ctx->fd_wqh);
Andrea Arcangeli2c5b7e12015-09-04 15:47:23 -07001330 seqcount_init(&ctx->refile_seq);
Andrea Arcangeli3004ec92015-09-04 15:46:48 -07001331}
1332
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001333/**
1334 * userfaultfd_file_create - Creates an userfaultfd file pointer.
1335 * @flags: Flags for the userfaultfd file.
1336 *
1337 * This function creates an userfaultfd file pointer, w/out installing
1338 * it into the fd table. This is useful when the userfaultfd file is
1339 * used during the initialization of data structures that require
1340 * extra setup after the userfaultfd creation. So the userfaultfd
1341 * creation is split into the file pointer creation phase, and the
1342 * file descriptor installation phase. In this way races with
1343 * userspace closing the newly installed file descriptor can be
1344 * avoided. Returns an userfaultfd file pointer, or a proper error
1345 * pointer.
1346 */
1347static struct file *userfaultfd_file_create(int flags)
1348{
1349 struct file *file;
1350 struct userfaultfd_ctx *ctx;
1351
1352 BUG_ON(!current->mm);
1353
1354 /* Check the UFFD_* constants for consistency. */
1355 BUILD_BUG_ON(UFFD_CLOEXEC != O_CLOEXEC);
1356 BUILD_BUG_ON(UFFD_NONBLOCK != O_NONBLOCK);
1357
1358 file = ERR_PTR(-EINVAL);
1359 if (flags & ~UFFD_SHARED_FCNTL_FLAGS)
1360 goto out;
1361
1362 file = ERR_PTR(-ENOMEM);
Andrea Arcangeli3004ec92015-09-04 15:46:48 -07001363 ctx = kmem_cache_alloc(userfaultfd_ctx_cachep, GFP_KERNEL);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001364 if (!ctx)
1365 goto out;
1366
1367 atomic_set(&ctx->refcount, 1);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001368 ctx->flags = flags;
1369 ctx->state = UFFD_STATE_WAIT_API;
1370 ctx->released = false;
1371 ctx->mm = current->mm;
1372 /* prevent the mm struct to be freed */
Oleg Nesterovd2005e32016-05-20 16:58:36 -07001373 atomic_inc(&ctx->mm->mm_count);
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001374
1375 file = anon_inode_getfile("[userfaultfd]", &userfaultfd_fops, ctx,
1376 O_RDWR | (flags & UFFD_SHARED_FCNTL_FLAGS));
Eric Biggersc03e9462015-09-17 16:01:54 -07001377 if (IS_ERR(file)) {
Oleg Nesterovd2005e32016-05-20 16:58:36 -07001378 mmdrop(ctx->mm);
Andrea Arcangeli3004ec92015-09-04 15:46:48 -07001379 kmem_cache_free(userfaultfd_ctx_cachep, ctx);
Eric Biggersc03e9462015-09-17 16:01:54 -07001380 }
Andrea Arcangeli86039bd2015-09-04 15:46:31 -07001381out:
1382 return file;
1383}
1384
1385SYSCALL_DEFINE1(userfaultfd, int, flags)
1386{
1387 int fd, error;
1388 struct file *file;
1389
1390 error = get_unused_fd_flags(flags & UFFD_SHARED_FCNTL_FLAGS);
1391 if (error < 0)
1392 return error;
1393 fd = error;
1394
1395 file = userfaultfd_file_create(flags);
1396 if (IS_ERR(file)) {
1397 error = PTR_ERR(file);
1398 goto err_put_unused_fd;
1399 }
1400 fd_install(fd, file);
1401
1402 return fd;
1403
1404err_put_unused_fd:
1405 put_unused_fd(fd);
1406
1407 return error;
1408}
Andrea Arcangeli3004ec92015-09-04 15:46:48 -07001409
1410static int __init userfaultfd_init(void)
1411{
1412 userfaultfd_ctx_cachep = kmem_cache_create("userfaultfd_ctx_cache",
1413 sizeof(struct userfaultfd_ctx),
1414 0,
1415 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1416 init_once_userfaultfd_ctx);
1417 return 0;
1418}
1419__initcall(userfaultfd_init);