blob: 3ded6a5f26b259e859cba3a9f164cd1b6e8b235c [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07002#include <linux/kernel.h>
3#include <linux/errno.h>
4#include <linux/err.h>
5#include <linux/spinlock.h>
6
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07007#include <linux/mm.h>
Dan Williams3565fce2016-01-15 16:56:55 -08008#include <linux/memremap.h>
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07009#include <linux/pagemap.h>
10#include <linux/rmap.h>
11#include <linux/swap.h>
12#include <linux/swapops.h>
13
Ingo Molnar174cd4b2017-02-02 19:15:33 +010014#include <linux/sched/signal.h>
Steve Capper2667f502014-10-09 15:29:14 -070015#include <linux/rwsem.h>
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +053016#include <linux/hugetlb.h>
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -080017#include <linux/migrate.h>
18#include <linux/mm_inline.h>
19#include <linux/sched/mm.h>
Kirill A. Shutemov1027e442015-09-04 15:47:55 -070020
Dave Hansen33a709b2016-02-12 13:02:19 -080021#include <asm/mmu_context.h>
Kirill A. Shutemov1027e442015-09-04 15:47:55 -070022#include <asm/tlbflush.h>
Steve Capper2667f502014-10-09 15:29:14 -070023
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -070024#include "internal.h"
25
Keith Buschdf06b372018-10-26 15:10:28 -070026struct follow_page_context {
27 struct dev_pagemap *pgmap;
28 unsigned int page_mask;
29};
30
John Hubbard47e29d32020-04-01 21:05:33 -070031static void hpage_pincount_add(struct page *page, int refs)
32{
33 VM_BUG_ON_PAGE(!hpage_pincount_available(page), page);
34 VM_BUG_ON_PAGE(page != compound_head(page), page);
35
36 atomic_add(refs, compound_pincount_ptr(page));
37}
38
39static void hpage_pincount_sub(struct page *page, int refs)
40{
41 VM_BUG_ON_PAGE(!hpage_pincount_available(page), page);
42 VM_BUG_ON_PAGE(page != compound_head(page), page);
43
44 atomic_sub(refs, compound_pincount_ptr(page));
45}
46
John Hubbarda707cdd2020-01-30 22:12:21 -080047/*
48 * Return the compound head page with ref appropriately incremented,
49 * or NULL if that failed.
50 */
51static inline struct page *try_get_compound_head(struct page *page, int refs)
52{
53 struct page *head = compound_head(page);
54
55 if (WARN_ON_ONCE(page_ref_count(head) < 0))
56 return NULL;
57 if (unlikely(!page_cache_add_speculative(head, refs)))
58 return NULL;
59 return head;
60}
61
John Hubbard3faa52c2020-04-01 21:05:29 -070062/*
63 * try_grab_compound_head() - attempt to elevate a page's refcount, by a
64 * flags-dependent amount.
65 *
66 * "grab" names in this file mean, "look at flags to decide whether to use
67 * FOLL_PIN or FOLL_GET behavior, when incrementing the page's refcount.
68 *
69 * Either FOLL_PIN or FOLL_GET (or neither) must be set, but not both at the
70 * same time. (That's true throughout the get_user_pages*() and
71 * pin_user_pages*() APIs.) Cases:
72 *
73 * FOLL_GET: page's refcount will be incremented by 1.
74 * FOLL_PIN: page's refcount will be incremented by GUP_PIN_COUNTING_BIAS.
75 *
76 * Return: head page (with refcount appropriately incremented) for success, or
77 * NULL upon failure. If neither FOLL_GET nor FOLL_PIN was set, that's
78 * considered failure, and furthermore, a likely bug in the caller, so a warning
79 * is also emitted.
80 */
Joao Martins0fa5bc42021-02-24 12:07:12 -080081__maybe_unused struct page *try_grab_compound_head(struct page *page,
82 int refs, unsigned int flags)
John Hubbard3faa52c2020-04-01 21:05:29 -070083{
84 if (flags & FOLL_GET)
85 return try_get_compound_head(page, refs);
86 else if (flags & FOLL_PIN) {
John Hubbard1970dc62020-04-01 21:05:37 -070087 int orig_refs = refs;
88
John Hubbard47e29d32020-04-01 21:05:33 -070089 /*
Pavel Tatashind1e153f2021-05-04 18:39:08 -070090 * Can't do FOLL_LONGTERM + FOLL_PIN gup fast path if not in a
91 * right zone, so fail and let the caller fall back to the slow
92 * path.
Pingfan Liudf3a0a22020-04-01 21:06:04 -070093 */
Pavel Tatashind1e153f2021-05-04 18:39:08 -070094 if (unlikely((flags & FOLL_LONGTERM) &&
95 !is_pinnable_page(page)))
Pingfan Liudf3a0a22020-04-01 21:06:04 -070096 return NULL;
97
98 /*
John Hubbard47e29d32020-04-01 21:05:33 -070099 * When pinning a compound page of order > 1 (which is what
100 * hpage_pincount_available() checks for), use an exact count to
101 * track it, via hpage_pincount_add/_sub().
102 *
103 * However, be sure to *also* increment the normal page refcount
104 * field at least once, so that the page really is pinned.
105 */
106 if (!hpage_pincount_available(page))
107 refs *= GUP_PIN_COUNTING_BIAS;
108
109 page = try_get_compound_head(page, refs);
110 if (!page)
111 return NULL;
112
113 if (hpage_pincount_available(page))
114 hpage_pincount_add(page, refs);
115
John Hubbard1970dc62020-04-01 21:05:37 -0700116 mod_node_page_state(page_pgdat(page), NR_FOLL_PIN_ACQUIRED,
117 orig_refs);
118
John Hubbard47e29d32020-04-01 21:05:33 -0700119 return page;
John Hubbard3faa52c2020-04-01 21:05:29 -0700120 }
121
122 WARN_ON_ONCE(1);
123 return NULL;
124}
125
Jason Gunthorpe4509b422020-12-14 19:05:51 -0800126static void put_compound_head(struct page *page, int refs, unsigned int flags)
127{
128 if (flags & FOLL_PIN) {
129 mod_node_page_state(page_pgdat(page), NR_FOLL_PIN_RELEASED,
130 refs);
131
132 if (hpage_pincount_available(page))
133 hpage_pincount_sub(page, refs);
134 else
135 refs *= GUP_PIN_COUNTING_BIAS;
136 }
137
138 VM_BUG_ON_PAGE(page_ref_count(page) < refs, page);
139 /*
140 * Calling put_page() for each ref is unnecessarily slow. Only the last
141 * ref needs a put_page().
142 */
143 if (refs > 1)
144 page_ref_sub(page, refs - 1);
145 put_page(page);
146}
147
John Hubbard3faa52c2020-04-01 21:05:29 -0700148/**
149 * try_grab_page() - elevate a page's refcount by a flag-dependent amount
150 *
151 * This might not do anything at all, depending on the flags argument.
152 *
153 * "grab" names in this file mean, "look at flags to decide whether to use
154 * FOLL_PIN or FOLL_GET behavior, when incrementing the page's refcount.
155 *
156 * @page: pointer to page to be grabbed
157 * @flags: gup flags: these are the FOLL_* flag values.
158 *
159 * Either FOLL_PIN or FOLL_GET (or neither) may be set, but not both at the same
160 * time. Cases:
161 *
162 * FOLL_GET: page's refcount will be incremented by 1.
163 * FOLL_PIN: page's refcount will be incremented by GUP_PIN_COUNTING_BIAS.
164 *
165 * Return: true for success, or if no action was required (if neither FOLL_PIN
166 * nor FOLL_GET was set, nothing is done). False for failure: FOLL_GET or
167 * FOLL_PIN was set, but the page could not be grabbed.
168 */
169bool __must_check try_grab_page(struct page *page, unsigned int flags)
170{
171 WARN_ON_ONCE((flags & (FOLL_GET | FOLL_PIN)) == (FOLL_GET | FOLL_PIN));
172
173 if (flags & FOLL_GET)
174 return try_get_page(page);
175 else if (flags & FOLL_PIN) {
John Hubbard47e29d32020-04-01 21:05:33 -0700176 int refs = 1;
177
John Hubbard3faa52c2020-04-01 21:05:29 -0700178 page = compound_head(page);
179
180 if (WARN_ON_ONCE(page_ref_count(page) <= 0))
181 return false;
182
John Hubbard47e29d32020-04-01 21:05:33 -0700183 if (hpage_pincount_available(page))
184 hpage_pincount_add(page, 1);
185 else
186 refs = GUP_PIN_COUNTING_BIAS;
187
188 /*
189 * Similar to try_grab_compound_head(): even if using the
190 * hpage_pincount_add/_sub() routines, be sure to
191 * *also* increment the normal page refcount field at least
192 * once, so that the page really is pinned.
193 */
194 page_ref_add(page, refs);
John Hubbard1970dc62020-04-01 21:05:37 -0700195
196 mod_node_page_state(page_pgdat(page), NR_FOLL_PIN_ACQUIRED, 1);
John Hubbard3faa52c2020-04-01 21:05:29 -0700197 }
198
199 return true;
200}
201
John Hubbard3faa52c2020-04-01 21:05:29 -0700202/**
203 * unpin_user_page() - release a dma-pinned page
204 * @page: pointer to page to be released
205 *
206 * Pages that were pinned via pin_user_pages*() must be released via either
207 * unpin_user_page(), or one of the unpin_user_pages*() routines. This is so
208 * that such pages can be separately tracked and uniquely handled. In
209 * particular, interactions with RDMA and filesystems need special handling.
210 */
211void unpin_user_page(struct page *page)
212{
Jason Gunthorpe4509b422020-12-14 19:05:51 -0800213 put_compound_head(compound_head(page), 1, FOLL_PIN);
John Hubbard3faa52c2020-04-01 21:05:29 -0700214}
215EXPORT_SYMBOL(unpin_user_page);
216
Joao Martins458a4f782021-04-29 22:55:50 -0700217static inline void compound_range_next(unsigned long i, unsigned long npages,
218 struct page **list, struct page **head,
219 unsigned int *ntails)
220{
221 struct page *next, *page;
222 unsigned int nr = 1;
223
224 if (i >= npages)
225 return;
226
227 next = *list + i;
228 page = compound_head(next);
229 if (PageCompound(page) && compound_order(page) >= 1)
230 nr = min_t(unsigned int,
231 page + compound_nr(page) - next, npages - i);
232
233 *head = page;
234 *ntails = nr;
235}
236
237#define for_each_compound_range(__i, __list, __npages, __head, __ntails) \
238 for (__i = 0, \
239 compound_range_next(__i, __npages, __list, &(__head), &(__ntails)); \
240 __i < __npages; __i += __ntails, \
241 compound_range_next(__i, __npages, __list, &(__head), &(__ntails)))
242
Joao Martins8745d7f2021-04-29 22:55:44 -0700243static inline void compound_next(unsigned long i, unsigned long npages,
244 struct page **list, struct page **head,
245 unsigned int *ntails)
246{
247 struct page *page;
248 unsigned int nr;
249
250 if (i >= npages)
251 return;
252
253 page = compound_head(list[i]);
254 for (nr = i + 1; nr < npages; nr++) {
255 if (compound_head(list[nr]) != page)
256 break;
257 }
258
259 *head = page;
260 *ntails = nr - i;
261}
262
263#define for_each_compound_head(__i, __list, __npages, __head, __ntails) \
264 for (__i = 0, \
265 compound_next(__i, __npages, __list, &(__head), &(__ntails)); \
266 __i < __npages; __i += __ntails, \
267 compound_next(__i, __npages, __list, &(__head), &(__ntails)))
268
John Hubbardfc1d8e72019-05-13 17:19:08 -0700269/**
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800270 * unpin_user_pages_dirty_lock() - release and optionally dirty gup-pinned pages
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700271 * @pages: array of pages to be maybe marked dirty, and definitely released.
John Hubbardfc1d8e72019-05-13 17:19:08 -0700272 * @npages: number of pages in the @pages array.
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700273 * @make_dirty: whether to mark the pages dirty
John Hubbardfc1d8e72019-05-13 17:19:08 -0700274 *
275 * "gup-pinned page" refers to a page that has had one of the get_user_pages()
276 * variants called on that page.
277 *
278 * For each page in the @pages array, make that page (or its head page, if a
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700279 * compound page) dirty, if @make_dirty is true, and if the page was previously
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800280 * listed as clean. In any case, releases all pages using unpin_user_page(),
281 * possibly via unpin_user_pages(), for the non-dirty case.
John Hubbardfc1d8e72019-05-13 17:19:08 -0700282 *
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800283 * Please see the unpin_user_page() documentation for details.
John Hubbardfc1d8e72019-05-13 17:19:08 -0700284 *
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700285 * set_page_dirty_lock() is used internally. If instead, set_page_dirty() is
286 * required, then the caller should a) verify that this is really correct,
287 * because _lock() is usually required, and b) hand code it:
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800288 * set_page_dirty_lock(), unpin_user_page().
John Hubbardfc1d8e72019-05-13 17:19:08 -0700289 *
290 */
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800291void unpin_user_pages_dirty_lock(struct page **pages, unsigned long npages,
292 bool make_dirty)
John Hubbardfc1d8e72019-05-13 17:19:08 -0700293{
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700294 unsigned long index;
Joao Martins31b912d2021-04-29 22:55:47 -0700295 struct page *head;
296 unsigned int ntails;
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700297
298 if (!make_dirty) {
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800299 unpin_user_pages(pages, npages);
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700300 return;
301 }
302
Joao Martins31b912d2021-04-29 22:55:47 -0700303 for_each_compound_head(index, pages, npages, head, ntails) {
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700304 /*
305 * Checking PageDirty at this point may race with
306 * clear_page_dirty_for_io(), but that's OK. Two key
307 * cases:
308 *
309 * 1) This code sees the page as already dirty, so it
310 * skips the call to set_page_dirty(). That could happen
311 * because clear_page_dirty_for_io() called
312 * page_mkclean(), followed by set_page_dirty().
313 * However, now the page is going to get written back,
314 * which meets the original intention of setting it
315 * dirty, so all is well: clear_page_dirty_for_io() goes
316 * on to call TestClearPageDirty(), and write the page
317 * back.
318 *
319 * 2) This code sees the page as clean, so it calls
320 * set_page_dirty(). The page stays dirty, despite being
321 * written back, so it gets written back again in the
322 * next writeback cycle. This is harmless.
323 */
Joao Martins31b912d2021-04-29 22:55:47 -0700324 if (!PageDirty(head))
325 set_page_dirty_lock(head);
326 put_compound_head(head, ntails, FOLL_PIN);
akpm@linux-foundation.org2d15eb32019-09-23 15:35:04 -0700327 }
John Hubbardfc1d8e72019-05-13 17:19:08 -0700328}
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800329EXPORT_SYMBOL(unpin_user_pages_dirty_lock);
John Hubbardfc1d8e72019-05-13 17:19:08 -0700330
331/**
Joao Martins458a4f782021-04-29 22:55:50 -0700332 * unpin_user_page_range_dirty_lock() - release and optionally dirty
333 * gup-pinned page range
334 *
335 * @page: the starting page of a range maybe marked dirty, and definitely released.
336 * @npages: number of consecutive pages to release.
337 * @make_dirty: whether to mark the pages dirty
338 *
339 * "gup-pinned page range" refers to a range of pages that has had one of the
340 * pin_user_pages() variants called on that page.
341 *
342 * For the page ranges defined by [page .. page+npages], make that range (or
343 * its head pages, if a compound page) dirty, if @make_dirty is true, and if the
344 * page range was previously listed as clean.
345 *
346 * set_page_dirty_lock() is used internally. If instead, set_page_dirty() is
347 * required, then the caller should a) verify that this is really correct,
348 * because _lock() is usually required, and b) hand code it:
349 * set_page_dirty_lock(), unpin_user_page().
350 *
351 */
352void unpin_user_page_range_dirty_lock(struct page *page, unsigned long npages,
353 bool make_dirty)
354{
355 unsigned long index;
356 struct page *head;
357 unsigned int ntails;
358
359 for_each_compound_range(index, &page, npages, head, ntails) {
360 if (make_dirty && !PageDirty(head))
361 set_page_dirty_lock(head);
362 put_compound_head(head, ntails, FOLL_PIN);
363 }
364}
365EXPORT_SYMBOL(unpin_user_page_range_dirty_lock);
366
367/**
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800368 * unpin_user_pages() - release an array of gup-pinned pages.
John Hubbardfc1d8e72019-05-13 17:19:08 -0700369 * @pages: array of pages to be marked dirty and released.
370 * @npages: number of pages in the @pages array.
371 *
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800372 * For each page in the @pages array, release the page using unpin_user_page().
John Hubbardfc1d8e72019-05-13 17:19:08 -0700373 *
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800374 * Please see the unpin_user_page() documentation for details.
John Hubbardfc1d8e72019-05-13 17:19:08 -0700375 */
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800376void unpin_user_pages(struct page **pages, unsigned long npages)
John Hubbardfc1d8e72019-05-13 17:19:08 -0700377{
378 unsigned long index;
Joao Martins31b912d2021-04-29 22:55:47 -0700379 struct page *head;
380 unsigned int ntails;
John Hubbardfc1d8e72019-05-13 17:19:08 -0700381
382 /*
John Hubbard146608bb2020-10-13 16:52:01 -0700383 * If this WARN_ON() fires, then the system *might* be leaking pages (by
384 * leaving them pinned), but probably not. More likely, gup/pup returned
385 * a hard -ERRNO error to the caller, who erroneously passed it here.
386 */
387 if (WARN_ON(IS_ERR_VALUE(npages)))
388 return;
Joao Martins31b912d2021-04-29 22:55:47 -0700389
390 for_each_compound_head(index, pages, npages, head, ntails)
391 put_compound_head(head, ntails, FOLL_PIN);
John Hubbardfc1d8e72019-05-13 17:19:08 -0700392}
John Hubbardf1f6a7d2020-01-30 22:13:35 -0800393EXPORT_SYMBOL(unpin_user_pages);
John Hubbardfc1d8e72019-05-13 17:19:08 -0700394
Christoph Hellwig050a9ad2019-07-11 20:57:21 -0700395#ifdef CONFIG_MMU
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700396static struct page *no_page_table(struct vm_area_struct *vma,
397 unsigned int flags)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700398{
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700399 /*
400 * When core dumping an enormous anonymous area that nobody
401 * has touched so far, we don't want to allocate unnecessary pages or
402 * page tables. Return error instead of NULL to skip handle_mm_fault,
403 * then get_dump_page() will return NULL to leave a hole in the dump.
404 * But we can only make this optimization where a hole would surely
405 * be zero-filled if handle_mm_fault() actually did handle it.
406 */
Anshuman Khanduala0137f12020-04-06 20:03:55 -0700407 if ((flags & FOLL_DUMP) &&
408 (vma_is_anonymous(vma) || !vma->vm_ops->fault))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700409 return ERR_PTR(-EFAULT);
410 return NULL;
411}
412
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700413static int follow_pfn_pte(struct vm_area_struct *vma, unsigned long address,
414 pte_t *pte, unsigned int flags)
415{
416 /* No page to get reference */
417 if (flags & FOLL_GET)
418 return -EFAULT;
419
420 if (flags & FOLL_TOUCH) {
421 pte_t entry = *pte;
422
423 if (flags & FOLL_WRITE)
424 entry = pte_mkdirty(entry);
425 entry = pte_mkyoung(entry);
426
427 if (!pte_same(*pte, entry)) {
428 set_pte_at(vma->vm_mm, address, pte, entry);
429 update_mmu_cache(vma, address, pte);
430 }
431 }
432
433 /* Proper page table entry exists, but no corresponding struct page */
434 return -EEXIST;
435}
436
Linus Torvalds19be0ea2016-10-13 13:07:36 -0700437/*
Peter Xua308c712020-08-21 19:49:57 -0400438 * FOLL_FORCE can write to even unwritable pte's, but only
439 * after we've gone through a COW cycle and they are dirty.
Linus Torvalds19be0ea2016-10-13 13:07:36 -0700440 */
441static inline bool can_follow_write_pte(pte_t pte, unsigned int flags)
442{
Peter Xua308c712020-08-21 19:49:57 -0400443 return pte_write(pte) ||
444 ((flags & FOLL_FORCE) && (flags & FOLL_COW) && pte_dirty(pte));
Linus Torvalds19be0ea2016-10-13 13:07:36 -0700445}
446
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700447static struct page *follow_page_pte(struct vm_area_struct *vma,
Keith Buschdf06b372018-10-26 15:10:28 -0700448 unsigned long address, pmd_t *pmd, unsigned int flags,
449 struct dev_pagemap **pgmap)
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700450{
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700451 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700452 struct page *page;
453 spinlock_t *ptl;
454 pte_t *ptep, pte;
Claudio Imbrendaf28d4362020-04-01 21:05:56 -0700455 int ret;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700456
John Hubbardeddb1c22020-01-30 22:12:54 -0800457 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
458 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
459 (FOLL_PIN | FOLL_GET)))
460 return ERR_PTR(-EINVAL);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700461retry:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700462 if (unlikely(pmd_bad(*pmd)))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700463 return no_page_table(vma, flags);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700464
465 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700466 pte = *ptep;
467 if (!pte_present(pte)) {
468 swp_entry_t entry;
469 /*
470 * KSM's break_ksm() relies upon recognizing a ksm page
471 * even while it is being migrated, so for that case we
472 * need migration_entry_wait().
473 */
474 if (likely(!(flags & FOLL_MIGRATION)))
475 goto no_page;
Kirill A. Shutemov0661a332015-02-10 14:10:04 -0800476 if (pte_none(pte))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700477 goto no_page;
478 entry = pte_to_swp_entry(pte);
479 if (!is_migration_entry(entry))
480 goto no_page;
481 pte_unmap_unlock(ptep, ptl);
482 migration_entry_wait(mm, pmd, address);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700483 goto retry;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700484 }
Mel Gorman8a0516e2015-02-12 14:58:22 -0800485 if ((flags & FOLL_NUMA) && pte_protnone(pte))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700486 goto no_page;
Linus Torvalds19be0ea2016-10-13 13:07:36 -0700487 if ((flags & FOLL_WRITE) && !can_follow_write_pte(pte, flags)) {
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700488 pte_unmap_unlock(ptep, ptl);
489 return NULL;
490 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700491
492 page = vm_normal_page(vma, address, pte);
John Hubbard3faa52c2020-04-01 21:05:29 -0700493 if (!page && pte_devmap(pte) && (flags & (FOLL_GET | FOLL_PIN))) {
Dan Williams3565fce2016-01-15 16:56:55 -0800494 /*
John Hubbard3faa52c2020-04-01 21:05:29 -0700495 * Only return device mapping pages in the FOLL_GET or FOLL_PIN
496 * case since they are only valid while holding the pgmap
497 * reference.
Dan Williams3565fce2016-01-15 16:56:55 -0800498 */
Keith Buschdf06b372018-10-26 15:10:28 -0700499 *pgmap = get_dev_pagemap(pte_pfn(pte), *pgmap);
500 if (*pgmap)
Dan Williams3565fce2016-01-15 16:56:55 -0800501 page = pte_page(pte);
502 else
503 goto no_page;
504 } else if (unlikely(!page)) {
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700505 if (flags & FOLL_DUMP) {
506 /* Avoid special (like zero) pages in core dumps */
507 page = ERR_PTR(-EFAULT);
508 goto out;
509 }
510
511 if (is_zero_pfn(pte_pfn(pte))) {
512 page = pte_page(pte);
513 } else {
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700514 ret = follow_pfn_pte(vma, address, ptep, flags);
515 page = ERR_PTR(ret);
516 goto out;
517 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700518 }
519
John Hubbard3faa52c2020-04-01 21:05:29 -0700520 /* try_grab_page() does nothing unless FOLL_GET or FOLL_PIN is set. */
521 if (unlikely(!try_grab_page(page, flags))) {
522 page = ERR_PTR(-ENOMEM);
523 goto out;
Linus Torvalds8fde12c2019-04-11 10:49:19 -0700524 }
Claudio Imbrendaf28d4362020-04-01 21:05:56 -0700525 /*
526 * We need to make the page accessible if and only if we are going
527 * to access its content (the FOLL_PIN case). Please see
528 * Documentation/core-api/pin_user_pages.rst for details.
529 */
530 if (flags & FOLL_PIN) {
531 ret = arch_make_page_accessible(page);
532 if (ret) {
533 unpin_user_page(page);
534 page = ERR_PTR(ret);
535 goto out;
536 }
537 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700538 if (flags & FOLL_TOUCH) {
539 if ((flags & FOLL_WRITE) &&
540 !pte_dirty(pte) && !PageDirty(page))
541 set_page_dirty(page);
542 /*
543 * pte_mkyoung() would be more correct here, but atomic care
544 * is needed to avoid losing the dirty bit: it is easier to use
545 * mark_page_accessed().
546 */
547 mark_page_accessed(page);
548 }
Eric B Munsonde60f5f2015-11-05 18:51:36 -0800549 if ((flags & FOLL_MLOCK) && (vma->vm_flags & VM_LOCKED)) {
Kirill A. Shutemove90309c2016-01-15 16:54:33 -0800550 /* Do not mlock pte-mapped THP */
551 if (PageTransCompound(page))
552 goto out;
553
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700554 /*
555 * The preliminary mapping check is mainly to avoid the
556 * pointless overhead of lock_page on the ZERO_PAGE
557 * which might bounce very badly if there is contention.
558 *
559 * If the page is already locked, we don't need to
560 * handle it now - vmscan will handle it later if and
561 * when it attempts to reclaim the page.
562 */
563 if (page->mapping && trylock_page(page)) {
564 lru_add_drain(); /* push cached pages to LRU */
565 /*
566 * Because we lock page here, and migration is
567 * blocked by the pte's page reference, and we
568 * know the page is still mapped, we don't even
569 * need to check for file-cache page truncation.
570 */
571 mlock_vma_page(page);
572 unlock_page(page);
573 }
574 }
Kirill A. Shutemov1027e442015-09-04 15:47:55 -0700575out:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700576 pte_unmap_unlock(ptep, ptl);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700577 return page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700578no_page:
579 pte_unmap_unlock(ptep, ptl);
580 if (!pte_none(pte))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700581 return NULL;
582 return no_page_table(vma, flags);
583}
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700584
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700585static struct page *follow_pmd_mask(struct vm_area_struct *vma,
586 unsigned long address, pud_t *pudp,
Keith Buschdf06b372018-10-26 15:10:28 -0700587 unsigned int flags,
588 struct follow_page_context *ctx)
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700589{
Huang Ying68827282018-06-07 17:06:34 -0700590 pmd_t *pmd, pmdval;
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700591 spinlock_t *ptl;
592 struct page *page;
593 struct mm_struct *mm = vma->vm_mm;
594
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700595 pmd = pmd_offset(pudp, address);
Huang Ying68827282018-06-07 17:06:34 -0700596 /*
597 * The READ_ONCE() will stabilize the pmdval in a register or
598 * on the stack so that it will stop changing under the code.
599 */
600 pmdval = READ_ONCE(*pmd);
601 if (pmd_none(pmdval))
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700602 return no_page_table(vma, flags);
Wei Yangbe9d3042020-01-30 22:12:14 -0800603 if (pmd_huge(pmdval) && is_vm_hugetlb_page(vma)) {
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800604 page = follow_huge_pmd(mm, address, pmd, flags);
605 if (page)
606 return page;
607 return no_page_table(vma, flags);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700608 }
Huang Ying68827282018-06-07 17:06:34 -0700609 if (is_hugepd(__hugepd(pmd_val(pmdval)))) {
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700610 page = follow_huge_pd(vma, address,
Huang Ying68827282018-06-07 17:06:34 -0700611 __hugepd(pmd_val(pmdval)), flags,
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700612 PMD_SHIFT);
613 if (page)
614 return page;
615 return no_page_table(vma, flags);
616 }
Zi Yan84c3fc42017-09-08 16:11:01 -0700617retry:
Huang Ying68827282018-06-07 17:06:34 -0700618 if (!pmd_present(pmdval)) {
Zi Yan84c3fc42017-09-08 16:11:01 -0700619 if (likely(!(flags & FOLL_MIGRATION)))
620 return no_page_table(vma, flags);
621 VM_BUG_ON(thp_migration_supported() &&
Huang Ying68827282018-06-07 17:06:34 -0700622 !is_pmd_migration_entry(pmdval));
623 if (is_pmd_migration_entry(pmdval))
Zi Yan84c3fc42017-09-08 16:11:01 -0700624 pmd_migration_entry_wait(mm, pmd);
Huang Ying68827282018-06-07 17:06:34 -0700625 pmdval = READ_ONCE(*pmd);
626 /*
627 * MADV_DONTNEED may convert the pmd to null because
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700628 * mmap_lock is held in read mode
Huang Ying68827282018-06-07 17:06:34 -0700629 */
630 if (pmd_none(pmdval))
631 return no_page_table(vma, flags);
Zi Yan84c3fc42017-09-08 16:11:01 -0700632 goto retry;
633 }
Huang Ying68827282018-06-07 17:06:34 -0700634 if (pmd_devmap(pmdval)) {
Dan Williams3565fce2016-01-15 16:56:55 -0800635 ptl = pmd_lock(mm, pmd);
Keith Buschdf06b372018-10-26 15:10:28 -0700636 page = follow_devmap_pmd(vma, address, pmd, flags, &ctx->pgmap);
Dan Williams3565fce2016-01-15 16:56:55 -0800637 spin_unlock(ptl);
638 if (page)
639 return page;
640 }
Huang Ying68827282018-06-07 17:06:34 -0700641 if (likely(!pmd_trans_huge(pmdval)))
Keith Buschdf06b372018-10-26 15:10:28 -0700642 return follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800643
Huang Ying68827282018-06-07 17:06:34 -0700644 if ((flags & FOLL_NUMA) && pmd_protnone(pmdval))
Aneesh Kumar K.Vdb08f202017-02-24 14:59:53 -0800645 return no_page_table(vma, flags);
646
Zi Yan84c3fc42017-09-08 16:11:01 -0700647retry_locked:
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800648 ptl = pmd_lock(mm, pmd);
Huang Ying68827282018-06-07 17:06:34 -0700649 if (unlikely(pmd_none(*pmd))) {
650 spin_unlock(ptl);
651 return no_page_table(vma, flags);
652 }
Zi Yan84c3fc42017-09-08 16:11:01 -0700653 if (unlikely(!pmd_present(*pmd))) {
654 spin_unlock(ptl);
655 if (likely(!(flags & FOLL_MIGRATION)))
656 return no_page_table(vma, flags);
657 pmd_migration_entry_wait(mm, pmd);
658 goto retry_locked;
659 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800660 if (unlikely(!pmd_trans_huge(*pmd))) {
661 spin_unlock(ptl);
Keith Buschdf06b372018-10-26 15:10:28 -0700662 return follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
Kirill A. Shutemov69e68b42014-06-04 16:08:11 -0700663 }
Yang Shi4066c112021-04-29 22:55:56 -0700664 if (flags & FOLL_SPLIT_PMD) {
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800665 int ret;
666 page = pmd_page(*pmd);
667 if (is_huge_zero_page(page)) {
668 spin_unlock(ptl);
669 ret = 0;
Kirill A. Shutemov78ddc532016-01-15 16:52:42 -0800670 split_huge_pmd(vma, pmd, address);
Naoya Horiguchi337d9ab2016-07-26 15:24:03 -0700671 if (pmd_trans_unstable(pmd))
672 ret = -EBUSY;
Yang Shi4066c112021-04-29 22:55:56 -0700673 } else {
Song Liubfe7b002019-09-23 15:38:25 -0700674 spin_unlock(ptl);
675 split_huge_pmd(vma, pmd, address);
676 ret = pte_alloc(mm, pmd) ? -ENOMEM : 0;
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800677 }
678
679 return ret ? ERR_PTR(ret) :
Keith Buschdf06b372018-10-26 15:10:28 -0700680 follow_page_pte(vma, address, pmd, flags, &ctx->pgmap);
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800681 }
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800682 page = follow_trans_huge_pmd(vma, address, pmd, flags);
683 spin_unlock(ptl);
Keith Buschdf06b372018-10-26 15:10:28 -0700684 ctx->page_mask = HPAGE_PMD_NR - 1;
Kirill A. Shutemov6742d292016-01-15 16:52:28 -0800685 return page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700686}
687
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700688static struct page *follow_pud_mask(struct vm_area_struct *vma,
689 unsigned long address, p4d_t *p4dp,
Keith Buschdf06b372018-10-26 15:10:28 -0700690 unsigned int flags,
691 struct follow_page_context *ctx)
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700692{
693 pud_t *pud;
694 spinlock_t *ptl;
695 struct page *page;
696 struct mm_struct *mm = vma->vm_mm;
697
698 pud = pud_offset(p4dp, address);
699 if (pud_none(*pud))
700 return no_page_table(vma, flags);
Wei Yangbe9d3042020-01-30 22:12:14 -0800701 if (pud_huge(*pud) && is_vm_hugetlb_page(vma)) {
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700702 page = follow_huge_pud(mm, address, pud, flags);
703 if (page)
704 return page;
705 return no_page_table(vma, flags);
706 }
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700707 if (is_hugepd(__hugepd(pud_val(*pud)))) {
708 page = follow_huge_pd(vma, address,
709 __hugepd(pud_val(*pud)), flags,
710 PUD_SHIFT);
711 if (page)
712 return page;
713 return no_page_table(vma, flags);
714 }
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700715 if (pud_devmap(*pud)) {
716 ptl = pud_lock(mm, pud);
Keith Buschdf06b372018-10-26 15:10:28 -0700717 page = follow_devmap_pud(vma, address, pud, flags, &ctx->pgmap);
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700718 spin_unlock(ptl);
719 if (page)
720 return page;
721 }
722 if (unlikely(pud_bad(*pud)))
723 return no_page_table(vma, flags);
724
Keith Buschdf06b372018-10-26 15:10:28 -0700725 return follow_pmd_mask(vma, address, pud, flags, ctx);
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700726}
727
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700728static struct page *follow_p4d_mask(struct vm_area_struct *vma,
729 unsigned long address, pgd_t *pgdp,
Keith Buschdf06b372018-10-26 15:10:28 -0700730 unsigned int flags,
731 struct follow_page_context *ctx)
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700732{
733 p4d_t *p4d;
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700734 struct page *page;
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700735
736 p4d = p4d_offset(pgdp, address);
737 if (p4d_none(*p4d))
738 return no_page_table(vma, flags);
739 BUILD_BUG_ON(p4d_huge(*p4d));
740 if (unlikely(p4d_bad(*p4d)))
741 return no_page_table(vma, flags);
742
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700743 if (is_hugepd(__hugepd(p4d_val(*p4d)))) {
744 page = follow_huge_pd(vma, address,
745 __hugepd(p4d_val(*p4d)), flags,
746 P4D_SHIFT);
747 if (page)
748 return page;
749 return no_page_table(vma, flags);
750 }
Keith Buschdf06b372018-10-26 15:10:28 -0700751 return follow_pud_mask(vma, address, p4d, flags, ctx);
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700752}
753
754/**
755 * follow_page_mask - look up a page descriptor from a user-virtual address
756 * @vma: vm_area_struct mapping @address
757 * @address: virtual address to look up
758 * @flags: flags modifying lookup behaviour
Mike Rapoport78179552018-11-16 15:08:29 -0800759 * @ctx: contains dev_pagemap for %ZONE_DEVICE memory pinning and a
760 * pointer to output page_mask
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700761 *
762 * @flags can have FOLL_ flags set, defined in <linux/mm.h>
763 *
Mike Rapoport78179552018-11-16 15:08:29 -0800764 * When getting pages from ZONE_DEVICE memory, the @ctx->pgmap caches
765 * the device's dev_pagemap metadata to avoid repeating expensive lookups.
766 *
767 * On output, the @ctx->page_mask is set according to the size of the page.
768 *
769 * Return: the mapped (struct page *), %NULL if no mapping exists, or
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700770 * an error pointer if there is a mapping to something not represented
771 * by a page descriptor (see also vm_normal_page()).
772 */
Bharath Vedarthama7030ae2019-07-11 20:54:34 -0700773static struct page *follow_page_mask(struct vm_area_struct *vma,
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700774 unsigned long address, unsigned int flags,
Keith Buschdf06b372018-10-26 15:10:28 -0700775 struct follow_page_context *ctx)
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700776{
777 pgd_t *pgd;
778 struct page *page;
779 struct mm_struct *mm = vma->vm_mm;
780
Keith Buschdf06b372018-10-26 15:10:28 -0700781 ctx->page_mask = 0;
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700782
783 /* make this handle hugepd */
784 page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
785 if (!IS_ERR(page)) {
John Hubbard3faa52c2020-04-01 21:05:29 -0700786 WARN_ON_ONCE(flags & (FOLL_GET | FOLL_PIN));
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700787 return page;
788 }
789
790 pgd = pgd_offset(mm, address);
791
792 if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
793 return no_page_table(vma, flags);
794
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -0700795 if (pgd_huge(*pgd)) {
796 page = follow_huge_pgd(mm, address, pgd, flags);
797 if (page)
798 return page;
799 return no_page_table(vma, flags);
800 }
Aneesh Kumar K.V4dc71452017-07-06 15:38:56 -0700801 if (is_hugepd(__hugepd(pgd_val(*pgd)))) {
802 page = follow_huge_pd(vma, address,
803 __hugepd(pgd_val(*pgd)), flags,
804 PGDIR_SHIFT);
805 if (page)
806 return page;
807 return no_page_table(vma, flags);
808 }
Anshuman Khandualfaaa5b62017-07-06 15:38:50 -0700809
Keith Buschdf06b372018-10-26 15:10:28 -0700810 return follow_p4d_mask(vma, address, pgd, flags, ctx);
811}
812
813struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
814 unsigned int foll_flags)
815{
816 struct follow_page_context ctx = { NULL };
817 struct page *page;
818
819 page = follow_page_mask(vma, address, foll_flags, &ctx);
820 if (ctx.pgmap)
821 put_dev_pagemap(ctx.pgmap);
822 return page;
Aneesh Kumar K.V080dbb62017-07-06 15:38:44 -0700823}
824
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700825static int get_gate_page(struct mm_struct *mm, unsigned long address,
826 unsigned int gup_flags, struct vm_area_struct **vma,
827 struct page **page)
828{
829 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300830 p4d_t *p4d;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700831 pud_t *pud;
832 pmd_t *pmd;
833 pte_t *pte;
834 int ret = -EFAULT;
835
836 /* user gate pages are read-only */
837 if (gup_flags & FOLL_WRITE)
838 return -EFAULT;
839 if (address > TASK_SIZE)
840 pgd = pgd_offset_k(address);
841 else
842 pgd = pgd_offset_gate(mm, address);
Andy Lutomirskib5d1c392019-07-11 20:57:43 -0700843 if (pgd_none(*pgd))
844 return -EFAULT;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300845 p4d = p4d_offset(pgd, address);
Andy Lutomirskib5d1c392019-07-11 20:57:43 -0700846 if (p4d_none(*p4d))
847 return -EFAULT;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300848 pud = pud_offset(p4d, address);
Andy Lutomirskib5d1c392019-07-11 20:57:43 -0700849 if (pud_none(*pud))
850 return -EFAULT;
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700851 pmd = pmd_offset(pud, address);
Zi Yan84c3fc42017-09-08 16:11:01 -0700852 if (!pmd_present(*pmd))
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700853 return -EFAULT;
854 VM_BUG_ON(pmd_trans_huge(*pmd));
855 pte = pte_offset_map(pmd, address);
856 if (pte_none(*pte))
857 goto unmap;
858 *vma = get_gate_vma(mm);
859 if (!page)
860 goto out;
861 *page = vm_normal_page(*vma, address, *pte);
862 if (!*page) {
863 if ((gup_flags & FOLL_DUMP) || !is_zero_pfn(pte_pfn(*pte)))
864 goto unmap;
865 *page = pte_page(*pte);
866 }
Dave Hansen9fa2dd92020-09-03 13:40:28 -0700867 if (unlikely(!try_grab_page(*page, gup_flags))) {
Linus Torvalds8fde12c2019-04-11 10:49:19 -0700868 ret = -ENOMEM;
869 goto unmap;
870 }
Kirill A. Shutemovf2b495c2014-06-04 16:08:11 -0700871out:
872 ret = 0;
873unmap:
874 pte_unmap(pte);
875 return ret;
876}
877
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700878/*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700879 * mmap_lock must be held on entry. If @locked != NULL and *@flags
880 * does not include FOLL_NOWAIT, the mmap_lock may be released. If it
Peter Xu4f6da932020-04-01 21:07:58 -0700881 * is, *@locked will be set to 0 and -EBUSY returned.
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700882 */
Peter Xu64019a22020-08-11 18:39:01 -0700883static int faultin_page(struct vm_area_struct *vma,
Peter Xu4f6da932020-04-01 21:07:58 -0700884 unsigned long address, unsigned int *flags, int *locked)
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700885{
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700886 unsigned int fault_flags = 0;
Souptick Joarder2b740302018-08-23 17:01:36 -0700887 vm_fault_t ret;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700888
Eric B Munsonde60f5f2015-11-05 18:51:36 -0800889 /* mlock all present pages, but do not fault in new pages */
890 if ((*flags & (FOLL_POPULATE | FOLL_MLOCK)) == FOLL_MLOCK)
891 return -ENOENT;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700892 if (*flags & FOLL_WRITE)
893 fault_flags |= FAULT_FLAG_WRITE;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800894 if (*flags & FOLL_REMOTE)
895 fault_flags |= FAULT_FLAG_REMOTE;
Peter Xu4f6da932020-04-01 21:07:58 -0700896 if (locked)
Peter Xu71335f32020-04-01 21:08:53 -0700897 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700898 if (*flags & FOLL_NOWAIT)
899 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_RETRY_NOWAIT;
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -0700900 if (*flags & FOLL_TRIED) {
Peter Xu4426e942020-04-01 21:08:49 -0700901 /*
902 * Note: FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_TRIED
903 * can co-exist
904 */
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -0700905 fault_flags |= FAULT_FLAG_TRIED;
906 }
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700907
Peter Xubce617e2020-08-11 18:37:44 -0700908 ret = handle_mm_fault(vma, address, fault_flags, NULL);
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700909 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -0700910 int err = vm_fault_to_errno(ret, *flags);
911
912 if (err)
913 return err;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700914 BUG();
915 }
916
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700917 if (ret & VM_FAULT_RETRY) {
Peter Xu4f6da932020-04-01 21:07:58 -0700918 if (locked && !(fault_flags & FAULT_FLAG_RETRY_NOWAIT))
919 *locked = 0;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700920 return -EBUSY;
921 }
922
923 /*
924 * The VM_FAULT_WRITE bit tells us that do_wp_page has broken COW when
925 * necessary, even if maybe_mkwrite decided not to set pte_write. We
926 * can thus safely do subsequent page lookups as if they were reads.
927 * But only do so when looping for pte_write is futile: in some cases
928 * userspace may also be wanting to write to the gotten user page,
929 * which a read fault here might prevent (a readonly page might get
930 * reCOWed by userspace write).
931 */
932 if ((ret & VM_FAULT_WRITE) && !(vma->vm_flags & VM_WRITE))
Mario Leinweber29231172018-04-05 16:24:18 -0700933 *flags |= FOLL_COW;
Kirill A. Shutemov16744482014-06-04 16:08:12 -0700934 return 0;
935}
936
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700937static int check_vma_flags(struct vm_area_struct *vma, unsigned long gup_flags)
938{
939 vm_flags_t vm_flags = vma->vm_flags;
Dave Hansen1b2ee122016-02-12 13:02:21 -0800940 int write = (gup_flags & FOLL_WRITE);
941 int foreign = (gup_flags & FOLL_REMOTE);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700942
943 if (vm_flags & (VM_IO | VM_PFNMAP))
944 return -EFAULT;
945
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200946 if (gup_flags & FOLL_ANON && !vma_is_anonymous(vma))
947 return -EFAULT;
948
Jason Gunthorpe52650c82020-12-14 19:05:48 -0800949 if ((gup_flags & FOLL_LONGTERM) && vma_is_fsdax(vma))
950 return -EOPNOTSUPP;
951
Dave Hansen1b2ee122016-02-12 13:02:21 -0800952 if (write) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700953 if (!(vm_flags & VM_WRITE)) {
954 if (!(gup_flags & FOLL_FORCE))
955 return -EFAULT;
956 /*
957 * We used to let the write,force case do COW in a
958 * VM_MAYWRITE VM_SHARED !VM_WRITE vma, so ptrace could
959 * set a breakpoint in a read-only mapping of an
960 * executable, without corrupting the file (yet only
961 * when that file had been opened for writing!).
962 * Anon pages in shared mappings are surprising: now
963 * just reject it.
964 */
Hugh Dickins46435362016-01-30 18:03:16 -0800965 if (!is_cow_mapping(vm_flags))
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700966 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700967 }
968 } else if (!(vm_flags & VM_READ)) {
969 if (!(gup_flags & FOLL_FORCE))
970 return -EFAULT;
971 /*
972 * Is there actually any vma we can reach here which does not
973 * have VM_MAYREAD set?
974 */
975 if (!(vm_flags & VM_MAYREAD))
976 return -EFAULT;
977 }
Dave Hansend61172b2016-02-12 13:02:24 -0800978 /*
979 * gups are always data accesses, not instruction
980 * fetches, so execute=false here
981 */
982 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -0800983 return -EFAULT;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -0700984 return 0;
985}
986
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700987/**
988 * __get_user_pages() - pin user pages in memory
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700989 * @mm: mm_struct of target mm
990 * @start: starting user address
991 * @nr_pages: number of pages from start to pin
992 * @gup_flags: flags modifying pin behaviour
993 * @pages: array that receives pointers to the pages pinned.
994 * Should be at least nr_pages long. Or NULL, if caller
995 * only intends to ensure the pages are faulted in.
996 * @vmas: array of pointers to vmas corresponding to each page.
997 * Or NULL if the caller does not require them.
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700998 * @locked: whether we're still with the mmap_lock held
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -0700999 *
Liu Xiangd2dfbe42019-11-30 17:49:53 -08001000 * Returns either number of pages pinned (which may be less than the
1001 * number requested), or an error. Details about the return value:
1002 *
1003 * -- If nr_pages is 0, returns 0.
1004 * -- If nr_pages is >0, but no pages were pinned, returns -errno.
1005 * -- If nr_pages is >0, and some pages were pinned, returns the number of
1006 * pages pinned. Again, this may be less than nr_pages.
Michal Hocko2d3a36a2020-06-03 16:03:25 -07001007 * -- 0 return value is possible when the fault would need to be retried.
Liu Xiangd2dfbe42019-11-30 17:49:53 -08001008 *
1009 * The caller is responsible for releasing returned @pages, via put_page().
1010 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001011 * @vmas are valid only as long as mmap_lock is held.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001012 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001013 * Must be called with mmap_lock held. It may be released. See below.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001014 *
1015 * __get_user_pages walks a process's page tables and takes a reference to
1016 * each struct page that each user address corresponds to at a given
1017 * instant. That is, it takes the page that would be accessed if a user
1018 * thread accesses the given user virtual address at that instant.
1019 *
1020 * This does not guarantee that the page exists in the user mappings when
1021 * __get_user_pages returns, and there may even be a completely different
1022 * page there in some cases (eg. if mmapped pagecache has been invalidated
1023 * and subsequently re faulted). However it does guarantee that the page
1024 * won't be freed completely. And mostly callers simply care that the page
1025 * contains data that was valid *at some point in time*. Typically, an IO
1026 * or similar operation cannot guarantee anything stronger anyway because
1027 * locks can't be held over the syscall boundary.
1028 *
1029 * If @gup_flags & FOLL_WRITE == 0, the page must not be written to. If
1030 * the page is written to, set_page_dirty (or set_page_dirty_lock, as
1031 * appropriate) must be called after the page is finished with, and
1032 * before put_page is called.
1033 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001034 * If @locked != NULL, *@locked will be set to 0 when mmap_lock is
Peter Xu4f6da932020-04-01 21:07:58 -07001035 * released by an up_read(). That can happen if @gup_flags does not
1036 * have FOLL_NOWAIT.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001037 *
Peter Xu4f6da932020-04-01 21:07:58 -07001038 * A caller using such a combination of @locked and @gup_flags
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001039 * must therefore hold the mmap_lock for reading only, and recognize
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001040 * when it's been released. Otherwise, it must be held for either
1041 * reading or writing and will not be released.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001042 *
1043 * In most cases, get_user_pages or get_user_pages_fast should be used
1044 * instead of __get_user_pages. __get_user_pages should be used only if
1045 * you need some special @gup_flags.
1046 */
Peter Xu64019a22020-08-11 18:39:01 -07001047static long __get_user_pages(struct mm_struct *mm,
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001048 unsigned long start, unsigned long nr_pages,
1049 unsigned int gup_flags, struct page **pages,
Peter Xu4f6da932020-04-01 21:07:58 -07001050 struct vm_area_struct **vmas, int *locked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001051{
Keith Buschdf06b372018-10-26 15:10:28 -07001052 long ret = 0, i = 0;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001053 struct vm_area_struct *vma = NULL;
Keith Buschdf06b372018-10-26 15:10:28 -07001054 struct follow_page_context ctx = { NULL };
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001055
1056 if (!nr_pages)
1057 return 0;
1058
Andrey Konovalovf9652592019-09-25 16:48:34 -07001059 start = untagged_addr(start);
1060
John Hubbardeddb1c22020-01-30 22:12:54 -08001061 VM_BUG_ON(!!pages != !!(gup_flags & (FOLL_GET | FOLL_PIN)));
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001062
1063 /*
1064 * If FOLL_FORCE is set then do not force a full fault as the hinting
1065 * fault information is unrelated to the reference behaviour of a task
1066 * using the address space
1067 */
1068 if (!(gup_flags & FOLL_FORCE))
1069 gup_flags |= FOLL_NUMA;
1070
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001071 do {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001072 struct page *page;
1073 unsigned int foll_flags = gup_flags;
1074 unsigned int page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001075
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001076 /* first iteration or cross vma bound */
1077 if (!vma || start >= vma->vm_end) {
1078 vma = find_extend_vma(mm, start);
1079 if (!vma && in_gate_area(mm, start)) {
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001080 ret = get_gate_page(mm, start & PAGE_MASK,
1081 gup_flags, &vma,
1082 pages ? &pages[i] : NULL);
1083 if (ret)
John Hubbard08be37b2018-11-30 14:08:53 -08001084 goto out;
Keith Buschdf06b372018-10-26 15:10:28 -07001085 ctx.page_mask = 0;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001086 goto next_page;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001087 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001088
Jason Gunthorpe52650c82020-12-14 19:05:48 -08001089 if (!vma) {
Keith Buschdf06b372018-10-26 15:10:28 -07001090 ret = -EFAULT;
1091 goto out;
1092 }
Jason Gunthorpe52650c82020-12-14 19:05:48 -08001093 ret = check_vma_flags(vma, gup_flags);
1094 if (ret)
1095 goto out;
1096
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001097 if (is_vm_hugetlb_page(vma)) {
1098 i = follow_hugetlb_page(mm, vma, pages, vmas,
1099 &start, &nr_pages, i,
Peter Xua308c712020-08-21 19:49:57 -04001100 gup_flags, locked);
Peter Xuad415db2020-04-01 21:08:02 -07001101 if (locked && *locked == 0) {
1102 /*
1103 * We've got a VM_FAULT_RETRY
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001104 * and we've lost mmap_lock.
Peter Xuad415db2020-04-01 21:08:02 -07001105 * We must stop here.
1106 */
1107 BUG_ON(gup_flags & FOLL_NOWAIT);
1108 BUG_ON(ret != 0);
1109 goto out;
1110 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001111 continue;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001112 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001113 }
1114retry:
1115 /*
1116 * If we have a pending SIGKILL, don't keep faulting pages and
1117 * potentially allocating memory.
1118 */
Davidlohr Buesofa45f112019-01-03 15:28:55 -08001119 if (fatal_signal_pending(current)) {
Michal Hockod180870d2020-04-20 18:13:55 -07001120 ret = -EINTR;
Keith Buschdf06b372018-10-26 15:10:28 -07001121 goto out;
1122 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001123 cond_resched();
Keith Buschdf06b372018-10-26 15:10:28 -07001124
1125 page = follow_page_mask(vma, start, foll_flags, &ctx);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001126 if (!page) {
Peter Xu64019a22020-08-11 18:39:01 -07001127 ret = faultin_page(vma, start, &foll_flags, locked);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001128 switch (ret) {
1129 case 0:
1130 goto retry;
Keith Buschdf06b372018-10-26 15:10:28 -07001131 case -EBUSY:
1132 ret = 0;
Joe Perchese4a9bc52020-04-06 20:08:39 -07001133 fallthrough;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001134 case -EFAULT:
1135 case -ENOMEM:
1136 case -EHWPOISON:
Keith Buschdf06b372018-10-26 15:10:28 -07001137 goto out;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001138 case -ENOENT:
1139 goto next_page;
1140 }
1141 BUG();
Kirill A. Shutemov1027e442015-09-04 15:47:55 -07001142 } else if (PTR_ERR(page) == -EEXIST) {
1143 /*
1144 * Proper page table entry exists, but no corresponding
1145 * struct page.
1146 */
1147 goto next_page;
1148 } else if (IS_ERR(page)) {
Keith Buschdf06b372018-10-26 15:10:28 -07001149 ret = PTR_ERR(page);
1150 goto out;
Kirill A. Shutemov1027e442015-09-04 15:47:55 -07001151 }
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001152 if (pages) {
1153 pages[i] = page;
1154 flush_anon_page(vma, page, start);
1155 flush_dcache_page(page);
Keith Buschdf06b372018-10-26 15:10:28 -07001156 ctx.page_mask = 0;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001157 }
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001158next_page:
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001159 if (vmas) {
1160 vmas[i] = vma;
Keith Buschdf06b372018-10-26 15:10:28 -07001161 ctx.page_mask = 0;
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001162 }
Keith Buschdf06b372018-10-26 15:10:28 -07001163 page_increm = 1 + (~(start >> PAGE_SHIFT) & ctx.page_mask);
Kirill A. Shutemovfa5bb202014-06-04 16:08:13 -07001164 if (page_increm > nr_pages)
1165 page_increm = nr_pages;
1166 i += page_increm;
1167 start += page_increm * PAGE_SIZE;
1168 nr_pages -= page_increm;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001169 } while (nr_pages);
Keith Buschdf06b372018-10-26 15:10:28 -07001170out:
1171 if (ctx.pgmap)
1172 put_dev_pagemap(ctx.pgmap);
1173 return i ? i : ret;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001174}
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001175
Tobias Klauser771ab432016-12-12 16:41:53 -08001176static bool vma_permits_fault(struct vm_area_struct *vma,
1177 unsigned int fault_flags)
Dave Hansend4925e02016-02-12 13:02:16 -08001178{
Dave Hansen1b2ee122016-02-12 13:02:21 -08001179 bool write = !!(fault_flags & FAULT_FLAG_WRITE);
1180 bool foreign = !!(fault_flags & FAULT_FLAG_REMOTE);
Dave Hansen33a709b2016-02-12 13:02:19 -08001181 vm_flags_t vm_flags = write ? VM_WRITE : VM_READ;
Dave Hansend4925e02016-02-12 13:02:16 -08001182
1183 if (!(vm_flags & vma->vm_flags))
1184 return false;
1185
Dave Hansen33a709b2016-02-12 13:02:19 -08001186 /*
1187 * The architecture might have a hardware protection
Dave Hansen1b2ee122016-02-12 13:02:21 -08001188 * mechanism other than read/write that can deny access.
Dave Hansend61172b2016-02-12 13:02:24 -08001189 *
1190 * gup always represents data access, not instruction
1191 * fetches, so execute=false here:
Dave Hansen33a709b2016-02-12 13:02:19 -08001192 */
Dave Hansend61172b2016-02-12 13:02:24 -08001193 if (!arch_vma_access_permitted(vma, write, false, foreign))
Dave Hansen33a709b2016-02-12 13:02:19 -08001194 return false;
1195
Dave Hansend4925e02016-02-12 13:02:16 -08001196 return true;
1197}
1198
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001199/**
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001200 * fixup_user_fault() - manually resolve a user page fault
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001201 * @mm: mm_struct of target mm
1202 * @address: user address
1203 * @fault_flags:flags to pass down to handle_mm_fault()
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001204 * @unlocked: did we unlock the mmap_lock while retrying, maybe NULL if caller
Miles Chen548b6a12020-06-01 21:48:33 -07001205 * does not allow retry. If NULL, the caller must guarantee
1206 * that fault_flags does not contain FAULT_FLAG_ALLOW_RETRY.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001207 *
1208 * This is meant to be called in the specific scenario where for locking reasons
1209 * we try to access user memory in atomic context (within a pagefault_disable()
1210 * section), this returns -EFAULT, and we want to resolve the user fault before
1211 * trying again.
1212 *
1213 * Typically this is meant to be used by the futex code.
1214 *
1215 * The main difference with get_user_pages() is that this function will
1216 * unconditionally call handle_mm_fault() which will in turn perform all the
1217 * necessary SW fixup of the dirty and young bits in the PTE, while
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001218 * get_user_pages() only guarantees to update these in the struct page.
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001219 *
1220 * This is important for some architectures where those bits also gate the
1221 * access permission to the page because they are maintained in software. On
1222 * such architectures, gup() will not be enough to make a subsequent access
1223 * succeed.
1224 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001225 * This function will not return with an unlocked mmap_lock. So it has not the
1226 * same semantics wrt the @mm->mmap_lock as does filemap_fault().
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001227 */
Peter Xu64019a22020-08-11 18:39:01 -07001228int fixup_user_fault(struct mm_struct *mm,
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001229 unsigned long address, unsigned int fault_flags,
1230 bool *unlocked)
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001231{
1232 struct vm_area_struct *vma;
Souptick Joarder2b740302018-08-23 17:01:36 -07001233 vm_fault_t ret, major = 0;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001234
Andrey Konovalovf9652592019-09-25 16:48:34 -07001235 address = untagged_addr(address);
1236
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001237 if (unlocked)
Peter Xu71335f32020-04-01 21:08:53 -07001238 fault_flags |= FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001239
1240retry:
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001241 vma = find_extend_vma(mm, address);
1242 if (!vma || address < vma->vm_start)
1243 return -EFAULT;
1244
Dave Hansend4925e02016-02-12 13:02:16 -08001245 if (!vma_permits_fault(vma, fault_flags))
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001246 return -EFAULT;
1247
Peter Xu475f4dfc2020-05-13 17:50:41 -07001248 if ((fault_flags & FAULT_FLAG_KILLABLE) &&
1249 fatal_signal_pending(current))
1250 return -EINTR;
1251
Peter Xubce617e2020-08-11 18:37:44 -07001252 ret = handle_mm_fault(vma, address, fault_flags, NULL);
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001253 major |= ret & VM_FAULT_MAJOR;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001254 if (ret & VM_FAULT_ERROR) {
James Morse9a291a72017-06-02 14:46:46 -07001255 int err = vm_fault_to_errno(ret, 0);
1256
1257 if (err)
1258 return err;
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001259 BUG();
1260 }
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001261
1262 if (ret & VM_FAULT_RETRY) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001263 mmap_read_lock(mm);
Peter Xu475f4dfc2020-05-13 17:50:41 -07001264 *unlocked = true;
1265 fault_flags |= FAULT_FLAG_TRIED;
1266 goto retry;
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -08001267 }
1268
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001269 return 0;
1270}
Paolo Bonziniadd6a0c2016-06-07 17:51:18 +02001271EXPORT_SYMBOL_GPL(fixup_user_fault);
Kirill A. Shutemov4bbd4c72014-06-04 16:08:10 -07001272
Michal Hocko2d3a36a2020-06-03 16:03:25 -07001273/*
1274 * Please note that this function, unlike __get_user_pages will not
1275 * return 0 for nr_pages > 0 without FOLL_NOWAIT
1276 */
Peter Xu64019a22020-08-11 18:39:01 -07001277static __always_inline long __get_user_pages_locked(struct mm_struct *mm,
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001278 unsigned long start,
1279 unsigned long nr_pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001280 struct page **pages,
1281 struct vm_area_struct **vmas,
Al Viroe7167122017-11-19 11:32:05 -05001282 int *locked,
Andrea Arcangeli0fd71a52015-02-11 15:27:20 -08001283 unsigned int flags)
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001284{
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001285 long ret, pages_done;
1286 bool lock_dropped;
1287
1288 if (locked) {
1289 /* if VM_FAULT_RETRY can be returned, vmas become invalid */
1290 BUG_ON(vmas);
1291 /* check caller initialized locked */
1292 BUG_ON(*locked != 1);
1293 }
1294
Peter Xu008cfe42020-09-25 18:25:57 -04001295 if (flags & FOLL_PIN)
Jason A. Donenfelda4d63c32020-09-28 12:35:07 +02001296 atomic_set(&mm->has_pinned, 1);
Peter Xu008cfe42020-09-25 18:25:57 -04001297
John Hubbardeddb1c22020-01-30 22:12:54 -08001298 /*
1299 * FOLL_PIN and FOLL_GET are mutually exclusive. Traditional behavior
1300 * is to set FOLL_GET if the caller wants pages[] filled in (but has
1301 * carelessly failed to specify FOLL_GET), so keep doing that, but only
1302 * for FOLL_GET, not for the newer FOLL_PIN.
1303 *
1304 * FOLL_PIN always expects pages to be non-null, but no need to assert
1305 * that here, as any failures will be obvious enough.
1306 */
1307 if (pages && !(flags & FOLL_PIN))
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001308 flags |= FOLL_GET;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001309
1310 pages_done = 0;
1311 lock_dropped = false;
1312 for (;;) {
Peter Xu64019a22020-08-11 18:39:01 -07001313 ret = __get_user_pages(mm, start, nr_pages, flags, pages,
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001314 vmas, locked);
1315 if (!locked)
1316 /* VM_FAULT_RETRY couldn't trigger, bypass */
1317 return ret;
1318
1319 /* VM_FAULT_RETRY cannot return errors */
1320 if (!*locked) {
1321 BUG_ON(ret < 0);
1322 BUG_ON(ret >= nr_pages);
1323 }
1324
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001325 if (ret > 0) {
1326 nr_pages -= ret;
1327 pages_done += ret;
1328 if (!nr_pages)
1329 break;
1330 }
1331 if (*locked) {
Andrea Arcangeli96312e62018-03-09 15:51:06 -08001332 /*
1333 * VM_FAULT_RETRY didn't trigger or it was a
1334 * FOLL_NOWAIT.
1335 */
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001336 if (!pages_done)
1337 pages_done = ret;
1338 break;
1339 }
Mike Rapoportdf172772019-05-31 22:30:33 -07001340 /*
1341 * VM_FAULT_RETRY triggered, so seek to the faulting offset.
1342 * For the prefault case (!pages) we only update counts.
1343 */
1344 if (likely(pages))
1345 pages += ret;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001346 start += ret << PAGE_SHIFT;
Peter Xu4426e942020-04-01 21:08:49 -07001347 lock_dropped = true;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001348
Peter Xu4426e942020-04-01 21:08:49 -07001349retry:
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001350 /*
1351 * Repeat on the address that fired VM_FAULT_RETRY
Peter Xu4426e942020-04-01 21:08:49 -07001352 * with both FAULT_FLAG_ALLOW_RETRY and
1353 * FAULT_FLAG_TRIED. Note that GUP can be interrupted
1354 * by fatal signals, so we need to check it before we
1355 * start trying again otherwise it can loop forever.
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001356 */
Peter Xu4426e942020-04-01 21:08:49 -07001357
Hillf Dantonae46d2a2020-04-08 11:59:24 -04001358 if (fatal_signal_pending(current)) {
1359 if (!pages_done)
1360 pages_done = -EINTR;
Peter Xu4426e942020-04-01 21:08:49 -07001361 break;
Hillf Dantonae46d2a2020-04-08 11:59:24 -04001362 }
Peter Xu4426e942020-04-01 21:08:49 -07001363
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001364 ret = mmap_read_lock_killable(mm);
Peter Xu71335f32020-04-01 21:08:53 -07001365 if (ret) {
1366 BUG_ON(ret > 0);
1367 if (!pages_done)
1368 pages_done = ret;
1369 break;
1370 }
Peter Xu4426e942020-04-01 21:08:49 -07001371
Peter Xuc7b6a562020-04-07 21:40:10 -04001372 *locked = 1;
Peter Xu64019a22020-08-11 18:39:01 -07001373 ret = __get_user_pages(mm, start, 1, flags | FOLL_TRIED,
Peter Xu4426e942020-04-01 21:08:49 -07001374 pages, NULL, locked);
1375 if (!*locked) {
1376 /* Continue to retry until we succeeded */
1377 BUG_ON(ret != 0);
1378 goto retry;
1379 }
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001380 if (ret != 1) {
1381 BUG_ON(ret > 1);
1382 if (!pages_done)
1383 pages_done = ret;
1384 break;
1385 }
1386 nr_pages--;
1387 pages_done++;
1388 if (!nr_pages)
1389 break;
Mike Rapoportdf172772019-05-31 22:30:33 -07001390 if (likely(pages))
1391 pages++;
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001392 start += PAGE_SIZE;
1393 }
Al Viroe7167122017-11-19 11:32:05 -05001394 if (lock_dropped && *locked) {
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001395 /*
1396 * We must let the caller know we temporarily dropped the lock
1397 * and so the critical section protected by it was lost.
1398 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001399 mmap_read_unlock(mm);
Andrea Arcangelif0818f42015-02-11 15:27:17 -08001400 *locked = 0;
1401 }
1402 return pages_done;
1403}
1404
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001405/**
1406 * populate_vma_page_range() - populate a range of pages in the vma.
1407 * @vma: target vma
1408 * @start: start address
1409 * @end: end address
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001410 * @locked: whether the mmap_lock is still held
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001411 *
1412 * This takes care of mlocking the pages too if VM_LOCKED is set.
1413 *
Tang Yizhou0a36f7f2020-08-06 23:20:01 -07001414 * Return either number of pages pinned in the vma, or a negative error
1415 * code on error.
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001416 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001417 * vma->vm_mm->mmap_lock must be held.
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001418 *
Peter Xu4f6da932020-04-01 21:07:58 -07001419 * If @locked is NULL, it may be held for read or write and will
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001420 * be unperturbed.
1421 *
Peter Xu4f6da932020-04-01 21:07:58 -07001422 * If @locked is non-NULL, it must held for read only and may be
1423 * released. If it's released, *@locked will be set to 0.
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001424 */
1425long populate_vma_page_range(struct vm_area_struct *vma,
Peter Xu4f6da932020-04-01 21:07:58 -07001426 unsigned long start, unsigned long end, int *locked)
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001427{
1428 struct mm_struct *mm = vma->vm_mm;
1429 unsigned long nr_pages = (end - start) / PAGE_SIZE;
1430 int gup_flags;
1431
1432 VM_BUG_ON(start & ~PAGE_MASK);
1433 VM_BUG_ON(end & ~PAGE_MASK);
1434 VM_BUG_ON_VMA(start < vma->vm_start, vma);
1435 VM_BUG_ON_VMA(end > vma->vm_end, vma);
Michel Lespinasse42fc5412020-06-08 21:33:44 -07001436 mmap_assert_locked(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001437
1438 gup_flags = FOLL_TOUCH | FOLL_POPULATE | FOLL_MLOCK;
1439 if (vma->vm_flags & VM_LOCKONFAULT)
1440 gup_flags &= ~FOLL_POPULATE;
1441 /*
1442 * We want to touch writable mappings with a write fault in order
1443 * to break COW, except for shared mappings because these don't COW
1444 * and we would not want to dirty them for nothing.
1445 */
1446 if ((vma->vm_flags & (VM_WRITE | VM_SHARED)) == VM_WRITE)
1447 gup_flags |= FOLL_WRITE;
1448
1449 /*
1450 * We want mlock to succeed for regions that have any permissions
1451 * other than PROT_NONE.
1452 */
Anshuman Khandual3122e802020-04-06 20:03:47 -07001453 if (vma_is_accessible(vma))
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001454 gup_flags |= FOLL_FORCE;
1455
1456 /*
1457 * We made sure addr is within a VMA, so the following will
1458 * not result in a stack expansion that recurses back here.
1459 */
Peter Xu64019a22020-08-11 18:39:01 -07001460 return __get_user_pages(mm, start, nr_pages, gup_flags,
Peter Xu4f6da932020-04-01 21:07:58 -07001461 NULL, NULL, locked);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001462}
1463
1464/*
1465 * __mm_populate - populate and/or mlock pages within a range of address space.
1466 *
1467 * This is used to implement mlock() and the MAP_POPULATE / MAP_LOCKED mmap
1468 * flags. VMAs must be already marked with the desired vm_flags, and
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001469 * mmap_lock must not be held.
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001470 */
1471int __mm_populate(unsigned long start, unsigned long len, int ignore_errors)
1472{
1473 struct mm_struct *mm = current->mm;
1474 unsigned long end, nstart, nend;
1475 struct vm_area_struct *vma = NULL;
1476 int locked = 0;
1477 long ret = 0;
1478
1479 end = start + len;
1480
1481 for (nstart = start; nstart < end; nstart = nend) {
1482 /*
1483 * We want to fault in pages for [nstart; end) address range.
1484 * Find first corresponding VMA.
1485 */
1486 if (!locked) {
1487 locked = 1;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001488 mmap_read_lock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001489 vma = find_vma(mm, nstart);
1490 } else if (nstart >= vma->vm_end)
1491 vma = vma->vm_next;
1492 if (!vma || vma->vm_start >= end)
1493 break;
1494 /*
1495 * Set [nstart; nend) to intersection of desired address
1496 * range with the first VMA. Also, skip undesirable VMA types.
1497 */
1498 nend = min(end, vma->vm_end);
1499 if (vma->vm_flags & (VM_IO | VM_PFNMAP))
1500 continue;
1501 if (nstart < vma->vm_start)
1502 nstart = vma->vm_start;
1503 /*
1504 * Now fault in a range of pages. populate_vma_page_range()
1505 * double checks the vma flags, so that it won't mlock pages
1506 * if the vma was already munlocked.
1507 */
1508 ret = populate_vma_page_range(vma, nstart, nend, &locked);
1509 if (ret < 0) {
1510 if (ignore_errors) {
1511 ret = 0;
1512 continue; /* continue at next VMA */
1513 }
1514 break;
1515 }
1516 nend = nstart + ret * PAGE_SIZE;
1517 ret = 0;
1518 }
1519 if (locked)
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001520 mmap_read_unlock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001521 return ret; /* 0 or negative error code */
1522}
Christoph Hellwig050a9ad2019-07-11 20:57:21 -07001523#else /* CONFIG_MMU */
Peter Xu64019a22020-08-11 18:39:01 -07001524static long __get_user_pages_locked(struct mm_struct *mm, unsigned long start,
Christoph Hellwig050a9ad2019-07-11 20:57:21 -07001525 unsigned long nr_pages, struct page **pages,
1526 struct vm_area_struct **vmas, int *locked,
1527 unsigned int foll_flags)
1528{
1529 struct vm_area_struct *vma;
1530 unsigned long vm_flags;
Pavel Tatashin24dc20c2021-05-04 18:39:15 -07001531 long i;
Christoph Hellwig050a9ad2019-07-11 20:57:21 -07001532
1533 /* calculate required read or write permissions.
1534 * If FOLL_FORCE is set, we only require the "MAY" flags.
1535 */
1536 vm_flags = (foll_flags & FOLL_WRITE) ?
1537 (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
1538 vm_flags &= (foll_flags & FOLL_FORCE) ?
1539 (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
1540
1541 for (i = 0; i < nr_pages; i++) {
1542 vma = find_vma(mm, start);
1543 if (!vma)
1544 goto finish_or_fault;
1545
1546 /* protect what we can, including chardevs */
1547 if ((vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
1548 !(vm_flags & vma->vm_flags))
1549 goto finish_or_fault;
1550
1551 if (pages) {
1552 pages[i] = virt_to_page(start);
1553 if (pages[i])
1554 get_page(pages[i]);
1555 }
1556 if (vmas)
1557 vmas[i] = vma;
1558 start = (start + PAGE_SIZE) & PAGE_MASK;
1559 }
1560
1561 return i;
1562
1563finish_or_fault:
1564 return i ? : -EFAULT;
1565}
1566#endif /* !CONFIG_MMU */
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001567
Jann Horn8f942ee2020-10-15 20:12:40 -07001568/**
1569 * get_dump_page() - pin user page in memory while writing it to core dump
1570 * @addr: user address
1571 *
1572 * Returns struct page pointer of user page pinned for dump,
1573 * to be freed afterwards by put_page().
1574 *
1575 * Returns NULL on any kind of failure - a hole must then be inserted into
1576 * the corefile, to preserve alignment with its headers; and also returns
1577 * NULL wherever the ZERO_PAGE, or an anonymous pte_none, has been found -
Ingo Molnarf0953a12021-05-06 18:06:47 -07001578 * allowing a hole to be left in the corefile to save disk space.
Jann Horn8f942ee2020-10-15 20:12:40 -07001579 *
Jann Horn7f3bfab2020-10-15 20:12:57 -07001580 * Called without mmap_lock (takes and releases the mmap_lock by itself).
Jann Horn8f942ee2020-10-15 20:12:40 -07001581 */
1582#ifdef CONFIG_ELF_CORE
1583struct page *get_dump_page(unsigned long addr)
1584{
Jann Horn7f3bfab2020-10-15 20:12:57 -07001585 struct mm_struct *mm = current->mm;
Jann Horn8f942ee2020-10-15 20:12:40 -07001586 struct page *page;
Jann Horn7f3bfab2020-10-15 20:12:57 -07001587 int locked = 1;
1588 int ret;
Jann Horn8f942ee2020-10-15 20:12:40 -07001589
Jann Horn7f3bfab2020-10-15 20:12:57 -07001590 if (mmap_read_lock_killable(mm))
Jann Horn8f942ee2020-10-15 20:12:40 -07001591 return NULL;
Jann Horn7f3bfab2020-10-15 20:12:57 -07001592 ret = __get_user_pages_locked(mm, addr, 1, &page, NULL, &locked,
1593 FOLL_FORCE | FOLL_DUMP | FOLL_GET);
1594 if (locked)
1595 mmap_read_unlock(mm);
1596 return (ret == 1) ? page : NULL;
Jann Horn8f942ee2020-10-15 20:12:40 -07001597}
1598#endif /* CONFIG_ELF_CORE */
1599
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001600#ifdef CONFIG_MIGRATION
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001601/*
1602 * Check whether all pages are pinnable, if so return number of pages. If some
1603 * pages are not pinnable, migrate them, and unpin all pages. Return zero if
1604 * pages were migrated, or if some pages were not successfully isolated.
1605 * Return negative error if migration fails.
1606 */
1607static long check_and_migrate_movable_pages(unsigned long nr_pages,
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001608 struct page **pages,
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001609 unsigned int gup_flags)
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001610{
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001611 unsigned long i;
1612 unsigned long isolation_error_count = 0;
1613 bool drain_allow = true;
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001614 LIST_HEAD(movable_page_list);
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001615 long ret = 0;
1616 struct page *prev_head = NULL;
1617 struct page *head;
Joonsoo Kimed03d922020-08-11 18:37:41 -07001618 struct migration_target_control mtc = {
1619 .nid = NUMA_NO_NODE,
Pavel Tatashinc991ffe2021-05-04 18:38:38 -07001620 .gfp_mask = GFP_USER | __GFP_NOWARN,
Joonsoo Kimed03d922020-08-11 18:37:41 -07001621 };
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001622
Pavel Tatashin83c02c22021-05-04 18:38:42 -07001623 for (i = 0; i < nr_pages; i++) {
1624 head = compound_head(pages[i]);
1625 if (head == prev_head)
1626 continue;
1627 prev_head = head;
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001628 /*
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001629 * If we get a movable page, since we are going to be pinning
1630 * these entries, try to move them out if possible.
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001631 */
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001632 if (!is_pinnable_page(head)) {
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001633 if (PageHuge(head)) {
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001634 if (!isolate_huge_page(head, &movable_page_list))
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001635 isolation_error_count++;
1636 } else {
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001637 if (!PageLRU(head) && drain_allow) {
1638 lru_add_drain_all();
1639 drain_allow = false;
1640 }
1641
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001642 if (isolate_lru_page(head)) {
1643 isolation_error_count++;
1644 continue;
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001645 }
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001646 list_add_tail(&head->lru, &movable_page_list);
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001647 mod_node_page_state(page_pgdat(head),
1648 NR_ISOLATED_ANON +
1649 page_is_file_lru(head),
1650 thp_nr_pages(head));
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001651 }
1652 }
1653 }
1654
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001655 /*
1656 * If list is empty, and no isolation errors, means that all pages are
1657 * in the correct zone.
1658 */
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001659 if (list_empty(&movable_page_list) && !isolation_error_count)
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001660 return nr_pages;
Pavel Tatashin6e7f34e2021-05-04 18:38:49 -07001661
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001662 if (gup_flags & FOLL_PIN) {
1663 unpin_user_pages(pages, nr_pages);
1664 } else {
1665 for (i = 0; i < nr_pages; i++)
1666 put_page(pages[i]);
1667 }
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001668 if (!list_empty(&movable_page_list)) {
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001669 ret = migrate_pages(&movable_page_list, alloc_migration_target,
Pavel Tatashinf0f44632021-05-04 18:38:46 -07001670 NULL, (unsigned long)&mtc, MIGRATE_SYNC,
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001671 MR_LONGTERM_PIN);
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001672 if (ret && !list_empty(&movable_page_list))
1673 putback_movable_pages(&movable_page_list);
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001674 }
1675
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001676 return ret > 0 ? -ENOMEM : ret;
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001677}
1678#else
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001679static long check_and_migrate_movable_pages(unsigned long nr_pages,
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001680 struct page **pages,
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001681 unsigned int gup_flags)
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001682{
1683 return nr_pages;
1684}
Pavel Tatashind1e153f2021-05-04 18:39:08 -07001685#endif /* CONFIG_MIGRATION */
Aneesh Kumar K.V9a4e9f32019-03-05 15:47:44 -08001686
Dan Williams2bb6d282017-11-29 16:10:35 -08001687/*
Ira Weiny932f4a62019-05-13 17:17:03 -07001688 * __gup_longterm_locked() is a wrapper for __get_user_pages_locked which
1689 * allows us to process the FOLL_LONGTERM flag.
Dan Williams2bb6d282017-11-29 16:10:35 -08001690 */
Peter Xu64019a22020-08-11 18:39:01 -07001691static long __gup_longterm_locked(struct mm_struct *mm,
Ira Weiny932f4a62019-05-13 17:17:03 -07001692 unsigned long start,
1693 unsigned long nr_pages,
1694 struct page **pages,
1695 struct vm_area_struct **vmas,
1696 unsigned int gup_flags)
Dan Williams2bb6d282017-11-29 16:10:35 -08001697{
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001698 unsigned int flags;
Jason Gunthorpe52650c82020-12-14 19:05:48 -08001699 long rc;
Dan Williams2bb6d282017-11-29 16:10:35 -08001700
Pavel Tatashinf68749e2021-05-04 18:39:19 -07001701 if (!(gup_flags & FOLL_LONGTERM))
1702 return __get_user_pages_locked(mm, start, nr_pages, pages, vmas,
1703 NULL, gup_flags);
1704 flags = memalloc_pin_save();
1705 do {
1706 rc = __get_user_pages_locked(mm, start, nr_pages, pages, vmas,
1707 NULL, gup_flags);
1708 if (rc <= 0)
1709 break;
1710 rc = check_and_migrate_movable_pages(rc, pages, gup_flags);
1711 } while (!rc);
1712 memalloc_pin_restore(flags);
Dan Williams2bb6d282017-11-29 16:10:35 -08001713
Dan Williams2bb6d282017-11-29 16:10:35 -08001714 return rc;
1715}
Ira Weiny932f4a62019-05-13 17:17:03 -07001716
Barry Song447f3e42020-10-13 16:51:58 -07001717static bool is_valid_gup_flags(unsigned int gup_flags)
1718{
1719 /*
1720 * FOLL_PIN must only be set internally by the pin_user_pages*() APIs,
1721 * never directly by the caller, so enforce that with an assertion:
1722 */
1723 if (WARN_ON_ONCE(gup_flags & FOLL_PIN))
1724 return false;
1725 /*
1726 * FOLL_PIN is a prerequisite to FOLL_LONGTERM. Another way of saying
1727 * that is, FOLL_LONGTERM is a specific case, more restrictive case of
1728 * FOLL_PIN.
1729 */
1730 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1731 return false;
1732
1733 return true;
1734}
1735
John Hubbard22bf29b2020-04-01 21:05:10 -07001736#ifdef CONFIG_MMU
Peter Xu64019a22020-08-11 18:39:01 -07001737static long __get_user_pages_remote(struct mm_struct *mm,
John Hubbard22bf29b2020-04-01 21:05:10 -07001738 unsigned long start, unsigned long nr_pages,
1739 unsigned int gup_flags, struct page **pages,
1740 struct vm_area_struct **vmas, int *locked)
1741{
1742 /*
1743 * Parts of FOLL_LONGTERM behavior are incompatible with
1744 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1745 * vmas. However, this only comes up if locked is set, and there are
1746 * callers that do request FOLL_LONGTERM, but do not set locked. So,
1747 * allow what we can.
1748 */
1749 if (gup_flags & FOLL_LONGTERM) {
1750 if (WARN_ON_ONCE(locked))
1751 return -EINVAL;
1752 /*
1753 * This will check the vmas (even if our vmas arg is NULL)
1754 * and return -ENOTSUPP if DAX isn't allowed in this case:
1755 */
Peter Xu64019a22020-08-11 18:39:01 -07001756 return __gup_longterm_locked(mm, start, nr_pages, pages,
John Hubbard22bf29b2020-04-01 21:05:10 -07001757 vmas, gup_flags | FOLL_TOUCH |
1758 FOLL_REMOTE);
1759 }
1760
Peter Xu64019a22020-08-11 18:39:01 -07001761 return __get_user_pages_locked(mm, start, nr_pages, pages, vmas,
John Hubbard22bf29b2020-04-01 21:05:10 -07001762 locked,
1763 gup_flags | FOLL_TOUCH | FOLL_REMOTE);
1764}
1765
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001766/**
John Hubbardc4237f82020-01-30 22:12:36 -08001767 * get_user_pages_remote() - pin user pages in memory
John Hubbardc4237f82020-01-30 22:12:36 -08001768 * @mm: mm_struct of target mm
1769 * @start: starting user address
1770 * @nr_pages: number of pages from start to pin
1771 * @gup_flags: flags modifying lookup behaviour
1772 * @pages: array that receives pointers to the pages pinned.
1773 * Should be at least nr_pages long. Or NULL, if caller
1774 * only intends to ensure the pages are faulted in.
1775 * @vmas: array of pointers to vmas corresponding to each page.
1776 * Or NULL if the caller does not require them.
1777 * @locked: pointer to lock flag indicating whether lock is held and
1778 * subsequently whether VM_FAULT_RETRY functionality can be
1779 * utilised. Lock must initially be held.
1780 *
1781 * Returns either number of pages pinned (which may be less than the
1782 * number requested), or an error. Details about the return value:
1783 *
1784 * -- If nr_pages is 0, returns 0.
1785 * -- If nr_pages is >0, but no pages were pinned, returns -errno.
1786 * -- If nr_pages is >0, and some pages were pinned, returns the number of
1787 * pages pinned. Again, this may be less than nr_pages.
1788 *
1789 * The caller is responsible for releasing returned @pages, via put_page().
1790 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001791 * @vmas are valid only as long as mmap_lock is held.
John Hubbardc4237f82020-01-30 22:12:36 -08001792 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001793 * Must be called with mmap_lock held for read or write.
John Hubbardc4237f82020-01-30 22:12:36 -08001794 *
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001795 * get_user_pages_remote walks a process's page tables and takes a reference
1796 * to each struct page that each user address corresponds to at a given
John Hubbardc4237f82020-01-30 22:12:36 -08001797 * instant. That is, it takes the page that would be accessed if a user
1798 * thread accesses the given user virtual address at that instant.
1799 *
1800 * This does not guarantee that the page exists in the user mappings when
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001801 * get_user_pages_remote returns, and there may even be a completely different
John Hubbardc4237f82020-01-30 22:12:36 -08001802 * page there in some cases (eg. if mmapped pagecache has been invalidated
1803 * and subsequently re faulted). However it does guarantee that the page
1804 * won't be freed completely. And mostly callers simply care that the page
1805 * contains data that was valid *at some point in time*. Typically, an IO
1806 * or similar operation cannot guarantee anything stronger anyway because
1807 * locks can't be held over the syscall boundary.
1808 *
1809 * If gup_flags & FOLL_WRITE == 0, the page must not be written to. If the page
1810 * is written to, set_page_dirty (or set_page_dirty_lock, as appropriate) must
1811 * be called after the page is finished with, and before put_page is called.
1812 *
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001813 * get_user_pages_remote is typically used for fewer-copy IO operations,
1814 * to get a handle on the memory by some means other than accesses
1815 * via the user virtual addresses. The pages may be submitted for
1816 * DMA to devices or accessed via their kernel linear mapping (via the
1817 * kmap APIs). Care should be taken to use the correct cache flushing APIs.
John Hubbardc4237f82020-01-30 22:12:36 -08001818 *
1819 * See also get_user_pages_fast, for performance critical applications.
1820 *
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001821 * get_user_pages_remote should be phased out in favor of
John Hubbardc4237f82020-01-30 22:12:36 -08001822 * get_user_pages_locked|unlocked or get_user_pages_fast. Nothing
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001823 * should use get_user_pages_remote because it cannot pass
John Hubbardc4237f82020-01-30 22:12:36 -08001824 * FAULT_FLAG_ALLOW_RETRY to handle_mm_fault.
1825 */
Peter Xu64019a22020-08-11 18:39:01 -07001826long get_user_pages_remote(struct mm_struct *mm,
John Hubbardc4237f82020-01-30 22:12:36 -08001827 unsigned long start, unsigned long nr_pages,
1828 unsigned int gup_flags, struct page **pages,
1829 struct vm_area_struct **vmas, int *locked)
1830{
Barry Song447f3e42020-10-13 16:51:58 -07001831 if (!is_valid_gup_flags(gup_flags))
John Hubbardeddb1c22020-01-30 22:12:54 -08001832 return -EINVAL;
1833
Peter Xu64019a22020-08-11 18:39:01 -07001834 return __get_user_pages_remote(mm, start, nr_pages, gup_flags,
John Hubbard22bf29b2020-04-01 21:05:10 -07001835 pages, vmas, locked);
John Hubbardc4237f82020-01-30 22:12:36 -08001836}
1837EXPORT_SYMBOL(get_user_pages_remote);
1838
John Hubbardeddb1c22020-01-30 22:12:54 -08001839#else /* CONFIG_MMU */
Peter Xu64019a22020-08-11 18:39:01 -07001840long get_user_pages_remote(struct mm_struct *mm,
John Hubbardeddb1c22020-01-30 22:12:54 -08001841 unsigned long start, unsigned long nr_pages,
1842 unsigned int gup_flags, struct page **pages,
1843 struct vm_area_struct **vmas, int *locked)
1844{
1845 return 0;
1846}
John Hubbard3faa52c2020-04-01 21:05:29 -07001847
Peter Xu64019a22020-08-11 18:39:01 -07001848static long __get_user_pages_remote(struct mm_struct *mm,
John Hubbard3faa52c2020-04-01 21:05:29 -07001849 unsigned long start, unsigned long nr_pages,
1850 unsigned int gup_flags, struct page **pages,
1851 struct vm_area_struct **vmas, int *locked)
1852{
1853 return 0;
1854}
John Hubbardeddb1c22020-01-30 22:12:54 -08001855#endif /* !CONFIG_MMU */
1856
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001857/**
1858 * get_user_pages() - pin user pages in memory
1859 * @start: starting user address
1860 * @nr_pages: number of pages from start to pin
1861 * @gup_flags: flags modifying lookup behaviour
1862 * @pages: array that receives pointers to the pages pinned.
1863 * Should be at least nr_pages long. Or NULL, if caller
1864 * only intends to ensure the pages are faulted in.
1865 * @vmas: array of pointers to vmas corresponding to each page.
1866 * Or NULL if the caller does not require them.
1867 *
Peter Xu64019a22020-08-11 18:39:01 -07001868 * This is the same as get_user_pages_remote(), just with a less-flexible
1869 * calling convention where we assume that the mm being operated on belongs to
1870 * the current task, and doesn't allow passing of a locked parameter. We also
1871 * obviously don't pass FOLL_REMOTE in here.
Ira Weiny932f4a62019-05-13 17:17:03 -07001872 */
1873long get_user_pages(unsigned long start, unsigned long nr_pages,
1874 unsigned int gup_flags, struct page **pages,
1875 struct vm_area_struct **vmas)
1876{
Barry Song447f3e42020-10-13 16:51:58 -07001877 if (!is_valid_gup_flags(gup_flags))
John Hubbardeddb1c22020-01-30 22:12:54 -08001878 return -EINVAL;
1879
Peter Xu64019a22020-08-11 18:39:01 -07001880 return __gup_longterm_locked(current->mm, start, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07001881 pages, vmas, gup_flags | FOLL_TOUCH);
1882}
1883EXPORT_SYMBOL(get_user_pages);
Dan Williams2bb6d282017-11-29 16:10:35 -08001884
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001885/**
Mauro Carvalho Chehaba00cda32020-12-14 19:14:39 -08001886 * get_user_pages_locked() - variant of get_user_pages()
1887 *
1888 * @start: starting user address
1889 * @nr_pages: number of pages from start to pin
1890 * @gup_flags: flags modifying lookup behaviour
1891 * @pages: array that receives pointers to the pages pinned.
1892 * Should be at least nr_pages long. Or NULL, if caller
1893 * only intends to ensure the pages are faulted in.
1894 * @locked: pointer to lock flag indicating whether lock is held and
1895 * subsequently whether VM_FAULT_RETRY functionality can be
1896 * utilised. Lock must initially be held.
1897 *
1898 * It is suitable to replace the form:
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001899 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001900 * mmap_read_lock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001901 * do_something()
Peter Xu64019a22020-08-11 18:39:01 -07001902 * get_user_pages(mm, ..., pages, NULL);
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001903 * mmap_read_unlock(mm);
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001904 *
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001905 * to:
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001906 *
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001907 * int locked = 1;
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001908 * mmap_read_lock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001909 * do_something()
Peter Xu64019a22020-08-11 18:39:01 -07001910 * get_user_pages_locked(mm, ..., pages, &locked);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001911 * if (locked)
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001912 * mmap_read_unlock(mm);
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001913 *
Souptick Joarderadc8cb42020-06-01 21:48:24 -07001914 * We can leverage the VM_FAULT_RETRY functionality in the page fault
1915 * paths better by using either get_user_pages_locked() or
1916 * get_user_pages_unlocked().
1917 *
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001918 */
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001919long get_user_pages_locked(unsigned long start, unsigned long nr_pages,
1920 unsigned int gup_flags, struct page **pages,
1921 int *locked)
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001922{
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001923 /*
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001924 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
1925 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1926 * vmas. As there are no users of this flag in this call we simply
1927 * disallow this option for now.
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001928 */
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001929 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1930 return -EINVAL;
John Hubbard420c2092020-06-07 21:41:02 -07001931 /*
1932 * FOLL_PIN must only be set internally by the pin_user_pages*() APIs,
1933 * never directly by the caller, so enforce that:
1934 */
1935 if (WARN_ON_ONCE(gup_flags & FOLL_PIN))
1936 return -EINVAL;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001937
Peter Xu64019a22020-08-11 18:39:01 -07001938 return __get_user_pages_locked(current->mm, start, nr_pages,
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001939 pages, NULL, locked,
1940 gup_flags | FOLL_TOUCH);
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001941}
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001942EXPORT_SYMBOL(get_user_pages_locked);
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001943
1944/*
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001945 * get_user_pages_unlocked() is suitable to replace the form:
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001946 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001947 * mmap_read_lock(mm);
Peter Xu64019a22020-08-11 18:39:01 -07001948 * get_user_pages(mm, ..., pages, NULL);
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07001949 * mmap_read_unlock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001950 *
1951 * with:
1952 *
Peter Xu64019a22020-08-11 18:39:01 -07001953 * get_user_pages_unlocked(mm, ..., pages);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001954 *
1955 * It is functionally equivalent to get_user_pages_fast so
1956 * get_user_pages_fast should be used instead if specific gup_flags
1957 * (e.g. FOLL_FORCE) are not required.
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001958 */
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001959long get_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
1960 struct page **pages, unsigned int gup_flags)
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001961{
1962 struct mm_struct *mm = current->mm;
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001963 int locked = 1;
1964 long ret;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001965
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001966 /*
1967 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
1968 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
1969 * vmas. As there are no users of this flag in this call we simply
1970 * disallow this option for now.
1971 */
1972 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
1973 return -EINVAL;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001974
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001975 mmap_read_lock(mm);
Peter Xu64019a22020-08-11 18:39:01 -07001976 ret = __get_user_pages_locked(mm, start, nr_pages, pages, NULL,
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001977 &locked, gup_flags | FOLL_TOUCH);
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001978 if (locked)
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001979 mmap_read_unlock(mm);
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001980 return ret;
Kirill A. Shutemovacc3c8d2015-04-14 15:44:45 -07001981}
Christoph Hellwigd3649f62019-07-11 20:57:18 -07001982EXPORT_SYMBOL(get_user_pages_unlocked);
Steve Capper2667f502014-10-09 15:29:14 -07001983
1984/*
Christoph Hellwig67a929e2019-07-11 20:57:14 -07001985 * Fast GUP
Steve Capper2667f502014-10-09 15:29:14 -07001986 *
1987 * get_user_pages_fast attempts to pin user pages by walking the page
1988 * tables directly and avoids taking locks. Thus the walker needs to be
1989 * protected from page table pages being freed from under it, and should
1990 * block any THP splits.
1991 *
1992 * One way to achieve this is to have the walker disable interrupts, and
1993 * rely on IPIs from the TLB flushing code blocking before the page table
1994 * pages are freed. This is unsuitable for architectures that do not need
1995 * to broadcast an IPI when invalidating TLBs.
1996 *
1997 * Another way to achieve this is to batch up page table containing pages
1998 * belonging to more than one mm_user, then rcu_sched a callback to free those
1999 * pages. Disabling interrupts will allow the fast_gup walker to both block
2000 * the rcu_sched callback, and an IPI that we broadcast for splitting THPs
2001 * (which is a relatively rare event). The code below adopts this strategy.
2002 *
2003 * Before activating this code, please be aware that the following assumptions
2004 * are currently made:
2005 *
Peter Zijlstraff2e6d722020-02-03 17:37:02 -08002006 * *) Either MMU_GATHER_RCU_TABLE_FREE is enabled, and tlb_remove_table() is used to
Kirill A. Shutemove5855132017-06-06 14:31:20 +03002007 * free pages containing page tables or TLB flushing requires IPI broadcast.
Steve Capper2667f502014-10-09 15:29:14 -07002008 *
Steve Capper2667f502014-10-09 15:29:14 -07002009 * *) ptes can be read atomically by the architecture.
2010 *
2011 * *) access_ok is sufficient to validate userspace address ranges.
2012 *
2013 * The last two assumptions can be relaxed by the addition of helper functions.
2014 *
2015 * This code is based heavily on the PowerPC implementation by Nick Piggin.
2016 */
Christoph Hellwig67a929e2019-07-11 20:57:14 -07002017#ifdef CONFIG_HAVE_FAST_GUP
John Hubbard3faa52c2020-04-01 21:05:29 -07002018
Guenter Roeck790c7362019-07-11 20:57:46 -07002019static void __maybe_unused undo_dev_pagemap(int *nr, int nr_start,
John Hubbard3b78d832020-04-01 21:05:22 -07002020 unsigned int flags,
Guenter Roeck790c7362019-07-11 20:57:46 -07002021 struct page **pages)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002022{
2023 while ((*nr) - nr_start) {
2024 struct page *page = pages[--(*nr)];
2025
2026 ClearPageReferenced(page);
John Hubbard3faa52c2020-04-01 21:05:29 -07002027 if (flags & FOLL_PIN)
2028 unpin_user_page(page);
2029 else
2030 put_page(page);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002031 }
2032}
2033
Laurent Dufour3010a5e2018-06-07 17:06:08 -07002034#ifdef CONFIG_ARCH_HAS_PTE_SPECIAL
Steve Capper2667f502014-10-09 15:29:14 -07002035static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002036 unsigned int flags, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002037{
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002038 struct dev_pagemap *pgmap = NULL;
2039 int nr_start = *nr, ret = 0;
Steve Capper2667f502014-10-09 15:29:14 -07002040 pte_t *ptep, *ptem;
Steve Capper2667f502014-10-09 15:29:14 -07002041
2042 ptem = ptep = pte_offset_map(&pmd, addr);
2043 do {
Peter Zijlstra2a4a06d2020-11-13 11:41:40 +01002044 pte_t pte = ptep_get_lockless(ptep);
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08002045 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07002046
2047 /*
2048 * Similar to the PMD case below, NUMA hinting must take slow
Mel Gorman8a0516e2015-02-12 14:58:22 -08002049 * path using the pte_protnone check.
Steve Capper2667f502014-10-09 15:29:14 -07002050 */
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03002051 if (pte_protnone(pte))
2052 goto pte_unmap;
2053
Ira Weinyb798bec2019-05-13 17:17:07 -07002054 if (!pte_access_permitted(pte, flags & FOLL_WRITE))
Kirill A. Shutemove7884f82017-03-16 18:26:50 +03002055 goto pte_unmap;
2056
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002057 if (pte_devmap(pte)) {
Ira Weiny7af75562019-05-13 17:17:14 -07002058 if (unlikely(flags & FOLL_LONGTERM))
2059 goto pte_unmap;
2060
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002061 pgmap = get_dev_pagemap(pte_pfn(pte), pgmap);
2062 if (unlikely(!pgmap)) {
John Hubbard3b78d832020-04-01 21:05:22 -07002063 undo_dev_pagemap(nr, nr_start, flags, pages);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002064 goto pte_unmap;
2065 }
2066 } else if (pte_special(pte))
Steve Capper2667f502014-10-09 15:29:14 -07002067 goto pte_unmap;
2068
2069 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
2070 page = pte_page(pte);
2071
John Hubbard3faa52c2020-04-01 21:05:29 -07002072 head = try_grab_compound_head(page, 1, flags);
Linus Torvalds8fde12c2019-04-11 10:49:19 -07002073 if (!head)
Steve Capper2667f502014-10-09 15:29:14 -07002074 goto pte_unmap;
2075
2076 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
John Hubbard3faa52c2020-04-01 21:05:29 -07002077 put_compound_head(head, 1, flags);
Steve Capper2667f502014-10-09 15:29:14 -07002078 goto pte_unmap;
2079 }
2080
Kirill A. Shutemov7aef4172016-01-15 16:52:32 -08002081 VM_BUG_ON_PAGE(compound_head(page) != head, page);
Kirill A. Shutemove9348052017-03-16 18:26:52 +03002082
Claudio Imbrendaf28d4362020-04-01 21:05:56 -07002083 /*
2084 * We need to make the page accessible if and only if we are
2085 * going to access its content (the FOLL_PIN case). Please
2086 * see Documentation/core-api/pin_user_pages.rst for
2087 * details.
2088 */
2089 if (flags & FOLL_PIN) {
2090 ret = arch_make_page_accessible(page);
2091 if (ret) {
2092 unpin_user_page(page);
2093 goto pte_unmap;
2094 }
2095 }
Kirill A. Shutemove9348052017-03-16 18:26:52 +03002096 SetPageReferenced(page);
Steve Capper2667f502014-10-09 15:29:14 -07002097 pages[*nr] = page;
2098 (*nr)++;
2099
2100 } while (ptep++, addr += PAGE_SIZE, addr != end);
2101
2102 ret = 1;
2103
2104pte_unmap:
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01002105 if (pgmap)
2106 put_dev_pagemap(pgmap);
Steve Capper2667f502014-10-09 15:29:14 -07002107 pte_unmap(ptem);
2108 return ret;
2109}
2110#else
2111
2112/*
2113 * If we can't determine whether or not a pte is special, then fail immediately
2114 * for ptes. Note, we can still pin HugeTLB and THP as these are guaranteed not
2115 * to be special.
2116 *
2117 * For a futex to be placed on a THP tail page, get_futex_key requires a
Souptick Joarderdadbb612020-06-07 21:40:55 -07002118 * get_user_pages_fast_only implementation that can pin pages. Thus it's still
Steve Capper2667f502014-10-09 15:29:14 -07002119 * useful to have gup_huge_pmd even if we can't operate on ptes.
2120 */
2121static int gup_pte_range(pmd_t pmd, unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002122 unsigned int flags, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002123{
2124 return 0;
2125}
Laurent Dufour3010a5e2018-06-07 17:06:08 -07002126#endif /* CONFIG_ARCH_HAS_PTE_SPECIAL */
Steve Capper2667f502014-10-09 15:29:14 -07002127
Robin Murphy17596732019-07-16 16:30:47 -07002128#if defined(CONFIG_ARCH_HAS_PTE_DEVMAP) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002129static int __gup_device_huge(unsigned long pfn, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002130 unsigned long end, unsigned int flags,
2131 struct page **pages, int *nr)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002132{
2133 int nr_start = *nr;
2134 struct dev_pagemap *pgmap = NULL;
2135
2136 do {
2137 struct page *page = pfn_to_page(pfn);
2138
2139 pgmap = get_dev_pagemap(pfn, pgmap);
2140 if (unlikely(!pgmap)) {
John Hubbard3b78d832020-04-01 21:05:22 -07002141 undo_dev_pagemap(nr, nr_start, flags, pages);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002142 return 0;
2143 }
2144 SetPageReferenced(page);
2145 pages[*nr] = page;
John Hubbard3faa52c2020-04-01 21:05:29 -07002146 if (unlikely(!try_grab_page(page, flags))) {
2147 undo_dev_pagemap(nr, nr_start, flags, pages);
2148 return 0;
2149 }
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002150 (*nr)++;
2151 pfn++;
2152 } while (addr += PAGE_SIZE, addr != end);
Christoph Hellwig832d7aa2017-12-29 08:54:01 +01002153
2154 if (pgmap)
2155 put_dev_pagemap(pgmap);
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002156 return 1;
2157}
2158
Dan Williamsa9b6de72018-04-19 21:32:19 -07002159static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002160 unsigned long end, unsigned int flags,
2161 struct page **pages, int *nr)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002162{
2163 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07002164 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002165
Dan Williamsa9b6de72018-04-19 21:32:19 -07002166 fault_pfn = pmd_pfn(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
John Hubbard86dfbed2020-04-01 21:05:14 -07002167 if (!__gup_device_huge(fault_pfn, addr, end, flags, pages, nr))
Dan Williamsa9b6de72018-04-19 21:32:19 -07002168 return 0;
2169
2170 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002171 undo_dev_pagemap(nr, nr_start, flags, pages);
Dan Williamsa9b6de72018-04-19 21:32:19 -07002172 return 0;
2173 }
2174 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002175}
2176
Dan Williamsa9b6de72018-04-19 21:32:19 -07002177static int __gup_device_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002178 unsigned long end, unsigned int flags,
2179 struct page **pages, int *nr)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002180{
2181 unsigned long fault_pfn;
Dan Williamsa9b6de72018-04-19 21:32:19 -07002182 int nr_start = *nr;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002183
Dan Williamsa9b6de72018-04-19 21:32:19 -07002184 fault_pfn = pud_pfn(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
John Hubbard86dfbed2020-04-01 21:05:14 -07002185 if (!__gup_device_huge(fault_pfn, addr, end, flags, pages, nr))
Dan Williamsa9b6de72018-04-19 21:32:19 -07002186 return 0;
2187
2188 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002189 undo_dev_pagemap(nr, nr_start, flags, pages);
Dan Williamsa9b6de72018-04-19 21:32:19 -07002190 return 0;
2191 }
2192 return 1;
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002193}
2194#else
Dan Williamsa9b6de72018-04-19 21:32:19 -07002195static int __gup_device_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002196 unsigned long end, unsigned int flags,
2197 struct page **pages, int *nr)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002198{
2199 BUILD_BUG();
2200 return 0;
2201}
2202
Dan Williamsa9b6de72018-04-19 21:32:19 -07002203static int __gup_device_huge_pud(pud_t pud, pud_t *pudp, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002204 unsigned long end, unsigned int flags,
2205 struct page **pages, int *nr)
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002206{
2207 BUILD_BUG();
2208 return 0;
2209}
2210#endif
2211
John Hubbarda43e9822020-01-30 22:12:17 -08002212static int record_subpages(struct page *page, unsigned long addr,
2213 unsigned long end, struct page **pages)
2214{
2215 int nr;
2216
2217 for (nr = 0; addr != end; addr += PAGE_SIZE)
2218 pages[nr++] = page++;
2219
2220 return nr;
2221}
2222
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002223#ifdef CONFIG_ARCH_HAS_HUGEPD
2224static unsigned long hugepte_addr_end(unsigned long addr, unsigned long end,
2225 unsigned long sz)
2226{
2227 unsigned long __boundary = (addr + sz) & ~(sz-1);
2228 return (__boundary - 1 < end - 1) ? __boundary : end;
2229}
2230
2231static int gup_hugepte(pte_t *ptep, unsigned long sz, unsigned long addr,
John Hubbard0cd22af2019-10-18 20:19:53 -07002232 unsigned long end, unsigned int flags,
2233 struct page **pages, int *nr)
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002234{
2235 unsigned long pte_end;
2236 struct page *head, *page;
2237 pte_t pte;
2238 int refs;
2239
2240 pte_end = (addr + sz) & ~(sz-1);
2241 if (pte_end < end)
2242 end = pte_end;
2243
Christophe Leroy55ca2262020-06-15 12:57:57 +00002244 pte = huge_ptep_get(ptep);
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002245
John Hubbard0cd22af2019-10-18 20:19:53 -07002246 if (!pte_access_permitted(pte, flags & FOLL_WRITE))
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002247 return 0;
2248
2249 /* hugepages are never "special" */
2250 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
2251
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002252 head = pte_page(pte);
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002253 page = head + ((addr & (sz-1)) >> PAGE_SHIFT);
John Hubbarda43e9822020-01-30 22:12:17 -08002254 refs = record_subpages(page, addr, end, pages + *nr);
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002255
John Hubbard3faa52c2020-04-01 21:05:29 -07002256 head = try_grab_compound_head(head, refs, flags);
John Hubbarda43e9822020-01-30 22:12:17 -08002257 if (!head)
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002258 return 0;
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002259
2260 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002261 put_compound_head(head, refs, flags);
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002262 return 0;
2263 }
2264
John Hubbarda43e9822020-01-30 22:12:17 -08002265 *nr += refs;
Christoph Hellwig520b4a42019-07-11 20:57:36 -07002266 SetPageReferenced(head);
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002267 return 1;
2268}
2269
2270static int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
John Hubbard0cd22af2019-10-18 20:19:53 -07002271 unsigned int pdshift, unsigned long end, unsigned int flags,
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002272 struct page **pages, int *nr)
2273{
2274 pte_t *ptep;
2275 unsigned long sz = 1UL << hugepd_shift(hugepd);
2276 unsigned long next;
2277
2278 ptep = hugepte_offset(hugepd, addr, pdshift);
2279 do {
2280 next = hugepte_addr_end(addr, end, sz);
John Hubbard0cd22af2019-10-18 20:19:53 -07002281 if (!gup_hugepte(ptep, sz, addr, end, flags, pages, nr))
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002282 return 0;
2283 } while (ptep++, addr = next, addr != end);
2284
2285 return 1;
2286}
2287#else
2288static inline int gup_huge_pd(hugepd_t hugepd, unsigned long addr,
John Hubbard0cd22af2019-10-18 20:19:53 -07002289 unsigned int pdshift, unsigned long end, unsigned int flags,
Christoph Hellwigcbd34da2019-07-11 20:57:28 -07002290 struct page **pages, int *nr)
2291{
2292 return 0;
2293}
2294#endif /* CONFIG_ARCH_HAS_HUGEPD */
2295
Steve Capper2667f502014-10-09 15:29:14 -07002296static int gup_huge_pmd(pmd_t orig, pmd_t *pmdp, unsigned long addr,
John Hubbard0cd22af2019-10-18 20:19:53 -07002297 unsigned long end, unsigned int flags,
2298 struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002299{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08002300 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07002301 int refs;
2302
Ira Weinyb798bec2019-05-13 17:17:07 -07002303 if (!pmd_access_permitted(orig, flags & FOLL_WRITE))
Steve Capper2667f502014-10-09 15:29:14 -07002304 return 0;
2305
Ira Weiny7af75562019-05-13 17:17:14 -07002306 if (pmd_devmap(orig)) {
2307 if (unlikely(flags & FOLL_LONGTERM))
2308 return 0;
John Hubbard86dfbed2020-04-01 21:05:14 -07002309 return __gup_device_huge_pmd(orig, pmdp, addr, end, flags,
2310 pages, nr);
Ira Weiny7af75562019-05-13 17:17:14 -07002311 }
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002312
Punit Agrawald63206e2017-07-06 15:39:39 -07002313 page = pmd_page(orig) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
John Hubbarda43e9822020-01-30 22:12:17 -08002314 refs = record_subpages(page, addr, end, pages + *nr);
Steve Capper2667f502014-10-09 15:29:14 -07002315
John Hubbard3faa52c2020-04-01 21:05:29 -07002316 head = try_grab_compound_head(pmd_page(orig), refs, flags);
John Hubbarda43e9822020-01-30 22:12:17 -08002317 if (!head)
Steve Capper2667f502014-10-09 15:29:14 -07002318 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07002319
2320 if (unlikely(pmd_val(orig) != pmd_val(*pmdp))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002321 put_compound_head(head, refs, flags);
Steve Capper2667f502014-10-09 15:29:14 -07002322 return 0;
2323 }
2324
John Hubbarda43e9822020-01-30 22:12:17 -08002325 *nr += refs;
Kirill A. Shutemove9348052017-03-16 18:26:52 +03002326 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07002327 return 1;
2328}
2329
2330static int gup_huge_pud(pud_t orig, pud_t *pudp, unsigned long addr,
John Hubbard86dfbed2020-04-01 21:05:14 -07002331 unsigned long end, unsigned int flags,
2332 struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002333{
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08002334 struct page *head, *page;
Steve Capper2667f502014-10-09 15:29:14 -07002335 int refs;
2336
Ira Weinyb798bec2019-05-13 17:17:07 -07002337 if (!pud_access_permitted(orig, flags & FOLL_WRITE))
Steve Capper2667f502014-10-09 15:29:14 -07002338 return 0;
2339
Ira Weiny7af75562019-05-13 17:17:14 -07002340 if (pud_devmap(orig)) {
2341 if (unlikely(flags & FOLL_LONGTERM))
2342 return 0;
John Hubbard86dfbed2020-04-01 21:05:14 -07002343 return __gup_device_huge_pud(orig, pudp, addr, end, flags,
2344 pages, nr);
Ira Weiny7af75562019-05-13 17:17:14 -07002345 }
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002346
Punit Agrawald63206e2017-07-06 15:39:39 -07002347 page = pud_page(orig) + ((addr & ~PUD_MASK) >> PAGE_SHIFT);
John Hubbarda43e9822020-01-30 22:12:17 -08002348 refs = record_subpages(page, addr, end, pages + *nr);
Steve Capper2667f502014-10-09 15:29:14 -07002349
John Hubbard3faa52c2020-04-01 21:05:29 -07002350 head = try_grab_compound_head(pud_page(orig), refs, flags);
John Hubbarda43e9822020-01-30 22:12:17 -08002351 if (!head)
Steve Capper2667f502014-10-09 15:29:14 -07002352 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07002353
2354 if (unlikely(pud_val(orig) != pud_val(*pudp))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002355 put_compound_head(head, refs, flags);
Steve Capper2667f502014-10-09 15:29:14 -07002356 return 0;
2357 }
2358
John Hubbarda43e9822020-01-30 22:12:17 -08002359 *nr += refs;
Kirill A. Shutemove9348052017-03-16 18:26:52 +03002360 SetPageReferenced(head);
Steve Capper2667f502014-10-09 15:29:14 -07002361 return 1;
2362}
2363
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302364static int gup_huge_pgd(pgd_t orig, pgd_t *pgdp, unsigned long addr,
Ira Weinyb798bec2019-05-13 17:17:07 -07002365 unsigned long end, unsigned int flags,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302366 struct page **pages, int *nr)
2367{
2368 int refs;
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08002369 struct page *head, *page;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302370
Ira Weinyb798bec2019-05-13 17:17:07 -07002371 if (!pgd_access_permitted(orig, flags & FOLL_WRITE))
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302372 return 0;
2373
Kirill A. Shutemovb59f65f2017-03-16 18:26:53 +03002374 BUILD_BUG_ON(pgd_devmap(orig));
John Hubbarda43e9822020-01-30 22:12:17 -08002375
Punit Agrawald63206e2017-07-06 15:39:39 -07002376 page = pgd_page(orig) + ((addr & ~PGDIR_MASK) >> PAGE_SHIFT);
John Hubbarda43e9822020-01-30 22:12:17 -08002377 refs = record_subpages(page, addr, end, pages + *nr);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302378
John Hubbard3faa52c2020-04-01 21:05:29 -07002379 head = try_grab_compound_head(pgd_page(orig), refs, flags);
John Hubbarda43e9822020-01-30 22:12:17 -08002380 if (!head)
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302381 return 0;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302382
2383 if (unlikely(pgd_val(orig) != pgd_val(*pgdp))) {
John Hubbard3b78d832020-04-01 21:05:22 -07002384 put_compound_head(head, refs, flags);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302385 return 0;
2386 }
2387
John Hubbarda43e9822020-01-30 22:12:17 -08002388 *nr += refs;
Kirill A. Shutemove9348052017-03-16 18:26:52 +03002389 SetPageReferenced(head);
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302390 return 1;
2391}
2392
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002393static int gup_pmd_range(pud_t *pudp, pud_t pud, unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002394 unsigned int flags, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002395{
2396 unsigned long next;
2397 pmd_t *pmdp;
2398
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002399 pmdp = pmd_offset_lockless(pudp, pud, addr);
Steve Capper2667f502014-10-09 15:29:14 -07002400 do {
Christian Borntraeger38c5ce92015-01-06 22:54:46 +01002401 pmd_t pmd = READ_ONCE(*pmdp);
Steve Capper2667f502014-10-09 15:29:14 -07002402
2403 next = pmd_addr_end(addr, end);
Zi Yan84c3fc42017-09-08 16:11:01 -07002404 if (!pmd_present(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07002405 return 0;
2406
Yu Zhao414fd082019-02-12 15:35:58 -08002407 if (unlikely(pmd_trans_huge(pmd) || pmd_huge(pmd) ||
2408 pmd_devmap(pmd))) {
Steve Capper2667f502014-10-09 15:29:14 -07002409 /*
2410 * NUMA hinting faults need to be handled in the GUP
2411 * slowpath for accounting purposes and so that they
2412 * can be serialised against THP migration.
2413 */
Mel Gorman8a0516e2015-02-12 14:58:22 -08002414 if (pmd_protnone(pmd))
Steve Capper2667f502014-10-09 15:29:14 -07002415 return 0;
2416
Ira Weinyb798bec2019-05-13 17:17:07 -07002417 if (!gup_huge_pmd(pmd, pmdp, addr, next, flags,
Steve Capper2667f502014-10-09 15:29:14 -07002418 pages, nr))
2419 return 0;
2420
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302421 } else if (unlikely(is_hugepd(__hugepd(pmd_val(pmd))))) {
2422 /*
2423 * architecture have different format for hugetlbfs
2424 * pmd format and THP pmd format
2425 */
2426 if (!gup_huge_pd(__hugepd(pmd_val(pmd)), addr,
Ira Weinyb798bec2019-05-13 17:17:07 -07002427 PMD_SHIFT, next, flags, pages, nr))
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302428 return 0;
Ira Weinyb798bec2019-05-13 17:17:07 -07002429 } else if (!gup_pte_range(pmd, addr, next, flags, pages, nr))
Mario Leinweber29231172018-04-05 16:24:18 -07002430 return 0;
Steve Capper2667f502014-10-09 15:29:14 -07002431 } while (pmdp++, addr = next, addr != end);
2432
2433 return 1;
2434}
2435
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002436static int gup_pud_range(p4d_t *p4dp, p4d_t p4d, unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002437 unsigned int flags, struct page **pages, int *nr)
Steve Capper2667f502014-10-09 15:29:14 -07002438{
2439 unsigned long next;
2440 pud_t *pudp;
2441
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002442 pudp = pud_offset_lockless(p4dp, p4d, addr);
Steve Capper2667f502014-10-09 15:29:14 -07002443 do {
Christian Borntraegere37c6982014-12-07 21:41:33 +01002444 pud_t pud = READ_ONCE(*pudp);
Steve Capper2667f502014-10-09 15:29:14 -07002445
2446 next = pud_addr_end(addr, end);
Qiujun Huang154945202020-01-30 22:12:10 -08002447 if (unlikely(!pud_present(pud)))
Steve Capper2667f502014-10-09 15:29:14 -07002448 return 0;
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302449 if (unlikely(pud_huge(pud))) {
Ira Weinyb798bec2019-05-13 17:17:07 -07002450 if (!gup_huge_pud(pud, pudp, addr, next, flags,
Aneesh Kumar K.Vf30c59e2014-11-05 21:57:40 +05302451 pages, nr))
2452 return 0;
2453 } else if (unlikely(is_hugepd(__hugepd(pud_val(pud))))) {
2454 if (!gup_huge_pd(__hugepd(pud_val(pud)), addr,
Ira Weinyb798bec2019-05-13 17:17:07 -07002455 PUD_SHIFT, next, flags, pages, nr))
Steve Capper2667f502014-10-09 15:29:14 -07002456 return 0;
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002457 } else if (!gup_pmd_range(pudp, pud, addr, next, flags, pages, nr))
Steve Capper2667f502014-10-09 15:29:14 -07002458 return 0;
2459 } while (pudp++, addr = next, addr != end);
2460
2461 return 1;
2462}
2463
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002464static int gup_p4d_range(pgd_t *pgdp, pgd_t pgd, unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002465 unsigned int flags, struct page **pages, int *nr)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002466{
2467 unsigned long next;
2468 p4d_t *p4dp;
2469
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002470 p4dp = p4d_offset_lockless(pgdp, pgd, addr);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002471 do {
2472 p4d_t p4d = READ_ONCE(*p4dp);
2473
2474 next = p4d_addr_end(addr, end);
2475 if (p4d_none(p4d))
2476 return 0;
2477 BUILD_BUG_ON(p4d_huge(p4d));
2478 if (unlikely(is_hugepd(__hugepd(p4d_val(p4d))))) {
2479 if (!gup_huge_pd(__hugepd(p4d_val(p4d)), addr,
Ira Weinyb798bec2019-05-13 17:17:07 -07002480 P4D_SHIFT, next, flags, pages, nr))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002481 return 0;
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002482 } else if (!gup_pud_range(p4dp, p4d, addr, next, flags, pages, nr))
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03002483 return 0;
2484 } while (p4dp++, addr = next, addr != end);
2485
2486 return 1;
2487}
2488
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002489static void gup_pgd_range(unsigned long addr, unsigned long end,
Ira Weinyb798bec2019-05-13 17:17:07 -07002490 unsigned int flags, struct page **pages, int *nr)
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002491{
2492 unsigned long next;
2493 pgd_t *pgdp;
2494
2495 pgdp = pgd_offset(current->mm, addr);
2496 do {
2497 pgd_t pgd = READ_ONCE(*pgdp);
2498
2499 next = pgd_addr_end(addr, end);
2500 if (pgd_none(pgd))
2501 return;
2502 if (unlikely(pgd_huge(pgd))) {
Ira Weinyb798bec2019-05-13 17:17:07 -07002503 if (!gup_huge_pgd(pgd, pgdp, addr, next, flags,
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002504 pages, nr))
2505 return;
2506 } else if (unlikely(is_hugepd(__hugepd(pgd_val(pgd))))) {
2507 if (!gup_huge_pd(__hugepd(pgd_val(pgd)), addr,
Ira Weinyb798bec2019-05-13 17:17:07 -07002508 PGDIR_SHIFT, next, flags, pages, nr))
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002509 return;
Vasily Gorbikd3f7b1b2020-09-25 21:19:10 -07002510 } else if (!gup_p4d_range(pgdp, pgd, addr, next, flags, pages, nr))
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002511 return;
2512 } while (pgdp++, addr = next, addr != end);
2513}
Christoph Hellwig050a9ad2019-07-11 20:57:21 -07002514#else
2515static inline void gup_pgd_range(unsigned long addr, unsigned long end,
2516 unsigned int flags, struct page **pages, int *nr)
2517{
2518}
2519#endif /* CONFIG_HAVE_FAST_GUP */
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002520
2521#ifndef gup_fast_permitted
2522/*
Souptick Joarderdadbb612020-06-07 21:40:55 -07002523 * Check if it's allowed to use get_user_pages_fast_only() for the range, or
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002524 * we need to fall back to the slow version:
2525 */
Christoph Hellwig26f4c322019-07-11 20:56:45 -07002526static bool gup_fast_permitted(unsigned long start, unsigned long end)
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002527{
Christoph Hellwig26f4c322019-07-11 20:56:45 -07002528 return true;
Kirill A. Shutemov5b65c4672017-09-09 00:56:03 +03002529}
2530#endif
2531
Ira Weiny7af75562019-05-13 17:17:14 -07002532static int __gup_longterm_unlocked(unsigned long start, int nr_pages,
2533 unsigned int gup_flags, struct page **pages)
2534{
2535 int ret;
2536
2537 /*
2538 * FIXME: FOLL_LONGTERM does not work with
2539 * get_user_pages_unlocked() (see comments in that function)
2540 */
2541 if (gup_flags & FOLL_LONGTERM) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002542 mmap_read_lock(current->mm);
Peter Xu64019a22020-08-11 18:39:01 -07002543 ret = __gup_longterm_locked(current->mm,
Ira Weiny7af75562019-05-13 17:17:14 -07002544 start, nr_pages,
2545 pages, NULL, gup_flags);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002546 mmap_read_unlock(current->mm);
Ira Weiny7af75562019-05-13 17:17:14 -07002547 } else {
2548 ret = get_user_pages_unlocked(start, nr_pages,
2549 pages, gup_flags);
2550 }
2551
2552 return ret;
2553}
2554
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002555static unsigned long lockless_pages_from_mm(unsigned long start,
2556 unsigned long end,
2557 unsigned int gup_flags,
2558 struct page **pages)
2559{
2560 unsigned long flags;
2561 int nr_pinned = 0;
Jason Gunthorpe57efa1f2020-12-14 19:05:44 -08002562 unsigned seq;
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002563
2564 if (!IS_ENABLED(CONFIG_HAVE_FAST_GUP) ||
2565 !gup_fast_permitted(start, end))
2566 return 0;
2567
Jason Gunthorpe57efa1f2020-12-14 19:05:44 -08002568 if (gup_flags & FOLL_PIN) {
2569 seq = raw_read_seqcount(&current->mm->write_protect_seq);
2570 if (seq & 1)
2571 return 0;
2572 }
2573
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002574 /*
2575 * Disable interrupts. The nested form is used, in order to allow full,
2576 * general purpose use of this routine.
2577 *
2578 * With interrupts disabled, we block page table pages from being freed
2579 * from under us. See struct mmu_table_batch comments in
2580 * include/asm-generic/tlb.h for more details.
2581 *
2582 * We do not adopt an rcu_read_lock() here as we also want to block IPIs
2583 * that come from THPs splitting.
2584 */
2585 local_irq_save(flags);
2586 gup_pgd_range(start, end, gup_flags, pages, &nr_pinned);
2587 local_irq_restore(flags);
Jason Gunthorpe57efa1f2020-12-14 19:05:44 -08002588
2589 /*
2590 * When pinning pages for DMA there could be a concurrent write protect
2591 * from fork() via copy_page_range(), in this case always fail fast GUP.
2592 */
2593 if (gup_flags & FOLL_PIN) {
2594 if (read_seqcount_retry(&current->mm->write_protect_seq, seq)) {
2595 unpin_user_pages(pages, nr_pinned);
2596 return 0;
2597 }
2598 }
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002599 return nr_pinned;
2600}
2601
2602static int internal_get_user_pages_fast(unsigned long start,
2603 unsigned long nr_pages,
John Hubbardeddb1c22020-01-30 22:12:54 -08002604 unsigned int gup_flags,
2605 struct page **pages)
Steve Capper2667f502014-10-09 15:29:14 -07002606{
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002607 unsigned long len, end;
2608 unsigned long nr_pinned;
2609 int ret;
Steve Capper2667f502014-10-09 15:29:14 -07002610
John Hubbardf4000fd2020-01-30 22:12:43 -08002611 if (WARN_ON_ONCE(gup_flags & ~(FOLL_WRITE | FOLL_LONGTERM |
John Hubbard376a34ef2020-06-03 15:56:30 -07002612 FOLL_FORCE | FOLL_PIN | FOLL_GET |
2613 FOLL_FAST_ONLY)))
Christoph Hellwig817be122019-07-11 20:57:25 -07002614 return -EINVAL;
2615
Peter Xu008cfe42020-09-25 18:25:57 -04002616 if (gup_flags & FOLL_PIN)
2617 atomic_set(&current->mm->has_pinned, 1);
2618
John Hubbardf81cd172020-06-03 15:56:40 -07002619 if (!(gup_flags & FOLL_FAST_ONLY))
Michel Lespinasseda1c55f2020-06-08 21:33:47 -07002620 might_lock_read(&current->mm->mmap_lock);
John Hubbardf81cd172020-06-03 15:56:40 -07002621
Christoph Hellwigf455c8542019-07-11 20:56:41 -07002622 start = untagged_addr(start) & PAGE_MASK;
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002623 len = nr_pages << PAGE_SHIFT;
2624 if (check_add_overflow(start, len, &end))
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07002625 return 0;
Linus Torvalds96d4f262019-01-03 18:57:57 -08002626 if (unlikely(!access_ok((void __user *)start, len)))
Michael S. Tsirkinc61611f2018-04-13 15:35:20 -07002627 return -EFAULT;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03002628
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002629 nr_pinned = lockless_pages_from_mm(start, end, gup_flags, pages);
2630 if (nr_pinned == nr_pages || gup_flags & FOLL_FAST_ONLY)
2631 return nr_pinned;
John Hubbard376a34ef2020-06-03 15:56:30 -07002632
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002633 /* Slow path: try to get the remaining pages with get_user_pages */
2634 start += nr_pinned << PAGE_SHIFT;
2635 pages += nr_pinned;
2636 ret = __gup_longterm_unlocked(start, nr_pages - nr_pinned, gup_flags,
2637 pages);
2638 if (ret < 0) {
2639 /*
2640 * The caller has to unpin the pages we already pinned so
2641 * returning -errno is not an option
2642 */
2643 if (nr_pinned)
2644 return nr_pinned;
2645 return ret;
Kirill A. Shutemov73e10a62017-03-16 18:26:54 +03002646 }
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002647 return ret + nr_pinned;
Steve Capper2667f502014-10-09 15:29:14 -07002648}
Jason Gunthorpec28b1fc2020-12-14 19:05:41 -08002649
Souptick Joarderdadbb612020-06-07 21:40:55 -07002650/**
2651 * get_user_pages_fast_only() - pin user pages in memory
2652 * @start: starting user address
2653 * @nr_pages: number of pages from start to pin
2654 * @gup_flags: flags modifying pin behaviour
2655 * @pages: array that receives pointers to the pages pinned.
2656 * Should be at least nr_pages long.
2657 *
John Hubbard9e1f0582020-06-03 15:56:27 -07002658 * Like get_user_pages_fast() except it's IRQ-safe in that it won't fall back to
2659 * the regular GUP.
2660 * Note a difference with get_user_pages_fast: this always returns the
2661 * number of pages pinned, 0 if no pages were pinned.
2662 *
2663 * If the architecture does not support this function, simply return with no
2664 * pages pinned.
2665 *
2666 * Careful, careful! COW breaking can go either way, so a non-write
2667 * access can get ambiguous page results. If you call this function without
2668 * 'write' set, you'd better be sure that you're ok with that ambiguity.
2669 */
Souptick Joarderdadbb612020-06-07 21:40:55 -07002670int get_user_pages_fast_only(unsigned long start, int nr_pages,
2671 unsigned int gup_flags, struct page **pages)
John Hubbard9e1f0582020-06-03 15:56:27 -07002672{
John Hubbard376a34ef2020-06-03 15:56:30 -07002673 int nr_pinned;
John Hubbard9e1f0582020-06-03 15:56:27 -07002674 /*
2675 * Internally (within mm/gup.c), gup fast variants must set FOLL_GET,
2676 * because gup fast is always a "pin with a +1 page refcount" request.
John Hubbard376a34ef2020-06-03 15:56:30 -07002677 *
2678 * FOLL_FAST_ONLY is required in order to match the API description of
2679 * this routine: no fall back to regular ("slow") GUP.
John Hubbard9e1f0582020-06-03 15:56:27 -07002680 */
Souptick Joarderdadbb612020-06-07 21:40:55 -07002681 gup_flags |= FOLL_GET | FOLL_FAST_ONLY;
John Hubbard9e1f0582020-06-03 15:56:27 -07002682
John Hubbard376a34ef2020-06-03 15:56:30 -07002683 nr_pinned = internal_get_user_pages_fast(start, nr_pages, gup_flags,
2684 pages);
John Hubbard9e1f0582020-06-03 15:56:27 -07002685
2686 /*
John Hubbard376a34ef2020-06-03 15:56:30 -07002687 * As specified in the API description above, this routine is not
2688 * allowed to return negative values. However, the common core
2689 * routine internal_get_user_pages_fast() *can* return -errno.
2690 * Therefore, correct for that here:
John Hubbard9e1f0582020-06-03 15:56:27 -07002691 */
John Hubbard376a34ef2020-06-03 15:56:30 -07002692 if (nr_pinned < 0)
2693 nr_pinned = 0;
John Hubbard9e1f0582020-06-03 15:56:27 -07002694
2695 return nr_pinned;
2696}
Souptick Joarderdadbb612020-06-07 21:40:55 -07002697EXPORT_SYMBOL_GPL(get_user_pages_fast_only);
John Hubbard9e1f0582020-06-03 15:56:27 -07002698
John Hubbardeddb1c22020-01-30 22:12:54 -08002699/**
2700 * get_user_pages_fast() - pin user pages in memory
John Hubbard3faa52c2020-04-01 21:05:29 -07002701 * @start: starting user address
2702 * @nr_pages: number of pages from start to pin
2703 * @gup_flags: flags modifying pin behaviour
2704 * @pages: array that receives pointers to the pages pinned.
2705 * Should be at least nr_pages long.
John Hubbardeddb1c22020-01-30 22:12:54 -08002706 *
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002707 * Attempt to pin user pages in memory without taking mm->mmap_lock.
John Hubbardeddb1c22020-01-30 22:12:54 -08002708 * If not successful, it will fall back to taking the lock and
2709 * calling get_user_pages().
2710 *
2711 * Returns number of pages pinned. This may be fewer than the number requested.
2712 * If nr_pages is 0 or negative, returns 0. If no pages were pinned, returns
2713 * -errno.
2714 */
2715int get_user_pages_fast(unsigned long start, int nr_pages,
2716 unsigned int gup_flags, struct page **pages)
2717{
Barry Song447f3e42020-10-13 16:51:58 -07002718 if (!is_valid_gup_flags(gup_flags))
John Hubbardeddb1c22020-01-30 22:12:54 -08002719 return -EINVAL;
2720
John Hubbard94202f12020-04-01 21:05:25 -07002721 /*
2722 * The caller may or may not have explicitly set FOLL_GET; either way is
2723 * OK. However, internally (within mm/gup.c), gup fast variants must set
2724 * FOLL_GET, because gup fast is always a "pin with a +1 page refcount"
2725 * request.
2726 */
2727 gup_flags |= FOLL_GET;
John Hubbardeddb1c22020-01-30 22:12:54 -08002728 return internal_get_user_pages_fast(start, nr_pages, gup_flags, pages);
2729}
Christoph Hellwig050a9ad2019-07-11 20:57:21 -07002730EXPORT_SYMBOL_GPL(get_user_pages_fast);
John Hubbardeddb1c22020-01-30 22:12:54 -08002731
2732/**
2733 * pin_user_pages_fast() - pin user pages in memory without taking locks
2734 *
John Hubbard3faa52c2020-04-01 21:05:29 -07002735 * @start: starting user address
2736 * @nr_pages: number of pages from start to pin
2737 * @gup_flags: flags modifying pin behaviour
2738 * @pages: array that receives pointers to the pages pinned.
2739 * Should be at least nr_pages long.
2740 *
2741 * Nearly the same as get_user_pages_fast(), except that FOLL_PIN is set. See
2742 * get_user_pages_fast() for documentation on the function arguments, because
2743 * the arguments here are identical.
2744 *
2745 * FOLL_PIN means that the pages must be released via unpin_user_page(). Please
Mauro Carvalho Chehab72ef5e52020-04-14 18:48:35 +02002746 * see Documentation/core-api/pin_user_pages.rst for further details.
John Hubbardeddb1c22020-01-30 22:12:54 -08002747 */
2748int pin_user_pages_fast(unsigned long start, int nr_pages,
2749 unsigned int gup_flags, struct page **pages)
2750{
John Hubbard3faa52c2020-04-01 21:05:29 -07002751 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
2752 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2753 return -EINVAL;
2754
2755 gup_flags |= FOLL_PIN;
2756 return internal_get_user_pages_fast(start, nr_pages, gup_flags, pages);
John Hubbardeddb1c22020-01-30 22:12:54 -08002757}
2758EXPORT_SYMBOL_GPL(pin_user_pages_fast);
2759
John Hubbard104acc32020-06-03 15:56:34 -07002760/*
Souptick Joarderdadbb612020-06-07 21:40:55 -07002761 * This is the FOLL_PIN equivalent of get_user_pages_fast_only(). Behavior
2762 * is the same, except that this one sets FOLL_PIN instead of FOLL_GET.
John Hubbard104acc32020-06-03 15:56:34 -07002763 *
2764 * The API rules are the same, too: no negative values may be returned.
2765 */
2766int pin_user_pages_fast_only(unsigned long start, int nr_pages,
2767 unsigned int gup_flags, struct page **pages)
2768{
2769 int nr_pinned;
2770
2771 /*
2772 * FOLL_GET and FOLL_PIN are mutually exclusive. Note that the API
2773 * rules require returning 0, rather than -errno:
2774 */
2775 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2776 return 0;
2777 /*
2778 * FOLL_FAST_ONLY is required in order to match the API description of
2779 * this routine: no fall back to regular ("slow") GUP.
2780 */
2781 gup_flags |= (FOLL_PIN | FOLL_FAST_ONLY);
2782 nr_pinned = internal_get_user_pages_fast(start, nr_pages, gup_flags,
2783 pages);
2784 /*
2785 * This routine is not allowed to return negative values. However,
2786 * internal_get_user_pages_fast() *can* return -errno. Therefore,
2787 * correct for that here:
2788 */
2789 if (nr_pinned < 0)
2790 nr_pinned = 0;
2791
2792 return nr_pinned;
2793}
2794EXPORT_SYMBOL_GPL(pin_user_pages_fast_only);
2795
John Hubbardeddb1c22020-01-30 22:12:54 -08002796/**
Peter Xu64019a22020-08-11 18:39:01 -07002797 * pin_user_pages_remote() - pin pages of a remote process
John Hubbardeddb1c22020-01-30 22:12:54 -08002798 *
John Hubbard3faa52c2020-04-01 21:05:29 -07002799 * @mm: mm_struct of target mm
2800 * @start: starting user address
2801 * @nr_pages: number of pages from start to pin
2802 * @gup_flags: flags modifying lookup behaviour
2803 * @pages: array that receives pointers to the pages pinned.
2804 * Should be at least nr_pages long. Or NULL, if caller
2805 * only intends to ensure the pages are faulted in.
2806 * @vmas: array of pointers to vmas corresponding to each page.
2807 * Or NULL if the caller does not require them.
2808 * @locked: pointer to lock flag indicating whether lock is held and
2809 * subsequently whether VM_FAULT_RETRY functionality can be
2810 * utilised. Lock must initially be held.
2811 *
2812 * Nearly the same as get_user_pages_remote(), except that FOLL_PIN is set. See
2813 * get_user_pages_remote() for documentation on the function arguments, because
2814 * the arguments here are identical.
2815 *
2816 * FOLL_PIN means that the pages must be released via unpin_user_page(). Please
Mauro Carvalho Chehab72ef5e52020-04-14 18:48:35 +02002817 * see Documentation/core-api/pin_user_pages.rst for details.
John Hubbardeddb1c22020-01-30 22:12:54 -08002818 */
Peter Xu64019a22020-08-11 18:39:01 -07002819long pin_user_pages_remote(struct mm_struct *mm,
John Hubbardeddb1c22020-01-30 22:12:54 -08002820 unsigned long start, unsigned long nr_pages,
2821 unsigned int gup_flags, struct page **pages,
2822 struct vm_area_struct **vmas, int *locked)
2823{
John Hubbard3faa52c2020-04-01 21:05:29 -07002824 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
2825 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2826 return -EINVAL;
2827
2828 gup_flags |= FOLL_PIN;
Peter Xu64019a22020-08-11 18:39:01 -07002829 return __get_user_pages_remote(mm, start, nr_pages, gup_flags,
John Hubbard3faa52c2020-04-01 21:05:29 -07002830 pages, vmas, locked);
John Hubbardeddb1c22020-01-30 22:12:54 -08002831}
2832EXPORT_SYMBOL(pin_user_pages_remote);
2833
2834/**
2835 * pin_user_pages() - pin user pages in memory for use by other devices
2836 *
John Hubbard3faa52c2020-04-01 21:05:29 -07002837 * @start: starting user address
2838 * @nr_pages: number of pages from start to pin
2839 * @gup_flags: flags modifying lookup behaviour
2840 * @pages: array that receives pointers to the pages pinned.
2841 * Should be at least nr_pages long. Or NULL, if caller
2842 * only intends to ensure the pages are faulted in.
2843 * @vmas: array of pointers to vmas corresponding to each page.
2844 * Or NULL if the caller does not require them.
2845 *
2846 * Nearly the same as get_user_pages(), except that FOLL_TOUCH is not set, and
2847 * FOLL_PIN is set.
2848 *
2849 * FOLL_PIN means that the pages must be released via unpin_user_page(). Please
Mauro Carvalho Chehab72ef5e52020-04-14 18:48:35 +02002850 * see Documentation/core-api/pin_user_pages.rst for details.
John Hubbardeddb1c22020-01-30 22:12:54 -08002851 */
2852long pin_user_pages(unsigned long start, unsigned long nr_pages,
2853 unsigned int gup_flags, struct page **pages,
2854 struct vm_area_struct **vmas)
2855{
John Hubbard3faa52c2020-04-01 21:05:29 -07002856 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
2857 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2858 return -EINVAL;
2859
2860 gup_flags |= FOLL_PIN;
Peter Xu64019a22020-08-11 18:39:01 -07002861 return __gup_longterm_locked(current->mm, start, nr_pages,
John Hubbard3faa52c2020-04-01 21:05:29 -07002862 pages, vmas, gup_flags);
John Hubbardeddb1c22020-01-30 22:12:54 -08002863}
2864EXPORT_SYMBOL(pin_user_pages);
John Hubbard91429022020-06-01 21:48:27 -07002865
2866/*
2867 * pin_user_pages_unlocked() is the FOLL_PIN variant of
2868 * get_user_pages_unlocked(). Behavior is the same, except that this one sets
2869 * FOLL_PIN and rejects FOLL_GET.
2870 */
2871long pin_user_pages_unlocked(unsigned long start, unsigned long nr_pages,
2872 struct page **pages, unsigned int gup_flags)
2873{
2874 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
2875 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2876 return -EINVAL;
2877
2878 gup_flags |= FOLL_PIN;
2879 return get_user_pages_unlocked(start, nr_pages, pages, gup_flags);
2880}
2881EXPORT_SYMBOL(pin_user_pages_unlocked);
John Hubbard420c2092020-06-07 21:41:02 -07002882
2883/*
2884 * pin_user_pages_locked() is the FOLL_PIN variant of get_user_pages_locked().
2885 * Behavior is the same, except that this one sets FOLL_PIN and rejects
2886 * FOLL_GET.
2887 */
2888long pin_user_pages_locked(unsigned long start, unsigned long nr_pages,
2889 unsigned int gup_flags, struct page **pages,
2890 int *locked)
2891{
2892 /*
2893 * FIXME: Current FOLL_LONGTERM behavior is incompatible with
2894 * FAULT_FLAG_ALLOW_RETRY because of the FS DAX check requirement on
2895 * vmas. As there are no users of this flag in this call we simply
2896 * disallow this option for now.
2897 */
2898 if (WARN_ON_ONCE(gup_flags & FOLL_LONGTERM))
2899 return -EINVAL;
2900
2901 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
2902 if (WARN_ON_ONCE(gup_flags & FOLL_GET))
2903 return -EINVAL;
2904
2905 gup_flags |= FOLL_PIN;
Peter Xu64019a22020-08-11 18:39:01 -07002906 return __get_user_pages_locked(current->mm, start, nr_pages,
John Hubbard420c2092020-06-07 21:41:02 -07002907 pages, NULL, locked,
2908 gup_flags | FOLL_TOUCH);
2909}
2910EXPORT_SYMBOL(pin_user_pages_locked);