Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012,2013 - ARM Ltd |
| 3 | * Author: Marc Zyngier <marc.zyngier@arm.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #ifndef __ARM64_KVM_MMU_H__ |
| 19 | #define __ARM64_KVM_MMU_H__ |
| 20 | |
| 21 | #include <asm/page.h> |
| 22 | #include <asm/memory.h> |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 23 | #include <asm/cpufeature.h> |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 24 | |
| 25 | /* |
Marc Zyngier | cedbb8b7 | 2015-01-29 13:50:34 +0000 | [diff] [blame] | 26 | * As ARMv8.0 only has the TTBR0_EL2 register, we cannot express |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 27 | * "negative" addresses. This makes it impossible to directly share |
| 28 | * mappings with the kernel. |
| 29 | * |
| 30 | * Instead, give the HYP mode its own VA region at a fixed offset from |
| 31 | * the kernel by just masking the top bits (which are all ones for a |
Marc Zyngier | 82a81bf | 2016-06-30 18:40:34 +0100 | [diff] [blame] | 32 | * kernel address). We need to find out how many bits to mask. |
Marc Zyngier | cedbb8b7 | 2015-01-29 13:50:34 +0000 | [diff] [blame] | 33 | * |
Marc Zyngier | 82a81bf | 2016-06-30 18:40:34 +0100 | [diff] [blame] | 34 | * We want to build a set of page tables that cover both parts of the |
| 35 | * idmap (the trampoline page used to initialize EL2), and our normal |
| 36 | * runtime VA space, at the same time. |
| 37 | * |
| 38 | * Given that the kernel uses VA_BITS for its entire address space, |
| 39 | * and that half of that space (VA_BITS - 1) is used for the linear |
| 40 | * mapping, we can also limit the EL2 space to (VA_BITS - 1). |
| 41 | * |
| 42 | * The main question is "Within the VA_BITS space, does EL2 use the |
| 43 | * top or the bottom half of that space to shadow the kernel's linear |
| 44 | * mapping?". As we need to idmap the trampoline page, this is |
| 45 | * determined by the range in which this page lives. |
| 46 | * |
| 47 | * If the page is in the bottom half, we have to use the top half. If |
| 48 | * the page is in the top half, we have to use the bottom half: |
| 49 | * |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 50 | * T = __pa_symbol(__hyp_idmap_text_start) |
Marc Zyngier | 82a81bf | 2016-06-30 18:40:34 +0100 | [diff] [blame] | 51 | * if (T & BIT(VA_BITS - 1)) |
| 52 | * HYP_VA_MIN = 0 //idmap in upper half |
| 53 | * else |
| 54 | * HYP_VA_MIN = 1 << (VA_BITS - 1) |
| 55 | * HYP_VA_MAX = HYP_VA_MIN + (1 << (VA_BITS - 1)) - 1 |
| 56 | * |
| 57 | * This of course assumes that the trampoline page exists within the |
| 58 | * VA_BITS range. If it doesn't, then it means we're in the odd case |
| 59 | * where the kernel idmap (as well as HYP) uses more levels than the |
| 60 | * kernel runtime page tables (as seen when the kernel is configured |
| 61 | * for 4k pages, 39bits VA, and yet memory lives just above that |
| 62 | * limit, forcing the idmap to use 4 levels of page tables while the |
| 63 | * kernel itself only uses 3). In this particular case, it doesn't |
| 64 | * matter which side of VA_BITS we use, as we're guaranteed not to |
| 65 | * conflict with anything. |
| 66 | * |
| 67 | * When using VHE, there are no separate hyp mappings and all KVM |
| 68 | * functionality is already mapped as part of the main kernel |
| 69 | * mappings, and none of this applies in that case. |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 70 | */ |
Marc Zyngier | d53d9bc6 | 2016-06-30 18:40:39 +0100 | [diff] [blame] | 71 | |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 72 | #ifdef __ASSEMBLY__ |
| 73 | |
Marc Zyngier | cedbb8b7 | 2015-01-29 13:50:34 +0000 | [diff] [blame] | 74 | #include <asm/alternative.h> |
Marc Zyngier | cedbb8b7 | 2015-01-29 13:50:34 +0000 | [diff] [blame] | 75 | |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 76 | /* |
| 77 | * Convert a kernel VA into a HYP VA. |
| 78 | * reg: VA to be converted. |
Marc Zyngier | fd81e6b | 2016-06-30 18:40:40 +0100 | [diff] [blame] | 79 | * |
Marc Zyngier | 2b4d160 | 2017-12-03 17:36:55 +0000 | [diff] [blame] | 80 | * The actual code generation takes place in kvm_update_va_mask, and |
| 81 | * the instructions below are only there to reserve the space and |
| 82 | * perform the register allocation (kvm_update_va_mask uses the |
| 83 | * specific registers encoded in the instructions). |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 84 | */ |
| 85 | .macro kern_hyp_va reg |
Marc Zyngier | 2b4d160 | 2017-12-03 17:36:55 +0000 | [diff] [blame] | 86 | alternative_cb kvm_update_va_mask |
Marc Zyngier | ed57cac | 2017-12-03 18:22:49 +0000 | [diff] [blame] | 87 | and \reg, \reg, #1 /* mask with va_mask */ |
| 88 | ror \reg, \reg, #1 /* rotate to the first tag bit */ |
| 89 | add \reg, \reg, #0 /* insert the low 12 bits of the tag */ |
| 90 | add \reg, \reg, #0, lsl 12 /* insert the top 12 bits of the tag */ |
| 91 | ror \reg, \reg, #63 /* rotate back */ |
Marc Zyngier | 2b4d160 | 2017-12-03 17:36:55 +0000 | [diff] [blame] | 92 | alternative_cb_end |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 93 | .endm |
| 94 | |
| 95 | #else |
| 96 | |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 97 | #include <asm/pgalloc.h> |
Will Deacon | 02f7760 | 2017-03-10 20:32:23 +0000 | [diff] [blame] | 98 | #include <asm/cache.h> |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 99 | #include <asm/cacheflush.h> |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 100 | #include <asm/mmu_context.h> |
| 101 | #include <asm/pgtable.h> |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 102 | |
Marc Zyngier | 2b4d160 | 2017-12-03 17:36:55 +0000 | [diff] [blame] | 103 | void kvm_update_va_mask(struct alt_instr *alt, |
| 104 | __le32 *origptr, __le32 *updptr, int nr_inst); |
| 105 | |
Marc Zyngier | fd81e6b | 2016-06-30 18:40:40 +0100 | [diff] [blame] | 106 | static inline unsigned long __kern_hyp_va(unsigned long v) |
| 107 | { |
Marc Zyngier | ed57cac | 2017-12-03 18:22:49 +0000 | [diff] [blame] | 108 | asm volatile(ALTERNATIVE_CB("and %0, %0, #1\n" |
| 109 | "ror %0, %0, #1\n" |
| 110 | "add %0, %0, #0\n" |
| 111 | "add %0, %0, #0, lsl 12\n" |
| 112 | "ror %0, %0, #63\n", |
Marc Zyngier | 2b4d160 | 2017-12-03 17:36:55 +0000 | [diff] [blame] | 113 | kvm_update_va_mask) |
| 114 | : "+r" (v)); |
Marc Zyngier | fd81e6b | 2016-06-30 18:40:40 +0100 | [diff] [blame] | 115 | return v; |
| 116 | } |
| 117 | |
Marc Zyngier | 94d0e59 | 2016-10-18 18:37:49 +0100 | [diff] [blame] | 118 | #define kern_hyp_va(v) ((typeof(v))(__kern_hyp_va((unsigned long)(v)))) |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 119 | |
| 120 | /* |
Marc Zyngier | 44a497a | 2017-12-03 19:28:56 +0000 | [diff] [blame] | 121 | * Obtain the PC-relative address of a kernel symbol |
| 122 | * s: symbol |
| 123 | * |
| 124 | * The goal of this macro is to return a symbol's address based on a |
| 125 | * PC-relative computation, as opposed to a loading the VA from a |
| 126 | * constant pool or something similar. This works well for HYP, as an |
| 127 | * absolute VA is guaranteed to be wrong. Only use this if trying to |
| 128 | * obtain the address of a symbol (i.e. not something you obtained by |
| 129 | * following a pointer). |
| 130 | */ |
| 131 | #define hyp_symbol_addr(s) \ |
| 132 | ({ \ |
| 133 | typeof(s) *addr; \ |
| 134 | asm("adrp %0, %1\n" \ |
| 135 | "add %0, %0, :lo12:%1\n" \ |
| 136 | : "=r" (addr) : "S" (&s)); \ |
| 137 | addr; \ |
| 138 | }) |
| 139 | |
| 140 | /* |
Joel Schopp | dbff124 | 2014-07-09 11:17:04 -0500 | [diff] [blame] | 141 | * We currently only support a 40bit IPA. |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 142 | */ |
Joel Schopp | dbff124 | 2014-07-09 11:17:04 -0500 | [diff] [blame] | 143 | #define KVM_PHYS_SHIFT (40) |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 144 | #define KVM_PHYS_SIZE (1UL << KVM_PHYS_SHIFT) |
| 145 | #define KVM_PHYS_MASK (KVM_PHYS_SIZE - 1UL) |
| 146 | |
Suzuki K Poulose | c0ef632 | 2016-03-22 14:16:52 +0000 | [diff] [blame] | 147 | #include <asm/stage2_pgtable.h> |
| 148 | |
Marc Zyngier | c8dddec | 2016-06-13 15:00:45 +0100 | [diff] [blame] | 149 | int create_hyp_mappings(void *from, void *to, pgprot_t prot); |
Marc Zyngier | 807a378 | 2017-12-04 16:26:09 +0000 | [diff] [blame] | 150 | int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size, |
Marc Zyngier | 1bb32a4 | 2017-12-04 16:43:23 +0000 | [diff] [blame] | 151 | void __iomem **kaddr, |
| 152 | void __iomem **haddr); |
Marc Zyngier | dc2e463 | 2018-02-13 11:00:29 +0000 | [diff] [blame] | 153 | int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size, |
| 154 | void **haddr); |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 155 | void free_hyp_pgds(void); |
| 156 | |
Christoffer Dall | 957db10 | 2014-11-27 10:35:03 +0100 | [diff] [blame] | 157 | void stage2_unmap_vm(struct kvm *kvm); |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 158 | int kvm_alloc_stage2_pgd(struct kvm *kvm); |
| 159 | void kvm_free_stage2_pgd(struct kvm *kvm); |
| 160 | int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa, |
Ard Biesheuvel | c40f2f8 | 2014-09-17 14:56:18 -0700 | [diff] [blame] | 161 | phys_addr_t pa, unsigned long size, bool writable); |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 162 | |
| 163 | int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run); |
| 164 | |
| 165 | void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu); |
| 166 | |
| 167 | phys_addr_t kvm_mmu_get_httbr(void); |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 168 | phys_addr_t kvm_get_idmap_vector(void); |
| 169 | int kvm_mmu_init(void); |
| 170 | void kvm_clear_hyp_idmap(void); |
| 171 | |
Marc Zyngier | 0db9dd8 | 2018-06-27 15:51:05 +0100 | [diff] [blame] | 172 | #define kvm_mk_pmd(ptep) \ |
| 173 | __pmd(__phys_to_pmd_val(__pa(ptep)) | PMD_TYPE_TABLE) |
| 174 | #define kvm_mk_pud(pmdp) \ |
| 175 | __pud(__phys_to_pud_val(__pa(pmdp)) | PMD_TYPE_TABLE) |
| 176 | #define kvm_mk_pgd(pudp) \ |
| 177 | __pgd(__phys_to_pgd_val(__pa(pudp)) | PUD_TYPE_TABLE) |
| 178 | |
Catalin Marinas | 0648505 | 2016-04-13 17:57:37 +0100 | [diff] [blame] | 179 | static inline pte_t kvm_s2pte_mkwrite(pte_t pte) |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 180 | { |
Catalin Marinas | 0648505 | 2016-04-13 17:57:37 +0100 | [diff] [blame] | 181 | pte_val(pte) |= PTE_S2_RDWR; |
| 182 | return pte; |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Catalin Marinas | 0648505 | 2016-04-13 17:57:37 +0100 | [diff] [blame] | 185 | static inline pmd_t kvm_s2pmd_mkwrite(pmd_t pmd) |
Christoffer Dall | ad361f0 | 2012-11-01 17:14:45 +0100 | [diff] [blame] | 186 | { |
Catalin Marinas | 0648505 | 2016-04-13 17:57:37 +0100 | [diff] [blame] | 187 | pmd_val(pmd) |= PMD_S2_RDWR; |
| 188 | return pmd; |
Christoffer Dall | ad361f0 | 2012-11-01 17:14:45 +0100 | [diff] [blame] | 189 | } |
| 190 | |
Marc Zyngier | d0e22b4 | 2017-10-23 17:11:19 +0100 | [diff] [blame] | 191 | static inline pte_t kvm_s2pte_mkexec(pte_t pte) |
| 192 | { |
| 193 | pte_val(pte) &= ~PTE_S2_XN; |
| 194 | return pte; |
| 195 | } |
| 196 | |
| 197 | static inline pmd_t kvm_s2pmd_mkexec(pmd_t pmd) |
| 198 | { |
| 199 | pmd_val(pmd) &= ~PMD_S2_XN; |
| 200 | return pmd; |
| 201 | } |
| 202 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 203 | static inline void kvm_set_s2pte_readonly(pte_t *ptep) |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 204 | { |
Catalin Marinas | 0966253 | 2017-07-06 11:46:39 +0100 | [diff] [blame] | 205 | pteval_t old_pteval, pteval; |
Catalin Marinas | 0648505 | 2016-04-13 17:57:37 +0100 | [diff] [blame] | 206 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 207 | pteval = READ_ONCE(pte_val(*ptep)); |
Catalin Marinas | 0966253 | 2017-07-06 11:46:39 +0100 | [diff] [blame] | 208 | do { |
| 209 | old_pteval = pteval; |
| 210 | pteval &= ~PTE_S2_RDWR; |
| 211 | pteval |= PTE_S2_RDONLY; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 212 | pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval); |
Catalin Marinas | 0966253 | 2017-07-06 11:46:39 +0100 | [diff] [blame] | 213 | } while (pteval != old_pteval); |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 214 | } |
| 215 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 216 | static inline bool kvm_s2pte_readonly(pte_t *ptep) |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 217 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 218 | return (READ_ONCE(pte_val(*ptep)) & PTE_S2_RDWR) == PTE_S2_RDONLY; |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 219 | } |
| 220 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 221 | static inline bool kvm_s2pte_exec(pte_t *ptep) |
Marc Zyngier | 7a3796d | 2017-10-23 17:11:21 +0100 | [diff] [blame] | 222 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 223 | return !(READ_ONCE(pte_val(*ptep)) & PTE_S2_XN); |
Marc Zyngier | 7a3796d | 2017-10-23 17:11:21 +0100 | [diff] [blame] | 224 | } |
| 225 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 226 | static inline void kvm_set_s2pmd_readonly(pmd_t *pmdp) |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 227 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 228 | kvm_set_s2pte_readonly((pte_t *)pmdp); |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 229 | } |
| 230 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 231 | static inline bool kvm_s2pmd_readonly(pmd_t *pmdp) |
Mario Smarduch | 8199ed0 | 2015-01-15 15:58:59 -0800 | [diff] [blame] | 232 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 233 | return kvm_s2pte_readonly((pte_t *)pmdp); |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 234 | } |
| 235 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 236 | static inline bool kvm_s2pmd_exec(pmd_t *pmdp) |
Marc Zyngier | 7a3796d | 2017-10-23 17:11:21 +0100 | [diff] [blame] | 237 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 238 | return !(READ_ONCE(pmd_val(*pmdp)) & PMD_S2_XN); |
Marc Zyngier | 7a3796d | 2017-10-23 17:11:21 +0100 | [diff] [blame] | 239 | } |
| 240 | |
Christoffer Dall | 4f853a7 | 2014-05-09 23:31:31 +0200 | [diff] [blame] | 241 | static inline bool kvm_page_empty(void *ptr) |
| 242 | { |
| 243 | struct page *ptr_page = virt_to_page(ptr); |
| 244 | return page_count(ptr_page) == 1; |
| 245 | } |
| 246 | |
Suzuki K Poulose | 66f877f | 2016-03-22 17:20:28 +0000 | [diff] [blame] | 247 | #define hyp_pte_table_empty(ptep) kvm_page_empty(ptep) |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 248 | |
| 249 | #ifdef __PAGETABLE_PMD_FOLDED |
Suzuki K Poulose | 66f877f | 2016-03-22 17:20:28 +0000 | [diff] [blame] | 250 | #define hyp_pmd_table_empty(pmdp) (0) |
Christoffer Dall | 4f853a7 | 2014-05-09 23:31:31 +0200 | [diff] [blame] | 251 | #else |
Suzuki K Poulose | 66f877f | 2016-03-22 17:20:28 +0000 | [diff] [blame] | 252 | #define hyp_pmd_table_empty(pmdp) kvm_page_empty(pmdp) |
Christoffer Dall | 4f853a7 | 2014-05-09 23:31:31 +0200 | [diff] [blame] | 253 | #endif |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 254 | |
| 255 | #ifdef __PAGETABLE_PUD_FOLDED |
Suzuki K Poulose | 66f877f | 2016-03-22 17:20:28 +0000 | [diff] [blame] | 256 | #define hyp_pud_table_empty(pudp) (0) |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 257 | #else |
Suzuki K Poulose | 66f877f | 2016-03-22 17:20:28 +0000 | [diff] [blame] | 258 | #define hyp_pud_table_empty(pudp) kvm_page_empty(pudp) |
Christoffer Dall | 38f791a | 2014-10-10 12:14:28 +0200 | [diff] [blame] | 259 | #endif |
Christoffer Dall | 4f853a7 | 2014-05-09 23:31:31 +0200 | [diff] [blame] | 260 | |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 261 | struct kvm; |
| 262 | |
Marc Zyngier | 2d58b73 | 2014-01-14 19:13:10 +0000 | [diff] [blame] | 263 | #define kvm_flush_dcache_to_poc(a,l) __flush_dcache_area((a), (l)) |
| 264 | |
| 265 | static inline bool vcpu_has_cache_enabled(struct kvm_vcpu *vcpu) |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 266 | { |
Christoffer Dall | 8d404c4 | 2016-03-16 15:38:53 +0100 | [diff] [blame] | 267 | return (vcpu_read_sys_reg(vcpu, SCTLR_EL1) & 0b101) == 0b101; |
Marc Zyngier | 2d58b73 | 2014-01-14 19:13:10 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Marc Zyngier | 17ab9d5 | 2017-10-23 17:11:22 +0100 | [diff] [blame] | 270 | static inline void __clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size) |
Marc Zyngier | 2d58b73 | 2014-01-14 19:13:10 +0000 | [diff] [blame] | 271 | { |
Marc Zyngier | 0d3e4d4 | 2015-01-05 21:13:24 +0000 | [diff] [blame] | 272 | void *va = page_address(pfn_to_page(pfn)); |
| 273 | |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 274 | /* |
| 275 | * With FWB, we ensure that the guest always accesses memory using |
| 276 | * cacheable attributes, and we don't have to clean to PoC when |
| 277 | * faulting in pages. Furthermore, FWB implies IDC, so cleaning to |
| 278 | * PoU is not required either in this case. |
| 279 | */ |
| 280 | if (cpus_have_const_cap(ARM64_HAS_STAGE2_FWB)) |
| 281 | return; |
| 282 | |
Marc Zyngier | 8f36eba | 2017-01-25 12:29:59 +0000 | [diff] [blame] | 283 | kvm_flush_dcache_to_poc(va, size); |
Marc Zyngier | a15f693 | 2017-10-23 17:11:15 +0100 | [diff] [blame] | 284 | } |
Marc Zyngier | 2d58b73 | 2014-01-14 19:13:10 +0000 | [diff] [blame] | 285 | |
Marc Zyngier | 17ab9d5 | 2017-10-23 17:11:22 +0100 | [diff] [blame] | 286 | static inline void __invalidate_icache_guest_page(kvm_pfn_t pfn, |
Marc Zyngier | a15f693 | 2017-10-23 17:11:15 +0100 | [diff] [blame] | 287 | unsigned long size) |
| 288 | { |
Will Deacon | 87da236 | 2017-03-10 20:32:25 +0000 | [diff] [blame] | 289 | if (icache_is_aliasing()) { |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 290 | /* any kind of VIPT cache */ |
| 291 | __flush_icache_all(); |
Will Deacon | 87da236 | 2017-03-10 20:32:25 +0000 | [diff] [blame] | 292 | } else if (is_kernel_in_hyp_mode() || !icache_is_vpipt()) { |
| 293 | /* PIPT or VPIPT at EL2 (see comment in __kvm_tlb_flush_vmid_ipa) */ |
Marc Zyngier | a15f693 | 2017-10-23 17:11:15 +0100 | [diff] [blame] | 294 | void *va = page_address(pfn_to_page(pfn)); |
| 295 | |
Marc Zyngier | 4fee947 | 2017-10-23 17:11:16 +0100 | [diff] [blame] | 296 | invalidate_icache_range((unsigned long)va, |
| 297 | (unsigned long)va + size); |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Marc Zyngier | 363ef89 | 2014-12-19 16:48:06 +0000 | [diff] [blame] | 301 | static inline void __kvm_flush_dcache_pte(pte_t pte) |
| 302 | { |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 303 | if (!cpus_have_const_cap(ARM64_HAS_STAGE2_FWB)) { |
| 304 | struct page *page = pte_page(pte); |
| 305 | kvm_flush_dcache_to_poc(page_address(page), PAGE_SIZE); |
| 306 | } |
Marc Zyngier | 363ef89 | 2014-12-19 16:48:06 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | static inline void __kvm_flush_dcache_pmd(pmd_t pmd) |
| 310 | { |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 311 | if (!cpus_have_const_cap(ARM64_HAS_STAGE2_FWB)) { |
| 312 | struct page *page = pmd_page(pmd); |
| 313 | kvm_flush_dcache_to_poc(page_address(page), PMD_SIZE); |
| 314 | } |
Marc Zyngier | 363ef89 | 2014-12-19 16:48:06 +0000 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | static inline void __kvm_flush_dcache_pud(pud_t pud) |
| 318 | { |
Marc Zyngier | e48d53a | 2018-04-06 12:27:28 +0100 | [diff] [blame] | 319 | if (!cpus_have_const_cap(ARM64_HAS_STAGE2_FWB)) { |
| 320 | struct page *page = pud_page(pud); |
| 321 | kvm_flush_dcache_to_poc(page_address(page), PUD_SIZE); |
| 322 | } |
Marc Zyngier | 363ef89 | 2014-12-19 16:48:06 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 325 | #define kvm_virt_to_phys(x) __pa_symbol(x) |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 326 | |
Marc Zyngier | 3c1e716 | 2014-12-19 16:05:31 +0000 | [diff] [blame] | 327 | void kvm_set_way_flush(struct kvm_vcpu *vcpu); |
| 328 | void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled); |
Marc Zyngier | 9d218a1 | 2014-01-15 12:50:23 +0000 | [diff] [blame] | 329 | |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 330 | static inline bool __kvm_cpu_uses_extended_idmap(void) |
| 331 | { |
Kristina Martsenko | fa2a844 | 2017-12-13 17:07:24 +0000 | [diff] [blame] | 332 | return __cpu_uses_extended_idmap_level(); |
| 333 | } |
| 334 | |
| 335 | static inline unsigned long __kvm_idmap_ptrs_per_pgd(void) |
| 336 | { |
| 337 | return idmap_ptrs_per_pgd; |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 338 | } |
| 339 | |
Kristina Martsenko | 1933830 | 2017-12-13 17:07:20 +0000 | [diff] [blame] | 340 | /* |
| 341 | * Can't use pgd_populate here, because the extended idmap adds an extra level |
| 342 | * above CONFIG_PGTABLE_LEVELS (which is 2 or 3 if we're using the extended |
| 343 | * idmap), and pgd_populate is only available if CONFIG_PGTABLE_LEVELS = 4. |
| 344 | */ |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 345 | static inline void __kvm_extend_hypmap(pgd_t *boot_hyp_pgd, |
| 346 | pgd_t *hyp_pgd, |
| 347 | pgd_t *merged_hyp_pgd, |
| 348 | unsigned long hyp_idmap_start) |
| 349 | { |
| 350 | int idmap_idx; |
Kristina Martsenko | 75387b9 | 2017-12-13 17:07:21 +0000 | [diff] [blame] | 351 | u64 pgd_addr; |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 352 | |
| 353 | /* |
| 354 | * Use the first entry to access the HYP mappings. It is |
| 355 | * guaranteed to be free, otherwise we wouldn't use an |
| 356 | * extended idmap. |
| 357 | */ |
| 358 | VM_BUG_ON(pgd_val(merged_hyp_pgd[0])); |
Kristina Martsenko | 75387b9 | 2017-12-13 17:07:21 +0000 | [diff] [blame] | 359 | pgd_addr = __phys_to_pgd_val(__pa(hyp_pgd)); |
| 360 | merged_hyp_pgd[0] = __pgd(pgd_addr | PMD_TYPE_TABLE); |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 361 | |
| 362 | /* |
| 363 | * Create another extended level entry that points to the boot HYP map, |
| 364 | * which contains an ID mapping of the HYP init code. We essentially |
| 365 | * merge the boot and runtime HYP maps by doing so, but they don't |
| 366 | * overlap anyway, so this is fine. |
| 367 | */ |
| 368 | idmap_idx = hyp_idmap_start >> VA_BITS; |
| 369 | VM_BUG_ON(pgd_val(merged_hyp_pgd[idmap_idx])); |
Kristina Martsenko | 75387b9 | 2017-12-13 17:07:21 +0000 | [diff] [blame] | 370 | pgd_addr = __phys_to_pgd_val(__pa(boot_hyp_pgd)); |
| 371 | merged_hyp_pgd[idmap_idx] = __pgd(pgd_addr | PMD_TYPE_TABLE); |
Ard Biesheuvel | e4c5a68 | 2015-03-19 16:42:28 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 374 | static inline unsigned int kvm_get_vmid_bits(void) |
| 375 | { |
Dave Martin | 46823dd | 2017-03-23 15:14:39 +0000 | [diff] [blame] | 376 | int reg = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1); |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 377 | |
Suzuki K Poulose | 28c5dcb | 2016-01-26 10:58:16 +0000 | [diff] [blame] | 378 | return (cpuid_feature_extract_unsigned_field(reg, ID_AA64MMFR1_VMIDBITS_SHIFT) == 2) ? 16 : 8; |
Vladimir Murzin | 20475f7 | 2015-11-16 11:28:18 +0000 | [diff] [blame] | 379 | } |
| 380 | |
Andre Przywara | bf30824 | 2018-05-11 15:20:14 +0100 | [diff] [blame] | 381 | /* |
| 382 | * We are not in the kvm->srcu critical section most of the time, so we take |
| 383 | * the SRCU read lock here. Since we copy the data from the user page, we |
| 384 | * can immediately drop the lock again. |
| 385 | */ |
| 386 | static inline int kvm_read_guest_lock(struct kvm *kvm, |
| 387 | gpa_t gpa, void *data, unsigned long len) |
| 388 | { |
| 389 | int srcu_idx = srcu_read_lock(&kvm->srcu); |
| 390 | int ret = kvm_read_guest(kvm, gpa, data, len); |
| 391 | |
| 392 | srcu_read_unlock(&kvm->srcu, srcu_idx); |
| 393 | |
| 394 | return ret; |
| 395 | } |
| 396 | |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 397 | #ifdef CONFIG_KVM_INDIRECT_VECTORS |
| 398 | /* |
| 399 | * EL2 vectors can be mapped and rerouted in a number of ways, |
| 400 | * depending on the kernel configuration and CPU present: |
| 401 | * |
| 402 | * - If the CPU has the ARM64_HARDEN_BRANCH_PREDICTOR cap, the |
| 403 | * hardening sequence is placed in one of the vector slots, which is |
| 404 | * executed before jumping to the real vectors. |
| 405 | * |
| 406 | * - If the CPU has both the ARM64_HARDEN_EL2_VECTORS cap and the |
| 407 | * ARM64_HARDEN_BRANCH_PREDICTOR cap, the slot containing the |
| 408 | * hardening sequence is mapped next to the idmap page, and executed |
| 409 | * before jumping to the real vectors. |
| 410 | * |
| 411 | * - If the CPU only has the ARM64_HARDEN_EL2_VECTORS cap, then an |
| 412 | * empty slot is selected, mapped next to the idmap page, and |
| 413 | * executed before jumping to the real vectors. |
| 414 | * |
| 415 | * Note that ARM64_HARDEN_EL2_VECTORS is somewhat incompatible with |
| 416 | * VHE, as we don't have hypervisor-specific mappings. If the system |
| 417 | * is VHE and yet selects this capability, it will be ignored. |
| 418 | */ |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 419 | #include <asm/mmu.h> |
| 420 | |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 421 | extern void *__kvm_bp_vect_base; |
| 422 | extern int __kvm_harden_el2_vector_slot; |
| 423 | |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 424 | static inline void *kvm_get_hyp_vector(void) |
| 425 | { |
| 426 | struct bp_hardening_data *data = arm64_get_bp_hardening_data(); |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 427 | void *vect = kern_hyp_va(kvm_ksym_ref(__kvm_hyp_vector)); |
| 428 | int slot = -1; |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 429 | |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 430 | if (cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR) && data->fn) { |
| 431 | vect = kern_hyp_va(kvm_ksym_ref(__bp_harden_hyp_vecs_start)); |
| 432 | slot = data->hyp_vectors_slot; |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 435 | if (this_cpu_has_cap(ARM64_HARDEN_EL2_VECTORS) && !has_vhe()) { |
| 436 | vect = __kvm_bp_vect_base; |
| 437 | if (slot == -1) |
| 438 | slot = __kvm_harden_el2_vector_slot; |
| 439 | } |
| 440 | |
| 441 | if (slot != -1) |
| 442 | vect += slot * SZ_2K; |
| 443 | |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 444 | return vect; |
| 445 | } |
| 446 | |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 447 | /* This is only called on a !VHE system */ |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 448 | static inline int kvm_map_vectors(void) |
| 449 | { |
Marc Zyngier | dee3924 | 2018-02-15 11:47:14 +0000 | [diff] [blame] | 450 | /* |
| 451 | * HBP = ARM64_HARDEN_BRANCH_PREDICTOR |
| 452 | * HEL2 = ARM64_HARDEN_EL2_VECTORS |
| 453 | * |
| 454 | * !HBP + !HEL2 -> use direct vectors |
| 455 | * HBP + !HEL2 -> use hardened vectors in place |
| 456 | * !HBP + HEL2 -> allocate one vector slot and use exec mapping |
| 457 | * HBP + HEL2 -> use hardened vertors and use exec mapping |
| 458 | */ |
| 459 | if (cpus_have_const_cap(ARM64_HARDEN_BRANCH_PREDICTOR)) { |
| 460 | __kvm_bp_vect_base = kvm_ksym_ref(__bp_harden_hyp_vecs_start); |
| 461 | __kvm_bp_vect_base = kern_hyp_va(__kvm_bp_vect_base); |
| 462 | } |
| 463 | |
| 464 | if (cpus_have_const_cap(ARM64_HARDEN_EL2_VECTORS)) { |
| 465 | phys_addr_t vect_pa = __pa_symbol(__bp_harden_hyp_vecs_start); |
| 466 | unsigned long size = (__bp_harden_hyp_vecs_end - |
| 467 | __bp_harden_hyp_vecs_start); |
| 468 | |
| 469 | /* |
| 470 | * Always allocate a spare vector slot, as we don't |
| 471 | * know yet which CPUs have a BP hardening slot that |
| 472 | * we can reuse. |
| 473 | */ |
| 474 | __kvm_harden_el2_vector_slot = atomic_inc_return(&arm64_el2_vector_last_slot); |
| 475 | BUG_ON(__kvm_harden_el2_vector_slot >= BP_HARDEN_EL2_SLOTS); |
| 476 | return create_hyp_exec_mappings(vect_pa, size, |
| 477 | &__kvm_bp_vect_base); |
| 478 | } |
| 479 | |
Marc Zyngier | 4340ba8 | 2018-03-14 13:28:50 +0000 | [diff] [blame] | 480 | return 0; |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 481 | } |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 482 | #else |
| 483 | static inline void *kvm_get_hyp_vector(void) |
| 484 | { |
Marc Zyngier | 3c5e812 | 2018-02-12 16:50:19 +0000 | [diff] [blame] | 485 | return kern_hyp_va(kvm_ksym_ref(__kvm_hyp_vector)); |
Marc Zyngier | 6840bdd | 2018-01-03 16:38:35 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | static inline int kvm_map_vectors(void) |
| 489 | { |
| 490 | return 0; |
| 491 | } |
| 492 | #endif |
| 493 | |
Marc Zyngier | 55e3748 | 2018-05-29 13:11:16 +0100 | [diff] [blame] | 494 | #ifdef CONFIG_ARM64_SSBD |
| 495 | DECLARE_PER_CPU_READ_MOSTLY(u64, arm64_ssbd_callback_required); |
| 496 | |
| 497 | static inline int hyp_map_aux_data(void) |
| 498 | { |
| 499 | int cpu, err; |
| 500 | |
| 501 | for_each_possible_cpu(cpu) { |
| 502 | u64 *ptr; |
| 503 | |
| 504 | ptr = per_cpu_ptr(&arm64_ssbd_callback_required, cpu); |
| 505 | err = create_hyp_mappings(ptr, ptr + 1, PAGE_HYP); |
| 506 | if (err) |
| 507 | return err; |
| 508 | } |
| 509 | return 0; |
| 510 | } |
| 511 | #else |
| 512 | static inline int hyp_map_aux_data(void) |
| 513 | { |
| 514 | return 0; |
| 515 | } |
| 516 | #endif |
| 517 | |
Kristina Martsenko | 529c4b0 | 2017-12-13 17:07:18 +0000 | [diff] [blame] | 518 | #define kvm_phys_to_vttbr(addr) phys_to_ttbr(addr) |
| 519 | |
Marc Zyngier | 37c4375 | 2012-12-10 15:35:24 +0000 | [diff] [blame] | 520 | #endif /* __ASSEMBLY__ */ |
| 521 | #endif /* __ARM64_KVM_MMU_H__ */ |