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