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