Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 2 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 3 | #include <linux/gfp.h> |
Joerg Roedel | e3e2881 | 2018-04-11 17:24:38 +0200 | [diff] [blame] | 4 | #include <linux/hugetlb.h> |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 5 | #include <asm/pgalloc.h> |
Jeremy Fitzhardinge | ee5aa8d | 2008-03-17 16:37:03 -0700 | [diff] [blame] | 6 | #include <asm/pgtable.h> |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 7 | #include <asm/tlb.h> |
Ingo Molnar | a1d5a86 | 2008-06-20 15:34:46 +0200 | [diff] [blame] | 8 | #include <asm/fixmap.h> |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 9 | #include <asm/mtrr.h> |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 10 | |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 11 | #define PGALLOC_GFP (GFP_KERNEL_ACCOUNT | __GFP_ZERO) |
Vegard Nossum | 9e73023 | 2009-02-22 11:28:25 +0100 | [diff] [blame] | 12 | |
Ian Campbell | 1431559 | 2010-02-17 10:38:10 +0000 | [diff] [blame] | 13 | #ifdef CONFIG_HIGHPTE |
| 14 | #define PGALLOC_USER_GFP __GFP_HIGHMEM |
| 15 | #else |
| 16 | #define PGALLOC_USER_GFP 0 |
| 17 | #endif |
| 18 | |
| 19 | gfp_t __userpte_alloc_gfp = PGALLOC_GFP | PGALLOC_USER_GFP; |
| 20 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 21 | pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address) |
| 22 | { |
Vladimir Davydov | 3e79ec7 | 2016-07-26 15:24:30 -0700 | [diff] [blame] | 23 | return (pte_t *)__get_free_page(PGALLOC_GFP & ~__GFP_ACCOUNT); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address) |
| 27 | { |
| 28 | struct page *pte; |
| 29 | |
Ian Campbell | 1431559 | 2010-02-17 10:38:10 +0000 | [diff] [blame] | 30 | pte = alloc_pages(__userpte_alloc_gfp, 0); |
Kirill A. Shutemov | cecbd1b | 2013-11-14 14:31:47 -0800 | [diff] [blame] | 31 | if (!pte) |
| 32 | return NULL; |
| 33 | if (!pgtable_page_ctor(pte)) { |
| 34 | __free_page(pte); |
| 35 | return NULL; |
| 36 | } |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 37 | return pte; |
| 38 | } |
| 39 | |
Ian Campbell | 1431559 | 2010-02-17 10:38:10 +0000 | [diff] [blame] | 40 | static int __init setup_userpte(char *arg) |
| 41 | { |
| 42 | if (!arg) |
| 43 | return -EINVAL; |
| 44 | |
| 45 | /* |
| 46 | * "userpte=nohigh" disables allocation of user pagetables in |
| 47 | * high memory. |
| 48 | */ |
| 49 | if (strcmp(arg, "nohigh") == 0) |
| 50 | __userpte_alloc_gfp &= ~__GFP_HIGHMEM; |
| 51 | else |
| 52 | return -EINVAL; |
| 53 | return 0; |
| 54 | } |
| 55 | early_param("userpte", setup_userpte); |
| 56 | |
Benjamin Herrenschmidt | 9e1b32c | 2009-07-22 15:44:28 +1000 | [diff] [blame] | 57 | void ___pte_free_tlb(struct mmu_gather *tlb, struct page *pte) |
Jeremy Fitzhardinge | 397f687 | 2008-03-17 16:36:57 -0700 | [diff] [blame] | 58 | { |
| 59 | pgtable_page_dtor(pte); |
Jeremy Fitzhardinge | 6944a9c | 2008-03-17 16:37:01 -0700 | [diff] [blame] | 60 | paravirt_release_pte(page_to_pfn(pte)); |
Vitaly Kuznetsov | 9e52fc2 | 2017-08-28 10:22:51 +0200 | [diff] [blame] | 61 | tlb_remove_table(tlb, pte); |
Jeremy Fitzhardinge | 397f687 | 2008-03-17 16:36:57 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Kirill A. Shutemov | 9823336 | 2015-04-14 15:46:14 -0700 | [diff] [blame] | 64 | #if CONFIG_PGTABLE_LEVELS > 2 |
Benjamin Herrenschmidt | 9e1b32c | 2009-07-22 15:44:28 +1000 | [diff] [blame] | 65 | void ___pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd) |
Jeremy Fitzhardinge | 170fdff | 2008-03-17 16:36:58 -0700 | [diff] [blame] | 66 | { |
Kirill A. Shutemov | c283610 | 2013-11-21 14:32:09 -0800 | [diff] [blame] | 67 | struct page *page = virt_to_page(pmd); |
Jeremy Fitzhardinge | 6944a9c | 2008-03-17 16:37:01 -0700 | [diff] [blame] | 68 | paravirt_release_pmd(__pa(pmd) >> PAGE_SHIFT); |
Dave Hansen | 1de14c3 | 2013-04-12 16:23:54 -0700 | [diff] [blame] | 69 | /* |
| 70 | * NOTE! For PAE, any changes to the top page-directory-pointer-table |
| 71 | * entries need a full cr3 reload to flush. |
| 72 | */ |
| 73 | #ifdef CONFIG_X86_PAE |
| 74 | tlb->need_flush_all = 1; |
| 75 | #endif |
Kirill A. Shutemov | c283610 | 2013-11-21 14:32:09 -0800 | [diff] [blame] | 76 | pgtable_pmd_page_dtor(page); |
Vitaly Kuznetsov | 9e52fc2 | 2017-08-28 10:22:51 +0200 | [diff] [blame] | 77 | tlb_remove_table(tlb, page); |
Jeremy Fitzhardinge | 170fdff | 2008-03-17 16:36:58 -0700 | [diff] [blame] | 78 | } |
Jeremy Fitzhardinge | 5a5f8f4 | 2008-03-17 16:36:59 -0700 | [diff] [blame] | 79 | |
Kirill A. Shutemov | 9823336 | 2015-04-14 15:46:14 -0700 | [diff] [blame] | 80 | #if CONFIG_PGTABLE_LEVELS > 3 |
Benjamin Herrenschmidt | 9e1b32c | 2009-07-22 15:44:28 +1000 | [diff] [blame] | 81 | void ___pud_free_tlb(struct mmu_gather *tlb, pud_t *pud) |
Jeremy Fitzhardinge | 5a5f8f4 | 2008-03-17 16:36:59 -0700 | [diff] [blame] | 82 | { |
Jeremy Fitzhardinge | 2761fa0 | 2008-03-17 16:37:02 -0700 | [diff] [blame] | 83 | paravirt_release_pud(__pa(pud) >> PAGE_SHIFT); |
Vitaly Kuznetsov | 9e52fc2 | 2017-08-28 10:22:51 +0200 | [diff] [blame] | 84 | tlb_remove_table(tlb, virt_to_page(pud)); |
Jeremy Fitzhardinge | 5a5f8f4 | 2008-03-17 16:36:59 -0700 | [diff] [blame] | 85 | } |
Kirill A. Shutemov | b850405 | 2017-03-30 11:07:29 +0300 | [diff] [blame] | 86 | |
| 87 | #if CONFIG_PGTABLE_LEVELS > 4 |
| 88 | void ___p4d_free_tlb(struct mmu_gather *tlb, p4d_t *p4d) |
| 89 | { |
| 90 | paravirt_release_p4d(__pa(p4d) >> PAGE_SHIFT); |
Vitaly Kuznetsov | 9e52fc2 | 2017-08-28 10:22:51 +0200 | [diff] [blame] | 91 | tlb_remove_table(tlb, virt_to_page(p4d)); |
Kirill A. Shutemov | b850405 | 2017-03-30 11:07:29 +0300 | [diff] [blame] | 92 | } |
| 93 | #endif /* CONFIG_PGTABLE_LEVELS > 4 */ |
Kirill A. Shutemov | 9823336 | 2015-04-14 15:46:14 -0700 | [diff] [blame] | 94 | #endif /* CONFIG_PGTABLE_LEVELS > 3 */ |
| 95 | #endif /* CONFIG_PGTABLE_LEVELS > 2 */ |
Jeremy Fitzhardinge | 170fdff | 2008-03-17 16:36:58 -0700 | [diff] [blame] | 96 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 97 | static inline void pgd_list_add(pgd_t *pgd) |
| 98 | { |
| 99 | struct page *page = virt_to_page(pgd); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 100 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 101 | list_add(&page->lru, &pgd_list); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static inline void pgd_list_del(pgd_t *pgd) |
| 105 | { |
| 106 | struct page *page = virt_to_page(pgd); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 107 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 108 | list_del(&page->lru); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 111 | #define UNSHARED_PTRS_PER_PGD \ |
Jeremy Fitzhardinge | 68db065 | 2008-03-17 16:37:13 -0700 | [diff] [blame] | 112 | (SHARED_KERNEL_PMD ? KERNEL_PGD_BOUNDARY : PTRS_PER_PGD) |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 113 | |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 114 | |
| 115 | static void pgd_set_mm(pgd_t *pgd, struct mm_struct *mm) |
| 116 | { |
Matthew Wilcox | a052f0a | 2018-06-07 17:08:57 -0700 | [diff] [blame^] | 117 | virt_to_page(pgd)->pt_mm = mm; |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | struct mm_struct *pgd_page_get_mm(struct page *page) |
| 121 | { |
Matthew Wilcox | a052f0a | 2018-06-07 17:08:57 -0700 | [diff] [blame^] | 122 | return page->pt_mm; |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static void pgd_ctor(struct mm_struct *mm, pgd_t *pgd) |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 126 | { |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 127 | /* 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. Shutemov | 9823336 | 2015-04-14 15:46:14 -0700 | [diff] [blame] | 130 | if (CONFIG_PGTABLE_LEVELS == 2 || |
| 131 | (CONFIG_PGTABLE_LEVELS == 3 && SHARED_KERNEL_PMD) || |
Kirill A. Shutemov | b850405 | 2017-03-30 11:07:29 +0300 | [diff] [blame] | 132 | CONFIG_PGTABLE_LEVELS >= 4) { |
Jeremy Fitzhardinge | 68db065 | 2008-03-17 16:37:13 -0700 | [diff] [blame] | 133 | clone_pgd_range(pgd + KERNEL_PGD_BOUNDARY, |
| 134 | swapper_pg_dir + KERNEL_PGD_BOUNDARY, |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 135 | KERNEL_PGD_PTRS); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /* list required to sync kernel mapping updates */ |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 139 | if (!SHARED_KERNEL_PMD) { |
| 140 | pgd_set_mm(pgd, mm); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 141 | pgd_list_add(pgd); |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 142 | } |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 143 | } |
| 144 | |
Jan Beulich | 17b7462 | 2008-08-29 12:51:32 +0100 | [diff] [blame] | 145 | static void pgd_dtor(pgd_t *pgd) |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 146 | { |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 147 | if (SHARED_KERNEL_PMD) |
| 148 | return; |
| 149 | |
Andrea Arcangeli | a79e53d | 2011-02-16 15:45:22 -0800 | [diff] [blame] | 150 | spin_lock(&pgd_lock); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 151 | pgd_list_del(pgd); |
Andrea Arcangeli | a79e53d | 2011-02-16 15:45:22 -0800 | [diff] [blame] | 152 | spin_unlock(&pgd_lock); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Jeremy Fitzhardinge | 85958b4 | 2008-03-17 16:37:14 -0700 | [diff] [blame] | 155 | /* |
| 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 Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 163 | * -- nyc |
Jeremy Fitzhardinge | 85958b4 | 2008-03-17 16:37:14 -0700 | [diff] [blame] | 164 | */ |
| 165 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 166 | #ifdef CONFIG_X86_PAE |
| 167 | /* |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 168 | * 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 Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 178 | #define PREALLOCATED_PMDS UNSHARED_PTRS_PER_PGD |
Ingo Molnar | 1ec1fe7 | 2008-03-19 20:30:40 +0100 | [diff] [blame] | 179 | |
| 180 | void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd) |
| 181 | { |
Jeremy Fitzhardinge | 6944a9c | 2008-03-17 16:37:01 -0700 | [diff] [blame] | 182 | paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT); |
Ingo Molnar | 1ec1fe7 | 2008-03-19 20:30:40 +0100 | [diff] [blame] | 183 | |
| 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 Li | 4981d01 | 2011-03-16 11:37:29 +0800 | [diff] [blame] | 194 | flush_tlb_mm(mm); |
Ingo Molnar | 1ec1fe7 | 2008-03-19 20:30:40 +0100 | [diff] [blame] | 195 | } |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 196 | #else /* !CONFIG_X86_PAE */ |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 197 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 198 | /* No need to prepopulate any pagetable entries in non-PAE modes. */ |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 199 | #define PREALLOCATED_PMDS 0 |
| 200 | |
| 201 | #endif /* CONFIG_X86_PAE */ |
| 202 | |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 203 | static void free_pmds(struct mm_struct *mm, pmd_t *pmds[]) |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 204 | { |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 205 | int i; |
| 206 | |
| 207 | for(i = 0; i < PREALLOCATED_PMDS; i++) |
Kirill A. Shutemov | 09ef493 | 2013-11-14 14:31:13 -0800 | [diff] [blame] | 208 | if (pmds[i]) { |
| 209 | pgtable_pmd_page_dtor(virt_to_page(pmds[i])); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 210 | free_page((unsigned long)pmds[i]); |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 211 | mm_dec_nr_pmds(mm); |
Kirill A. Shutemov | 09ef493 | 2013-11-14 14:31:13 -0800 | [diff] [blame] | 212 | } |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 215 | static int preallocate_pmds(struct mm_struct *mm, pmd_t *pmds[]) |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 216 | { |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 217 | int i; |
| 218 | bool failed = false; |
Vladimir Davydov | 3e79ec7 | 2016-07-26 15:24:30 -0700 | [diff] [blame] | 219 | gfp_t gfp = PGALLOC_GFP; |
| 220 | |
| 221 | if (mm == &init_mm) |
| 222 | gfp &= ~__GFP_ACCOUNT; |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 223 | |
| 224 | for(i = 0; i < PREALLOCATED_PMDS; i++) { |
Vladimir Davydov | 3e79ec7 | 2016-07-26 15:24:30 -0700 | [diff] [blame] | 225 | pmd_t *pmd = (pmd_t *)__get_free_page(gfp); |
Kirill A. Shutemov | 09ef493 | 2013-11-14 14:31:13 -0800 | [diff] [blame] | 226 | if (!pmd) |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 227 | failed = true; |
Kirill A. Shutemov | 09ef493 | 2013-11-14 14:31:13 -0800 | [diff] [blame] | 228 | if (pmd && !pgtable_pmd_page_ctor(virt_to_page(pmd))) { |
Al Viro | 2a46eed | 2013-11-20 22:16:36 +0000 | [diff] [blame] | 229 | free_page((unsigned long)pmd); |
Kirill A. Shutemov | 09ef493 | 2013-11-14 14:31:13 -0800 | [diff] [blame] | 230 | pmd = NULL; |
| 231 | failed = true; |
| 232 | } |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 233 | if (pmd) |
| 234 | mm_inc_nr_pmds(mm); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 235 | pmds[i] = pmd; |
| 236 | } |
| 237 | |
| 238 | if (failed) { |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 239 | free_pmds(mm, pmds); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 240 | return -ENOMEM; |
| 241 | } |
| 242 | |
| 243 | return 0; |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 244 | } |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 245 | |
| 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 | */ |
| 252 | static 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. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 266 | mm_dec_nr_pmds(mm); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | static void pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmds[]) |
| 272 | { |
Kirill A. Shutemov | e0c4f67 | 2017-03-13 17:33:05 +0300 | [diff] [blame] | 273 | p4d_t *p4d; |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 274 | pud_t *pud; |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 275 | int i; |
| 276 | |
Jeremy Fitzhardinge | cf3e505 | 2008-08-08 13:46:07 -0700 | [diff] [blame] | 277 | if (PREALLOCATED_PMDS == 0) /* Work around gcc-3.4.x bug */ |
| 278 | return; |
| 279 | |
Kirill A. Shutemov | e0c4f67 | 2017-03-13 17:33:05 +0300 | [diff] [blame] | 280 | p4d = p4d_offset(pgd, 0); |
| 281 | pud = pud_offset(p4d, 0); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 282 | |
Wanpeng Li | 73b44ff | 2013-07-08 16:00:17 -0700 | [diff] [blame] | 283 | for (i = 0; i < PREALLOCATED_PMDS; i++, pud++) { |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 284 | 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 Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 293 | |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 294 | /* |
| 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 | |
| 308 | static struct kmem_cache *pgd_cache; |
| 309 | |
| 310 | static 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 | } |
| 332 | core_initcall(pgd_cache_init); |
| 333 | |
| 334 | static 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 | |
| 350 | static 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 |
Dave Hansen | d9e9a64 | 2017-12-04 15:07:39 +0100 | [diff] [blame] | 358 | |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 359 | static inline pgd_t *_pgd_alloc(void) |
| 360 | { |
Dave Hansen | d9e9a64 | 2017-12-04 15:07:39 +0100 | [diff] [blame] | 361 | return (pgd_t *)__get_free_pages(PGALLOC_GFP, PGD_ALLOCATION_ORDER); |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | static inline void _pgd_free(pgd_t *pgd) |
| 365 | { |
Dave Hansen | d9e9a64 | 2017-12-04 15:07:39 +0100 | [diff] [blame] | 366 | free_pages((unsigned long)pgd, PGD_ALLOCATION_ORDER); |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 367 | } |
| 368 | #endif /* CONFIG_X86_PAE */ |
| 369 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 370 | pgd_t *pgd_alloc(struct mm_struct *mm) |
| 371 | { |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 372 | pgd_t *pgd; |
| 373 | pmd_t *pmds[PREALLOCATED_PMDS]; |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 374 | |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 375 | pgd = _pgd_alloc(); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 376 | |
| 377 | if (pgd == NULL) |
| 378 | goto out; |
| 379 | |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 380 | mm->pgd = pgd; |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 381 | |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 382 | if (preallocate_pmds(mm, pmds) != 0) |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 383 | goto out_free_pgd; |
| 384 | |
| 385 | if (paravirt_pgd_alloc(mm) != 0) |
| 386 | goto out_free_pmds; |
| 387 | |
| 388 | /* |
| 389 | * Make sure that pre-populating the pmds is atomic with |
| 390 | * respect to anything walking the pgd_list, so that they |
| 391 | * never see a partially populated pgd. |
| 392 | */ |
Andrea Arcangeli | a79e53d | 2011-02-16 15:45:22 -0800 | [diff] [blame] | 393 | spin_lock(&pgd_lock); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 394 | |
Jeremy Fitzhardinge | 617d34d | 2010-09-21 12:01:51 -0700 | [diff] [blame] | 395 | pgd_ctor(mm, pgd); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 396 | pgd_prepopulate_pmd(mm, pgd, pmds); |
| 397 | |
Andrea Arcangeli | a79e53d | 2011-02-16 15:45:22 -0800 | [diff] [blame] | 398 | spin_unlock(&pgd_lock); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 399 | |
| 400 | return pgd; |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 401 | |
| 402 | out_free_pmds: |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 403 | free_pmds(mm, pmds); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 404 | out_free_pgd: |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 405 | _pgd_free(pgd); |
Jeremy Fitzhardinge | d8d5900 | 2008-06-25 00:19:13 -0400 | [diff] [blame] | 406 | out: |
| 407 | return NULL; |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
| 411 | { |
| 412 | pgd_mop_up_pmds(mm, pgd); |
| 413 | pgd_dtor(pgd); |
Jeremy Fitzhardinge | eba0045 | 2008-06-25 00:19:12 -0400 | [diff] [blame] | 414 | paravirt_pgd_free(mm, pgd); |
Fenghua Yu | 1db491f | 2015-01-15 20:30:01 -0800 | [diff] [blame] | 415 | _pgd_free(pgd); |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame] | 416 | } |
Jeremy Fitzhardinge | ee5aa8d | 2008-03-17 16:37:03 -0700 | [diff] [blame] | 417 | |
Rik van Riel | 0f9a921 | 2012-11-06 09:54:47 +0000 | [diff] [blame] | 418 | /* |
| 419 | * Used to set accessed or dirty bits in the page table entries |
| 420 | * on other architectures. On x86, the accessed and dirty bits |
| 421 | * are tracked by hardware. However, do_wp_page calls this function |
| 422 | * to also make the pte writeable at the same time the dirty bit is |
| 423 | * set. In that case we do actually need to write the PTE. |
| 424 | */ |
Jeremy Fitzhardinge | ee5aa8d | 2008-03-17 16:37:03 -0700 | [diff] [blame] | 425 | int ptep_set_access_flags(struct vm_area_struct *vma, |
| 426 | unsigned long address, pte_t *ptep, |
| 427 | pte_t entry, int dirty) |
| 428 | { |
| 429 | int changed = !pte_same(*ptep, entry); |
| 430 | |
Juergen Gross | 8793001 | 2017-09-04 12:25:27 +0200 | [diff] [blame] | 431 | if (changed && dirty) |
Jeremy Fitzhardinge | ee5aa8d | 2008-03-17 16:37:03 -0700 | [diff] [blame] | 432 | *ptep = entry; |
Jeremy Fitzhardinge | ee5aa8d | 2008-03-17 16:37:03 -0700 | [diff] [blame] | 433 | |
| 434 | return changed; |
| 435 | } |
Jeremy Fitzhardinge | f9fbf1a | 2008-03-17 16:37:04 -0700 | [diff] [blame] | 436 | |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 437 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 438 | int 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 Molnar | 5e4bf1a | 2012-11-20 13:02:51 +0100 | [diff] [blame] | 448 | /* |
| 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 Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | return changed; |
| 457 | } |
Matthew Wilcox | a00cc7d | 2017-02-24 14:57:02 -0800 | [diff] [blame] | 458 | |
| 459 | int 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 Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 478 | #endif |
| 479 | |
Jeremy Fitzhardinge | f9fbf1a | 2008-03-17 16:37:04 -0700 | [diff] [blame] | 480 | int 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 Gleixner | 48e2395 | 2008-05-24 17:24:34 +0200 | [diff] [blame] | 487 | (unsigned long *) &ptep->pte); |
Jeremy Fitzhardinge | f9fbf1a | 2008-03-17 16:37:04 -0700 | [diff] [blame] | 488 | |
Jeremy Fitzhardinge | f9fbf1a | 2008-03-17 16:37:04 -0700 | [diff] [blame] | 489 | return ret; |
| 490 | } |
Jeremy Fitzhardinge | c20311e | 2008-03-17 16:37:05 -0700 | [diff] [blame] | 491 | |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 492 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 493 | int pmdp_test_and_clear_young(struct vm_area_struct *vma, |
| 494 | unsigned long addr, pmd_t *pmdp) |
| 495 | { |
| 496 | int ret = 0; |
| 497 | |
| 498 | if (pmd_young(*pmdp)) |
| 499 | ret = test_and_clear_bit(_PAGE_BIT_ACCESSED, |
Johannes Weiner | f2d6bfe | 2011-01-13 15:47:01 -0800 | [diff] [blame] | 500 | (unsigned long *)pmdp); |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 501 | |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 502 | return ret; |
| 503 | } |
Matthew Wilcox | a00cc7d | 2017-02-24 14:57:02 -0800 | [diff] [blame] | 504 | int pudp_test_and_clear_young(struct vm_area_struct *vma, |
| 505 | unsigned long addr, pud_t *pudp) |
| 506 | { |
| 507 | int ret = 0; |
| 508 | |
| 509 | if (pud_young(*pudp)) |
| 510 | ret = test_and_clear_bit(_PAGE_BIT_ACCESSED, |
| 511 | (unsigned long *)pudp); |
| 512 | |
| 513 | return ret; |
| 514 | } |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 515 | #endif |
| 516 | |
Jeremy Fitzhardinge | c20311e | 2008-03-17 16:37:05 -0700 | [diff] [blame] | 517 | int ptep_clear_flush_young(struct vm_area_struct *vma, |
| 518 | unsigned long address, pte_t *ptep) |
| 519 | { |
Shaohua Li | b13b1d2 | 2014-04-08 15:58:09 +0800 | [diff] [blame] | 520 | /* |
| 521 | * On x86 CPUs, clearing the accessed bit without a TLB flush |
| 522 | * doesn't cause data corruption. [ It could cause incorrect |
| 523 | * page aging and the (mistaken) reclaim of hot pages, but the |
| 524 | * chance of that should be relatively low. ] |
| 525 | * |
| 526 | * So as a performance optimization don't flush the TLB when |
| 527 | * clearing the accessed bit, it will eventually be flushed by |
| 528 | * a context switch or a VM operation anyway. [ In the rare |
| 529 | * event of it not getting flushed for a long time the delay |
| 530 | * shouldn't really matter because there's no real memory |
| 531 | * pressure for swapout to react to. ] |
| 532 | */ |
| 533 | return ptep_test_and_clear_young(vma, address, ptep); |
Jeremy Fitzhardinge | c20311e | 2008-03-17 16:37:05 -0700 | [diff] [blame] | 534 | } |
Jeremy Fitzhardinge | 7c7e6e0 | 2008-06-17 11:41:54 -0700 | [diff] [blame] | 535 | |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 536 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
| 537 | int pmdp_clear_flush_young(struct vm_area_struct *vma, |
| 538 | unsigned long address, pmd_t *pmdp) |
| 539 | { |
| 540 | int young; |
| 541 | |
| 542 | VM_BUG_ON(address & ~HPAGE_PMD_MASK); |
| 543 | |
| 544 | young = pmdp_test_and_clear_young(vma, address, pmdp); |
| 545 | if (young) |
| 546 | flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE); |
| 547 | |
| 548 | return young; |
| 549 | } |
Andrea Arcangeli | db3eb96f | 2011-01-13 15:46:41 -0800 | [diff] [blame] | 550 | #endif |
| 551 | |
Gustavo F. Padovan | fd862dd | 2009-02-15 21:48:54 -0300 | [diff] [blame] | 552 | /** |
| 553 | * reserve_top_address - reserves a hole in the top of kernel address space |
| 554 | * @reserve - size of hole to reserve |
| 555 | * |
| 556 | * Can be used to relocate the fixmap area and poke a hole in the top |
| 557 | * of kernel address space to make room for a hypervisor. |
| 558 | */ |
| 559 | void __init reserve_top_address(unsigned long reserve) |
| 560 | { |
| 561 | #ifdef CONFIG_X86_32 |
| 562 | BUG_ON(fixmaps_set > 0); |
Andy Lutomirski | 73159fd | 2014-05-05 12:19:31 -0700 | [diff] [blame] | 563 | __FIXADDR_TOP = round_down(-reserve, 1 << PMD_SHIFT) - PAGE_SIZE; |
| 564 | printk(KERN_INFO "Reserving virtual address space above 0x%08lx (rounded to 0x%08lx)\n", |
| 565 | -reserve, __FIXADDR_TOP + PAGE_SIZE); |
Gustavo F. Padovan | fd862dd | 2009-02-15 21:48:54 -0300 | [diff] [blame] | 566 | #endif |
| 567 | } |
| 568 | |
Jeremy Fitzhardinge | 7c7e6e0 | 2008-06-17 11:41:54 -0700 | [diff] [blame] | 569 | int fixmaps_set; |
| 570 | |
Jeremy Fitzhardinge | aeaaa59 | 2008-06-17 11:42:01 -0700 | [diff] [blame] | 571 | void __native_set_fixmap(enum fixed_addresses idx, pte_t pte) |
Jeremy Fitzhardinge | 7c7e6e0 | 2008-06-17 11:41:54 -0700 | [diff] [blame] | 572 | { |
| 573 | unsigned long address = __fix_to_virt(idx); |
| 574 | |
| 575 | if (idx >= __end_of_fixed_addresses) { |
| 576 | BUG(); |
| 577 | return; |
| 578 | } |
Jeremy Fitzhardinge | aeaaa59 | 2008-06-17 11:42:01 -0700 | [diff] [blame] | 579 | set_pte_vaddr(address, pte); |
Jeremy Fitzhardinge | 7c7e6e0 | 2008-06-17 11:41:54 -0700 | [diff] [blame] | 580 | fixmaps_set++; |
| 581 | } |
Jeremy Fitzhardinge | aeaaa59 | 2008-06-17 11:42:01 -0700 | [diff] [blame] | 582 | |
Masami Hiramatsu | 3b3809a | 2009-04-09 10:55:33 -0700 | [diff] [blame] | 583 | void native_set_fixmap(enum fixed_addresses idx, phys_addr_t phys, |
| 584 | pgprot_t flags) |
Jeremy Fitzhardinge | aeaaa59 | 2008-06-17 11:42:01 -0700 | [diff] [blame] | 585 | { |
Dave Hansen | fb43d6c | 2018-04-06 13:55:09 -0700 | [diff] [blame] | 586 | /* Sanitize 'prot' against any unsupported bits: */ |
| 587 | pgprot_val(flags) &= __default_kernel_pte_mask; |
| 588 | |
Jeremy Fitzhardinge | aeaaa59 | 2008-06-17 11:42:01 -0700 | [diff] [blame] | 589 | __native_set_fixmap(idx, pfn_pte(phys >> PAGE_SHIFT, flags)); |
| 590 | } |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 591 | |
| 592 | #ifdef CONFIG_HAVE_ARCH_HUGE_VMAP |
Kirill A. Shutemov | b850405 | 2017-03-30 11:07:29 +0300 | [diff] [blame] | 593 | #ifdef CONFIG_X86_5LEVEL |
| 594 | /** |
| 595 | * p4d_set_huge - setup kernel P4D mapping |
| 596 | * |
| 597 | * No 512GB pages yet -- always return 0 |
| 598 | */ |
| 599 | int 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 | */ |
| 609 | int p4d_clear_huge(p4d_t *p4d) |
| 610 | { |
| 611 | return 0; |
| 612 | } |
| 613 | #endif |
| 614 | |
Toshi Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 615 | /** |
| 616 | * pud_set_huge - setup kernel PUD mapping |
| 617 | * |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 618 | * 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 Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 630 | * |
| 631 | * Returns 1 on success and 0 on failure. |
| 632 | */ |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 633 | int pud_set_huge(pud_t *pud, phys_addr_t addr, pgprot_t prot) |
| 634 | { |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 635 | u8 mtrr, uniform; |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 636 | |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 637 | mtrr = mtrr_type_lookup(addr, addr + PUD_SIZE, &uniform); |
| 638 | if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) && |
| 639 | (mtrr != MTRR_TYPE_WRBACK)) |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 640 | return 0; |
| 641 | |
Joerg Roedel | e3e2881 | 2018-04-11 17:24:38 +0200 | [diff] [blame] | 642 | /* Bail out if we are we on a populated non-leaf entry: */ |
| 643 | if (pud_present(*pud) && !pud_huge(*pud)) |
| 644 | return 0; |
| 645 | |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 646 | prot = pgprot_4k_2_large(prot); |
| 647 | |
| 648 | set_pte((pte_t *)pud, pfn_pte( |
| 649 | (u64)addr >> PAGE_SHIFT, |
| 650 | __pgprot(pgprot_val(prot) | _PAGE_PSE))); |
| 651 | |
| 652 | return 1; |
| 653 | } |
| 654 | |
Toshi Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 655 | /** |
| 656 | * pmd_set_huge - setup kernel PMD mapping |
| 657 | * |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 658 | * See text over pud_set_huge() above. |
Toshi Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 659 | * |
| 660 | * Returns 1 on success and 0 on failure. |
| 661 | */ |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 662 | int pmd_set_huge(pmd_t *pmd, phys_addr_t addr, pgprot_t prot) |
| 663 | { |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 664 | u8 mtrr, uniform; |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 665 | |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 666 | mtrr = mtrr_type_lookup(addr, addr + PMD_SIZE, &uniform); |
| 667 | if ((mtrr != MTRR_TYPE_INVALID) && (!uniform) && |
| 668 | (mtrr != MTRR_TYPE_WRBACK)) { |
| 669 | pr_warn_once("%s: Cannot satisfy [mem %#010llx-%#010llx] with a huge-page mapping due to MTRR override.\n", |
| 670 | __func__, addr, addr + PMD_SIZE); |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 671 | return 0; |
Toshi Kani | b73522e | 2015-05-26 10:28:10 +0200 | [diff] [blame] | 672 | } |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 673 | |
Joerg Roedel | e3e2881 | 2018-04-11 17:24:38 +0200 | [diff] [blame] | 674 | /* Bail out if we are we on a populated non-leaf entry: */ |
| 675 | if (pmd_present(*pmd) && !pmd_huge(*pmd)) |
| 676 | return 0; |
| 677 | |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 678 | prot = pgprot_4k_2_large(prot); |
| 679 | |
| 680 | set_pte((pte_t *)pmd, pfn_pte( |
| 681 | (u64)addr >> PAGE_SHIFT, |
| 682 | __pgprot(pgprot_val(prot) | _PAGE_PSE))); |
| 683 | |
| 684 | return 1; |
| 685 | } |
| 686 | |
Toshi Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 687 | /** |
| 688 | * pud_clear_huge - clear kernel PUD mapping when it is set |
| 689 | * |
| 690 | * Returns 1 on success and 0 on failure (no PUD map is found). |
| 691 | */ |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 692 | int pud_clear_huge(pud_t *pud) |
| 693 | { |
| 694 | if (pud_large(*pud)) { |
| 695 | pud_clear(pud); |
| 696 | return 1; |
| 697 | } |
| 698 | |
| 699 | return 0; |
| 700 | } |
| 701 | |
Toshi Kani | 3d3ca41 | 2015-05-26 10:28:07 +0200 | [diff] [blame] | 702 | /** |
| 703 | * pmd_clear_huge - clear kernel PMD mapping when it is set |
| 704 | * |
| 705 | * Returns 1 on success and 0 on failure (no PMD map is found). |
| 706 | */ |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 707 | int pmd_clear_huge(pmd_t *pmd) |
| 708 | { |
| 709 | if (pmd_large(*pmd)) { |
| 710 | pmd_clear(pmd); |
| 711 | return 1; |
| 712 | } |
| 713 | |
| 714 | return 0; |
| 715 | } |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 716 | |
| 717 | /** |
| 718 | * pud_free_pmd_page - Clear pud entry and free pmd page. |
| 719 | * @pud: Pointer to a PUD. |
| 720 | * |
| 721 | * Context: The pud range has been unmaped and TLB purged. |
| 722 | * Return: 1 if clearing the entry succeeded. 0 otherwise. |
| 723 | */ |
| 724 | int pud_free_pmd_page(pud_t *pud) |
| 725 | { |
Toshi Kani | 28ee90f | 2018-03-22 16:17:24 -0700 | [diff] [blame] | 726 | pmd_t *pmd; |
| 727 | int i; |
| 728 | |
| 729 | if (pud_none(*pud)) |
| 730 | return 1; |
| 731 | |
| 732 | pmd = (pmd_t *)pud_page_vaddr(*pud); |
| 733 | |
| 734 | for (i = 0; i < PTRS_PER_PMD; i++) |
| 735 | if (!pmd_free_pte_page(&pmd[i])) |
| 736 | return 0; |
| 737 | |
| 738 | pud_clear(pud); |
| 739 | free_page((unsigned long)pmd); |
| 740 | |
| 741 | return 1; |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /** |
| 745 | * pmd_free_pte_page - Clear pmd entry and free pte page. |
| 746 | * @pmd: Pointer to a PMD. |
| 747 | * |
| 748 | * Context: The pmd range has been unmaped and TLB purged. |
| 749 | * Return: 1 if clearing the entry succeeded. 0 otherwise. |
| 750 | */ |
| 751 | int pmd_free_pte_page(pmd_t *pmd) |
| 752 | { |
Toshi Kani | 28ee90f | 2018-03-22 16:17:24 -0700 | [diff] [blame] | 753 | pte_t *pte; |
| 754 | |
| 755 | if (pmd_none(*pmd)) |
| 756 | return 1; |
| 757 | |
| 758 | pte = (pte_t *)pmd_page_vaddr(*pmd); |
| 759 | pmd_clear(pmd); |
| 760 | free_page((unsigned long)pte); |
| 761 | |
| 762 | return 1; |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 763 | } |
Toshi Kani | 6b63783 | 2015-04-14 15:47:32 -0700 | [diff] [blame] | 764 | #endif /* CONFIG_HAVE_ARCH_HUGE_VMAP */ |