userfaultfd: non-cooperative: robustness check
[linux-block.git] / fs / userfaultfd.c
CommitLineData
86039bd3
AA
1/*
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
9cd75c3c 15#include <linux/list.h>
86039bd3 16#include <linux/hashtable.h>
174cd4b1 17#include <linux/sched/signal.h>
6e84f315 18#include <linux/sched/mm.h>
86039bd3
AA
19#include <linux/mm.h>
20#include <linux/poll.h>
21#include <linux/slab.h>
22#include <linux/seq_file.h>
23#include <linux/file.h>
24#include <linux/bug.h>
25#include <linux/anon_inodes.h>
26#include <linux/syscalls.h>
27#include <linux/userfaultfd_k.h>
28#include <linux/mempolicy.h>
29#include <linux/ioctl.h>
30#include <linux/security.h>
cab350af 31#include <linux/hugetlb.h>
86039bd3 32
3004ec9c
AA
33static struct kmem_cache *userfaultfd_ctx_cachep __read_mostly;
34
86039bd3
AA
35enum userfaultfd_state {
36 UFFD_STATE_WAIT_API,
37 UFFD_STATE_RUNNING,
38};
39
3004ec9c
AA
40/*
41 * Start with fault_pending_wqh and fault_wqh so they're more likely
42 * to be in the same cacheline.
43 */
86039bd3 44struct userfaultfd_ctx {
15b726ef
AA
45 /* waitqueue head for the pending (i.e. not read) userfaults */
46 wait_queue_head_t fault_pending_wqh;
47 /* waitqueue head for the userfaults */
86039bd3
AA
48 wait_queue_head_t fault_wqh;
49 /* waitqueue head for the pseudo fd to wakeup poll/read */
50 wait_queue_head_t fd_wqh;
9cd75c3c
PE
51 /* waitqueue head for events */
52 wait_queue_head_t event_wqh;
2c5b7e1b
AA
53 /* a refile sequence protected by fault_pending_wqh lock */
54 struct seqcount refile_seq;
3004ec9c
AA
55 /* pseudo fd refcounting */
56 atomic_t refcount;
86039bd3
AA
57 /* userfaultfd syscall flags */
58 unsigned int flags;
9cd75c3c
PE
59 /* features requested from the userspace */
60 unsigned int features;
86039bd3
AA
61 /* state machine */
62 enum userfaultfd_state state;
63 /* released */
64 bool released;
65 /* mm with one ore more vmas attached to this userfaultfd_ctx */
66 struct mm_struct *mm;
67};
68
893e26e6
PE
69struct userfaultfd_fork_ctx {
70 struct userfaultfd_ctx *orig;
71 struct userfaultfd_ctx *new;
72 struct list_head list;
73};
74
897ab3e0
MR
75struct userfaultfd_unmap_ctx {
76 struct userfaultfd_ctx *ctx;
77 unsigned long start;
78 unsigned long end;
79 struct list_head list;
80};
81
86039bd3 82struct userfaultfd_wait_queue {
a9b85f94 83 struct uffd_msg msg;
86039bd3 84 wait_queue_t wq;
86039bd3 85 struct userfaultfd_ctx *ctx;
15a77c6f 86 bool waken;
86039bd3
AA
87};
88
89struct userfaultfd_wake_range {
90 unsigned long start;
91 unsigned long len;
92};
93
94static int userfaultfd_wake_function(wait_queue_t *wq, unsigned mode,
95 int wake_flags, void *key)
96{
97 struct userfaultfd_wake_range *range = key;
98 int ret;
99 struct userfaultfd_wait_queue *uwq;
100 unsigned long start, len;
101
102 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
103 ret = 0;
86039bd3
AA
104 /* len == 0 means wake all */
105 start = range->start;
106 len = range->len;
a9b85f94
AA
107 if (len && (start > uwq->msg.arg.pagefault.address ||
108 start + len <= uwq->msg.arg.pagefault.address))
86039bd3 109 goto out;
15a77c6f
AA
110 WRITE_ONCE(uwq->waken, true);
111 /*
112 * The implicit smp_mb__before_spinlock in try_to_wake_up()
113 * renders uwq->waken visible to other CPUs before the task is
114 * waken.
115 */
86039bd3
AA
116 ret = wake_up_state(wq->private, mode);
117 if (ret)
118 /*
119 * Wake only once, autoremove behavior.
120 *
121 * After the effect of list_del_init is visible to the
122 * other CPUs, the waitqueue may disappear from under
123 * us, see the !list_empty_careful() in
124 * handle_userfault(). try_to_wake_up() has an
125 * implicit smp_mb__before_spinlock, and the
126 * wq->private is read before calling the extern
127 * function "wake_up_state" (which in turns calls
128 * try_to_wake_up). While the spin_lock;spin_unlock;
129 * wouldn't be enough, the smp_mb__before_spinlock is
130 * enough to avoid an explicit smp_mb() here.
131 */
132 list_del_init(&wq->task_list);
133out:
134 return ret;
135}
136
137/**
138 * userfaultfd_ctx_get - Acquires a reference to the internal userfaultfd
139 * context.
140 * @ctx: [in] Pointer to the userfaultfd context.
141 *
142 * Returns: In case of success, returns not zero.
143 */
144static void userfaultfd_ctx_get(struct userfaultfd_ctx *ctx)
145{
146 if (!atomic_inc_not_zero(&ctx->refcount))
147 BUG();
148}
149
150/**
151 * userfaultfd_ctx_put - Releases a reference to the internal userfaultfd
152 * context.
153 * @ctx: [in] Pointer to userfaultfd context.
154 *
155 * The userfaultfd context reference must have been previously acquired either
156 * with userfaultfd_ctx_get() or userfaultfd_ctx_fdget().
157 */
158static void userfaultfd_ctx_put(struct userfaultfd_ctx *ctx)
159{
160 if (atomic_dec_and_test(&ctx->refcount)) {
161 VM_BUG_ON(spin_is_locked(&ctx->fault_pending_wqh.lock));
162 VM_BUG_ON(waitqueue_active(&ctx->fault_pending_wqh));
163 VM_BUG_ON(spin_is_locked(&ctx->fault_wqh.lock));
164 VM_BUG_ON(waitqueue_active(&ctx->fault_wqh));
9cd75c3c
PE
165 VM_BUG_ON(spin_is_locked(&ctx->event_wqh.lock));
166 VM_BUG_ON(waitqueue_active(&ctx->event_wqh));
86039bd3
AA
167 VM_BUG_ON(spin_is_locked(&ctx->fd_wqh.lock));
168 VM_BUG_ON(waitqueue_active(&ctx->fd_wqh));
d2005e3f 169 mmdrop(ctx->mm);
3004ec9c 170 kmem_cache_free(userfaultfd_ctx_cachep, ctx);
86039bd3
AA
171 }
172}
173
a9b85f94 174static inline void msg_init(struct uffd_msg *msg)
86039bd3 175{
a9b85f94
AA
176 BUILD_BUG_ON(sizeof(struct uffd_msg) != 32);
177 /*
178 * Must use memset to zero out the paddings or kernel data is
179 * leaked to userland.
180 */
181 memset(msg, 0, sizeof(struct uffd_msg));
182}
183
184static inline struct uffd_msg userfault_msg(unsigned long address,
185 unsigned int flags,
186 unsigned long reason)
187{
188 struct uffd_msg msg;
189 msg_init(&msg);
190 msg.event = UFFD_EVENT_PAGEFAULT;
191 msg.arg.pagefault.address = address;
86039bd3
AA
192 if (flags & FAULT_FLAG_WRITE)
193 /*
a4605a61 194 * If UFFD_FEATURE_PAGEFAULT_FLAG_WP was set in the
a9b85f94
AA
195 * uffdio_api.features and UFFD_PAGEFAULT_FLAG_WRITE
196 * was not set in a UFFD_EVENT_PAGEFAULT, it means it
197 * was a read fault, otherwise if set it means it's
198 * a write fault.
86039bd3 199 */
a9b85f94 200 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WRITE;
86039bd3
AA
201 if (reason & VM_UFFD_WP)
202 /*
a9b85f94
AA
203 * If UFFD_FEATURE_PAGEFAULT_FLAG_WP was set in the
204 * uffdio_api.features and UFFD_PAGEFAULT_FLAG_WP was
205 * not set in a UFFD_EVENT_PAGEFAULT, it means it was
206 * a missing fault, otherwise if set it means it's a
207 * write protect fault.
86039bd3 208 */
a9b85f94
AA
209 msg.arg.pagefault.flags |= UFFD_PAGEFAULT_FLAG_WP;
210 return msg;
86039bd3
AA
211}
212
369cd212
MK
213#ifdef CONFIG_HUGETLB_PAGE
214/*
215 * Same functionality as userfaultfd_must_wait below with modifications for
216 * hugepmd ranges.
217 */
218static inline bool userfaultfd_huge_must_wait(struct userfaultfd_ctx *ctx,
219 unsigned long address,
220 unsigned long flags,
221 unsigned long reason)
222{
223 struct mm_struct *mm = ctx->mm;
224 pte_t *pte;
225 bool ret = true;
226
227 VM_BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
228
229 pte = huge_pte_offset(mm, address);
230 if (!pte)
231 goto out;
232
233 ret = false;
234
235 /*
236 * Lockless access: we're in a wait_event so it's ok if it
237 * changes under us.
238 */
239 if (huge_pte_none(*pte))
240 ret = true;
241 if (!huge_pte_write(*pte) && (reason & VM_UFFD_WP))
242 ret = true;
243out:
244 return ret;
245}
246#else
247static inline bool userfaultfd_huge_must_wait(struct userfaultfd_ctx *ctx,
248 unsigned long address,
249 unsigned long flags,
250 unsigned long reason)
251{
252 return false; /* should never get here */
253}
254#endif /* CONFIG_HUGETLB_PAGE */
255
8d2afd96
AA
256/*
257 * Verify the pagetables are still not ok after having reigstered into
258 * the fault_pending_wqh to avoid userland having to UFFDIO_WAKE any
259 * userfault that has already been resolved, if userfaultfd_read and
260 * UFFDIO_COPY|ZEROPAGE are being run simultaneously on two different
261 * threads.
262 */
263static inline bool userfaultfd_must_wait(struct userfaultfd_ctx *ctx,
264 unsigned long address,
265 unsigned long flags,
266 unsigned long reason)
267{
268 struct mm_struct *mm = ctx->mm;
269 pgd_t *pgd;
270 pud_t *pud;
271 pmd_t *pmd, _pmd;
272 pte_t *pte;
273 bool ret = true;
274
275 VM_BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
276
277 pgd = pgd_offset(mm, address);
278 if (!pgd_present(*pgd))
279 goto out;
280 pud = pud_offset(pgd, address);
281 if (!pud_present(*pud))
282 goto out;
283 pmd = pmd_offset(pud, address);
284 /*
285 * READ_ONCE must function as a barrier with narrower scope
286 * and it must be equivalent to:
287 * _pmd = *pmd; barrier();
288 *
289 * This is to deal with the instability (as in
290 * pmd_trans_unstable) of the pmd.
291 */
292 _pmd = READ_ONCE(*pmd);
293 if (!pmd_present(_pmd))
294 goto out;
295
296 ret = false;
297 if (pmd_trans_huge(_pmd))
298 goto out;
299
300 /*
301 * the pmd is stable (as in !pmd_trans_unstable) so we can re-read it
302 * and use the standard pte_offset_map() instead of parsing _pmd.
303 */
304 pte = pte_offset_map(pmd, address);
305 /*
306 * Lockless access: we're in a wait_event so it's ok if it
307 * changes under us.
308 */
309 if (pte_none(*pte))
310 ret = true;
311 pte_unmap(pte);
312
313out:
314 return ret;
315}
316
86039bd3
AA
317/*
318 * The locking rules involved in returning VM_FAULT_RETRY depending on
319 * FAULT_FLAG_ALLOW_RETRY, FAULT_FLAG_RETRY_NOWAIT and
320 * FAULT_FLAG_KILLABLE are not straightforward. The "Caution"
321 * recommendation in __lock_page_or_retry is not an understatement.
322 *
323 * If FAULT_FLAG_ALLOW_RETRY is set, the mmap_sem must be released
324 * before returning VM_FAULT_RETRY only if FAULT_FLAG_RETRY_NOWAIT is
325 * not set.
326 *
327 * If FAULT_FLAG_ALLOW_RETRY is set but FAULT_FLAG_KILLABLE is not
328 * set, VM_FAULT_RETRY can still be returned if and only if there are
329 * fatal_signal_pending()s, and the mmap_sem must be released before
330 * returning it.
331 */
82b0f8c3 332int handle_userfault(struct vm_fault *vmf, unsigned long reason)
86039bd3 333{
82b0f8c3 334 struct mm_struct *mm = vmf->vma->vm_mm;
86039bd3
AA
335 struct userfaultfd_ctx *ctx;
336 struct userfaultfd_wait_queue uwq;
ba85c702 337 int ret;
dfa37dc3 338 bool must_wait, return_to_userland;
15a77c6f 339 long blocking_state;
86039bd3
AA
340
341 BUG_ON(!rwsem_is_locked(&mm->mmap_sem));
342
ba85c702 343 ret = VM_FAULT_SIGBUS;
82b0f8c3 344 ctx = vmf->vma->vm_userfaultfd_ctx.ctx;
86039bd3 345 if (!ctx)
ba85c702 346 goto out;
86039bd3
AA
347
348 BUG_ON(ctx->mm != mm);
349
350 VM_BUG_ON(reason & ~(VM_UFFD_MISSING|VM_UFFD_WP));
351 VM_BUG_ON(!(reason & VM_UFFD_MISSING) ^ !!(reason & VM_UFFD_WP));
352
353 /*
354 * If it's already released don't get it. This avoids to loop
355 * in __get_user_pages if userfaultfd_release waits on the
356 * caller of handle_userfault to release the mmap_sem.
357 */
358 if (unlikely(ACCESS_ONCE(ctx->released)))
ba85c702 359 goto out;
86039bd3 360
39680f50
LT
361 /*
362 * We don't do userfault handling for the final child pid update.
363 */
364 if (current->flags & PF_EXITING)
365 goto out;
366
86039bd3
AA
367 /*
368 * Check that we can return VM_FAULT_RETRY.
369 *
370 * NOTE: it should become possible to return VM_FAULT_RETRY
371 * even if FAULT_FLAG_TRIED is set without leading to gup()
372 * -EBUSY failures, if the userfaultfd is to be extended for
373 * VM_UFFD_WP tracking and we intend to arm the userfault
374 * without first stopping userland access to the memory. For
375 * VM_UFFD_MISSING userfaults this is enough for now.
376 */
82b0f8c3 377 if (unlikely(!(vmf->flags & FAULT_FLAG_ALLOW_RETRY))) {
86039bd3
AA
378 /*
379 * Validate the invariant that nowait must allow retry
380 * to be sure not to return SIGBUS erroneously on
381 * nowait invocations.
382 */
82b0f8c3 383 BUG_ON(vmf->flags & FAULT_FLAG_RETRY_NOWAIT);
86039bd3
AA
384#ifdef CONFIG_DEBUG_VM
385 if (printk_ratelimit()) {
386 printk(KERN_WARNING
82b0f8c3
JK
387 "FAULT_FLAG_ALLOW_RETRY missing %x\n",
388 vmf->flags);
86039bd3
AA
389 dump_stack();
390 }
391#endif
ba85c702 392 goto out;
86039bd3
AA
393 }
394
395 /*
396 * Handle nowait, not much to do other than tell it to retry
397 * and wait.
398 */
ba85c702 399 ret = VM_FAULT_RETRY;
82b0f8c3 400 if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
ba85c702 401 goto out;
86039bd3
AA
402
403 /* take the reference before dropping the mmap_sem */
404 userfaultfd_ctx_get(ctx);
405
86039bd3
AA
406 init_waitqueue_func_entry(&uwq.wq, userfaultfd_wake_function);
407 uwq.wq.private = current;
82b0f8c3 408 uwq.msg = userfault_msg(vmf->address, vmf->flags, reason);
86039bd3 409 uwq.ctx = ctx;
15a77c6f 410 uwq.waken = false;
86039bd3 411
bae473a4 412 return_to_userland =
82b0f8c3 413 (vmf->flags & (FAULT_FLAG_USER|FAULT_FLAG_KILLABLE)) ==
dfa37dc3 414 (FAULT_FLAG_USER|FAULT_FLAG_KILLABLE);
15a77c6f
AA
415 blocking_state = return_to_userland ? TASK_INTERRUPTIBLE :
416 TASK_KILLABLE;
dfa37dc3 417
15b726ef 418 spin_lock(&ctx->fault_pending_wqh.lock);
86039bd3
AA
419 /*
420 * After the __add_wait_queue the uwq is visible to userland
421 * through poll/read().
422 */
15b726ef
AA
423 __add_wait_queue(&ctx->fault_pending_wqh, &uwq.wq);
424 /*
425 * The smp_mb() after __set_current_state prevents the reads
426 * following the spin_unlock to happen before the list_add in
427 * __add_wait_queue.
428 */
15a77c6f 429 set_current_state(blocking_state);
15b726ef 430 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3 431
369cd212
MK
432 if (!is_vm_hugetlb_page(vmf->vma))
433 must_wait = userfaultfd_must_wait(ctx, vmf->address, vmf->flags,
434 reason);
435 else
436 must_wait = userfaultfd_huge_must_wait(ctx, vmf->address,
437 vmf->flags, reason);
8d2afd96
AA
438 up_read(&mm->mmap_sem);
439
440 if (likely(must_wait && !ACCESS_ONCE(ctx->released) &&
dfa37dc3
AA
441 (return_to_userland ? !signal_pending(current) :
442 !fatal_signal_pending(current)))) {
86039bd3
AA
443 wake_up_poll(&ctx->fd_wqh, POLLIN);
444 schedule();
ba85c702 445 ret |= VM_FAULT_MAJOR;
15a77c6f
AA
446
447 /*
448 * False wakeups can orginate even from rwsem before
449 * up_read() however userfaults will wait either for a
450 * targeted wakeup on the specific uwq waitqueue from
451 * wake_userfault() or for signals or for uffd
452 * release.
453 */
454 while (!READ_ONCE(uwq.waken)) {
455 /*
456 * This needs the full smp_store_mb()
457 * guarantee as the state write must be
458 * visible to other CPUs before reading
459 * uwq.waken from other CPUs.
460 */
461 set_current_state(blocking_state);
462 if (READ_ONCE(uwq.waken) ||
463 READ_ONCE(ctx->released) ||
464 (return_to_userland ? signal_pending(current) :
465 fatal_signal_pending(current)))
466 break;
467 schedule();
468 }
ba85c702 469 }
86039bd3 470
ba85c702 471 __set_current_state(TASK_RUNNING);
15b726ef 472
dfa37dc3
AA
473 if (return_to_userland) {
474 if (signal_pending(current) &&
475 !fatal_signal_pending(current)) {
476 /*
477 * If we got a SIGSTOP or SIGCONT and this is
478 * a normal userland page fault, just let
479 * userland return so the signal will be
480 * handled and gdb debugging works. The page
481 * fault code immediately after we return from
482 * this function is going to release the
483 * mmap_sem and it's not depending on it
484 * (unlike gup would if we were not to return
485 * VM_FAULT_RETRY).
486 *
487 * If a fatal signal is pending we still take
488 * the streamlined VM_FAULT_RETRY failure path
489 * and there's no need to retake the mmap_sem
490 * in such case.
491 */
492 down_read(&mm->mmap_sem);
6bbc4a41 493 ret = VM_FAULT_NOPAGE;
dfa37dc3
AA
494 }
495 }
496
15b726ef
AA
497 /*
498 * Here we race with the list_del; list_add in
499 * userfaultfd_ctx_read(), however because we don't ever run
500 * list_del_init() to refile across the two lists, the prev
501 * and next pointers will never point to self. list_add also
502 * would never let any of the two pointers to point to
503 * self. So list_empty_careful won't risk to see both pointers
504 * pointing to self at any time during the list refile. The
505 * only case where list_del_init() is called is the full
506 * removal in the wake function and there we don't re-list_add
507 * and it's fine not to block on the spinlock. The uwq on this
508 * kernel stack can be released after the list_del_init.
509 */
ba85c702 510 if (!list_empty_careful(&uwq.wq.task_list)) {
15b726ef
AA
511 spin_lock(&ctx->fault_pending_wqh.lock);
512 /*
513 * No need of list_del_init(), the uwq on the stack
514 * will be freed shortly anyway.
515 */
516 list_del(&uwq.wq.task_list);
517 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3 518 }
86039bd3
AA
519
520 /*
521 * ctx may go away after this if the userfault pseudo fd is
522 * already released.
523 */
524 userfaultfd_ctx_put(ctx);
525
ba85c702
AA
526out:
527 return ret;
86039bd3
AA
528}
529
893e26e6
PE
530static int userfaultfd_event_wait_completion(struct userfaultfd_ctx *ctx,
531 struct userfaultfd_wait_queue *ewq)
9cd75c3c 532{
9a69a829
AA
533 int ret;
534
535 ret = -1;
536 if (WARN_ON_ONCE(current->flags & PF_EXITING))
537 goto out;
9cd75c3c 538
9a69a829 539 ret = 0;
9cd75c3c
PE
540 ewq->ctx = ctx;
541 init_waitqueue_entry(&ewq->wq, current);
542
543 spin_lock(&ctx->event_wqh.lock);
544 /*
545 * After the __add_wait_queue the uwq is visible to userland
546 * through poll/read().
547 */
548 __add_wait_queue(&ctx->event_wqh, &ewq->wq);
549 for (;;) {
550 set_current_state(TASK_KILLABLE);
551 if (ewq->msg.event == 0)
552 break;
553 if (ACCESS_ONCE(ctx->released) ||
554 fatal_signal_pending(current)) {
555 ret = -1;
556 __remove_wait_queue(&ctx->event_wqh, &ewq->wq);
557 break;
558 }
559
560 spin_unlock(&ctx->event_wqh.lock);
561
562 wake_up_poll(&ctx->fd_wqh, POLLIN);
563 schedule();
564
565 spin_lock(&ctx->event_wqh.lock);
566 }
567 __set_current_state(TASK_RUNNING);
568 spin_unlock(&ctx->event_wqh.lock);
569
570 /*
571 * ctx may go away after this if the userfault pseudo fd is
572 * already released.
573 */
9a69a829 574out:
9cd75c3c
PE
575 userfaultfd_ctx_put(ctx);
576 return ret;
577}
578
579static void userfaultfd_event_complete(struct userfaultfd_ctx *ctx,
580 struct userfaultfd_wait_queue *ewq)
581{
582 ewq->msg.event = 0;
583 wake_up_locked(&ctx->event_wqh);
584 __remove_wait_queue(&ctx->event_wqh, &ewq->wq);
585}
586
893e26e6
PE
587int dup_userfaultfd(struct vm_area_struct *vma, struct list_head *fcs)
588{
589 struct userfaultfd_ctx *ctx = NULL, *octx;
590 struct userfaultfd_fork_ctx *fctx;
591
592 octx = vma->vm_userfaultfd_ctx.ctx;
593 if (!octx || !(octx->features & UFFD_FEATURE_EVENT_FORK)) {
594 vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
595 vma->vm_flags &= ~(VM_UFFD_WP | VM_UFFD_MISSING);
596 return 0;
597 }
598
599 list_for_each_entry(fctx, fcs, list)
600 if (fctx->orig == octx) {
601 ctx = fctx->new;
602 break;
603 }
604
605 if (!ctx) {
606 fctx = kmalloc(sizeof(*fctx), GFP_KERNEL);
607 if (!fctx)
608 return -ENOMEM;
609
610 ctx = kmem_cache_alloc(userfaultfd_ctx_cachep, GFP_KERNEL);
611 if (!ctx) {
612 kfree(fctx);
613 return -ENOMEM;
614 }
615
616 atomic_set(&ctx->refcount, 1);
617 ctx->flags = octx->flags;
618 ctx->state = UFFD_STATE_RUNNING;
619 ctx->features = octx->features;
620 ctx->released = false;
621 ctx->mm = vma->vm_mm;
d3aadc8e 622 atomic_inc(&ctx->mm->mm_count);
893e26e6
PE
623
624 userfaultfd_ctx_get(octx);
625 fctx->orig = octx;
626 fctx->new = ctx;
627 list_add_tail(&fctx->list, fcs);
628 }
629
630 vma->vm_userfaultfd_ctx.ctx = ctx;
631 return 0;
632}
633
634static int dup_fctx(struct userfaultfd_fork_ctx *fctx)
635{
636 struct userfaultfd_ctx *ctx = fctx->orig;
637 struct userfaultfd_wait_queue ewq;
638
639 msg_init(&ewq.msg);
640
641 ewq.msg.event = UFFD_EVENT_FORK;
642 ewq.msg.arg.reserved.reserved1 = (unsigned long)fctx->new;
643
644 return userfaultfd_event_wait_completion(ctx, &ewq);
645}
646
647void dup_userfaultfd_complete(struct list_head *fcs)
648{
649 int ret = 0;
650 struct userfaultfd_fork_ctx *fctx, *n;
651
652 list_for_each_entry_safe(fctx, n, fcs, list) {
653 if (!ret)
654 ret = dup_fctx(fctx);
655 list_del(&fctx->list);
656 kfree(fctx);
657 }
658}
659
72f87654
PE
660void mremap_userfaultfd_prep(struct vm_area_struct *vma,
661 struct vm_userfaultfd_ctx *vm_ctx)
662{
663 struct userfaultfd_ctx *ctx;
664
665 ctx = vma->vm_userfaultfd_ctx.ctx;
666 if (ctx && (ctx->features & UFFD_FEATURE_EVENT_REMAP)) {
667 vm_ctx->ctx = ctx;
668 userfaultfd_ctx_get(ctx);
669 }
670}
671
90794bf1 672void mremap_userfaultfd_complete(struct vm_userfaultfd_ctx *vm_ctx,
72f87654
PE
673 unsigned long from, unsigned long to,
674 unsigned long len)
675{
90794bf1 676 struct userfaultfd_ctx *ctx = vm_ctx->ctx;
72f87654
PE
677 struct userfaultfd_wait_queue ewq;
678
679 if (!ctx)
680 return;
681
682 if (to & ~PAGE_MASK) {
683 userfaultfd_ctx_put(ctx);
684 return;
685 }
686
687 msg_init(&ewq.msg);
688
689 ewq.msg.event = UFFD_EVENT_REMAP;
690 ewq.msg.arg.remap.from = from;
691 ewq.msg.arg.remap.to = to;
692 ewq.msg.arg.remap.len = len;
693
694 userfaultfd_event_wait_completion(ctx, &ewq);
695}
696
d811914d
MR
697void userfaultfd_remove(struct vm_area_struct *vma,
698 struct vm_area_struct **prev,
699 unsigned long start, unsigned long end)
05ce7724
PE
700{
701 struct mm_struct *mm = vma->vm_mm;
702 struct userfaultfd_ctx *ctx;
703 struct userfaultfd_wait_queue ewq;
704
705 ctx = vma->vm_userfaultfd_ctx.ctx;
d811914d 706 if (!ctx || !(ctx->features & UFFD_FEATURE_EVENT_REMOVE))
05ce7724
PE
707 return;
708
709 userfaultfd_ctx_get(ctx);
710 up_read(&mm->mmap_sem);
711
712 *prev = NULL; /* We wait for ACK w/o the mmap semaphore */
713
714 msg_init(&ewq.msg);
715
d811914d
MR
716 ewq.msg.event = UFFD_EVENT_REMOVE;
717 ewq.msg.arg.remove.start = start;
718 ewq.msg.arg.remove.end = end;
05ce7724
PE
719
720 userfaultfd_event_wait_completion(ctx, &ewq);
721
722 down_read(&mm->mmap_sem);
723}
724
897ab3e0
MR
725static bool has_unmap_ctx(struct userfaultfd_ctx *ctx, struct list_head *unmaps,
726 unsigned long start, unsigned long end)
727{
728 struct userfaultfd_unmap_ctx *unmap_ctx;
729
730 list_for_each_entry(unmap_ctx, unmaps, list)
731 if (unmap_ctx->ctx == ctx && unmap_ctx->start == start &&
732 unmap_ctx->end == end)
733 return true;
734
735 return false;
736}
737
738int userfaultfd_unmap_prep(struct vm_area_struct *vma,
739 unsigned long start, unsigned long end,
740 struct list_head *unmaps)
741{
742 for ( ; vma && vma->vm_start < end; vma = vma->vm_next) {
743 struct userfaultfd_unmap_ctx *unmap_ctx;
744 struct userfaultfd_ctx *ctx = vma->vm_userfaultfd_ctx.ctx;
745
746 if (!ctx || !(ctx->features & UFFD_FEATURE_EVENT_UNMAP) ||
747 has_unmap_ctx(ctx, unmaps, start, end))
748 continue;
749
750 unmap_ctx = kzalloc(sizeof(*unmap_ctx), GFP_KERNEL);
751 if (!unmap_ctx)
752 return -ENOMEM;
753
754 userfaultfd_ctx_get(ctx);
755 unmap_ctx->ctx = ctx;
756 unmap_ctx->start = start;
757 unmap_ctx->end = end;
758 list_add_tail(&unmap_ctx->list, unmaps);
759 }
760
761 return 0;
762}
763
764void userfaultfd_unmap_complete(struct mm_struct *mm, struct list_head *uf)
765{
766 struct userfaultfd_unmap_ctx *ctx, *n;
767 struct userfaultfd_wait_queue ewq;
768
769 list_for_each_entry_safe(ctx, n, uf, list) {
770 msg_init(&ewq.msg);
771
772 ewq.msg.event = UFFD_EVENT_UNMAP;
773 ewq.msg.arg.remove.start = ctx->start;
774 ewq.msg.arg.remove.end = ctx->end;
775
776 userfaultfd_event_wait_completion(ctx->ctx, &ewq);
777
778 list_del(&ctx->list);
779 kfree(ctx);
780 }
781}
782
86039bd3
AA
783static int userfaultfd_release(struct inode *inode, struct file *file)
784{
785 struct userfaultfd_ctx *ctx = file->private_data;
786 struct mm_struct *mm = ctx->mm;
787 struct vm_area_struct *vma, *prev;
788 /* len == 0 means wake all */
789 struct userfaultfd_wake_range range = { .len = 0, };
790 unsigned long new_flags;
791
792 ACCESS_ONCE(ctx->released) = true;
793
d2005e3f
ON
794 if (!mmget_not_zero(mm))
795 goto wakeup;
796
86039bd3
AA
797 /*
798 * Flush page faults out of all CPUs. NOTE: all page faults
799 * must be retried without returning VM_FAULT_SIGBUS if
800 * userfaultfd_ctx_get() succeeds but vma->vma_userfault_ctx
801 * changes while handle_userfault released the mmap_sem. So
802 * it's critical that released is set to true (above), before
803 * taking the mmap_sem for writing.
804 */
805 down_write(&mm->mmap_sem);
806 prev = NULL;
807 for (vma = mm->mmap; vma; vma = vma->vm_next) {
808 cond_resched();
809 BUG_ON(!!vma->vm_userfaultfd_ctx.ctx ^
810 !!(vma->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
811 if (vma->vm_userfaultfd_ctx.ctx != ctx) {
812 prev = vma;
813 continue;
814 }
815 new_flags = vma->vm_flags & ~(VM_UFFD_MISSING | VM_UFFD_WP);
816 prev = vma_merge(mm, prev, vma->vm_start, vma->vm_end,
817 new_flags, vma->anon_vma,
818 vma->vm_file, vma->vm_pgoff,
819 vma_policy(vma),
820 NULL_VM_UFFD_CTX);
821 if (prev)
822 vma = prev;
823 else
824 prev = vma;
825 vma->vm_flags = new_flags;
826 vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
827 }
828 up_write(&mm->mmap_sem);
d2005e3f
ON
829 mmput(mm);
830wakeup:
86039bd3 831 /*
15b726ef 832 * After no new page faults can wait on this fault_*wqh, flush
86039bd3 833 * the last page faults that may have been already waiting on
15b726ef 834 * the fault_*wqh.
86039bd3 835 */
15b726ef 836 spin_lock(&ctx->fault_pending_wqh.lock);
ac5be6b4
AA
837 __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL, &range);
838 __wake_up_locked_key(&ctx->fault_wqh, TASK_NORMAL, &range);
15b726ef 839 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3
AA
840
841 wake_up_poll(&ctx->fd_wqh, POLLHUP);
842 userfaultfd_ctx_put(ctx);
843 return 0;
844}
845
15b726ef 846/* fault_pending_wqh.lock must be hold by the caller */
6dcc27fd
PE
847static inline struct userfaultfd_wait_queue *find_userfault_in(
848 wait_queue_head_t *wqh)
86039bd3
AA
849{
850 wait_queue_t *wq;
15b726ef 851 struct userfaultfd_wait_queue *uwq;
86039bd3 852
6dcc27fd 853 VM_BUG_ON(!spin_is_locked(&wqh->lock));
86039bd3 854
15b726ef 855 uwq = NULL;
6dcc27fd 856 if (!waitqueue_active(wqh))
15b726ef
AA
857 goto out;
858 /* walk in reverse to provide FIFO behavior to read userfaults */
6dcc27fd 859 wq = list_last_entry(&wqh->task_list, typeof(*wq), task_list);
15b726ef
AA
860 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
861out:
862 return uwq;
86039bd3 863}
6dcc27fd
PE
864
865static inline struct userfaultfd_wait_queue *find_userfault(
866 struct userfaultfd_ctx *ctx)
867{
868 return find_userfault_in(&ctx->fault_pending_wqh);
869}
86039bd3 870
9cd75c3c
PE
871static inline struct userfaultfd_wait_queue *find_userfault_evt(
872 struct userfaultfd_ctx *ctx)
873{
874 return find_userfault_in(&ctx->event_wqh);
875}
876
86039bd3
AA
877static unsigned int userfaultfd_poll(struct file *file, poll_table *wait)
878{
879 struct userfaultfd_ctx *ctx = file->private_data;
880 unsigned int ret;
881
882 poll_wait(file, &ctx->fd_wqh, wait);
883
884 switch (ctx->state) {
885 case UFFD_STATE_WAIT_API:
886 return POLLERR;
887 case UFFD_STATE_RUNNING:
ba85c702
AA
888 /*
889 * poll() never guarantees that read won't block.
890 * userfaults can be waken before they're read().
891 */
892 if (unlikely(!(file->f_flags & O_NONBLOCK)))
893 return POLLERR;
15b726ef
AA
894 /*
895 * lockless access to see if there are pending faults
896 * __pollwait last action is the add_wait_queue but
897 * the spin_unlock would allow the waitqueue_active to
898 * pass above the actual list_add inside
899 * add_wait_queue critical section. So use a full
900 * memory barrier to serialize the list_add write of
901 * add_wait_queue() with the waitqueue_active read
902 * below.
903 */
904 ret = 0;
905 smp_mb();
906 if (waitqueue_active(&ctx->fault_pending_wqh))
907 ret = POLLIN;
9cd75c3c
PE
908 else if (waitqueue_active(&ctx->event_wqh))
909 ret = POLLIN;
910
86039bd3
AA
911 return ret;
912 default:
8474901a
AA
913 WARN_ON_ONCE(1);
914 return POLLERR;
86039bd3
AA
915 }
916}
917
893e26e6
PE
918static const struct file_operations userfaultfd_fops;
919
920static int resolve_userfault_fork(struct userfaultfd_ctx *ctx,
921 struct userfaultfd_ctx *new,
922 struct uffd_msg *msg)
923{
924 int fd;
925 struct file *file;
926 unsigned int flags = new->flags & UFFD_SHARED_FCNTL_FLAGS;
927
928 fd = get_unused_fd_flags(flags);
929 if (fd < 0)
930 return fd;
931
932 file = anon_inode_getfile("[userfaultfd]", &userfaultfd_fops, new,
933 O_RDWR | flags);
934 if (IS_ERR(file)) {
935 put_unused_fd(fd);
936 return PTR_ERR(file);
937 }
938
939 fd_install(fd, file);
940 msg->arg.reserved.reserved1 = 0;
941 msg->arg.fork.ufd = fd;
942
943 return 0;
944}
945
86039bd3 946static ssize_t userfaultfd_ctx_read(struct userfaultfd_ctx *ctx, int no_wait,
a9b85f94 947 struct uffd_msg *msg)
86039bd3
AA
948{
949 ssize_t ret;
950 DECLARE_WAITQUEUE(wait, current);
15b726ef 951 struct userfaultfd_wait_queue *uwq;
893e26e6
PE
952 /*
953 * Handling fork event requires sleeping operations, so
954 * we drop the event_wqh lock, then do these ops, then
955 * lock it back and wake up the waiter. While the lock is
956 * dropped the ewq may go away so we keep track of it
957 * carefully.
958 */
959 LIST_HEAD(fork_event);
960 struct userfaultfd_ctx *fork_nctx = NULL;
86039bd3 961
15b726ef 962 /* always take the fd_wqh lock before the fault_pending_wqh lock */
86039bd3
AA
963 spin_lock(&ctx->fd_wqh.lock);
964 __add_wait_queue(&ctx->fd_wqh, &wait);
965 for (;;) {
966 set_current_state(TASK_INTERRUPTIBLE);
15b726ef
AA
967 spin_lock(&ctx->fault_pending_wqh.lock);
968 uwq = find_userfault(ctx);
969 if (uwq) {
2c5b7e1b
AA
970 /*
971 * Use a seqcount to repeat the lockless check
972 * in wake_userfault() to avoid missing
973 * wakeups because during the refile both
974 * waitqueue could become empty if this is the
975 * only userfault.
976 */
977 write_seqcount_begin(&ctx->refile_seq);
978
86039bd3 979 /*
15b726ef
AA
980 * The fault_pending_wqh.lock prevents the uwq
981 * to disappear from under us.
982 *
983 * Refile this userfault from
984 * fault_pending_wqh to fault_wqh, it's not
985 * pending anymore after we read it.
986 *
987 * Use list_del() by hand (as
988 * userfaultfd_wake_function also uses
989 * list_del_init() by hand) to be sure nobody
990 * changes __remove_wait_queue() to use
991 * list_del_init() in turn breaking the
992 * !list_empty_careful() check in
993 * handle_userfault(). The uwq->wq.task_list
994 * must never be empty at any time during the
995 * refile, or the waitqueue could disappear
996 * from under us. The "wait_queue_head_t"
997 * parameter of __remove_wait_queue() is unused
998 * anyway.
86039bd3 999 */
15b726ef
AA
1000 list_del(&uwq->wq.task_list);
1001 __add_wait_queue(&ctx->fault_wqh, &uwq->wq);
1002
2c5b7e1b
AA
1003 write_seqcount_end(&ctx->refile_seq);
1004
a9b85f94
AA
1005 /* careful to always initialize msg if ret == 0 */
1006 *msg = uwq->msg;
15b726ef 1007 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3
AA
1008 ret = 0;
1009 break;
1010 }
15b726ef 1011 spin_unlock(&ctx->fault_pending_wqh.lock);
9cd75c3c
PE
1012
1013 spin_lock(&ctx->event_wqh.lock);
1014 uwq = find_userfault_evt(ctx);
1015 if (uwq) {
1016 *msg = uwq->msg;
1017
893e26e6
PE
1018 if (uwq->msg.event == UFFD_EVENT_FORK) {
1019 fork_nctx = (struct userfaultfd_ctx *)
1020 (unsigned long)
1021 uwq->msg.arg.reserved.reserved1;
1022 list_move(&uwq->wq.task_list, &fork_event);
1023 spin_unlock(&ctx->event_wqh.lock);
1024 ret = 0;
1025 break;
1026 }
1027
9cd75c3c
PE
1028 userfaultfd_event_complete(ctx, uwq);
1029 spin_unlock(&ctx->event_wqh.lock);
1030 ret = 0;
1031 break;
1032 }
1033 spin_unlock(&ctx->event_wqh.lock);
1034
86039bd3
AA
1035 if (signal_pending(current)) {
1036 ret = -ERESTARTSYS;
1037 break;
1038 }
1039 if (no_wait) {
1040 ret = -EAGAIN;
1041 break;
1042 }
1043 spin_unlock(&ctx->fd_wqh.lock);
1044 schedule();
1045 spin_lock(&ctx->fd_wqh.lock);
1046 }
1047 __remove_wait_queue(&ctx->fd_wqh, &wait);
1048 __set_current_state(TASK_RUNNING);
1049 spin_unlock(&ctx->fd_wqh.lock);
1050
893e26e6
PE
1051 if (!ret && msg->event == UFFD_EVENT_FORK) {
1052 ret = resolve_userfault_fork(ctx, fork_nctx, msg);
1053
1054 if (!ret) {
1055 spin_lock(&ctx->event_wqh.lock);
1056 if (!list_empty(&fork_event)) {
1057 uwq = list_first_entry(&fork_event,
1058 typeof(*uwq),
1059 wq.task_list);
1060 list_del(&uwq->wq.task_list);
1061 __add_wait_queue(&ctx->event_wqh, &uwq->wq);
1062 userfaultfd_event_complete(ctx, uwq);
1063 }
1064 spin_unlock(&ctx->event_wqh.lock);
1065 }
1066 }
1067
86039bd3
AA
1068 return ret;
1069}
1070
1071static ssize_t userfaultfd_read(struct file *file, char __user *buf,
1072 size_t count, loff_t *ppos)
1073{
1074 struct userfaultfd_ctx *ctx = file->private_data;
1075 ssize_t _ret, ret = 0;
a9b85f94 1076 struct uffd_msg msg;
86039bd3
AA
1077 int no_wait = file->f_flags & O_NONBLOCK;
1078
1079 if (ctx->state == UFFD_STATE_WAIT_API)
1080 return -EINVAL;
86039bd3
AA
1081
1082 for (;;) {
a9b85f94 1083 if (count < sizeof(msg))
86039bd3 1084 return ret ? ret : -EINVAL;
a9b85f94 1085 _ret = userfaultfd_ctx_read(ctx, no_wait, &msg);
86039bd3
AA
1086 if (_ret < 0)
1087 return ret ? ret : _ret;
a9b85f94 1088 if (copy_to_user((__u64 __user *) buf, &msg, sizeof(msg)))
86039bd3 1089 return ret ? ret : -EFAULT;
a9b85f94
AA
1090 ret += sizeof(msg);
1091 buf += sizeof(msg);
1092 count -= sizeof(msg);
86039bd3
AA
1093 /*
1094 * Allow to read more than one fault at time but only
1095 * block if waiting for the very first one.
1096 */
1097 no_wait = O_NONBLOCK;
1098 }
1099}
1100
1101static void __wake_userfault(struct userfaultfd_ctx *ctx,
1102 struct userfaultfd_wake_range *range)
1103{
1104 unsigned long start, end;
1105
1106 start = range->start;
1107 end = range->start + range->len;
1108
15b726ef 1109 spin_lock(&ctx->fault_pending_wqh.lock);
86039bd3 1110 /* wake all in the range and autoremove */
15b726ef 1111 if (waitqueue_active(&ctx->fault_pending_wqh))
ac5be6b4 1112 __wake_up_locked_key(&ctx->fault_pending_wqh, TASK_NORMAL,
15b726ef
AA
1113 range);
1114 if (waitqueue_active(&ctx->fault_wqh))
ac5be6b4 1115 __wake_up_locked_key(&ctx->fault_wqh, TASK_NORMAL, range);
15b726ef 1116 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3
AA
1117}
1118
1119static __always_inline void wake_userfault(struct userfaultfd_ctx *ctx,
1120 struct userfaultfd_wake_range *range)
1121{
2c5b7e1b
AA
1122 unsigned seq;
1123 bool need_wakeup;
1124
86039bd3
AA
1125 /*
1126 * To be sure waitqueue_active() is not reordered by the CPU
1127 * before the pagetable update, use an explicit SMP memory
1128 * barrier here. PT lock release or up_read(mmap_sem) still
1129 * have release semantics that can allow the
1130 * waitqueue_active() to be reordered before the pte update.
1131 */
1132 smp_mb();
1133
1134 /*
1135 * Use waitqueue_active because it's very frequent to
1136 * change the address space atomically even if there are no
1137 * userfaults yet. So we take the spinlock only when we're
1138 * sure we've userfaults to wake.
1139 */
2c5b7e1b
AA
1140 do {
1141 seq = read_seqcount_begin(&ctx->refile_seq);
1142 need_wakeup = waitqueue_active(&ctx->fault_pending_wqh) ||
1143 waitqueue_active(&ctx->fault_wqh);
1144 cond_resched();
1145 } while (read_seqcount_retry(&ctx->refile_seq, seq));
1146 if (need_wakeup)
86039bd3
AA
1147 __wake_userfault(ctx, range);
1148}
1149
1150static __always_inline int validate_range(struct mm_struct *mm,
1151 __u64 start, __u64 len)
1152{
1153 __u64 task_size = mm->task_size;
1154
1155 if (start & ~PAGE_MASK)
1156 return -EINVAL;
1157 if (len & ~PAGE_MASK)
1158 return -EINVAL;
1159 if (!len)
1160 return -EINVAL;
1161 if (start < mmap_min_addr)
1162 return -EINVAL;
1163 if (start >= task_size)
1164 return -EINVAL;
1165 if (len > task_size - start)
1166 return -EINVAL;
1167 return 0;
1168}
1169
ba6907db
MR
1170static inline bool vma_can_userfault(struct vm_area_struct *vma)
1171{
cac67329
MR
1172 return vma_is_anonymous(vma) || is_vm_hugetlb_page(vma) ||
1173 vma_is_shmem(vma);
ba6907db
MR
1174}
1175
86039bd3
AA
1176static int userfaultfd_register(struct userfaultfd_ctx *ctx,
1177 unsigned long arg)
1178{
1179 struct mm_struct *mm = ctx->mm;
1180 struct vm_area_struct *vma, *prev, *cur;
1181 int ret;
1182 struct uffdio_register uffdio_register;
1183 struct uffdio_register __user *user_uffdio_register;
1184 unsigned long vm_flags, new_flags;
1185 bool found;
cac67329 1186 bool non_anon_pages;
86039bd3
AA
1187 unsigned long start, end, vma_end;
1188
1189 user_uffdio_register = (struct uffdio_register __user *) arg;
1190
1191 ret = -EFAULT;
1192 if (copy_from_user(&uffdio_register, user_uffdio_register,
1193 sizeof(uffdio_register)-sizeof(__u64)))
1194 goto out;
1195
1196 ret = -EINVAL;
1197 if (!uffdio_register.mode)
1198 goto out;
1199 if (uffdio_register.mode & ~(UFFDIO_REGISTER_MODE_MISSING|
1200 UFFDIO_REGISTER_MODE_WP))
1201 goto out;
1202 vm_flags = 0;
1203 if (uffdio_register.mode & UFFDIO_REGISTER_MODE_MISSING)
1204 vm_flags |= VM_UFFD_MISSING;
1205 if (uffdio_register.mode & UFFDIO_REGISTER_MODE_WP) {
1206 vm_flags |= VM_UFFD_WP;
1207 /*
1208 * FIXME: remove the below error constraint by
1209 * implementing the wprotect tracking mode.
1210 */
1211 ret = -EINVAL;
1212 goto out;
1213 }
1214
1215 ret = validate_range(mm, uffdio_register.range.start,
1216 uffdio_register.range.len);
1217 if (ret)
1218 goto out;
1219
1220 start = uffdio_register.range.start;
1221 end = start + uffdio_register.range.len;
1222
d2005e3f
ON
1223 ret = -ENOMEM;
1224 if (!mmget_not_zero(mm))
1225 goto out;
1226
86039bd3
AA
1227 down_write(&mm->mmap_sem);
1228 vma = find_vma_prev(mm, start, &prev);
86039bd3
AA
1229 if (!vma)
1230 goto out_unlock;
1231
1232 /* check that there's at least one vma in the range */
1233 ret = -EINVAL;
1234 if (vma->vm_start >= end)
1235 goto out_unlock;
1236
cab350af
MK
1237 /*
1238 * If the first vma contains huge pages, make sure start address
1239 * is aligned to huge page size.
1240 */
1241 if (is_vm_hugetlb_page(vma)) {
1242 unsigned long vma_hpagesize = vma_kernel_pagesize(vma);
1243
1244 if (start & (vma_hpagesize - 1))
1245 goto out_unlock;
1246 }
1247
86039bd3
AA
1248 /*
1249 * Search for not compatible vmas.
86039bd3
AA
1250 */
1251 found = false;
cac67329 1252 non_anon_pages = false;
86039bd3
AA
1253 for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) {
1254 cond_resched();
1255
1256 BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^
1257 !!(cur->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
1258
1259 /* check not compatible vmas */
1260 ret = -EINVAL;
ba6907db 1261 if (!vma_can_userfault(cur))
86039bd3 1262 goto out_unlock;
cab350af
MK
1263 /*
1264 * If this vma contains ending address, and huge pages
1265 * check alignment.
1266 */
1267 if (is_vm_hugetlb_page(cur) && end <= cur->vm_end &&
1268 end > cur->vm_start) {
1269 unsigned long vma_hpagesize = vma_kernel_pagesize(cur);
1270
1271 ret = -EINVAL;
1272
1273 if (end & (vma_hpagesize - 1))
1274 goto out_unlock;
1275 }
86039bd3
AA
1276
1277 /*
1278 * Check that this vma isn't already owned by a
1279 * different userfaultfd. We can't allow more than one
1280 * userfaultfd to own a single vma simultaneously or we
1281 * wouldn't know which one to deliver the userfaults to.
1282 */
1283 ret = -EBUSY;
1284 if (cur->vm_userfaultfd_ctx.ctx &&
1285 cur->vm_userfaultfd_ctx.ctx != ctx)
1286 goto out_unlock;
1287
cab350af
MK
1288 /*
1289 * Note vmas containing huge pages
1290 */
cac67329
MR
1291 if (is_vm_hugetlb_page(cur) || vma_is_shmem(cur))
1292 non_anon_pages = true;
cab350af 1293
86039bd3
AA
1294 found = true;
1295 }
1296 BUG_ON(!found);
1297
1298 if (vma->vm_start < start)
1299 prev = vma;
1300
1301 ret = 0;
1302 do {
1303 cond_resched();
1304
ba6907db 1305 BUG_ON(!vma_can_userfault(vma));
86039bd3
AA
1306 BUG_ON(vma->vm_userfaultfd_ctx.ctx &&
1307 vma->vm_userfaultfd_ctx.ctx != ctx);
1308
1309 /*
1310 * Nothing to do: this vma is already registered into this
1311 * userfaultfd and with the right tracking mode too.
1312 */
1313 if (vma->vm_userfaultfd_ctx.ctx == ctx &&
1314 (vma->vm_flags & vm_flags) == vm_flags)
1315 goto skip;
1316
1317 if (vma->vm_start > start)
1318 start = vma->vm_start;
1319 vma_end = min(end, vma->vm_end);
1320
1321 new_flags = (vma->vm_flags & ~vm_flags) | vm_flags;
1322 prev = vma_merge(mm, prev, start, vma_end, new_flags,
1323 vma->anon_vma, vma->vm_file, vma->vm_pgoff,
1324 vma_policy(vma),
1325 ((struct vm_userfaultfd_ctx){ ctx }));
1326 if (prev) {
1327 vma = prev;
1328 goto next;
1329 }
1330 if (vma->vm_start < start) {
1331 ret = split_vma(mm, vma, start, 1);
1332 if (ret)
1333 break;
1334 }
1335 if (vma->vm_end > end) {
1336 ret = split_vma(mm, vma, end, 0);
1337 if (ret)
1338 break;
1339 }
1340 next:
1341 /*
1342 * In the vma_merge() successful mprotect-like case 8:
1343 * the next vma was merged into the current one and
1344 * the current one has not been updated yet.
1345 */
1346 vma->vm_flags = new_flags;
1347 vma->vm_userfaultfd_ctx.ctx = ctx;
1348
1349 skip:
1350 prev = vma;
1351 start = vma->vm_end;
1352 vma = vma->vm_next;
1353 } while (vma && vma->vm_start < end);
1354out_unlock:
1355 up_write(&mm->mmap_sem);
d2005e3f 1356 mmput(mm);
86039bd3
AA
1357 if (!ret) {
1358 /*
1359 * Now that we scanned all vmas we can already tell
1360 * userland which ioctls methods are guaranteed to
1361 * succeed on this range.
1362 */
cac67329 1363 if (put_user(non_anon_pages ? UFFD_API_RANGE_IOCTLS_BASIC :
cab350af 1364 UFFD_API_RANGE_IOCTLS,
86039bd3
AA
1365 &user_uffdio_register->ioctls))
1366 ret = -EFAULT;
1367 }
1368out:
1369 return ret;
1370}
1371
1372static int userfaultfd_unregister(struct userfaultfd_ctx *ctx,
1373 unsigned long arg)
1374{
1375 struct mm_struct *mm = ctx->mm;
1376 struct vm_area_struct *vma, *prev, *cur;
1377 int ret;
1378 struct uffdio_range uffdio_unregister;
1379 unsigned long new_flags;
1380 bool found;
1381 unsigned long start, end, vma_end;
1382 const void __user *buf = (void __user *)arg;
1383
1384 ret = -EFAULT;
1385 if (copy_from_user(&uffdio_unregister, buf, sizeof(uffdio_unregister)))
1386 goto out;
1387
1388 ret = validate_range(mm, uffdio_unregister.start,
1389 uffdio_unregister.len);
1390 if (ret)
1391 goto out;
1392
1393 start = uffdio_unregister.start;
1394 end = start + uffdio_unregister.len;
1395
d2005e3f
ON
1396 ret = -ENOMEM;
1397 if (!mmget_not_zero(mm))
1398 goto out;
1399
86039bd3
AA
1400 down_write(&mm->mmap_sem);
1401 vma = find_vma_prev(mm, start, &prev);
86039bd3
AA
1402 if (!vma)
1403 goto out_unlock;
1404
1405 /* check that there's at least one vma in the range */
1406 ret = -EINVAL;
1407 if (vma->vm_start >= end)
1408 goto out_unlock;
1409
cab350af
MK
1410 /*
1411 * If the first vma contains huge pages, make sure start address
1412 * is aligned to huge page size.
1413 */
1414 if (is_vm_hugetlb_page(vma)) {
1415 unsigned long vma_hpagesize = vma_kernel_pagesize(vma);
1416
1417 if (start & (vma_hpagesize - 1))
1418 goto out_unlock;
1419 }
1420
86039bd3
AA
1421 /*
1422 * Search for not compatible vmas.
86039bd3
AA
1423 */
1424 found = false;
1425 ret = -EINVAL;
1426 for (cur = vma; cur && cur->vm_start < end; cur = cur->vm_next) {
1427 cond_resched();
1428
1429 BUG_ON(!!cur->vm_userfaultfd_ctx.ctx ^
1430 !!(cur->vm_flags & (VM_UFFD_MISSING | VM_UFFD_WP)));
1431
1432 /*
1433 * Check not compatible vmas, not strictly required
1434 * here as not compatible vmas cannot have an
1435 * userfaultfd_ctx registered on them, but this
1436 * provides for more strict behavior to notice
1437 * unregistration errors.
1438 */
ba6907db 1439 if (!vma_can_userfault(cur))
86039bd3
AA
1440 goto out_unlock;
1441
1442 found = true;
1443 }
1444 BUG_ON(!found);
1445
1446 if (vma->vm_start < start)
1447 prev = vma;
1448
1449 ret = 0;
1450 do {
1451 cond_resched();
1452
ba6907db 1453 BUG_ON(!vma_can_userfault(vma));
86039bd3
AA
1454
1455 /*
1456 * Nothing to do: this vma is already registered into this
1457 * userfaultfd and with the right tracking mode too.
1458 */
1459 if (!vma->vm_userfaultfd_ctx.ctx)
1460 goto skip;
1461
1462 if (vma->vm_start > start)
1463 start = vma->vm_start;
1464 vma_end = min(end, vma->vm_end);
1465
09fa5296
AA
1466 if (userfaultfd_missing(vma)) {
1467 /*
1468 * Wake any concurrent pending userfault while
1469 * we unregister, so they will not hang
1470 * permanently and it avoids userland to call
1471 * UFFDIO_WAKE explicitly.
1472 */
1473 struct userfaultfd_wake_range range;
1474 range.start = start;
1475 range.len = vma_end - start;
1476 wake_userfault(vma->vm_userfaultfd_ctx.ctx, &range);
1477 }
1478
86039bd3
AA
1479 new_flags = vma->vm_flags & ~(VM_UFFD_MISSING | VM_UFFD_WP);
1480 prev = vma_merge(mm, prev, start, vma_end, new_flags,
1481 vma->anon_vma, vma->vm_file, vma->vm_pgoff,
1482 vma_policy(vma),
1483 NULL_VM_UFFD_CTX);
1484 if (prev) {
1485 vma = prev;
1486 goto next;
1487 }
1488 if (vma->vm_start < start) {
1489 ret = split_vma(mm, vma, start, 1);
1490 if (ret)
1491 break;
1492 }
1493 if (vma->vm_end > end) {
1494 ret = split_vma(mm, vma, end, 0);
1495 if (ret)
1496 break;
1497 }
1498 next:
1499 /*
1500 * In the vma_merge() successful mprotect-like case 8:
1501 * the next vma was merged into the current one and
1502 * the current one has not been updated yet.
1503 */
1504 vma->vm_flags = new_flags;
1505 vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
1506
1507 skip:
1508 prev = vma;
1509 start = vma->vm_end;
1510 vma = vma->vm_next;
1511 } while (vma && vma->vm_start < end);
1512out_unlock:
1513 up_write(&mm->mmap_sem);
d2005e3f 1514 mmput(mm);
86039bd3
AA
1515out:
1516 return ret;
1517}
1518
1519/*
ba85c702
AA
1520 * userfaultfd_wake may be used in combination with the
1521 * UFFDIO_*_MODE_DONTWAKE to wakeup userfaults in batches.
86039bd3
AA
1522 */
1523static int userfaultfd_wake(struct userfaultfd_ctx *ctx,
1524 unsigned long arg)
1525{
1526 int ret;
1527 struct uffdio_range uffdio_wake;
1528 struct userfaultfd_wake_range range;
1529 const void __user *buf = (void __user *)arg;
1530
1531 ret = -EFAULT;
1532 if (copy_from_user(&uffdio_wake, buf, sizeof(uffdio_wake)))
1533 goto out;
1534
1535 ret = validate_range(ctx->mm, uffdio_wake.start, uffdio_wake.len);
1536 if (ret)
1537 goto out;
1538
1539 range.start = uffdio_wake.start;
1540 range.len = uffdio_wake.len;
1541
1542 /*
1543 * len == 0 means wake all and we don't want to wake all here,
1544 * so check it again to be sure.
1545 */
1546 VM_BUG_ON(!range.len);
1547
1548 wake_userfault(ctx, &range);
1549 ret = 0;
1550
1551out:
1552 return ret;
1553}
1554
ad465cae
AA
1555static int userfaultfd_copy(struct userfaultfd_ctx *ctx,
1556 unsigned long arg)
1557{
1558 __s64 ret;
1559 struct uffdio_copy uffdio_copy;
1560 struct uffdio_copy __user *user_uffdio_copy;
1561 struct userfaultfd_wake_range range;
1562
1563 user_uffdio_copy = (struct uffdio_copy __user *) arg;
1564
1565 ret = -EFAULT;
1566 if (copy_from_user(&uffdio_copy, user_uffdio_copy,
1567 /* don't copy "copy" last field */
1568 sizeof(uffdio_copy)-sizeof(__s64)))
1569 goto out;
1570
1571 ret = validate_range(ctx->mm, uffdio_copy.dst, uffdio_copy.len);
1572 if (ret)
1573 goto out;
1574 /*
1575 * double check for wraparound just in case. copy_from_user()
1576 * will later check uffdio_copy.src + uffdio_copy.len to fit
1577 * in the userland range.
1578 */
1579 ret = -EINVAL;
1580 if (uffdio_copy.src + uffdio_copy.len <= uffdio_copy.src)
1581 goto out;
1582 if (uffdio_copy.mode & ~UFFDIO_COPY_MODE_DONTWAKE)
1583 goto out;
d2005e3f
ON
1584 if (mmget_not_zero(ctx->mm)) {
1585 ret = mcopy_atomic(ctx->mm, uffdio_copy.dst, uffdio_copy.src,
1586 uffdio_copy.len);
1587 mmput(ctx->mm);
96333187
MR
1588 } else {
1589 return -ENOSPC;
d2005e3f 1590 }
ad465cae
AA
1591 if (unlikely(put_user(ret, &user_uffdio_copy->copy)))
1592 return -EFAULT;
1593 if (ret < 0)
1594 goto out;
1595 BUG_ON(!ret);
1596 /* len == 0 would wake all */
1597 range.len = ret;
1598 if (!(uffdio_copy.mode & UFFDIO_COPY_MODE_DONTWAKE)) {
1599 range.start = uffdio_copy.dst;
1600 wake_userfault(ctx, &range);
1601 }
1602 ret = range.len == uffdio_copy.len ? 0 : -EAGAIN;
1603out:
1604 return ret;
1605}
1606
1607static int userfaultfd_zeropage(struct userfaultfd_ctx *ctx,
1608 unsigned long arg)
1609{
1610 __s64 ret;
1611 struct uffdio_zeropage uffdio_zeropage;
1612 struct uffdio_zeropage __user *user_uffdio_zeropage;
1613 struct userfaultfd_wake_range range;
1614
1615 user_uffdio_zeropage = (struct uffdio_zeropage __user *) arg;
1616
1617 ret = -EFAULT;
1618 if (copy_from_user(&uffdio_zeropage, user_uffdio_zeropage,
1619 /* don't copy "zeropage" last field */
1620 sizeof(uffdio_zeropage)-sizeof(__s64)))
1621 goto out;
1622
1623 ret = validate_range(ctx->mm, uffdio_zeropage.range.start,
1624 uffdio_zeropage.range.len);
1625 if (ret)
1626 goto out;
1627 ret = -EINVAL;
1628 if (uffdio_zeropage.mode & ~UFFDIO_ZEROPAGE_MODE_DONTWAKE)
1629 goto out;
1630
d2005e3f
ON
1631 if (mmget_not_zero(ctx->mm)) {
1632 ret = mfill_zeropage(ctx->mm, uffdio_zeropage.range.start,
1633 uffdio_zeropage.range.len);
1634 mmput(ctx->mm);
1635 }
ad465cae
AA
1636 if (unlikely(put_user(ret, &user_uffdio_zeropage->zeropage)))
1637 return -EFAULT;
1638 if (ret < 0)
1639 goto out;
1640 /* len == 0 would wake all */
1641 BUG_ON(!ret);
1642 range.len = ret;
1643 if (!(uffdio_zeropage.mode & UFFDIO_ZEROPAGE_MODE_DONTWAKE)) {
1644 range.start = uffdio_zeropage.range.start;
1645 wake_userfault(ctx, &range);
1646 }
1647 ret = range.len == uffdio_zeropage.range.len ? 0 : -EAGAIN;
1648out:
1649 return ret;
1650}
1651
9cd75c3c
PE
1652static inline unsigned int uffd_ctx_features(__u64 user_features)
1653{
1654 /*
1655 * For the current set of features the bits just coincide
1656 */
1657 return (unsigned int)user_features;
1658}
1659
86039bd3
AA
1660/*
1661 * userland asks for a certain API version and we return which bits
1662 * and ioctl commands are implemented in this kernel for such API
1663 * version or -EINVAL if unknown.
1664 */
1665static int userfaultfd_api(struct userfaultfd_ctx *ctx,
1666 unsigned long arg)
1667{
1668 struct uffdio_api uffdio_api;
1669 void __user *buf = (void __user *)arg;
1670 int ret;
65603144 1671 __u64 features;
86039bd3
AA
1672
1673 ret = -EINVAL;
1674 if (ctx->state != UFFD_STATE_WAIT_API)
1675 goto out;
1676 ret = -EFAULT;
a9b85f94 1677 if (copy_from_user(&uffdio_api, buf, sizeof(uffdio_api)))
86039bd3 1678 goto out;
65603144
AA
1679 features = uffdio_api.features;
1680 if (uffdio_api.api != UFFD_API || (features & ~UFFD_API_FEATURES)) {
86039bd3
AA
1681 memset(&uffdio_api, 0, sizeof(uffdio_api));
1682 if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api)))
1683 goto out;
1684 ret = -EINVAL;
1685 goto out;
1686 }
65603144
AA
1687 /* report all available features and ioctls to userland */
1688 uffdio_api.features = UFFD_API_FEATURES;
86039bd3
AA
1689 uffdio_api.ioctls = UFFD_API_IOCTLS;
1690 ret = -EFAULT;
1691 if (copy_to_user(buf, &uffdio_api, sizeof(uffdio_api)))
1692 goto out;
1693 ctx->state = UFFD_STATE_RUNNING;
65603144
AA
1694 /* only enable the requested features for this uffd context */
1695 ctx->features = uffd_ctx_features(features);
86039bd3
AA
1696 ret = 0;
1697out:
1698 return ret;
1699}
1700
1701static long userfaultfd_ioctl(struct file *file, unsigned cmd,
1702 unsigned long arg)
1703{
1704 int ret = -EINVAL;
1705 struct userfaultfd_ctx *ctx = file->private_data;
1706
e6485a47
AA
1707 if (cmd != UFFDIO_API && ctx->state == UFFD_STATE_WAIT_API)
1708 return -EINVAL;
1709
86039bd3
AA
1710 switch(cmd) {
1711 case UFFDIO_API:
1712 ret = userfaultfd_api(ctx, arg);
1713 break;
1714 case UFFDIO_REGISTER:
1715 ret = userfaultfd_register(ctx, arg);
1716 break;
1717 case UFFDIO_UNREGISTER:
1718 ret = userfaultfd_unregister(ctx, arg);
1719 break;
1720 case UFFDIO_WAKE:
1721 ret = userfaultfd_wake(ctx, arg);
1722 break;
ad465cae
AA
1723 case UFFDIO_COPY:
1724 ret = userfaultfd_copy(ctx, arg);
1725 break;
1726 case UFFDIO_ZEROPAGE:
1727 ret = userfaultfd_zeropage(ctx, arg);
1728 break;
86039bd3
AA
1729 }
1730 return ret;
1731}
1732
1733#ifdef CONFIG_PROC_FS
1734static void userfaultfd_show_fdinfo(struct seq_file *m, struct file *f)
1735{
1736 struct userfaultfd_ctx *ctx = f->private_data;
1737 wait_queue_t *wq;
1738 struct userfaultfd_wait_queue *uwq;
1739 unsigned long pending = 0, total = 0;
1740
15b726ef
AA
1741 spin_lock(&ctx->fault_pending_wqh.lock);
1742 list_for_each_entry(wq, &ctx->fault_pending_wqh.task_list, task_list) {
1743 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
1744 pending++;
1745 total++;
1746 }
86039bd3
AA
1747 list_for_each_entry(wq, &ctx->fault_wqh.task_list, task_list) {
1748 uwq = container_of(wq, struct userfaultfd_wait_queue, wq);
86039bd3
AA
1749 total++;
1750 }
15b726ef 1751 spin_unlock(&ctx->fault_pending_wqh.lock);
86039bd3
AA
1752
1753 /*
1754 * If more protocols will be added, there will be all shown
1755 * separated by a space. Like this:
1756 * protocols: aa:... bb:...
1757 */
1758 seq_printf(m, "pending:\t%lu\ntotal:\t%lu\nAPI:\t%Lx:%x:%Lx\n",
3f602d27 1759 pending, total, UFFD_API, UFFD_API_FEATURES,
86039bd3
AA
1760 UFFD_API_IOCTLS|UFFD_API_RANGE_IOCTLS);
1761}
1762#endif
1763
1764static const struct file_operations userfaultfd_fops = {
1765#ifdef CONFIG_PROC_FS
1766 .show_fdinfo = userfaultfd_show_fdinfo,
1767#endif
1768 .release = userfaultfd_release,
1769 .poll = userfaultfd_poll,
1770 .read = userfaultfd_read,
1771 .unlocked_ioctl = userfaultfd_ioctl,
1772 .compat_ioctl = userfaultfd_ioctl,
1773 .llseek = noop_llseek,
1774};
1775
3004ec9c
AA
1776static void init_once_userfaultfd_ctx(void *mem)
1777{
1778 struct userfaultfd_ctx *ctx = (struct userfaultfd_ctx *) mem;
1779
1780 init_waitqueue_head(&ctx->fault_pending_wqh);
1781 init_waitqueue_head(&ctx->fault_wqh);
9cd75c3c 1782 init_waitqueue_head(&ctx->event_wqh);
3004ec9c 1783 init_waitqueue_head(&ctx->fd_wqh);
2c5b7e1b 1784 seqcount_init(&ctx->refile_seq);
3004ec9c
AA
1785}
1786
86039bd3 1787/**
9332ef9d 1788 * userfaultfd_file_create - Creates a userfaultfd file pointer.
86039bd3
AA
1789 * @flags: Flags for the userfaultfd file.
1790 *
9332ef9d 1791 * This function creates a userfaultfd file pointer, w/out installing
86039bd3
AA
1792 * it into the fd table. This is useful when the userfaultfd file is
1793 * used during the initialization of data structures that require
1794 * extra setup after the userfaultfd creation. So the userfaultfd
1795 * creation is split into the file pointer creation phase, and the
1796 * file descriptor installation phase. In this way races with
1797 * userspace closing the newly installed file descriptor can be
9332ef9d 1798 * avoided. Returns a userfaultfd file pointer, or a proper error
86039bd3
AA
1799 * pointer.
1800 */
1801static struct file *userfaultfd_file_create(int flags)
1802{
1803 struct file *file;
1804 struct userfaultfd_ctx *ctx;
1805
1806 BUG_ON(!current->mm);
1807
1808 /* Check the UFFD_* constants for consistency. */
1809 BUILD_BUG_ON(UFFD_CLOEXEC != O_CLOEXEC);
1810 BUILD_BUG_ON(UFFD_NONBLOCK != O_NONBLOCK);
1811
1812 file = ERR_PTR(-EINVAL);
1813 if (flags & ~UFFD_SHARED_FCNTL_FLAGS)
1814 goto out;
1815
1816 file = ERR_PTR(-ENOMEM);
3004ec9c 1817 ctx = kmem_cache_alloc(userfaultfd_ctx_cachep, GFP_KERNEL);
86039bd3
AA
1818 if (!ctx)
1819 goto out;
1820
1821 atomic_set(&ctx->refcount, 1);
86039bd3 1822 ctx->flags = flags;
9cd75c3c 1823 ctx->features = 0;
86039bd3
AA
1824 ctx->state = UFFD_STATE_WAIT_API;
1825 ctx->released = false;
1826 ctx->mm = current->mm;
1827 /* prevent the mm struct to be freed */
f1f10076 1828 mmgrab(ctx->mm);
86039bd3
AA
1829
1830 file = anon_inode_getfile("[userfaultfd]", &userfaultfd_fops, ctx,
1831 O_RDWR | (flags & UFFD_SHARED_FCNTL_FLAGS));
c03e946f 1832 if (IS_ERR(file)) {
d2005e3f 1833 mmdrop(ctx->mm);
3004ec9c 1834 kmem_cache_free(userfaultfd_ctx_cachep, ctx);
c03e946f 1835 }
86039bd3
AA
1836out:
1837 return file;
1838}
1839
1840SYSCALL_DEFINE1(userfaultfd, int, flags)
1841{
1842 int fd, error;
1843 struct file *file;
1844
1845 error = get_unused_fd_flags(flags & UFFD_SHARED_FCNTL_FLAGS);
1846 if (error < 0)
1847 return error;
1848 fd = error;
1849
1850 file = userfaultfd_file_create(flags);
1851 if (IS_ERR(file)) {
1852 error = PTR_ERR(file);
1853 goto err_put_unused_fd;
1854 }
1855 fd_install(fd, file);
1856
1857 return fd;
1858
1859err_put_unused_fd:
1860 put_unused_fd(fd);
1861
1862 return error;
1863}
3004ec9c
AA
1864
1865static int __init userfaultfd_init(void)
1866{
1867 userfaultfd_ctx_cachep = kmem_cache_create("userfaultfd_ctx_cache",
1868 sizeof(struct userfaultfd_ctx),
1869 0,
1870 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1871 init_once_userfaultfd_ctx);
1872 return 0;
1873}
1874__initcall(userfaultfd_init);