]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - mm/userfaultfd.c
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[mirror_ubuntu-artful-kernel.git] / mm / userfaultfd.c
1 /*
2 * mm/userfaultfd.c
3 *
4 * Copyright (C) 2015 Red Hat, Inc.
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
8 */
9
10 #include <linux/mm.h>
11 #include <linux/pagemap.h>
12 #include <linux/rmap.h>
13 #include <linux/swap.h>
14 #include <linux/swapops.h>
15 #include <linux/userfaultfd_k.h>
16 #include <linux/mmu_notifier.h>
17 #include <linux/hugetlb.h>
18 #include <linux/pagemap.h>
19 #include <linux/shmem_fs.h>
20 #include <asm/tlbflush.h>
21 #include "internal.h"
22
23 static int mcopy_atomic_pte(struct mm_struct *dst_mm,
24 pmd_t *dst_pmd,
25 struct vm_area_struct *dst_vma,
26 unsigned long dst_addr,
27 unsigned long src_addr,
28 struct page **pagep)
29 {
30 struct mem_cgroup *memcg;
31 pte_t _dst_pte, *dst_pte;
32 spinlock_t *ptl;
33 void *page_kaddr;
34 int ret;
35 struct page *page;
36
37 if (!*pagep) {
38 ret = -ENOMEM;
39 page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, dst_vma, dst_addr);
40 if (!page)
41 goto out;
42
43 page_kaddr = kmap_atomic(page);
44 ret = copy_from_user(page_kaddr,
45 (const void __user *) src_addr,
46 PAGE_SIZE);
47 kunmap_atomic(page_kaddr);
48
49 /* fallback to copy_from_user outside mmap_sem */
50 if (unlikely(ret)) {
51 ret = -EFAULT;
52 *pagep = page;
53 /* don't free the page */
54 goto out;
55 }
56 } else {
57 page = *pagep;
58 *pagep = NULL;
59 }
60
61 /*
62 * The memory barrier inside __SetPageUptodate makes sure that
63 * preceeding stores to the page contents become visible before
64 * the set_pte_at() write.
65 */
66 __SetPageUptodate(page);
67
68 ret = -ENOMEM;
69 if (mem_cgroup_try_charge(page, dst_mm, GFP_KERNEL, &memcg, false))
70 goto out_release;
71
72 _dst_pte = mk_pte(page, dst_vma->vm_page_prot);
73 if (dst_vma->vm_flags & VM_WRITE)
74 _dst_pte = pte_mkwrite(pte_mkdirty(_dst_pte));
75
76 ret = -EEXIST;
77 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
78 if (!pte_none(*dst_pte))
79 goto out_release_uncharge_unlock;
80
81 inc_mm_counter(dst_mm, MM_ANONPAGES);
82 page_add_new_anon_rmap(page, dst_vma, dst_addr, false);
83 mem_cgroup_commit_charge(page, memcg, false, false);
84 lru_cache_add_active_or_unevictable(page, dst_vma);
85
86 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
87
88 /* No need to invalidate - it was non-present before */
89 update_mmu_cache(dst_vma, dst_addr, dst_pte);
90
91 pte_unmap_unlock(dst_pte, ptl);
92 ret = 0;
93 out:
94 return ret;
95 out_release_uncharge_unlock:
96 pte_unmap_unlock(dst_pte, ptl);
97 mem_cgroup_cancel_charge(page, memcg, false);
98 out_release:
99 put_page(page);
100 goto out;
101 }
102
103 static int mfill_zeropage_pte(struct mm_struct *dst_mm,
104 pmd_t *dst_pmd,
105 struct vm_area_struct *dst_vma,
106 unsigned long dst_addr)
107 {
108 pte_t _dst_pte, *dst_pte;
109 spinlock_t *ptl;
110 int ret;
111
112 _dst_pte = pte_mkspecial(pfn_pte(my_zero_pfn(dst_addr),
113 dst_vma->vm_page_prot));
114 ret = -EEXIST;
115 dst_pte = pte_offset_map_lock(dst_mm, dst_pmd, dst_addr, &ptl);
116 if (!pte_none(*dst_pte))
117 goto out_unlock;
118 set_pte_at(dst_mm, dst_addr, dst_pte, _dst_pte);
119 /* No need to invalidate - it was non-present before */
120 update_mmu_cache(dst_vma, dst_addr, dst_pte);
121 ret = 0;
122 out_unlock:
123 pte_unmap_unlock(dst_pte, ptl);
124 return ret;
125 }
126
127 static pmd_t *mm_alloc_pmd(struct mm_struct *mm, unsigned long address)
128 {
129 pgd_t *pgd;
130 pud_t *pud;
131 pmd_t *pmd = NULL;
132
133 pgd = pgd_offset(mm, address);
134 pud = pud_alloc(mm, pgd, address);
135 if (pud)
136 /*
137 * Note that we didn't run this because the pmd was
138 * missing, the *pmd may be already established and in
139 * turn it may also be a trans_huge_pmd.
140 */
141 pmd = pmd_alloc(mm, pud, address);
142 return pmd;
143 }
144
145 #ifdef CONFIG_HUGETLB_PAGE
146 /*
147 * __mcopy_atomic processing for HUGETLB vmas. Note that this routine is
148 * called with mmap_sem held, it will release mmap_sem before returning.
149 */
150 static __always_inline ssize_t __mcopy_atomic_hugetlb(struct mm_struct *dst_mm,
151 struct vm_area_struct *dst_vma,
152 unsigned long dst_start,
153 unsigned long src_start,
154 unsigned long len,
155 bool zeropage)
156 {
157 int vm_alloc_shared = dst_vma->vm_flags & VM_SHARED;
158 int vm_shared = dst_vma->vm_flags & VM_SHARED;
159 ssize_t err;
160 pte_t *dst_pte;
161 unsigned long src_addr, dst_addr;
162 long copied;
163 struct page *page;
164 struct hstate *h;
165 unsigned long vma_hpagesize;
166 pgoff_t idx;
167 u32 hash;
168 struct address_space *mapping;
169
170 /*
171 * There is no default zero huge page for all huge page sizes as
172 * supported by hugetlb. A PMD_SIZE huge pages may exist as used
173 * by THP. Since we can not reliably insert a zero page, this
174 * feature is not supported.
175 */
176 if (zeropage) {
177 up_read(&dst_mm->mmap_sem);
178 return -EINVAL;
179 }
180
181 src_addr = src_start;
182 dst_addr = dst_start;
183 copied = 0;
184 page = NULL;
185 vma_hpagesize = vma_kernel_pagesize(dst_vma);
186
187 /*
188 * Validate alignment based on huge page size
189 */
190 err = -EINVAL;
191 if (dst_start & (vma_hpagesize - 1) || len & (vma_hpagesize - 1))
192 goto out_unlock;
193
194 retry:
195 /*
196 * On routine entry dst_vma is set. If we had to drop mmap_sem and
197 * retry, dst_vma will be set to NULL and we must lookup again.
198 */
199 if (!dst_vma) {
200 err = -EINVAL;
201 dst_vma = find_vma(dst_mm, dst_start);
202 if (!dst_vma || !is_vm_hugetlb_page(dst_vma))
203 goto out_unlock;
204
205 if (vma_hpagesize != vma_kernel_pagesize(dst_vma))
206 goto out_unlock;
207
208 /*
209 * Make sure the remaining dst range is both valid and
210 * fully within a single existing vma.
211 */
212 if (dst_start < dst_vma->vm_start ||
213 dst_start + len > dst_vma->vm_end)
214 goto out_unlock;
215
216 vm_shared = dst_vma->vm_flags & VM_SHARED;
217 }
218
219 if (WARN_ON(dst_addr & (vma_hpagesize - 1) ||
220 (len - copied) & (vma_hpagesize - 1)))
221 goto out_unlock;
222
223 /*
224 * Only allow __mcopy_atomic_hugetlb on userfaultfd registered ranges.
225 */
226 if (!dst_vma->vm_userfaultfd_ctx.ctx)
227 goto out_unlock;
228
229 /*
230 * If not shared, ensure the dst_vma has a anon_vma.
231 */
232 err = -ENOMEM;
233 if (!vm_shared) {
234 if (unlikely(anon_vma_prepare(dst_vma)))
235 goto out_unlock;
236 }
237
238 h = hstate_vma(dst_vma);
239
240 while (src_addr < src_start + len) {
241 pte_t dst_pteval;
242
243 BUG_ON(dst_addr >= dst_start + len);
244 VM_BUG_ON(dst_addr & ~huge_page_mask(h));
245
246 /*
247 * Serialize via hugetlb_fault_mutex
248 */
249 idx = linear_page_index(dst_vma, dst_addr);
250 mapping = dst_vma->vm_file->f_mapping;
251 hash = hugetlb_fault_mutex_hash(h, dst_mm, dst_vma, mapping,
252 idx, dst_addr);
253 mutex_lock(&hugetlb_fault_mutex_table[hash]);
254
255 err = -ENOMEM;
256 dst_pte = huge_pte_alloc(dst_mm, dst_addr, huge_page_size(h));
257 if (!dst_pte) {
258 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
259 goto out_unlock;
260 }
261
262 err = -EEXIST;
263 dst_pteval = huge_ptep_get(dst_pte);
264 if (!huge_pte_none(dst_pteval)) {
265 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
266 goto out_unlock;
267 }
268
269 err = hugetlb_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma,
270 dst_addr, src_addr, &page);
271
272 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
273 vm_alloc_shared = vm_shared;
274
275 cond_resched();
276
277 if (unlikely(err == -EFAULT)) {
278 up_read(&dst_mm->mmap_sem);
279 BUG_ON(!page);
280
281 err = copy_huge_page_from_user(page,
282 (const void __user *)src_addr,
283 pages_per_huge_page(h), true);
284 if (unlikely(err)) {
285 err = -EFAULT;
286 goto out;
287 }
288 down_read(&dst_mm->mmap_sem);
289
290 dst_vma = NULL;
291 goto retry;
292 } else
293 BUG_ON(page);
294
295 if (!err) {
296 dst_addr += vma_hpagesize;
297 src_addr += vma_hpagesize;
298 copied += vma_hpagesize;
299
300 if (fatal_signal_pending(current))
301 err = -EINTR;
302 }
303 if (err)
304 break;
305 }
306
307 out_unlock:
308 up_read(&dst_mm->mmap_sem);
309 out:
310 if (page) {
311 /*
312 * We encountered an error and are about to free a newly
313 * allocated huge page.
314 *
315 * Reservation handling is very subtle, and is different for
316 * private and shared mappings. See the routine
317 * restore_reserve_on_error for details. Unfortunately, we
318 * can not call restore_reserve_on_error now as it would
319 * require holding mmap_sem.
320 *
321 * If a reservation for the page existed in the reservation
322 * map of a private mapping, the map was modified to indicate
323 * the reservation was consumed when the page was allocated.
324 * We clear the PagePrivate flag now so that the global
325 * reserve count will not be incremented in free_huge_page.
326 * The reservation map will still indicate the reservation
327 * was consumed and possibly prevent later page allocation.
328 * This is better than leaking a global reservation. If no
329 * reservation existed, it is still safe to clear PagePrivate
330 * as no adjustments to reservation counts were made during
331 * allocation.
332 *
333 * The reservation map for shared mappings indicates which
334 * pages have reservations. When a huge page is allocated
335 * for an address with a reservation, no change is made to
336 * the reserve map. In this case PagePrivate will be set
337 * to indicate that the global reservation count should be
338 * incremented when the page is freed. This is the desired
339 * behavior. However, when a huge page is allocated for an
340 * address without a reservation a reservation entry is added
341 * to the reservation map, and PagePrivate will not be set.
342 * When the page is freed, the global reserve count will NOT
343 * be incremented and it will appear as though we have leaked
344 * reserved page. In this case, set PagePrivate so that the
345 * global reserve count will be incremented to match the
346 * reservation map entry which was created.
347 *
348 * Note that vm_alloc_shared is based on the flags of the vma
349 * for which the page was originally allocated. dst_vma could
350 * be different or NULL on error.
351 */
352 if (vm_alloc_shared)
353 SetPagePrivate(page);
354 else
355 ClearPagePrivate(page);
356 put_page(page);
357 }
358 BUG_ON(copied < 0);
359 BUG_ON(err > 0);
360 BUG_ON(!copied && !err);
361 return copied ? copied : err;
362 }
363 #else /* !CONFIG_HUGETLB_PAGE */
364 /* fail at build time if gcc attempts to use this */
365 extern ssize_t __mcopy_atomic_hugetlb(struct mm_struct *dst_mm,
366 struct vm_area_struct *dst_vma,
367 unsigned long dst_start,
368 unsigned long src_start,
369 unsigned long len,
370 bool zeropage);
371 #endif /* CONFIG_HUGETLB_PAGE */
372
373 static __always_inline ssize_t __mcopy_atomic(struct mm_struct *dst_mm,
374 unsigned long dst_start,
375 unsigned long src_start,
376 unsigned long len,
377 bool zeropage)
378 {
379 struct vm_area_struct *dst_vma;
380 ssize_t err;
381 pmd_t *dst_pmd;
382 unsigned long src_addr, dst_addr;
383 long copied;
384 struct page *page;
385
386 /*
387 * Sanitize the command parameters:
388 */
389 BUG_ON(dst_start & ~PAGE_MASK);
390 BUG_ON(len & ~PAGE_MASK);
391
392 /* Does the address range wrap, or is the span zero-sized? */
393 BUG_ON(src_start + len <= src_start);
394 BUG_ON(dst_start + len <= dst_start);
395
396 src_addr = src_start;
397 dst_addr = dst_start;
398 copied = 0;
399 page = NULL;
400 retry:
401 down_read(&dst_mm->mmap_sem);
402
403 /*
404 * Make sure the vma is not shared, that the dst range is
405 * both valid and fully within a single existing vma.
406 */
407 err = -EINVAL;
408 dst_vma = find_vma(dst_mm, dst_start);
409 if (!dst_vma)
410 goto out_unlock;
411 /*
412 * shmem_zero_setup is invoked in mmap for MAP_ANONYMOUS|MAP_SHARED but
413 * it will overwrite vm_ops, so vma_is_anonymous must return false.
414 */
415 if (WARN_ON_ONCE(vma_is_anonymous(dst_vma) &&
416 dst_vma->vm_flags & VM_SHARED))
417 goto out_unlock;
418
419 if (dst_start < dst_vma->vm_start ||
420 dst_start + len > dst_vma->vm_end)
421 goto out_unlock;
422
423 /*
424 * If this is a HUGETLB vma, pass off to appropriate routine
425 */
426 if (is_vm_hugetlb_page(dst_vma))
427 return __mcopy_atomic_hugetlb(dst_mm, dst_vma, dst_start,
428 src_start, len, zeropage);
429
430 /*
431 * Be strict and only allow __mcopy_atomic on userfaultfd
432 * registered ranges to prevent userland errors going
433 * unnoticed. As far as the VM consistency is concerned, it
434 * would be perfectly safe to remove this check, but there's
435 * no useful usage for __mcopy_atomic ouside of userfaultfd
436 * registered ranges. This is after all why these are ioctls
437 * belonging to the userfaultfd and not syscalls.
438 */
439 if (!dst_vma->vm_userfaultfd_ctx.ctx)
440 goto out_unlock;
441
442 if (!vma_is_anonymous(dst_vma) && !vma_is_shmem(dst_vma))
443 goto out_unlock;
444
445 /*
446 * Ensure the dst_vma has a anon_vma or this page
447 * would get a NULL anon_vma when moved in the
448 * dst_vma.
449 */
450 err = -ENOMEM;
451 if (vma_is_anonymous(dst_vma) && unlikely(anon_vma_prepare(dst_vma)))
452 goto out_unlock;
453
454 while (src_addr < src_start + len) {
455 pmd_t dst_pmdval;
456
457 BUG_ON(dst_addr >= dst_start + len);
458
459 dst_pmd = mm_alloc_pmd(dst_mm, dst_addr);
460 if (unlikely(!dst_pmd)) {
461 err = -ENOMEM;
462 break;
463 }
464
465 dst_pmdval = pmd_read_atomic(dst_pmd);
466 /*
467 * If the dst_pmd is mapped as THP don't
468 * override it and just be strict.
469 */
470 if (unlikely(pmd_trans_huge(dst_pmdval))) {
471 err = -EEXIST;
472 break;
473 }
474 if (unlikely(pmd_none(dst_pmdval)) &&
475 unlikely(__pte_alloc(dst_mm, dst_pmd, dst_addr))) {
476 err = -ENOMEM;
477 break;
478 }
479 /* If an huge pmd materialized from under us fail */
480 if (unlikely(pmd_trans_huge(*dst_pmd))) {
481 err = -EFAULT;
482 break;
483 }
484
485 BUG_ON(pmd_none(*dst_pmd));
486 BUG_ON(pmd_trans_huge(*dst_pmd));
487
488 if (vma_is_anonymous(dst_vma)) {
489 if (!zeropage)
490 err = mcopy_atomic_pte(dst_mm, dst_pmd, dst_vma,
491 dst_addr, src_addr,
492 &page);
493 else
494 err = mfill_zeropage_pte(dst_mm, dst_pmd,
495 dst_vma, dst_addr);
496 } else {
497 err = -EINVAL; /* if zeropage is true return -EINVAL */
498 if (likely(!zeropage))
499 err = shmem_mcopy_atomic_pte(dst_mm, dst_pmd,
500 dst_vma, dst_addr,
501 src_addr, &page);
502 }
503
504 cond_resched();
505
506 if (unlikely(err == -EFAULT)) {
507 void *page_kaddr;
508
509 up_read(&dst_mm->mmap_sem);
510 BUG_ON(!page);
511
512 page_kaddr = kmap(page);
513 err = copy_from_user(page_kaddr,
514 (const void __user *) src_addr,
515 PAGE_SIZE);
516 kunmap(page);
517 if (unlikely(err)) {
518 err = -EFAULT;
519 goto out;
520 }
521 goto retry;
522 } else
523 BUG_ON(page);
524
525 if (!err) {
526 dst_addr += PAGE_SIZE;
527 src_addr += PAGE_SIZE;
528 copied += PAGE_SIZE;
529
530 if (fatal_signal_pending(current))
531 err = -EINTR;
532 }
533 if (err)
534 break;
535 }
536
537 out_unlock:
538 up_read(&dst_mm->mmap_sem);
539 out:
540 if (page)
541 put_page(page);
542 BUG_ON(copied < 0);
543 BUG_ON(err > 0);
544 BUG_ON(!copied && !err);
545 return copied ? copied : err;
546 }
547
548 ssize_t mcopy_atomic(struct mm_struct *dst_mm, unsigned long dst_start,
549 unsigned long src_start, unsigned long len)
550 {
551 return __mcopy_atomic(dst_mm, dst_start, src_start, len, false);
552 }
553
554 ssize_t mfill_zeropage(struct mm_struct *dst_mm, unsigned long start,
555 unsigned long len)
556 {
557 return __mcopy_atomic(dst_mm, start, 0, len, true);
558 }