mm/gup.c: use is_vm_hugetlb_page() to check whether to follow huge
[linux-block.git] / mm / gup.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
4bbd4c77
KS
2#include <linux/kernel.h>
3#include <linux/errno.h>
4#include <linux/err.h>
5#include <linux/spinlock.h>
6
4bbd4c77 7#include <linux/mm.h>
3565fce3 8#include <linux/memremap.h>
4bbd4c77
KS
9#include <linux/pagemap.h>
10#include <linux/rmap.h>
11#include <linux/swap.h>
12#include <linux/swapops.h>
13
174cd4b1 14#include <linux/sched/signal.h>
2667f50e 15#include <linux/rwsem.h>
f30c59e9 16#include <linux/hugetlb.h>
9a4e9f3b
AK
17#include <linux/migrate.h>
18#include <linux/mm_inline.h>
19#include <linux/sched/mm.h>
1027e443 20
33a709b2 21#include <asm/mmu_context.h>
2667f50e 22#include <asm/pgtable.h>
1027e443 23#include <asm/tlbflush.h>
2667f50e 24
4bbd4c77
KS
25#include "internal.h"
26
df06b37f
KB
27struct follow_page_context {
28 struct dev_pagemap *pgmap;
29 unsigned int page_mask;
30};
31
fc1d8e7c 32/**
2d15eb31 33 * put_user_pages_dirty_lock() - release and optionally dirty gup-pinned pages
34 * @pages: array of pages to be maybe marked dirty, and definitely released.
fc1d8e7c 35 * @npages: number of pages in the @pages array.
2d15eb31 36 * @make_dirty: whether to mark the pages dirty
fc1d8e7c
JH
37 *
38 * "gup-pinned page" refers to a page that has had one of the get_user_pages()
39 * variants called on that page.
40 *
41 * For each page in the @pages array, make that page (or its head page, if a
2d15eb31 42 * compound page) dirty, if @make_dirty is true, and if the page was previously
43 * listed as clean. In any case, releases all pages using put_user_page(),
44 * possibly via put_user_pages(), for the non-dirty case.
fc1d8e7c
JH
45 *
46 * Please see the put_user_page() documentation for details.
47 *
2d15eb31 48 * set_page_dirty_lock() is used internally. If instead, set_page_dirty() is
49 * required, then the caller should a) verify that this is really correct,
50 * because _lock() is usually required, and b) hand code it:
51 * set_page_dirty_lock(), put_user_page().
fc1d8e7c
JH
52 *
53 */
2d15eb31 54void put_user_pages_dirty_lock(struct page **pages, unsigned long npages,
55 bool make_dirty)
fc1d8e7c 56{
2d15eb31 57 unsigned long index;
fc1d8e7c 58
2d15eb31 59 /*
60 * TODO: this can be optimized for huge pages: if a series of pages is
61 * physically contiguous and part of the same compound page, then a
62 * single operation to the head page should suffice.
63 */
64
65 if (!make_dirty) {
66 put_user_pages(pages, npages);
67 return;
68 }
69
70 for (index = 0; index < npages; index++) {
71 struct page *page = compound_head(pages[index]);
72 /*
73 * Checking PageDirty at this point may race with
74 * clear_page_dirty_for_io(), but that's OK. Two key
75 * cases:
76 *
77 * 1) This code sees the page as already dirty, so it
78 * skips the call to set_page_dirty(). That could happen
79 * because clear_page_dirty_for_io() called
80 * page_mkclean(), followed by set_page_dirty().
81 * However, now the page is going to get written back,
82 * which meets the original intention of setting it
83 * dirty, so all is well: clear_page_dirty_for_io() goes
84 * on to call TestClearPageDirty(), and write the page
85 * back.
86 *
87 * 2) This code sees the page as clean, so it calls
88 * set_page_dirty(). The page stays dirty, despite being
89 * written back, so it gets written back again in the
90 * next writeback cycle. This is harmless.
91 */
92 if (!PageDirty(page))
93 set_page_dirty_lock(page);
94 put_user_page(page);
95 }
fc1d8e7c
JH
96}
97EXPORT_SYMBOL(put_user_pages_dirty_lock);
98
99/**
100 * put_user_pages() - release an array of gup-pinned pages.
101 * @pages: array of pages to be marked dirty and released.
102 * @npages: number of pages in the @pages array.
103 *
104 * For each page in the @pages array, release the page using put_user_page().
105 *
106 * Please see the put_user_page() documentation for details.
107 */
108void put_user_pages(struct page **pages, unsigned long npages)
109{
110 unsigned long index;
111
112 /*
113 * TODO: this can be optimized for huge pages: if a series of pages is
114 * physically contiguous and part of the same compound page, then a
115 * single operation to the head page should suffice.
116 */
117 for (index = 0; index < npages; index++)
118 put_user_page(pages[index]);
119}
120EXPORT_SYMBOL(put_user_pages);
121
050a9adc 122#ifdef CONFIG_MMU
69e68b4f
KS
123static struct page *no_page_table(struct vm_area_struct *vma,
124 unsigned int flags)
4bbd4c77 125{
69e68b4f
KS
126 /*
127 * When core dumping an enormous anonymous area that nobody
128 * has touched so far, we don't want to allocate unnecessary pages or
129 * page tables. Return error instead of NULL to skip handle_mm_fault,
130 * then get_dump_page() will return NULL to leave a hole in the dump.
131 * But we can only make this optimization where a hole would surely
132 * be zero-filled if handle_mm_fault() actually did handle it.
133 */
134 if ((flags & FOLL_DUMP) && (!vma->vm_ops || !vma->vm_ops->fault))
135 return ERR_PTR(-EFAULT);
136 return NULL;
137}
4bbd4c77 138
1027e443
KS
139static int follow_pfn_pte(struct vm_area_struct *vma, unsigned long address,
140 pte_t *pte, unsigned int flags)
141{
142 /* No page to get reference */
143 if (flags & FOLL_GET)
144 return -EFAULT;
145
146 if (flags & FOLL_TOUCH) {
147 pte_t entry = *pte;
148
149 if (flags & FOLL_WRITE)
150 entry = pte_mkdirty(entry);
151 entry = pte_mkyoung(entry);
152
153 if (!pte_same(*pte, entry)) {
154 set_pte_at(vma->vm_mm, address, pte, entry);
155 update_mmu_cache(vma, address, pte);
156 }
157 }
158
159 /* Proper page table entry exists, but no corresponding struct page */
160 return -EEXIST;
161}
162
19be0eaf
LT
163/*
164 * FOLL_FORCE can write to even unwritable pte's, but only
165 * after we've gone through a COW cycle and they are dirty.
166 */
167static inline bool can_follow_write_pte(pte_t pte, unsigned int flags)
168{
f6f37321 169 return pte_write(pte) ||
19be0eaf
LT
170 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pte_dirty(pte));
171}
172
69e68b4f 173static struct page *follow_page_pte(struct vm_area_struct *vma,
df06b37f
KB
174 unsigned long address, pmd_t *pmd, unsigned int flags,
175 struct dev_pagemap **pgmap)
69e68b4f
KS
176{
177 struct mm_struct *mm = vma->vm_mm;
178 struct page *page;
179 spinlock_t *ptl;
180 pte_t *ptep, pte;
4bbd4c77 181
69e68b4f 182retry:
4bbd4c77 183 if (unlikely(pmd_bad(*pmd)))
69e68b4f 184 return no_page_table(vma, flags);
4bbd4c77
KS
185
186 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
4bbd4c77
KS
187 pte = *ptep;
188 if (!pte_present(pte)) {
189 swp_entry_t entry;
190 /*
191 * KSM's break_ksm() relies upon recognizing a ksm page
192 * even while it is being migrated, so for that case we
193 * need migration_entry_wait().
194 */
195 if (likely(!(flags & FOLL_MIGRATION)))
196 goto no_page;
0661a336 197 if (pte_none(pte))
4bbd4c77
KS
198 goto no_page;
199 entry = pte_to_swp_entry(pte);
200 if (!is_migration_entry(entry))
201 goto no_page;
202 pte_unmap_unlock(ptep, ptl);
203 migration_entry_wait(mm, pmd, address);
69e68b4f 204 goto retry;
4bbd4c77 205 }
8a0516ed 206 if ((flags & FOLL_NUMA) && pte_protnone(pte))
4bbd4c77 207 goto no_page;
19be0eaf 208 if ((flags & FOLL_WRITE) && !can_follow_write_pte(pte, flags)) {
69e68b4f
KS
209 pte_unmap_unlock(ptep, ptl);
210 return NULL;
211 }
4bbd4c77
KS
212
213 page = vm_normal_page(vma, address, pte);
3565fce3
DW
214 if (!page && pte_devmap(pte) && (flags & FOLL_GET)) {
215 /*
216 * Only return device mapping pages in the FOLL_GET case since
217 * they are only valid while holding the pgmap reference.
218 */
df06b37f
KB
219 *pgmap = get_dev_pagemap(pte_pfn(pte), *pgmap);
220 if (*pgmap)
3565fce3
DW
221 page = pte_page(pte);
222 else
223 goto no_page;
224 } else if (unlikely(!page)) {
1027e443
KS
225 if (flags & FOLL_DUMP) {
226 /* Avoid special (like zero) pages in core dumps */
227 page = ERR_PTR(-EFAULT);
228 goto out;
229 }
230
231 if (is_zero_pfn(pte_pfn(pte))) {
232 page = pte_page(pte);
233 } else {
234 int ret;
235
236 ret = follow_pfn_pte(vma, address, ptep, flags);
237 page = ERR_PTR(ret);
238 goto out;
239 }
4bbd4c77
KS
240 }
241
6742d293
KS
242 if (flags & FOLL_SPLIT && PageTransCompound(page)) {
243 int ret;
244 get_page(page);
245 pte_unmap_unlock(ptep, ptl);
246 lock_page(page);
247 ret = split_huge_page(page);
248 unlock_page(page);
249 put_page(page);
250 if (ret)
251 return ERR_PTR(ret);
252 goto retry;
253 }
254
8fde12ca
LT
255 if (flags & FOLL_GET) {
256 if (unlikely(!try_get_page(page))) {
257 page = ERR_PTR(-ENOMEM);
258 goto out;
259 }
260 }
4bbd4c77
KS
261 if (flags & FOLL_TOUCH) {
262 if ((flags & FOLL_WRITE) &&
263 !pte_dirty(pte) && !PageDirty(page))
264 set_page_dirty(page);
265 /*
266 * pte_mkyoung() would be more correct here, but atomic care
267 * is needed to avoid losing the dirty bit: it is easier to use
268 * mark_page_accessed().
269 */
270 mark_page_accessed(page);
271 }
de60f5f1 272 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
e90309c9
KS
273 /* Do not mlock pte-mapped THP */
274 if (PageTransCompound(page))
275 goto out;
276
4bbd4c77
KS
277 /*
278 * The preliminary mapping check is mainly to avoid the
279 * pointless overhead of lock_page on the ZERO_PAGE
280 * which might bounce very badly if there is contention.
281 *
282 * If the page is already locked, we don't need to
283 * handle it now - vmscan will handle it later if and
284 * when it attempts to reclaim the page.
285 */
286 if (page->mapping && trylock_page(page)) {
287 lru_add_drain(); /* push cached pages to LRU */
288 /*
289 * Because we lock page here, and migration is
290 * blocked by the pte's page reference, and we
291 * know the page is still mapped, we don't even
292 * need to check for file-cache page truncation.
293 */
294 mlock_vma_page(page);
295 unlock_page(page);
296 }
297 }
1027e443 298out:
4bbd4c77 299 pte_unmap_unlock(ptep, ptl);
4bbd4c77 300 return page;
4bbd4c77
KS
301no_page:
302 pte_unmap_unlock(ptep, ptl);
303 if (!pte_none(pte))
69e68b4f
KS
304 return NULL;
305 return no_page_table(vma, flags);
306}
307
080dbb61
AK
308static struct page *follow_pmd_mask(struct vm_area_struct *vma,
309 unsigned long address, pud_t *pudp,
df06b37f
KB
310 unsigned int flags,
311 struct follow_page_context *ctx)
69e68b4f 312{
68827280 313 pmd_t *pmd, pmdval;
69e68b4f
KS
314 spinlock_t *ptl;
315 struct page *page;
316 struct mm_struct *mm = vma->vm_mm;
317
080dbb61 318 pmd = pmd_offset(pudp, address);
68827280
HY
319 /*
320 * The READ_ONCE() will stabilize the pmdval in a register or
321 * on the stack so that it will stop changing under the code.
322 */
323 pmdval = READ_ONCE(*pmd);
324 if (pmd_none(pmdval))
69e68b4f 325 return no_page_table(vma, flags);
be9d3045 326 if (pmd_huge(pmdval) && is_vm_hugetlb_page(vma)) {
e66f17ff
NH
327 page = follow_huge_pmd(mm, address, pmd, flags);
328 if (page)
329 return page;
330 return no_page_table(vma, flags);
69e68b4f 331 }
68827280 332 if (is_hugepd(__hugepd(pmd_val(pmdval)))) {
4dc71451 333 page = follow_huge_pd(vma, address,
68827280 334 __hugepd(pmd_val(pmdval)), flags,
4dc71451
AK
335 PMD_SHIFT);
336 if (page)
337 return page;
338 return no_page_table(vma, flags);
339 }
84c3fc4e 340retry:
68827280 341 if (!pmd_present(pmdval)) {
84c3fc4e
ZY
342 if (likely(!(flags & FOLL_MIGRATION)))
343 return no_page_table(vma, flags);
344 VM_BUG_ON(thp_migration_supported() &&
68827280
HY
345 !is_pmd_migration_entry(pmdval));
346 if (is_pmd_migration_entry(pmdval))
84c3fc4e 347 pmd_migration_entry_wait(mm, pmd);
68827280
HY
348 pmdval = READ_ONCE(*pmd);
349 /*
350 * MADV_DONTNEED may convert the pmd to null because
351 * mmap_sem is held in read mode
352 */
353 if (pmd_none(pmdval))
354 return no_page_table(vma, flags);
84c3fc4e
ZY
355 goto retry;
356 }
68827280 357 if (pmd_devmap(pmdval)) {
3565fce3 358 ptl = pmd_lock(mm, pmd);
df06b37f 359 page = follow_devmap_pmd(vma, address, pmd, flags, &ctx->pgmap);
3565fce3
DW
360 spin_unlock(ptl);
361 if (page)
362 return page;
363 }
68827280 364 if (likely(!pmd_trans_huge(pmdval)))
df06b37f 365 return follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
6742d293 366
68827280 367 if ((flags & FOLL_NUMA) && pmd_protnone(pmdval))
db08f203
AK
368 return no_page_table(vma, flags);
369
84c3fc4e 370retry_locked:
6742d293 371 ptl = pmd_lock(mm, pmd);
68827280
HY
372 if (unlikely(pmd_none(*pmd))) {
373 spin_unlock(ptl);
374 return no_page_table(vma, flags);
375 }
84c3fc4e
ZY
376 if (unlikely(!pmd_present(*pmd))) {
377 spin_unlock(ptl);
378 if (likely(!(flags & FOLL_MIGRATION)))
379 return no_page_table(vma, flags);
380 pmd_migration_entry_wait(mm, pmd);
381 goto retry_locked;
382 }
6742d293
KS
383 if (unlikely(!pmd_trans_huge(*pmd))) {
384 spin_unlock(ptl);
df06b37f 385 return follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
6742d293 386 }
bfe7b00d 387 if (flags & (FOLL_SPLIT | FOLL_SPLIT_PMD)) {
6742d293
KS
388 int ret;
389 page = pmd_page(*pmd);
390 if (is_huge_zero_page(page)) {
391 spin_unlock(ptl);
392 ret = 0;
78ddc534 393 split_huge_pmd(vma, pmd, address);
337d9abf
NH
394 if (pmd_trans_unstable(pmd))
395 ret = -EBUSY;
bfe7b00d 396 } else if (flags & FOLL_SPLIT) {
8fde12ca
LT
397 if (unlikely(!try_get_page(page))) {
398 spin_unlock(ptl);
399 return ERR_PTR(-ENOMEM);
400 }
69e68b4f 401 spin_unlock(ptl);
6742d293
KS
402 lock_page(page);
403 ret = split_huge_page(page);
404 unlock_page(page);
405 put_page(page);
baa355fd
KS
406 if (pmd_none(*pmd))
407 return no_page_table(vma, flags);
bfe7b00d
SL
408 } else { /* flags & FOLL_SPLIT_PMD */
409 spin_unlock(ptl);
410 split_huge_pmd(vma, pmd, address);
411 ret = pte_alloc(mm, pmd) ? -ENOMEM : 0;
6742d293
KS
412 }
413
414 return ret ? ERR_PTR(ret) :
df06b37f 415 follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
69e68b4f 416 }
6742d293
KS
417 page = follow_trans_huge_pmd(vma, address, pmd, flags);
418 spin_unlock(ptl);
df06b37f 419 ctx->page_mask = HPAGE_PMD_NR - 1;
6742d293 420 return page;
4bbd4c77
KS
421}
422
080dbb61
AK
423static struct page *follow_pud_mask(struct vm_area_struct *vma,
424 unsigned long address, p4d_t *p4dp,
df06b37f
KB
425 unsigned int flags,
426 struct follow_page_context *ctx)
080dbb61
AK
427{
428 pud_t *pud;
429 spinlock_t *ptl;
430 struct page *page;
431 struct mm_struct *mm = vma->vm_mm;
432
433 pud = pud_offset(p4dp, address);
434 if (pud_none(*pud))
435 return no_page_table(vma, flags);
be9d3045 436 if (pud_huge(*pud) && is_vm_hugetlb_page(vma)) {
080dbb61
AK
437 page = follow_huge_pud(mm, address, pud, flags);
438 if (page)
439 return page;
440 return no_page_table(vma, flags);
441 }
4dc71451
AK
442 if (is_hugepd(__hugepd(pud_val(*pud)))) {
443 page = follow_huge_pd(vma, address,
444 __hugepd(pud_val(*pud)), flags,
445 PUD_SHIFT);
446 if (page)
447 return page;
448 return no_page_table(vma, flags);
449 }
080dbb61
AK
450 if (pud_devmap(*pud)) {
451 ptl = pud_lock(mm, pud);
df06b37f 452 page = follow_devmap_pud(vma, address, pud, flags, &ctx->pgmap);
080dbb61
AK
453 spin_unlock(ptl);
454 if (page)
455 return page;
456 }
457 if (unlikely(pud_bad(*pud)))
458 return no_page_table(vma, flags);
459
df06b37f 460 return follow_pmd_mask(vma, address, pud, flags, ctx);
080dbb61
AK
461}
462
080dbb61
AK
463static struct page *follow_p4d_mask(struct vm_area_struct *vma,
464 unsigned long address, pgd_t *pgdp,
df06b37f
KB
465 unsigned int flags,
466 struct follow_page_context *ctx)
080dbb61
AK
467{
468 p4d_t *p4d;
4dc71451 469 struct page *page;
080dbb61
AK
470
471 p4d = p4d_offset(pgdp, address);
472 if (p4d_none(*p4d))
473 return no_page_table(vma, flags);
474 BUILD_BUG_ON(p4d_huge(*p4d));
475 if (unlikely(p4d_bad(*p4d)))
476 return no_page_table(vma, flags);
477
4dc71451
AK
478 if (is_hugepd(__hugepd(p4d_val(*p4d)))) {
479 page = follow_huge_pd(vma, address,
480 __hugepd(p4d_val(*p4d)), flags,
481 P4D_SHIFT);
482 if (page)
483 return page;
484 return no_page_table(vma, flags);
485 }
df06b37f 486 return follow_pud_mask(vma, address, p4d, flags, ctx);
080dbb61
AK
487}
488
489/**
490 * follow_page_mask - look up a page descriptor from a user-virtual address
491 * @vma: vm_area_struct mapping @address
492 * @address: virtual address to look up
493 * @flags: flags modifying lookup behaviour
78179556
MR
494 * @ctx: contains dev_pagemap for %ZONE_DEVICE memory pinning and a
495 * pointer to output page_mask
080dbb61
AK
496 *
497 * @flags can have FOLL_ flags set, defined in <linux/mm.h>
498 *
78179556
MR
499 * When getting pages from ZONE_DEVICE memory, the @ctx->pgmap caches
500 * the device's dev_pagemap metadata to avoid repeating expensive lookups.
501 *
502 * On output, the @ctx->page_mask is set according to the size of the page.
503 *
504 * Return: the mapped (struct page *), %NULL if no mapping exists, or
080dbb61
AK
505 * an error pointer if there is a mapping to something not represented
506 * by a page descriptor (see also vm_normal_page()).
507 */
a7030aea 508static struct page *follow_page_mask(struct vm_area_struct *vma,
080dbb61 509 unsigned long address, unsigned int flags,
df06b37f 510 struct follow_page_context *ctx)
080dbb61
AK
511{
512 pgd_t *pgd;
513 struct page *page;
514 struct mm_struct *mm = vma->vm_mm;
515
df06b37f 516 ctx->page_mask = 0;
080dbb61
AK
517
518 /* make this handle hugepd */
519 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
520 if (!IS_ERR(page)) {
521 BUG_ON(flags & FOLL_GET);
522 return page;
523 }
524
525 pgd = pgd_offset(mm, address);
526
527 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
528 return no_page_table(vma, flags);
529
faaa5b62
AK
530 if (pgd_huge(*pgd)) {
531 page = follow_huge_pgd(mm, address, pgd, flags);
532 if (page)
533 return page;
534 return no_page_table(vma, flags);
535 }
4dc71451
AK
536 if (is_hugepd(__hugepd(pgd_val(*pgd)))) {
537 page = follow_huge_pd(vma, address,
538 __hugepd(pgd_val(*pgd)), flags,
539 PGDIR_SHIFT);
540 if (page)
541 return page;
542 return no_page_table(vma, flags);
543 }
faaa5b62 544
df06b37f
KB
545 return follow_p4d_mask(vma, address, pgd, flags, ctx);
546}
547
548struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
549 unsigned int foll_flags)
550{
551 struct follow_page_context ctx = { NULL };
552 struct page *page;
553
554 page = follow_page_mask(vma, address, foll_flags, &ctx);
555 if (ctx.pgmap)
556 put_dev_pagemap(ctx.pgmap);
557 return page;
080dbb61
AK
558}
559
f2b495ca
KS
560static int get_gate_page(struct mm_struct *mm, unsigned long address,
561 unsigned int gup_flags, struct vm_area_struct **vma,
562 struct page **page)
563{
564 pgd_t *pgd;
c2febafc 565 p4d_t *p4d;
f2b495ca
KS
566 pud_t *pud;
567 pmd_t *pmd;
568 pte_t *pte;
569 int ret = -EFAULT;
570
571 /* user gate pages are read-only */
572 if (gup_flags & FOLL_WRITE)
573 return -EFAULT;
574 if (address > TASK_SIZE)
575 pgd = pgd_offset_k(address);
576 else
577 pgd = pgd_offset_gate(mm, address);
b5d1c39f
AL
578 if (pgd_none(*pgd))
579 return -EFAULT;
c2febafc 580 p4d = p4d_offset(pgd, address);
b5d1c39f
AL
581 if (p4d_none(*p4d))
582 return -EFAULT;
c2febafc 583 pud = pud_offset(p4d, address);
b5d1c39f
AL
584 if (pud_none(*pud))
585 return -EFAULT;
f2b495ca 586 pmd = pmd_offset(pud, address);
84c3fc4e 587 if (!pmd_present(*pmd))
f2b495ca
KS
588 return -EFAULT;
589 VM_BUG_ON(pmd_trans_huge(*pmd));
590 pte = pte_offset_map(pmd, address);
591 if (pte_none(*pte))
592 goto unmap;
593 *vma = get_gate_vma(mm);
594 if (!page)
595 goto out;
596 *page = vm_normal_page(*vma, address, *pte);
597 if (!*page) {
598 if ((gup_flags & FOLL_DUMP) || !is_zero_pfn(pte_pfn(*pte)))
599 goto unmap;
600 *page = pte_page(*pte);
601 }
8fde12ca
LT
602 if (unlikely(!try_get_page(*page))) {
603 ret = -ENOMEM;
604 goto unmap;
605 }
f2b495ca
KS
606out:
607 ret = 0;
608unmap:
609 pte_unmap(pte);
610 return ret;
611}
612
9a95f3cf
PC
613/*
614 * mmap_sem must be held on entry. If @nonblocking != NULL and
615 * *@flags does not include FOLL_NOWAIT, the mmap_sem may be released.
616 * If it is, *@nonblocking will be set to 0 and -EBUSY returned.
617 */
16744483
KS
618static int faultin_page(struct task_struct *tsk, struct vm_area_struct *vma,
619 unsigned long address, unsigned int *flags, int *nonblocking)
620{
16744483 621 unsigned int fault_flags = 0;
2b740303 622 vm_fault_t ret;
16744483 623
de60f5f1
EM
624 /* mlock all present pages, but do not fault in new pages */
625 if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK)
626 return -ENOENT;
16744483
KS
627 if (*flags & FOLL_WRITE)
628 fault_flags |= FAULT_FLAG_WRITE;
1b2ee126
DH
629 if (*flags & FOLL_REMOTE)
630 fault_flags |= FAULT_FLAG_REMOTE;
16744483
KS
631 if (nonblocking)
632 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
633 if (*flags & FOLL_NOWAIT)
634 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_RETRY_NOWAIT;
234b239b
ALC
635 if (*flags & FOLL_TRIED) {
636 VM_WARN_ON_ONCE(fault_flags & FAULT_FLAG_ALLOW_RETRY);
637 fault_flags |= FAULT_FLAG_TRIED;
638 }
16744483 639
dcddffd4 640 ret = handle_mm_fault(vma, address, fault_flags);
16744483 641 if (ret & VM_FAULT_ERROR) {
9a291a7c
JM
642 int err = vm_fault_to_errno(ret, *flags);
643
644 if (err)
645 return err;
16744483
KS
646 BUG();
647 }
648
649 if (tsk) {
650 if (ret & VM_FAULT_MAJOR)
651 tsk->maj_flt++;
652 else
653 tsk->min_flt++;
654 }
655
656 if (ret & VM_FAULT_RETRY) {
96312e61 657 if (nonblocking && !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
16744483
KS
658 *nonblocking = 0;
659 return -EBUSY;
660 }
661
662 /*
663 * The VM_FAULT_WRITE bit tells us that do_wp_page has broken COW when
664 * necessary, even if maybe_mkwrite decided not to set pte_write. We
665 * can thus safely do subsequent page lookups as if they were reads.
666 * But only do so when looping for pte_write is futile: in some cases
667 * userspace may also be wanting to write to the gotten user page,
668 * which a read fault here might prevent (a readonly page might get
669 * reCOWed by userspace write).
670 */
671 if ((ret & VM_FAULT_WRITE) && !(vma->vm_flags & VM_WRITE))
2923117b 672 *flags |= FOLL_COW;
16744483
KS
673 return 0;
674}
675
fa5bb209
KS
676static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
677{
678 vm_flags_t vm_flags = vma->vm_flags;
1b2ee126
DH
679 int write = (gup_flags & FOLL_WRITE);
680 int foreign = (gup_flags & FOLL_REMOTE);
fa5bb209
KS
681
682 if (vm_flags & (VM_IO | VM_PFNMAP))
683 return -EFAULT;
684
7f7ccc2c
WT
685 if (gup_flags & FOLL_ANON && !vma_is_anonymous(vma))
686 return -EFAULT;
687
1b2ee126 688 if (write) {
fa5bb209
KS
689 if (!(vm_flags & VM_WRITE)) {
690 if (!(gup_flags & FOLL_FORCE))
691 return -EFAULT;
692 /*
693 * We used to let the write,force case do COW in a
694 * VM_MAYWRITE VM_SHARED !VM_WRITE vma, so ptrace could
695 * set a breakpoint in a read-only mapping of an
696 * executable, without corrupting the file (yet only
697 * when that file had been opened for writing!).
698 * Anon pages in shared mappings are surprising: now
699 * just reject it.
700 */
46435364 701 if (!is_cow_mapping(vm_flags))
fa5bb209 702 return -EFAULT;
fa5bb209
KS
703 }
704 } else if (!(vm_flags & VM_READ)) {
705 if (!(gup_flags & FOLL_FORCE))
706 return -EFAULT;
707 /*
708 * Is there actually any vma we can reach here which does not
709 * have VM_MAYREAD set?
710 */
711 if (!(vm_flags & VM_MAYREAD))
712 return -EFAULT;
713 }
d61172b4
DH
714 /*
715 * gups are always data accesses, not instruction
716 * fetches, so execute=false here
717 */
718 if (!arch_vma_access_permitted(vma, write, false, foreign))
33a709b2 719 return -EFAULT;
fa5bb209
KS
720 return 0;
721}
722
4bbd4c77
KS
723/**
724 * __get_user_pages() - pin user pages in memory
725 * @tsk: task_struct of target task
726 * @mm: mm_struct of target mm
727 * @start: starting user address
728 * @nr_pages: number of pages from start to pin
729 * @gup_flags: flags modifying pin behaviour
730 * @pages: array that receives pointers to the pages pinned.
731 * Should be at least nr_pages long. Or NULL, if caller
732 * only intends to ensure the pages are faulted in.
733 * @vmas: array of pointers to vmas corresponding to each page.
734 * Or NULL if the caller does not require them.
735 * @nonblocking: whether waiting for disk IO or mmap_sem contention
736 *
d2dfbe47
LX
737 * Returns either number of pages pinned (which may be less than the
738 * number requested), or an error. Details about the return value:
739 *
740 * -- If nr_pages is 0, returns 0.
741 * -- If nr_pages is >0, but no pages were pinned, returns -errno.
742 * -- If nr_pages is >0, and some pages were pinned, returns the number of
743 * pages pinned. Again, this may be less than nr_pages.
744 *
745 * The caller is responsible for releasing returned @pages, via put_page().
746 *
747 * @vmas are valid only as long as mmap_sem is held.
4bbd4c77 748 *
9a95f3cf 749 * Must be called with mmap_sem held. It may be released. See below.
4bbd4c77
KS
750 *
751 * __get_user_pages walks a process's page tables and takes a reference to
752 * each struct page that each user address corresponds to at a given
753 * instant. That is, it takes the page that would be accessed if a user
754 * thread accesses the given user virtual address at that instant.
755 *
756 * This does not guarantee that the page exists in the user mappings when
757 * __get_user_pages returns, and there may even be a completely different
758 * page there in some cases (eg. if mmapped pagecache has been invalidated
759 * and subsequently re faulted). However it does guarantee that the page
760 * won't be freed completely. And mostly callers simply care that the page
761 * contains data that was valid *at some point in time*. Typically, an IO
762 * or similar operation cannot guarantee anything stronger anyway because
763 * locks can't be held over the syscall boundary.
764 *
765 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
766 * the page is written to, set_page_dirty (or set_page_dirty_lock, as
767 * appropriate) must be called after the page is finished with, and
768 * before put_page is called.
769 *
770 * If @nonblocking != NULL, __get_user_pages will not wait for disk IO
771 * or mmap_sem contention, and if waiting is needed to pin all pages,
9a95f3cf
PC
772 * *@nonblocking will be set to 0. Further, if @gup_flags does not
773 * include FOLL_NOWAIT, the mmap_sem will be released via up_read() in
774 * this case.
775 *
776 * A caller using such a combination of @nonblocking and @gup_flags
777 * must therefore hold the mmap_sem for reading only, and recognize
778 * when it's been released. Otherwise, it must be held for either
779 * reading or writing and will not be released.
4bbd4c77
KS
780 *
781 * In most cases, get_user_pages or get_user_pages_fast should be used
782 * instead of __get_user_pages. __get_user_pages should be used only if
783 * you need some special @gup_flags.
784 */
0d731759 785static long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
4bbd4c77
KS
786 unsigned long start, unsigned long nr_pages,
787 unsigned int gup_flags, struct page **pages,
788 struct vm_area_struct **vmas, int *nonblocking)
789{
df06b37f 790 long ret = 0, i = 0;
fa5bb209 791 struct vm_area_struct *vma = NULL;
df06b37f 792 struct follow_page_context ctx = { NULL };
4bbd4c77
KS
793
794 if (!nr_pages)
795 return 0;
796
f9652594
AK
797 start = untagged_addr(start);
798
4bbd4c77
KS
799 VM_BUG_ON(!!pages != !!(gup_flags & FOLL_GET));
800
801 /*
802 * If FOLL_FORCE is set then do not force a full fault as the hinting
803 * fault information is unrelated to the reference behaviour of a task
804 * using the address space
805 */
806 if (!(gup_flags & FOLL_FORCE))
807 gup_flags |= FOLL_NUMA;
808
4bbd4c77 809 do {
fa5bb209
KS
810 struct page *page;
811 unsigned int foll_flags = gup_flags;
812 unsigned int page_increm;
813
814 /* first iteration or cross vma bound */
815 if (!vma || start >= vma->vm_end) {
816 vma = find_extend_vma(mm, start);
817 if (!vma && in_gate_area(mm, start)) {
fa5bb209
KS
818 ret = get_gate_page(mm, start & PAGE_MASK,
819 gup_flags, &vma,
820 pages ? &pages[i] : NULL);
821 if (ret)
08be37b7 822 goto out;
df06b37f 823 ctx.page_mask = 0;
fa5bb209
KS
824 goto next_page;
825 }
4bbd4c77 826
df06b37f
KB
827 if (!vma || check_vma_flags(vma, gup_flags)) {
828 ret = -EFAULT;
829 goto out;
830 }
fa5bb209
KS
831 if (is_vm_hugetlb_page(vma)) {
832 i = follow_hugetlb_page(mm, vma, pages, vmas,
833 &start, &nr_pages, i,
87ffc118 834 gup_flags, nonblocking);
fa5bb209 835 continue;
4bbd4c77 836 }
fa5bb209
KS
837 }
838retry:
839 /*
840 * If we have a pending SIGKILL, don't keep faulting pages and
841 * potentially allocating memory.
842 */
fa45f116 843 if (fatal_signal_pending(current)) {
df06b37f
KB
844 ret = -ERESTARTSYS;
845 goto out;
846 }
fa5bb209 847 cond_resched();
df06b37f
KB
848
849 page = follow_page_mask(vma, start, foll_flags, &ctx);
fa5bb209 850 if (!page) {
fa5bb209
KS
851 ret = faultin_page(tsk, vma, start, &foll_flags,
852 nonblocking);
853 switch (ret) {
854 case 0:
855 goto retry;
df06b37f
KB
856 case -EBUSY:
857 ret = 0;
858 /* FALLTHRU */
fa5bb209
KS
859 case -EFAULT:
860 case -ENOMEM:
861 case -EHWPOISON:
df06b37f 862 goto out;
fa5bb209
KS
863 case -ENOENT:
864 goto next_page;
4bbd4c77 865 }
fa5bb209 866 BUG();
1027e443
KS
867 } else if (PTR_ERR(page) == -EEXIST) {
868 /*
869 * Proper page table entry exists, but no corresponding
870 * struct page.
871 */
872 goto next_page;
873 } else if (IS_ERR(page)) {
df06b37f
KB
874 ret = PTR_ERR(page);
875 goto out;
1027e443 876 }
fa5bb209
KS
877 if (pages) {
878 pages[i] = page;
879 flush_anon_page(vma, page, start);
880 flush_dcache_page(page);
df06b37f 881 ctx.page_mask = 0;
4bbd4c77 882 }
4bbd4c77 883next_page:
fa5bb209
KS
884 if (vmas) {
885 vmas[i] = vma;
df06b37f 886 ctx.page_mask = 0;
fa5bb209 887 }
df06b37f 888 page_increm = 1 + (~(start >> PAGE_SHIFT) & ctx.page_mask);
fa5bb209
KS
889 if (page_increm > nr_pages)
890 page_increm = nr_pages;
891 i += page_increm;
892 start += page_increm * PAGE_SIZE;
893 nr_pages -= page_increm;
4bbd4c77 894 } while (nr_pages);
df06b37f
KB
895out:
896 if (ctx.pgmap)
897 put_dev_pagemap(ctx.pgmap);
898 return i ? i : ret;
4bbd4c77 899}
4bbd4c77 900
771ab430
TK
901static bool vma_permits_fault(struct vm_area_struct *vma,
902 unsigned int fault_flags)
d4925e00 903{
1b2ee126
DH
904 bool write = !!(fault_flags & FAULT_FLAG_WRITE);
905 bool foreign = !!(fault_flags & FAULT_FLAG_REMOTE);
33a709b2 906 vm_flags_t vm_flags = write ? VM_WRITE : VM_READ;
d4925e00
DH
907
908 if (!(vm_flags & vma->vm_flags))
909 return false;
910
33a709b2
DH
911 /*
912 * The architecture might have a hardware protection
1b2ee126 913 * mechanism other than read/write that can deny access.
d61172b4
DH
914 *
915 * gup always represents data access, not instruction
916 * fetches, so execute=false here:
33a709b2 917 */
d61172b4 918 if (!arch_vma_access_permitted(vma, write, false, foreign))
33a709b2
DH
919 return false;
920
d4925e00
DH
921 return true;
922}
923
4bbd4c77
KS
924/*
925 * fixup_user_fault() - manually resolve a user page fault
926 * @tsk: the task_struct to use for page fault accounting, or
927 * NULL if faults are not to be recorded.
928 * @mm: mm_struct of target mm
929 * @address: user address
930 * @fault_flags:flags to pass down to handle_mm_fault()
4a9e1cda
DD
931 * @unlocked: did we unlock the mmap_sem while retrying, maybe NULL if caller
932 * does not allow retry
4bbd4c77
KS
933 *
934 * This is meant to be called in the specific scenario where for locking reasons
935 * we try to access user memory in atomic context (within a pagefault_disable()
936 * section), this returns -EFAULT, and we want to resolve the user fault before
937 * trying again.
938 *
939 * Typically this is meant to be used by the futex code.
940 *
941 * The main difference with get_user_pages() is that this function will
942 * unconditionally call handle_mm_fault() which will in turn perform all the
943 * necessary SW fixup of the dirty and young bits in the PTE, while
4a9e1cda 944 * get_user_pages() only guarantees to update these in the struct page.
4bbd4c77
KS
945 *
946 * This is important for some architectures where those bits also gate the
947 * access permission to the page because they are maintained in software. On
948 * such architectures, gup() will not be enough to make a subsequent access
949 * succeed.
950 *
4a9e1cda
DD
951 * This function will not return with an unlocked mmap_sem. So it has not the
952 * same semantics wrt the @mm->mmap_sem as does filemap_fault().
4bbd4c77
KS
953 */
954int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm,
4a9e1cda
DD
955 unsigned long address, unsigned int fault_flags,
956 bool *unlocked)
4bbd4c77
KS
957{
958 struct vm_area_struct *vma;
2b740303 959 vm_fault_t ret, major = 0;
4a9e1cda 960
f9652594
AK
961 address = untagged_addr(address);
962
4a9e1cda
DD
963 if (unlocked)
964 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
4bbd4c77 965
4a9e1cda 966retry:
4bbd4c77
KS
967 vma = find_extend_vma(mm, address);
968 if (!vma || address < vma->vm_start)
969 return -EFAULT;
970
d4925e00 971 if (!vma_permits_fault(vma, fault_flags))
4bbd4c77
KS
972 return -EFAULT;
973
dcddffd4 974 ret = handle_mm_fault(vma, address, fault_flags);
4a9e1cda 975 major |= ret & VM_FAULT_MAJOR;
4bbd4c77 976 if (ret & VM_FAULT_ERROR) {
9a291a7c
JM
977 int err = vm_fault_to_errno(ret, 0);
978
979 if (err)
980 return err;
4bbd4c77
KS
981 BUG();
982 }
4a9e1cda
DD
983
984 if (ret & VM_FAULT_RETRY) {
985 down_read(&mm->mmap_sem);
986 if (!(fault_flags & FAULT_FLAG_TRIED)) {
987 *unlocked = true;
988 fault_flags &= ~FAULT_FLAG_ALLOW_RETRY;
989 fault_flags |= FAULT_FLAG_TRIED;
990 goto retry;
991 }
992 }
993
4bbd4c77 994 if (tsk) {
4a9e1cda 995 if (major)
4bbd4c77
KS
996 tsk->maj_flt++;
997 else
998 tsk->min_flt++;
999 }
1000 return 0;
1001}
add6a0cd 1002EXPORT_SYMBOL_GPL(fixup_user_fault);
4bbd4c77 1003
f0818f47
AA
1004static __always_inline long __get_user_pages_locked(struct task_struct *tsk,
1005 struct mm_struct *mm,
1006 unsigned long start,
1007 unsigned long nr_pages,
f0818f47
AA
1008 struct page **pages,
1009 struct vm_area_struct **vmas,
e716712f 1010 int *locked,
0fd71a56 1011 unsigned int flags)
f0818f47 1012{
f0818f47
AA
1013 long ret, pages_done;
1014 bool lock_dropped;
1015
1016 if (locked) {
1017 /* if VM_FAULT_RETRY can be returned, vmas become invalid */
1018 BUG_ON(vmas);
1019 /* check caller initialized locked */
1020 BUG_ON(*locked != 1);
1021 }
1022
1023 if (pages)
1024 flags |= FOLL_GET;
f0818f47
AA
1025
1026 pages_done = 0;
1027 lock_dropped = false;
1028 for (;;) {
1029 ret = __get_user_pages(tsk, mm, start, nr_pages, flags, pages,
1030 vmas, locked);
1031 if (!locked)
1032 /* VM_FAULT_RETRY couldn't trigger, bypass */
1033 return ret;
1034
1035 /* VM_FAULT_RETRY cannot return errors */
1036 if (!*locked) {
1037 BUG_ON(ret < 0);
1038 BUG_ON(ret >= nr_pages);
1039 }
1040
f0818f47
AA
1041 if (ret > 0) {
1042 nr_pages -= ret;
1043 pages_done += ret;
1044 if (!nr_pages)
1045 break;
1046 }
1047 if (*locked) {
96312e61
AA
1048 /*
1049 * VM_FAULT_RETRY didn't trigger or it was a
1050 * FOLL_NOWAIT.
1051 */
f0818f47
AA
1052 if (!pages_done)
1053 pages_done = ret;
1054 break;
1055 }
df17277b
MR
1056 /*
1057 * VM_FAULT_RETRY triggered, so seek to the faulting offset.
1058 * For the prefault case (!pages) we only update counts.
1059 */
1060 if (likely(pages))
1061 pages += ret;
f0818f47
AA
1062 start += ret << PAGE_SHIFT;
1063
1064 /*
1065 * Repeat on the address that fired VM_FAULT_RETRY
1066 * without FAULT_FLAG_ALLOW_RETRY but with
1067 * FAULT_FLAG_TRIED.
1068 */
1069 *locked = 1;
1070 lock_dropped = true;
1071 down_read(&mm->mmap_sem);
1072 ret = __get_user_pages(tsk, mm, start, 1, flags | FOLL_TRIED,
1073 pages, NULL, NULL);
1074 if (ret != 1) {
1075 BUG_ON(ret > 1);
1076 if (!pages_done)
1077 pages_done = ret;
1078 break;
1079 }
1080 nr_pages--;
1081 pages_done++;
1082 if (!nr_pages)
1083 break;
df17277b
MR
1084 if (likely(pages))
1085 pages++;
f0818f47
AA
1086 start += PAGE_SIZE;
1087 }
e716712f 1088 if (lock_dropped && *locked) {
f0818f47
AA
1089 /*
1090 * We must let the caller know we temporarily dropped the lock
1091 * and so the critical section protected by it was lost.
1092 */
1093 up_read(&mm->mmap_sem);
1094 *locked = 0;
1095 }
1096 return pages_done;
1097}
1098
4bbd4c77 1099/*
1e987790 1100 * get_user_pages_remote() - pin user pages in memory
4bbd4c77
KS
1101 * @tsk: the task_struct to use for page fault accounting, or
1102 * NULL if faults are not to be recorded.
1103 * @mm: mm_struct of target mm
1104 * @start: starting user address
1105 * @nr_pages: number of pages from start to pin
9beae1ea 1106 * @gup_flags: flags modifying lookup behaviour
4bbd4c77
KS
1107 * @pages: array that receives pointers to the pages pinned.
1108 * Should be at least nr_pages long. Or NULL, if caller
1109 * only intends to ensure the pages are faulted in.
1110 * @vmas: array of pointers to vmas corresponding to each page.
1111 * Or NULL if the caller does not require them.
5b56d49f
LS
1112 * @locked: pointer to lock flag indicating whether lock is held and
1113 * subsequently whether VM_FAULT_RETRY functionality can be
1114 * utilised. Lock must initially be held.
4bbd4c77 1115 *
d2dfbe47
LX
1116 * Returns either number of pages pinned (which may be less than the
1117 * number requested), or an error. Details about the return value:
1118 *
1119 * -- If nr_pages is 0, returns 0.
1120 * -- If nr_pages is >0, but no pages were pinned, returns -errno.
1121 * -- If nr_pages is >0, and some pages were pinned, returns the number of
1122 * pages pinned. Again, this may be less than nr_pages.
1123 *
1124 * The caller is responsible for releasing returned @pages, via put_page().
1125 *
1126 * @vmas are valid only as long as mmap_sem is held.
4bbd4c77
KS
1127 *
1128 * Must be called with mmap_sem held for read or write.
1129 *
1130 * get_user_pages walks a process's page tables and takes a reference to
1131 * each struct page that each user address corresponds to at a given
1132 * instant. That is, it takes the page that would be accessed if a user
1133 * thread accesses the given user virtual address at that instant.
1134 *
1135 * This does not guarantee that the page exists in the user mappings when
1136 * get_user_pages returns, and there may even be a completely different
1137 * page there in some cases (eg. if mmapped pagecache has been invalidated
1138 * and subsequently re faulted). However it does guarantee that the page
1139 * won't be freed completely. And mostly callers simply care that the page
1140 * contains data that was valid *at some point in time*. Typically, an IO
1141 * or similar operation cannot guarantee anything stronger anyway because
1142 * locks can't be held over the syscall boundary.
1143 *
9beae1ea
LS
1144 * If gup_flags & FOLL_WRITE == 0, the page must not be written to. If the page
1145 * is written to, set_page_dirty (or set_page_dirty_lock, as appropriate) must
1146 * be called after the page is finished with, and before put_page is called.
4bbd4c77
KS
1147 *
1148 * get_user_pages is typically used for fewer-copy IO operations, to get a
1149 * handle on the memory by some means other than accesses via the user virtual
1150 * addresses. The pages may be submitted for DMA to devices or accessed via
1151 * their kernel linear mapping (via the kmap APIs). Care should be taken to
1152 * use the correct cache flushing APIs.
1153 *
1154 * See also get_user_pages_fast, for performance critical applications.
f0818f47
AA
1155 *
1156 * get_user_pages should be phased out in favor of
1157 * get_user_pages_locked|unlocked or get_user_pages_fast. Nothing
1158 * should use get_user_pages because it cannot pass
1159 * FAULT_FLAG_ALLOW_RETRY to handle_mm_fault.
4bbd4c77 1160 */
1e987790
DH
1161long get_user_pages_remote(struct task_struct *tsk, struct mm_struct *mm,
1162 unsigned long start, unsigned long nr_pages,
9beae1ea 1163 unsigned int gup_flags, struct page **pages,
5b56d49f 1164 struct vm_area_struct **vmas, int *locked)
4bbd4c77 1165{
932f4a63
IW
1166 /*
1167 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
1168 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1169 * vmas. As there are no users of this flag in this call we simply
1170 * disallow this option for now.
1171 */
1172 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1173 return -EINVAL;
1174
859110d7 1175 return __get_user_pages_locked(tsk, mm, start, nr_pages, pages, vmas,
e716712f 1176 locked,
9beae1ea 1177 gup_flags | FOLL_TOUCH | FOLL_REMOTE);
1e987790
DH
1178}
1179EXPORT_SYMBOL(get_user_pages_remote);
1180
d3649f68
CH
1181/**
1182 * populate_vma_page_range() - populate a range of pages in the vma.
1183 * @vma: target vma
1184 * @start: start address
1185 * @end: end address
1186 * @nonblocking:
1187 *
1188 * This takes care of mlocking the pages too if VM_LOCKED is set.
1189 *
1190 * return 0 on success, negative error code on error.
1191 *
1192 * vma->vm_mm->mmap_sem must be held.
1193 *
1194 * If @nonblocking is NULL, it may be held for read or write and will
1195 * be unperturbed.
1196 *
1197 * If @nonblocking is non-NULL, it must held for read only and may be
1198 * released. If it's released, *@nonblocking will be set to 0.
1199 */
1200long populate_vma_page_range(struct vm_area_struct *vma,
1201 unsigned long start, unsigned long end, int *nonblocking)
1202{
1203 struct mm_struct *mm = vma->vm_mm;
1204 unsigned long nr_pages = (end - start) / PAGE_SIZE;
1205 int gup_flags;
1206
1207 VM_BUG_ON(start & ~PAGE_MASK);
1208 VM_BUG_ON(end & ~PAGE_MASK);
1209 VM_BUG_ON_VMA(start < vma->vm_start, vma);
1210 VM_BUG_ON_VMA(end > vma->vm_end, vma);
1211 VM_BUG_ON_MM(!rwsem_is_locked(&mm->mmap_sem), mm);
1212
1213 gup_flags = FOLL_TOUCH | FOLL_POPULATE | FOLL_MLOCK;
1214 if (vma->vm_flags & VM_LOCKONFAULT)
1215 gup_flags &= ~FOLL_POPULATE;
1216 /*
1217 * We want to touch writable mappings with a write fault in order
1218 * to break COW, except for shared mappings because these don't COW
1219 * and we would not want to dirty them for nothing.
1220 */
1221 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
1222 gup_flags |= FOLL_WRITE;
1223
1224 /*
1225 * We want mlock to succeed for regions that have any permissions
1226 * other than PROT_NONE.
1227 */
1228 if (vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC))
1229 gup_flags |= FOLL_FORCE;
1230
1231 /*
1232 * We made sure addr is within a VMA, so the following will
1233 * not result in a stack expansion that recurses back here.
1234 */
1235 return __get_user_pages(current, mm, start, nr_pages, gup_flags,
1236 NULL, NULL, nonblocking);
1237}
1238
1239/*
1240 * __mm_populate - populate and/or mlock pages within a range of address space.
1241 *
1242 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
1243 * flags. VMAs must be already marked with the desired vm_flags, and
1244 * mmap_sem must not be held.
1245 */
1246int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
1247{
1248 struct mm_struct *mm = current->mm;
1249 unsigned long end, nstart, nend;
1250 struct vm_area_struct *vma = NULL;
1251 int locked = 0;
1252 long ret = 0;
1253
1254 end = start + len;
1255
1256 for (nstart = start; nstart < end; nstart = nend) {
1257 /*
1258 * We want to fault in pages for [nstart; end) address range.
1259 * Find first corresponding VMA.
1260 */
1261 if (!locked) {
1262 locked = 1;
1263 down_read(&mm->mmap_sem);
1264 vma = find_vma(mm, nstart);
1265 } else if (nstart >= vma->vm_end)
1266 vma = vma->vm_next;
1267 if (!vma || vma->vm_start >= end)
1268 break;
1269 /*
1270 * Set [nstart; nend) to intersection of desired address
1271 * range with the first VMA. Also, skip undesirable VMA types.
1272 */
1273 nend = min(end, vma->vm_end);
1274 if (vma->vm_flags & (VM_IO | VM_PFNMAP))
1275 continue;
1276 if (nstart < vma->vm_start)
1277 nstart = vma->vm_start;
1278 /*
1279 * Now fault in a range of pages. populate_vma_page_range()
1280 * double checks the vma flags, so that it won't mlock pages
1281 * if the vma was already munlocked.
1282 */
1283 ret = populate_vma_page_range(vma, nstart, nend, &locked);
1284 if (ret < 0) {
1285 if (ignore_errors) {
1286 ret = 0;
1287 continue; /* continue at next VMA */
1288 }
1289 break;
1290 }
1291 nend = nstart + ret * PAGE_SIZE;
1292 ret = 0;
1293 }
1294 if (locked)
1295 up_read(&mm->mmap_sem);
1296 return ret; /* 0 or negative error code */
1297}
1298
1299/**
1300 * get_dump_page() - pin user page in memory while writing it to core dump
1301 * @addr: user address
1302 *
1303 * Returns struct page pointer of user page pinned for dump,
1304 * to be freed afterwards by put_page().
1305 *
1306 * Returns NULL on any kind of failure - a hole must then be inserted into
1307 * the corefile, to preserve alignment with its headers; and also returns
1308 * NULL wherever the ZERO_PAGE, or an anonymous pte_none, has been found -
1309 * allowing a hole to be left in the corefile to save diskspace.
1310 *
1311 * Called without mmap_sem, but after all other threads have been killed.
1312 */
1313#ifdef CONFIG_ELF_CORE
1314struct page *get_dump_page(unsigned long addr)
1315{
1316 struct vm_area_struct *vma;
1317 struct page *page;
1318
1319 if (__get_user_pages(current, current->mm, addr, 1,
1320 FOLL_FORCE | FOLL_DUMP | FOLL_GET, &page, &vma,
1321 NULL) < 1)
1322 return NULL;
1323 flush_cache_page(vma, addr, page_to_pfn(page));
1324 return page;
1325}
1326#endif /* CONFIG_ELF_CORE */
050a9adc
CH
1327#else /* CONFIG_MMU */
1328static long __get_user_pages_locked(struct task_struct *tsk,
1329 struct mm_struct *mm, unsigned long start,
1330 unsigned long nr_pages, struct page **pages,
1331 struct vm_area_struct **vmas, int *locked,
1332 unsigned int foll_flags)
1333{
1334 struct vm_area_struct *vma;
1335 unsigned long vm_flags;
1336 int i;
1337
1338 /* calculate required read or write permissions.
1339 * If FOLL_FORCE is set, we only require the "MAY" flags.
1340 */
1341 vm_flags = (foll_flags & FOLL_WRITE) ?
1342 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
1343 vm_flags &= (foll_flags & FOLL_FORCE) ?
1344 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
1345
1346 for (i = 0; i < nr_pages; i++) {
1347 vma = find_vma(mm, start);
1348 if (!vma)
1349 goto finish_or_fault;
1350
1351 /* protect what we can, including chardevs */
1352 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
1353 !(vm_flags & vma->vm_flags))
1354 goto finish_or_fault;
1355
1356 if (pages) {
1357 pages[i] = virt_to_page(start);
1358 if (pages[i])
1359 get_page(pages[i]);
1360 }
1361 if (vmas)
1362 vmas[i] = vma;
1363 start = (start + PAGE_SIZE) & PAGE_MASK;
1364 }
1365
1366 return i;
1367
1368finish_or_fault:
1369 return i ? : -EFAULT;
1370}
1371#endif /* !CONFIG_MMU */
d3649f68 1372
9a4e9f3b 1373#if defined(CONFIG_FS_DAX) || defined (CONFIG_CMA)
9a4e9f3b
AK
1374static bool check_dax_vmas(struct vm_area_struct **vmas, long nr_pages)
1375{
1376 long i;
1377 struct vm_area_struct *vma_prev = NULL;
1378
1379 for (i = 0; i < nr_pages; i++) {
1380 struct vm_area_struct *vma = vmas[i];
1381
1382 if (vma == vma_prev)
1383 continue;
1384
1385 vma_prev = vma;
1386
1387 if (vma_is_fsdax(vma))
1388 return true;
1389 }
1390 return false;
1391}
9a4e9f3b
AK
1392
1393#ifdef CONFIG_CMA
1394static struct page *new_non_cma_page(struct page *page, unsigned long private)
1395{
1396 /*
1397 * We want to make sure we allocate the new page from the same node
1398 * as the source page.
1399 */
1400 int nid = page_to_nid(page);
1401 /*
1402 * Trying to allocate a page for migration. Ignore allocation
1403 * failure warnings. We don't force __GFP_THISNODE here because
1404 * this node here is the node where we have CMA reservation and
1405 * in some case these nodes will have really less non movable
1406 * allocation memory.
1407 */
1408 gfp_t gfp_mask = GFP_USER | __GFP_NOWARN;
1409
1410 if (PageHighMem(page))
1411 gfp_mask |= __GFP_HIGHMEM;
1412
1413#ifdef CONFIG_HUGETLB_PAGE
1414 if (PageHuge(page)) {
1415 struct hstate *h = page_hstate(page);
1416 /*
1417 * We don't want to dequeue from the pool because pool pages will
1418 * mostly be from the CMA region.
1419 */
1420 return alloc_migrate_huge_page(h, gfp_mask, nid, NULL);
1421 }
1422#endif
1423 if (PageTransHuge(page)) {
1424 struct page *thp;
1425 /*
1426 * ignore allocation failure warnings
1427 */
1428 gfp_t thp_gfpmask = GFP_TRANSHUGE | __GFP_NOWARN;
1429
1430 /*
1431 * Remove the movable mask so that we don't allocate from
1432 * CMA area again.
1433 */
1434 thp_gfpmask &= ~__GFP_MOVABLE;
1435 thp = __alloc_pages_node(nid, thp_gfpmask, HPAGE_PMD_ORDER);
1436 if (!thp)
1437 return NULL;
1438 prep_transhuge_page(thp);
1439 return thp;
1440 }
1441
1442 return __alloc_pages_node(nid, gfp_mask, 0);
1443}
1444
932f4a63
IW
1445static long check_and_migrate_cma_pages(struct task_struct *tsk,
1446 struct mm_struct *mm,
1447 unsigned long start,
1448 unsigned long nr_pages,
9a4e9f3b 1449 struct page **pages,
932f4a63
IW
1450 struct vm_area_struct **vmas,
1451 unsigned int gup_flags)
9a4e9f3b 1452{
aa712399
PL
1453 unsigned long i;
1454 unsigned long step;
9a4e9f3b
AK
1455 bool drain_allow = true;
1456 bool migrate_allow = true;
1457 LIST_HEAD(cma_page_list);
b96cc655 1458 long ret = nr_pages;
9a4e9f3b
AK
1459
1460check_again:
aa712399
PL
1461 for (i = 0; i < nr_pages;) {
1462
1463 struct page *head = compound_head(pages[i]);
1464
1465 /*
1466 * gup may start from a tail page. Advance step by the left
1467 * part.
1468 */
d8c6546b 1469 step = compound_nr(head) - (pages[i] - head);
9a4e9f3b
AK
1470 /*
1471 * If we get a page from the CMA zone, since we are going to
1472 * be pinning these entries, we might as well move them out
1473 * of the CMA zone if possible.
1474 */
aa712399
PL
1475 if (is_migrate_cma_page(head)) {
1476 if (PageHuge(head))
9a4e9f3b 1477 isolate_huge_page(head, &cma_page_list);
aa712399 1478 else {
9a4e9f3b
AK
1479 if (!PageLRU(head) && drain_allow) {
1480 lru_add_drain_all();
1481 drain_allow = false;
1482 }
1483
1484 if (!isolate_lru_page(head)) {
1485 list_add_tail(&head->lru, &cma_page_list);
1486 mod_node_page_state(page_pgdat(head),
1487 NR_ISOLATED_ANON +
1488 page_is_file_cache(head),
1489 hpage_nr_pages(head));
1490 }
1491 }
1492 }
aa712399
PL
1493
1494 i += step;
9a4e9f3b
AK
1495 }
1496
1497 if (!list_empty(&cma_page_list)) {
1498 /*
1499 * drop the above get_user_pages reference.
1500 */
1501 for (i = 0; i < nr_pages; i++)
1502 put_page(pages[i]);
1503
1504 if (migrate_pages(&cma_page_list, new_non_cma_page,
1505 NULL, 0, MIGRATE_SYNC, MR_CONTIG_RANGE)) {
1506 /*
1507 * some of the pages failed migration. Do get_user_pages
1508 * without migration.
1509 */
1510 migrate_allow = false;
1511
1512 if (!list_empty(&cma_page_list))
1513 putback_movable_pages(&cma_page_list);
1514 }
1515 /*
932f4a63
IW
1516 * We did migrate all the pages, Try to get the page references
1517 * again migrating any new CMA pages which we failed to isolate
1518 * earlier.
9a4e9f3b 1519 */
b96cc655 1520 ret = __get_user_pages_locked(tsk, mm, start, nr_pages,
932f4a63
IW
1521 pages, vmas, NULL,
1522 gup_flags);
1523
b96cc655 1524 if ((ret > 0) && migrate_allow) {
1525 nr_pages = ret;
9a4e9f3b
AK
1526 drain_allow = true;
1527 goto check_again;
1528 }
1529 }
1530
b96cc655 1531 return ret;
9a4e9f3b
AK
1532}
1533#else
932f4a63
IW
1534static long check_and_migrate_cma_pages(struct task_struct *tsk,
1535 struct mm_struct *mm,
1536 unsigned long start,
1537 unsigned long nr_pages,
1538 struct page **pages,
1539 struct vm_area_struct **vmas,
1540 unsigned int gup_flags)
9a4e9f3b
AK
1541{
1542 return nr_pages;
1543}
050a9adc 1544#endif /* CONFIG_CMA */
9a4e9f3b 1545
2bb6d283 1546/*
932f4a63
IW
1547 * __gup_longterm_locked() is a wrapper for __get_user_pages_locked which
1548 * allows us to process the FOLL_LONGTERM flag.
2bb6d283 1549 */
932f4a63
IW
1550static long __gup_longterm_locked(struct task_struct *tsk,
1551 struct mm_struct *mm,
1552 unsigned long start,
1553 unsigned long nr_pages,
1554 struct page **pages,
1555 struct vm_area_struct **vmas,
1556 unsigned int gup_flags)
2bb6d283 1557{
932f4a63
IW
1558 struct vm_area_struct **vmas_tmp = vmas;
1559 unsigned long flags = 0;
2bb6d283
DW
1560 long rc, i;
1561
932f4a63
IW
1562 if (gup_flags & FOLL_LONGTERM) {
1563 if (!pages)
1564 return -EINVAL;
1565
1566 if (!vmas_tmp) {
1567 vmas_tmp = kcalloc(nr_pages,
1568 sizeof(struct vm_area_struct *),
1569 GFP_KERNEL);
1570 if (!vmas_tmp)
1571 return -ENOMEM;
1572 }
1573 flags = memalloc_nocma_save();
2bb6d283
DW
1574 }
1575
932f4a63
IW
1576 rc = __get_user_pages_locked(tsk, mm, start, nr_pages, pages,
1577 vmas_tmp, NULL, gup_flags);
2bb6d283 1578
932f4a63
IW
1579 if (gup_flags & FOLL_LONGTERM) {
1580 memalloc_nocma_restore(flags);
1581 if (rc < 0)
1582 goto out;
1583
1584 if (check_dax_vmas(vmas_tmp, rc)) {
1585 for (i = 0; i < rc; i++)
1586 put_page(pages[i]);
1587 rc = -EOPNOTSUPP;
1588 goto out;
1589 }
1590
1591 rc = check_and_migrate_cma_pages(tsk, mm, start, rc, pages,
1592 vmas_tmp, gup_flags);
9a4e9f3b 1593 }
2bb6d283 1594
2bb6d283 1595out:
932f4a63
IW
1596 if (vmas_tmp != vmas)
1597 kfree(vmas_tmp);
2bb6d283
DW
1598 return rc;
1599}
932f4a63
IW
1600#else /* !CONFIG_FS_DAX && !CONFIG_CMA */
1601static __always_inline long __gup_longterm_locked(struct task_struct *tsk,
1602 struct mm_struct *mm,
1603 unsigned long start,
1604 unsigned long nr_pages,
1605 struct page **pages,
1606 struct vm_area_struct **vmas,
1607 unsigned int flags)
1608{
1609 return __get_user_pages_locked(tsk, mm, start, nr_pages, pages, vmas,
1610 NULL, flags);
1611}
1612#endif /* CONFIG_FS_DAX || CONFIG_CMA */
1613
1614/*
1615 * This is the same as get_user_pages_remote(), just with a
1616 * less-flexible calling convention where we assume that the task
1617 * and mm being operated on are the current task's and don't allow
1618 * passing of a locked parameter. We also obviously don't pass
1619 * FOLL_REMOTE in here.
1620 */
1621long get_user_pages(unsigned long start, unsigned long nr_pages,
1622 unsigned int gup_flags, struct page **pages,
1623 struct vm_area_struct **vmas)
1624{
1625 return __gup_longterm_locked(current, current->mm, start, nr_pages,
1626 pages, vmas, gup_flags | FOLL_TOUCH);
1627}
1628EXPORT_SYMBOL(get_user_pages);
2bb6d283 1629
d3649f68
CH
1630/*
1631 * We can leverage the VM_FAULT_RETRY functionality in the page fault
1632 * paths better by using either get_user_pages_locked() or
1633 * get_user_pages_unlocked().
acc3c8d1 1634 *
d3649f68 1635 * get_user_pages_locked() is suitable to replace the form:
acc3c8d1 1636 *
d3649f68
CH
1637 * down_read(&mm->mmap_sem);
1638 * do_something()
1639 * get_user_pages(tsk, mm, ..., pages, NULL);
1640 * up_read(&mm->mmap_sem);
acc3c8d1 1641 *
d3649f68 1642 * to:
acc3c8d1 1643 *
d3649f68
CH
1644 * int locked = 1;
1645 * down_read(&mm->mmap_sem);
1646 * do_something()
1647 * get_user_pages_locked(tsk, mm, ..., pages, &locked);
1648 * if (locked)
1649 * up_read(&mm->mmap_sem);
acc3c8d1 1650 */
d3649f68
CH
1651long get_user_pages_locked(unsigned long start, unsigned long nr_pages,
1652 unsigned int gup_flags, struct page **pages,
1653 int *locked)
acc3c8d1 1654{
acc3c8d1 1655 /*
d3649f68
CH
1656 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
1657 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1658 * vmas. As there are no users of this flag in this call we simply
1659 * disallow this option for now.
acc3c8d1 1660 */
d3649f68
CH
1661 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1662 return -EINVAL;
acc3c8d1 1663
d3649f68
CH
1664 return __get_user_pages_locked(current, current->mm, start, nr_pages,
1665 pages, NULL, locked,
1666 gup_flags | FOLL_TOUCH);
acc3c8d1 1667}
d3649f68 1668EXPORT_SYMBOL(get_user_pages_locked);
acc3c8d1
KS
1669
1670/*
d3649f68 1671 * get_user_pages_unlocked() is suitable to replace the form:
acc3c8d1 1672 *
d3649f68
CH
1673 * down_read(&mm->mmap_sem);
1674 * get_user_pages(tsk, mm, ..., pages, NULL);
1675 * up_read(&mm->mmap_sem);
1676 *
1677 * with:
1678 *
1679 * get_user_pages_unlocked(tsk, mm, ..., pages);
1680 *
1681 * It is functionally equivalent to get_user_pages_fast so
1682 * get_user_pages_fast should be used instead if specific gup_flags
1683 * (e.g. FOLL_FORCE) are not required.
acc3c8d1 1684 */
d3649f68
CH
1685long get_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
1686 struct page **pages, unsigned int gup_flags)
acc3c8d1
KS
1687{
1688 struct mm_struct *mm = current->mm;
d3649f68
CH
1689 int locked = 1;
1690 long ret;
acc3c8d1 1691
d3649f68
CH
1692 /*
1693 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
1694 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1695 * vmas. As there are no users of this flag in this call we simply
1696 * disallow this option for now.
1697 */
1698 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1699 return -EINVAL;
acc3c8d1 1700
d3649f68
CH
1701 down_read(&mm->mmap_sem);
1702 ret = __get_user_pages_locked(current, mm, start, nr_pages, pages, NULL,
1703 &locked, gup_flags | FOLL_TOUCH);
acc3c8d1
KS
1704 if (locked)
1705 up_read(&mm->mmap_sem);
d3649f68 1706 return ret;
4bbd4c77 1707}
d3649f68 1708EXPORT_SYMBOL(get_user_pages_unlocked);
2667f50e
SC
1709
1710/*
67a929e0 1711 * Fast GUP
2667f50e
SC
1712 *
1713 * get_user_pages_fast attempts to pin user pages by walking the page
1714 * tables directly and avoids taking locks. Thus the walker needs to be
1715 * protected from page table pages being freed from under it, and should
1716 * block any THP splits.
1717 *
1718 * One way to achieve this is to have the walker disable interrupts, and
1719 * rely on IPIs from the TLB flushing code blocking before the page table
1720 * pages are freed. This is unsuitable for architectures that do not need
1721 * to broadcast an IPI when invalidating TLBs.
1722 *
1723 * Another way to achieve this is to batch up page table containing pages
1724 * belonging to more than one mm_user, then rcu_sched a callback to free those
1725 * pages. Disabling interrupts will allow the fast_gup walker to both block
1726 * the rcu_sched callback, and an IPI that we broadcast for splitting THPs
1727 * (which is a relatively rare event). The code below adopts this strategy.
1728 *
1729 * Before activating this code, please be aware that the following assumptions
1730 * are currently made:
1731 *
e585513b
KS
1732 * *) Either HAVE_RCU_TABLE_FREE is enabled, and tlb_remove_table() is used to
1733 * free pages containing page tables or TLB flushing requires IPI broadcast.
2667f50e 1734 *
2667f50e
SC
1735 * *) ptes can be read atomically by the architecture.
1736 *
1737 * *) access_ok is sufficient to validate userspace address ranges.
1738 *
1739 * The last two assumptions can be relaxed by the addition of helper functions.
1740 *
1741 * This code is based heavily on the PowerPC implementation by Nick Piggin.
1742 */
67a929e0 1743#ifdef CONFIG_HAVE_FAST_GUP
39656e83
CH
1744#ifdef CONFIG_GUP_GET_PTE_LOW_HIGH
1745/*
1746 * WARNING: only to be used in the get_user_pages_fast() implementation.
1747 *
1748 * With get_user_pages_fast(), we walk down the pagetables without taking any
1749 * locks. For this we would like to load the pointers atomically, but sometimes
1750 * that is not possible (e.g. without expensive cmpxchg8b on x86_32 PAE). What
1751 * we do have is the guarantee that a PTE will only either go from not present
1752 * to present, or present to not present or both -- it will not switch to a
1753 * completely different present page without a TLB flush in between; something
1754 * that we are blocking by holding interrupts off.
1755 *
1756 * Setting ptes from not present to present goes:
1757 *
1758 * ptep->pte_high = h;
1759 * smp_wmb();
1760 * ptep->pte_low = l;
1761 *
1762 * And present to not present goes:
1763 *
1764 * ptep->pte_low = 0;
1765 * smp_wmb();
1766 * ptep->pte_high = 0;
1767 *
1768 * We must ensure here that the load of pte_low sees 'l' IFF pte_high sees 'h'.
1769 * We load pte_high *after* loading pte_low, which ensures we don't see an older
1770 * value of pte_high. *Then* we recheck pte_low, which ensures that we haven't
1771 * picked up a changed pte high. We might have gotten rubbish values from
1772 * pte_low and pte_high, but we are guaranteed that pte_low will not have the
1773 * present bit set *unless* it is 'l'. Because get_user_pages_fast() only
1774 * operates on present ptes we're safe.
1775 */
1776static inline pte_t gup_get_pte(pte_t *ptep)
1777{
1778 pte_t pte;
2667f50e 1779
39656e83
CH
1780 do {
1781 pte.pte_low = ptep->pte_low;
1782 smp_rmb();
1783 pte.pte_high = ptep->pte_high;
1784 smp_rmb();
1785 } while (unlikely(pte.pte_low != ptep->pte_low));
1786
1787 return pte;
1788}
1789#else /* CONFIG_GUP_GET_PTE_LOW_HIGH */
0005d20b 1790/*
39656e83 1791 * We require that the PTE can be read atomically.
0005d20b
KS
1792 */
1793static inline pte_t gup_get_pte(pte_t *ptep)
1794{
1795 return READ_ONCE(*ptep);
1796}
39656e83 1797#endif /* CONFIG_GUP_GET_PTE_LOW_HIGH */
0005d20b 1798
790c7369
GR
1799static void __maybe_unused undo_dev_pagemap(int *nr, int nr_start,
1800 struct page **pages)
b59f65fa
KS
1801{
1802 while ((*nr) - nr_start) {
1803 struct page *page = pages[--(*nr)];
1804
1805 ClearPageReferenced(page);
1806 put_page(page);
1807 }
1808}
1809
8fde12ca
LT
1810/*
1811 * Return the compund head page with ref appropriately incremented,
1812 * or NULL if that failed.
1813 */
1814static inline struct page *try_get_compound_head(struct page *page, int refs)
1815{
1816 struct page *head = compound_head(page);
1817 if (WARN_ON_ONCE(page_ref_count(head) < 0))
1818 return NULL;
1819 if (unlikely(!page_cache_add_speculative(head, refs)))
1820 return NULL;
1821 return head;
1822}
1823
3010a5ea 1824#ifdef CONFIG_ARCH_HAS_PTE_SPECIAL
2667f50e 1825static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
b798bec4 1826 unsigned int flags, struct page **pages, int *nr)
2667f50e 1827{
b59f65fa
KS
1828 struct dev_pagemap *pgmap = NULL;
1829 int nr_start = *nr, ret = 0;
2667f50e 1830 pte_t *ptep, *ptem;
2667f50e
SC
1831
1832 ptem = ptep = pte_offset_map(&pmd, addr);
1833 do {
0005d20b 1834 pte_t pte = gup_get_pte(ptep);
7aef4172 1835 struct page *head, *page;
2667f50e
SC
1836
1837 /*
1838 * Similar to the PMD case below, NUMA hinting must take slow
8a0516ed 1839 * path using the pte_protnone check.
2667f50e 1840 */
e7884f8e
KS
1841 if (pte_protnone(pte))
1842 goto pte_unmap;
1843
b798bec4 1844 if (!pte_access_permitted(pte, flags & FOLL_WRITE))
e7884f8e
KS
1845 goto pte_unmap;
1846
b59f65fa 1847 if (pte_devmap(pte)) {
7af75561
IW
1848 if (unlikely(flags & FOLL_LONGTERM))
1849 goto pte_unmap;
1850
b59f65fa
KS
1851 pgmap = get_dev_pagemap(pte_pfn(pte), pgmap);
1852 if (unlikely(!pgmap)) {
1853 undo_dev_pagemap(nr, nr_start, pages);
1854 goto pte_unmap;
1855 }
1856 } else if (pte_special(pte))
2667f50e
SC
1857 goto pte_unmap;
1858
1859 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
1860 page = pte_page(pte);
1861
8fde12ca
LT
1862 head = try_get_compound_head(page, 1);
1863 if (!head)
2667f50e
SC
1864 goto pte_unmap;
1865
1866 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
7aef4172 1867 put_page(head);
2667f50e
SC
1868 goto pte_unmap;
1869 }
1870
7aef4172 1871 VM_BUG_ON_PAGE(compound_head(page) != head, page);
e9348053
KS
1872
1873 SetPageReferenced(page);
2667f50e
SC
1874 pages[*nr] = page;
1875 (*nr)++;
1876
1877 } while (ptep++, addr += PAGE_SIZE, addr != end);
1878
1879 ret = 1;
1880
1881pte_unmap:
832d7aa0
CH
1882 if (pgmap)
1883 put_dev_pagemap(pgmap);
2667f50e
SC
1884 pte_unmap(ptem);
1885 return ret;
1886}
1887#else
1888
1889/*
1890 * If we can't determine whether or not a pte is special, then fail immediately
1891 * for ptes. Note, we can still pin HugeTLB and THP as these are guaranteed not
1892 * to be special.
1893 *
1894 * For a futex to be placed on a THP tail page, get_futex_key requires a
1895 * __get_user_pages_fast implementation that can pin pages. Thus it's still
1896 * useful to have gup_huge_pmd even if we can't operate on ptes.
1897 */
1898static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
b798bec4 1899 unsigned int flags, struct page **pages, int *nr)
2667f50e
SC
1900{
1901 return 0;
1902}
3010a5ea 1903#endif /* CONFIG_ARCH_HAS_PTE_SPECIAL */
2667f50e 1904
17596731 1905#if defined(CONFIG_ARCH_HAS_PTE_DEVMAP) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
b59f65fa
KS
1906static int __gup_device_huge(unsigned long pfn, unsigned long addr,
1907 unsigned long end, struct page **pages, int *nr)
1908{
1909 int nr_start = *nr;
1910 struct dev_pagemap *pgmap = NULL;
1911
1912 do {
1913 struct page *page = pfn_to_page(pfn);
1914
1915 pgmap = get_dev_pagemap(pfn, pgmap);
1916 if (unlikely(!pgmap)) {
1917 undo_dev_pagemap(nr, nr_start, pages);
1918 return 0;
1919 }
1920 SetPageReferenced(page);
1921 pages[*nr] = page;
1922 get_page(page);
b59f65fa
KS
1923 (*nr)++;
1924 pfn++;
1925 } while (addr += PAGE_SIZE, addr != end);
832d7aa0
CH
1926
1927 if (pgmap)
1928 put_dev_pagemap(pgmap);
b59f65fa
KS
1929 return 1;
1930}
1931
a9b6de77 1932static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
b59f65fa
KS
1933 unsigned long end, struct page **pages, int *nr)
1934{
1935 unsigned long fault_pfn;
a9b6de77
DW
1936 int nr_start = *nr;
1937
1938 fault_pfn = pmd_pfn(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
1939 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1940 return 0;
b59f65fa 1941
a9b6de77
DW
1942 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
1943 undo_dev_pagemap(nr, nr_start, pages);
1944 return 0;
1945 }
1946 return 1;
b59f65fa
KS
1947}
1948
a9b6de77 1949static int __gup_device_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
b59f65fa
KS
1950 unsigned long end, struct page **pages, int *nr)
1951{
1952 unsigned long fault_pfn;
a9b6de77
DW
1953 int nr_start = *nr;
1954
1955 fault_pfn = pud_pfn(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
1956 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1957 return 0;
b59f65fa 1958
a9b6de77
DW
1959 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
1960 undo_dev_pagemap(nr, nr_start, pages);
1961 return 0;
1962 }
1963 return 1;
b59f65fa
KS
1964}
1965#else
a9b6de77 1966static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
b59f65fa
KS
1967 unsigned long end, struct page **pages, int *nr)
1968{
1969 BUILD_BUG();
1970 return 0;
1971}
1972
a9b6de77 1973static int __gup_device_huge_pud(pud_t pud, pud_t *pudp, unsigned long addr,
b59f65fa
KS
1974 unsigned long end, struct page **pages, int *nr)
1975{
1976 BUILD_BUG();
1977 return 0;
1978}
1979#endif
1980
cbd34da7
CH
1981#ifdef CONFIG_ARCH_HAS_HUGEPD
1982static unsigned long hugepte_addr_end(unsigned long addr, unsigned long end,
1983 unsigned long sz)
1984{
1985 unsigned long __boundary = (addr + sz) & ~(sz-1);
1986 return (__boundary - 1 < end - 1) ? __boundary : end;
1987}
1988
1989static int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long addr,
0cd22afd
JH
1990 unsigned long end, unsigned int flags,
1991 struct page **pages, int *nr)
cbd34da7
CH
1992{
1993 unsigned long pte_end;
1994 struct page *head, *page;
1995 pte_t pte;
1996 int refs;
1997
1998 pte_end = (addr + sz) & ~(sz-1);
1999 if (pte_end < end)
2000 end = pte_end;
2001
2002 pte = READ_ONCE(*ptep);
2003
0cd22afd 2004 if (!pte_access_permitted(pte, flags & FOLL_WRITE))
cbd34da7
CH
2005 return 0;
2006
2007 /* hugepages are never "special" */
2008 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
2009
2010 refs = 0;
2011 head = pte_page(pte);
2012
2013 page = head + ((addr & (sz-1)) >> PAGE_SHIFT);
2014 do {
2015 VM_BUG_ON(compound_head(page) != head);
2016 pages[*nr] = page;
2017 (*nr)++;
2018 page++;
2019 refs++;
2020 } while (addr += PAGE_SIZE, addr != end);
2021
01a36916
CH
2022 head = try_get_compound_head(head, refs);
2023 if (!head) {
cbd34da7
CH
2024 *nr -= refs;
2025 return 0;
2026 }
2027
2028 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
2029 /* Could be optimized better */
2030 *nr -= refs;
2031 while (refs--)
2032 put_page(head);
2033 return 0;
2034 }
2035
520b4a44 2036 SetPageReferenced(head);
cbd34da7
CH
2037 return 1;
2038}
2039
2040static int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
0cd22afd 2041 unsigned int pdshift, unsigned long end, unsigned int flags,
cbd34da7
CH
2042 struct page **pages, int *nr)
2043{
2044 pte_t *ptep;
2045 unsigned long sz = 1UL << hugepd_shift(hugepd);
2046 unsigned long next;
2047
2048 ptep = hugepte_offset(hugepd, addr, pdshift);
2049 do {
2050 next = hugepte_addr_end(addr, end, sz);
0cd22afd 2051 if (!gup_hugepte(ptep, sz, addr, end, flags, pages, nr))
cbd34da7
CH
2052 return 0;
2053 } while (ptep++, addr = next, addr != end);
2054
2055 return 1;
2056}
2057#else
2058static inline int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
0cd22afd 2059 unsigned int pdshift, unsigned long end, unsigned int flags,
cbd34da7
CH
2060 struct page **pages, int *nr)
2061{
2062 return 0;
2063}
2064#endif /* CONFIG_ARCH_HAS_HUGEPD */
2065
2667f50e 2066static int gup_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
0cd22afd
JH
2067 unsigned long end, unsigned int flags,
2068 struct page **pages, int *nr)
2667f50e 2069{
ddc58f27 2070 struct page *head, *page;
2667f50e
SC
2071 int refs;
2072
b798bec4 2073 if (!pmd_access_permitted(orig, flags & FOLL_WRITE))
2667f50e
SC
2074 return 0;
2075
7af75561
IW
2076 if (pmd_devmap(orig)) {
2077 if (unlikely(flags & FOLL_LONGTERM))
2078 return 0;
a9b6de77 2079 return __gup_device_huge_pmd(orig, pmdp, addr, end, pages, nr);
7af75561 2080 }
b59f65fa 2081
2667f50e 2082 refs = 0;
d63206ee 2083 page = pmd_page(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
2667f50e 2084 do {
2667f50e
SC
2085 pages[*nr] = page;
2086 (*nr)++;
2087 page++;
2088 refs++;
2089 } while (addr += PAGE_SIZE, addr != end);
2090
8fde12ca
LT
2091 head = try_get_compound_head(pmd_page(orig), refs);
2092 if (!head) {
2667f50e
SC
2093 *nr -= refs;
2094 return 0;
2095 }
2096
2097 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
2098 *nr -= refs;
2099 while (refs--)
2100 put_page(head);
2101 return 0;
2102 }
2103
e9348053 2104 SetPageReferenced(head);
2667f50e
SC
2105 return 1;
2106}
2107
2108static int gup_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
b798bec4 2109 unsigned long end, unsigned int flags, struct page **pages, int *nr)
2667f50e 2110{
ddc58f27 2111 struct page *head, *page;
2667f50e
SC
2112 int refs;
2113
b798bec4 2114 if (!pud_access_permitted(orig, flags & FOLL_WRITE))
2667f50e
SC
2115 return 0;
2116
7af75561
IW
2117 if (pud_devmap(orig)) {
2118 if (unlikely(flags & FOLL_LONGTERM))
2119 return 0;
a9b6de77 2120 return __gup_device_huge_pud(orig, pudp, addr, end, pages, nr);
7af75561 2121 }
b59f65fa 2122
2667f50e 2123 refs = 0;
d63206ee 2124 page = pud_page(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
2667f50e 2125 do {
2667f50e
SC
2126 pages[*nr] = page;
2127 (*nr)++;
2128 page++;
2129 refs++;
2130 } while (addr += PAGE_SIZE, addr != end);
2131
8fde12ca
LT
2132 head = try_get_compound_head(pud_page(orig), refs);
2133 if (!head) {
2667f50e
SC
2134 *nr -= refs;
2135 return 0;
2136 }
2137
2138 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
2139 *nr -= refs;
2140 while (refs--)
2141 put_page(head);
2142 return 0;
2143 }
2144
e9348053 2145 SetPageReferenced(head);
2667f50e
SC
2146 return 1;
2147}
2148
f30c59e9 2149static int gup_huge_pgd(pgd_t orig, pgd_t *pgdp, unsigned long addr,
b798bec4 2150 unsigned long end, unsigned int flags,
f30c59e9
AK
2151 struct page **pages, int *nr)
2152{
2153 int refs;
ddc58f27 2154 struct page *head, *page;
f30c59e9 2155
b798bec4 2156 if (!pgd_access_permitted(orig, flags & FOLL_WRITE))
f30c59e9
AK
2157 return 0;
2158
b59f65fa 2159 BUILD_BUG_ON(pgd_devmap(orig));
f30c59e9 2160 refs = 0;
d63206ee 2161 page = pgd_page(orig) + ((addr & ~PGDIR_MASK) >> PAGE_SHIFT);
f30c59e9 2162 do {
f30c59e9
AK
2163 pages[*nr] = page;
2164 (*nr)++;
2165 page++;
2166 refs++;
2167 } while (addr += PAGE_SIZE, addr != end);
2168
8fde12ca
LT
2169 head = try_get_compound_head(pgd_page(orig), refs);
2170 if (!head) {
f30c59e9
AK
2171 *nr -= refs;
2172 return 0;
2173 }
2174
2175 if (unlikely(pgd_val(orig) != pgd_val(*pgdp))) {
2176 *nr -= refs;
2177 while (refs--)
2178 put_page(head);
2179 return 0;
2180 }
2181
e9348053 2182 SetPageReferenced(head);
f30c59e9
AK
2183 return 1;
2184}
2185
2667f50e 2186static int gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end,
b798bec4 2187 unsigned int flags, struct page **pages, int *nr)
2667f50e
SC
2188{
2189 unsigned long next;
2190 pmd_t *pmdp;
2191
2192 pmdp = pmd_offset(&pud, addr);
2193 do {
38c5ce93 2194 pmd_t pmd = READ_ONCE(*pmdp);
2667f50e
SC
2195
2196 next = pmd_addr_end(addr, end);
84c3fc4e 2197 if (!pmd_present(pmd))
2667f50e
SC
2198 return 0;
2199
414fd080
YZ
2200 if (unlikely(pmd_trans_huge(pmd) || pmd_huge(pmd) ||
2201 pmd_devmap(pmd))) {
2667f50e
SC
2202 /*
2203 * NUMA hinting faults need to be handled in the GUP
2204 * slowpath for accounting purposes and so that they
2205 * can be serialised against THP migration.
2206 */
8a0516ed 2207 if (pmd_protnone(pmd))
2667f50e
SC
2208 return 0;
2209
b798bec4 2210 if (!gup_huge_pmd(pmd, pmdp, addr, next, flags,
2667f50e
SC
2211 pages, nr))
2212 return 0;
2213
f30c59e9
AK
2214 } else if (unlikely(is_hugepd(__hugepd(pmd_val(pmd))))) {
2215 /*
2216 * architecture have different format for hugetlbfs
2217 * pmd format and THP pmd format
2218 */
2219 if (!gup_huge_pd(__hugepd(pmd_val(pmd)), addr,
b798bec4 2220 PMD_SHIFT, next, flags, pages, nr))
f30c59e9 2221 return 0;
b798bec4 2222 } else if (!gup_pte_range(pmd, addr, next, flags, pages, nr))
2923117b 2223 return 0;
2667f50e
SC
2224 } while (pmdp++, addr = next, addr != end);
2225
2226 return 1;
2227}
2228
c2febafc 2229static int gup_pud_range(p4d_t p4d, unsigned long addr, unsigned long end,
b798bec4 2230 unsigned int flags, struct page **pages, int *nr)
2667f50e
SC
2231{
2232 unsigned long next;
2233 pud_t *pudp;
2234
c2febafc 2235 pudp = pud_offset(&p4d, addr);
2667f50e 2236 do {
e37c6982 2237 pud_t pud = READ_ONCE(*pudp);
2667f50e
SC
2238
2239 next = pud_addr_end(addr, end);
15494520 2240 if (unlikely(!pud_present(pud)))
2667f50e 2241 return 0;
f30c59e9 2242 if (unlikely(pud_huge(pud))) {
b798bec4 2243 if (!gup_huge_pud(pud, pudp, addr, next, flags,
f30c59e9
AK
2244 pages, nr))
2245 return 0;
2246 } else if (unlikely(is_hugepd(__hugepd(pud_val(pud))))) {
2247 if (!gup_huge_pd(__hugepd(pud_val(pud)), addr,
b798bec4 2248 PUD_SHIFT, next, flags, pages, nr))
2667f50e 2249 return 0;
b798bec4 2250 } else if (!gup_pmd_range(pud, addr, next, flags, pages, nr))
2667f50e
SC
2251 return 0;
2252 } while (pudp++, addr = next, addr != end);
2253
2254 return 1;
2255}
2256
c2febafc 2257static int gup_p4d_range(pgd_t pgd, unsigned long addr, unsigned long end,
b798bec4 2258 unsigned int flags, struct page **pages, int *nr)
c2febafc
KS
2259{
2260 unsigned long next;
2261 p4d_t *p4dp;
2262
2263 p4dp = p4d_offset(&pgd, addr);
2264 do {
2265 p4d_t p4d = READ_ONCE(*p4dp);
2266
2267 next = p4d_addr_end(addr, end);
2268 if (p4d_none(p4d))
2269 return 0;
2270 BUILD_BUG_ON(p4d_huge(p4d));
2271 if (unlikely(is_hugepd(__hugepd(p4d_val(p4d))))) {
2272 if (!gup_huge_pd(__hugepd(p4d_val(p4d)), addr,
b798bec4 2273 P4D_SHIFT, next, flags, pages, nr))
c2febafc 2274 return 0;
b798bec4 2275 } else if (!gup_pud_range(p4d, addr, next, flags, pages, nr))
c2febafc
KS
2276 return 0;
2277 } while (p4dp++, addr = next, addr != end);
2278
2279 return 1;
2280}
2281
5b65c467 2282static void gup_pgd_range(unsigned long addr, unsigned long end,
b798bec4 2283 unsigned int flags, struct page **pages, int *nr)
5b65c467
KS
2284{
2285 unsigned long next;
2286 pgd_t *pgdp;
2287
2288 pgdp = pgd_offset(current->mm, addr);
2289 do {
2290 pgd_t pgd = READ_ONCE(*pgdp);
2291
2292 next = pgd_addr_end(addr, end);
2293 if (pgd_none(pgd))
2294 return;
2295 if (unlikely(pgd_huge(pgd))) {
b798bec4 2296 if (!gup_huge_pgd(pgd, pgdp, addr, next, flags,
5b65c467
KS
2297 pages, nr))
2298 return;
2299 } else if (unlikely(is_hugepd(__hugepd(pgd_val(pgd))))) {
2300 if (!gup_huge_pd(__hugepd(pgd_val(pgd)), addr,
b798bec4 2301 PGDIR_SHIFT, next, flags, pages, nr))
5b65c467 2302 return;
b798bec4 2303 } else if (!gup_p4d_range(pgd, addr, next, flags, pages, nr))
5b65c467
KS
2304 return;
2305 } while (pgdp++, addr = next, addr != end);
2306}
050a9adc
CH
2307#else
2308static inline void gup_pgd_range(unsigned long addr, unsigned long end,
2309 unsigned int flags, struct page **pages, int *nr)
2310{
2311}
2312#endif /* CONFIG_HAVE_FAST_GUP */
5b65c467
KS
2313
2314#ifndef gup_fast_permitted
2315/*
2316 * Check if it's allowed to use __get_user_pages_fast() for the range, or
2317 * we need to fall back to the slow version:
2318 */
26f4c328 2319static bool gup_fast_permitted(unsigned long start, unsigned long end)
5b65c467 2320{
26f4c328 2321 return true;
5b65c467
KS
2322}
2323#endif
2324
2667f50e
SC
2325/*
2326 * Like get_user_pages_fast() except it's IRQ-safe in that it won't fall back to
d0811078
MT
2327 * the regular GUP.
2328 * Note a difference with get_user_pages_fast: this always returns the
2329 * number of pages pinned, 0 if no pages were pinned.
050a9adc
CH
2330 *
2331 * If the architecture does not support this function, simply return with no
2332 * pages pinned.
2667f50e
SC
2333 */
2334int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
2335 struct page **pages)
2336{
d4faa402 2337 unsigned long len, end;
5b65c467 2338 unsigned long flags;
2667f50e
SC
2339 int nr = 0;
2340
f455c854 2341 start = untagged_addr(start) & PAGE_MASK;
2667f50e
SC
2342 len = (unsigned long) nr_pages << PAGE_SHIFT;
2343 end = start + len;
2344
26f4c328
CH
2345 if (end <= start)
2346 return 0;
96d4f267 2347 if (unlikely(!access_ok((void __user *)start, len)))
2667f50e
SC
2348 return 0;
2349
2350 /*
2351 * Disable interrupts. We use the nested form as we can already have
2352 * interrupts disabled by get_futex_key.
2353 *
2354 * With interrupts disabled, we block page table pages from being
2ebe8228
FW
2355 * freed from under us. See struct mmu_table_batch comments in
2356 * include/asm-generic/tlb.h for more details.
2667f50e
SC
2357 *
2358 * We do not adopt an rcu_read_lock(.) here as we also want to
2359 * block IPIs that come from THPs splitting.
2360 */
2361
050a9adc
CH
2362 if (IS_ENABLED(CONFIG_HAVE_FAST_GUP) &&
2363 gup_fast_permitted(start, end)) {
5b65c467 2364 local_irq_save(flags);
b798bec4 2365 gup_pgd_range(start, end, write ? FOLL_WRITE : 0, pages, &nr);
5b65c467
KS
2366 local_irq_restore(flags);
2367 }
2667f50e
SC
2368
2369 return nr;
2370}
050a9adc 2371EXPORT_SYMBOL_GPL(__get_user_pages_fast);
2667f50e 2372
7af75561
IW
2373static int __gup_longterm_unlocked(unsigned long start, int nr_pages,
2374 unsigned int gup_flags, struct page **pages)
2375{
2376 int ret;
2377
2378 /*
2379 * FIXME: FOLL_LONGTERM does not work with
2380 * get_user_pages_unlocked() (see comments in that function)
2381 */
2382 if (gup_flags & FOLL_LONGTERM) {
2383 down_read(&current->mm->mmap_sem);
2384 ret = __gup_longterm_locked(current, current->mm,
2385 start, nr_pages,
2386 pages, NULL, gup_flags);
2387 up_read(&current->mm->mmap_sem);
2388 } else {
2389 ret = get_user_pages_unlocked(start, nr_pages,
2390 pages, gup_flags);
2391 }
2392
2393 return ret;
2394}
2395
2667f50e
SC
2396/**
2397 * get_user_pages_fast() - pin user pages in memory
2398 * @start: starting user address
2399 * @nr_pages: number of pages from start to pin
73b0140b 2400 * @gup_flags: flags modifying pin behaviour
2667f50e
SC
2401 * @pages: array that receives pointers to the pages pinned.
2402 * Should be at least nr_pages long.
2403 *
2404 * Attempt to pin user pages in memory without taking mm->mmap_sem.
2405 * If not successful, it will fall back to taking the lock and
2406 * calling get_user_pages().
2407 *
2408 * Returns number of pages pinned. This may be fewer than the number
2409 * requested. If nr_pages is 0 or negative, returns 0. If no pages
2410 * were pinned, returns -errno.
2411 */
73b0140b
IW
2412int get_user_pages_fast(unsigned long start, int nr_pages,
2413 unsigned int gup_flags, struct page **pages)
2667f50e 2414{
5b65c467 2415 unsigned long addr, len, end;
73e10a61 2416 int nr = 0, ret = 0;
2667f50e 2417
817be129
CH
2418 if (WARN_ON_ONCE(gup_flags & ~(FOLL_WRITE | FOLL_LONGTERM)))
2419 return -EINVAL;
2420
f455c854 2421 start = untagged_addr(start) & PAGE_MASK;
5b65c467
KS
2422 addr = start;
2423 len = (unsigned long) nr_pages << PAGE_SHIFT;
2424 end = start + len;
2425
26f4c328 2426 if (end <= start)
c61611f7 2427 return 0;
96d4f267 2428 if (unlikely(!access_ok((void __user *)start, len)))
c61611f7 2429 return -EFAULT;
73e10a61 2430
050a9adc
CH
2431 if (IS_ENABLED(CONFIG_HAVE_FAST_GUP) &&
2432 gup_fast_permitted(start, end)) {
5b65c467 2433 local_irq_disable();
73b0140b 2434 gup_pgd_range(addr, end, gup_flags, pages, &nr);
5b65c467 2435 local_irq_enable();
73e10a61
KS
2436 ret = nr;
2437 }
2667f50e
SC
2438
2439 if (nr < nr_pages) {
2440 /* Try to get the remaining pages with get_user_pages */
2441 start += nr << PAGE_SHIFT;
2442 pages += nr;
2443
7af75561
IW
2444 ret = __gup_longterm_unlocked(start, nr_pages - nr,
2445 gup_flags, pages);
2667f50e
SC
2446
2447 /* Have to be a bit careful with return values */
2448 if (nr > 0) {
2449 if (ret < 0)
2450 ret = nr;
2451 else
2452 ret += nr;
2453 }
2454 }
2455
2456 return ret;
2457}
050a9adc 2458EXPORT_SYMBOL_GPL(get_user_pages_fast);