blob: 218834a3e9adde25ea3ddf3ef2b3f513846ce1c7 [file] [log] [blame]
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07001#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09002#include <linux/gfp.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07003#include <asm/pgalloc.h>
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -07004#include <asm/pgtable.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07005#include <asm/tlb.h>
Ingo Molnara1d5a862008-06-20 15:34:46 +02006#include <asm/fixmap.h>
Toshi Kani6b637832015-04-14 15:47:32 -07007#include <asm/mtrr.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07008
Vladimir Davydov3e79ec72016-07-26 15:24:30 -07009#define PGALLOC_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | __GFP_ZERO)
Vegard Nossum9e730232009-02-22 11:28:25 +010010
Ian Campbell14315592010-02-17 10:38:10 +000011#ifdef CONFIG_HIGHPTE
12#define PGALLOC_USER_GFP __GFP_HIGHMEM
13#else
14#define PGALLOC_USER_GFP 0
15#endif
16
17gfp_t __userpte_alloc_gfp = PGALLOC_GFP | PGALLOC_USER_GFP;
18
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070019pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
20{
Vladimir Davydov3e79ec72016-07-26 15:24:30 -070021 return (pte_t *)__get_free_page(PGALLOC_GFP & ~__GFP_ACCOUNT);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070022}
23
24pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
25{
26 struct page *pte;
27
Ian Campbell14315592010-02-17 10:38:10 +000028 pte = alloc_pages(__userpte_alloc_gfp, 0);
Kirill A. Shutemovcecbd1b2013-11-14 14:31:47 -080029 if (!pte)
30 return NULL;
31 if (!pgtable_page_ctor(pte)) {
32 __free_page(pte);
33 return NULL;
34 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070035 return pte;
36}
37
Ian Campbell14315592010-02-17 10:38:10 +000038static int __init setup_userpte(char *arg)
39{
40 if (!arg)
41 return -EINVAL;
42
43 /*
44 * "userpte=nohigh" disables allocation of user pagetables in
45 * high memory.
46 */
47 if (strcmp(arg, "nohigh") == 0)
48 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
49 else
50 return -EINVAL;
51 return 0;
52}
53early_param("userpte", setup_userpte);
54
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100055void ___pte_free_tlb(struct mmu_gather *tlb, struct page *pte)
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070056{
57 pgtable_page_dtor(pte);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070058 paravirt_release_pte(page_to_pfn(pte));
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020059 tlb_remove_table(tlb, pte);
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070060}
61
Kirill A. Shutemov98233362015-04-14 15:46:14 -070062#if CONFIG_PGTABLE_LEVELS > 2
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100063void ___pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd)
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070064{
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080065 struct page *page = virt_to_page(pmd);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070066 paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT);
Dave Hansen1de14c32013-04-12 16:23:54 -070067 /*
68 * NOTE! For PAE, any changes to the top page-directory-pointer-table
69 * entries need a full cr3 reload to flush.
70 */
71#ifdef CONFIG_X86_PAE
72 tlb->need_flush_all = 1;
73#endif
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080074 pgtable_pmd_page_dtor(page);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020075 tlb_remove_table(tlb, page);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070076}
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070077
Kirill A. Shutemov98233362015-04-14 15:46:14 -070078#if CONFIG_PGTABLE_LEVELS > 3
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100079void ___pud_free_tlb(struct mmu_gather *tlb, pud_t *pud)
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070080{
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070081 paravirt_release_pud(__pa(pud) >> PAGE_SHIFT);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020082 tlb_remove_table(tlb, virt_to_page(pud));
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070083}
Kirill A. Shutemovb8504052017-03-30 11:07:29 +030084
85#if CONFIG_PGTABLE_LEVELS > 4
86void ___p4d_free_tlb(struct mmu_gather *tlb, p4d_t *p4d)
87{
88 paravirt_release_p4d(__pa(p4d) >> PAGE_SHIFT);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020089 tlb_remove_table(tlb, virt_to_page(p4d));
Kirill A. Shutemovb8504052017-03-30 11:07:29 +030090}
91#endif /* CONFIG_PGTABLE_LEVELS > 4 */
Kirill A. Shutemov98233362015-04-14 15:46:14 -070092#endif /* CONFIG_PGTABLE_LEVELS > 3 */
93#endif /* CONFIG_PGTABLE_LEVELS > 2 */
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070094
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070095static inline void pgd_list_add(pgd_t *pgd)
96{
97 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070098
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070099 list_add(&page->lru, &pgd_list);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700100}
101
102static inline void pgd_list_del(pgd_t *pgd)
103{
104 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700105
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700106 list_del(&page->lru);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700107}
108
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700109#define UNSHARED_PTRS_PER_PGD \
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700110 (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700111
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700112
113static void pgd_set_mm(pgd_t *pgd, struct mm_struct *mm)
114{
115 BUILD_BUG_ON(sizeof(virt_to_page(pgd)->index) < sizeof(mm));
116 virt_to_page(pgd)->index = (pgoff_t)mm;
117}
118
119struct mm_struct *pgd_page_get_mm(struct page *page)
120{
121 return (struct mm_struct *)page->index;
122}
123
124static void pgd_ctor(struct mm_struct *mm, pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700125{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700126 /* If the pgd points to a shared pagetable level (either the
127 ptes in non-PAE, or shared PMD in PAE), then just copy the
128 references from swapper_pg_dir. */
Kirill A. Shutemov98233362015-04-14 15:46:14 -0700129 if (CONFIG_PGTABLE_LEVELS == 2 ||
130 (CONFIG_PGTABLE_LEVELS == 3 && SHARED_KERNEL_PMD) ||
Kirill A. Shutemovb8504052017-03-30 11:07:29 +0300131 CONFIG_PGTABLE_LEVELS >= 4) {
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700132 clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY,
133 swapper_pg_dir + KERNEL_PGD_BOUNDARY,
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700134 KERNEL_PGD_PTRS);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700135 }
136
137 /* list required to sync kernel mapping updates */
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700138 if (!SHARED_KERNEL_PMD) {
139 pgd_set_mm(pgd, mm);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700140 pgd_list_add(pgd);
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700141 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700142}
143
Jan Beulich17b74622008-08-29 12:51:32 +0100144static void pgd_dtor(pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700145{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700146 if (SHARED_KERNEL_PMD)
147 return;
148
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800149 spin_lock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700150 pgd_list_del(pgd);
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800151 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700152}
153
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700154/*
155 * List of all pgd's needed for non-PAE so it can invalidate entries
156 * in both cached and uncached pgd's; not needed for PAE since the
157 * kernel pmd is shared. If PAE were not to share the pmd a similar
158 * tactic would be needed. This is essentially codepath-based locking
159 * against pageattr.c; it is the unique case in which a valid change
160 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
161 * vmalloc faults work because attached pagetables are never freed.
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +0100162 * -- nyc
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700163 */
164
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700165#ifdef CONFIG_X86_PAE
166/*
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700167 * In PAE mode, we need to do a cr3 reload (=tlb flush) when
168 * updating the top-level pagetable entries to guarantee the
169 * processor notices the update. Since this is expensive, and
170 * all 4 top-level entries are used almost immediately in a
171 * new process's life, we just pre-populate them here.
172 *
173 * Also, if we're in a paravirt environment where the kernel pmd is
174 * not shared between pagetables (!SHARED_KERNEL_PMDS), we allocate
175 * and initialize the kernel pmds here.
176 */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400177#define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100178
179void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd)
180{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700181 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100182
183 /* Note: almost everything apart from _PAGE_PRESENT is
184 reserved at the pmd (PDPT) level. */
185 set_pud(pudp, __pud(__pa(pmd) | _PAGE_PRESENT));
186
187 /*
188 * According to Intel App note "TLBs, Paging-Structure Caches,
189 * and Their Invalidation", April 2007, document 317080-001,
190 * section 8.1: in PAE mode we explicitly have to flush the
191 * TLB via cr3 if the top-level pgd is changed...
192 */
Shaohua Li4981d012011-03-16 11:37:29 +0800193 flush_tlb_mm(mm);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100194}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700195#else /* !CONFIG_X86_PAE */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400196
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700197/* No need to prepopulate any pagetable entries in non-PAE modes. */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400198#define PREALLOCATED_PMDS 0
199
200#endif /* CONFIG_X86_PAE */
201
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800202static void free_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700203{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400204 int i;
205
206 for(i = 0; i < PREALLOCATED_PMDS; i++)
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800207 if (pmds[i]) {
208 pgtable_pmd_page_dtor(virt_to_page(pmds[i]));
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400209 free_page((unsigned long)pmds[i]);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800210 mm_dec_nr_pmds(mm);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800211 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700212}
213
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800214static int preallocate_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700215{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400216 int i;
217 bool failed = false;
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700218 gfp_t gfp = PGALLOC_GFP;
219
220 if (mm == &init_mm)
221 gfp &= ~__GFP_ACCOUNT;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400222
223 for(i = 0; i < PREALLOCATED_PMDS; i++) {
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700224 pmd_t *pmd = (pmd_t *)__get_free_page(gfp);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800225 if (!pmd)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400226 failed = true;
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800227 if (pmd && !pgtable_pmd_page_ctor(virt_to_page(pmd))) {
Al Viro2a46eed2013-11-20 22:16:36 +0000228 free_page((unsigned long)pmd);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800229 pmd = NULL;
230 failed = true;
231 }
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800232 if (pmd)
233 mm_inc_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400234 pmds[i] = pmd;
235 }
236
237 if (failed) {
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800238 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400239 return -ENOMEM;
240 }
241
242 return 0;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700243}
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400244
245/*
246 * Mop up any pmd pages which may still be attached to the pgd.
247 * Normally they will be freed by munmap/exit_mmap, but any pmd we
248 * preallocate which never got a corresponding vma will need to be
249 * freed manually.
250 */
251static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp)
252{
253 int i;
254
255 for(i = 0; i < PREALLOCATED_PMDS; i++) {
256 pgd_t pgd = pgdp[i];
257
258 if (pgd_val(pgd) != 0) {
259 pmd_t *pmd = (pmd_t *)pgd_page_vaddr(pgd);
260
261 pgdp[i] = native_make_pgd(0);
262
263 paravirt_release_pmd(pgd_val(pgd) >> PAGE_SHIFT);
264 pmd_free(mm, pmd);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800265 mm_dec_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400266 }
267 }
268}
269
270static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[])
271{
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +0300272 p4d_t *p4d;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400273 pud_t *pud;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400274 int i;
275
Jeremy Fitzhardingecf3e5052008-08-08 13:46:07 -0700276 if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */
277 return;
278
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +0300279 p4d = p4d_offset(pgd, 0);
280 pud = pud_offset(p4d, 0);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400281
Wanpeng Li73b44ff2013-07-08 16:00:17 -0700282 for (i = 0; i < PREALLOCATED_PMDS; i++, pud++) {
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400283 pmd_t *pmd = pmds[i];
284
285 if (i >= KERNEL_PGD_BOUNDARY)
286 memcpy(pmd, (pmd_t *)pgd_page_vaddr(swapper_pg_dir[i]),
287 sizeof(pmd_t) * PTRS_PER_PMD);
288
289 pud_populate(mm, pud, pmd);
290 }
291}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700292
Fenghua Yu1db491f2015-01-15 20:30:01 -0800293/*
294 * Xen paravirt assumes pgd table should be in one page. 64 bit kernel also
295 * assumes that pgd should be in one page.
296 *
297 * But kernel with PAE paging that is not running as a Xen domain
298 * only needs to allocate 32 bytes for pgd instead of one page.
299 */
300#ifdef CONFIG_X86_PAE
301
302#include <linux/slab.h>
303
304#define PGD_SIZE (PTRS_PER_PGD * sizeof(pgd_t))
305#define PGD_ALIGN 32
306
307static struct kmem_cache *pgd_cache;
308
309static int __init pgd_cache_init(void)
310{
311 /*
312 * When PAE kernel is running as a Xen domain, it does not use
313 * shared kernel pmd. And this requires a whole page for pgd.
314 */
315 if (!SHARED_KERNEL_PMD)
316 return 0;
317
318 /*
319 * when PAE kernel is not running as a Xen domain, it uses
320 * shared kernel pmd. Shared kernel pmd does not require a whole
321 * page for pgd. We are able to just allocate a 32-byte for pgd.
322 * During boot time, we create a 32-byte slab for pgd table allocation.
323 */
324 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN,
325 SLAB_PANIC, NULL);
326 if (!pgd_cache)
327 return -ENOMEM;
328
329 return 0;
330}
331core_initcall(pgd_cache_init);
332
333static inline pgd_t *_pgd_alloc(void)
334{
335 /*
336 * If no SHARED_KERNEL_PMD, PAE kernel is running as a Xen domain.
337 * We allocate one page for pgd.
338 */
339 if (!SHARED_KERNEL_PMD)
340 return (pgd_t *)__get_free_page(PGALLOC_GFP);
341
342 /*
343 * Now PAE kernel is not running as a Xen domain. We can allocate
344 * a 32-byte slab for pgd to save memory space.
345 */
346 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP);
347}
348
349static inline void _pgd_free(pgd_t *pgd)
350{
351 if (!SHARED_KERNEL_PMD)
352 free_page((unsigned long)pgd);
353 else
354 kmem_cache_free(pgd_cache, pgd);
355}
356#else
357static inline pgd_t *_pgd_alloc(void)
358{
359 return (pgd_t *)__get_free_page(PGALLOC_GFP);
360}
361
362static inline void _pgd_free(pgd_t *pgd)
363{
364 free_page((unsigned long)pgd);
365}
366#endif /* CONFIG_X86_PAE */
367
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700368pgd_t *pgd_alloc(struct mm_struct *mm)
369{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400370 pgd_t *pgd;
371 pmd_t *pmds[PREALLOCATED_PMDS];
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700372
Fenghua Yu1db491f2015-01-15 20:30:01 -0800373 pgd = _pgd_alloc();
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400374
375 if (pgd == NULL)
376 goto out;
377
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700378 mm->pgd = pgd;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700379
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800380 if (preallocate_pmds(mm, pmds) != 0)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400381 goto out_free_pgd;
382
383 if (paravirt_pgd_alloc(mm) != 0)
384 goto out_free_pmds;
385
386 /*
387 * Make sure that pre-populating the pmds is atomic with
388 * respect to anything walking the pgd_list, so that they
389 * never see a partially populated pgd.
390 */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800391 spin_lock(&pgd_lock);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400392
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700393 pgd_ctor(mm, pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400394 pgd_prepopulate_pmd(mm, pgd, pmds);
395
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800396 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700397
398 return pgd;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400399
400out_free_pmds:
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800401 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400402out_free_pgd:
Fenghua Yu1db491f2015-01-15 20:30:01 -0800403 _pgd_free(pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400404out:
405 return NULL;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700406}
407
408void pgd_free(struct mm_struct *mm, pgd_t *pgd)
409{
410 pgd_mop_up_pmds(mm, pgd);
411 pgd_dtor(pgd);
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400412 paravirt_pgd_free(mm, pgd);
Fenghua Yu1db491f2015-01-15 20:30:01 -0800413 _pgd_free(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700414}
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700415
Rik van Riel0f9a9212012-11-06 09:54:47 +0000416/*
417 * Used to set accessed or dirty bits in the page table entries
418 * on other architectures. On x86, the accessed and dirty bits
419 * are tracked by hardware. However, do_wp_page calls this function
420 * to also make the pte writeable at the same time the dirty bit is
421 * set. In that case we do actually need to write the PTE.
422 */
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700423int ptep_set_access_flags(struct vm_area_struct *vma,
424 unsigned long address, pte_t *ptep,
425 pte_t entry, int dirty)
426{
427 int changed = !pte_same(*ptep, entry);
428
429 if (changed && dirty) {
430 *ptep = entry;
Juergen Grossd6ccc3e2015-11-17 15:51:19 +0100431 pte_update(vma->vm_mm, address, ptep);
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700432 }
433
434 return changed;
435}
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700436
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800437#ifdef CONFIG_TRANSPARENT_HUGEPAGE
438int pmdp_set_access_flags(struct vm_area_struct *vma,
439 unsigned long address, pmd_t *pmdp,
440 pmd_t entry, int dirty)
441{
442 int changed = !pmd_same(*pmdp, entry);
443
444 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
445
446 if (changed && dirty) {
447 *pmdp = entry;
Ingo Molnar5e4bf1a2012-11-20 13:02:51 +0100448 /*
449 * We had a write-protection fault here and changed the pmd
450 * to to more permissive. No need to flush the TLB for that,
451 * #PF is architecturally guaranteed to do that and in the
452 * worst-case we'll generate a spurious fault.
453 */
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800454 }
455
456 return changed;
457}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800458
459int pudp_set_access_flags(struct vm_area_struct *vma, unsigned long address,
460 pud_t *pudp, pud_t entry, int dirty)
461{
462 int changed = !pud_same(*pudp, entry);
463
464 VM_BUG_ON(address & ~HPAGE_PUD_MASK);
465
466 if (changed && dirty) {
467 *pudp = entry;
468 /*
469 * We had a write-protection fault here and changed the pud
470 * to to more permissive. No need to flush the TLB for that,
471 * #PF is architecturally guaranteed to do that and in the
472 * worst-case we'll generate a spurious fault.
473 */
474 }
475
476 return changed;
477}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800478#endif
479
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700480int ptep_test_and_clear_young(struct vm_area_struct *vma,
481 unsigned long addr, pte_t *ptep)
482{
483 int ret = 0;
484
485 if (pte_young(*ptep))
486 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Thomas Gleixner48e23952008-05-24 17:24:34 +0200487 (unsigned long *) &ptep->pte);
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700488
489 if (ret)
490 pte_update(vma->vm_mm, addr, ptep);
491
492 return ret;
493}
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700494
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800495#ifdef CONFIG_TRANSPARENT_HUGEPAGE
496int pmdp_test_and_clear_young(struct vm_area_struct *vma,
497 unsigned long addr, pmd_t *pmdp)
498{
499 int ret = 0;
500
501 if (pmd_young(*pmdp))
502 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Johannes Weinerf2d6bfe2011-01-13 15:47:01 -0800503 (unsigned long *)pmdp);
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800504
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800505 return ret;
506}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800507int pudp_test_and_clear_young(struct vm_area_struct *vma,
508 unsigned long addr, pud_t *pudp)
509{
510 int ret = 0;
511
512 if (pud_young(*pudp))
513 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
514 (unsigned long *)pudp);
515
516 return ret;
517}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800518#endif
519
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700520int ptep_clear_flush_young(struct vm_area_struct *vma,
521 unsigned long address, pte_t *ptep)
522{
Shaohua Lib13b1d22014-04-08 15:58:09 +0800523 /*
524 * On x86 CPUs, clearing the accessed bit without a TLB flush
525 * doesn't cause data corruption. [ It could cause incorrect
526 * page aging and the (mistaken) reclaim of hot pages, but the
527 * chance of that should be relatively low. ]
528 *
529 * So as a performance optimization don't flush the TLB when
530 * clearing the accessed bit, it will eventually be flushed by
531 * a context switch or a VM operation anyway. [ In the rare
532 * event of it not getting flushed for a long time the delay
533 * shouldn't really matter because there's no real memory
534 * pressure for swapout to react to. ]
535 */
536 return ptep_test_and_clear_young(vma, address, ptep);
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700537}
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700538
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800539#ifdef CONFIG_TRANSPARENT_HUGEPAGE
540int pmdp_clear_flush_young(struct vm_area_struct *vma,
541 unsigned long address, pmd_t *pmdp)
542{
543 int young;
544
545 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
546
547 young = pmdp_test_and_clear_young(vma, address, pmdp);
548 if (young)
549 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
550
551 return young;
552}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800553#endif
554
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300555/**
556 * reserve_top_address - reserves a hole in the top of kernel address space
557 * @reserve - size of hole to reserve
558 *
559 * Can be used to relocate the fixmap area and poke a hole in the top
560 * of kernel address space to make room for a hypervisor.
561 */
562void __init reserve_top_address(unsigned long reserve)
563{
564#ifdef CONFIG_X86_32
565 BUG_ON(fixmaps_set > 0);
Andy Lutomirski73159fd2014-05-05 12:19:31 -0700566 __FIXADDR_TOP = round_down(-reserve, 1 << PMD_SHIFT) - PAGE_SIZE;
567 printk(KERN_INFO "Reserving virtual address space above 0x%08lx (rounded to 0x%08lx)\n",
568 -reserve, __FIXADDR_TOP + PAGE_SIZE);
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300569#endif
570}
571
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700572int fixmaps_set;
573
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700574void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700575{
576 unsigned long address = __fix_to_virt(idx);
577
578 if (idx >= __end_of_fixed_addresses) {
579 BUG();
580 return;
581 }
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700582 set_pte_vaddr(address, pte);
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700583 fixmaps_set++;
584}
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700585
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700586void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys,
587 pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700588{
589 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
590}
Toshi Kani6b637832015-04-14 15:47:32 -0700591
592#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
Kirill A. Shutemovb8504052017-03-30 11:07:29 +0300593#ifdef CONFIG_X86_5LEVEL
594/**
595 * p4d_set_huge - setup kernel P4D mapping
596 *
597 * No 512GB pages yet -- always return 0
598 */
599int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot)
600{
601 return 0;
602}
603
604/**
605 * p4d_clear_huge - clear kernel P4D mapping when it is set
606 *
607 * No 512GB pages yet -- always return 0
608 */
609int p4d_clear_huge(p4d_t *p4d)
610{
611 return 0;
612}
613#endif
614
Toshi Kani3d3ca412015-05-26 10:28:07 +0200615/**
616 * pud_set_huge - setup kernel PUD mapping
617 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200618 * MTRRs can override PAT memory types with 4KiB granularity. Therefore, this
619 * function sets up a huge page only if any of the following conditions are met:
620 *
621 * - MTRRs are disabled, or
622 *
623 * - MTRRs are enabled and the range is completely covered by a single MTRR, or
624 *
625 * - MTRRs are enabled and the corresponding MTRR memory type is WB, which
626 * has no effect on the requested PAT memory type.
627 *
628 * Callers should try to decrease page size (1GB -> 2MB -> 4K) if the bigger
629 * page mapping attempt fails.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200630 *
631 * Returns 1 on success and 0 on failure.
632 */
Toshi Kani6b637832015-04-14 15:47:32 -0700633int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
634{
Toshi Kanib73522e2015-05-26 10:28:10 +0200635 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700636
Toshi Kanib73522e2015-05-26 10:28:10 +0200637 mtrr = mtrr_type_lookup(addr, addr + PUD_SIZE, &uniform);
638 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
639 (mtrr != MTRR_TYPE_WRBACK))
Toshi Kani6b637832015-04-14 15:47:32 -0700640 return 0;
641
642 prot = pgprot_4k_2_large(prot);
643
644 set_pte((pte_t *)pud, pfn_pte(
645 (u64)addr >> PAGE_SHIFT,
646 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
647
648 return 1;
649}
650
Toshi Kani3d3ca412015-05-26 10:28:07 +0200651/**
652 * pmd_set_huge - setup kernel PMD mapping
653 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200654 * See text over pud_set_huge() above.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200655 *
656 * Returns 1 on success and 0 on failure.
657 */
Toshi Kani6b637832015-04-14 15:47:32 -0700658int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
659{
Toshi Kanib73522e2015-05-26 10:28:10 +0200660 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700661
Toshi Kanib73522e2015-05-26 10:28:10 +0200662 mtrr = mtrr_type_lookup(addr, addr + PMD_SIZE, &uniform);
663 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
664 (mtrr != MTRR_TYPE_WRBACK)) {
665 pr_warn_once("%s: Cannot satisfy [mem %#010llx-%#010llx] with a huge-page mapping due to MTRR override.\n",
666 __func__, addr, addr + PMD_SIZE);
Toshi Kani6b637832015-04-14 15:47:32 -0700667 return 0;
Toshi Kanib73522e2015-05-26 10:28:10 +0200668 }
Toshi Kani6b637832015-04-14 15:47:32 -0700669
670 prot = pgprot_4k_2_large(prot);
671
672 set_pte((pte_t *)pmd, pfn_pte(
673 (u64)addr >> PAGE_SHIFT,
674 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
675
676 return 1;
677}
678
Toshi Kani3d3ca412015-05-26 10:28:07 +0200679/**
680 * pud_clear_huge - clear kernel PUD mapping when it is set
681 *
682 * Returns 1 on success and 0 on failure (no PUD map is found).
683 */
Toshi Kani6b637832015-04-14 15:47:32 -0700684int pud_clear_huge(pud_t *pud)
685{
686 if (pud_large(*pud)) {
687 pud_clear(pud);
688 return 1;
689 }
690
691 return 0;
692}
693
Toshi Kani3d3ca412015-05-26 10:28:07 +0200694/**
695 * pmd_clear_huge - clear kernel PMD mapping when it is set
696 *
697 * Returns 1 on success and 0 on failure (no PMD map is found).
698 */
Toshi Kani6b637832015-04-14 15:47:32 -0700699int pmd_clear_huge(pmd_t *pmd)
700{
701 if (pmd_large(*pmd)) {
702 pmd_clear(pmd);
703 return 1;
704 }
705
706 return 0;
707}
708#endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */