blob: 1a2cad52babffe6398e43451056d6814a321fdfa [file] [log] [blame]
Martin Schwidefsky80217142010-10-25 16:10:11 +02001/*
2 * Lockless get_user_pages_fast for s390
3 *
4 * Copyright IBM Corp. 2010
5 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
6 */
7#include <linux/sched.h>
8#include <linux/mm.h>
9#include <linux/hugetlb.h>
10#include <linux/vmstat.h>
11#include <linux/pagemap.h>
12#include <linux/rwsem.h>
13#include <asm/pgtable.h>
14
15/*
16 * The performance critical leaf functions are made noinline otherwise gcc
17 * inlines everything into a single function which results in too much
18 * register pressure.
19 */
20static inline int gup_pte_range(pmd_t *pmdp, pmd_t pmd, unsigned long addr,
21 unsigned long end, int write, struct page **pages, int *nr)
22{
Martin Schwidefsky25591b02010-11-10 10:05:51 +010023 unsigned long mask;
Martin Schwidefsky80217142010-10-25 16:10:11 +020024 pte_t *ptep, pte;
25 struct page *page;
26
Martin Schwidefskye5098612013-07-23 20:57:57 +020027 mask = (write ? _PAGE_PROTECT : 0) | _PAGE_INVALID | _PAGE_SPECIAL;
Martin Schwidefsky80217142010-10-25 16:10:11 +020028
29 ptep = ((pte_t *) pmd_deref(pmd)) + pte_index(addr);
30 do {
31 pte = *ptep;
32 barrier();
Gerald Schaeferecf46ab2015-05-29 15:34:51 +020033 /* Similar to the PMD case, NUMA hinting must take slow path */
34 if (pte_protnone(pte))
35 return 0;
Martin Schwidefsky25591b02010-11-10 10:05:51 +010036 if ((pte_val(pte) & mask) != 0)
Martin Schwidefsky80217142010-10-25 16:10:11 +020037 return 0;
38 VM_BUG_ON(!pfn_valid(pte_pfn(pte)));
39 page = pte_page(pte);
40 if (!page_cache_get_speculative(page))
41 return 0;
42 if (unlikely(pte_val(pte) != pte_val(*ptep))) {
43 put_page(page);
44 return 0;
45 }
46 pages[*nr] = page;
47 (*nr)++;
48
49 } while (ptep++, addr += PAGE_SIZE, addr != end);
50
51 return 1;
52}
53
54static inline int gup_huge_pmd(pmd_t *pmdp, pmd_t pmd, unsigned long addr,
55 unsigned long end, int write, struct page **pages, int *nr)
56{
57 unsigned long mask, result;
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -080058 struct page *head, *page;
Martin Schwidefsky80217142010-10-25 16:10:11 +020059 int refs;
60
Martin Schwidefskye5098612013-07-23 20:57:57 +020061 result = write ? 0 : _SEGMENT_ENTRY_PROTECT;
62 mask = result | _SEGMENT_ENTRY_INVALID;
Martin Schwidefsky80217142010-10-25 16:10:11 +020063 if ((pmd_val(pmd) & mask) != result)
64 return 0;
65 VM_BUG_ON(!pfn_valid(pmd_val(pmd) >> PAGE_SHIFT));
66
67 refs = 0;
68 head = pmd_page(pmd);
69 page = head + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
70 do {
71 VM_BUG_ON(compound_head(page) != head);
72 pages[*nr] = page;
73 (*nr)++;
74 page++;
75 refs++;
76 } while (addr += PAGE_SIZE, addr != end);
77
78 if (!page_cache_add_speculative(head, refs)) {
79 *nr -= refs;
80 return 0;
81 }
82
83 if (unlikely(pmd_val(pmd) != pmd_val(*pmdp))) {
84 *nr -= refs;
85 while (refs--)
86 put_page(head);
Andrea Arcangeli0693bc92011-11-02 13:37:28 -070087 return 0;
88 }
89
Martin Schwidefsky80217142010-10-25 16:10:11 +020090 return 1;
91}
92
93
94static inline int gup_pmd_range(pud_t *pudp, pud_t pud, unsigned long addr,
95 unsigned long end, int write, struct page **pages, int *nr)
96{
97 unsigned long next;
98 pmd_t *pmdp, pmd;
99
100 pmdp = (pmd_t *) pudp;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200101 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
102 pmdp = (pmd_t *) pud_deref(pud);
103 pmdp += pmd_index(addr);
Martin Schwidefsky80217142010-10-25 16:10:11 +0200104 do {
105 pmd = *pmdp;
106 barrier();
107 next = pmd_addr_end(addr, end);
Gerald Schaefer75077af2012-10-08 16:30:15 -0700108 /*
109 * The pmd_trans_splitting() check below explains why
110 * pmdp_splitting_flush() has to serialize with
111 * smp_call_function() against our disabled IRQs, to stop
112 * this gup-fast code from running while we set the
113 * splitting bit in the pmd. Returning zero will take
114 * the slow path that will call wait_split_huge_page()
115 * if the pmd is still in splitting state.
116 */
117 if (pmd_none(pmd) || pmd_trans_splitting(pmd))
Martin Schwidefsky80217142010-10-25 16:10:11 +0200118 return 0;
Gerald Schaefer156152f2012-10-25 17:24:12 +0200119 if (unlikely(pmd_large(pmd))) {
Gerald Schaeferecf46ab2015-05-29 15:34:51 +0200120 /*
121 * NUMA hinting faults need to be handled in the GUP
122 * slowpath for accounting purposes and so that they
123 * can be serialised against THP migration.
124 */
125 if (pmd_protnone(pmd))
126 return 0;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200127 if (!gup_huge_pmd(pmdp, pmd, addr, next,
128 write, pages, nr))
129 return 0;
130 } else if (!gup_pte_range(pmdp, pmd, addr, next,
131 write, pages, nr))
132 return 0;
133 } while (pmdp++, addr = next, addr != end);
134
135 return 1;
136}
137
138static inline int gup_pud_range(pgd_t *pgdp, pgd_t pgd, unsigned long addr,
139 unsigned long end, int write, struct page **pages, int *nr)
140{
141 unsigned long next;
142 pud_t *pudp, pud;
143
144 pudp = (pud_t *) pgdp;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200145 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
146 pudp = (pud_t *) pgd_deref(pgd);
147 pudp += pud_index(addr);
Martin Schwidefsky80217142010-10-25 16:10:11 +0200148 do {
149 pud = *pudp;
150 barrier();
151 next = pud_addr_end(addr, end);
152 if (pud_none(pud))
153 return 0;
154 if (!gup_pmd_range(pudp, pud, addr, next, write, pages, nr))
155 return 0;
156 } while (pudp++, addr = next, addr != end);
157
158 return 1;
159}
160
Gerald Schaefer34cda992012-09-04 15:37:55 +0200161/*
162 * Like get_user_pages_fast() except its IRQ-safe in that it won't fall
163 * back to the regular GUP.
164 */
165int __get_user_pages_fast(unsigned long start, int nr_pages, int write,
166 struct page **pages)
167{
168 struct mm_struct *mm = current->mm;
169 unsigned long addr, len, end;
170 unsigned long next, flags;
171 pgd_t *pgdp, pgd;
172 int nr = 0;
173
174 start &= PAGE_MASK;
175 addr = start;
176 len = (unsigned long) nr_pages << PAGE_SHIFT;
177 end = start + len;
Heiko Carstenseb0bf922013-10-08 09:29:09 +0200178 if ((end <= start) || (end > TASK_SIZE))
Gerald Schaefer34cda992012-09-04 15:37:55 +0200179 return 0;
Heiko Carstens01997bb2013-10-07 16:14:50 +0200180 /*
181 * local_irq_save() doesn't prevent pagetable teardown, but does
182 * prevent the pagetables from being freed on s390.
183 *
184 * So long as we atomically load page table pointers versus teardown,
185 * we can follow the address down to the the page and take a ref on it.
186 */
Gerald Schaefer34cda992012-09-04 15:37:55 +0200187 local_irq_save(flags);
188 pgdp = pgd_offset(mm, addr);
189 do {
190 pgd = *pgdp;
191 barrier();
192 next = pgd_addr_end(addr, end);
193 if (pgd_none(pgd))
194 break;
195 if (!gup_pud_range(pgdp, pgd, addr, next, write, pages, &nr))
196 break;
197 } while (pgdp++, addr = next, addr != end);
198 local_irq_restore(flags);
199
200 return nr;
201}
202
Martin Schwidefsky80217142010-10-25 16:10:11 +0200203/**
204 * get_user_pages_fast() - pin user pages in memory
205 * @start: starting user address
206 * @nr_pages: number of pages from start to pin
207 * @write: whether pages will be written to
208 * @pages: array that receives pointers to the pages pinned.
209 * Should be at least nr_pages long.
210 *
211 * Attempt to pin user pages in memory without taking mm->mmap_sem.
212 * If not successful, it will fall back to taking the lock and
213 * calling get_user_pages().
214 *
215 * Returns number of pages pinned. This may be fewer than the number
216 * requested. If nr_pages is 0 or negative, returns 0. If no pages
217 * were pinned, returns -errno.
218 */
219int get_user_pages_fast(unsigned long start, int nr_pages, int write,
220 struct page **pages)
221{
222 struct mm_struct *mm = current->mm;
Heiko Carstens01997bb2013-10-07 16:14:50 +0200223 int nr, ret;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200224
David Hildenbrand406123512015-10-15 10:47:18 +0200225 might_sleep();
Martin Schwidefsky80217142010-10-25 16:10:11 +0200226 start &= PAGE_MASK;
Heiko Carstens01997bb2013-10-07 16:14:50 +0200227 nr = __get_user_pages_fast(start, nr_pages, write, pages);
228 if (nr == nr_pages)
229 return nr;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200230
Heiko Carstens01997bb2013-10-07 16:14:50 +0200231 /* Try to get the remaining pages with get_user_pages */
232 start += nr << PAGE_SHIFT;
233 pages += nr;
Andrea Arcangelia7b78072015-02-11 15:27:23 -0800234 ret = get_user_pages_unlocked(current, mm, start,
235 nr_pages - nr, write, 0, pages);
Heiko Carstens01997bb2013-10-07 16:14:50 +0200236 /* Have to be a bit careful with return values */
237 if (nr > 0)
238 ret = (ret < 0) ? nr : ret + nr;
239 return ret;
Martin Schwidefsky80217142010-10-25 16:10:11 +0200240}