blob: 96d456a94b0342eb967f918e4233498ac24e4349 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07002#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/gfp.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07004#include <asm/pgalloc.h>
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -07005#include <asm/pgtable.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07006#include <asm/tlb.h>
Ingo Molnara1d5a862008-06-20 15:34:46 +02007#include <asm/fixmap.h>
Toshi Kani6b637832015-04-14 15:47:32 -07008#include <asm/mtrr.h>
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07009
Levin, Alexander (Sasha Levin)75f296d2017-11-15 17:35:54 -080010#define PGALLOC_GFP (GFP_KERNEL_ACCOUNT | __GFP_ZERO)
Vegard Nossum9e730232009-02-22 11:28:25 +010011
Ian Campbell14315592010-02-17 10:38:10 +000012#ifdef CONFIG_HIGHPTE
13#define PGALLOC_USER_GFP __GFP_HIGHMEM
14#else
15#define PGALLOC_USER_GFP 0
16#endif
17
18gfp_t __userpte_alloc_gfp = PGALLOC_GFP | PGALLOC_USER_GFP;
19
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070020pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
21{
Vladimir Davydov3e79ec72016-07-26 15:24:30 -070022 return (pte_t *)__get_free_page(PGALLOC_GFP & ~__GFP_ACCOUNT);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070023}
24
25pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
26{
27 struct page *pte;
28
Ian Campbell14315592010-02-17 10:38:10 +000029 pte = alloc_pages(__userpte_alloc_gfp, 0);
Kirill A. Shutemovcecbd1b2013-11-14 14:31:47 -080030 if (!pte)
31 return NULL;
32 if (!pgtable_page_ctor(pte)) {
33 __free_page(pte);
34 return NULL;
35 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070036 return pte;
37}
38
Ian Campbell14315592010-02-17 10:38:10 +000039static int __init setup_userpte(char *arg)
40{
41 if (!arg)
42 return -EINVAL;
43
44 /*
45 * "userpte=nohigh" disables allocation of user pagetables in
46 * high memory.
47 */
48 if (strcmp(arg, "nohigh") == 0)
49 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
50 else
51 return -EINVAL;
52 return 0;
53}
54early_param("userpte", setup_userpte);
55
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100056void ___pte_free_tlb(struct mmu_gather *tlb, struct page *pte)
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070057{
58 pgtable_page_dtor(pte);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070059 paravirt_release_pte(page_to_pfn(pte));
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020060 tlb_remove_table(tlb, pte);
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070061}
62
Kirill A. Shutemov98233362015-04-14 15:46:14 -070063#if CONFIG_PGTABLE_LEVELS > 2
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100064void ___pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd)
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070065{
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080066 struct page *page = virt_to_page(pmd);
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070067 paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT);
Dave Hansen1de14c32013-04-12 16:23:54 -070068 /*
69 * NOTE! For PAE, any changes to the top page-directory-pointer-table
70 * entries need a full cr3 reload to flush.
71 */
72#ifdef CONFIG_X86_PAE
73 tlb->need_flush_all = 1;
74#endif
Kirill A. Shutemovc2836102013-11-21 14:32:09 -080075 pgtable_pmd_page_dtor(page);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020076 tlb_remove_table(tlb, page);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070077}
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070078
Kirill A. Shutemov98233362015-04-14 15:46:14 -070079#if CONFIG_PGTABLE_LEVELS > 3
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +100080void ___pud_free_tlb(struct mmu_gather *tlb, pud_t *pud)
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070081{
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070082 paravirt_release_pud(__pa(pud) >> PAGE_SHIFT);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020083 tlb_remove_table(tlb, virt_to_page(pud));
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070084}
Kirill A. Shutemovb8504052017-03-30 11:07:29 +030085
86#if CONFIG_PGTABLE_LEVELS > 4
87void ___p4d_free_tlb(struct mmu_gather *tlb, p4d_t *p4d)
88{
89 paravirt_release_p4d(__pa(p4d) >> PAGE_SHIFT);
Vitaly Kuznetsov9e52fc22017-08-28 10:22:51 +020090 tlb_remove_table(tlb, virt_to_page(p4d));
Kirill A. Shutemovb8504052017-03-30 11:07:29 +030091}
92#endif /* CONFIG_PGTABLE_LEVELS > 4 */
Kirill A. Shutemov98233362015-04-14 15:46:14 -070093#endif /* CONFIG_PGTABLE_LEVELS > 3 */
94#endif /* CONFIG_PGTABLE_LEVELS > 2 */
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070095
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070096static inline void pgd_list_add(pgd_t *pgd)
97{
98 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070099
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700100 list_add(&page->lru, &pgd_list);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700101}
102
103static inline void pgd_list_del(pgd_t *pgd)
104{
105 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700106
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700107 list_del(&page->lru);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700108}
109
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700110#define UNSHARED_PTRS_PER_PGD \
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700111 (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700112
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700113
114static void pgd_set_mm(pgd_t *pgd, struct mm_struct *mm)
115{
116 BUILD_BUG_ON(sizeof(virt_to_page(pgd)->index) < sizeof(mm));
117 virt_to_page(pgd)->index = (pgoff_t)mm;
118}
119
120struct mm_struct *pgd_page_get_mm(struct page *page)
121{
122 return (struct mm_struct *)page->index;
123}
124
125static void pgd_ctor(struct mm_struct *mm, pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700126{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700127 /* If the pgd points to a shared pagetable level (either the
128 ptes in non-PAE, or shared PMD in PAE), then just copy the
129 references from swapper_pg_dir. */
Kirill A. Shutemov98233362015-04-14 15:46:14 -0700130 if (CONFIG_PGTABLE_LEVELS == 2 ||
131 (CONFIG_PGTABLE_LEVELS == 3 && SHARED_KERNEL_PMD) ||
Kirill A. Shutemovb8504052017-03-30 11:07:29 +0300132 CONFIG_PGTABLE_LEVELS >= 4) {
Jeremy Fitzhardinge68db0652008-03-17 16:37:13 -0700133 clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY,
134 swapper_pg_dir + KERNEL_PGD_BOUNDARY,
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700135 KERNEL_PGD_PTRS);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700136 }
137
138 /* list required to sync kernel mapping updates */
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700139 if (!SHARED_KERNEL_PMD) {
140 pgd_set_mm(pgd, mm);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700141 pgd_list_add(pgd);
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700142 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700143}
144
Jan Beulich17b74622008-08-29 12:51:32 +0100145static void pgd_dtor(pgd_t *pgd)
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700146{
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700147 if (SHARED_KERNEL_PMD)
148 return;
149
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800150 spin_lock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700151 pgd_list_del(pgd);
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800152 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700153}
154
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700155/*
156 * List of all pgd's needed for non-PAE so it can invalidate entries
157 * in both cached and uncached pgd's; not needed for PAE since the
158 * kernel pmd is shared. If PAE were not to share the pmd a similar
159 * tactic would be needed. This is essentially codepath-based locking
160 * against pageattr.c; it is the unique case in which a valid change
161 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
162 * vmalloc faults work because attached pagetables are never freed.
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +0100163 * -- nyc
Jeremy Fitzhardinge85958b42008-03-17 16:37:14 -0700164 */
165
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700166#ifdef CONFIG_X86_PAE
167/*
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700168 * In PAE mode, we need to do a cr3 reload (=tlb flush) when
169 * updating the top-level pagetable entries to guarantee the
170 * processor notices the update. Since this is expensive, and
171 * all 4 top-level entries are used almost immediately in a
172 * new process's life, we just pre-populate them here.
173 *
174 * Also, if we're in a paravirt environment where the kernel pmd is
175 * not shared between pagetables (!SHARED_KERNEL_PMDS), we allocate
176 * and initialize the kernel pmds here.
177 */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400178#define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100179
180void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd)
181{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700182 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100183
184 /* Note: almost everything apart from _PAGE_PRESENT is
185 reserved at the pmd (PDPT) level. */
186 set_pud(pudp, __pud(__pa(pmd) | _PAGE_PRESENT));
187
188 /*
189 * According to Intel App note "TLBs, Paging-Structure Caches,
190 * and Their Invalidation", April 2007, document 317080-001,
191 * section 8.1: in PAE mode we explicitly have to flush the
192 * TLB via cr3 if the top-level pgd is changed...
193 */
Shaohua Li4981d012011-03-16 11:37:29 +0800194 flush_tlb_mm(mm);
Ingo Molnar1ec1fe72008-03-19 20:30:40 +0100195}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700196#else /* !CONFIG_X86_PAE */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400197
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700198/* No need to prepopulate any pagetable entries in non-PAE modes. */
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400199#define PREALLOCATED_PMDS 0
200
201#endif /* CONFIG_X86_PAE */
202
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800203static void free_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700204{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400205 int i;
206
207 for(i = 0; i < PREALLOCATED_PMDS; i++)
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800208 if (pmds[i]) {
209 pgtable_pmd_page_dtor(virt_to_page(pmds[i]));
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400210 free_page((unsigned long)pmds[i]);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800211 mm_dec_nr_pmds(mm);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800212 }
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700213}
214
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800215static int preallocate_pmds(struct mm_struct *mm, pmd_t *pmds[])
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700216{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400217 int i;
218 bool failed = false;
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700219 gfp_t gfp = PGALLOC_GFP;
220
221 if (mm == &init_mm)
222 gfp &= ~__GFP_ACCOUNT;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400223
224 for(i = 0; i < PREALLOCATED_PMDS; i++) {
Vladimir Davydov3e79ec72016-07-26 15:24:30 -0700225 pmd_t *pmd = (pmd_t *)__get_free_page(gfp);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800226 if (!pmd)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400227 failed = true;
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800228 if (pmd && !pgtable_pmd_page_ctor(virt_to_page(pmd))) {
Al Viro2a46eed2013-11-20 22:16:36 +0000229 free_page((unsigned long)pmd);
Kirill A. Shutemov09ef4932013-11-14 14:31:13 -0800230 pmd = NULL;
231 failed = true;
232 }
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800233 if (pmd)
234 mm_inc_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400235 pmds[i] = pmd;
236 }
237
238 if (failed) {
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800239 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400240 return -ENOMEM;
241 }
242
243 return 0;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700244}
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400245
246/*
247 * Mop up any pmd pages which may still be attached to the pgd.
248 * Normally they will be freed by munmap/exit_mmap, but any pmd we
249 * preallocate which never got a corresponding vma will need to be
250 * freed manually.
251 */
252static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp)
253{
254 int i;
255
256 for(i = 0; i < PREALLOCATED_PMDS; i++) {
257 pgd_t pgd = pgdp[i];
258
259 if (pgd_val(pgd) != 0) {
260 pmd_t *pmd = (pmd_t *)pgd_page_vaddr(pgd);
261
262 pgdp[i] = native_make_pgd(0);
263
264 paravirt_release_pmd(pgd_val(pgd) >> PAGE_SHIFT);
265 pmd_free(mm, pmd);
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800266 mm_dec_nr_pmds(mm);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400267 }
268 }
269}
270
271static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[])
272{
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +0300273 p4d_t *p4d;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400274 pud_t *pud;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400275 int i;
276
Jeremy Fitzhardingecf3e5052008-08-08 13:46:07 -0700277 if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */
278 return;
279
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +0300280 p4d = p4d_offset(pgd, 0);
281 pud = pud_offset(p4d, 0);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400282
Wanpeng Li73b44ff2013-07-08 16:00:17 -0700283 for (i = 0; i < PREALLOCATED_PMDS; i++, pud++) {
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400284 pmd_t *pmd = pmds[i];
285
286 if (i >= KERNEL_PGD_BOUNDARY)
287 memcpy(pmd, (pmd_t *)pgd_page_vaddr(swapper_pg_dir[i]),
288 sizeof(pmd_t) * PTRS_PER_PMD);
289
290 pud_populate(mm, pud, pmd);
291 }
292}
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700293
Fenghua Yu1db491f2015-01-15 20:30:01 -0800294/*
295 * Xen paravirt assumes pgd table should be in one page. 64 bit kernel also
296 * assumes that pgd should be in one page.
297 *
298 * But kernel with PAE paging that is not running as a Xen domain
299 * only needs to allocate 32 bytes for pgd instead of one page.
300 */
301#ifdef CONFIG_X86_PAE
302
303#include <linux/slab.h>
304
305#define PGD_SIZE (PTRS_PER_PGD * sizeof(pgd_t))
306#define PGD_ALIGN 32
307
308static struct kmem_cache *pgd_cache;
309
310static int __init pgd_cache_init(void)
311{
312 /*
313 * When PAE kernel is running as a Xen domain, it does not use
314 * shared kernel pmd. And this requires a whole page for pgd.
315 */
316 if (!SHARED_KERNEL_PMD)
317 return 0;
318
319 /*
320 * when PAE kernel is not running as a Xen domain, it uses
321 * shared kernel pmd. Shared kernel pmd does not require a whole
322 * page for pgd. We are able to just allocate a 32-byte for pgd.
323 * During boot time, we create a 32-byte slab for pgd table allocation.
324 */
325 pgd_cache = kmem_cache_create("pgd_cache", PGD_SIZE, PGD_ALIGN,
326 SLAB_PANIC, NULL);
327 if (!pgd_cache)
328 return -ENOMEM;
329
330 return 0;
331}
332core_initcall(pgd_cache_init);
333
334static inline pgd_t *_pgd_alloc(void)
335{
336 /*
337 * If no SHARED_KERNEL_PMD, PAE kernel is running as a Xen domain.
338 * We allocate one page for pgd.
339 */
340 if (!SHARED_KERNEL_PMD)
341 return (pgd_t *)__get_free_page(PGALLOC_GFP);
342
343 /*
344 * Now PAE kernel is not running as a Xen domain. We can allocate
345 * a 32-byte slab for pgd to save memory space.
346 */
347 return kmem_cache_alloc(pgd_cache, PGALLOC_GFP);
348}
349
350static inline void _pgd_free(pgd_t *pgd)
351{
352 if (!SHARED_KERNEL_PMD)
353 free_page((unsigned long)pgd);
354 else
355 kmem_cache_free(pgd_cache, pgd);
356}
357#else
358static inline pgd_t *_pgd_alloc(void)
359{
360 return (pgd_t *)__get_free_page(PGALLOC_GFP);
361}
362
363static inline void _pgd_free(pgd_t *pgd)
364{
365 free_page((unsigned long)pgd);
366}
367#endif /* CONFIG_X86_PAE */
368
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700369pgd_t *pgd_alloc(struct mm_struct *mm)
370{
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400371 pgd_t *pgd;
372 pmd_t *pmds[PREALLOCATED_PMDS];
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700373
Fenghua Yu1db491f2015-01-15 20:30:01 -0800374 pgd = _pgd_alloc();
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400375
376 if (pgd == NULL)
377 goto out;
378
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700379 mm->pgd = pgd;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700380
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800381 if (preallocate_pmds(mm, pmds) != 0)
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400382 goto out_free_pgd;
383
384 if (paravirt_pgd_alloc(mm) != 0)
385 goto out_free_pmds;
386
387 /*
388 * Make sure that pre-populating the pmds is atomic with
389 * respect to anything walking the pgd_list, so that they
390 * never see a partially populated pgd.
391 */
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800392 spin_lock(&pgd_lock);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400393
Jeremy Fitzhardinge617d34d2010-09-21 12:01:51 -0700394 pgd_ctor(mm, pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400395 pgd_prepopulate_pmd(mm, pgd, pmds);
396
Andrea Arcangelia79e53d2011-02-16 15:45:22 -0800397 spin_unlock(&pgd_lock);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700398
399 return pgd;
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400400
401out_free_pmds:
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800402 free_pmds(mm, pmds);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400403out_free_pgd:
Fenghua Yu1db491f2015-01-15 20:30:01 -0800404 _pgd_free(pgd);
Jeremy Fitzhardinged8d59002008-06-25 00:19:13 -0400405out:
406 return NULL;
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700407}
408
409void pgd_free(struct mm_struct *mm, pgd_t *pgd)
410{
411 pgd_mop_up_pmds(mm, pgd);
412 pgd_dtor(pgd);
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -0400413 paravirt_pgd_free(mm, pgd);
Fenghua Yu1db491f2015-01-15 20:30:01 -0800414 _pgd_free(pgd);
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700415}
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700416
Rik van Riel0f9a9212012-11-06 09:54:47 +0000417/*
418 * Used to set accessed or dirty bits in the page table entries
419 * on other architectures. On x86, the accessed and dirty bits
420 * are tracked by hardware. However, do_wp_page calls this function
421 * to also make the pte writeable at the same time the dirty bit is
422 * set. In that case we do actually need to write the PTE.
423 */
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700424int ptep_set_access_flags(struct vm_area_struct *vma,
425 unsigned long address, pte_t *ptep,
426 pte_t entry, int dirty)
427{
428 int changed = !pte_same(*ptep, entry);
429
Juergen Gross87930012017-09-04 12:25:27 +0200430 if (changed && dirty)
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700431 *ptep = entry;
Jeremy Fitzhardingeee5aa8d2008-03-17 16:37:03 -0700432
433 return changed;
434}
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700435
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800436#ifdef CONFIG_TRANSPARENT_HUGEPAGE
437int pmdp_set_access_flags(struct vm_area_struct *vma,
438 unsigned long address, pmd_t *pmdp,
439 pmd_t entry, int dirty)
440{
441 int changed = !pmd_same(*pmdp, entry);
442
443 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
444
445 if (changed && dirty) {
446 *pmdp = entry;
Ingo Molnar5e4bf1a2012-11-20 13:02:51 +0100447 /*
448 * We had a write-protection fault here and changed the pmd
449 * to to more permissive. No need to flush the TLB for that,
450 * #PF is architecturally guaranteed to do that and in the
451 * worst-case we'll generate a spurious fault.
452 */
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800453 }
454
455 return changed;
456}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800457
458int pudp_set_access_flags(struct vm_area_struct *vma, unsigned long address,
459 pud_t *pudp, pud_t entry, int dirty)
460{
461 int changed = !pud_same(*pudp, entry);
462
463 VM_BUG_ON(address & ~HPAGE_PUD_MASK);
464
465 if (changed && dirty) {
466 *pudp = entry;
467 /*
468 * We had a write-protection fault here and changed the pud
469 * to to more permissive. No need to flush the TLB for that,
470 * #PF is architecturally guaranteed to do that and in the
471 * worst-case we'll generate a spurious fault.
472 */
473 }
474
475 return changed;
476}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800477#endif
478
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700479int ptep_test_and_clear_young(struct vm_area_struct *vma,
480 unsigned long addr, pte_t *ptep)
481{
482 int ret = 0;
483
484 if (pte_young(*ptep))
485 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Thomas Gleixner48e23952008-05-24 17:24:34 +0200486 (unsigned long *) &ptep->pte);
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700487
Jeremy Fitzhardingef9fbf1a2008-03-17 16:37:04 -0700488 return ret;
489}
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700490
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800491#ifdef CONFIG_TRANSPARENT_HUGEPAGE
492int pmdp_test_and_clear_young(struct vm_area_struct *vma,
493 unsigned long addr, pmd_t *pmdp)
494{
495 int ret = 0;
496
497 if (pmd_young(*pmdp))
498 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
Johannes Weinerf2d6bfe2011-01-13 15:47:01 -0800499 (unsigned long *)pmdp);
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800500
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800501 return ret;
502}
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800503int pudp_test_and_clear_young(struct vm_area_struct *vma,
504 unsigned long addr, pud_t *pudp)
505{
506 int ret = 0;
507
508 if (pud_young(*pudp))
509 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
510 (unsigned long *)pudp);
511
512 return ret;
513}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800514#endif
515
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700516int ptep_clear_flush_young(struct vm_area_struct *vma,
517 unsigned long address, pte_t *ptep)
518{
Shaohua Lib13b1d22014-04-08 15:58:09 +0800519 /*
520 * On x86 CPUs, clearing the accessed bit without a TLB flush
521 * doesn't cause data corruption. [ It could cause incorrect
522 * page aging and the (mistaken) reclaim of hot pages, but the
523 * chance of that should be relatively low. ]
524 *
525 * So as a performance optimization don't flush the TLB when
526 * clearing the accessed bit, it will eventually be flushed by
527 * a context switch or a VM operation anyway. [ In the rare
528 * event of it not getting flushed for a long time the delay
529 * shouldn't really matter because there's no real memory
530 * pressure for swapout to react to. ]
531 */
532 return ptep_test_and_clear_young(vma, address, ptep);
Jeremy Fitzhardingec20311e2008-03-17 16:37:05 -0700533}
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700534
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800535#ifdef CONFIG_TRANSPARENT_HUGEPAGE
536int pmdp_clear_flush_young(struct vm_area_struct *vma,
537 unsigned long address, pmd_t *pmdp)
538{
539 int young;
540
541 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
542
543 young = pmdp_test_and_clear_young(vma, address, pmdp);
544 if (young)
545 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
546
547 return young;
548}
Andrea Arcangelidb3eb96f2011-01-13 15:46:41 -0800549#endif
550
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300551/**
552 * reserve_top_address - reserves a hole in the top of kernel address space
553 * @reserve - size of hole to reserve
554 *
555 * Can be used to relocate the fixmap area and poke a hole in the top
556 * of kernel address space to make room for a hypervisor.
557 */
558void __init reserve_top_address(unsigned long reserve)
559{
560#ifdef CONFIG_X86_32
561 BUG_ON(fixmaps_set > 0);
Andy Lutomirski73159fd2014-05-05 12:19:31 -0700562 __FIXADDR_TOP = round_down(-reserve, 1 << PMD_SHIFT) - PAGE_SIZE;
563 printk(KERN_INFO "Reserving virtual address space above 0x%08lx (rounded to 0x%08lx)\n",
564 -reserve, __FIXADDR_TOP + PAGE_SIZE);
Gustavo F. Padovanfd862dd2009-02-15 21:48:54 -0300565#endif
566}
567
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700568int fixmaps_set;
569
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700570void __native_set_fixmap(enum fixed_addresses idx, pte_t pte)
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700571{
572 unsigned long address = __fix_to_virt(idx);
573
574 if (idx >= __end_of_fixed_addresses) {
575 BUG();
576 return;
577 }
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700578 set_pte_vaddr(address, pte);
Jeremy Fitzhardinge7c7e6e02008-06-17 11:41:54 -0700579 fixmaps_set++;
580}
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700581
Masami Hiramatsu3b3809a2009-04-09 10:55:33 -0700582void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys,
583 pgprot_t flags)
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -0700584{
585 __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags));
586}
Toshi Kani6b637832015-04-14 15:47:32 -0700587
588#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
Kirill A. Shutemovb8504052017-03-30 11:07:29 +0300589#ifdef CONFIG_X86_5LEVEL
590/**
591 * p4d_set_huge - setup kernel P4D mapping
592 *
593 * No 512GB pages yet -- always return 0
594 */
595int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot)
596{
597 return 0;
598}
599
600/**
601 * p4d_clear_huge - clear kernel P4D mapping when it is set
602 *
603 * No 512GB pages yet -- always return 0
604 */
605int p4d_clear_huge(p4d_t *p4d)
606{
607 return 0;
608}
609#endif
610
Toshi Kani3d3ca412015-05-26 10:28:07 +0200611/**
612 * pud_set_huge - setup kernel PUD mapping
613 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200614 * MTRRs can override PAT memory types with 4KiB granularity. Therefore, this
615 * function sets up a huge page only if any of the following conditions are met:
616 *
617 * - MTRRs are disabled, or
618 *
619 * - MTRRs are enabled and the range is completely covered by a single MTRR, or
620 *
621 * - MTRRs are enabled and the corresponding MTRR memory type is WB, which
622 * has no effect on the requested PAT memory type.
623 *
624 * Callers should try to decrease page size (1GB -> 2MB -> 4K) if the bigger
625 * page mapping attempt fails.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200626 *
627 * Returns 1 on success and 0 on failure.
628 */
Toshi Kani6b637832015-04-14 15:47:32 -0700629int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot)
630{
Toshi Kanib73522e2015-05-26 10:28:10 +0200631 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700632
Toshi Kanib73522e2015-05-26 10:28:10 +0200633 mtrr = mtrr_type_lookup(addr, addr + PUD_SIZE, &uniform);
634 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
635 (mtrr != MTRR_TYPE_WRBACK))
Toshi Kani6b637832015-04-14 15:47:32 -0700636 return 0;
637
638 prot = pgprot_4k_2_large(prot);
639
640 set_pte((pte_t *)pud, pfn_pte(
641 (u64)addr >> PAGE_SHIFT,
642 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
643
644 return 1;
645}
646
Toshi Kani3d3ca412015-05-26 10:28:07 +0200647/**
648 * pmd_set_huge - setup kernel PMD mapping
649 *
Toshi Kanib73522e2015-05-26 10:28:10 +0200650 * See text over pud_set_huge() above.
Toshi Kani3d3ca412015-05-26 10:28:07 +0200651 *
652 * Returns 1 on success and 0 on failure.
653 */
Toshi Kani6b637832015-04-14 15:47:32 -0700654int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot)
655{
Toshi Kanib73522e2015-05-26 10:28:10 +0200656 u8 mtrr, uniform;
Toshi Kani6b637832015-04-14 15:47:32 -0700657
Toshi Kanib73522e2015-05-26 10:28:10 +0200658 mtrr = mtrr_type_lookup(addr, addr + PMD_SIZE, &uniform);
659 if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) &&
660 (mtrr != MTRR_TYPE_WRBACK)) {
661 pr_warn_once("%s: Cannot satisfy [mem %#010llx-%#010llx] with a huge-page mapping due to MTRR override.\n",
662 __func__, addr, addr + PMD_SIZE);
Toshi Kani6b637832015-04-14 15:47:32 -0700663 return 0;
Toshi Kanib73522e2015-05-26 10:28:10 +0200664 }
Toshi Kani6b637832015-04-14 15:47:32 -0700665
666 prot = pgprot_4k_2_large(prot);
667
668 set_pte((pte_t *)pmd, pfn_pte(
669 (u64)addr >> PAGE_SHIFT,
670 __pgprot(pgprot_val(prot) | _PAGE_PSE)));
671
672 return 1;
673}
674
Toshi Kani3d3ca412015-05-26 10:28:07 +0200675/**
676 * pud_clear_huge - clear kernel PUD mapping when it is set
677 *
678 * Returns 1 on success and 0 on failure (no PUD map is found).
679 */
Toshi Kani6b637832015-04-14 15:47:32 -0700680int pud_clear_huge(pud_t *pud)
681{
682 if (pud_large(*pud)) {
683 pud_clear(pud);
684 return 1;
685 }
686
687 return 0;
688}
689
Toshi Kani3d3ca412015-05-26 10:28:07 +0200690/**
691 * pmd_clear_huge - clear kernel PMD mapping when it is set
692 *
693 * Returns 1 on success and 0 on failure (no PMD map is found).
694 */
Toshi Kani6b637832015-04-14 15:47:32 -0700695int pmd_clear_huge(pmd_t *pmd)
696{
697 if (pmd_large(*pmd)) {
698 pmd_clear(pmd);
699 return 1;
700 }
701
702 return 0;
703}
704#endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */