blob: b372f3442bbf3b5cff5782001e5c79b46d49edc6 [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
Juergen Gross87930012017-09-04 12:25:27 +0200429 if (changed && dirty)
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700430 *ptep = entry;
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700431
432 return changed;
433}
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700434
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800435#ifdef CONFIG_TRANSPARENT_HUGEPAGE
436int pmdp_set_access_flags(struct vm_area_struct *vma,
437 unsigned long address, pmd_t *pmdp,
438 pmd_t entry, int dirty)
439{
440 int changed = !pmd_same(*pmdp, entry);
441
442 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
443
444 if (changed && dirty) {
445 *pmdp = entry;
Ingo Molnar5e4bf1a2012-11-20 13:02:51 +0100446 /*
447 * We had a write-protection fault here and changed the pmd
448 * to to more permissive. No need to flush the TLB for that,
449 * #PF is architecturally guaranteed to do that and in the
450 * worst-case we'll generate a spurious fault.
451 */
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800452 }
453
454 return changed;
455}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800456
457int pudp_set_access_flags(struct vm_area_struct *vma, unsigned long address,
458 pud_t *pudp, pud_t entry, int dirty)
459{
460 int changed = !pud_same(*pudp, entry);
461
462 VM_BUG_ON(address & ~HPAGE_PUD_MASK);
463
464 if (changed && dirty) {
465 *pudp = entry;
466 /*
467 * We had a write-protection fault here and changed the pud
468 * to to more permissive. No need to flush the TLB for that,
469 * #PF is architecturally guaranteed to do that and in the
470 * worst-case we'll generate a spurious fault.
471 */
472 }
473
474 return changed;
475}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800476#endif
477
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700478int ptep_test_and_clear_young(struct vm_area_struct *vma,
479 unsigned long addr, pte_t *ptep)
480{
481 int ret = 0;
482
483 if (pte_young(*ptep))
484 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Thomas Gleixner48e23952008-05-24 17:24:34 +0200485 (unsigned long *) &ptep->pte);
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700486
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700487 return ret;
488}
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700489
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800490#ifdef CONFIG_TRANSPARENT_HUGEPAGE
491int pmdp_test_and_clear_young(struct vm_area_struct *vma,
492 unsigned long addr, pmd_t *pmdp)
493{
494 int ret = 0;
495
496 if (pmd_young(*pmdp))
497 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Johannes Weinerf2d6bfe2011-01-13 15:47:01 -0800498 (unsigned long *)pmdp);
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800499
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800500 return ret;
501}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800502int pudp_test_and_clear_young(struct vm_area_struct *vma,
503 unsigned long addr, pud_t *pudp)
504{
505 int ret = 0;
506
507 if (pud_young(*pudp))
508 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
509 (unsigned long *)pudp);
510
511 return ret;
512}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800513#endif
514
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700515int ptep_clear_flush_young(struct vm_area_struct *vma,
516 unsigned long address, pte_t *ptep)
517{
Shaohua Lib13b1d22014-04-08 15:58:09 +0800518 /*
519 * On x86 CPUs, clearing the accessed bit without a TLB flush
520 * doesn't cause data corruption. [ It could cause incorrect
521 * page aging and the (mistaken) reclaim of hot pages, but the
522 * chance of that should be relatively low. ]
523 *
524 * So as a performance optimization don't flush the TLB when
525 * clearing the accessed bit, it will eventually be flushed by
526 * a context switch or a VM operation anyway. [ In the rare
527 * event of it not getting flushed for a long time the delay
528 * shouldn't really matter because there's no real memory
529 * pressure for swapout to react to. ]
530 */
531 return ptep_test_and_clear_young(vma, address, ptep);
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700532}
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700533
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800534#ifdef CONFIG_TRANSPARENT_HUGEPAGE
535int pmdp_clear_flush_young(struct vm_area_struct *vma,
536 unsigned long address, pmd_t *pmdp)
537{
538 int young;
539
540 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
541
542 young = pmdp_test_and_clear_young(vma, address, pmdp);
543 if (young)
544 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
545
546 return young;
547}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800548#endif
549
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300550/**
551 * reserve_top_address - reserves a hole in the top of kernel address space
552 * @reserve - size of hole to reserve
553 *
554 * Can be used to relocate the fixmap area and poke a hole in the top
555 * of kernel address space to make room for a hypervisor.
556 */
557void __init reserve_top_address(unsigned long reserve)
558{
559#ifdef CONFIG_X86_32
560 BUG_ON(fixmaps_set > 0);
Andy Lutomirski73159fd2014-05-05 12:19:31 -0700561 __FIXADDR_TOP = round_down(-reserve, 1 << PMD_SHIFT) - PAGE_SIZE;
562 printk(KERN_INFO "Reserving virtual address space above 0x%08lx (rounded to 0x%08lx)\n",
563 -reserve, __FIXADDR_TOP + PAGE_SIZE);
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300564#endif
565}
566
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700567int fixmaps_set;
568
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700569void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700570{
571 unsigned long address = __fix_to_virt(idx);
572
573 if (idx >= __end_of_fixed_addresses) {
574 BUG();
575 return;
576 }
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700577 set_pte_vaddr(address, pte);
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700578 fixmaps_set++;
579}
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700580
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700581void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys,
582 pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700583{
584 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
585}
Toshi Kani6b637832015-04-14 15:47:32 -0700586
587#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
Kirill A. Shutemovb8504052017-03-30 11:07:29 +0300588#ifdef CONFIG_X86_5LEVEL
589/**
590 * p4d_set_huge - setup kernel P4D mapping
591 *
592 * No 512GB pages yet -- always return 0
593 */
594int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot)
595{
596 return 0;
597}
598
599/**
600 * p4d_clear_huge - clear kernel P4D mapping when it is set
601 *
602 * No 512GB pages yet -- always return 0
603 */
604int p4d_clear_huge(p4d_t *p4d)
605{
606 return 0;
607}
608#endif
609
Toshi Kani3d3ca412015-05-26 10:28:07 +0200610/**
611 * pud_set_huge - setup kernel PUD mapping
612 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200613 * MTRRs can override PAT memory types with 4KiB granularity. Therefore, this
614 * function sets up a huge page only if any of the following conditions are met:
615 *
616 * - MTRRs are disabled, or
617 *
618 * - MTRRs are enabled and the range is completely covered by a single MTRR, or
619 *
620 * - MTRRs are enabled and the corresponding MTRR memory type is WB, which
621 * has no effect on the requested PAT memory type.
622 *
623 * Callers should try to decrease page size (1GB -> 2MB -> 4K) if the bigger
624 * page mapping attempt fails.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200625 *
626 * Returns 1 on success and 0 on failure.
627 */
Toshi Kani6b637832015-04-14 15:47:32 -0700628int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
629{
Toshi Kanib73522e2015-05-26 10:28:10 +0200630 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700631
Toshi Kanib73522e2015-05-26 10:28:10 +0200632 mtrr = mtrr_type_lookup(addr, addr + PUD_SIZE, &uniform);
633 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
634 (mtrr != MTRR_TYPE_WRBACK))
Toshi Kani6b637832015-04-14 15:47:32 -0700635 return 0;
636
637 prot = pgprot_4k_2_large(prot);
638
639 set_pte((pte_t *)pud, pfn_pte(
640 (u64)addr >> PAGE_SHIFT,
641 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
642
643 return 1;
644}
645
Toshi Kani3d3ca412015-05-26 10:28:07 +0200646/**
647 * pmd_set_huge - setup kernel PMD mapping
648 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200649 * See text over pud_set_huge() above.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200650 *
651 * Returns 1 on success and 0 on failure.
652 */
Toshi Kani6b637832015-04-14 15:47:32 -0700653int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
654{
Toshi Kanib73522e2015-05-26 10:28:10 +0200655 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700656
Toshi Kanib73522e2015-05-26 10:28:10 +0200657 mtrr = mtrr_type_lookup(addr, addr + PMD_SIZE, &uniform);
658 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
659 (mtrr != MTRR_TYPE_WRBACK)) {
660 pr_warn_once("%s: Cannot satisfy [mem %#010llx-%#010llx] with a huge-page mapping due to MTRR override.\n",
661 __func__, addr, addr + PMD_SIZE);
Toshi Kani6b637832015-04-14 15:47:32 -0700662 return 0;
Toshi Kanib73522e2015-05-26 10:28:10 +0200663 }
Toshi Kani6b637832015-04-14 15:47:32 -0700664
665 prot = pgprot_4k_2_large(prot);
666
667 set_pte((pte_t *)pmd, pfn_pte(
668 (u64)addr >> PAGE_SHIFT,
669 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
670
671 return 1;
672}
673
Toshi Kani3d3ca412015-05-26 10:28:07 +0200674/**
675 * pud_clear_huge - clear kernel PUD mapping when it is set
676 *
677 * Returns 1 on success and 0 on failure (no PUD map is found).
678 */
Toshi Kani6b637832015-04-14 15:47:32 -0700679int pud_clear_huge(pud_t *pud)
680{
681 if (pud_large(*pud)) {
682 pud_clear(pud);
683 return 1;
684 }
685
686 return 0;
687}
688
Toshi Kani3d3ca412015-05-26 10:28:07 +0200689/**
690 * pmd_clear_huge - clear kernel PMD mapping when it is set
691 *
692 * Returns 1 on success and 0 on failure (no PMD map is found).
693 */
Toshi Kani6b637832015-04-14 15:47:32 -0700694int pmd_clear_huge(pmd_t *pmd)
695{
696 if (pmd_large(*pmd)) {
697 pmd_clear(pmd);
698 return 1;
699 }
700
701 return 0;
702}
703#endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */