blob: f3088d25bd926278c439726359567dbd95e3c861 [file] [log] [blame]
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001#include <linux/kernel.h>
2#include <linux/errno.h>
3#include <linux/err.h>
4#include <linux/spinlock.h>
5
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07006#include <linux/mm.h>
Dan Williams3565fce2016-01-15 16:56:55 -08007#include <linux/memremap.h>
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07008#include <linux/pagemap.h>
9#include <linux/rmap.h>
10#include <linux/swap.h>
11#include <linux/swapops.h>
12
Ingo Molnar174cd4b2017-02-02 19:15:33 +010013#include <linux/sched/signal.h>
Steve Capper2667f502014-10-09 15:29:14 -070014#include <linux/rwsem.h>
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +053015#include <linux/hugetlb.h>
Kirill A. Shutemov1027e442015-09-04 15:47:55 -070016
Dave Hansen33a709b2016-02-12 13:02:19 -080017#include <asm/mmu_context.h>
Steve Capper2667f502014-10-09 15:29:14 -070018#include <asm/pgtable.h>
Kirill A. Shutemov1027e442015-09-04 15:47:55 -070019#include <asm/tlbflush.h>
Steve Capper2667f502014-10-09 15:29:14 -070020
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070021#include "internal.h"
22
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070023static struct page *no_page_table(struct vm_area_struct *vma,
24 unsigned int flags)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070025{
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070026 /*
27 * When core dumping an enormous anonymous area that nobody
28 * has touched so far, we don't want to allocate unnecessary pages or
29 * page tables. Return error instead of NULL to skip handle_mm_fault,
30 * then get_dump_page() will return NULL to leave a hole in the dump.
31 * But we can only make this optimization where a hole would surely
32 * be zero-filled if handle_mm_fault() actually did handle it.
33 */
34 if ((flags & FOLL_DUMP) && (!vma->vm_ops || !vma->vm_ops->fault))
35 return ERR_PTR(-EFAULT);
36 return NULL;
37}
38
Kirill A. Shutemov1027e442015-09-04 15:47:55 -070039static int follow_pfn_pte(struct vm_area_struct *vma, unsigned long address,
40 pte_t *pte, unsigned int flags)
41{
42 /* No page to get reference */
43 if (flags & FOLL_GET)
44 return -EFAULT;
45
46 if (flags & FOLL_TOUCH) {
47 pte_t entry = *pte;
48
49 if (flags & FOLL_WRITE)
50 entry = pte_mkdirty(entry);
51 entry = pte_mkyoung(entry);
52
53 if (!pte_same(*pte, entry)) {
54 set_pte_at(vma->vm_mm, address, pte, entry);
55 update_mmu_cache(vma, address, pte);
56 }
57 }
58
59 /* Proper page table entry exists, but no corresponding struct page */
60 return -EEXIST;
61}
62
Linus Torvalds19be0ea2016-10-13 13:07:36 -070063/*
64 * FOLL_FORCE can write to even unwritable pte's, but only
65 * after we've gone through a COW cycle and they are dirty.
66 */
67static inline bool can_follow_write_pte(pte_t pte, unsigned int flags)
68{
Linus Torvaldsf6f37322017-12-15 18:53:22 -080069 return pte_write(pte) ||
Linus Torvalds19be0ea2016-10-13 13:07:36 -070070 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pte_dirty(pte));
71}
72
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070073static struct page *follow_page_pte(struct vm_area_struct *vma,
74 unsigned long address, pmd_t *pmd, unsigned int flags)
75{
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070076 struct mm_struct *mm = vma->vm_mm;
Dan Williams3565fce2016-01-15 16:56:55 -080077 struct dev_pagemap *pgmap = NULL;
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070078 struct page *page;
79 spinlock_t *ptl;
80 pte_t *ptep, pte;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070081
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070082retry:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070083 if (unlikely(pmd_bad(*pmd)))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -070084 return no_page_table(vma, flags);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070085
86 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070087 pte = *ptep;
88 if (!pte_present(pte)) {
89 swp_entry_t entry;
90 /*
91 * KSM's break_ksm() relies upon recognizing a ksm page
92 * even while it is being migrated, so for that case we
93 * need migration_entry_wait().
94 */
95 if (likely(!(flags & FOLL_MIGRATION)))
96 goto no_page;
Kirill A. Shutemov0661a332015-02-10 14:10:04 -080097 if (pte_none(pte))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070098 goto no_page;
99 entry = pte_to_swp_entry(pte);
100 if (!is_migration_entry(entry))
101 goto no_page;
102 pte_unmap_unlock(ptep, ptl);
103 migration_entry_wait(mm, pmd, address);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700104 goto retry;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700105 }
Mel Gorman8a0516e2015-02-12 14:58:22 -0800106 if ((flags & FOLL_NUMA) && pte_protnone(pte))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700107 goto no_page;
Linus Torvalds19be0ea2016-10-13 13:07:36 -0700108 if ((flags & FOLL_WRITE) && !can_follow_write_pte(pte, flags)) {
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700109 pte_unmap_unlock(ptep, ptl);
110 return NULL;
111 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700112
113 page = vm_normal_page(vma, address, pte);
Dan Williams3565fce2016-01-15 16:56:55 -0800114 if (!page && pte_devmap(pte) && (flags & FOLL_GET)) {
115 /*
116 * Only return device mapping pages in the FOLL_GET case since
117 * they are only valid while holding the pgmap reference.
118 */
119 pgmap = get_dev_pagemap(pte_pfn(pte), NULL);
120 if (pgmap)
121 page = pte_page(pte);
122 else
123 goto no_page;
124 } else if (unlikely(!page)) {
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700125 if (flags & FOLL_DUMP) {
126 /* Avoid special (like zero) pages in core dumps */
127 page = ERR_PTR(-EFAULT);
128 goto out;
129 }
130
131 if (is_zero_pfn(pte_pfn(pte))) {
132 page = pte_page(pte);
133 } else {
134 int ret;
135
136 ret = follow_pfn_pte(vma, address, ptep, flags);
137 page = ERR_PTR(ret);
138 goto out;
139 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700140 }
141
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800142 if (flags & FOLL_SPLIT && PageTransCompound(page)) {
143 int ret;
144 get_page(page);
145 pte_unmap_unlock(ptep, ptl);
146 lock_page(page);
147 ret = split_huge_page(page);
148 unlock_page(page);
149 put_page(page);
150 if (ret)
151 return ERR_PTR(ret);
152 goto retry;
153 }
154
Dan Williams3565fce2016-01-15 16:56:55 -0800155 if (flags & FOLL_GET) {
Linus Torvaldsd972ebb2019-04-11 10:49:19 -0700156 if (unlikely(!try_get_page(page))) {
157 page = ERR_PTR(-ENOMEM);
158 goto out;
159 }
Dan Williams3565fce2016-01-15 16:56:55 -0800160
161 /* drop the pgmap reference now that we hold the page */
162 if (pgmap) {
163 put_dev_pagemap(pgmap);
164 pgmap = NULL;
165 }
166 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700167 if (flags & FOLL_TOUCH) {
168 if ((flags & FOLL_WRITE) &&
169 !pte_dirty(pte) && !PageDirty(page))
170 set_page_dirty(page);
171 /*
172 * pte_mkyoung() would be more correct here, but atomic care
173 * is needed to avoid losing the dirty bit: it is easier to use
174 * mark_page_accessed().
175 */
176 mark_page_accessed(page);
177 }
Eric B Munsonde60f5f2015-11-05 18:51:36 -0800178 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
Kirill A. Shutemove90309c2016-01-15 16:54:33 -0800179 /* Do not mlock pte-mapped THP */
180 if (PageTransCompound(page))
181 goto out;
182
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700183 /*
184 * The preliminary mapping check is mainly to avoid the
185 * pointless overhead of lock_page on the ZERO_PAGE
186 * which might bounce very badly if there is contention.
187 *
188 * If the page is already locked, we don't need to
189 * handle it now - vmscan will handle it later if and
190 * when it attempts to reclaim the page.
191 */
192 if (page->mapping && trylock_page(page)) {
193 lru_add_drain(); /* push cached pages to LRU */
194 /*
195 * Because we lock page here, and migration is
196 * blocked by the pte's page reference, and we
197 * know the page is still mapped, we don't even
198 * need to check for file-cache page truncation.
199 */
200 mlock_vma_page(page);
201 unlock_page(page);
202 }
203 }
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700204out:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700205 pte_unmap_unlock(ptep, ptl);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700206 return page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700207no_page:
208 pte_unmap_unlock(ptep, ptl);
209 if (!pte_none(pte))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700210 return NULL;
211 return no_page_table(vma, flags);
212}
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700213
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700214static struct page *follow_pmd_mask(struct vm_area_struct *vma,
215 unsigned long address, pud_t *pudp,
216 unsigned int flags, unsigned int *page_mask)
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700217{
Huang Ying68827282018-06-07 17:06:34 -0700218 pmd_t *pmd, pmdval;
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700219 spinlock_t *ptl;
220 struct page *page;
221 struct mm_struct *mm = vma->vm_mm;
222
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700223 pmd = pmd_offset(pudp, address);
Huang Ying68827282018-06-07 17:06:34 -0700224 /*
225 * The READ_ONCE() will stabilize the pmdval in a register or
226 * on the stack so that it will stop changing under the code.
227 */
228 pmdval = READ_ONCE(*pmd);
229 if (pmd_none(pmdval))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700230 return no_page_table(vma, flags);
Huang Ying68827282018-06-07 17:06:34 -0700231 if (pmd_huge(pmdval) && vma->vm_flags & VM_HUGETLB) {
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800232 page = follow_huge_pmd(mm, address, pmd, flags);
233 if (page)
234 return page;
235 return no_page_table(vma, flags);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700236 }
Huang Ying68827282018-06-07 17:06:34 -0700237 if (is_hugepd(__hugepd(pmd_val(pmdval)))) {
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700238 page = follow_huge_pd(vma, address,
Huang Ying68827282018-06-07 17:06:34 -0700239 __hugepd(pmd_val(pmdval)), flags,
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700240 PMD_SHIFT);
241 if (page)
242 return page;
243 return no_page_table(vma, flags);
244 }
Zi Yan84c3fc42017-09-08 16:11:01 -0700245retry:
Huang Ying68827282018-06-07 17:06:34 -0700246 if (!pmd_present(pmdval)) {
Zi Yan84c3fc42017-09-08 16:11:01 -0700247 if (likely(!(flags & FOLL_MIGRATION)))
248 return no_page_table(vma, flags);
249 VM_BUG_ON(thp_migration_supported() &&
Huang Ying68827282018-06-07 17:06:34 -0700250 !is_pmd_migration_entry(pmdval));
251 if (is_pmd_migration_entry(pmdval))
Zi Yan84c3fc42017-09-08 16:11:01 -0700252 pmd_migration_entry_wait(mm, pmd);
Huang Ying68827282018-06-07 17:06:34 -0700253 pmdval = READ_ONCE(*pmd);
254 /*
255 * MADV_DONTNEED may convert the pmd to null because
256 * mmap_sem is held in read mode
257 */
258 if (pmd_none(pmdval))
259 return no_page_table(vma, flags);
Zi Yan84c3fc42017-09-08 16:11:01 -0700260 goto retry;
261 }
Huang Ying68827282018-06-07 17:06:34 -0700262 if (pmd_devmap(pmdval)) {
Dan Williams3565fce2016-01-15 16:56:55 -0800263 ptl = pmd_lock(mm, pmd);
264 page = follow_devmap_pmd(vma, address, pmd, flags);
265 spin_unlock(ptl);
266 if (page)
267 return page;
268 }
Huang Ying68827282018-06-07 17:06:34 -0700269 if (likely(!pmd_trans_huge(pmdval)))
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800270 return follow_page_pte(vma, address, pmd, flags);
271
Huang Ying68827282018-06-07 17:06:34 -0700272 if ((flags & FOLL_NUMA) && pmd_protnone(pmdval))
Aneesh Kumar K.Vdb08f202017-02-24 14:59:53 -0800273 return no_page_table(vma, flags);
274
Zi Yan84c3fc42017-09-08 16:11:01 -0700275retry_locked:
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800276 ptl = pmd_lock(mm, pmd);
Huang Ying68827282018-06-07 17:06:34 -0700277 if (unlikely(pmd_none(*pmd))) {
278 spin_unlock(ptl);
279 return no_page_table(vma, flags);
280 }
Zi Yan84c3fc42017-09-08 16:11:01 -0700281 if (unlikely(!pmd_present(*pmd))) {
282 spin_unlock(ptl);
283 if (likely(!(flags & FOLL_MIGRATION)))
284 return no_page_table(vma, flags);
285 pmd_migration_entry_wait(mm, pmd);
286 goto retry_locked;
287 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800288 if (unlikely(!pmd_trans_huge(*pmd))) {
289 spin_unlock(ptl);
290 return follow_page_pte(vma, address, pmd, flags);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700291 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800292 if (flags & FOLL_SPLIT) {
293 int ret;
294 page = pmd_page(*pmd);
295 if (is_huge_zero_page(page)) {
296 spin_unlock(ptl);
297 ret = 0;
Kirill A. Shutemov78ddc532016-01-15 16:52:42 -0800298 split_huge_pmd(vma, pmd, address);
Naoya Horiguchi337d9ab2016-07-26 15:24:03 -0700299 if (pmd_trans_unstable(pmd))
300 ret = -EBUSY;
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800301 } else {
Linus Torvaldsd972ebb2019-04-11 10:49:19 -0700302 if (unlikely(!try_get_page(page))) {
303 spin_unlock(ptl);
304 return ERR_PTR(-ENOMEM);
305 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800306 spin_unlock(ptl);
307 lock_page(page);
308 ret = split_huge_page(page);
309 unlock_page(page);
310 put_page(page);
Kirill A. Shutemovbaa355f2016-07-26 15:25:51 -0700311 if (pmd_none(*pmd))
312 return no_page_table(vma, flags);
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800313 }
314
315 return ret ? ERR_PTR(ret) :
316 follow_page_pte(vma, address, pmd, flags);
317 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800318 page = follow_trans_huge_pmd(vma, address, pmd, flags);
319 spin_unlock(ptl);
320 *page_mask = HPAGE_PMD_NR - 1;
321 return page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700322}
323
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700324
325static struct page *follow_pud_mask(struct vm_area_struct *vma,
326 unsigned long address, p4d_t *p4dp,
327 unsigned int flags, unsigned int *page_mask)
328{
329 pud_t *pud;
330 spinlock_t *ptl;
331 struct page *page;
332 struct mm_struct *mm = vma->vm_mm;
333
334 pud = pud_offset(p4dp, address);
335 if (pud_none(*pud))
336 return no_page_table(vma, flags);
337 if (pud_huge(*pud) && vma->vm_flags & VM_HUGETLB) {
338 page = follow_huge_pud(mm, address, pud, flags);
339 if (page)
340 return page;
341 return no_page_table(vma, flags);
342 }
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700343 if (is_hugepd(__hugepd(pud_val(*pud)))) {
344 page = follow_huge_pd(vma, address,
345 __hugepd(pud_val(*pud)), flags,
346 PUD_SHIFT);
347 if (page)
348 return page;
349 return no_page_table(vma, flags);
350 }
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700351 if (pud_devmap(*pud)) {
352 ptl = pud_lock(mm, pud);
353 page = follow_devmap_pud(vma, address, pud, flags);
354 spin_unlock(ptl);
355 if (page)
356 return page;
357 }
358 if (unlikely(pud_bad(*pud)))
359 return no_page_table(vma, flags);
360
361 return follow_pmd_mask(vma, address, pud, flags, page_mask);
362}
363
364
365static struct page *follow_p4d_mask(struct vm_area_struct *vma,
366 unsigned long address, pgd_t *pgdp,
367 unsigned int flags, unsigned int *page_mask)
368{
369 p4d_t *p4d;
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700370 struct page *page;
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700371
372 p4d = p4d_offset(pgdp, address);
373 if (p4d_none(*p4d))
374 return no_page_table(vma, flags);
375 BUILD_BUG_ON(p4d_huge(*p4d));
376 if (unlikely(p4d_bad(*p4d)))
377 return no_page_table(vma, flags);
378
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700379 if (is_hugepd(__hugepd(p4d_val(*p4d)))) {
380 page = follow_huge_pd(vma, address,
381 __hugepd(p4d_val(*p4d)), flags,
382 P4D_SHIFT);
383 if (page)
384 return page;
385 return no_page_table(vma, flags);
386 }
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700387 return follow_pud_mask(vma, address, p4d, flags, page_mask);
388}
389
390/**
391 * follow_page_mask - look up a page descriptor from a user-virtual address
392 * @vma: vm_area_struct mapping @address
393 * @address: virtual address to look up
394 * @flags: flags modifying lookup behaviour
395 * @page_mask: on output, *page_mask is set according to the size of the page
396 *
397 * @flags can have FOLL_ flags set, defined in <linux/mm.h>
398 *
399 * Returns the mapped (struct page *), %NULL if no mapping exists, or
400 * an error pointer if there is a mapping to something not represented
401 * by a page descriptor (see also vm_normal_page()).
402 */
403struct page *follow_page_mask(struct vm_area_struct *vma,
404 unsigned long address, unsigned int flags,
405 unsigned int *page_mask)
406{
407 pgd_t *pgd;
408 struct page *page;
409 struct mm_struct *mm = vma->vm_mm;
410
411 *page_mask = 0;
412
413 /* make this handle hugepd */
414 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
415 if (!IS_ERR(page)) {
416 BUG_ON(flags & FOLL_GET);
417 return page;
418 }
419
420 pgd = pgd_offset(mm, address);
421
422 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
423 return no_page_table(vma, flags);
424
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -0700425 if (pgd_huge(*pgd)) {
426 page = follow_huge_pgd(mm, address, pgd, flags);
427 if (page)
428 return page;
429 return no_page_table(vma, flags);
430 }
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700431 if (is_hugepd(__hugepd(pgd_val(*pgd)))) {
432 page = follow_huge_pd(vma, address,
433 __hugepd(pgd_val(*pgd)), flags,
434 PGDIR_SHIFT);
435 if (page)
436 return page;
437 return no_page_table(vma, flags);
438 }
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -0700439
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700440 return follow_p4d_mask(vma, address, pgd, flags, page_mask);
441}
442
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700443static int get_gate_page(struct mm_struct *mm, unsigned long address,
444 unsigned int gup_flags, struct vm_area_struct **vma,
445 struct page **page)
446{
447 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300448 p4d_t *p4d;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700449 pud_t *pud;
450 pmd_t *pmd;
451 pte_t *pte;
452 int ret = -EFAULT;
453
454 /* user gate pages are read-only */
455 if (gup_flags & FOLL_WRITE)
456 return -EFAULT;
457 if (address > TASK_SIZE)
458 pgd = pgd_offset_k(address);
459 else
460 pgd = pgd_offset_gate(mm, address);
Andy Lutomirski041b1272019-07-11 20:57:43 -0700461 if (pgd_none(*pgd))
462 return -EFAULT;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300463 p4d = p4d_offset(pgd, address);
Andy Lutomirski041b1272019-07-11 20:57:43 -0700464 if (p4d_none(*p4d))
465 return -EFAULT;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300466 pud = pud_offset(p4d, address);
Andy Lutomirski041b1272019-07-11 20:57:43 -0700467 if (pud_none(*pud))
468 return -EFAULT;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700469 pmd = pmd_offset(pud, address);
Zi Yan84c3fc42017-09-08 16:11:01 -0700470 if (!pmd_present(*pmd))
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700471 return -EFAULT;
472 VM_BUG_ON(pmd_trans_huge(*pmd));
473 pte = pte_offset_map(pmd, address);
474 if (pte_none(*pte))
475 goto unmap;
476 *vma = get_gate_vma(mm);
477 if (!page)
478 goto out;
479 *page = vm_normal_page(*vma, address, *pte);
480 if (!*page) {
481 if ((gup_flags & FOLL_DUMP) || !is_zero_pfn(pte_pfn(*pte)))
482 goto unmap;
483 *page = pte_page(*pte);
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700484
485 /*
486 * This should never happen (a device public page in the gate
487 * area).
488 */
489 if (is_device_public_page(*page))
490 goto unmap;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700491 }
Linus Torvaldsd972ebb2019-04-11 10:49:19 -0700492 if (unlikely(!try_get_page(*page))) {
493 ret = -ENOMEM;
494 goto unmap;
495 }
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700496out:
497 ret = 0;
498unmap:
499 pte_unmap(pte);
500 return ret;
501}
502
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700503/*
504 * mmap_sem must be held on entry. If @nonblocking != NULL and
505 * *@flags does not include FOLL_NOWAIT, the mmap_sem may be released.
506 * If it is, *@nonblocking will be set to 0 and -EBUSY returned.
507 */
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700508static int faultin_page(struct task_struct *tsk, struct vm_area_struct *vma,
509 unsigned long address, unsigned int *flags, int *nonblocking)
510{
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700511 unsigned int fault_flags = 0;
Souptick Joarder2b740302018-08-23 17:01:36 -0700512 vm_fault_t ret;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700513
Eric B Munsonde60f5f2015-11-05 18:51:36 -0800514 /* mlock all present pages, but do not fault in new pages */
515 if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK)
516 return -ENOENT;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700517 if (*flags & FOLL_WRITE)
518 fault_flags |= FAULT_FLAG_WRITE;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800519 if (*flags & FOLL_REMOTE)
520 fault_flags |= FAULT_FLAG_REMOTE;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700521 if (nonblocking)
522 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
523 if (*flags & FOLL_NOWAIT)
524 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_RETRY_NOWAIT;
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -0700525 if (*flags & FOLL_TRIED) {
526 VM_WARN_ON_ONCE(fault_flags & FAULT_FLAG_ALLOW_RETRY);
527 fault_flags |= FAULT_FLAG_TRIED;
528 }
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700529
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700530 ret = handle_mm_fault(vma, address, fault_flags);
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700531 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -0700532 int err = vm_fault_to_errno(ret, *flags);
533
534 if (err)
535 return err;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700536 BUG();
537 }
538
539 if (tsk) {
540 if (ret & VM_FAULT_MAJOR)
541 tsk->maj_flt++;
542 else
543 tsk->min_flt++;
544 }
545
546 if (ret & VM_FAULT_RETRY) {
Andrea Arcangeli96312e62018-03-09 15:51:06 -0800547 if (nonblocking && !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700548 *nonblocking = 0;
549 return -EBUSY;
550 }
551
552 /*
553 * The VM_FAULT_WRITE bit tells us that do_wp_page has broken COW when
554 * necessary, even if maybe_mkwrite decided not to set pte_write. We
555 * can thus safely do subsequent page lookups as if they were reads.
556 * But only do so when looping for pte_write is futile: in some cases
557 * userspace may also be wanting to write to the gotten user page,
558 * which a read fault here might prevent (a readonly page might get
559 * reCOWed by userspace write).
560 */
561 if ((ret & VM_FAULT_WRITE) && !(vma->vm_flags & VM_WRITE))
Mario Leinweber29231172018-04-05 16:24:18 -0700562 *flags |= FOLL_COW;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700563 return 0;
564}
565
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700566static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
567{
568 vm_flags_t vm_flags = vma->vm_flags;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800569 int write = (gup_flags & FOLL_WRITE);
570 int foreign = (gup_flags & FOLL_REMOTE);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700571
572 if (vm_flags & (VM_IO | VM_PFNMAP))
573 return -EFAULT;
574
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200575 if (gup_flags & FOLL_ANON && !vma_is_anonymous(vma))
576 return -EFAULT;
577
Dave Hansen1b2ee122016-02-12 13:02:21 -0800578 if (write) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700579 if (!(vm_flags & VM_WRITE)) {
580 if (!(gup_flags & FOLL_FORCE))
581 return -EFAULT;
582 /*
583 * We used to let the write,force case do COW in a
584 * VM_MAYWRITE VM_SHARED !VM_WRITE vma, so ptrace could
585 * set a breakpoint in a read-only mapping of an
586 * executable, without corrupting the file (yet only
587 * when that file had been opened for writing!).
588 * Anon pages in shared mappings are surprising: now
589 * just reject it.
590 */
Hugh Dickins46435362016-01-30 18:03:16 -0800591 if (!is_cow_mapping(vm_flags))
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700592 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700593 }
594 } else if (!(vm_flags & VM_READ)) {
595 if (!(gup_flags & FOLL_FORCE))
596 return -EFAULT;
597 /*
598 * Is there actually any vma we can reach here which does not
599 * have VM_MAYREAD set?
600 */
601 if (!(vm_flags & VM_MAYREAD))
602 return -EFAULT;
603 }
Dave Hansend61172b2016-02-12 13:02:24 -0800604 /*
605 * gups are always data accesses, not instruction
606 * fetches, so execute=false here
607 */
608 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -0800609 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700610 return 0;
611}
612
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700613/**
614 * __get_user_pages() - pin user pages in memory
615 * @tsk: task_struct of target task
616 * @mm: mm_struct of target mm
617 * @start: starting user address
618 * @nr_pages: number of pages from start to pin
619 * @gup_flags: flags modifying pin behaviour
620 * @pages: array that receives pointers to the pages pinned.
621 * Should be at least nr_pages long. Or NULL, if caller
622 * only intends to ensure the pages are faulted in.
623 * @vmas: array of pointers to vmas corresponding to each page.
624 * Or NULL if the caller does not require them.
625 * @nonblocking: whether waiting for disk IO or mmap_sem contention
626 *
627 * Returns number of pages pinned. This may be fewer than the number
628 * requested. If nr_pages is 0 or negative, returns 0. If no pages
629 * were pinned, returns -errno. Each page returned must be released
630 * with a put_page() call when it is finished with. vmas will only
631 * remain valid while mmap_sem is held.
632 *
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700633 * Must be called with mmap_sem held. It may be released. See below.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700634 *
635 * __get_user_pages walks a process's page tables and takes a reference to
636 * each struct page that each user address corresponds to at a given
637 * instant. That is, it takes the page that would be accessed if a user
638 * thread accesses the given user virtual address at that instant.
639 *
640 * This does not guarantee that the page exists in the user mappings when
641 * __get_user_pages returns, and there may even be a completely different
642 * page there in some cases (eg. if mmapped pagecache has been invalidated
643 * and subsequently re faulted). However it does guarantee that the page
644 * won't be freed completely. And mostly callers simply care that the page
645 * contains data that was valid *at some point in time*. Typically, an IO
646 * or similar operation cannot guarantee anything stronger anyway because
647 * locks can't be held over the syscall boundary.
648 *
649 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
650 * the page is written to, set_page_dirty (or set_page_dirty_lock, as
651 * appropriate) must be called after the page is finished with, and
652 * before put_page is called.
653 *
654 * If @nonblocking != NULL, __get_user_pages will not wait for disk IO
655 * or mmap_sem contention, and if waiting is needed to pin all pages,
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700656 * *@nonblocking will be set to 0. Further, if @gup_flags does not
657 * include FOLL_NOWAIT, the mmap_sem will be released via up_read() in
658 * this case.
659 *
660 * A caller using such a combination of @nonblocking and @gup_flags
661 * must therefore hold the mmap_sem for reading only, and recognize
662 * when it's been released. Otherwise, it must be held for either
663 * reading or writing and will not be released.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700664 *
665 * In most cases, get_user_pages or get_user_pages_fast should be used
666 * instead of __get_user_pages. __get_user_pages should be used only if
667 * you need some special @gup_flags.
668 */
Lorenzo Stoakes0d731752016-10-24 10:57:25 +0100669static long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700670 unsigned long start, unsigned long nr_pages,
671 unsigned int gup_flags, struct page **pages,
672 struct vm_area_struct **vmas, int *nonblocking)
673{
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700674 long i = 0;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700675 unsigned int page_mask;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700676 struct vm_area_struct *vma = NULL;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700677
678 if (!nr_pages)
679 return 0;
680
681 VM_BUG_ON(!!pages != !!(gup_flags & FOLL_GET));
682
683 /*
684 * If FOLL_FORCE is set then do not force a full fault as the hinting
685 * fault information is unrelated to the reference behaviour of a task
686 * using the address space
687 */
688 if (!(gup_flags & FOLL_FORCE))
689 gup_flags |= FOLL_NUMA;
690
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700691 do {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700692 struct page *page;
693 unsigned int foll_flags = gup_flags;
694 unsigned int page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700695
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700696 /* first iteration or cross vma bound */
697 if (!vma || start >= vma->vm_end) {
698 vma = find_extend_vma(mm, start);
699 if (!vma && in_gate_area(mm, start)) {
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700700 int ret;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700701 ret = get_gate_page(mm, start & PAGE_MASK,
702 gup_flags, &vma,
703 pages ? &pages[i] : NULL);
704 if (ret)
705 return i ? : ret;
706 page_mask = 0;
707 goto next_page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700708 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700709
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700710 if (!vma || check_vma_flags(vma, gup_flags))
711 return i ? : -EFAULT;
712 if (is_vm_hugetlb_page(vma)) {
713 i = follow_hugetlb_page(mm, vma, pages, vmas,
714 &start, &nr_pages, i,
Andrea Arcangeli87ffc112017-02-22 15:43:13 -0800715 gup_flags, nonblocking);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700716 continue;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700717 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700718 }
719retry:
720 /*
721 * If we have a pending SIGKILL, don't keep faulting pages and
722 * potentially allocating memory.
723 */
724 if (unlikely(fatal_signal_pending(current)))
725 return i ? i : -ERESTARTSYS;
726 cond_resched();
727 page = follow_page_mask(vma, start, foll_flags, &page_mask);
728 if (!page) {
729 int ret;
730 ret = faultin_page(tsk, vma, start, &foll_flags,
731 nonblocking);
732 switch (ret) {
733 case 0:
734 goto retry;
735 case -EFAULT:
736 case -ENOMEM:
737 case -EHWPOISON:
738 return i ? i : ret;
739 case -EBUSY:
740 return i;
741 case -ENOENT:
742 goto next_page;
743 }
744 BUG();
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700745 } else if (PTR_ERR(page) == -EEXIST) {
746 /*
747 * Proper page table entry exists, but no corresponding
748 * struct page.
749 */
750 goto next_page;
751 } else if (IS_ERR(page)) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700752 return i ? i : PTR_ERR(page);
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700753 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700754 if (pages) {
755 pages[i] = page;
756 flush_anon_page(vma, page, start);
757 flush_dcache_page(page);
758 page_mask = 0;
759 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700760next_page:
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700761 if (vmas) {
762 vmas[i] = vma;
763 page_mask = 0;
764 }
765 page_increm = 1 + (~(start >> PAGE_SHIFT) & page_mask);
766 if (page_increm > nr_pages)
767 page_increm = nr_pages;
768 i += page_increm;
769 start += page_increm * PAGE_SIZE;
770 nr_pages -= page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700771 } while (nr_pages);
772 return i;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700773}
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700774
Tobias Klauser771ab432016-12-12 16:41:53 -0800775static bool vma_permits_fault(struct vm_area_struct *vma,
776 unsigned int fault_flags)
Dave Hansend4925e02016-02-12 13:02:16 -0800777{
Dave Hansen1b2ee122016-02-12 13:02:21 -0800778 bool write = !!(fault_flags & FAULT_FLAG_WRITE);
779 bool foreign = !!(fault_flags & FAULT_FLAG_REMOTE);
Dave Hansen33a709b2016-02-12 13:02:19 -0800780 vm_flags_t vm_flags = write ? VM_WRITE : VM_READ;
Dave Hansend4925e02016-02-12 13:02:16 -0800781
782 if (!(vm_flags & vma->vm_flags))
783 return false;
784
Dave Hansen33a709b2016-02-12 13:02:19 -0800785 /*
786 * The architecture might have a hardware protection
Dave Hansen1b2ee122016-02-12 13:02:21 -0800787 * mechanism other than read/write that can deny access.
Dave Hansend61172b2016-02-12 13:02:24 -0800788 *
789 * gup always represents data access, not instruction
790 * fetches, so execute=false here:
Dave Hansen33a709b2016-02-12 13:02:19 -0800791 */
Dave Hansend61172b2016-02-12 13:02:24 -0800792 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -0800793 return false;
794
Dave Hansend4925e02016-02-12 13:02:16 -0800795 return true;
796}
797
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700798/*
799 * fixup_user_fault() - manually resolve a user page fault
800 * @tsk: the task_struct to use for page fault accounting, or
801 * NULL if faults are not to be recorded.
802 * @mm: mm_struct of target mm
803 * @address: user address
804 * @fault_flags:flags to pass down to handle_mm_fault()
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800805 * @unlocked: did we unlock the mmap_sem while retrying, maybe NULL if caller
806 * does not allow retry
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700807 *
808 * This is meant to be called in the specific scenario where for locking reasons
809 * we try to access user memory in atomic context (within a pagefault_disable()
810 * section), this returns -EFAULT, and we want to resolve the user fault before
811 * trying again.
812 *
813 * Typically this is meant to be used by the futex code.
814 *
815 * The main difference with get_user_pages() is that this function will
816 * unconditionally call handle_mm_fault() which will in turn perform all the
817 * necessary SW fixup of the dirty and young bits in the PTE, while
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800818 * get_user_pages() only guarantees to update these in the struct page.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700819 *
820 * This is important for some architectures where those bits also gate the
821 * access permission to the page because they are maintained in software. On
822 * such architectures, gup() will not be enough to make a subsequent access
823 * succeed.
824 *
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800825 * This function will not return with an unlocked mmap_sem. So it has not the
826 * same semantics wrt the @mm->mmap_sem as does filemap_fault().
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700827 */
828int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm,
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800829 unsigned long address, unsigned int fault_flags,
830 bool *unlocked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700831{
832 struct vm_area_struct *vma;
Souptick Joarder2b740302018-08-23 17:01:36 -0700833 vm_fault_t ret, major = 0;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700834
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800835 if (unlocked)
836 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
837
838retry:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700839 vma = find_extend_vma(mm, address);
840 if (!vma || address < vma->vm_start)
841 return -EFAULT;
842
Dave Hansend4925e02016-02-12 13:02:16 -0800843 if (!vma_permits_fault(vma, fault_flags))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700844 return -EFAULT;
845
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700846 ret = handle_mm_fault(vma, address, fault_flags);
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800847 major |= ret & VM_FAULT_MAJOR;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700848 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -0700849 int err = vm_fault_to_errno(ret, 0);
850
851 if (err)
852 return err;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700853 BUG();
854 }
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800855
856 if (ret & VM_FAULT_RETRY) {
857 down_read(&mm->mmap_sem);
858 if (!(fault_flags & FAULT_FLAG_TRIED)) {
859 *unlocked = true;
860 fault_flags &= ~FAULT_FLAG_ALLOW_RETRY;
861 fault_flags |= FAULT_FLAG_TRIED;
862 goto retry;
863 }
864 }
865
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700866 if (tsk) {
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800867 if (major)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700868 tsk->maj_flt++;
869 else
870 tsk->min_flt++;
871 }
872 return 0;
873}
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +0200874EXPORT_SYMBOL_GPL(fixup_user_fault);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700875
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800876static __always_inline long __get_user_pages_locked(struct task_struct *tsk,
877 struct mm_struct *mm,
878 unsigned long start,
879 unsigned long nr_pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800880 struct page **pages,
881 struct vm_area_struct **vmas,
Al Viroe7167122017-11-19 11:32:05 -0500882 int *locked,
Andrea Arcangeli0fd71a52015-02-11 15:27:20 -0800883 unsigned int flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800884{
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800885 long ret, pages_done;
886 bool lock_dropped;
887
888 if (locked) {
889 /* if VM_FAULT_RETRY can be returned, vmas become invalid */
890 BUG_ON(vmas);
891 /* check caller initialized locked */
892 BUG_ON(*locked != 1);
893 }
894
895 if (pages)
896 flags |= FOLL_GET;
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800897
898 pages_done = 0;
899 lock_dropped = false;
900 for (;;) {
901 ret = __get_user_pages(tsk, mm, start, nr_pages, flags, pages,
902 vmas, locked);
903 if (!locked)
904 /* VM_FAULT_RETRY couldn't trigger, bypass */
905 return ret;
906
907 /* VM_FAULT_RETRY cannot return errors */
908 if (!*locked) {
909 BUG_ON(ret < 0);
910 BUG_ON(ret >= nr_pages);
911 }
912
913 if (!pages)
914 /* If it's a prefault don't insist harder */
915 return ret;
916
917 if (ret > 0) {
918 nr_pages -= ret;
919 pages_done += ret;
920 if (!nr_pages)
921 break;
922 }
923 if (*locked) {
Andrea Arcangeli96312e62018-03-09 15:51:06 -0800924 /*
925 * VM_FAULT_RETRY didn't trigger or it was a
926 * FOLL_NOWAIT.
927 */
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800928 if (!pages_done)
929 pages_done = ret;
930 break;
931 }
932 /* VM_FAULT_RETRY triggered, so seek to the faulting offset */
933 pages += ret;
934 start += ret << PAGE_SHIFT;
935
936 /*
937 * Repeat on the address that fired VM_FAULT_RETRY
938 * without FAULT_FLAG_ALLOW_RETRY but with
939 * FAULT_FLAG_TRIED.
940 */
941 *locked = 1;
942 lock_dropped = true;
943 down_read(&mm->mmap_sem);
944 ret = __get_user_pages(tsk, mm, start, 1, flags | FOLL_TRIED,
945 pages, NULL, NULL);
946 if (ret != 1) {
947 BUG_ON(ret > 1);
948 if (!pages_done)
949 pages_done = ret;
950 break;
951 }
952 nr_pages--;
953 pages_done++;
954 if (!nr_pages)
955 break;
956 pages++;
957 start += PAGE_SIZE;
958 }
Al Viroe7167122017-11-19 11:32:05 -0500959 if (lock_dropped && *locked) {
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800960 /*
961 * We must let the caller know we temporarily dropped the lock
962 * and so the critical section protected by it was lost.
963 */
964 up_read(&mm->mmap_sem);
965 *locked = 0;
966 }
967 return pages_done;
968}
969
970/*
971 * We can leverage the VM_FAULT_RETRY functionality in the page fault
972 * paths better by using either get_user_pages_locked() or
973 * get_user_pages_unlocked().
974 *
975 * get_user_pages_locked() is suitable to replace the form:
976 *
977 * down_read(&mm->mmap_sem);
978 * do_something()
979 * get_user_pages(tsk, mm, ..., pages, NULL);
980 * up_read(&mm->mmap_sem);
981 *
982 * to:
983 *
984 * int locked = 1;
985 * down_read(&mm->mmap_sem);
986 * do_something()
987 * get_user_pages_locked(tsk, mm, ..., pages, &locked);
988 * if (locked)
989 * up_read(&mm->mmap_sem);
990 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +0200991long get_user_pages_locked(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes3b913172016-10-13 01:20:14 +0100992 unsigned int gup_flags, struct page **pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800993 int *locked)
994{
Dave Hansencde70142016-02-12 13:01:55 -0800995 return __get_user_pages_locked(current, current->mm, start, nr_pages,
Al Viroe7167122017-11-19 11:32:05 -0500996 pages, NULL, locked,
Lorenzo Stoakes3b913172016-10-13 01:20:14 +0100997 gup_flags | FOLL_TOUCH);
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800998}
Ingo Molnarc12d2da2016-04-04 10:24:58 +0200999EXPORT_SYMBOL(get_user_pages_locked);
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001000
1001/*
1002 * get_user_pages_unlocked() is suitable to replace the form:
1003 *
1004 * down_read(&mm->mmap_sem);
1005 * get_user_pages(tsk, mm, ..., pages, NULL);
1006 * up_read(&mm->mmap_sem);
1007 *
1008 * with:
1009 *
1010 * get_user_pages_unlocked(tsk, mm, ..., pages);
1011 *
1012 * It is functionally equivalent to get_user_pages_fast so
Lorenzo Stoakes80a79512016-12-12 16:42:46 -08001013 * get_user_pages_fast should be used instead if specific gup_flags
1014 * (e.g. FOLL_FORCE) are not required.
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001015 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001016long get_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakesc1641542016-10-13 01:20:13 +01001017 struct page **pages, unsigned int gup_flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001018{
Al Viroc803c9c2017-11-18 14:17:46 -05001019 struct mm_struct *mm = current->mm;
1020 int locked = 1;
1021 long ret;
1022
1023 down_read(&mm->mmap_sem);
1024 ret = __get_user_pages_locked(current, mm, start, nr_pages, pages, NULL,
Al Viroe7167122017-11-19 11:32:05 -05001025 &locked, gup_flags | FOLL_TOUCH);
Al Viroc803c9c2017-11-18 14:17:46 -05001026 if (locked)
1027 up_read(&mm->mmap_sem);
1028 return ret;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001029}
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001030EXPORT_SYMBOL(get_user_pages_unlocked);
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001031
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001032/*
Dave Hansen1e987792016-02-12 13:01:54 -08001033 * get_user_pages_remote() - pin user pages in memory
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001034 * @tsk: the task_struct to use for page fault accounting, or
1035 * NULL if faults are not to be recorded.
1036 * @mm: mm_struct of target mm
1037 * @start: starting user address
1038 * @nr_pages: number of pages from start to pin
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001039 * @gup_flags: flags modifying lookup behaviour
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001040 * @pages: array that receives pointers to the pages pinned.
1041 * Should be at least nr_pages long. Or NULL, if caller
1042 * only intends to ensure the pages are faulted in.
1043 * @vmas: array of pointers to vmas corresponding to each page.
1044 * Or NULL if the caller does not require them.
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001045 * @locked: pointer to lock flag indicating whether lock is held and
1046 * subsequently whether VM_FAULT_RETRY functionality can be
1047 * utilised. Lock must initially be held.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001048 *
1049 * Returns number of pages pinned. This may be fewer than the number
1050 * requested. If nr_pages is 0 or negative, returns 0. If no pages
1051 * were pinned, returns -errno. Each page returned must be released
1052 * with a put_page() call when it is finished with. vmas will only
1053 * remain valid while mmap_sem is held.
1054 *
1055 * Must be called with mmap_sem held for read or write.
1056 *
1057 * get_user_pages walks a process's page tables and takes a reference to
1058 * each struct page that each user address corresponds to at a given
1059 * instant. That is, it takes the page that would be accessed if a user
1060 * thread accesses the given user virtual address at that instant.
1061 *
1062 * This does not guarantee that the page exists in the user mappings when
1063 * get_user_pages returns, and there may even be a completely different
1064 * page there in some cases (eg. if mmapped pagecache has been invalidated
1065 * and subsequently re faulted). However it does guarantee that the page
1066 * won't be freed completely. And mostly callers simply care that the page
1067 * contains data that was valid *at some point in time*. Typically, an IO
1068 * or similar operation cannot guarantee anything stronger anyway because
1069 * locks can't be held over the syscall boundary.
1070 *
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001071 * If gup_flags & FOLL_WRITE == 0, the page must not be written to. If the page
1072 * is written to, set_page_dirty (or set_page_dirty_lock, as appropriate) must
1073 * be called after the page is finished with, and before put_page is called.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001074 *
1075 * get_user_pages is typically used for fewer-copy IO operations, to get a
1076 * handle on the memory by some means other than accesses via the user virtual
1077 * addresses. The pages may be submitted for DMA to devices or accessed via
1078 * their kernel linear mapping (via the kmap APIs). Care should be taken to
1079 * use the correct cache flushing APIs.
1080 *
1081 * See also get_user_pages_fast, for performance critical applications.
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001082 *
1083 * get_user_pages should be phased out in favor of
1084 * get_user_pages_locked|unlocked or get_user_pages_fast. Nothing
1085 * should use get_user_pages because it cannot pass
1086 * FAULT_FLAG_ALLOW_RETRY to handle_mm_fault.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001087 */
Dave Hansen1e987792016-02-12 13:01:54 -08001088long get_user_pages_remote(struct task_struct *tsk, struct mm_struct *mm,
1089 unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001090 unsigned int gup_flags, struct page **pages,
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001091 struct vm_area_struct **vmas, int *locked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001092{
Lorenzo Stoakes859110d2016-10-13 01:20:11 +01001093 return __get_user_pages_locked(tsk, mm, start, nr_pages, pages, vmas,
Al Viroe7167122017-11-19 11:32:05 -05001094 locked,
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001095 gup_flags | FOLL_TOUCH | FOLL_REMOTE);
Dave Hansen1e987792016-02-12 13:01:54 -08001096}
1097EXPORT_SYMBOL(get_user_pages_remote);
1098
1099/*
Dave Hansend4edcf02016-02-12 13:01:56 -08001100 * This is the same as get_user_pages_remote(), just with a
1101 * less-flexible calling convention where we assume that the task
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001102 * and mm being operated on are the current task's and don't allow
1103 * passing of a locked parameter. We also obviously don't pass
1104 * FOLL_REMOTE in here.
Dave Hansen1e987792016-02-12 13:01:54 -08001105 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001106long get_user_pages(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes768ae302016-10-13 01:20:16 +01001107 unsigned int gup_flags, struct page **pages,
Dave Hansen1e987792016-02-12 13:01:54 -08001108 struct vm_area_struct **vmas)
1109{
Dave Hansencde70142016-02-12 13:01:55 -08001110 return __get_user_pages_locked(current, current->mm, start, nr_pages,
Al Viroe7167122017-11-19 11:32:05 -05001111 pages, vmas, NULL,
Lorenzo Stoakes768ae302016-10-13 01:20:16 +01001112 gup_flags | FOLL_TOUCH);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001113}
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001114EXPORT_SYMBOL(get_user_pages);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001115
Dan Williams2bb6d282017-11-29 16:10:35 -08001116#ifdef CONFIG_FS_DAX
1117/*
1118 * This is the same as get_user_pages() in that it assumes we are
1119 * operating on the current task's mm, but it goes further to validate
1120 * that the vmas associated with the address range are suitable for
1121 * longterm elevated page reference counts. For example, filesystem-dax
1122 * mappings are subject to the lifetime enforced by the filesystem and
1123 * we need guarantees that longterm users like RDMA and V4L2 only
1124 * establish mappings that have a kernel enforced revocation mechanism.
1125 *
1126 * "longterm" == userspace controlled elevated page count lifetime.
1127 * Contrast this to iov_iter_get_pages() usages which are transient.
1128 */
1129long get_user_pages_longterm(unsigned long start, unsigned long nr_pages,
1130 unsigned int gup_flags, struct page **pages,
1131 struct vm_area_struct **vmas_arg)
1132{
1133 struct vm_area_struct **vmas = vmas_arg;
1134 struct vm_area_struct *vma_prev = NULL;
1135 long rc, i;
1136
1137 if (!pages)
1138 return -EINVAL;
1139
1140 if (!vmas) {
1141 vmas = kcalloc(nr_pages, sizeof(struct vm_area_struct *),
1142 GFP_KERNEL);
1143 if (!vmas)
1144 return -ENOMEM;
1145 }
1146
1147 rc = get_user_pages(start, nr_pages, gup_flags, pages, vmas);
1148
1149 for (i = 0; i < rc; i++) {
1150 struct vm_area_struct *vma = vmas[i];
1151
1152 if (vma == vma_prev)
1153 continue;
1154
1155 vma_prev = vma;
1156
1157 if (vma_is_fsdax(vma))
1158 break;
1159 }
1160
1161 /*
1162 * Either get_user_pages() failed, or the vma validation
1163 * succeeded, in either case we don't need to put_page() before
1164 * returning.
1165 */
1166 if (i >= rc)
1167 goto out;
1168
1169 for (i = 0; i < rc; i++)
1170 put_page(pages[i]);
1171 rc = -EOPNOTSUPP;
1172out:
1173 if (vmas != vmas_arg)
1174 kfree(vmas);
1175 return rc;
1176}
1177EXPORT_SYMBOL(get_user_pages_longterm);
1178#endif /* CONFIG_FS_DAX */
1179
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001180/**
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001181 * populate_vma_page_range() - populate a range of pages in the vma.
1182 * @vma: target vma
1183 * @start: start address
1184 * @end: end address
1185 * @nonblocking:
1186 *
1187 * This takes care of mlocking the pages too if VM_LOCKED is set.
1188 *
1189 * return 0 on success, negative error code on error.
1190 *
1191 * vma->vm_mm->mmap_sem must be held.
1192 *
1193 * If @nonblocking is NULL, it may be held for read or write and will
1194 * be unperturbed.
1195 *
1196 * If @nonblocking is non-NULL, it must held for read only and may be
1197 * released. If it's released, *@nonblocking will be set to 0.
1198 */
1199long populate_vma_page_range(struct vm_area_struct *vma,
1200 unsigned long start, unsigned long end, int *nonblocking)
1201{
1202 struct mm_struct *mm = vma->vm_mm;
1203 unsigned long nr_pages = (end - start) / PAGE_SIZE;
1204 int gup_flags;
1205
1206 VM_BUG_ON(start & ~PAGE_MASK);
1207 VM_BUG_ON(end & ~PAGE_MASK);
1208 VM_BUG_ON_VMA(start < vma->vm_start, vma);
1209 VM_BUG_ON_VMA(end > vma->vm_end, vma);
1210 VM_BUG_ON_MM(!rwsem_is_locked(&mm->mmap_sem), mm);
1211
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001212 gup_flags = FOLL_TOUCH | FOLL_POPULATE | FOLL_MLOCK;
1213 if (vma->vm_flags & VM_LOCKONFAULT)
1214 gup_flags &= ~FOLL_POPULATE;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001215 /*
1216 * We want to touch writable mappings with a write fault in order
1217 * to break COW, except for shared mappings because these don't COW
1218 * and we would not want to dirty them for nothing.
1219 */
1220 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
1221 gup_flags |= FOLL_WRITE;
1222
1223 /*
1224 * We want mlock to succeed for regions that have any permissions
1225 * other than PROT_NONE.
1226 */
1227 if (vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC))
1228 gup_flags |= FOLL_FORCE;
1229
1230 /*
1231 * We made sure addr is within a VMA, so the following will
1232 * not result in a stack expansion that recurses back here.
1233 */
1234 return __get_user_pages(current, mm, start, nr_pages, gup_flags,
1235 NULL, NULL, nonblocking);
1236}
1237
1238/*
1239 * __mm_populate - populate and/or mlock pages within a range of address space.
1240 *
1241 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
1242 * flags. VMAs must be already marked with the desired vm_flags, and
1243 * mmap_sem must not be held.
1244 */
1245int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
1246{
1247 struct mm_struct *mm = current->mm;
1248 unsigned long end, nstart, nend;
1249 struct vm_area_struct *vma = NULL;
1250 int locked = 0;
1251 long ret = 0;
1252
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001253 end = start + len;
1254
1255 for (nstart = start; nstart < end; nstart = nend) {
1256 /*
1257 * We want to fault in pages for [nstart; end) address range.
1258 * Find first corresponding VMA.
1259 */
1260 if (!locked) {
1261 locked = 1;
1262 down_read(&mm->mmap_sem);
1263 vma = find_vma(mm, nstart);
1264 } else if (nstart >= vma->vm_end)
1265 vma = vma->vm_next;
1266 if (!vma || vma->vm_start >= end)
1267 break;
1268 /*
1269 * Set [nstart; nend) to intersection of desired address
1270 * range with the first VMA. Also, skip undesirable VMA types.
1271 */
1272 nend = min(end, vma->vm_end);
1273 if (vma->vm_flags & (VM_IO | VM_PFNMAP))
1274 continue;
1275 if (nstart < vma->vm_start)
1276 nstart = vma->vm_start;
1277 /*
1278 * Now fault in a range of pages. populate_vma_page_range()
1279 * double checks the vma flags, so that it won't mlock pages
1280 * if the vma was already munlocked.
1281 */
1282 ret = populate_vma_page_range(vma, nstart, nend, &locked);
1283 if (ret < 0) {
1284 if (ignore_errors) {
1285 ret = 0;
1286 continue; /* continue at next VMA */
1287 }
1288 break;
1289 }
1290 nend = nstart + ret * PAGE_SIZE;
1291 ret = 0;
1292 }
1293 if (locked)
1294 up_read(&mm->mmap_sem);
1295 return ret; /* 0 or negative error code */
1296}
1297
1298/**
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001299 * get_dump_page() - pin user page in memory while writing it to core dump
1300 * @addr: user address
1301 *
1302 * Returns struct page pointer of user page pinned for dump,
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03001303 * to be freed afterwards by put_page().
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001304 *
1305 * Returns NULL on any kind of failure - a hole must then be inserted into
1306 * the corefile, to preserve alignment with its headers; and also returns
1307 * NULL wherever the ZERO_PAGE, or an anonymous pte_none, has been found -
1308 * allowing a hole to be left in the corefile to save diskspace.
1309 *
1310 * Called without mmap_sem, but after all other threads have been killed.
1311 */
1312#ifdef CONFIG_ELF_CORE
1313struct page *get_dump_page(unsigned long addr)
1314{
1315 struct vm_area_struct *vma;
1316 struct page *page;
1317
1318 if (__get_user_pages(current, current->mm, addr, 1,
1319 FOLL_FORCE | FOLL_DUMP | FOLL_GET, &page, &vma,
1320 NULL) < 1)
1321 return NULL;
1322 flush_cache_page(vma, addr, page_to_pfn(page));
1323 return page;
1324}
1325#endif /* CONFIG_ELF_CORE */
Steve Capper2667f502014-10-09 15:29:14 -07001326
1327/*
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001328 * Generic Fast GUP
Steve Capper2667f502014-10-09 15:29:14 -07001329 *
1330 * get_user_pages_fast attempts to pin user pages by walking the page
1331 * tables directly and avoids taking locks. Thus the walker needs to be
1332 * protected from page table pages being freed from under it, and should
1333 * block any THP splits.
1334 *
1335 * One way to achieve this is to have the walker disable interrupts, and
1336 * rely on IPIs from the TLB flushing code blocking before the page table
1337 * pages are freed. This is unsuitable for architectures that do not need
1338 * to broadcast an IPI when invalidating TLBs.
1339 *
1340 * Another way to achieve this is to batch up page table containing pages
1341 * belonging to more than one mm_user, then rcu_sched a callback to free those
1342 * pages. Disabling interrupts will allow the fast_gup walker to both block
1343 * the rcu_sched callback, and an IPI that we broadcast for splitting THPs
1344 * (which is a relatively rare event). The code below adopts this strategy.
1345 *
1346 * Before activating this code, please be aware that the following assumptions
1347 * are currently made:
1348 *
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001349 * *) Either HAVE_RCU_TABLE_FREE is enabled, and tlb_remove_table() is used to
1350 * free pages containing page tables or TLB flushing requires IPI broadcast.
Steve Capper2667f502014-10-09 15:29:14 -07001351 *
Steve Capper2667f502014-10-09 15:29:14 -07001352 * *) ptes can be read atomically by the architecture.
1353 *
1354 * *) access_ok is sufficient to validate userspace address ranges.
1355 *
1356 * The last two assumptions can be relaxed by the addition of helper functions.
1357 *
1358 * This code is based heavily on the PowerPC implementation by Nick Piggin.
1359 */
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001360#ifdef CONFIG_HAVE_GENERIC_GUP
Steve Capper2667f502014-10-09 15:29:14 -07001361
Kirill A. Shutemov0005d202017-03-16 18:26:51 +03001362#ifndef gup_get_pte
1363/*
1364 * We assume that the PTE can be read atomically. If this is not the case for
1365 * your architecture, please provide the helper.
1366 */
1367static inline pte_t gup_get_pte(pte_t *ptep)
1368{
1369 return READ_ONCE(*ptep);
1370}
1371#endif
1372
Guenter Roeckfa099d62019-07-11 20:57:46 -07001373static void __maybe_unused undo_dev_pagemap(int *nr, int nr_start,
1374 struct page **pages)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001375{
1376 while ((*nr) - nr_start) {
1377 struct page *page = pages[--(*nr)];
1378
1379 ClearPageReferenced(page);
1380 put_page(page);
1381 }
1382}
1383
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001384/*
1385 * Return the compund head page with ref appropriately incremented,
1386 * or NULL if that failed.
1387 */
1388static inline struct page *try_get_compound_head(struct page *page, int refs)
1389{
1390 struct page *head = compound_head(page);
1391 if (WARN_ON_ONCE(page_ref_count(head) < 0))
1392 return NULL;
1393 if (unlikely(!page_cache_add_speculative(head, refs)))
1394 return NULL;
1395 return head;
1396}
1397
Laurent Dufour3010a5e2018-06-07 17:06:08 -07001398#ifdef CONFIG_ARCH_HAS_PTE_SPECIAL
Steve Capper2667f502014-10-09 15:29:14 -07001399static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
1400 int write, struct page **pages, int *nr)
1401{
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001402 struct dev_pagemap *pgmap = NULL;
1403 int nr_start = *nr, ret = 0;
Steve Capper2667f502014-10-09 15:29:14 -07001404 pte_t *ptep, *ptem;
Steve Capper2667f502014-10-09 15:29:14 -07001405
1406 ptem = ptep = pte_offset_map(&pmd, addr);
1407 do {
Kirill A. Shutemov0005d202017-03-16 18:26:51 +03001408 pte_t pte = gup_get_pte(ptep);
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001409 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001410
1411 /*
1412 * Similar to the PMD case below, NUMA hinting must take slow
Mel Gorman8a0516e2015-02-12 14:58:22 -08001413 * path using the pte_protnone check.
Steve Capper2667f502014-10-09 15:29:14 -07001414 */
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001415 if (pte_protnone(pte))
1416 goto pte_unmap;
1417
1418 if (!pte_access_permitted(pte, write))
1419 goto pte_unmap;
1420
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001421 if (pte_devmap(pte)) {
1422 pgmap = get_dev_pagemap(pte_pfn(pte), pgmap);
1423 if (unlikely(!pgmap)) {
1424 undo_dev_pagemap(nr, nr_start, pages);
1425 goto pte_unmap;
1426 }
1427 } else if (pte_special(pte))
Steve Capper2667f502014-10-09 15:29:14 -07001428 goto pte_unmap;
1429
1430 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
1431 page = pte_page(pte);
1432
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001433 head = try_get_compound_head(page, 1);
1434 if (!head)
Steve Capper2667f502014-10-09 15:29:14 -07001435 goto pte_unmap;
1436
1437 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001438 put_page(head);
Steve Capper2667f502014-10-09 15:29:14 -07001439 goto pte_unmap;
1440 }
1441
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001442 VM_BUG_ON_PAGE(compound_head(page) != head, page);
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001443
1444 SetPageReferenced(page);
Steve Capper2667f502014-10-09 15:29:14 -07001445 pages[*nr] = page;
1446 (*nr)++;
1447
1448 } while (ptep++, addr += PAGE_SIZE, addr != end);
1449
1450 ret = 1;
1451
1452pte_unmap:
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01001453 if (pgmap)
1454 put_dev_pagemap(pgmap);
Steve Capper2667f502014-10-09 15:29:14 -07001455 pte_unmap(ptem);
1456 return ret;
1457}
1458#else
1459
1460/*
1461 * If we can't determine whether or not a pte is special, then fail immediately
1462 * for ptes. Note, we can still pin HugeTLB and THP as these are guaranteed not
1463 * to be special.
1464 *
1465 * For a futex to be placed on a THP tail page, get_futex_key requires a
1466 * __get_user_pages_fast implementation that can pin pages. Thus it's still
1467 * useful to have gup_huge_pmd even if we can't operate on ptes.
1468 */
1469static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
1470 int write, struct page **pages, int *nr)
1471{
1472 return 0;
1473}
Laurent Dufour3010a5e2018-06-07 17:06:08 -07001474#endif /* CONFIG_ARCH_HAS_PTE_SPECIAL */
Steve Capper2667f502014-10-09 15:29:14 -07001475
Oliver O'Halloran09180ca2017-09-06 16:20:58 -07001476#if defined(__HAVE_ARCH_PTE_DEVMAP) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001477static int __gup_device_huge(unsigned long pfn, unsigned long addr,
1478 unsigned long end, struct page **pages, int *nr)
1479{
1480 int nr_start = *nr;
1481 struct dev_pagemap *pgmap = NULL;
1482
1483 do {
1484 struct page *page = pfn_to_page(pfn);
1485
1486 pgmap = get_dev_pagemap(pfn, pgmap);
1487 if (unlikely(!pgmap)) {
1488 undo_dev_pagemap(nr, nr_start, pages);
1489 return 0;
1490 }
1491 SetPageReferenced(page);
1492 pages[*nr] = page;
1493 get_page(page);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001494 (*nr)++;
1495 pfn++;
1496 } while (addr += PAGE_SIZE, addr != end);
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01001497
1498 if (pgmap)
1499 put_dev_pagemap(pgmap);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001500 return 1;
1501}
1502
Dan Williamsa9b6de72018-04-19 21:32:19 -07001503static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001504 unsigned long end, struct page **pages, int *nr)
1505{
1506 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07001507 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001508
Dan Williamsa9b6de72018-04-19 21:32:19 -07001509 fault_pfn = pmd_pfn(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
1510 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1511 return 0;
1512
1513 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
1514 undo_dev_pagemap(nr, nr_start, pages);
1515 return 0;
1516 }
1517 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001518}
1519
Dan Williamsa9b6de72018-04-19 21:32:19 -07001520static int __gup_device_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001521 unsigned long end, struct page **pages, int *nr)
1522{
1523 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07001524 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001525
Dan Williamsa9b6de72018-04-19 21:32:19 -07001526 fault_pfn = pud_pfn(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
1527 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1528 return 0;
1529
1530 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
1531 undo_dev_pagemap(nr, nr_start, pages);
1532 return 0;
1533 }
1534 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001535}
1536#else
Dan Williamsa9b6de72018-04-19 21:32:19 -07001537static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001538 unsigned long end, struct page **pages, int *nr)
1539{
1540 BUILD_BUG();
1541 return 0;
1542}
1543
Dan Williamsa9b6de72018-04-19 21:32:19 -07001544static int __gup_device_huge_pud(pud_t pud, pud_t *pudp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001545 unsigned long end, struct page **pages, int *nr)
1546{
1547 BUILD_BUG();
1548 return 0;
1549}
1550#endif
1551
Steve Capper2667f502014-10-09 15:29:14 -07001552static int gup_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
1553 unsigned long end, int write, struct page **pages, int *nr)
1554{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001555 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001556 int refs;
1557
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001558 if (!pmd_access_permitted(orig, write))
Steve Capper2667f502014-10-09 15:29:14 -07001559 return 0;
1560
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001561 if (pmd_devmap(orig))
Dan Williamsa9b6de72018-04-19 21:32:19 -07001562 return __gup_device_huge_pmd(orig, pmdp, addr, end, pages, nr);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001563
Steve Capper2667f502014-10-09 15:29:14 -07001564 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001565 page = pmd_page(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
Steve Capper2667f502014-10-09 15:29:14 -07001566 do {
Steve Capper2667f502014-10-09 15:29:14 -07001567 pages[*nr] = page;
1568 (*nr)++;
1569 page++;
1570 refs++;
1571 } while (addr += PAGE_SIZE, addr != end);
1572
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001573 head = try_get_compound_head(pmd_page(orig), refs);
1574 if (!head) {
Steve Capper2667f502014-10-09 15:29:14 -07001575 *nr -= refs;
1576 return 0;
1577 }
1578
1579 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
1580 *nr -= refs;
1581 while (refs--)
1582 put_page(head);
1583 return 0;
1584 }
1585
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001586 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07001587 return 1;
1588}
1589
1590static int gup_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
1591 unsigned long end, int write, struct page **pages, int *nr)
1592{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001593 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001594 int refs;
1595
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001596 if (!pud_access_permitted(orig, write))
Steve Capper2667f502014-10-09 15:29:14 -07001597 return 0;
1598
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001599 if (pud_devmap(orig))
Dan Williamsa9b6de72018-04-19 21:32:19 -07001600 return __gup_device_huge_pud(orig, pudp, addr, end, pages, nr);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001601
Steve Capper2667f502014-10-09 15:29:14 -07001602 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001603 page = pud_page(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
Steve Capper2667f502014-10-09 15:29:14 -07001604 do {
Steve Capper2667f502014-10-09 15:29:14 -07001605 pages[*nr] = page;
1606 (*nr)++;
1607 page++;
1608 refs++;
1609 } while (addr += PAGE_SIZE, addr != end);
1610
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001611 head = try_get_compound_head(pud_page(orig), refs);
1612 if (!head) {
Steve Capper2667f502014-10-09 15:29:14 -07001613 *nr -= refs;
1614 return 0;
1615 }
1616
1617 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
1618 *nr -= refs;
1619 while (refs--)
1620 put_page(head);
1621 return 0;
1622 }
1623
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001624 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07001625 return 1;
1626}
1627
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301628static int gup_huge_pgd(pgd_t orig, pgd_t *pgdp, unsigned long addr,
1629 unsigned long end, int write,
1630 struct page **pages, int *nr)
1631{
1632 int refs;
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001633 struct page *head, *page;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301634
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001635 if (!pgd_access_permitted(orig, write))
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301636 return 0;
1637
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001638 BUILD_BUG_ON(pgd_devmap(orig));
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301639 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001640 page = pgd_page(orig) + ((addr & ~PGDIR_MASK) >> PAGE_SHIFT);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301641 do {
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301642 pages[*nr] = page;
1643 (*nr)++;
1644 page++;
1645 refs++;
1646 } while (addr += PAGE_SIZE, addr != end);
1647
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001648 head = try_get_compound_head(pgd_page(orig), refs);
1649 if (!head) {
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301650 *nr -= refs;
1651 return 0;
1652 }
1653
1654 if (unlikely(pgd_val(orig) != pgd_val(*pgdp))) {
1655 *nr -= refs;
1656 while (refs--)
1657 put_page(head);
1658 return 0;
1659 }
1660
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001661 SetPageReferenced(head);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301662 return 1;
1663}
1664
Steve Capper2667f502014-10-09 15:29:14 -07001665static int gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end,
1666 int write, struct page **pages, int *nr)
1667{
1668 unsigned long next;
1669 pmd_t *pmdp;
1670
1671 pmdp = pmd_offset(&pud, addr);
1672 do {
Christian Borntraeger38c5ce92015-01-06 22:54:46 +01001673 pmd_t pmd = READ_ONCE(*pmdp);
Steve Capper2667f502014-10-09 15:29:14 -07001674
1675 next = pmd_addr_end(addr, end);
Zi Yan84c3fc42017-09-08 16:11:01 -07001676 if (!pmd_present(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07001677 return 0;
1678
Yu Zhao8b1a7762019-02-12 15:35:58 -08001679 if (unlikely(pmd_trans_huge(pmd) || pmd_huge(pmd) ||
1680 pmd_devmap(pmd))) {
Steve Capper2667f502014-10-09 15:29:14 -07001681 /*
1682 * NUMA hinting faults need to be handled in the GUP
1683 * slowpath for accounting purposes and so that they
1684 * can be serialised against THP migration.
1685 */
Mel Gorman8a0516e2015-02-12 14:58:22 -08001686 if (pmd_protnone(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07001687 return 0;
1688
1689 if (!gup_huge_pmd(pmd, pmdp, addr, next, write,
1690 pages, nr))
1691 return 0;
1692
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301693 } else if (unlikely(is_hugepd(__hugepd(pmd_val(pmd))))) {
1694 /*
1695 * architecture have different format for hugetlbfs
1696 * pmd format and THP pmd format
1697 */
1698 if (!gup_huge_pd(__hugepd(pmd_val(pmd)), addr,
1699 PMD_SHIFT, next, write, pages, nr))
1700 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07001701 } else if (!gup_pte_range(pmd, addr, next, write, pages, nr))
Mario Leinweber29231172018-04-05 16:24:18 -07001702 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07001703 } while (pmdp++, addr = next, addr != end);
1704
1705 return 1;
1706}
1707
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001708static int gup_pud_range(p4d_t p4d, unsigned long addr, unsigned long end,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301709 int write, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07001710{
1711 unsigned long next;
1712 pud_t *pudp;
1713
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001714 pudp = pud_offset(&p4d, addr);
Steve Capper2667f502014-10-09 15:29:14 -07001715 do {
Christian Borntraegere37c6982014-12-07 21:41:33 +01001716 pud_t pud = READ_ONCE(*pudp);
Steve Capper2667f502014-10-09 15:29:14 -07001717
1718 next = pud_addr_end(addr, end);
1719 if (pud_none(pud))
1720 return 0;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301721 if (unlikely(pud_huge(pud))) {
Steve Capper2667f502014-10-09 15:29:14 -07001722 if (!gup_huge_pud(pud, pudp, addr, next, write,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301723 pages, nr))
1724 return 0;
1725 } else if (unlikely(is_hugepd(__hugepd(pud_val(pud))))) {
1726 if (!gup_huge_pd(__hugepd(pud_val(pud)), addr,
1727 PUD_SHIFT, next, write, pages, nr))
Steve Capper2667f502014-10-09 15:29:14 -07001728 return 0;
1729 } else if (!gup_pmd_range(pud, addr, next, write, pages, nr))
1730 return 0;
1731 } while (pudp++, addr = next, addr != end);
1732
1733 return 1;
1734}
1735
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001736static int gup_p4d_range(pgd_t pgd, unsigned long addr, unsigned long end,
1737 int write, struct page **pages, int *nr)
1738{
1739 unsigned long next;
1740 p4d_t *p4dp;
1741
1742 p4dp = p4d_offset(&pgd, addr);
1743 do {
1744 p4d_t p4d = READ_ONCE(*p4dp);
1745
1746 next = p4d_addr_end(addr, end);
1747 if (p4d_none(p4d))
1748 return 0;
1749 BUILD_BUG_ON(p4d_huge(p4d));
1750 if (unlikely(is_hugepd(__hugepd(p4d_val(p4d))))) {
1751 if (!gup_huge_pd(__hugepd(p4d_val(p4d)), addr,
1752 P4D_SHIFT, next, write, pages, nr))
1753 return 0;
Kirill A. Shutemovce70df02017-03-13 08:22:13 +03001754 } else if (!gup_pud_range(p4d, addr, next, write, pages, nr))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001755 return 0;
1756 } while (p4dp++, addr = next, addr != end);
1757
1758 return 1;
1759}
1760
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001761static void gup_pgd_range(unsigned long addr, unsigned long end,
1762 int write, struct page **pages, int *nr)
1763{
1764 unsigned long next;
1765 pgd_t *pgdp;
1766
1767 pgdp = pgd_offset(current->mm, addr);
1768 do {
1769 pgd_t pgd = READ_ONCE(*pgdp);
1770
1771 next = pgd_addr_end(addr, end);
1772 if (pgd_none(pgd))
1773 return;
1774 if (unlikely(pgd_huge(pgd))) {
1775 if (!gup_huge_pgd(pgd, pgdp, addr, next, write,
1776 pages, nr))
1777 return;
1778 } else if (unlikely(is_hugepd(__hugepd(pgd_val(pgd))))) {
1779 if (!gup_huge_pd(__hugepd(pgd_val(pgd)), addr,
1780 PGDIR_SHIFT, next, write, pages, nr))
1781 return;
1782 } else if (!gup_p4d_range(pgd, addr, next, write, pages, nr))
1783 return;
1784 } while (pgdp++, addr = next, addr != end);
1785}
1786
1787#ifndef gup_fast_permitted
1788/*
1789 * Check if it's allowed to use __get_user_pages_fast() for the range, or
1790 * we need to fall back to the slow version:
1791 */
1792bool gup_fast_permitted(unsigned long start, int nr_pages, int write)
1793{
1794 unsigned long len, end;
1795
1796 len = (unsigned long) nr_pages << PAGE_SHIFT;
1797 end = start + len;
1798 return end >= start;
1799}
1800#endif
1801
Steve Capper2667f502014-10-09 15:29:14 -07001802/*
1803 * Like get_user_pages_fast() except it's IRQ-safe in that it won't fall back to
Michael S. Tsirkind0811072018-04-13 15:35:23 -07001804 * the regular GUP.
1805 * Note a difference with get_user_pages_fast: this always returns the
1806 * number of pages pinned, 0 if no pages were pinned.
Steve Capper2667f502014-10-09 15:29:14 -07001807 */
1808int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
1809 struct page **pages)
1810{
Steve Capper2667f502014-10-09 15:29:14 -07001811 unsigned long addr, len, end;
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001812 unsigned long flags;
Steve Capper2667f502014-10-09 15:29:14 -07001813 int nr = 0;
1814
1815 start &= PAGE_MASK;
1816 addr = start;
1817 len = (unsigned long) nr_pages << PAGE_SHIFT;
1818 end = start + len;
1819
1820 if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ,
Arnd Bergmannaa2369f2017-05-03 14:56:12 -07001821 (void __user *)start, len)))
Steve Capper2667f502014-10-09 15:29:14 -07001822 return 0;
1823
1824 /*
1825 * Disable interrupts. We use the nested form as we can already have
1826 * interrupts disabled by get_futex_key.
1827 *
1828 * With interrupts disabled, we block page table pages from being
1829 * freed from under us. See mmu_gather_tlb in asm-generic/tlb.h
1830 * for more details.
1831 *
1832 * We do not adopt an rcu_read_lock(.) here as we also want to
1833 * block IPIs that come from THPs splitting.
1834 */
1835
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001836 if (gup_fast_permitted(start, nr_pages, write)) {
1837 local_irq_save(flags);
1838 gup_pgd_range(addr, end, write, pages, &nr);
1839 local_irq_restore(flags);
1840 }
Steve Capper2667f502014-10-09 15:29:14 -07001841
1842 return nr;
1843}
1844
1845/**
1846 * get_user_pages_fast() - pin user pages in memory
1847 * @start: starting user address
1848 * @nr_pages: number of pages from start to pin
1849 * @write: whether pages will be written to
1850 * @pages: array that receives pointers to the pages pinned.
1851 * Should be at least nr_pages long.
1852 *
1853 * Attempt to pin user pages in memory without taking mm->mmap_sem.
1854 * If not successful, it will fall back to taking the lock and
1855 * calling get_user_pages().
1856 *
1857 * Returns number of pages pinned. This may be fewer than the number
1858 * requested. If nr_pages is 0 or negative, returns 0. If no pages
1859 * were pinned, returns -errno.
1860 */
1861int get_user_pages_fast(unsigned long start, int nr_pages, int write,
1862 struct page **pages)
1863{
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001864 unsigned long addr, len, end;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001865 int nr = 0, ret = 0;
Steve Capper2667f502014-10-09 15:29:14 -07001866
1867 start &= PAGE_MASK;
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001868 addr = start;
1869 len = (unsigned long) nr_pages << PAGE_SHIFT;
1870 end = start + len;
1871
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07001872 if (nr_pages <= 0)
1873 return 0;
1874
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001875 if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ,
1876 (void __user *)start, len)))
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07001877 return -EFAULT;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001878
1879 if (gup_fast_permitted(start, nr_pages, write)) {
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001880 local_irq_disable();
1881 gup_pgd_range(addr, end, write, pages, &nr);
1882 local_irq_enable();
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001883 ret = nr;
1884 }
Steve Capper2667f502014-10-09 15:29:14 -07001885
1886 if (nr < nr_pages) {
1887 /* Try to get the remaining pages with get_user_pages */
1888 start += nr << PAGE_SHIFT;
1889 pages += nr;
1890
Lorenzo Stoakesc1641542016-10-13 01:20:13 +01001891 ret = get_user_pages_unlocked(start, nr_pages - nr, pages,
1892 write ? FOLL_WRITE : 0);
Steve Capper2667f502014-10-09 15:29:14 -07001893
1894 /* Have to be a bit careful with return values */
1895 if (nr > 0) {
1896 if (ret < 0)
1897 ret = nr;
1898 else
1899 ret += nr;
1900 }
1901 }
1902
1903 return ret;
1904}
1905
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001906#endif /* CONFIG_HAVE_GENERIC_GUP */