Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Lockless get_user_pages_fast for x86 |
| 3 | * |
| 4 | * Copyright (C) 2008 Nick Piggin |
| 5 | * Copyright (C) 2008 Novell Inc. |
| 6 | */ |
| 7 | #include <linux/sched.h> |
| 8 | #include <linux/mm.h> |
| 9 | #include <linux/vmstat.h> |
| 10 | #include <linux/highmem.h> |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 11 | #include <linux/swap.h> |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 12 | #include <linux/memremap.h> |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 13 | |
Dave Hansen | 33a709b | 2016-02-12 13:02:19 -0800 | [diff] [blame] | 14 | #include <asm/mmu_context.h> |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 15 | #include <asm/pgtable.h> |
| 16 | |
| 17 | static inline pte_t gup_get_pte(pte_t *ptep) |
| 18 | { |
| 19 | #ifndef CONFIG_X86_PAE |
Christian Borntraeger | 14cf3d9 | 2014-11-21 16:29:40 +0100 | [diff] [blame] | 20 | return READ_ONCE(*ptep); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 21 | #else |
| 22 | /* |
| 23 | * With get_user_pages_fast, we walk down the pagetables without taking |
Andy Shevchenko | ab09809 | 2010-02-02 14:38:12 -0800 | [diff] [blame] | 24 | * any locks. For this we would like to load the pointers atomically, |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 25 | * but that is not possible (without expensive cmpxchg8b) on PAE. What |
| 26 | * we do have is the guarantee that a pte will only either go from not |
| 27 | * present to present, or present to not present or both -- it will not |
| 28 | * switch to a completely different present page without a TLB flush in |
| 29 | * between; something that we are blocking by holding interrupts off. |
| 30 | * |
| 31 | * Setting ptes from not present to present goes: |
| 32 | * ptep->pte_high = h; |
| 33 | * smp_wmb(); |
| 34 | * ptep->pte_low = l; |
| 35 | * |
| 36 | * And present to not present goes: |
| 37 | * ptep->pte_low = 0; |
| 38 | * smp_wmb(); |
| 39 | * ptep->pte_high = 0; |
| 40 | * |
| 41 | * We must ensure here that the load of pte_low sees l iff pte_high |
| 42 | * sees h. We load pte_high *after* loading pte_low, which ensures we |
| 43 | * don't see an older value of pte_high. *Then* we recheck pte_low, |
| 44 | * which ensures that we haven't picked up a changed pte high. We might |
| 45 | * have got rubbish values from pte_low and pte_high, but we are |
| 46 | * guaranteed that pte_low will not have the present bit set *unless* |
| 47 | * it is 'l'. And get_user_pages_fast only operates on present ptes, so |
| 48 | * we're safe. |
| 49 | * |
| 50 | * gup_get_pte should not be used or copied outside gup.c without being |
| 51 | * very careful -- it does not atomically load the pte or anything that |
| 52 | * is likely to be useful for you. |
| 53 | */ |
| 54 | pte_t pte; |
| 55 | |
| 56 | retry: |
| 57 | pte.pte_low = ptep->pte_low; |
| 58 | smp_rmb(); |
| 59 | pte.pte_high = ptep->pte_high; |
| 60 | smp_rmb(); |
| 61 | if (unlikely(pte.pte_low != ptep->pte_low)) |
| 62 | goto retry; |
| 63 | |
| 64 | return pte; |
| 65 | #endif |
| 66 | } |
| 67 | |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 68 | static void undo_dev_pagemap(int *nr, int nr_start, struct page **pages) |
| 69 | { |
| 70 | while ((*nr) - nr_start) { |
| 71 | struct page *page = pages[--(*nr)]; |
| 72 | |
| 73 | ClearPageReferenced(page); |
| 74 | put_page(page); |
| 75 | } |
| 76 | } |
| 77 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 78 | /* |
Dave Hansen | 1874f68 | 2016-02-12 13:02:18 -0800 | [diff] [blame] | 79 | * 'pteval' can come from a pte, pmd or pud. We only check |
| 80 | * _PAGE_PRESENT, _PAGE_USER, and _PAGE_RW in here which are the |
| 81 | * same value on all 3 types. |
| 82 | */ |
| 83 | static inline int pte_allows_gup(unsigned long pteval, int write) |
| 84 | { |
| 85 | unsigned long need_pte_bits = _PAGE_PRESENT|_PAGE_USER; |
| 86 | |
| 87 | if (write) |
| 88 | need_pte_bits |= _PAGE_RW; |
| 89 | |
| 90 | if ((pteval & need_pte_bits) != need_pte_bits) |
| 91 | return 0; |
| 92 | |
Dave Hansen | 33a709b | 2016-02-12 13:02:19 -0800 | [diff] [blame] | 93 | /* Check memory protection keys permissions. */ |
| 94 | if (!__pkru_allows_pkey(pte_flags_pkey(pteval), write)) |
| 95 | return 0; |
| 96 | |
Dave Hansen | 1874f68 | 2016-02-12 13:02:18 -0800 | [diff] [blame] | 97 | return 1; |
| 98 | } |
| 99 | |
| 100 | /* |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 101 | * The performance critical leaf functions are made noinline otherwise gcc |
| 102 | * inlines everything into a single function which results in too much |
| 103 | * register pressure. |
| 104 | */ |
| 105 | static noinline int gup_pte_range(pmd_t pmd, unsigned long addr, |
| 106 | unsigned long end, int write, struct page **pages, int *nr) |
| 107 | { |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 108 | struct dev_pagemap *pgmap = NULL; |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 109 | int nr_start = *nr; |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 110 | pte_t *ptep; |
| 111 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 112 | ptep = pte_offset_map(&pmd, addr); |
| 113 | do { |
| 114 | pte_t pte = gup_get_pte(ptep); |
| 115 | struct page *page; |
| 116 | |
Mel Gorman | 2b4847e | 2013-12-18 17:08:32 -0800 | [diff] [blame] | 117 | /* Similar to the PMD case, NUMA hinting must take slow path */ |
Mel Gorman | 8a0516e | 2015-02-12 14:58:22 -0800 | [diff] [blame] | 118 | if (pte_protnone(pte)) { |
Mel Gorman | 2b4847e | 2013-12-18 17:08:32 -0800 | [diff] [blame] | 119 | pte_unmap(ptep); |
| 120 | return 0; |
| 121 | } |
| 122 | |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 123 | if (pte_devmap(pte)) { |
| 124 | pgmap = get_dev_pagemap(pte_pfn(pte), pgmap); |
| 125 | if (unlikely(!pgmap)) { |
| 126 | undo_dev_pagemap(nr, nr_start, pages); |
| 127 | pte_unmap(ptep); |
| 128 | return 0; |
| 129 | } |
Dave Hansen | 1874f68 | 2016-02-12 13:02:18 -0800 | [diff] [blame] | 130 | } else if (!pte_allows_gup(pte_val(pte), write) || |
| 131 | pte_special(pte)) { |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 132 | pte_unmap(ptep); |
| 133 | return 0; |
| 134 | } |
| 135 | VM_BUG_ON(!pfn_valid(pte_pfn(pte))); |
Hugh Dickins | 457a98b | 2016-02-17 13:11:23 -0800 | [diff] [blame] | 136 | page = pte_page(pte); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 137 | get_page(page); |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 138 | put_dev_pagemap(pgmap); |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 139 | SetPageReferenced(page); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 140 | pages[*nr] = page; |
| 141 | (*nr)++; |
| 142 | |
| 143 | } while (ptep++, addr += PAGE_SIZE, addr != end); |
| 144 | pte_unmap(ptep - 1); |
| 145 | |
| 146 | return 1; |
| 147 | } |
| 148 | |
| 149 | static inline void get_head_page_multiple(struct page *page, int nr) |
| 150 | { |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 151 | VM_BUG_ON_PAGE(page != compound_head(page), page); |
| 152 | VM_BUG_ON_PAGE(page_count(page) == 0, page); |
Joonsoo Kim | fe896d1 | 2016-03-17 14:19:26 -0700 | [diff] [blame] | 153 | page_ref_add(page, nr); |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 154 | SetPageReferenced(page); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Dan Williams | 220ced1 | 2017-02-24 14:57:12 -0800 | [diff] [blame] | 157 | static int __gup_device_huge(unsigned long pfn, unsigned long addr, |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 158 | unsigned long end, struct page **pages, int *nr) |
| 159 | { |
| 160 | int nr_start = *nr; |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 161 | struct dev_pagemap *pgmap = NULL; |
| 162 | |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 163 | do { |
| 164 | struct page *page = pfn_to_page(pfn); |
| 165 | |
| 166 | pgmap = get_dev_pagemap(pfn, pgmap); |
| 167 | if (unlikely(!pgmap)) { |
| 168 | undo_dev_pagemap(nr, nr_start, pages); |
| 169 | return 0; |
| 170 | } |
| 171 | SetPageReferenced(page); |
| 172 | pages[*nr] = page; |
| 173 | get_page(page); |
| 174 | put_dev_pagemap(pgmap); |
| 175 | (*nr)++; |
| 176 | pfn++; |
| 177 | } while (addr += PAGE_SIZE, addr != end); |
| 178 | return 1; |
| 179 | } |
| 180 | |
Dan Williams | 220ced1 | 2017-02-24 14:57:12 -0800 | [diff] [blame] | 181 | static int __gup_device_huge_pmd(pmd_t pmd, unsigned long addr, |
| 182 | unsigned long end, struct page **pages, int *nr) |
| 183 | { |
| 184 | unsigned long fault_pfn; |
| 185 | |
| 186 | fault_pfn = pmd_pfn(pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT); |
| 187 | return __gup_device_huge(fault_pfn, addr, end, pages, nr); |
| 188 | } |
| 189 | |
| 190 | static int __gup_device_huge_pud(pud_t pud, unsigned long addr, |
| 191 | unsigned long end, struct page **pages, int *nr) |
| 192 | { |
| 193 | unsigned long fault_pfn; |
| 194 | |
| 195 | fault_pfn = pud_pfn(pud) + ((addr & ~PUD_MASK) >> PAGE_SHIFT); |
| 196 | return __gup_device_huge(fault_pfn, addr, end, pages, nr); |
| 197 | } |
| 198 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 199 | static noinline int gup_huge_pmd(pmd_t pmd, unsigned long addr, |
| 200 | unsigned long end, int write, struct page **pages, int *nr) |
| 201 | { |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 202 | struct page *head, *page; |
| 203 | int refs; |
| 204 | |
Dave Hansen | 1874f68 | 2016-02-12 13:02:18 -0800 | [diff] [blame] | 205 | if (!pte_allows_gup(pmd_val(pmd), write)) |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 206 | return 0; |
Dan Williams | 3565fce | 2016-01-15 16:56:55 -0800 | [diff] [blame] | 207 | |
| 208 | VM_BUG_ON(!pfn_valid(pmd_pfn(pmd))); |
| 209 | if (pmd_devmap(pmd)) |
| 210 | return __gup_device_huge_pmd(pmd, addr, end, pages, nr); |
| 211 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 212 | /* hugepages are never "special" */ |
Toshi Kani | daf3e35 | 2015-09-17 12:24:21 -0600 | [diff] [blame] | 213 | VM_BUG_ON(pmd_flags(pmd) & _PAGE_SPECIAL); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 214 | |
| 215 | refs = 0; |
Toshi Kani | daf3e35 | 2015-09-17 12:24:21 -0600 | [diff] [blame] | 216 | head = pmd_page(pmd); |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 217 | page = head + ((addr & ~PMD_MASK) >> PAGE_SHIFT); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 218 | do { |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 219 | VM_BUG_ON_PAGE(compound_head(page) != head, page); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 220 | pages[*nr] = page; |
| 221 | (*nr)++; |
| 222 | page++; |
| 223 | refs++; |
| 224 | } while (addr += PAGE_SIZE, addr != end); |
| 225 | get_head_page_multiple(head, refs); |
| 226 | |
| 227 | return 1; |
| 228 | } |
| 229 | |
| 230 | static int gup_pmd_range(pud_t pud, unsigned long addr, unsigned long end, |
| 231 | int write, struct page **pages, int *nr) |
| 232 | { |
| 233 | unsigned long next; |
| 234 | pmd_t *pmdp; |
| 235 | |
| 236 | pmdp = pmd_offset(&pud, addr); |
| 237 | do { |
| 238 | pmd_t pmd = *pmdp; |
| 239 | |
| 240 | next = pmd_addr_end(addr, end); |
Kirill A. Shutemov | 1f19617 | 2016-01-15 16:53:35 -0800 | [diff] [blame] | 241 | if (pmd_none(pmd)) |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 242 | return 0; |
Naoya Horiguchi | cbef847 | 2015-02-11 15:25:19 -0800 | [diff] [blame] | 243 | if (unlikely(pmd_large(pmd) || !pmd_present(pmd))) { |
Mel Gorman | 2b4847e | 2013-12-18 17:08:32 -0800 | [diff] [blame] | 244 | /* |
| 245 | * NUMA hinting faults need to be handled in the GUP |
| 246 | * slowpath for accounting purposes and so that they |
| 247 | * can be serialised against THP migration. |
| 248 | */ |
Mel Gorman | 8a0516e | 2015-02-12 14:58:22 -0800 | [diff] [blame] | 249 | if (pmd_protnone(pmd)) |
Mel Gorman | 2b4847e | 2013-12-18 17:08:32 -0800 | [diff] [blame] | 250 | return 0; |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 251 | if (!gup_huge_pmd(pmd, addr, next, write, pages, nr)) |
| 252 | return 0; |
| 253 | } else { |
| 254 | if (!gup_pte_range(pmd, addr, next, write, pages, nr)) |
| 255 | return 0; |
| 256 | } |
| 257 | } while (pmdp++, addr = next, addr != end); |
| 258 | |
| 259 | return 1; |
| 260 | } |
| 261 | |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 262 | static noinline int gup_huge_pud(pud_t pud, unsigned long addr, |
| 263 | unsigned long end, int write, struct page **pages, int *nr) |
| 264 | { |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 265 | struct page *head, *page; |
| 266 | int refs; |
| 267 | |
Dave Hansen | 1874f68 | 2016-02-12 13:02:18 -0800 | [diff] [blame] | 268 | if (!pte_allows_gup(pud_val(pud), write)) |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 269 | return 0; |
Dan Williams | 220ced1 | 2017-02-24 14:57:12 -0800 | [diff] [blame] | 270 | |
| 271 | VM_BUG_ON(!pfn_valid(pud_pfn(pud))); |
| 272 | if (pud_devmap(pud)) |
| 273 | return __gup_device_huge_pud(pud, addr, end, pages, nr); |
| 274 | |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 275 | /* hugepages are never "special" */ |
Toshi Kani | daf3e35 | 2015-09-17 12:24:21 -0600 | [diff] [blame] | 276 | VM_BUG_ON(pud_flags(pud) & _PAGE_SPECIAL); |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 277 | |
| 278 | refs = 0; |
Toshi Kani | daf3e35 | 2015-09-17 12:24:21 -0600 | [diff] [blame] | 279 | head = pud_page(pud); |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 280 | page = head + ((addr & ~PUD_MASK) >> PAGE_SHIFT); |
| 281 | do { |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 282 | VM_BUG_ON_PAGE(compound_head(page) != head, page); |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 283 | pages[*nr] = page; |
| 284 | (*nr)++; |
| 285 | page++; |
| 286 | refs++; |
| 287 | } while (addr += PAGE_SIZE, addr != end); |
| 288 | get_head_page_multiple(head, refs); |
| 289 | |
| 290 | return 1; |
| 291 | } |
| 292 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 293 | static int gup_pud_range(pgd_t pgd, unsigned long addr, unsigned long end, |
| 294 | int write, struct page **pages, int *nr) |
| 295 | { |
| 296 | unsigned long next; |
| 297 | pud_t *pudp; |
| 298 | |
| 299 | pudp = pud_offset(&pgd, addr); |
| 300 | do { |
| 301 | pud_t pud = *pudp; |
| 302 | |
| 303 | next = pud_addr_end(addr, end); |
| 304 | if (pud_none(pud)) |
| 305 | return 0; |
Nick Piggin | 652ea69 | 2008-07-25 19:45:27 -0700 | [diff] [blame] | 306 | if (unlikely(pud_large(pud))) { |
| 307 | if (!gup_huge_pud(pud, addr, next, write, pages, nr)) |
| 308 | return 0; |
| 309 | } else { |
| 310 | if (!gup_pmd_range(pud, addr, next, write, pages, nr)) |
| 311 | return 0; |
| 312 | } |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 313 | } while (pudp++, addr = next, addr != end); |
| 314 | |
| 315 | return 1; |
| 316 | } |
| 317 | |
Peter Zijlstra | 465a454 | 2009-06-15 12:31:37 +0200 | [diff] [blame] | 318 | /* |
| 319 | * Like get_user_pages_fast() except its IRQ-safe in that it won't fall |
| 320 | * back to the regular GUP. |
| 321 | */ |
| 322 | int __get_user_pages_fast(unsigned long start, int nr_pages, int write, |
| 323 | struct page **pages) |
| 324 | { |
| 325 | struct mm_struct *mm = current->mm; |
| 326 | unsigned long addr, len, end; |
| 327 | unsigned long next; |
| 328 | unsigned long flags; |
| 329 | pgd_t *pgdp; |
| 330 | int nr = 0; |
| 331 | |
| 332 | start &= PAGE_MASK; |
| 333 | addr = start; |
| 334 | len = (unsigned long) nr_pages << PAGE_SHIFT; |
| 335 | end = start + len; |
| 336 | if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ, |
| 337 | (void __user *)start, len))) |
| 338 | return 0; |
| 339 | |
| 340 | /* |
| 341 | * XXX: batch / limit 'nr', to avoid large irq off latency |
| 342 | * needs some instrumenting to determine the common sizes used by |
| 343 | * important workloads (eg. DB2), and whether limiting the batch size |
| 344 | * will decrease performance. |
| 345 | * |
| 346 | * It seems like we're in the clear for the moment. Direct-IO is |
| 347 | * the main guy that batches up lots of get_user_pages, and even |
| 348 | * they are limited to 64-at-a-time which is not so many. |
| 349 | */ |
| 350 | /* |
| 351 | * This doesn't prevent pagetable teardown, but does prevent |
| 352 | * the pagetables and pages from being freed on x86. |
| 353 | * |
| 354 | * So long as we atomically load page table pointers versus teardown |
| 355 | * (which we do on x86, with the above PAE exception), we can follow the |
| 356 | * address down to the the page and take a ref on it. |
| 357 | */ |
| 358 | local_irq_save(flags); |
| 359 | pgdp = pgd_offset(mm, addr); |
| 360 | do { |
| 361 | pgd_t pgd = *pgdp; |
| 362 | |
| 363 | next = pgd_addr_end(addr, end); |
| 364 | if (pgd_none(pgd)) |
| 365 | break; |
| 366 | if (!gup_pud_range(pgd, addr, next, write, pages, &nr)) |
| 367 | break; |
| 368 | } while (pgdp++, addr = next, addr != end); |
| 369 | local_irq_restore(flags); |
| 370 | |
| 371 | return nr; |
| 372 | } |
| 373 | |
Andy Grover | a0d22f4 | 2009-04-09 16:45:29 -0700 | [diff] [blame] | 374 | /** |
| 375 | * get_user_pages_fast() - pin user pages in memory |
| 376 | * @start: starting user address |
| 377 | * @nr_pages: number of pages from start to pin |
| 378 | * @write: whether pages will be written to |
| 379 | * @pages: array that receives pointers to the pages pinned. |
| 380 | * Should be at least nr_pages long. |
| 381 | * |
| 382 | * Attempt to pin user pages in memory without taking mm->mmap_sem. |
| 383 | * If not successful, it will fall back to taking the lock and |
| 384 | * calling get_user_pages(). |
| 385 | * |
| 386 | * Returns number of pages pinned. This may be fewer than the number |
| 387 | * requested. If nr_pages is 0 or negative, returns 0. If no pages |
| 388 | * were pinned, returns -errno. |
| 389 | */ |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 390 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, |
| 391 | struct page **pages) |
| 392 | { |
| 393 | struct mm_struct *mm = current->mm; |
Linus Torvalds | 9b79022 | 2008-07-28 17:54:21 -0700 | [diff] [blame] | 394 | unsigned long addr, len, end; |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 395 | unsigned long next; |
| 396 | pgd_t *pgdp; |
| 397 | int nr = 0; |
| 398 | |
Linus Torvalds | 9b79022 | 2008-07-28 17:54:21 -0700 | [diff] [blame] | 399 | start &= PAGE_MASK; |
| 400 | addr = start; |
| 401 | len = (unsigned long) nr_pages << PAGE_SHIFT; |
Linus Torvalds | 7f81890 | 2009-06-20 09:52:27 -0700 | [diff] [blame] | 402 | |
Linus Torvalds | 9b79022 | 2008-07-28 17:54:21 -0700 | [diff] [blame] | 403 | end = start + len; |
Linus Torvalds | 7f81890 | 2009-06-20 09:52:27 -0700 | [diff] [blame] | 404 | if (end < start) |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 405 | goto slow_irqon; |
| 406 | |
Linus Torvalds | 7f81890 | 2009-06-20 09:52:27 -0700 | [diff] [blame] | 407 | #ifdef CONFIG_X86_64 |
| 408 | if (end >> __VIRTUAL_MASK_SHIFT) |
| 409 | goto slow_irqon; |
| 410 | #endif |
| 411 | |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 412 | /* |
| 413 | * XXX: batch / limit 'nr', to avoid large irq off latency |
| 414 | * needs some instrumenting to determine the common sizes used by |
| 415 | * important workloads (eg. DB2), and whether limiting the batch size |
| 416 | * will decrease performance. |
| 417 | * |
| 418 | * It seems like we're in the clear for the moment. Direct-IO is |
| 419 | * the main guy that batches up lots of get_user_pages, and even |
| 420 | * they are limited to 64-at-a-time which is not so many. |
| 421 | */ |
| 422 | /* |
| 423 | * This doesn't prevent pagetable teardown, but does prevent |
| 424 | * the pagetables and pages from being freed on x86. |
| 425 | * |
| 426 | * So long as we atomically load page table pointers versus teardown |
| 427 | * (which we do on x86, with the above PAE exception), we can follow the |
| 428 | * address down to the the page and take a ref on it. |
| 429 | */ |
| 430 | local_irq_disable(); |
| 431 | pgdp = pgd_offset(mm, addr); |
| 432 | do { |
| 433 | pgd_t pgd = *pgdp; |
| 434 | |
| 435 | next = pgd_addr_end(addr, end); |
| 436 | if (pgd_none(pgd)) |
| 437 | goto slow; |
| 438 | if (!gup_pud_range(pgd, addr, next, write, pages, &nr)) |
| 439 | goto slow; |
| 440 | } while (pgdp++, addr = next, addr != end); |
| 441 | local_irq_enable(); |
| 442 | |
| 443 | VM_BUG_ON(nr != (end - start) >> PAGE_SHIFT); |
| 444 | return nr; |
| 445 | |
| 446 | { |
| 447 | int ret; |
| 448 | |
| 449 | slow: |
| 450 | local_irq_enable(); |
| 451 | slow_irqon: |
| 452 | /* Try to get the remaining pages with get_user_pages */ |
| 453 | start += nr << PAGE_SHIFT; |
| 454 | pages += nr; |
| 455 | |
Dave Hansen | d4edcf0 | 2016-02-12 13:01:56 -0800 | [diff] [blame] | 456 | ret = get_user_pages_unlocked(start, |
Andrea Arcangeli | a7b7807 | 2015-02-11 15:27:23 -0800 | [diff] [blame] | 457 | (end - start) >> PAGE_SHIFT, |
Lorenzo Stoakes | c164154 | 2016-10-13 01:20:13 +0100 | [diff] [blame] | 458 | pages, write ? FOLL_WRITE : 0); |
Nick Piggin | 8174c43 | 2008-07-25 19:45:24 -0700 | [diff] [blame] | 459 | |
| 460 | /* Have to be a bit careful with return values */ |
| 461 | if (nr > 0) { |
| 462 | if (ret < 0) |
| 463 | ret = nr; |
| 464 | else |
| 465 | ret += nr; |
| 466 | } |
| 467 | |
| 468 | return ret; |
| 469 | } |
| 470 | } |