blob: c9ba9deafe83f30daaae9b0e998c3de715671d43 [file] [log] [blame]
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07001#include <linux/mm.h>
2#include <asm/pgalloc.h>
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -07003#include <asm/pgtable.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07004#include <asm/tlb.h>
Ingo Molnara1d5a862008-06-20 15:34:46 +02005#include <asm/fixmap.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07006
Vegard Nossum9e730232009-02-22 11:28:25 +01007#define PGALLOC_GFP GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO
8
Ian Campbell14315592010-02-17 10:38:10 +00009#ifdef CONFIG_HIGHPTE
10#define PGALLOC_USER_GFP __GFP_HIGHMEM
11#else
12#define PGALLOC_USER_GFP 0
13#endif
14
15gfp_t __userpte_alloc_gfp = PGALLOC_GFP | PGALLOC_USER_GFP;
16
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070017pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
18{
Vegard Nossum9e730232009-02-22 11:28:25 +010019 return (pte_t *)__get_free_page(PGALLOC_GFP);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070020}
21
22pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
23{
24 struct page *pte;
25
Ian Campbell14315592010-02-17 10:38:10 +000026 pte = alloc_pages(__userpte_alloc_gfp, 0);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070027 if (pte)
28 pgtable_page_ctor(pte);
29 return pte;
30}
31
Ian Campbell14315592010-02-17 10:38:10 +000032static int __init setup_userpte(char *arg)
33{
34 if (!arg)
35 return -EINVAL;
36
37 /*
38 * "userpte=nohigh" disables allocation of user pagetables in
39 * high memory.
40 */
41 if (strcmp(arg, "nohigh") == 0)
42 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
43 else
44 return -EINVAL;
45 return 0;
46}
47early_param("userpte", setup_userpte);
48
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100049void ___pte_free_tlb(struct mmu_gather *tlb, struct page *pte)
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070050{
51 pgtable_page_dtor(pte);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070052 paravirt_release_pte(page_to_pfn(pte));
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070053 tlb_remove_page(tlb, pte);
54}
55
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070056#if PAGETABLE_LEVELS > 2
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100057void ___pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd)
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070058{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070059 paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070060 tlb_remove_page(tlb, virt_to_page(pmd));
61}
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070062
63#if PAGETABLE_LEVELS > 3
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100064void ___pud_free_tlb(struct mmu_gather *tlb, pud_t *pud)
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070065{
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070066 paravirt_release_pud(__pa(pud) >> PAGE_SHIFT);
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070067 tlb_remove_page(tlb, virt_to_page(pud));
68}
69#endif /* PAGETABLE_LEVELS > 3 */
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070070#endif /* PAGETABLE_LEVELS > 2 */
71
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070072static inline void pgd_list_add(pgd_t *pgd)
73{
74 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070075
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070076 list_add(&page->lru, &pgd_list);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070077}
78
79static inline void pgd_list_del(pgd_t *pgd)
80{
81 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070082
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070083 list_del(&page->lru);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070084}
85
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070086#define UNSHARED_PTRS_PER_PGD \
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -070087 (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070088
Jan Beulich17b74622008-08-29 12:51:32 +010089static void pgd_ctor(pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070090{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070091 /* If the pgd points to a shared pagetable level (either the
92 ptes in non-PAE, or shared PMD in PAE), then just copy the
93 references from swapper_pg_dir. */
94 if (PAGETABLE_LEVELS == 2 ||
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -070095 (PAGETABLE_LEVELS == 3 && SHARED_KERNEL_PMD) ||
96 PAGETABLE_LEVELS == 4) {
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -070097 clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY,
98 swapper_pg_dir + KERNEL_PGD_BOUNDARY,
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070099 KERNEL_PGD_PTRS);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700100 paravirt_alloc_pmd_clone(__pa(pgd) >> PAGE_SHIFT,
101 __pa(swapper_pg_dir) >> PAGE_SHIFT,
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700102 KERNEL_PGD_BOUNDARY,
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700103 KERNEL_PGD_PTRS);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700104 }
105
106 /* list required to sync kernel mapping updates */
107 if (!SHARED_KERNEL_PMD)
108 pgd_list_add(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700109}
110
Jan Beulich17b74622008-08-29 12:51:32 +0100111static void pgd_dtor(pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700112{
113 unsigned long flags; /* can be called from interrupt context */
114
115 if (SHARED_KERNEL_PMD)
116 return;
117
118 spin_lock_irqsave(&pgd_lock, flags);
119 pgd_list_del(pgd);
120 spin_unlock_irqrestore(&pgd_lock, flags);
121}
122
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700123/*
124 * List of all pgd's needed for non-PAE so it can invalidate entries
125 * in both cached and uncached pgd's; not needed for PAE since the
126 * kernel pmd is shared. If PAE were not to share the pmd a similar
127 * tactic would be needed. This is essentially codepath-based locking
128 * against pageattr.c; it is the unique case in which a valid change
129 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
130 * vmalloc faults work because attached pagetables are never freed.
131 * -- wli
132 */
133
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700134#ifdef CONFIG_X86_PAE
135/*
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700136 * In PAE mode, we need to do a cr3 reload (=tlb flush) when
137 * updating the top-level pagetable entries to guarantee the
138 * processor notices the update. Since this is expensive, and
139 * all 4 top-level entries are used almost immediately in a
140 * new process's life, we just pre-populate them here.
141 *
142 * Also, if we're in a paravirt environment where the kernel pmd is
143 * not shared between pagetables (!SHARED_KERNEL_PMDS), we allocate
144 * and initialize the kernel pmds here.
145 */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400146#define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100147
148void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd)
149{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700150 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100151
152 /* Note: almost everything apart from _PAGE_PRESENT is
153 reserved at the pmd (PDPT) level. */
154 set_pud(pudp, __pud(__pa(pmd) | _PAGE_PRESENT));
155
156 /*
157 * According to Intel App note "TLBs, Paging-Structure Caches,
158 * and Their Invalidation", April 2007, document 317080-001,
159 * section 8.1: in PAE mode we explicitly have to flush the
160 * TLB via cr3 if the top-level pgd is changed...
161 */
162 if (mm == current->active_mm)
163 write_cr3(read_cr3());
164}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700165#else /* !CONFIG_X86_PAE */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400166
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700167/* No need to prepopulate any pagetable entries in non-PAE modes. */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400168#define PREALLOCATED_PMDS 0
169
170#endif /* CONFIG_X86_PAE */
171
172static void free_pmds(pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700173{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400174 int i;
175
176 for(i = 0; i < PREALLOCATED_PMDS; i++)
177 if (pmds[i])
178 free_page((unsigned long)pmds[i]);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700179}
180
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400181static int preallocate_pmds(pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700182{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400183 int i;
184 bool failed = false;
185
186 for(i = 0; i < PREALLOCATED_PMDS; i++) {
Vegard Nossum9e730232009-02-22 11:28:25 +0100187 pmd_t *pmd = (pmd_t *)__get_free_page(PGALLOC_GFP);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400188 if (pmd == NULL)
189 failed = true;
190 pmds[i] = pmd;
191 }
192
193 if (failed) {
194 free_pmds(pmds);
195 return -ENOMEM;
196 }
197
198 return 0;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700199}
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400200
201/*
202 * Mop up any pmd pages which may still be attached to the pgd.
203 * Normally they will be freed by munmap/exit_mmap, but any pmd we
204 * preallocate which never got a corresponding vma will need to be
205 * freed manually.
206 */
207static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp)
208{
209 int i;
210
211 for(i = 0; i < PREALLOCATED_PMDS; i++) {
212 pgd_t pgd = pgdp[i];
213
214 if (pgd_val(pgd) != 0) {
215 pmd_t *pmd = (pmd_t *)pgd_page_vaddr(pgd);
216
217 pgdp[i] = native_make_pgd(0);
218
219 paravirt_release_pmd(pgd_val(pgd) >> PAGE_SHIFT);
220 pmd_free(mm, pmd);
221 }
222 }
223}
224
225static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[])
226{
227 pud_t *pud;
228 unsigned long addr;
229 int i;
230
Jeremy Fitzhardingecf3e5052008-08-08 13:46:07 -0700231 if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */
232 return;
233
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400234 pud = pud_offset(pgd, 0);
235
236 for (addr = i = 0; i < PREALLOCATED_PMDS;
237 i++, pud++, addr += PUD_SIZE) {
238 pmd_t *pmd = pmds[i];
239
240 if (i >= KERNEL_PGD_BOUNDARY)
241 memcpy(pmd, (pmd_t *)pgd_page_vaddr(swapper_pg_dir[i]),
242 sizeof(pmd_t) * PTRS_PER_PMD);
243
244 pud_populate(mm, pud, pmd);
245 }
246}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700247
248pgd_t *pgd_alloc(struct mm_struct *mm)
249{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400250 pgd_t *pgd;
251 pmd_t *pmds[PREALLOCATED_PMDS];
252 unsigned long flags;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700253
Vegard Nossum9e730232009-02-22 11:28:25 +0100254 pgd = (pgd_t *)__get_free_page(PGALLOC_GFP);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400255
256 if (pgd == NULL)
257 goto out;
258
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700259 mm->pgd = pgd;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700260
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400261 if (preallocate_pmds(pmds) != 0)
262 goto out_free_pgd;
263
264 if (paravirt_pgd_alloc(mm) != 0)
265 goto out_free_pmds;
266
267 /*
268 * Make sure that pre-populating the pmds is atomic with
269 * respect to anything walking the pgd_list, so that they
270 * never see a partially populated pgd.
271 */
272 spin_lock_irqsave(&pgd_lock, flags);
273
274 pgd_ctor(pgd);
275 pgd_prepopulate_pmd(mm, pgd, pmds);
276
277 spin_unlock_irqrestore(&pgd_lock, flags);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700278
279 return pgd;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400280
281out_free_pmds:
282 free_pmds(pmds);
283out_free_pgd:
284 free_page((unsigned long)pgd);
285out:
286 return NULL;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700287}
288
289void pgd_free(struct mm_struct *mm, pgd_t *pgd)
290{
291 pgd_mop_up_pmds(mm, pgd);
292 pgd_dtor(pgd);
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400293 paravirt_pgd_free(mm, pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700294 free_page((unsigned long)pgd);
295}
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700296
297int ptep_set_access_flags(struct vm_area_struct *vma,
298 unsigned long address, pte_t *ptep,
299 pte_t entry, int dirty)
300{
301 int changed = !pte_same(*ptep, entry);
302
303 if (changed && dirty) {
304 *ptep = entry;
305 pte_update_defer(vma->vm_mm, address, ptep);
306 flush_tlb_page(vma, address);
307 }
308
309 return changed;
310}
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700311
312int ptep_test_and_clear_young(struct vm_area_struct *vma,
313 unsigned long addr, pte_t *ptep)
314{
315 int ret = 0;
316
317 if (pte_young(*ptep))
318 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Thomas Gleixner48e23952008-05-24 17:24:34 +0200319 (unsigned long *) &ptep->pte);
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700320
321 if (ret)
322 pte_update(vma->vm_mm, addr, ptep);
323
324 return ret;
325}
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700326
327int ptep_clear_flush_young(struct vm_area_struct *vma,
328 unsigned long address, pte_t *ptep)
329{
330 int young;
331
332 young = ptep_test_and_clear_young(vma, address, ptep);
333 if (young)
334 flush_tlb_page(vma, address);
335
336 return young;
337}
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700338
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300339/**
340 * reserve_top_address - reserves a hole in the top of kernel address space
341 * @reserve - size of hole to reserve
342 *
343 * Can be used to relocate the fixmap area and poke a hole in the top
344 * of kernel address space to make room for a hypervisor.
345 */
346void __init reserve_top_address(unsigned long reserve)
347{
348#ifdef CONFIG_X86_32
349 BUG_ON(fixmaps_set > 0);
350 printk(KERN_INFO "Reserving virtual address space above 0x%08x\n",
351 (int)-reserve);
352 __FIXADDR_TOP = -reserve - PAGE_SIZE;
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300353#endif
354}
355
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700356int fixmaps_set;
357
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700358void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700359{
360 unsigned long address = __fix_to_virt(idx);
361
362 if (idx >= __end_of_fixed_addresses) {
363 BUG();
364 return;
365 }
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700366 set_pte_vaddr(address, pte);
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700367 fixmaps_set++;
368}
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700369
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700370void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys,
371 pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700372{
373 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
374}