blob: 171fc925e1e4e7c699c6222b229914b320c987c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IA-32 Huge TLB Page Support for Kernel.
3 *
4 * Copyright (C) 2002, Rohit Seth <rohit.seth@intel.com>
5 */
6
7#include <linux/config.h>
8#include <linux/init.h>
9#include <linux/fs.h>
10#include <linux/mm.h>
11#include <linux/hugetlb.h>
12#include <linux/pagemap.h>
13#include <linux/smp_lock.h>
14#include <linux/slab.h>
15#include <linux/err.h>
16#include <linux/sysctl.h>
17#include <asm/mman.h>
18#include <asm/tlb.h>
19#include <asm/tlbflush.h>
20
21static pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr)
22{
23 pgd_t *pgd;
24 pud_t *pud;
25 pmd_t *pmd = NULL;
26
27 pgd = pgd_offset(mm, addr);
28 pud = pud_alloc(mm, pgd, addr);
29 pmd = pmd_alloc(mm, pud, addr);
30 return (pte_t *) pmd;
31}
32
33static pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
34{
35 pgd_t *pgd;
36 pud_t *pud;
37 pmd_t *pmd = NULL;
38
39 pgd = pgd_offset(mm, addr);
40 pud = pud_offset(pgd, addr);
41 pmd = pmd_offset(pud, addr);
42 return (pte_t *) pmd;
43}
44
45static void set_huge_pte(struct mm_struct *mm, struct vm_area_struct *vma, struct page *page, pte_t * page_table, int write_access)
46{
47 pte_t entry;
48
49 add_mm_counter(mm, rss, HPAGE_SIZE / PAGE_SIZE);
50 if (write_access) {
51 entry =
52 pte_mkwrite(pte_mkdirty(mk_pte(page, vma->vm_page_prot)));
53 } else
54 entry = pte_wrprotect(mk_pte(page, vma->vm_page_prot));
55 entry = pte_mkyoung(entry);
56 mk_pte_huge(entry);
57 set_pte(page_table, entry);
58}
59
60/*
61 * This function checks for proper alignment of input addr and len parameters.
62 */
63int is_aligned_hugepage_range(unsigned long addr, unsigned long len)
64{
65 if (len & ~HPAGE_MASK)
66 return -EINVAL;
67 if (addr & ~HPAGE_MASK)
68 return -EINVAL;
69 return 0;
70}
71
72int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
73 struct vm_area_struct *vma)
74{
75 pte_t *src_pte, *dst_pte, entry;
76 struct page *ptepage;
77 unsigned long addr = vma->vm_start;
78 unsigned long end = vma->vm_end;
79
80 while (addr < end) {
81 dst_pte = huge_pte_alloc(dst, addr);
82 if (!dst_pte)
83 goto nomem;
84 src_pte = huge_pte_offset(src, addr);
85 entry = *src_pte;
86 ptepage = pte_page(entry);
87 get_page(ptepage);
88 set_pte(dst_pte, entry);
89 add_mm_counter(dst, rss, HPAGE_SIZE / PAGE_SIZE);
90 addr += HPAGE_SIZE;
91 }
92 return 0;
93
94nomem:
95 return -ENOMEM;
96}
97
98int
99follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
100 struct page **pages, struct vm_area_struct **vmas,
101 unsigned long *position, int *length, int i)
102{
103 unsigned long vpfn, vaddr = *position;
104 int remainder = *length;
105
106 WARN_ON(!is_vm_hugetlb_page(vma));
107
108 vpfn = vaddr/PAGE_SIZE;
109 while (vaddr < vma->vm_end && remainder) {
110
111 if (pages) {
112 pte_t *pte;
113 struct page *page;
114
115 pte = huge_pte_offset(mm, vaddr);
116
117 /* hugetlb should be locked, and hence, prefaulted */
118 WARN_ON(!pte || pte_none(*pte));
119
120 page = &pte_page(*pte)[vpfn % (HPAGE_SIZE/PAGE_SIZE)];
121
122 WARN_ON(!PageCompound(page));
123
124 get_page(page);
125 pages[i] = page;
126 }
127
128 if (vmas)
129 vmas[i] = vma;
130
131 vaddr += PAGE_SIZE;
132 ++vpfn;
133 --remainder;
134 ++i;
135 }
136
137 *length = remainder;
138 *position = vaddr;
139
140 return i;
141}
142
143#if 0 /* This is just for testing */
144struct page *
145follow_huge_addr(struct mm_struct *mm, unsigned long address, int write)
146{
147 unsigned long start = address;
148 int length = 1;
149 int nr;
150 struct page *page;
151 struct vm_area_struct *vma;
152
153 vma = find_vma(mm, addr);
154 if (!vma || !is_vm_hugetlb_page(vma))
155 return ERR_PTR(-EINVAL);
156
157 pte = huge_pte_offset(mm, address);
158
159 /* hugetlb should be locked, and hence, prefaulted */
160 WARN_ON(!pte || pte_none(*pte));
161
162 page = &pte_page(*pte)[vpfn % (HPAGE_SIZE/PAGE_SIZE)];
163
164 WARN_ON(!PageCompound(page));
165
166 return page;
167}
168
169int pmd_huge(pmd_t pmd)
170{
171 return 0;
172}
173
174struct page *
175follow_huge_pmd(struct mm_struct *mm, unsigned long address,
176 pmd_t *pmd, int write)
177{
178 return NULL;
179}
180
181#else
182
183struct page *
184follow_huge_addr(struct mm_struct *mm, unsigned long address, int write)
185{
186 return ERR_PTR(-EINVAL);
187}
188
189int pmd_huge(pmd_t pmd)
190{
191 return !!(pmd_val(pmd) & _PAGE_PSE);
192}
193
194struct page *
195follow_huge_pmd(struct mm_struct *mm, unsigned long address,
196 pmd_t *pmd, int write)
197{
198 struct page *page;
199
200 page = pte_page(*(pte_t *)pmd);
201 if (page)
202 page += ((address & ~HPAGE_MASK) >> PAGE_SHIFT);
203 return page;
204}
205#endif
206
207void unmap_hugepage_range(struct vm_area_struct *vma,
208 unsigned long start, unsigned long end)
209{
210 struct mm_struct *mm = vma->vm_mm;
211 unsigned long address;
212 pte_t pte, *ptep;
213 struct page *page;
214
215 BUG_ON(start & (HPAGE_SIZE - 1));
216 BUG_ON(end & (HPAGE_SIZE - 1));
217
218 for (address = start; address < end; address += HPAGE_SIZE) {
219 ptep = huge_pte_offset(mm, address);
220 if (!ptep)
221 continue;
222 pte = ptep_get_and_clear(mm, address, ptep);
223 if (pte_none(pte))
224 continue;
225 page = pte_page(pte);
226 put_page(page);
227 }
228 add_mm_counter(mm ,rss, -((end - start) >> PAGE_SHIFT));
229 flush_tlb_range(vma, start, end);
230}
231
232int hugetlb_prefault(struct address_space *mapping, struct vm_area_struct *vma)
233{
234 struct mm_struct *mm = current->mm;
235 unsigned long addr;
236 int ret = 0;
237
238 BUG_ON(vma->vm_start & ~HPAGE_MASK);
239 BUG_ON(vma->vm_end & ~HPAGE_MASK);
240
241 spin_lock(&mm->page_table_lock);
242 for (addr = vma->vm_start; addr < vma->vm_end; addr += HPAGE_SIZE) {
243 unsigned long idx;
244 pte_t *pte = huge_pte_alloc(mm, addr);
245 struct page *page;
246
247 if (!pte) {
248 ret = -ENOMEM;
249 goto out;
250 }
251
Hugh Dickins021740d2005-04-19 13:29:18 -0700252 if (!pte_none(*pte))
253 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 idx = ((addr - vma->vm_start) >> HPAGE_SHIFT)
256 + (vma->vm_pgoff >> (HPAGE_SHIFT - PAGE_SHIFT));
257 page = find_get_page(mapping, idx);
258 if (!page) {
259 /* charge the fs quota first */
260 if (hugetlb_get_quota(mapping)) {
261 ret = -ENOMEM;
262 goto out;
263 }
264 page = alloc_huge_page();
265 if (!page) {
266 hugetlb_put_quota(mapping);
267 ret = -ENOMEM;
268 goto out;
269 }
270 ret = add_to_page_cache(page, mapping, idx, GFP_ATOMIC);
271 if (! ret) {
272 unlock_page(page);
273 } else {
274 hugetlb_put_quota(mapping);
275 free_huge_page(page);
276 goto out;
277 }
278 }
279 set_huge_pte(mm, vma, page, pte, vma->vm_flags & VM_WRITE);
280 }
281out:
282 spin_unlock(&mm->page_table_lock);
283 return ret;
284}
285
286/* x86_64 also uses this file */
287
288#ifdef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
289static unsigned long hugetlb_get_unmapped_area_bottomup(struct file *file,
290 unsigned long addr, unsigned long len,
291 unsigned long pgoff, unsigned long flags)
292{
293 struct mm_struct *mm = current->mm;
294 struct vm_area_struct *vma;
295 unsigned long start_addr;
296
297 start_addr = mm->free_area_cache;
298
299full_search:
300 addr = ALIGN(start_addr, HPAGE_SIZE);
301
302 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
303 /* At this point: (!vma || addr < vma->vm_end). */
304 if (TASK_SIZE - len < addr) {
305 /*
306 * Start a new search - just in case we missed
307 * some holes.
308 */
309 if (start_addr != TASK_UNMAPPED_BASE) {
310 start_addr = TASK_UNMAPPED_BASE;
311 goto full_search;
312 }
313 return -ENOMEM;
314 }
315 if (!vma || addr + len <= vma->vm_start) {
316 mm->free_area_cache = addr + len;
317 return addr;
318 }
319 addr = ALIGN(vma->vm_end, HPAGE_SIZE);
320 }
321}
322
323static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
324 unsigned long addr0, unsigned long len,
325 unsigned long pgoff, unsigned long flags)
326{
327 struct mm_struct *mm = current->mm;
328 struct vm_area_struct *vma, *prev_vma;
329 unsigned long base = mm->mmap_base, addr = addr0;
330 int first_time = 1;
331
332 /* don't allow allocations above current base */
333 if (mm->free_area_cache > base)
334 mm->free_area_cache = base;
335
336try_again:
337 /* make sure it can fit in the remaining address space */
338 if (mm->free_area_cache < len)
339 goto fail;
340
341 /* either no address requested or cant fit in requested address hole */
342 addr = (mm->free_area_cache - len) & HPAGE_MASK;
343 do {
344 /*
345 * Lookup failure means no vma is above this address,
346 * i.e. return with success:
347 */
348 if (!(vma = find_vma_prev(mm, addr, &prev_vma)))
349 return addr;
350
351 /*
352 * new region fits between prev_vma->vm_end and
353 * vma->vm_start, use it:
354 */
355 if (addr + len <= vma->vm_start &&
356 (!prev_vma || (addr >= prev_vma->vm_end)))
357 /* remember the address as a hint for next time */
358 return (mm->free_area_cache = addr);
359 else
360 /* pull free_area_cache down to the first hole */
361 if (mm->free_area_cache == vma->vm_end)
362 mm->free_area_cache = vma->vm_start;
363
364 /* try just below the current vma->vm_start */
365 addr = (vma->vm_start - len) & HPAGE_MASK;
366 } while (len <= vma->vm_start);
367
368fail:
369 /*
370 * if hint left us with no space for the requested
371 * mapping then try again:
372 */
373 if (first_time) {
374 mm->free_area_cache = base;
375 first_time = 0;
376 goto try_again;
377 }
378 /*
379 * A failed mmap() very likely causes application failure,
380 * so fall back to the bottom-up function here. This scenario
381 * can happen with large stack limits and large mmap()
382 * allocations.
383 */
384 mm->free_area_cache = TASK_UNMAPPED_BASE;
385 addr = hugetlb_get_unmapped_area_bottomup(file, addr0,
386 len, pgoff, flags);
387
388 /*
389 * Restore the topdown base:
390 */
391 mm->free_area_cache = base;
392
393 return addr;
394}
395
396unsigned long
397hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
398 unsigned long len, unsigned long pgoff, unsigned long flags)
399{
400 struct mm_struct *mm = current->mm;
401 struct vm_area_struct *vma;
402
403 if (len & ~HPAGE_MASK)
404 return -EINVAL;
405 if (len > TASK_SIZE)
406 return -ENOMEM;
407
408 if (addr) {
409 addr = ALIGN(addr, HPAGE_SIZE);
410 vma = find_vma(mm, addr);
411 if (TASK_SIZE - len >= addr &&
412 (!vma || addr + len <= vma->vm_start))
413 return addr;
414 }
415 if (mm->get_unmapped_area == arch_get_unmapped_area)
416 return hugetlb_get_unmapped_area_bottomup(file, addr, len,
417 pgoff, flags);
418 else
419 return hugetlb_get_unmapped_area_topdown(file, addr, len,
420 pgoff, flags);
421}
422
423#endif /*HAVE_ARCH_HUGETLB_UNMAPPED_AREA*/
424