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