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