blob: caadd31714a544411a915babd954867453576f2b [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);
461 BUG_ON(pgd_none(*pgd));
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300462 p4d = p4d_offset(pgd, address);
463 BUG_ON(p4d_none(*p4d));
464 pud = pud_offset(p4d, address);
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700465 BUG_ON(pud_none(*pud));
466 pmd = pmd_offset(pud, address);
Zi Yan84c3fc42017-09-08 16:11:01 -0700467 if (!pmd_present(*pmd))
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700468 return -EFAULT;
469 VM_BUG_ON(pmd_trans_huge(*pmd));
470 pte = pte_offset_map(pmd, address);
471 if (pte_none(*pte))
472 goto unmap;
473 *vma = get_gate_vma(mm);
474 if (!page)
475 goto out;
476 *page = vm_normal_page(*vma, address, *pte);
477 if (!*page) {
478 if ((gup_flags & FOLL_DUMP) || !is_zero_pfn(pte_pfn(*pte)))
479 goto unmap;
480 *page = pte_page(*pte);
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700481
482 /*
483 * This should never happen (a device public page in the gate
484 * area).
485 */
486 if (is_device_public_page(*page))
487 goto unmap;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700488 }
Linus Torvaldsd972ebb2019-04-11 10:49:19 -0700489 if (unlikely(!try_get_page(*page))) {
490 ret = -ENOMEM;
491 goto unmap;
492 }
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700493out:
494 ret = 0;
495unmap:
496 pte_unmap(pte);
497 return ret;
498}
499
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700500/*
501 * mmap_sem must be held on entry. If @nonblocking != NULL and
502 * *@flags does not include FOLL_NOWAIT, the mmap_sem may be released.
503 * If it is, *@nonblocking will be set to 0 and -EBUSY returned.
504 */
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700505static int faultin_page(struct task_struct *tsk, struct vm_area_struct *vma,
506 unsigned long address, unsigned int *flags, int *nonblocking)
507{
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700508 unsigned int fault_flags = 0;
Souptick Joarder2b740302018-08-23 17:01:36 -0700509 vm_fault_t ret;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700510
Eric B Munsonde60f5f2015-11-05 18:51:36 -0800511 /* mlock all present pages, but do not fault in new pages */
512 if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK)
513 return -ENOENT;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700514 if (*flags & FOLL_WRITE)
515 fault_flags |= FAULT_FLAG_WRITE;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800516 if (*flags & FOLL_REMOTE)
517 fault_flags |= FAULT_FLAG_REMOTE;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700518 if (nonblocking)
519 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
520 if (*flags & FOLL_NOWAIT)
521 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_RETRY_NOWAIT;
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -0700522 if (*flags & FOLL_TRIED) {
523 VM_WARN_ON_ONCE(fault_flags & FAULT_FLAG_ALLOW_RETRY);
524 fault_flags |= FAULT_FLAG_TRIED;
525 }
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700526
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700527 ret = handle_mm_fault(vma, address, fault_flags);
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700528 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -0700529 int err = vm_fault_to_errno(ret, *flags);
530
531 if (err)
532 return err;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700533 BUG();
534 }
535
536 if (tsk) {
537 if (ret & VM_FAULT_MAJOR)
538 tsk->maj_flt++;
539 else
540 tsk->min_flt++;
541 }
542
543 if (ret & VM_FAULT_RETRY) {
Andrea Arcangeli96312e62018-03-09 15:51:06 -0800544 if (nonblocking && !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700545 *nonblocking = 0;
546 return -EBUSY;
547 }
548
549 /*
550 * The VM_FAULT_WRITE bit tells us that do_wp_page has broken COW when
551 * necessary, even if maybe_mkwrite decided not to set pte_write. We
552 * can thus safely do subsequent page lookups as if they were reads.
553 * But only do so when looping for pte_write is futile: in some cases
554 * userspace may also be wanting to write to the gotten user page,
555 * which a read fault here might prevent (a readonly page might get
556 * reCOWed by userspace write).
557 */
558 if ((ret & VM_FAULT_WRITE) && !(vma->vm_flags & VM_WRITE))
Mario Leinweber29231172018-04-05 16:24:18 -0700559 *flags |= FOLL_COW;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700560 return 0;
561}
562
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700563static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
564{
565 vm_flags_t vm_flags = vma->vm_flags;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800566 int write = (gup_flags & FOLL_WRITE);
567 int foreign = (gup_flags & FOLL_REMOTE);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700568
569 if (vm_flags & (VM_IO | VM_PFNMAP))
570 return -EFAULT;
571
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200572 if (gup_flags & FOLL_ANON && !vma_is_anonymous(vma))
573 return -EFAULT;
574
Dave Hansen1b2ee122016-02-12 13:02:21 -0800575 if (write) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700576 if (!(vm_flags & VM_WRITE)) {
577 if (!(gup_flags & FOLL_FORCE))
578 return -EFAULT;
579 /*
580 * We used to let the write,force case do COW in a
581 * VM_MAYWRITE VM_SHARED !VM_WRITE vma, so ptrace could
582 * set a breakpoint in a read-only mapping of an
583 * executable, without corrupting the file (yet only
584 * when that file had been opened for writing!).
585 * Anon pages in shared mappings are surprising: now
586 * just reject it.
587 */
Hugh Dickins46435362016-01-30 18:03:16 -0800588 if (!is_cow_mapping(vm_flags))
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700589 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700590 }
591 } else if (!(vm_flags & VM_READ)) {
592 if (!(gup_flags & FOLL_FORCE))
593 return -EFAULT;
594 /*
595 * Is there actually any vma we can reach here which does not
596 * have VM_MAYREAD set?
597 */
598 if (!(vm_flags & VM_MAYREAD))
599 return -EFAULT;
600 }
Dave Hansend61172b2016-02-12 13:02:24 -0800601 /*
602 * gups are always data accesses, not instruction
603 * fetches, so execute=false here
604 */
605 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -0800606 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700607 return 0;
608}
609
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700610/**
611 * __get_user_pages() - pin user pages in memory
612 * @tsk: task_struct of target task
613 * @mm: mm_struct of target mm
614 * @start: starting user address
615 * @nr_pages: number of pages from start to pin
616 * @gup_flags: flags modifying pin behaviour
617 * @pages: array that receives pointers to the pages pinned.
618 * Should be at least nr_pages long. Or NULL, if caller
619 * only intends to ensure the pages are faulted in.
620 * @vmas: array of pointers to vmas corresponding to each page.
621 * Or NULL if the caller does not require them.
622 * @nonblocking: whether waiting for disk IO or mmap_sem contention
623 *
624 * Returns number of pages pinned. This may be fewer than the number
625 * requested. If nr_pages is 0 or negative, returns 0. If no pages
626 * were pinned, returns -errno. Each page returned must be released
627 * with a put_page() call when it is finished with. vmas will only
628 * remain valid while mmap_sem is held.
629 *
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700630 * Must be called with mmap_sem held. It may be released. See below.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700631 *
632 * __get_user_pages walks a process's page tables and takes a reference to
633 * each struct page that each user address corresponds to at a given
634 * instant. That is, it takes the page that would be accessed if a user
635 * thread accesses the given user virtual address at that instant.
636 *
637 * This does not guarantee that the page exists in the user mappings when
638 * __get_user_pages returns, and there may even be a completely different
639 * page there in some cases (eg. if mmapped pagecache has been invalidated
640 * and subsequently re faulted). However it does guarantee that the page
641 * won't be freed completely. And mostly callers simply care that the page
642 * contains data that was valid *at some point in time*. Typically, an IO
643 * or similar operation cannot guarantee anything stronger anyway because
644 * locks can't be held over the syscall boundary.
645 *
646 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
647 * the page is written to, set_page_dirty (or set_page_dirty_lock, as
648 * appropriate) must be called after the page is finished with, and
649 * before put_page is called.
650 *
651 * If @nonblocking != NULL, __get_user_pages will not wait for disk IO
652 * or mmap_sem contention, and if waiting is needed to pin all pages,
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700653 * *@nonblocking will be set to 0. Further, if @gup_flags does not
654 * include FOLL_NOWAIT, the mmap_sem will be released via up_read() in
655 * this case.
656 *
657 * A caller using such a combination of @nonblocking and @gup_flags
658 * must therefore hold the mmap_sem for reading only, and recognize
659 * when it's been released. Otherwise, it must be held for either
660 * reading or writing and will not be released.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700661 *
662 * In most cases, get_user_pages or get_user_pages_fast should be used
663 * instead of __get_user_pages. __get_user_pages should be used only if
664 * you need some special @gup_flags.
665 */
Lorenzo Stoakes0d731752016-10-24 10:57:25 +0100666static long __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700667 unsigned long start, unsigned long nr_pages,
668 unsigned int gup_flags, struct page **pages,
669 struct vm_area_struct **vmas, int *nonblocking)
670{
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700671 long i = 0;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700672 unsigned int page_mask;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700673 struct vm_area_struct *vma = NULL;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700674
675 if (!nr_pages)
676 return 0;
677
678 VM_BUG_ON(!!pages != !!(gup_flags & FOLL_GET));
679
680 /*
681 * If FOLL_FORCE is set then do not force a full fault as the hinting
682 * fault information is unrelated to the reference behaviour of a task
683 * using the address space
684 */
685 if (!(gup_flags & FOLL_FORCE))
686 gup_flags |= FOLL_NUMA;
687
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700688 do {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700689 struct page *page;
690 unsigned int foll_flags = gup_flags;
691 unsigned int page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700692
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700693 /* first iteration or cross vma bound */
694 if (!vma || start >= vma->vm_end) {
695 vma = find_extend_vma(mm, start);
696 if (!vma && in_gate_area(mm, start)) {
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700697 int ret;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700698 ret = get_gate_page(mm, start & PAGE_MASK,
699 gup_flags, &vma,
700 pages ? &pages[i] : NULL);
701 if (ret)
702 return i ? : ret;
703 page_mask = 0;
704 goto next_page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700705 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700706
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700707 if (!vma || check_vma_flags(vma, gup_flags))
708 return i ? : -EFAULT;
709 if (is_vm_hugetlb_page(vma)) {
710 i = follow_hugetlb_page(mm, vma, pages, vmas,
711 &start, &nr_pages, i,
Andrea Arcangeli87ffc112017-02-22 15:43:13 -0800712 gup_flags, nonblocking);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700713 continue;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700714 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700715 }
716retry:
717 /*
718 * If we have a pending SIGKILL, don't keep faulting pages and
719 * potentially allocating memory.
720 */
721 if (unlikely(fatal_signal_pending(current)))
722 return i ? i : -ERESTARTSYS;
723 cond_resched();
724 page = follow_page_mask(vma, start, foll_flags, &page_mask);
725 if (!page) {
726 int ret;
727 ret = faultin_page(tsk, vma, start, &foll_flags,
728 nonblocking);
729 switch (ret) {
730 case 0:
731 goto retry;
732 case -EFAULT:
733 case -ENOMEM:
734 case -EHWPOISON:
735 return i ? i : ret;
736 case -EBUSY:
737 return i;
738 case -ENOENT:
739 goto next_page;
740 }
741 BUG();
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700742 } else if (PTR_ERR(page) == -EEXIST) {
743 /*
744 * Proper page table entry exists, but no corresponding
745 * struct page.
746 */
747 goto next_page;
748 } else if (IS_ERR(page)) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700749 return i ? i : PTR_ERR(page);
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700750 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700751 if (pages) {
752 pages[i] = page;
753 flush_anon_page(vma, page, start);
754 flush_dcache_page(page);
755 page_mask = 0;
756 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700757next_page:
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700758 if (vmas) {
759 vmas[i] = vma;
760 page_mask = 0;
761 }
762 page_increm = 1 + (~(start >> PAGE_SHIFT) & page_mask);
763 if (page_increm > nr_pages)
764 page_increm = nr_pages;
765 i += page_increm;
766 start += page_increm * PAGE_SIZE;
767 nr_pages -= page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700768 } while (nr_pages);
769 return i;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700770}
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700771
Tobias Klauser771ab432016-12-12 16:41:53 -0800772static bool vma_permits_fault(struct vm_area_struct *vma,
773 unsigned int fault_flags)
Dave Hansend4925e02016-02-12 13:02:16 -0800774{
Dave Hansen1b2ee122016-02-12 13:02:21 -0800775 bool write = !!(fault_flags & FAULT_FLAG_WRITE);
776 bool foreign = !!(fault_flags & FAULT_FLAG_REMOTE);
Dave Hansen33a709b2016-02-12 13:02:19 -0800777 vm_flags_t vm_flags = write ? VM_WRITE : VM_READ;
Dave Hansend4925e02016-02-12 13:02:16 -0800778
779 if (!(vm_flags & vma->vm_flags))
780 return false;
781
Dave Hansen33a709b2016-02-12 13:02:19 -0800782 /*
783 * The architecture might have a hardware protection
Dave Hansen1b2ee122016-02-12 13:02:21 -0800784 * mechanism other than read/write that can deny access.
Dave Hansend61172b2016-02-12 13:02:24 -0800785 *
786 * gup always represents data access, not instruction
787 * fetches, so execute=false here:
Dave Hansen33a709b2016-02-12 13:02:19 -0800788 */
Dave Hansend61172b2016-02-12 13:02:24 -0800789 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -0800790 return false;
791
Dave Hansend4925e02016-02-12 13:02:16 -0800792 return true;
793}
794
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700795/*
796 * fixup_user_fault() - manually resolve a user page fault
797 * @tsk: the task_struct to use for page fault accounting, or
798 * NULL if faults are not to be recorded.
799 * @mm: mm_struct of target mm
800 * @address: user address
801 * @fault_flags:flags to pass down to handle_mm_fault()
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800802 * @unlocked: did we unlock the mmap_sem while retrying, maybe NULL if caller
803 * does not allow retry
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700804 *
805 * This is meant to be called in the specific scenario where for locking reasons
806 * we try to access user memory in atomic context (within a pagefault_disable()
807 * section), this returns -EFAULT, and we want to resolve the user fault before
808 * trying again.
809 *
810 * Typically this is meant to be used by the futex code.
811 *
812 * The main difference with get_user_pages() is that this function will
813 * unconditionally call handle_mm_fault() which will in turn perform all the
814 * necessary SW fixup of the dirty and young bits in the PTE, while
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800815 * get_user_pages() only guarantees to update these in the struct page.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700816 *
817 * This is important for some architectures where those bits also gate the
818 * access permission to the page because they are maintained in software. On
819 * such architectures, gup() will not be enough to make a subsequent access
820 * succeed.
821 *
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800822 * This function will not return with an unlocked mmap_sem. So it has not the
823 * same semantics wrt the @mm->mmap_sem as does filemap_fault().
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700824 */
825int fixup_user_fault(struct task_struct *tsk, struct mm_struct *mm,
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800826 unsigned long address, unsigned int fault_flags,
827 bool *unlocked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700828{
829 struct vm_area_struct *vma;
Souptick Joarder2b740302018-08-23 17:01:36 -0700830 vm_fault_t ret, major = 0;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700831
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800832 if (unlocked)
833 fault_flags |= FAULT_FLAG_ALLOW_RETRY;
834
835retry:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700836 vma = find_extend_vma(mm, address);
837 if (!vma || address < vma->vm_start)
838 return -EFAULT;
839
Dave Hansend4925e02016-02-12 13:02:16 -0800840 if (!vma_permits_fault(vma, fault_flags))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700841 return -EFAULT;
842
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700843 ret = handle_mm_fault(vma, address, fault_flags);
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800844 major |= ret & VM_FAULT_MAJOR;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700845 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -0700846 int err = vm_fault_to_errno(ret, 0);
847
848 if (err)
849 return err;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700850 BUG();
851 }
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800852
853 if (ret & VM_FAULT_RETRY) {
854 down_read(&mm->mmap_sem);
855 if (!(fault_flags & FAULT_FLAG_TRIED)) {
856 *unlocked = true;
857 fault_flags &= ~FAULT_FLAG_ALLOW_RETRY;
858 fault_flags |= FAULT_FLAG_TRIED;
859 goto retry;
860 }
861 }
862
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700863 if (tsk) {
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800864 if (major)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700865 tsk->maj_flt++;
866 else
867 tsk->min_flt++;
868 }
869 return 0;
870}
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +0200871EXPORT_SYMBOL_GPL(fixup_user_fault);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700872
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800873static __always_inline long __get_user_pages_locked(struct task_struct *tsk,
874 struct mm_struct *mm,
875 unsigned long start,
876 unsigned long nr_pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800877 struct page **pages,
878 struct vm_area_struct **vmas,
Al Viroe7167122017-11-19 11:32:05 -0500879 int *locked,
Andrea Arcangeli0fd71a52015-02-11 15:27:20 -0800880 unsigned int flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800881{
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800882 long ret, pages_done;
883 bool lock_dropped;
884
885 if (locked) {
886 /* if VM_FAULT_RETRY can be returned, vmas become invalid */
887 BUG_ON(vmas);
888 /* check caller initialized locked */
889 BUG_ON(*locked != 1);
890 }
891
892 if (pages)
893 flags |= FOLL_GET;
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800894
895 pages_done = 0;
896 lock_dropped = false;
897 for (;;) {
898 ret = __get_user_pages(tsk, mm, start, nr_pages, flags, pages,
899 vmas, locked);
900 if (!locked)
901 /* VM_FAULT_RETRY couldn't trigger, bypass */
902 return ret;
903
904 /* VM_FAULT_RETRY cannot return errors */
905 if (!*locked) {
906 BUG_ON(ret < 0);
907 BUG_ON(ret >= nr_pages);
908 }
909
910 if (!pages)
911 /* If it's a prefault don't insist harder */
912 return ret;
913
914 if (ret > 0) {
915 nr_pages -= ret;
916 pages_done += ret;
917 if (!nr_pages)
918 break;
919 }
920 if (*locked) {
Andrea Arcangeli96312e62018-03-09 15:51:06 -0800921 /*
922 * VM_FAULT_RETRY didn't trigger or it was a
923 * FOLL_NOWAIT.
924 */
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800925 if (!pages_done)
926 pages_done = ret;
927 break;
928 }
929 /* VM_FAULT_RETRY triggered, so seek to the faulting offset */
930 pages += ret;
931 start += ret << PAGE_SHIFT;
932
933 /*
934 * Repeat on the address that fired VM_FAULT_RETRY
935 * without FAULT_FLAG_ALLOW_RETRY but with
936 * FAULT_FLAG_TRIED.
937 */
938 *locked = 1;
939 lock_dropped = true;
940 down_read(&mm->mmap_sem);
941 ret = __get_user_pages(tsk, mm, start, 1, flags | FOLL_TRIED,
942 pages, NULL, NULL);
943 if (ret != 1) {
944 BUG_ON(ret > 1);
945 if (!pages_done)
946 pages_done = ret;
947 break;
948 }
949 nr_pages--;
950 pages_done++;
951 if (!nr_pages)
952 break;
953 pages++;
954 start += PAGE_SIZE;
955 }
Al Viroe7167122017-11-19 11:32:05 -0500956 if (lock_dropped && *locked) {
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800957 /*
958 * We must let the caller know we temporarily dropped the lock
959 * and so the critical section protected by it was lost.
960 */
961 up_read(&mm->mmap_sem);
962 *locked = 0;
963 }
964 return pages_done;
965}
966
967/*
968 * We can leverage the VM_FAULT_RETRY functionality in the page fault
969 * paths better by using either get_user_pages_locked() or
970 * get_user_pages_unlocked().
971 *
972 * get_user_pages_locked() is suitable to replace the form:
973 *
974 * down_read(&mm->mmap_sem);
975 * do_something()
976 * get_user_pages(tsk, mm, ..., pages, NULL);
977 * up_read(&mm->mmap_sem);
978 *
979 * to:
980 *
981 * int locked = 1;
982 * down_read(&mm->mmap_sem);
983 * do_something()
984 * get_user_pages_locked(tsk, mm, ..., pages, &locked);
985 * if (locked)
986 * up_read(&mm->mmap_sem);
987 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +0200988long get_user_pages_locked(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes3b913172016-10-13 01:20:14 +0100989 unsigned int gup_flags, struct page **pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800990 int *locked)
991{
Dave Hansencde70142016-02-12 13:01:55 -0800992 return __get_user_pages_locked(current, current->mm, start, nr_pages,
Al Viroe7167122017-11-19 11:32:05 -0500993 pages, NULL, locked,
Lorenzo Stoakes3b913172016-10-13 01:20:14 +0100994 gup_flags | FOLL_TOUCH);
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800995}
Ingo Molnarc12d2da2016-04-04 10:24:58 +0200996EXPORT_SYMBOL(get_user_pages_locked);
Andrea Arcangelif0818f42015-02-11 15:27:17 -0800997
998/*
999 * get_user_pages_unlocked() is suitable to replace the form:
1000 *
1001 * down_read(&mm->mmap_sem);
1002 * get_user_pages(tsk, mm, ..., pages, NULL);
1003 * up_read(&mm->mmap_sem);
1004 *
1005 * with:
1006 *
1007 * get_user_pages_unlocked(tsk, mm, ..., pages);
1008 *
1009 * It is functionally equivalent to get_user_pages_fast so
Lorenzo Stoakes80a79512016-12-12 16:42:46 -08001010 * get_user_pages_fast should be used instead if specific gup_flags
1011 * (e.g. FOLL_FORCE) are not required.
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001012 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001013long get_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakesc1641542016-10-13 01:20:13 +01001014 struct page **pages, unsigned int gup_flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001015{
Al Viroc803c9c2017-11-18 14:17:46 -05001016 struct mm_struct *mm = current->mm;
1017 int locked = 1;
1018 long ret;
1019
1020 down_read(&mm->mmap_sem);
1021 ret = __get_user_pages_locked(current, mm, start, nr_pages, pages, NULL,
Al Viroe7167122017-11-19 11:32:05 -05001022 &locked, gup_flags | FOLL_TOUCH);
Al Viroc803c9c2017-11-18 14:17:46 -05001023 if (locked)
1024 up_read(&mm->mmap_sem);
1025 return ret;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001026}
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001027EXPORT_SYMBOL(get_user_pages_unlocked);
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001028
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001029/*
Dave Hansen1e987792016-02-12 13:01:54 -08001030 * get_user_pages_remote() - pin user pages in memory
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001031 * @tsk: the task_struct to use for page fault accounting, or
1032 * NULL if faults are not to be recorded.
1033 * @mm: mm_struct of target mm
1034 * @start: starting user address
1035 * @nr_pages: number of pages from start to pin
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001036 * @gup_flags: flags modifying lookup behaviour
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001037 * @pages: array that receives pointers to the pages pinned.
1038 * Should be at least nr_pages long. Or NULL, if caller
1039 * only intends to ensure the pages are faulted in.
1040 * @vmas: array of pointers to vmas corresponding to each page.
1041 * Or NULL if the caller does not require them.
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001042 * @locked: pointer to lock flag indicating whether lock is held and
1043 * subsequently whether VM_FAULT_RETRY functionality can be
1044 * utilised. Lock must initially be held.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001045 *
1046 * Returns number of pages pinned. This may be fewer than the number
1047 * requested. If nr_pages is 0 or negative, returns 0. If no pages
1048 * were pinned, returns -errno. Each page returned must be released
1049 * with a put_page() call when it is finished with. vmas will only
1050 * remain valid while mmap_sem is held.
1051 *
1052 * Must be called with mmap_sem held for read or write.
1053 *
1054 * get_user_pages walks a process's page tables and takes a reference to
1055 * each struct page that each user address corresponds to at a given
1056 * instant. That is, it takes the page that would be accessed if a user
1057 * thread accesses the given user virtual address at that instant.
1058 *
1059 * This does not guarantee that the page exists in the user mappings when
1060 * get_user_pages returns, and there may even be a completely different
1061 * page there in some cases (eg. if mmapped pagecache has been invalidated
1062 * and subsequently re faulted). However it does guarantee that the page
1063 * won't be freed completely. And mostly callers simply care that the page
1064 * contains data that was valid *at some point in time*. Typically, an IO
1065 * or similar operation cannot guarantee anything stronger anyway because
1066 * locks can't be held over the syscall boundary.
1067 *
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001068 * If gup_flags & FOLL_WRITE == 0, the page must not be written to. If the page
1069 * is written to, set_page_dirty (or set_page_dirty_lock, as appropriate) must
1070 * be called after the page is finished with, and before put_page is called.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001071 *
1072 * get_user_pages is typically used for fewer-copy IO operations, to get a
1073 * handle on the memory by some means other than accesses via the user virtual
1074 * addresses. The pages may be submitted for DMA to devices or accessed via
1075 * their kernel linear mapping (via the kmap APIs). Care should be taken to
1076 * use the correct cache flushing APIs.
1077 *
1078 * See also get_user_pages_fast, for performance critical applications.
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001079 *
1080 * get_user_pages should be phased out in favor of
1081 * get_user_pages_locked|unlocked or get_user_pages_fast. Nothing
1082 * should use get_user_pages because it cannot pass
1083 * FAULT_FLAG_ALLOW_RETRY to handle_mm_fault.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001084 */
Dave Hansen1e987792016-02-12 13:01:54 -08001085long get_user_pages_remote(struct task_struct *tsk, struct mm_struct *mm,
1086 unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001087 unsigned int gup_flags, struct page **pages,
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001088 struct vm_area_struct **vmas, int *locked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001089{
Lorenzo Stoakes859110d2016-10-13 01:20:11 +01001090 return __get_user_pages_locked(tsk, mm, start, nr_pages, pages, vmas,
Al Viroe7167122017-11-19 11:32:05 -05001091 locked,
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001092 gup_flags | FOLL_TOUCH | FOLL_REMOTE);
Dave Hansen1e987792016-02-12 13:01:54 -08001093}
1094EXPORT_SYMBOL(get_user_pages_remote);
1095
1096/*
Dave Hansend4edcf02016-02-12 13:01:56 -08001097 * This is the same as get_user_pages_remote(), just with a
1098 * less-flexible calling convention where we assume that the task
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -08001099 * and mm being operated on are the current task's and don't allow
1100 * passing of a locked parameter. We also obviously don't pass
1101 * FOLL_REMOTE in here.
Dave Hansen1e987792016-02-12 13:01:54 -08001102 */
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001103long get_user_pages(unsigned long start, unsigned long nr_pages,
Lorenzo Stoakes768ae302016-10-13 01:20:16 +01001104 unsigned int gup_flags, struct page **pages,
Dave Hansen1e987792016-02-12 13:01:54 -08001105 struct vm_area_struct **vmas)
1106{
Dave Hansencde70142016-02-12 13:01:55 -08001107 return __get_user_pages_locked(current, current->mm, start, nr_pages,
Al Viroe7167122017-11-19 11:32:05 -05001108 pages, vmas, NULL,
Lorenzo Stoakes768ae302016-10-13 01:20:16 +01001109 gup_flags | FOLL_TOUCH);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001110}
Ingo Molnarc12d2da2016-04-04 10:24:58 +02001111EXPORT_SYMBOL(get_user_pages);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001112
Dan Williams2bb6d282017-11-29 16:10:35 -08001113#ifdef CONFIG_FS_DAX
1114/*
1115 * This is the same as get_user_pages() in that it assumes we are
1116 * operating on the current task's mm, but it goes further to validate
1117 * that the vmas associated with the address range are suitable for
1118 * longterm elevated page reference counts. For example, filesystem-dax
1119 * mappings are subject to the lifetime enforced by the filesystem and
1120 * we need guarantees that longterm users like RDMA and V4L2 only
1121 * establish mappings that have a kernel enforced revocation mechanism.
1122 *
1123 * "longterm" == userspace controlled elevated page count lifetime.
1124 * Contrast this to iov_iter_get_pages() usages which are transient.
1125 */
1126long get_user_pages_longterm(unsigned long start, unsigned long nr_pages,
1127 unsigned int gup_flags, struct page **pages,
1128 struct vm_area_struct **vmas_arg)
1129{
1130 struct vm_area_struct **vmas = vmas_arg;
1131 struct vm_area_struct *vma_prev = NULL;
1132 long rc, i;
1133
1134 if (!pages)
1135 return -EINVAL;
1136
1137 if (!vmas) {
1138 vmas = kcalloc(nr_pages, sizeof(struct vm_area_struct *),
1139 GFP_KERNEL);
1140 if (!vmas)
1141 return -ENOMEM;
1142 }
1143
1144 rc = get_user_pages(start, nr_pages, gup_flags, pages, vmas);
1145
1146 for (i = 0; i < rc; i++) {
1147 struct vm_area_struct *vma = vmas[i];
1148
1149 if (vma == vma_prev)
1150 continue;
1151
1152 vma_prev = vma;
1153
1154 if (vma_is_fsdax(vma))
1155 break;
1156 }
1157
1158 /*
1159 * Either get_user_pages() failed, or the vma validation
1160 * succeeded, in either case we don't need to put_page() before
1161 * returning.
1162 */
1163 if (i >= rc)
1164 goto out;
1165
1166 for (i = 0; i < rc; i++)
1167 put_page(pages[i]);
1168 rc = -EOPNOTSUPP;
1169out:
1170 if (vmas != vmas_arg)
1171 kfree(vmas);
1172 return rc;
1173}
1174EXPORT_SYMBOL(get_user_pages_longterm);
1175#endif /* CONFIG_FS_DAX */
1176
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001177/**
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001178 * populate_vma_page_range() - populate a range of pages in the vma.
1179 * @vma: target vma
1180 * @start: start address
1181 * @end: end address
1182 * @nonblocking:
1183 *
1184 * This takes care of mlocking the pages too if VM_LOCKED is set.
1185 *
1186 * return 0 on success, negative error code on error.
1187 *
1188 * vma->vm_mm->mmap_sem must be held.
1189 *
1190 * If @nonblocking is NULL, it may be held for read or write and will
1191 * be unperturbed.
1192 *
1193 * If @nonblocking is non-NULL, it must held for read only and may be
1194 * released. If it's released, *@nonblocking will be set to 0.
1195 */
1196long populate_vma_page_range(struct vm_area_struct *vma,
1197 unsigned long start, unsigned long end, int *nonblocking)
1198{
1199 struct mm_struct *mm = vma->vm_mm;
1200 unsigned long nr_pages = (end - start) / PAGE_SIZE;
1201 int gup_flags;
1202
1203 VM_BUG_ON(start & ~PAGE_MASK);
1204 VM_BUG_ON(end & ~PAGE_MASK);
1205 VM_BUG_ON_VMA(start < vma->vm_start, vma);
1206 VM_BUG_ON_VMA(end > vma->vm_end, vma);
1207 VM_BUG_ON_MM(!rwsem_is_locked(&mm->mmap_sem), mm);
1208
Eric B Munsonde60f5f2015-11-05 18:51:36 -08001209 gup_flags = FOLL_TOUCH | FOLL_POPULATE | FOLL_MLOCK;
1210 if (vma->vm_flags & VM_LOCKONFAULT)
1211 gup_flags &= ~FOLL_POPULATE;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001212 /*
1213 * We want to touch writable mappings with a write fault in order
1214 * to break COW, except for shared mappings because these don't COW
1215 * and we would not want to dirty them for nothing.
1216 */
1217 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
1218 gup_flags |= FOLL_WRITE;
1219
1220 /*
1221 * We want mlock to succeed for regions that have any permissions
1222 * other than PROT_NONE.
1223 */
1224 if (vma->vm_flags & (VM_READ | VM_WRITE | VM_EXEC))
1225 gup_flags |= FOLL_FORCE;
1226
1227 /*
1228 * We made sure addr is within a VMA, so the following will
1229 * not result in a stack expansion that recurses back here.
1230 */
1231 return __get_user_pages(current, mm, start, nr_pages, gup_flags,
1232 NULL, NULL, nonblocking);
1233}
1234
1235/*
1236 * __mm_populate - populate and/or mlock pages within a range of address space.
1237 *
1238 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
1239 * flags. VMAs must be already marked with the desired vm_flags, and
1240 * mmap_sem must not be held.
1241 */
1242int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
1243{
1244 struct mm_struct *mm = current->mm;
1245 unsigned long end, nstart, nend;
1246 struct vm_area_struct *vma = NULL;
1247 int locked = 0;
1248 long ret = 0;
1249
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001250 end = start + len;
1251
1252 for (nstart = start; nstart < end; nstart = nend) {
1253 /*
1254 * We want to fault in pages for [nstart; end) address range.
1255 * Find first corresponding VMA.
1256 */
1257 if (!locked) {
1258 locked = 1;
1259 down_read(&mm->mmap_sem);
1260 vma = find_vma(mm, nstart);
1261 } else if (nstart >= vma->vm_end)
1262 vma = vma->vm_next;
1263 if (!vma || vma->vm_start >= end)
1264 break;
1265 /*
1266 * Set [nstart; nend) to intersection of desired address
1267 * range with the first VMA. Also, skip undesirable VMA types.
1268 */
1269 nend = min(end, vma->vm_end);
1270 if (vma->vm_flags & (VM_IO | VM_PFNMAP))
1271 continue;
1272 if (nstart < vma->vm_start)
1273 nstart = vma->vm_start;
1274 /*
1275 * Now fault in a range of pages. populate_vma_page_range()
1276 * double checks the vma flags, so that it won't mlock pages
1277 * if the vma was already munlocked.
1278 */
1279 ret = populate_vma_page_range(vma, nstart, nend, &locked);
1280 if (ret < 0) {
1281 if (ignore_errors) {
1282 ret = 0;
1283 continue; /* continue at next VMA */
1284 }
1285 break;
1286 }
1287 nend = nstart + ret * PAGE_SIZE;
1288 ret = 0;
1289 }
1290 if (locked)
1291 up_read(&mm->mmap_sem);
1292 return ret; /* 0 or negative error code */
1293}
1294
1295/**
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001296 * get_dump_page() - pin user page in memory while writing it to core dump
1297 * @addr: user address
1298 *
1299 * Returns struct page pointer of user page pinned for dump,
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03001300 * to be freed afterwards by put_page().
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001301 *
1302 * Returns NULL on any kind of failure - a hole must then be inserted into
1303 * the corefile, to preserve alignment with its headers; and also returns
1304 * NULL wherever the ZERO_PAGE, or an anonymous pte_none, has been found -
1305 * allowing a hole to be left in the corefile to save diskspace.
1306 *
1307 * Called without mmap_sem, but after all other threads have been killed.
1308 */
1309#ifdef CONFIG_ELF_CORE
1310struct page *get_dump_page(unsigned long addr)
1311{
1312 struct vm_area_struct *vma;
1313 struct page *page;
1314
1315 if (__get_user_pages(current, current->mm, addr, 1,
1316 FOLL_FORCE | FOLL_DUMP | FOLL_GET, &page, &vma,
1317 NULL) < 1)
1318 return NULL;
1319 flush_cache_page(vma, addr, page_to_pfn(page));
1320 return page;
1321}
1322#endif /* CONFIG_ELF_CORE */
Steve Capper2667f502014-10-09 15:29:14 -07001323
1324/*
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001325 * Generic Fast GUP
Steve Capper2667f502014-10-09 15:29:14 -07001326 *
1327 * get_user_pages_fast attempts to pin user pages by walking the page
1328 * tables directly and avoids taking locks. Thus the walker needs to be
1329 * protected from page table pages being freed from under it, and should
1330 * block any THP splits.
1331 *
1332 * One way to achieve this is to have the walker disable interrupts, and
1333 * rely on IPIs from the TLB flushing code blocking before the page table
1334 * pages are freed. This is unsuitable for architectures that do not need
1335 * to broadcast an IPI when invalidating TLBs.
1336 *
1337 * Another way to achieve this is to batch up page table containing pages
1338 * belonging to more than one mm_user, then rcu_sched a callback to free those
1339 * pages. Disabling interrupts will allow the fast_gup walker to both block
1340 * the rcu_sched callback, and an IPI that we broadcast for splitting THPs
1341 * (which is a relatively rare event). The code below adopts this strategy.
1342 *
1343 * Before activating this code, please be aware that the following assumptions
1344 * are currently made:
1345 *
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001346 * *) Either HAVE_RCU_TABLE_FREE is enabled, and tlb_remove_table() is used to
1347 * free pages containing page tables or TLB flushing requires IPI broadcast.
Steve Capper2667f502014-10-09 15:29:14 -07001348 *
Steve Capper2667f502014-10-09 15:29:14 -07001349 * *) ptes can be read atomically by the architecture.
1350 *
1351 * *) access_ok is sufficient to validate userspace address ranges.
1352 *
1353 * The last two assumptions can be relaxed by the addition of helper functions.
1354 *
1355 * This code is based heavily on the PowerPC implementation by Nick Piggin.
1356 */
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001357#ifdef CONFIG_HAVE_GENERIC_GUP
Steve Capper2667f502014-10-09 15:29:14 -07001358
Kirill A. Shutemov0005d202017-03-16 18:26:51 +03001359#ifndef gup_get_pte
1360/*
1361 * We assume that the PTE can be read atomically. If this is not the case for
1362 * your architecture, please provide the helper.
1363 */
1364static inline pte_t gup_get_pte(pte_t *ptep)
1365{
1366 return READ_ONCE(*ptep);
1367}
1368#endif
1369
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001370static void undo_dev_pagemap(int *nr, int nr_start, struct page **pages)
1371{
1372 while ((*nr) - nr_start) {
1373 struct page *page = pages[--(*nr)];
1374
1375 ClearPageReferenced(page);
1376 put_page(page);
1377 }
1378}
1379
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001380/*
1381 * Return the compund head page with ref appropriately incremented,
1382 * or NULL if that failed.
1383 */
1384static inline struct page *try_get_compound_head(struct page *page, int refs)
1385{
1386 struct page *head = compound_head(page);
1387 if (WARN_ON_ONCE(page_ref_count(head) < 0))
1388 return NULL;
1389 if (unlikely(!page_cache_add_speculative(head, refs)))
1390 return NULL;
1391 return head;
1392}
1393
Laurent Dufour3010a5e2018-06-07 17:06:08 -07001394#ifdef CONFIG_ARCH_HAS_PTE_SPECIAL
Steve Capper2667f502014-10-09 15:29:14 -07001395static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
1396 int write, struct page **pages, int *nr)
1397{
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001398 struct dev_pagemap *pgmap = NULL;
1399 int nr_start = *nr, ret = 0;
Steve Capper2667f502014-10-09 15:29:14 -07001400 pte_t *ptep, *ptem;
Steve Capper2667f502014-10-09 15:29:14 -07001401
1402 ptem = ptep = pte_offset_map(&pmd, addr);
1403 do {
Kirill A. Shutemov0005d202017-03-16 18:26:51 +03001404 pte_t pte = gup_get_pte(ptep);
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001405 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001406
1407 /*
1408 * Similar to the PMD case below, NUMA hinting must take slow
Mel Gorman8a0516e2015-02-12 14:58:22 -08001409 * path using the pte_protnone check.
Steve Capper2667f502014-10-09 15:29:14 -07001410 */
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001411 if (pte_protnone(pte))
1412 goto pte_unmap;
1413
1414 if (!pte_access_permitted(pte, write))
1415 goto pte_unmap;
1416
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001417 if (pte_devmap(pte)) {
1418 pgmap = get_dev_pagemap(pte_pfn(pte), pgmap);
1419 if (unlikely(!pgmap)) {
1420 undo_dev_pagemap(nr, nr_start, pages);
1421 goto pte_unmap;
1422 }
1423 } else if (pte_special(pte))
Steve Capper2667f502014-10-09 15:29:14 -07001424 goto pte_unmap;
1425
1426 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
1427 page = pte_page(pte);
1428
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001429 head = try_get_compound_head(page, 1);
1430 if (!head)
Steve Capper2667f502014-10-09 15:29:14 -07001431 goto pte_unmap;
1432
1433 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001434 put_page(head);
Steve Capper2667f502014-10-09 15:29:14 -07001435 goto pte_unmap;
1436 }
1437
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08001438 VM_BUG_ON_PAGE(compound_head(page) != head, page);
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001439
1440 SetPageReferenced(page);
Steve Capper2667f502014-10-09 15:29:14 -07001441 pages[*nr] = page;
1442 (*nr)++;
1443
1444 } while (ptep++, addr += PAGE_SIZE, addr != end);
1445
1446 ret = 1;
1447
1448pte_unmap:
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01001449 if (pgmap)
1450 put_dev_pagemap(pgmap);
Steve Capper2667f502014-10-09 15:29:14 -07001451 pte_unmap(ptem);
1452 return ret;
1453}
1454#else
1455
1456/*
1457 * If we can't determine whether or not a pte is special, then fail immediately
1458 * for ptes. Note, we can still pin HugeTLB and THP as these are guaranteed not
1459 * to be special.
1460 *
1461 * For a futex to be placed on a THP tail page, get_futex_key requires a
1462 * __get_user_pages_fast implementation that can pin pages. Thus it's still
1463 * useful to have gup_huge_pmd even if we can't operate on ptes.
1464 */
1465static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
1466 int write, struct page **pages, int *nr)
1467{
1468 return 0;
1469}
Laurent Dufour3010a5e2018-06-07 17:06:08 -07001470#endif /* CONFIG_ARCH_HAS_PTE_SPECIAL */
Steve Capper2667f502014-10-09 15:29:14 -07001471
Oliver O'Halloran09180ca2017-09-06 16:20:58 -07001472#if defined(__HAVE_ARCH_PTE_DEVMAP) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001473static int __gup_device_huge(unsigned long pfn, unsigned long addr,
1474 unsigned long end, struct page **pages, int *nr)
1475{
1476 int nr_start = *nr;
1477 struct dev_pagemap *pgmap = NULL;
1478
1479 do {
1480 struct page *page = pfn_to_page(pfn);
1481
1482 pgmap = get_dev_pagemap(pfn, pgmap);
1483 if (unlikely(!pgmap)) {
1484 undo_dev_pagemap(nr, nr_start, pages);
1485 return 0;
1486 }
1487 SetPageReferenced(page);
1488 pages[*nr] = page;
1489 get_page(page);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001490 (*nr)++;
1491 pfn++;
1492 } while (addr += PAGE_SIZE, addr != end);
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01001493
1494 if (pgmap)
1495 put_dev_pagemap(pgmap);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001496 return 1;
1497}
1498
Dan Williamsa9b6de72018-04-19 21:32:19 -07001499static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001500 unsigned long end, struct page **pages, int *nr)
1501{
1502 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07001503 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001504
Dan Williamsa9b6de72018-04-19 21:32:19 -07001505 fault_pfn = pmd_pfn(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
1506 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1507 return 0;
1508
1509 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
1510 undo_dev_pagemap(nr, nr_start, pages);
1511 return 0;
1512 }
1513 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001514}
1515
Dan Williamsa9b6de72018-04-19 21:32:19 -07001516static int __gup_device_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001517 unsigned long end, struct page **pages, int *nr)
1518{
1519 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07001520 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001521
Dan Williamsa9b6de72018-04-19 21:32:19 -07001522 fault_pfn = pud_pfn(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
1523 if (!__gup_device_huge(fault_pfn, addr, end, pages, nr))
1524 return 0;
1525
1526 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
1527 undo_dev_pagemap(nr, nr_start, pages);
1528 return 0;
1529 }
1530 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001531}
1532#else
Dan Williamsa9b6de72018-04-19 21:32:19 -07001533static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001534 unsigned long end, struct page **pages, int *nr)
1535{
1536 BUILD_BUG();
1537 return 0;
1538}
1539
Dan Williamsa9b6de72018-04-19 21:32:19 -07001540static int __gup_device_huge_pud(pud_t pud, pud_t *pudp, unsigned long addr,
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001541 unsigned long end, struct page **pages, int *nr)
1542{
1543 BUILD_BUG();
1544 return 0;
1545}
1546#endif
1547
Steve Capper2667f502014-10-09 15:29:14 -07001548static int gup_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
1549 unsigned long end, int write, struct page **pages, int *nr)
1550{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001551 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001552 int refs;
1553
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001554 if (!pmd_access_permitted(orig, write))
Steve Capper2667f502014-10-09 15:29:14 -07001555 return 0;
1556
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001557 if (pmd_devmap(orig))
Dan Williamsa9b6de72018-04-19 21:32:19 -07001558 return __gup_device_huge_pmd(orig, pmdp, addr, end, pages, nr);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001559
Steve Capper2667f502014-10-09 15:29:14 -07001560 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001561 page = pmd_page(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
Steve Capper2667f502014-10-09 15:29:14 -07001562 do {
Steve Capper2667f502014-10-09 15:29:14 -07001563 pages[*nr] = page;
1564 (*nr)++;
1565 page++;
1566 refs++;
1567 } while (addr += PAGE_SIZE, addr != end);
1568
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001569 head = try_get_compound_head(pmd_page(orig), refs);
1570 if (!head) {
Steve Capper2667f502014-10-09 15:29:14 -07001571 *nr -= refs;
1572 return 0;
1573 }
1574
1575 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
1576 *nr -= refs;
1577 while (refs--)
1578 put_page(head);
1579 return 0;
1580 }
1581
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001582 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07001583 return 1;
1584}
1585
1586static int gup_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
1587 unsigned long end, int write, struct page **pages, int *nr)
1588{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001589 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07001590 int refs;
1591
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001592 if (!pud_access_permitted(orig, write))
Steve Capper2667f502014-10-09 15:29:14 -07001593 return 0;
1594
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001595 if (pud_devmap(orig))
Dan Williamsa9b6de72018-04-19 21:32:19 -07001596 return __gup_device_huge_pud(orig, pudp, addr, end, pages, nr);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001597
Steve Capper2667f502014-10-09 15:29:14 -07001598 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001599 page = pud_page(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
Steve Capper2667f502014-10-09 15:29:14 -07001600 do {
Steve Capper2667f502014-10-09 15:29:14 -07001601 pages[*nr] = page;
1602 (*nr)++;
1603 page++;
1604 refs++;
1605 } while (addr += PAGE_SIZE, addr != end);
1606
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001607 head = try_get_compound_head(pud_page(orig), refs);
1608 if (!head) {
Steve Capper2667f502014-10-09 15:29:14 -07001609 *nr -= refs;
1610 return 0;
1611 }
1612
1613 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
1614 *nr -= refs;
1615 while (refs--)
1616 put_page(head);
1617 return 0;
1618 }
1619
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001620 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07001621 return 1;
1622}
1623
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301624static int gup_huge_pgd(pgd_t orig, pgd_t *pgdp, unsigned long addr,
1625 unsigned long end, int write,
1626 struct page **pages, int *nr)
1627{
1628 int refs;
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001629 struct page *head, *page;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301630
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03001631 if (!pgd_access_permitted(orig, write))
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301632 return 0;
1633
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03001634 BUILD_BUG_ON(pgd_devmap(orig));
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301635 refs = 0;
Punit Agrawald63206e2017-07-06 15:39:39 -07001636 page = pgd_page(orig) + ((addr & ~PGDIR_MASK) >> PAGE_SHIFT);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301637 do {
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301638 pages[*nr] = page;
1639 (*nr)++;
1640 page++;
1641 refs++;
1642 } while (addr += PAGE_SIZE, addr != end);
1643
Linus Torvaldsd972ebb2019-04-11 10:49:19 -07001644 head = try_get_compound_head(pgd_page(orig), refs);
1645 if (!head) {
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301646 *nr -= refs;
1647 return 0;
1648 }
1649
1650 if (unlikely(pgd_val(orig) != pgd_val(*pgdp))) {
1651 *nr -= refs;
1652 while (refs--)
1653 put_page(head);
1654 return 0;
1655 }
1656
Kirill A. Shutemove9348052017-03-16 18:26:52 +03001657 SetPageReferenced(head);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301658 return 1;
1659}
1660
Steve Capper2667f502014-10-09 15:29:14 -07001661static int gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end,
1662 int write, struct page **pages, int *nr)
1663{
1664 unsigned long next;
1665 pmd_t *pmdp;
1666
1667 pmdp = pmd_offset(&pud, addr);
1668 do {
Christian Borntraeger38c5ce92015-01-06 22:54:46 +01001669 pmd_t pmd = READ_ONCE(*pmdp);
Steve Capper2667f502014-10-09 15:29:14 -07001670
1671 next = pmd_addr_end(addr, end);
Zi Yan84c3fc42017-09-08 16:11:01 -07001672 if (!pmd_present(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07001673 return 0;
1674
Yu Zhao8b1a7762019-02-12 15:35:58 -08001675 if (unlikely(pmd_trans_huge(pmd) || pmd_huge(pmd) ||
1676 pmd_devmap(pmd))) {
Steve Capper2667f502014-10-09 15:29:14 -07001677 /*
1678 * NUMA hinting faults need to be handled in the GUP
1679 * slowpath for accounting purposes and so that they
1680 * can be serialised against THP migration.
1681 */
Mel Gorman8a0516e2015-02-12 14:58:22 -08001682 if (pmd_protnone(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07001683 return 0;
1684
1685 if (!gup_huge_pmd(pmd, pmdp, addr, next, write,
1686 pages, nr))
1687 return 0;
1688
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301689 } else if (unlikely(is_hugepd(__hugepd(pmd_val(pmd))))) {
1690 /*
1691 * architecture have different format for hugetlbfs
1692 * pmd format and THP pmd format
1693 */
1694 if (!gup_huge_pd(__hugepd(pmd_val(pmd)), addr,
1695 PMD_SHIFT, next, write, pages, nr))
1696 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07001697 } else if (!gup_pte_range(pmd, addr, next, write, pages, nr))
Mario Leinweber29231172018-04-05 16:24:18 -07001698 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07001699 } while (pmdp++, addr = next, addr != end);
1700
1701 return 1;
1702}
1703
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001704static int gup_pud_range(p4d_t p4d, unsigned long addr, unsigned long end,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301705 int write, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07001706{
1707 unsigned long next;
1708 pud_t *pudp;
1709
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001710 pudp = pud_offset(&p4d, addr);
Steve Capper2667f502014-10-09 15:29:14 -07001711 do {
Christian Borntraegere37c6982014-12-07 21:41:33 +01001712 pud_t pud = READ_ONCE(*pudp);
Steve Capper2667f502014-10-09 15:29:14 -07001713
1714 next = pud_addr_end(addr, end);
1715 if (pud_none(pud))
1716 return 0;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301717 if (unlikely(pud_huge(pud))) {
Steve Capper2667f502014-10-09 15:29:14 -07001718 if (!gup_huge_pud(pud, pudp, addr, next, write,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05301719 pages, nr))
1720 return 0;
1721 } else if (unlikely(is_hugepd(__hugepd(pud_val(pud))))) {
1722 if (!gup_huge_pd(__hugepd(pud_val(pud)), addr,
1723 PUD_SHIFT, next, write, pages, nr))
Steve Capper2667f502014-10-09 15:29:14 -07001724 return 0;
1725 } else if (!gup_pmd_range(pud, addr, next, write, pages, nr))
1726 return 0;
1727 } while (pudp++, addr = next, addr != end);
1728
1729 return 1;
1730}
1731
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001732static int gup_p4d_range(pgd_t pgd, unsigned long addr, unsigned long end,
1733 int write, struct page **pages, int *nr)
1734{
1735 unsigned long next;
1736 p4d_t *p4dp;
1737
1738 p4dp = p4d_offset(&pgd, addr);
1739 do {
1740 p4d_t p4d = READ_ONCE(*p4dp);
1741
1742 next = p4d_addr_end(addr, end);
1743 if (p4d_none(p4d))
1744 return 0;
1745 BUILD_BUG_ON(p4d_huge(p4d));
1746 if (unlikely(is_hugepd(__hugepd(p4d_val(p4d))))) {
1747 if (!gup_huge_pd(__hugepd(p4d_val(p4d)), addr,
1748 P4D_SHIFT, next, write, pages, nr))
1749 return 0;
Kirill A. Shutemovce70df02017-03-13 08:22:13 +03001750 } else if (!gup_pud_range(p4d, addr, next, write, pages, nr))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001751 return 0;
1752 } while (p4dp++, addr = next, addr != end);
1753
1754 return 1;
1755}
1756
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001757static void gup_pgd_range(unsigned long addr, unsigned long end,
1758 int write, struct page **pages, int *nr)
1759{
1760 unsigned long next;
1761 pgd_t *pgdp;
1762
1763 pgdp = pgd_offset(current->mm, addr);
1764 do {
1765 pgd_t pgd = READ_ONCE(*pgdp);
1766
1767 next = pgd_addr_end(addr, end);
1768 if (pgd_none(pgd))
1769 return;
1770 if (unlikely(pgd_huge(pgd))) {
1771 if (!gup_huge_pgd(pgd, pgdp, addr, next, write,
1772 pages, nr))
1773 return;
1774 } else if (unlikely(is_hugepd(__hugepd(pgd_val(pgd))))) {
1775 if (!gup_huge_pd(__hugepd(pgd_val(pgd)), addr,
1776 PGDIR_SHIFT, next, write, pages, nr))
1777 return;
1778 } else if (!gup_p4d_range(pgd, addr, next, write, pages, nr))
1779 return;
1780 } while (pgdp++, addr = next, addr != end);
1781}
1782
1783#ifndef gup_fast_permitted
1784/*
1785 * Check if it's allowed to use __get_user_pages_fast() for the range, or
1786 * we need to fall back to the slow version:
1787 */
1788bool gup_fast_permitted(unsigned long start, int nr_pages, int write)
1789{
1790 unsigned long len, end;
1791
1792 len = (unsigned long) nr_pages << PAGE_SHIFT;
1793 end = start + len;
1794 return end >= start;
1795}
1796#endif
1797
Steve Capper2667f502014-10-09 15:29:14 -07001798/*
1799 * 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 -07001800 * the regular GUP.
1801 * Note a difference with get_user_pages_fast: this always returns the
1802 * number of pages pinned, 0 if no pages were pinned.
Steve Capper2667f502014-10-09 15:29:14 -07001803 */
1804int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
1805 struct page **pages)
1806{
Steve Capper2667f502014-10-09 15:29:14 -07001807 unsigned long addr, len, end;
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001808 unsigned long flags;
Steve Capper2667f502014-10-09 15:29:14 -07001809 int nr = 0;
1810
1811 start &= PAGE_MASK;
1812 addr = start;
1813 len = (unsigned long) nr_pages << PAGE_SHIFT;
1814 end = start + len;
1815
1816 if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ,
Arnd Bergmannaa2369f2017-05-03 14:56:12 -07001817 (void __user *)start, len)))
Steve Capper2667f502014-10-09 15:29:14 -07001818 return 0;
1819
1820 /*
1821 * Disable interrupts. We use the nested form as we can already have
1822 * interrupts disabled by get_futex_key.
1823 *
1824 * With interrupts disabled, we block page table pages from being
1825 * freed from under us. See mmu_gather_tlb in asm-generic/tlb.h
1826 * for more details.
1827 *
1828 * We do not adopt an rcu_read_lock(.) here as we also want to
1829 * block IPIs that come from THPs splitting.
1830 */
1831
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001832 if (gup_fast_permitted(start, nr_pages, write)) {
1833 local_irq_save(flags);
1834 gup_pgd_range(addr, end, write, pages, &nr);
1835 local_irq_restore(flags);
1836 }
Steve Capper2667f502014-10-09 15:29:14 -07001837
1838 return nr;
1839}
1840
1841/**
1842 * get_user_pages_fast() - pin user pages in memory
1843 * @start: starting user address
1844 * @nr_pages: number of pages from start to pin
1845 * @write: whether pages will be written to
1846 * @pages: array that receives pointers to the pages pinned.
1847 * Should be at least nr_pages long.
1848 *
1849 * Attempt to pin user pages in memory without taking mm->mmap_sem.
1850 * If not successful, it will fall back to taking the lock and
1851 * calling get_user_pages().
1852 *
1853 * Returns number of pages pinned. This may be fewer than the number
1854 * requested. If nr_pages is 0 or negative, returns 0. If no pages
1855 * were pinned, returns -errno.
1856 */
1857int get_user_pages_fast(unsigned long start, int nr_pages, int write,
1858 struct page **pages)
1859{
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001860 unsigned long addr, len, end;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001861 int nr = 0, ret = 0;
Steve Capper2667f502014-10-09 15:29:14 -07001862
1863 start &= PAGE_MASK;
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001864 addr = start;
1865 len = (unsigned long) nr_pages << PAGE_SHIFT;
1866 end = start + len;
1867
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07001868 if (nr_pages <= 0)
1869 return 0;
1870
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001871 if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ,
1872 (void __user *)start, len)))
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07001873 return -EFAULT;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001874
1875 if (gup_fast_permitted(start, nr_pages, write)) {
Kirill A. Shutemov5b65c462017-09-09 00:56:03 +03001876 local_irq_disable();
1877 gup_pgd_range(addr, end, write, pages, &nr);
1878 local_irq_enable();
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03001879 ret = nr;
1880 }
Steve Capper2667f502014-10-09 15:29:14 -07001881
1882 if (nr < nr_pages) {
1883 /* Try to get the remaining pages with get_user_pages */
1884 start += nr << PAGE_SHIFT;
1885 pages += nr;
1886
Lorenzo Stoakesc1641542016-10-13 01:20:13 +01001887 ret = get_user_pages_unlocked(start, nr_pages - nr, pages,
1888 write ? FOLL_WRITE : 0);
Steve Capper2667f502014-10-09 15:29:14 -07001889
1890 /* Have to be a bit careful with return values */
1891 if (nr > 0) {
1892 if (ret < 0)
1893 ret = nr;
1894 else
1895 ret += nr;
1896 }
1897 }
1898
1899 return ret;
1900}
1901
Kirill A. Shutemove5855132017-06-06 14:31:20 +03001902#endif /* CONFIG_HAVE_GENERIC_GUP */