blob: dc351802ff18d55aaeb6d6d4c7d52b0a93921d6d [file] [log] [blame]
Thomas Gleixnerd94d71c2019-05-29 07:12:40 -07001// SPDX-License-Identifier: GPL-2.0-only
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002/*
3 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
4 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05005 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05006
7#include <linux/mman.h>
8#include <linux/kvm_host.h>
9#include <linux/io.h>
Christoffer Dallad361f02012-11-01 17:14:45 +010010#include <linux/hugetlb.h>
James Morse196f8782017-06-20 17:11:48 +010011#include <linux/sched/signal.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050012#include <trace/events/kvm.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050013#include <asm/pgalloc.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050014#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050015#include <asm/kvm_arm.h>
16#include <asm/kvm_mmu.h>
James Morse0db5e022019-01-29 18:48:49 +000017#include <asm/kvm_ras.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050018#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050019#include <asm/kvm_emulate.h>
Marc Zyngier1e947ba2015-01-29 11:59:54 +000020#include <asm/virt.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050021
22#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050023
Marc Zyngier5a677ce2013-04-12 19:12:06 +010024static pgd_t *boot_hyp_pgd;
Marc Zyngier2fb41052013-04-12 19:12:03 +010025static pgd_t *hyp_pgd;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +000026static pgd_t *merged_hyp_pgd;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050027static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
28
Marc Zyngier5a677ce2013-04-12 19:12:06 +010029static unsigned long hyp_idmap_start;
30static unsigned long hyp_idmap_end;
31static phys_addr_t hyp_idmap_vector;
32
Marc Zyngiere3f019b2017-12-04 17:04:38 +000033static unsigned long io_map_base;
34
Christoffer Dall38f791a2014-10-10 12:14:28 +020035#define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
Mark Salter5d4e08c2014-03-28 14:25:19 +000036
Mario Smarduch15a49a42015-01-15 15:58:58 -080037#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
38#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
39
Marc Zyngier6d674e22019-12-11 16:56:48 +000040static bool is_iomap(unsigned long flags)
41{
42 return flags & KVM_S2PTE_FLAG_IS_IOMAP;
43}
44
Mario Smarduch15a49a42015-01-15 15:58:58 -080045static bool memslot_is_logging(struct kvm_memory_slot *memslot)
46{
Mario Smarduch15a49a42015-01-15 15:58:58 -080047 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080048}
49
50/**
51 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
52 * @kvm: pointer to kvm structure.
53 *
54 * Interface to HYP function to flush all VM TLB entries
55 */
56void kvm_flush_remote_tlbs(struct kvm *kvm)
57{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +010058 kvm_call_hyp(__kvm_tlb_flush_vmid, &kvm->arch.mmu);
Mario Smarduch15a49a42015-01-15 15:58:58 -080059}
Christoffer Dallad361f02012-11-01 17:14:45 +010060
Marc Zyngierefaa5b92019-01-02 12:34:25 +000061static void kvm_tlb_flush_vmid_ipa(struct kvm_s2_mmu *mmu, phys_addr_t ipa,
62 int level)
Christoffer Dalld5d81842013-01-20 18:28:07 -050063{
Marc Zyngierefaa5b92019-01-02 12:34:25 +000064 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, mmu, ipa, level);
Christoffer Dalld5d81842013-01-20 18:28:07 -050065}
66
Marc Zyngier363ef892014-12-19 16:48:06 +000067/*
68 * D-Cache management functions. They take the page table entries by
69 * value, as they are flushing the cache using the kernel mapping (or
70 * kmap on 32bit).
71 */
72static void kvm_flush_dcache_pte(pte_t pte)
73{
74 __kvm_flush_dcache_pte(pte);
75}
76
77static void kvm_flush_dcache_pmd(pmd_t pmd)
78{
79 __kvm_flush_dcache_pmd(pmd);
80}
81
82static void kvm_flush_dcache_pud(pud_t pud)
83{
84 __kvm_flush_dcache_pud(pud);
85}
86
Ard Biesheuvele6fab542015-11-10 15:11:20 +010087static bool kvm_is_device_pfn(unsigned long pfn)
88{
89 return !pfn_valid(pfn);
90}
91
Mario Smarduch15a49a42015-01-15 15:58:58 -080092/**
93 * stage2_dissolve_pmd() - clear and flush huge PMD entry
Christoffer Dalla0e50aa2019-01-04 21:09:05 +010094 * @mmu: pointer to mmu structure to operate on
Mario Smarduch15a49a42015-01-15 15:58:58 -080095 * @addr: IPA
96 * @pmd: pmd pointer for IPA
97 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +000098 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs.
Mario Smarduch15a49a42015-01-15 15:58:58 -080099 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100100static void stage2_dissolve_pmd(struct kvm_s2_mmu *mmu, phys_addr_t addr, pmd_t *pmd)
Mario Smarduch15a49a42015-01-15 15:58:58 -0800101{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000102 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800103 return;
104
105 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000106 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Mario Smarduch15a49a42015-01-15 15:58:58 -0800107 put_page(virt_to_page(pmd));
108}
109
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000110/**
111 * stage2_dissolve_pud() - clear and flush huge PUD entry
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100112 * @mmu: pointer to mmu structure to operate on
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000113 * @addr: IPA
114 * @pud: pud pointer for IPA
115 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000116 * Function clears a PUD entry, flushes addr 1st and 2nd stage TLBs.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000117 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100118static void stage2_dissolve_pud(struct kvm_s2_mmu *mmu, phys_addr_t addr, pud_t *pudp)
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000119{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100120 struct kvm *kvm = mmu->kvm;
121
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000122 if (!stage2_pud_huge(kvm, *pudp))
123 return;
124
125 stage2_pud_clear(kvm, pudp);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000126 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000127 put_page(virt_to_page(pudp));
128}
129
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100130static void clear_stage2_pgd_entry(struct kvm_s2_mmu *mmu, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100131{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100132 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700133 p4d_t *p4d_table __maybe_unused = stage2_p4d_offset(kvm, pgd, 0UL);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100134 stage2_pgd_clear(kvm, pgd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000135 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700136 stage2_p4d_free(kvm, p4d_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200137 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100138}
139
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100140static void clear_stage2_p4d_entry(struct kvm_s2_mmu *mmu, p4d_t *p4d, phys_addr_t addr)
Mike Rapoporte9f63762020-06-04 16:46:23 -0700141{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100142 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700143 pud_t *pud_table __maybe_unused = stage2_pud_offset(kvm, p4d, 0);
144 stage2_p4d_clear(kvm, p4d);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000145 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700146 stage2_pud_free(kvm, pud_table);
147 put_page(virt_to_page(p4d));
148}
149
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100150static void clear_stage2_pud_entry(struct kvm_s2_mmu *mmu, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500151{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100152 struct kvm *kvm = mmu->kvm;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100153 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(kvm, pud, 0);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100154
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100155 VM_BUG_ON(stage2_pud_huge(kvm, *pud));
156 stage2_pud_clear(kvm, pud);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000157 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100158 stage2_pmd_free(kvm, pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100159 put_page(virt_to_page(pud));
160}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500161
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100162static void clear_stage2_pmd_entry(struct kvm_s2_mmu *mmu, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100163{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200164 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000165 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200166 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000167 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Anshuman Khandual14b94d02019-03-12 18:55:45 +0530168 free_page((unsigned long)pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100169 put_page(virt_to_page(pmd));
170}
171
Marc Zyngier88dc25e82018-05-25 12:23:11 +0100172static inline void kvm_set_pte(pte_t *ptep, pte_t new_pte)
173{
174 WRITE_ONCE(*ptep, new_pte);
175 dsb(ishst);
176}
177
178static inline void kvm_set_pmd(pmd_t *pmdp, pmd_t new_pmd)
179{
180 WRITE_ONCE(*pmdp, new_pmd);
181 dsb(ishst);
182}
183
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100184static inline void kvm_pmd_populate(pmd_t *pmdp, pte_t *ptep)
185{
186 kvm_set_pmd(pmdp, kvm_mk_pmd(ptep));
187}
188
189static inline void kvm_pud_populate(pud_t *pudp, pmd_t *pmdp)
190{
191 WRITE_ONCE(*pudp, kvm_mk_pud(pmdp));
192 dsb(ishst);
193}
194
Mike Rapoporte9f63762020-06-04 16:46:23 -0700195static inline void kvm_p4d_populate(p4d_t *p4dp, pud_t *pudp)
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100196{
Mike Rapoporte9f63762020-06-04 16:46:23 -0700197 WRITE_ONCE(*p4dp, kvm_mk_p4d(pudp));
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100198 dsb(ishst);
199}
200
Mike Rapoporte9f63762020-06-04 16:46:23 -0700201static inline void kvm_pgd_populate(pgd_t *pgdp, p4d_t *p4dp)
202{
203#ifndef __PAGETABLE_P4D_FOLDED
204 WRITE_ONCE(*pgdp, kvm_mk_pgd(p4dp));
205 dsb(ishst);
206#endif
207}
208
Marc Zyngier363ef892014-12-19 16:48:06 +0000209/*
210 * Unmapping vs dcache management:
211 *
212 * If a guest maps certain memory pages as uncached, all writes will
213 * bypass the data cache and go directly to RAM. However, the CPUs
214 * can still speculate reads (not writes) and fill cache lines with
215 * data.
216 *
217 * Those cache lines will be *clean* cache lines though, so a
218 * clean+invalidate operation is equivalent to an invalidate
219 * operation, because no cache lines are marked dirty.
220 *
221 * Those clean cache lines could be filled prior to an uncached write
222 * by the guest, and the cache coherent IO subsystem would therefore
223 * end up writing old data to disk.
224 *
225 * This is why right after unmapping a page/section and invalidating
226 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
227 * the IO subsystem will never hit in the cache.
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100228 *
229 * This is all avoided on systems that have ARM64_HAS_STAGE2_FWB, as
230 * we then fully enforce cacheability of RAM, no matter what the guest
231 * does.
Marc Zyngier363ef892014-12-19 16:48:06 +0000232 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100233static void unmap_stage2_ptes(struct kvm_s2_mmu *mmu, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200234 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100235{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200236 phys_addr_t start_addr = addr;
237 pte_t *pte, *start_pte;
238
239 start_pte = pte = pte_offset_kernel(pmd, addr);
240 do {
241 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000242 pte_t old_pte = *pte;
243
Christoffer Dall4f853a72014-05-09 23:31:31 +0200244 kvm_set_pte(pte, __pte(0));
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000245 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PTE_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000246
247 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100248 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000249 kvm_flush_dcache_pte(old_pte);
250
251 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200252 }
253 } while (pte++, addr += PAGE_SIZE, addr != end);
254
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100255 if (stage2_pte_table_empty(mmu->kvm, start_pte))
256 clear_stage2_pmd_entry(mmu, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500257}
258
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100259static void unmap_stage2_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200260 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500261{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100262 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200263 phys_addr_t next, start_addr = addr;
264 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000265
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100266 start_pmd = pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200267 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100268 next = stage2_pmd_addr_end(kvm, addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200269 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000270 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000271 pmd_t old_pmd = *pmd;
272
Christoffer Dall4f853a72014-05-09 23:31:31 +0200273 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000274 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000275
276 kvm_flush_dcache_pmd(old_pmd);
277
Christoffer Dall4f853a72014-05-09 23:31:31 +0200278 put_page(virt_to_page(pmd));
279 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100280 unmap_stage2_ptes(mmu, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100281 }
282 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200283 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100284
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100285 if (stage2_pmd_table_empty(kvm, start_pmd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100286 clear_stage2_pud_entry(mmu, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200287}
288
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100289static void unmap_stage2_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200290 phys_addr_t addr, phys_addr_t end)
291{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100292 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200293 phys_addr_t next, start_addr = addr;
294 pud_t *pud, *start_pud;
295
Mike Rapoporte9f63762020-06-04 16:46:23 -0700296 start_pud = pud = stage2_pud_offset(kvm, p4d, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200297 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100298 next = stage2_pud_addr_end(kvm, addr, end);
299 if (!stage2_pud_none(kvm, *pud)) {
300 if (stage2_pud_huge(kvm, *pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000301 pud_t old_pud = *pud;
302
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100303 stage2_pud_clear(kvm, pud);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000304 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000305 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200306 put_page(virt_to_page(pud));
307 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100308 unmap_stage2_pmds(mmu, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200309 }
310 }
311 } while (pud++, addr = next, addr != end);
312
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100313 if (stage2_pud_table_empty(kvm, start_pud))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100314 clear_stage2_p4d_entry(mmu, p4d, start_addr);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700315}
316
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100317static void unmap_stage2_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -0700318 phys_addr_t addr, phys_addr_t end)
319{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100320 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700321 phys_addr_t next, start_addr = addr;
322 p4d_t *p4d, *start_p4d;
323
324 start_p4d = p4d = stage2_p4d_offset(kvm, pgd, addr);
325 do {
326 next = stage2_p4d_addr_end(kvm, addr, end);
327 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100328 unmap_stage2_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700329 } while (p4d++, addr = next, addr != end);
330
331 if (stage2_p4d_table_empty(kvm, start_p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100332 clear_stage2_pgd_entry(mmu, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200333}
334
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000335/**
336 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
337 * @kvm: The VM pointer
338 * @start: The intermediate physical base address of the range to unmap
339 * @size: The size of the area to unmap
340 *
341 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
342 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
343 * destroying the VM), otherwise another faulting VCPU may come in and mess
344 * with things behind our backs.
345 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100346static void unmap_stage2_range(struct kvm_s2_mmu *mmu, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200347{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100348 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200349 pgd_t *pgd;
350 phys_addr_t addr = start, end = start + size;
351 phys_addr_t next;
352
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100353 assert_spin_locked(&kvm->mmu_lock);
Jia He47a91b72018-05-21 11:05:30 +0800354 WARN_ON(size & ~PAGE_MASK);
355
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100356 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200357 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100358 /*
359 * Make sure the page table is still active, as another thread
360 * could have possibly freed the page table, while we released
361 * the lock.
362 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100363 if (!READ_ONCE(mmu->pgd))
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100364 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100365 next = stage2_pgd_addr_end(kvm, addr, end);
366 if (!stage2_pgd_none(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100367 unmap_stage2_p4ds(mmu, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100368 /*
369 * If the range is too large, release the kvm->mmu_lock
370 * to prevent starvation and lockup detector warnings.
371 */
372 if (next != end)
373 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200374 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000375}
376
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100377static void stage2_flush_ptes(struct kvm_s2_mmu *mmu, pmd_t *pmd,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000378 phys_addr_t addr, phys_addr_t end)
379{
380 pte_t *pte;
381
382 pte = pte_offset_kernel(pmd, addr);
383 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100384 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000385 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000386 } while (pte++, addr += PAGE_SIZE, addr != end);
387}
388
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100389static void stage2_flush_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000390 phys_addr_t addr, phys_addr_t end)
391{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100392 struct kvm *kvm = mmu->kvm;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000393 pmd_t *pmd;
394 phys_addr_t next;
395
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100396 pmd = stage2_pmd_offset(kvm, pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000397 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100398 next = stage2_pmd_addr_end(kvm, addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000399 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000400 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000401 kvm_flush_dcache_pmd(*pmd);
402 else
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100403 stage2_flush_ptes(mmu, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000404 }
405 } while (pmd++, addr = next, addr != end);
406}
407
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100408static void stage2_flush_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000409 phys_addr_t addr, phys_addr_t end)
410{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100411 struct kvm *kvm = mmu->kvm;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000412 pud_t *pud;
413 phys_addr_t next;
414
Mike Rapoporte9f63762020-06-04 16:46:23 -0700415 pud = stage2_pud_offset(kvm, p4d, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000416 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100417 next = stage2_pud_addr_end(kvm, addr, end);
418 if (!stage2_pud_none(kvm, *pud)) {
419 if (stage2_pud_huge(kvm, *pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000420 kvm_flush_dcache_pud(*pud);
421 else
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100422 stage2_flush_pmds(mmu, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000423 }
424 } while (pud++, addr = next, addr != end);
425}
426
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100427static void stage2_flush_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -0700428 phys_addr_t addr, phys_addr_t end)
429{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100430 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700431 p4d_t *p4d;
432 phys_addr_t next;
433
434 p4d = stage2_p4d_offset(kvm, pgd, addr);
435 do {
436 next = stage2_p4d_addr_end(kvm, addr, end);
437 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100438 stage2_flush_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700439 } while (p4d++, addr = next, addr != end);
440}
441
Marc Zyngier9d218a12014-01-15 12:50:23 +0000442static void stage2_flush_memslot(struct kvm *kvm,
443 struct kvm_memory_slot *memslot)
444{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100445 struct kvm_s2_mmu *mmu = &kvm->arch.mmu;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000446 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
447 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
448 phys_addr_t next;
449 pgd_t *pgd;
450
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100451 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000452 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100453 next = stage2_pgd_addr_end(kvm, addr, end);
454 if (!stage2_pgd_none(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100455 stage2_flush_p4ds(mmu, pgd, addr, next);
Jiang Yi48c963e2020-04-15 10:42:29 +0200456
457 if (next != end)
458 cond_resched_lock(&kvm->mmu_lock);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000459 } while (pgd++, addr = next, addr != end);
460}
461
462/**
463 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
464 * @kvm: The struct kvm pointer
465 *
466 * Go through the stage 2 page tables and invalidate any cache lines
467 * backing memory already mapped to the VM.
468 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000469static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000470{
471 struct kvm_memslots *slots;
472 struct kvm_memory_slot *memslot;
473 int idx;
474
475 idx = srcu_read_lock(&kvm->srcu);
476 spin_lock(&kvm->mmu_lock);
477
478 slots = kvm_memslots(kvm);
479 kvm_for_each_memslot(memslot, slots)
480 stage2_flush_memslot(kvm, memslot);
481
482 spin_unlock(&kvm->mmu_lock);
483 srcu_read_unlock(&kvm->srcu, idx);
484}
485
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000486static void clear_hyp_pgd_entry(pgd_t *pgd)
487{
Mike Rapoporte9f63762020-06-04 16:46:23 -0700488 p4d_t *p4d_table __maybe_unused = p4d_offset(pgd, 0UL);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000489 pgd_clear(pgd);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700490 p4d_free(NULL, p4d_table);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000491 put_page(virt_to_page(pgd));
492}
493
Mike Rapoporte9f63762020-06-04 16:46:23 -0700494static void clear_hyp_p4d_entry(p4d_t *p4d)
495{
496 pud_t *pud_table __maybe_unused = pud_offset(p4d, 0UL);
497 VM_BUG_ON(p4d_huge(*p4d));
498 p4d_clear(p4d);
499 pud_free(NULL, pud_table);
500 put_page(virt_to_page(p4d));
501}
502
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000503static void clear_hyp_pud_entry(pud_t *pud)
504{
505 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
506 VM_BUG_ON(pud_huge(*pud));
507 pud_clear(pud);
508 pmd_free(NULL, pmd_table);
509 put_page(virt_to_page(pud));
510}
511
512static void clear_hyp_pmd_entry(pmd_t *pmd)
513{
514 pte_t *pte_table = pte_offset_kernel(pmd, 0);
515 VM_BUG_ON(pmd_thp_or_huge(*pmd));
516 pmd_clear(pmd);
517 pte_free_kernel(NULL, pte_table);
518 put_page(virt_to_page(pmd));
519}
520
521static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
522{
523 pte_t *pte, *start_pte;
524
525 start_pte = pte = pte_offset_kernel(pmd, addr);
526 do {
527 if (!pte_none(*pte)) {
528 kvm_set_pte(pte, __pte(0));
529 put_page(virt_to_page(pte));
530 }
531 } while (pte++, addr += PAGE_SIZE, addr != end);
532
533 if (hyp_pte_table_empty(start_pte))
534 clear_hyp_pmd_entry(pmd);
535}
536
537static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
538{
539 phys_addr_t next;
540 pmd_t *pmd, *start_pmd;
541
542 start_pmd = pmd = pmd_offset(pud, addr);
543 do {
544 next = pmd_addr_end(addr, end);
545 /* Hyp doesn't use huge pmds */
546 if (!pmd_none(*pmd))
547 unmap_hyp_ptes(pmd, addr, next);
548 } while (pmd++, addr = next, addr != end);
549
550 if (hyp_pmd_table_empty(start_pmd))
551 clear_hyp_pud_entry(pud);
552}
553
Mike Rapoporte9f63762020-06-04 16:46:23 -0700554static void unmap_hyp_puds(p4d_t *p4d, phys_addr_t addr, phys_addr_t end)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000555{
556 phys_addr_t next;
557 pud_t *pud, *start_pud;
558
Mike Rapoporte9f63762020-06-04 16:46:23 -0700559 start_pud = pud = pud_offset(p4d, addr);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000560 do {
561 next = pud_addr_end(addr, end);
562 /* Hyp doesn't use huge puds */
563 if (!pud_none(*pud))
564 unmap_hyp_pmds(pud, addr, next);
565 } while (pud++, addr = next, addr != end);
566
567 if (hyp_pud_table_empty(start_pud))
Mike Rapoporte9f63762020-06-04 16:46:23 -0700568 clear_hyp_p4d_entry(p4d);
569}
570
571static void unmap_hyp_p4ds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
572{
573 phys_addr_t next;
574 p4d_t *p4d, *start_p4d;
575
576 start_p4d = p4d = p4d_offset(pgd, addr);
577 do {
578 next = p4d_addr_end(addr, end);
579 /* Hyp doesn't use huge p4ds */
580 if (!p4d_none(*p4d))
581 unmap_hyp_puds(p4d, addr, next);
582 } while (p4d++, addr = next, addr != end);
583
584 if (hyp_p4d_table_empty(start_p4d))
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000585 clear_hyp_pgd_entry(pgd);
586}
587
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000588static unsigned int kvm_pgd_index(unsigned long addr, unsigned int ptrs_per_pgd)
589{
590 return (addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1);
591}
592
593static void __unmap_hyp_range(pgd_t *pgdp, unsigned long ptrs_per_pgd,
594 phys_addr_t start, u64 size)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000595{
596 pgd_t *pgd;
597 phys_addr_t addr = start, end = start + size;
598 phys_addr_t next;
599
600 /*
601 * We don't unmap anything from HYP, except at the hyp tear down.
602 * Hence, we don't have to invalidate the TLBs here.
603 */
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000604 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000605 do {
606 next = pgd_addr_end(addr, end);
607 if (!pgd_none(*pgd))
Mike Rapoporte9f63762020-06-04 16:46:23 -0700608 unmap_hyp_p4ds(pgd, addr, next);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000609 } while (pgd++, addr = next, addr != end);
610}
611
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000612static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
613{
614 __unmap_hyp_range(pgdp, PTRS_PER_PGD, start, size);
615}
616
617static void unmap_hyp_idmap_range(pgd_t *pgdp, phys_addr_t start, u64 size)
618{
619 __unmap_hyp_range(pgdp, __kvm_idmap_ptrs_per_pgd(), start, size);
620}
621
Marc Zyngier000d3992013-03-05 02:43:17 +0000622/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100623 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000624 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100625 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
626 * therefore contains either mappings in the kernel memory area (above
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000627 * PAGE_OFFSET), or device mappings in the idmap range.
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100628 *
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000629 * boot_hyp_pgd should only map the idmap range, and is only used in
630 * the extended idmap case.
Marc Zyngier000d3992013-03-05 02:43:17 +0000631 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100632void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000633{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000634 pgd_t *id_pgd;
635
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100636 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100637
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000638 id_pgd = boot_hyp_pgd ? boot_hyp_pgd : hyp_pgd;
639
640 if (id_pgd) {
641 /* In case we never called hyp_mmu_init() */
642 if (!io_map_base)
643 io_map_base = hyp_idmap_start;
644 unmap_hyp_idmap_range(id_pgd, io_map_base,
645 hyp_idmap_start + PAGE_SIZE - io_map_base);
646 }
647
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100648 if (boot_hyp_pgd) {
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100649 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
650 boot_hyp_pgd = NULL;
651 }
652
Marc Zyngier4f728272013-04-12 19:12:05 +0100653 if (hyp_pgd) {
Marc Zyngier7839c672017-12-07 11:45:45 +0000654 unmap_hyp_range(hyp_pgd, kern_hyp_va(PAGE_OFFSET),
655 (uintptr_t)high_memory - PAGE_OFFSET);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100656
Christoffer Dall38f791a2014-10-10 12:14:28 +0200657 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100658 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100659 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000660 if (merged_hyp_pgd) {
661 clear_page(merged_hyp_pgd);
662 free_page((unsigned long)merged_hyp_pgd);
663 merged_hyp_pgd = NULL;
664 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100665
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500666 mutex_unlock(&kvm_hyp_pgd_mutex);
667}
668
669static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100670 unsigned long end, unsigned long pfn,
671 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500672{
673 pte_t *pte;
674 unsigned long addr;
675
Marc Zyngier3562c762013-04-12 19:12:02 +0100676 addr = start;
677 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100678 pte = pte_offset_kernel(pmd, addr);
Punit Agrawalf8df7332018-12-11 17:10:36 +0000679 kvm_set_pte(pte, kvm_pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100680 get_page(virt_to_page(pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100681 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100682 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500683}
684
685static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100686 unsigned long end, unsigned long pfn,
687 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500688{
689 pmd_t *pmd;
690 pte_t *pte;
691 unsigned long addr, next;
692
Marc Zyngier3562c762013-04-12 19:12:02 +0100693 addr = start;
694 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100695 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500696
697 BUG_ON(pmd_sect(*pmd));
698
699 if (pmd_none(*pmd)) {
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -0800700 pte = pte_alloc_one_kernel(NULL);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500701 if (!pte) {
702 kvm_err("Cannot allocate Hyp pte\n");
703 return -ENOMEM;
704 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100705 kvm_pmd_populate(pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100706 get_page(virt_to_page(pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500707 }
708
709 next = pmd_addr_end(addr, end);
710
Marc Zyngier6060df82013-04-12 19:12:01 +0100711 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
712 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100713 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500714
715 return 0;
716}
717
Mike Rapoporte9f63762020-06-04 16:46:23 -0700718static int create_hyp_pud_mappings(p4d_t *p4d, unsigned long start,
Christoffer Dall38f791a2014-10-10 12:14:28 +0200719 unsigned long end, unsigned long pfn,
720 pgprot_t prot)
721{
722 pud_t *pud;
723 pmd_t *pmd;
724 unsigned long addr, next;
725 int ret;
726
727 addr = start;
728 do {
Mike Rapoporte9f63762020-06-04 16:46:23 -0700729 pud = pud_offset(p4d, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200730
731 if (pud_none_or_clear_bad(pud)) {
732 pmd = pmd_alloc_one(NULL, addr);
733 if (!pmd) {
734 kvm_err("Cannot allocate Hyp pmd\n");
735 return -ENOMEM;
736 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100737 kvm_pud_populate(pud, pmd);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200738 get_page(virt_to_page(pud));
Christoffer Dall38f791a2014-10-10 12:14:28 +0200739 }
740
741 next = pud_addr_end(addr, end);
742 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
743 if (ret)
744 return ret;
745 pfn += (next - addr) >> PAGE_SHIFT;
746 } while (addr = next, addr != end);
747
748 return 0;
749}
750
Mike Rapoporte9f63762020-06-04 16:46:23 -0700751static int create_hyp_p4d_mappings(pgd_t *pgd, unsigned long start,
752 unsigned long end, unsigned long pfn,
753 pgprot_t prot)
754{
755 p4d_t *p4d;
756 pud_t *pud;
757 unsigned long addr, next;
758 int ret;
759
760 addr = start;
761 do {
762 p4d = p4d_offset(pgd, addr);
763
764 if (p4d_none(*p4d)) {
765 pud = pud_alloc_one(NULL, addr);
766 if (!pud) {
767 kvm_err("Cannot allocate Hyp pud\n");
768 return -ENOMEM;
769 }
770 kvm_p4d_populate(p4d, pud);
771 get_page(virt_to_page(p4d));
772 }
773
774 next = p4d_addr_end(addr, end);
775 ret = create_hyp_pud_mappings(p4d, addr, next, pfn, prot);
776 if (ret)
777 return ret;
778 pfn += (next - addr) >> PAGE_SHIFT;
779 } while (addr = next, addr != end);
780
781 return 0;
782}
783
Kristina Martsenko98732d12018-01-15 15:23:49 +0000784static int __create_hyp_mappings(pgd_t *pgdp, unsigned long ptrs_per_pgd,
Marc Zyngier6060df82013-04-12 19:12:01 +0100785 unsigned long start, unsigned long end,
786 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500787{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500788 pgd_t *pgd;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700789 p4d_t *p4d;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500790 unsigned long addr, next;
791 int err = 0;
792
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500793 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100794 addr = start & PAGE_MASK;
795 end = PAGE_ALIGN(end);
796 do {
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000797 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500798
Christoffer Dall38f791a2014-10-10 12:14:28 +0200799 if (pgd_none(*pgd)) {
Mike Rapoporte9f63762020-06-04 16:46:23 -0700800 p4d = p4d_alloc_one(NULL, addr);
801 if (!p4d) {
802 kvm_err("Cannot allocate Hyp p4d\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500803 err = -ENOMEM;
804 goto out;
805 }
Mike Rapoporte9f63762020-06-04 16:46:23 -0700806 kvm_pgd_populate(pgd, p4d);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200807 get_page(virt_to_page(pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500808 }
809
810 next = pgd_addr_end(addr, end);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700811 err = create_hyp_p4d_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500812 if (err)
813 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100814 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100815 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500816out:
817 mutex_unlock(&kvm_hyp_pgd_mutex);
818 return err;
819}
820
Christoffer Dall40c27292013-11-15 13:14:12 -0800821static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
822{
823 if (!is_vmalloc_addr(kaddr)) {
824 BUG_ON(!virt_addr_valid(kaddr));
825 return __pa(kaddr);
826 } else {
827 return page_to_phys(vmalloc_to_page(kaddr)) +
828 offset_in_page(kaddr);
829 }
830}
831
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500832/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100833 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500834 * @from: The virtual kernel start address of the range
835 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100836 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500837 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100838 * The same virtual address as the kernel virtual address is also used
839 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
840 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500841 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100842int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500843{
Christoffer Dall40c27292013-11-15 13:14:12 -0800844 phys_addr_t phys_addr;
845 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100846 unsigned long start = kern_hyp_va((unsigned long)from);
847 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100848
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000849 if (is_kernel_in_hyp_mode())
850 return 0;
851
Christoffer Dall40c27292013-11-15 13:14:12 -0800852 start = start & PAGE_MASK;
853 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100854
Christoffer Dall40c27292013-11-15 13:14:12 -0800855 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
856 int err;
857
858 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Kristina Martsenko98732d12018-01-15 15:23:49 +0000859 err = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD,
860 virt_addr, virt_addr + PAGE_SIZE,
Christoffer Dall40c27292013-11-15 13:14:12 -0800861 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100862 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800863 if (err)
864 return err;
865 }
866
867 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500868}
869
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000870static int __create_hyp_private_mapping(phys_addr_t phys_addr, size_t size,
871 unsigned long *haddr, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500872{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000873 pgd_t *pgd = hyp_pgd;
874 unsigned long base;
875 int ret = 0;
Marc Zyngier6060df82013-04-12 19:12:01 +0100876
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000877 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier6060df82013-04-12 19:12:01 +0100878
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000879 /*
Fuad Tabba656012c2020-04-01 15:03:10 +0100880 * This assumes that we have enough space below the idmap
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000881 * page to allocate our VAs. If not, the check below will
882 * kick. A potential alternative would be to detect that
883 * overflow and switch to an allocation above the idmap.
884 *
885 * The allocated size is always a multiple of PAGE_SIZE.
886 */
887 size = PAGE_ALIGN(size + offset_in_page(phys_addr));
888 base = io_map_base - size;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000889
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000890 /*
891 * Verify that BIT(VA_BITS - 1) hasn't been flipped by
892 * allocating the new area, as it would indicate we've
893 * overflowed the idmap/IO address range.
894 */
895 if ((base ^ io_map_base) & BIT(VA_BITS - 1))
896 ret = -ENOMEM;
897 else
898 io_map_base = base;
899
900 mutex_unlock(&kvm_hyp_pgd_mutex);
901
902 if (ret)
903 goto out;
904
905 if (__kvm_cpu_uses_extended_idmap())
906 pgd = boot_hyp_pgd;
907
908 ret = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
909 base, base + size,
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000910 __phys_to_pfn(phys_addr), prot);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000911 if (ret)
912 goto out;
913
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000914 *haddr = base + offset_in_page(phys_addr);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000915
916out:
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000917 return ret;
918}
919
920/**
921 * create_hyp_io_mappings - Map IO into both kernel and HYP
922 * @phys_addr: The physical start address which gets mapped
923 * @size: Size of the region being mapped
924 * @kaddr: Kernel VA for this mapping
925 * @haddr: HYP VA for this mapping
926 */
927int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
928 void __iomem **kaddr,
929 void __iomem **haddr)
930{
931 unsigned long addr;
932 int ret;
933
934 *kaddr = ioremap(phys_addr, size);
935 if (!*kaddr)
936 return -ENOMEM;
937
938 if (is_kernel_in_hyp_mode()) {
939 *haddr = *kaddr;
940 return 0;
941 }
942
943 ret = __create_hyp_private_mapping(phys_addr, size,
944 &addr, PAGE_HYP_DEVICE);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000945 if (ret) {
946 iounmap(*kaddr);
947 *kaddr = NULL;
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000948 *haddr = NULL;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000949 return ret;
950 }
951
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000952 *haddr = (void __iomem *)addr;
953 return 0;
954}
955
956/**
957 * create_hyp_exec_mappings - Map an executable range into HYP
958 * @phys_addr: The physical start address which gets mapped
959 * @size: Size of the region being mapped
960 * @haddr: HYP VA for this mapping
961 */
962int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size,
963 void **haddr)
964{
965 unsigned long addr;
966 int ret;
967
968 BUG_ON(is_kernel_in_hyp_mode());
969
970 ret = __create_hyp_private_mapping(phys_addr, size,
971 &addr, PAGE_HYP_EXEC);
972 if (ret) {
973 *haddr = NULL;
974 return ret;
975 }
976
977 *haddr = (void *)addr;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000978 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500979}
980
Christoffer Dalld5d81842013-01-20 18:28:07 -0500981/**
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100982 * kvm_init_stage2_mmu - Initialise a S2 MMU strucrure
983 * @kvm: The pointer to the KVM structure
984 * @mmu: The pointer to the s2 MMU structure
Christoffer Dalld5d81842013-01-20 18:28:07 -0500985 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000986 * Allocates only the stage-2 HW PGD level table(s) of size defined by
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100987 * stage2_pgd_size(mmu->kvm).
Christoffer Dalld5d81842013-01-20 18:28:07 -0500988 *
989 * Note we don't need locking here as this is only called when the VM is
990 * created, which can only be done once.
991 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100992int kvm_init_stage2_mmu(struct kvm *kvm, struct kvm_s2_mmu *mmu)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500993{
Christoffer Dalle329fb72018-12-11 15:26:31 +0100994 phys_addr_t pgd_phys;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500995 pgd_t *pgd;
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100996 int cpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500997
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100998 if (mmu->pgd != NULL) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500999 kvm_err("kvm_arch already initialized?\n");
1000 return -EINVAL;
1001 }
1002
Suzuki K Poulose9163ee232016-03-22 17:01:21 +00001003 /* Allocate the HW PGD, making sure that each page gets its own refcount */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001004 pgd = alloc_pages_exact(stage2_pgd_size(kvm), GFP_KERNEL | __GFP_ZERO);
Suzuki K Poulose9163ee232016-03-22 17:01:21 +00001005 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +00001006 return -ENOMEM;
1007
Christoffer Dalle329fb72018-12-11 15:26:31 +01001008 pgd_phys = virt_to_phys(pgd);
1009 if (WARN_ON(pgd_phys & ~kvm_vttbr_baddr_mask(kvm)))
1010 return -EINVAL;
1011
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001012 mmu->last_vcpu_ran = alloc_percpu(typeof(*mmu->last_vcpu_ran));
1013 if (!mmu->last_vcpu_ran) {
1014 free_pages_exact(pgd, stage2_pgd_size(kvm));
1015 return -ENOMEM;
1016 }
1017
1018 for_each_possible_cpu(cpu)
1019 *per_cpu_ptr(mmu->last_vcpu_ran, cpu) = -1;
1020
1021 mmu->kvm = kvm;
1022 mmu->pgd = pgd;
1023 mmu->pgd_phys = pgd_phys;
1024 mmu->vmid.vmid_gen = 0;
1025
Christoffer Dalld5d81842013-01-20 18:28:07 -05001026 return 0;
1027}
1028
Christoffer Dall957db102014-11-27 10:35:03 +01001029static void stage2_unmap_memslot(struct kvm *kvm,
1030 struct kvm_memory_slot *memslot)
1031{
1032 hva_t hva = memslot->userspace_addr;
1033 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
1034 phys_addr_t size = PAGE_SIZE * memslot->npages;
1035 hva_t reg_end = hva + size;
1036
1037 /*
1038 * A memory region could potentially cover multiple VMAs, and any holes
1039 * between them, so iterate over all of them to find out if we should
1040 * unmap any of them.
1041 *
1042 * +--------------------------------------------+
1043 * +---------------+----------------+ +----------------+
1044 * | : VMA 1 | VMA 2 | | VMA 3 : |
1045 * +---------------+----------------+ +----------------+
1046 * | memory region |
1047 * +--------------------------------------------+
1048 */
1049 do {
1050 struct vm_area_struct *vma = find_vma(current->mm, hva);
1051 hva_t vm_start, vm_end;
1052
1053 if (!vma || vma->vm_start >= reg_end)
1054 break;
1055
1056 /*
1057 * Take the intersection of this VMA with the memory region
1058 */
1059 vm_start = max(hva, vma->vm_start);
1060 vm_end = min(reg_end, vma->vm_end);
1061
1062 if (!(vma->vm_flags & VM_PFNMAP)) {
1063 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001064 unmap_stage2_range(&kvm->arch.mmu, gpa, vm_end - vm_start);
Christoffer Dall957db102014-11-27 10:35:03 +01001065 }
1066 hva = vm_end;
1067 } while (hva < reg_end);
1068}
1069
1070/**
1071 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
1072 * @kvm: The struct kvm pointer
1073 *
Fuad Tabba656012c2020-04-01 15:03:10 +01001074 * Go through the memregions and unmap any regular RAM
Christoffer Dall957db102014-11-27 10:35:03 +01001075 * backing memory already mapped to the VM.
1076 */
1077void stage2_unmap_vm(struct kvm *kvm)
1078{
1079 struct kvm_memslots *slots;
1080 struct kvm_memory_slot *memslot;
1081 int idx;
1082
1083 idx = srcu_read_lock(&kvm->srcu);
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001084 mmap_read_lock(current->mm);
Christoffer Dall957db102014-11-27 10:35:03 +01001085 spin_lock(&kvm->mmu_lock);
1086
1087 slots = kvm_memslots(kvm);
1088 kvm_for_each_memslot(memslot, slots)
1089 stage2_unmap_memslot(kvm, memslot);
1090
1091 spin_unlock(&kvm->mmu_lock);
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001092 mmap_read_unlock(current->mm);
Christoffer Dall957db102014-11-27 10:35:03 +01001093 srcu_read_unlock(&kvm->srcu, idx);
1094}
1095
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001096void kvm_free_stage2_pgd(struct kvm_s2_mmu *mmu)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001097{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001098 struct kvm *kvm = mmu->kvm;
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001099 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001100
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +01001101 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001102 if (mmu->pgd) {
1103 unmap_stage2_range(mmu, 0, kvm_phys_size(kvm));
1104 pgd = READ_ONCE(mmu->pgd);
1105 mmu->pgd = NULL;
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001106 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +01001107 spin_unlock(&kvm->mmu_lock);
1108
Suzuki K Poulose9163ee232016-03-22 17:01:21 +00001109 /* Free the HW pgd, one page at a time */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001110 if (pgd) {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001111 free_pages_exact(pgd, stage2_pgd_size(kvm));
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001112 free_percpu(mmu->last_vcpu_ran);
1113 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001114}
1115
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001116static p4d_t *stage2_get_p4d(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Christoffer Dall38f791a2014-10-10 12:14:28 +02001117 phys_addr_t addr)
1118{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001119 struct kvm *kvm = mmu->kvm;
Christoffer Dall38f791a2014-10-10 12:14:28 +02001120 pgd_t *pgd;
Mike Rapoporte9f63762020-06-04 16:46:23 -07001121 p4d_t *p4d;
Christoffer Dall38f791a2014-10-10 12:14:28 +02001122
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001123 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001124 if (stage2_pgd_none(kvm, *pgd)) {
Christoffer Dall38f791a2014-10-10 12:14:28 +02001125 if (!cache)
1126 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001127 p4d = kvm_mmu_memory_cache_alloc(cache);
Mike Rapoporte9f63762020-06-04 16:46:23 -07001128 stage2_pgd_populate(kvm, pgd, p4d);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001129 get_page(virt_to_page(pgd));
1130 }
1131
Mike Rapoporte9f63762020-06-04 16:46:23 -07001132 return stage2_p4d_offset(kvm, pgd, addr);
1133}
1134
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001135static pud_t *stage2_get_pud(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Mike Rapoporte9f63762020-06-04 16:46:23 -07001136 phys_addr_t addr)
1137{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001138 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -07001139 p4d_t *p4d;
1140 pud_t *pud;
1141
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001142 p4d = stage2_get_p4d(mmu, cache, addr);
Mike Rapoporte9f63762020-06-04 16:46:23 -07001143 if (stage2_p4d_none(kvm, *p4d)) {
1144 if (!cache)
1145 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001146 pud = kvm_mmu_memory_cache_alloc(cache);
Mike Rapoporte9f63762020-06-04 16:46:23 -07001147 stage2_p4d_populate(kvm, p4d, pud);
1148 get_page(virt_to_page(p4d));
1149 }
1150
1151 return stage2_pud_offset(kvm, p4d, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001152}
1153
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001154static pmd_t *stage2_get_pmd(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Christoffer Dallad361f02012-11-01 17:14:45 +01001155 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001156{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001157 struct kvm *kvm = mmu->kvm;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001158 pud_t *pud;
1159 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001160
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001161 pud = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001162 if (!pud || stage2_pud_huge(kvm, *pud))
Marc Zyngierd6dbdd32017-06-05 19:17:18 +01001163 return NULL;
1164
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001165 if (stage2_pud_none(kvm, *pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001166 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +01001167 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001168 pmd = kvm_mmu_memory_cache_alloc(cache);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001169 stage2_pud_populate(kvm, pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001170 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001171 }
1172
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001173 return stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001174}
Christoffer Dalld5d81842013-01-20 18:28:07 -05001175
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001176static int stage2_set_pmd_huge(struct kvm_s2_mmu *mmu,
1177 struct kvm_mmu_memory_cache *cache,
1178 phys_addr_t addr, const pmd_t *new_pmd)
Christoffer Dallad361f02012-11-01 17:14:45 +01001179{
1180 pmd_t *pmd, old_pmd;
1181
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001182retry:
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001183 pmd = stage2_get_pmd(mmu, cache, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001184 VM_BUG_ON(!pmd);
1185
Christoffer Dallad361f02012-11-01 17:14:45 +01001186 old_pmd = *pmd;
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001187 /*
1188 * Multiple vcpus faulting on the same PMD entry, can
1189 * lead to them sequentially updating the PMD with the
1190 * same value. Following the break-before-make
1191 * (pmd_clear() followed by tlb_flush()) process can
1192 * hinder forward progress due to refaults generated
1193 * on missing translations.
1194 *
1195 * Skip updating the page table if the entry is
1196 * unchanged.
1197 */
1198 if (pmd_val(old_pmd) == pmd_val(*new_pmd))
1199 return 0;
1200
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001201 if (pmd_present(old_pmd)) {
Punit Agrawal86658b82018-08-13 11:43:50 +01001202 /*
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001203 * If we already have PTE level mapping for this block,
1204 * we must unmap it to avoid inconsistent TLB state and
1205 * leaking the table page. We could end up in this situation
1206 * if the memory slot was marked for dirty logging and was
1207 * reverted, leaving PTE level mappings for the pages accessed
1208 * during the period. So, unmap the PTE level mapping for this
1209 * block and retry, as we could have released the upper level
1210 * table in the process.
Punit Agrawal86658b82018-08-13 11:43:50 +01001211 *
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001212 * Normal THP split/merge follows mmu_notifier callbacks and do
1213 * get handled accordingly.
Punit Agrawal86658b82018-08-13 11:43:50 +01001214 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001215 if (!pmd_thp_or_huge(old_pmd)) {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001216 unmap_stage2_range(mmu, addr & S2_PMD_MASK, S2_PMD_SIZE);
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001217 goto retry;
1218 }
Punit Agrawal86658b82018-08-13 11:43:50 +01001219 /*
1220 * Mapping in huge pages should only happen through a
1221 * fault. If a page is merged into a transparent huge
1222 * page, the individual subpages of that huge page
1223 * should be unmapped through MMU notifiers before we
1224 * get here.
1225 *
1226 * Merging of CompoundPages is not supported; they
1227 * should become splitting first, unmapped, merged,
1228 * and mapped back in on-demand.
1229 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001230 WARN_ON_ONCE(pmd_pfn(old_pmd) != pmd_pfn(*new_pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001231 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +00001232 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001233 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +01001234 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001235 }
1236
1237 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001238 return 0;
1239}
1240
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001241static int stage2_set_pud_huge(struct kvm_s2_mmu *mmu,
1242 struct kvm_mmu_memory_cache *cache,
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001243 phys_addr_t addr, const pud_t *new_pudp)
1244{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001245 struct kvm *kvm = mmu->kvm;
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001246 pud_t *pudp, old_pud;
1247
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001248retry:
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001249 pudp = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001250 VM_BUG_ON(!pudp);
1251
1252 old_pud = *pudp;
1253
1254 /*
1255 * A large number of vcpus faulting on the same stage 2 entry,
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001256 * can lead to a refault due to the stage2_pud_clear()/tlb_flush().
1257 * Skip updating the page tables if there is no change.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001258 */
1259 if (pud_val(old_pud) == pud_val(*new_pudp))
1260 return 0;
1261
1262 if (stage2_pud_present(kvm, old_pud)) {
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001263 /*
1264 * If we already have table level mapping for this block, unmap
1265 * the range for this block and retry.
1266 */
1267 if (!stage2_pud_huge(kvm, old_pud)) {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001268 unmap_stage2_range(mmu, addr & S2_PUD_MASK, S2_PUD_SIZE);
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001269 goto retry;
1270 }
1271
1272 WARN_ON_ONCE(kvm_pud_pfn(old_pud) != kvm_pud_pfn(*new_pudp));
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001273 stage2_pud_clear(kvm, pudp);
Marc Zyngierefaa5b92019-01-02 12:34:25 +00001274 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001275 } else {
1276 get_page(virt_to_page(pudp));
1277 }
1278
1279 kvm_set_pud(pudp, *new_pudp);
1280 return 0;
1281}
1282
Punit Agrawal86d1c552018-12-11 17:10:38 +00001283/*
1284 * stage2_get_leaf_entry - walk the stage2 VM page tables and return
1285 * true if a valid and present leaf-entry is found. A pointer to the
1286 * leaf-entry is returned in the appropriate level variable - pudpp,
1287 * pmdpp, ptepp.
1288 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001289static bool stage2_get_leaf_entry(struct kvm_s2_mmu *mmu, phys_addr_t addr,
Punit Agrawal86d1c552018-12-11 17:10:38 +00001290 pud_t **pudpp, pmd_t **pmdpp, pte_t **ptepp)
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001291{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001292 struct kvm *kvm = mmu->kvm;
Punit Agrawal86d1c552018-12-11 17:10:38 +00001293 pud_t *pudp;
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001294 pmd_t *pmdp;
1295 pte_t *ptep;
1296
Punit Agrawal86d1c552018-12-11 17:10:38 +00001297 *pudpp = NULL;
1298 *pmdpp = NULL;
1299 *ptepp = NULL;
1300
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001301 pudp = stage2_get_pud(mmu, NULL, addr);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001302 if (!pudp || stage2_pud_none(kvm, *pudp) || !stage2_pud_present(kvm, *pudp))
1303 return false;
1304
1305 if (stage2_pud_huge(kvm, *pudp)) {
1306 *pudpp = pudp;
1307 return true;
1308 }
1309
1310 pmdp = stage2_pmd_offset(kvm, pudp, addr);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001311 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
1312 return false;
1313
Punit Agrawal86d1c552018-12-11 17:10:38 +00001314 if (pmd_thp_or_huge(*pmdp)) {
1315 *pmdpp = pmdp;
1316 return true;
1317 }
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001318
1319 ptep = pte_offset_kernel(pmdp, addr);
1320 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
1321 return false;
1322
Punit Agrawal86d1c552018-12-11 17:10:38 +00001323 *ptepp = ptep;
1324 return true;
1325}
1326
Paolo Bonzini0378dae2020-08-09 12:58:23 -04001327static bool stage2_is_exec(struct kvm_s2_mmu *mmu, phys_addr_t addr, unsigned long sz)
Punit Agrawal86d1c552018-12-11 17:10:38 +00001328{
1329 pud_t *pudp;
1330 pmd_t *pmdp;
1331 pte_t *ptep;
1332 bool found;
1333
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001334 found = stage2_get_leaf_entry(mmu, addr, &pudp, &pmdp, &ptep);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001335 if (!found)
1336 return false;
1337
1338 if (pudp)
Will Deaconb757b472020-07-23 11:17:14 +01001339 return sz <= PUD_SIZE && kvm_s2pud_exec(pudp);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001340 else if (pmdp)
Will Deaconb757b472020-07-23 11:17:14 +01001341 return sz <= PMD_SIZE && kvm_s2pmd_exec(pmdp);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001342 else
Will Deaconb757b472020-07-23 11:17:14 +01001343 return sz == PAGE_SIZE && kvm_s2pte_exec(ptep);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001344}
1345
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001346static int stage2_set_pte(struct kvm_s2_mmu *mmu,
1347 struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -08001348 phys_addr_t addr, const pte_t *new_pte,
1349 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +01001350{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001351 struct kvm *kvm = mmu->kvm;
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001352 pud_t *pud;
Christoffer Dallad361f02012-11-01 17:14:45 +01001353 pmd_t *pmd;
1354 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001355 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
1356 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
1357
1358 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +01001359
Christoffer Dall38f791a2014-10-10 12:14:28 +02001360 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001361 pud = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001362 if (!pud) {
1363 /*
1364 * Ignore calls from kvm_set_spte_hva for unallocated
1365 * address ranges.
1366 */
1367 return 0;
1368 }
1369
1370 /*
1371 * While dirty page logging - dissolve huge PUD, then continue
1372 * on to allocate page.
1373 */
1374 if (logging_active)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001375 stage2_dissolve_pud(mmu, addr, pud);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001376
1377 if (stage2_pud_none(kvm, *pud)) {
1378 if (!cache)
1379 return 0; /* ignore calls from kvm_set_spte_hva */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001380 pmd = kvm_mmu_memory_cache_alloc(cache);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001381 stage2_pud_populate(kvm, pud, pmd);
1382 get_page(virt_to_page(pud));
1383 }
1384
1385 pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001386 if (!pmd) {
1387 /*
1388 * Ignore calls from kvm_set_spte_hva for unallocated
1389 * address ranges.
1390 */
1391 return 0;
1392 }
1393
Mario Smarduch15a49a42015-01-15 15:58:58 -08001394 /*
1395 * While dirty page logging - dissolve huge PMD, then continue on to
1396 * allocate page.
1397 */
1398 if (logging_active)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001399 stage2_dissolve_pmd(mmu, addr, pmd);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001400
Christoffer Dallad361f02012-11-01 17:14:45 +01001401 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -05001402 if (pmd_none(*pmd)) {
1403 if (!cache)
1404 return 0; /* ignore calls from kvm_set_spte_hva */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001405 pte = kvm_mmu_memory_cache_alloc(cache);
Marc Zyngier0db9dd82018-06-27 15:51:05 +01001406 kvm_pmd_populate(pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001407 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001408 }
1409
1410 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001411
1412 if (iomap && pte_present(*pte))
1413 return -EFAULT;
1414
1415 /* Create 2nd stage page table mapping - Level 3 */
1416 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001417 if (pte_present(old_pte)) {
Punit Agrawal976d34e2018-08-13 11:43:51 +01001418 /* Skip page table update if there is no change */
1419 if (pte_val(old_pte) == pte_val(*new_pte))
1420 return 0;
1421
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001422 kvm_set_pte(pte, __pte(0));
Marc Zyngierefaa5b92019-01-02 12:34:25 +00001423 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PTE_LEVEL);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001424 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001425 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001426 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001427
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001428 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001429 return 0;
1430}
1431
Catalin Marinas06485052016-04-13 17:57:37 +01001432#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1433static int stage2_ptep_test_and_clear_young(pte_t *pte)
1434{
1435 if (pte_young(*pte)) {
1436 *pte = pte_mkold(*pte);
1437 return 1;
1438 }
1439 return 0;
1440}
1441#else
1442static int stage2_ptep_test_and_clear_young(pte_t *pte)
1443{
1444 return __ptep_test_and_clear_young(pte);
1445}
1446#endif
1447
1448static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1449{
1450 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1451}
1452
Punit Agrawal35a63962018-12-11 17:10:40 +00001453static int stage2_pudp_test_and_clear_young(pud_t *pud)
1454{
1455 return stage2_ptep_test_and_clear_young((pte_t *)pud);
1456}
1457
Christoffer Dalld5d81842013-01-20 18:28:07 -05001458/**
1459 * kvm_phys_addr_ioremap - map a device range to guest IPA
1460 *
1461 * @kvm: The KVM pointer
1462 * @guest_ipa: The IPA at which to insert the mapping
1463 * @pa: The physical address of the device
1464 * @size: The size of the mapping
1465 */
1466int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001467 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001468{
1469 phys_addr_t addr, end;
1470 int ret = 0;
1471 unsigned long pfn;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001472 struct kvm_mmu_memory_cache cache = { 0, __GFP_ZERO, NULL, };
Christoffer Dalld5d81842013-01-20 18:28:07 -05001473
1474 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1475 pfn = __phys_to_pfn(pa);
1476
1477 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001478 pte_t pte = kvm_pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001479
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001480 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001481 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001482
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001483 ret = kvm_mmu_topup_memory_cache(&cache,
1484 kvm_mmu_cache_min_pages(kvm));
Christoffer Dalld5d81842013-01-20 18:28:07 -05001485 if (ret)
1486 goto out;
1487 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001488 ret = stage2_set_pte(&kvm->arch.mmu, &cache, addr, &pte,
1489 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001490 spin_unlock(&kvm->mmu_lock);
1491 if (ret)
1492 goto out;
1493
1494 pfn++;
1495 }
1496
1497out:
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001498 kvm_mmu_free_memory_cache(&cache);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001499 return ret;
1500}
1501
Mario Smarduchc6473552015-01-15 15:58:56 -08001502/**
1503 * stage2_wp_ptes - write protect PMD range
1504 * @pmd: pointer to pmd entry
1505 * @addr: range start address
1506 * @end: range end address
1507 */
1508static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1509{
1510 pte_t *pte;
1511
1512 pte = pte_offset_kernel(pmd, addr);
1513 do {
1514 if (!pte_none(*pte)) {
1515 if (!kvm_s2pte_readonly(pte))
1516 kvm_set_s2pte_readonly(pte);
1517 }
1518 } while (pte++, addr += PAGE_SIZE, addr != end);
1519}
1520
1521/**
1522 * stage2_wp_pmds - write protect PUD range
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001523 * kvm: kvm instance for the VM
Mario Smarduchc6473552015-01-15 15:58:56 -08001524 * @pud: pointer to pud entry
1525 * @addr: range start address
1526 * @end: range end address
1527 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001528static void stage2_wp_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001529 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001530{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001531 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001532 pmd_t *pmd;
1533 phys_addr_t next;
1534
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001535 pmd = stage2_pmd_offset(kvm, pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001536
1537 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001538 next = stage2_pmd_addr_end(kvm, addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001539 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001540 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001541 if (!kvm_s2pmd_readonly(pmd))
1542 kvm_set_s2pmd_readonly(pmd);
1543 } else {
1544 stage2_wp_ptes(pmd, addr, next);
1545 }
1546 }
1547 } while (pmd++, addr = next, addr != end);
1548}
1549
1550/**
Mike Rapoporte9f63762020-06-04 16:46:23 -07001551 * stage2_wp_puds - write protect P4D range
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001552 * @p4d: pointer to p4d entry
Zenghui Yu8324c3d2019-03-25 08:02:05 +00001553 * @addr: range start address
1554 * @end: range end address
1555 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001556static void stage2_wp_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001557 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001558{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001559 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001560 pud_t *pud;
1561 phys_addr_t next;
1562
Mike Rapoporte9f63762020-06-04 16:46:23 -07001563 pud = stage2_pud_offset(kvm, p4d, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001564 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001565 next = stage2_pud_addr_end(kvm, addr, end);
1566 if (!stage2_pud_none(kvm, *pud)) {
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001567 if (stage2_pud_huge(kvm, *pud)) {
1568 if (!kvm_s2pud_readonly(pud))
1569 kvm_set_s2pud_readonly(pud);
1570 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001571 stage2_wp_pmds(mmu, pud, addr, next);
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001572 }
Mario Smarduchc6473552015-01-15 15:58:56 -08001573 }
1574 } while (pud++, addr = next, addr != end);
1575}
1576
1577/**
Mike Rapoporte9f63762020-06-04 16:46:23 -07001578 * stage2_wp_p4ds - write protect PGD range
1579 * @pgd: pointer to pgd entry
1580 * @addr: range start address
1581 * @end: range end address
1582 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001583static void stage2_wp_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -07001584 phys_addr_t addr, phys_addr_t end)
1585{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001586 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -07001587 p4d_t *p4d;
1588 phys_addr_t next;
1589
1590 p4d = stage2_p4d_offset(kvm, pgd, addr);
1591 do {
1592 next = stage2_p4d_addr_end(kvm, addr, end);
1593 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001594 stage2_wp_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -07001595 } while (p4d++, addr = next, addr != end);
1596}
1597
1598/**
Mario Smarduchc6473552015-01-15 15:58:56 -08001599 * stage2_wp_range() - write protect stage2 memory region range
1600 * @kvm: The KVM pointer
1601 * @addr: Start address of range
1602 * @end: End address of range
1603 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001604static void stage2_wp_range(struct kvm_s2_mmu *mmu, phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001605{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001606 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001607 pgd_t *pgd;
1608 phys_addr_t next;
1609
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001610 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001611 do {
1612 /*
1613 * Release kvm_mmu_lock periodically if the memory region is
1614 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001615 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1616 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001617 * will also starve other vCPUs. We have to also make sure
1618 * that the page tables are not freed while we released
1619 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001620 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001621 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001622 if (!READ_ONCE(mmu->pgd))
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001623 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001624 next = stage2_pgd_addr_end(kvm, addr, end);
1625 if (stage2_pgd_present(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001626 stage2_wp_p4ds(mmu, pgd, addr, next);
Mario Smarduchc6473552015-01-15 15:58:56 -08001627 } while (pgd++, addr = next, addr != end);
1628}
1629
1630/**
1631 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1632 * @kvm: The KVM pointer
1633 * @slot: The memory slot to write protect
1634 *
1635 * Called to start logging dirty pages after memory region
1636 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001637 * all present PUD, PMD and PTEs are write protected in the memory region.
Mario Smarduchc6473552015-01-15 15:58:56 -08001638 * Afterwards read of dirty page log can be called.
1639 *
1640 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1641 * serializing operations for VM memory regions.
1642 */
1643void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1644{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001645 struct kvm_memslots *slots = kvm_memslots(kvm);
1646 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Sean Christopherson0577d1a2020-02-18 13:07:31 -08001647 phys_addr_t start, end;
1648
1649 if (WARN_ON_ONCE(!memslot))
1650 return;
1651
1652 start = memslot->base_gfn << PAGE_SHIFT;
1653 end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
Mario Smarduchc6473552015-01-15 15:58:56 -08001654
1655 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001656 stage2_wp_range(&kvm->arch.mmu, start, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001657 spin_unlock(&kvm->mmu_lock);
1658 kvm_flush_remote_tlbs(kvm);
1659}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001660
1661/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001662 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001663 * @kvm: The KVM pointer
1664 * @slot: The memory slot associated with mask
1665 * @gfn_offset: The gfn offset in memory slot
1666 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1667 * slot to be write protected
1668 *
1669 * Walks bits set in mask write protects the associated pte's. Caller must
1670 * acquire kvm_mmu_lock.
1671 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001672static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001673 struct kvm_memory_slot *slot,
1674 gfn_t gfn_offset, unsigned long mask)
1675{
1676 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1677 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1678 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1679
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001680 stage2_wp_range(&kvm->arch.mmu, start, end);
Mario Smarduch53c810c2015-01-15 15:58:57 -08001681}
Mario Smarduchc6473552015-01-15 15:58:56 -08001682
Kai Huang3b0f1d02015-01-28 10:54:23 +08001683/*
1684 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1685 * dirty pages.
1686 *
1687 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1688 * enable dirty logging for them.
1689 */
1690void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1691 struct kvm_memory_slot *slot,
1692 gfn_t gfn_offset, unsigned long mask)
1693{
1694 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1695}
1696
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001697static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001698{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001699 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001700}
1701
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001702static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001703{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001704 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001705}
1706
James Morse1559b752019-12-17 12:38:09 +00001707static void kvm_send_hwpoison_signal(unsigned long address, short lsb)
James Morse196f8782017-06-20 17:11:48 +01001708{
Eric W. Biederman795a8372018-04-16 13:39:10 -05001709 send_sig_mceerr(BUS_MCEERR_AR, (void __user *)address, lsb, current);
James Morse196f8782017-06-20 17:11:48 +01001710}
1711
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001712static bool fault_supports_stage2_huge_mapping(struct kvm_memory_slot *memslot,
1713 unsigned long hva,
1714 unsigned long map_size)
Christoffer Dall6794ad52018-11-02 08:53:22 +01001715{
Shaokun Zhangc2be79a2019-02-19 17:22:21 +08001716 gpa_t gpa_start;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001717 hva_t uaddr_start, uaddr_end;
1718 size_t size;
1719
Suzuki K Poulose9f283612020-05-07 20:35:45 +08001720 /* The memslot and the VMA are guaranteed to be aligned to PAGE_SIZE */
1721 if (map_size == PAGE_SIZE)
1722 return true;
1723
Christoffer Dall6794ad52018-11-02 08:53:22 +01001724 size = memslot->npages * PAGE_SIZE;
1725
1726 gpa_start = memslot->base_gfn << PAGE_SHIFT;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001727
1728 uaddr_start = memslot->userspace_addr;
1729 uaddr_end = uaddr_start + size;
1730
1731 /*
1732 * Pages belonging to memslots that don't have the same alignment
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001733 * within a PMD/PUD for userspace and IPA cannot be mapped with stage-2
1734 * PMD/PUD entries, because we'll end up mapping the wrong pages.
Christoffer Dall6794ad52018-11-02 08:53:22 +01001735 *
1736 * Consider a layout like the following:
1737 *
1738 * memslot->userspace_addr:
1739 * +-----+--------------------+--------------------+---+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001740 * |abcde|fgh Stage-1 block | Stage-1 block tv|xyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001741 * +-----+--------------------+--------------------+---+
1742 *
Suzuki K Poulose9f283612020-05-07 20:35:45 +08001743 * memslot->base_gfn << PAGE_SHIFT:
Christoffer Dall6794ad52018-11-02 08:53:22 +01001744 * +---+--------------------+--------------------+-----+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001745 * |abc|def Stage-2 block | Stage-2 block |tvxyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001746 * +---+--------------------+--------------------+-----+
1747 *
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001748 * If we create those stage-2 blocks, we'll end up with this incorrect
Christoffer Dall6794ad52018-11-02 08:53:22 +01001749 * mapping:
1750 * d -> f
1751 * e -> g
1752 * f -> h
1753 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001754 if ((gpa_start & (map_size - 1)) != (uaddr_start & (map_size - 1)))
Christoffer Dall6794ad52018-11-02 08:53:22 +01001755 return false;
1756
1757 /*
1758 * Next, let's make sure we're not trying to map anything not covered
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001759 * by the memslot. This means we have to prohibit block size mappings
1760 * for the beginning and end of a non-block aligned and non-block sized
Christoffer Dall6794ad52018-11-02 08:53:22 +01001761 * memory slot (illustrated by the head and tail parts of the
1762 * userspace view above containing pages 'abcde' and 'xyz',
1763 * respectively).
1764 *
1765 * Note that it doesn't matter if we do the check using the
1766 * userspace_addr or the base_gfn, as both are equally aligned (per
1767 * the check above) and equally sized.
1768 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001769 return (hva & ~(map_size - 1)) >= uaddr_start &&
1770 (hva & ~(map_size - 1)) + map_size <= uaddr_end;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001771}
1772
Suzuki K Poulose0529c902020-05-07 20:35:46 +08001773/*
1774 * Check if the given hva is backed by a transparent huge page (THP) and
1775 * whether it can be mapped using block mapping in stage2. If so, adjust
1776 * the stage2 PFN and IPA accordingly. Only PMD_SIZE THPs are currently
1777 * supported. This will need to be updated to support other THP sizes.
1778 *
1779 * Returns the size of the mapping.
1780 */
1781static unsigned long
1782transparent_hugepage_adjust(struct kvm_memory_slot *memslot,
1783 unsigned long hva, kvm_pfn_t *pfnp,
1784 phys_addr_t *ipap)
1785{
1786 kvm_pfn_t pfn = *pfnp;
1787
1788 /*
1789 * Make sure the adjustment is done only for THP pages. Also make
1790 * sure that the HVA and IPA are sufficiently aligned and that the
1791 * block map is contained within the memslot.
1792 */
1793 if (kvm_is_transparent_hugepage(pfn) &&
1794 fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE)) {
1795 /*
1796 * The address we faulted on is backed by a transparent huge
1797 * page. However, because we map the compound huge page and
1798 * not the individual tail page, we need to transfer the
1799 * refcount to the head page. We have to be careful that the
1800 * THP doesn't start to split while we are adjusting the
1801 * refcounts.
1802 *
1803 * We are sure this doesn't happen, because mmu_notifier_retry
1804 * was successful and we are holding the mmu_lock, so if this
1805 * THP is trying to split, it will be blocked in the mmu
1806 * notifier before touching any of the pages, specifically
1807 * before being able to call __split_huge_page_refcount().
1808 *
1809 * We can therefore safely transfer the refcount from PG_tail
1810 * to PG_head and switch the pfn from a tail page to the head
1811 * page accordingly.
1812 */
1813 *ipap &= PMD_MASK;
1814 kvm_release_pfn_clean(pfn);
1815 pfn &= ~(PTRS_PER_PMD - 1);
1816 kvm_get_pfn(pfn);
1817 *pfnp = pfn;
1818
1819 return PMD_SIZE;
1820 }
1821
1822 /* Use page mapping if we cannot use block mapping. */
1823 return PAGE_SIZE;
1824}
1825
Christoffer Dall94f8e642013-01-20 18:28:12 -05001826static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001827 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001828 unsigned long fault_status)
1829{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001830 int ret;
Punit Agrawal6396b852018-12-11 17:10:35 +00001831 bool write_fault, writable, force_pte = false;
1832 bool exec_fault, needs_exec;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001833 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001834 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001835 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001836 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001837 struct vm_area_struct *vma;
James Morse1559b752019-12-17 12:38:09 +00001838 short vma_shift;
Dan Williamsba049e92016-01-15 16:56:11 -08001839 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001840 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001841 bool logging_active = memslot_is_logging(memslot);
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001842 unsigned long vma_pagesize, flags = 0;
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001843 struct kvm_s2_mmu *mmu = vcpu->arch.hw_mmu;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001844
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001845 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001846 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1847 VM_BUG_ON(write_fault && exec_fault);
1848
1849 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001850 kvm_err("Unexpected L2 read permission error\n");
1851 return -EFAULT;
1852 }
1853
Christoffer Dallad361f02012-11-01 17:14:45 +01001854 /* Let's check if we will get back a huge page backed by hugetlbfs */
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001855 mmap_read_lock(current->mm);
Christoffer Dallad361f02012-11-01 17:14:45 +01001856 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001857 if (unlikely(!vma)) {
1858 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001859 mmap_read_unlock(current->mm);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001860 return -EFAULT;
1861 }
1862
James Morse1559b752019-12-17 12:38:09 +00001863 if (is_vm_hugetlb_page(vma))
1864 vma_shift = huge_page_shift(hstate_vma(vma));
1865 else
1866 vma_shift = PAGE_SHIFT;
1867
1868 vma_pagesize = 1ULL << vma_shift;
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001869 if (logging_active ||
Marc Zyngier6d674e22019-12-11 16:56:48 +00001870 (vma->vm_flags & VM_PFNMAP) ||
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001871 !fault_supports_stage2_huge_mapping(memslot, hva, vma_pagesize)) {
1872 force_pte = true;
1873 vma_pagesize = PAGE_SIZE;
1874 }
1875
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001876 /*
Suzuki K Poulose280cebf2019-01-29 19:12:17 +00001877 * The stage2 has a minimum of 2 level table (For arm64 see
1878 * kvm_arm_setup_stage2()). Hence, we are guaranteed that we can
1879 * use PMD_SIZE huge mappings (even when the PMD is folded into PGD).
1880 * As for PUD huge maps, we must make sure that we have at least
1881 * 3 levels, i.e, PMD is not folded.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001882 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001883 if (vma_pagesize == PMD_SIZE ||
1884 (vma_pagesize == PUD_SIZE && kvm_stage2_has_pmd(kvm)))
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001885 gfn = (fault_ipa & huge_page_mask(hstate_vma(vma))) >> PAGE_SHIFT;
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001886 mmap_read_unlock(current->mm);
Christoffer Dallad361f02012-11-01 17:14:45 +01001887
Christoffer Dall94f8e642013-01-20 18:28:12 -05001888 /* We need minimum second+third level pages */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001889 ret = kvm_mmu_topup_memory_cache(memcache, kvm_mmu_cache_min_pages(kvm));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001890 if (ret)
1891 return ret;
1892
1893 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1894 /*
1895 * Ensure the read of mmu_notifier_seq happens before we call
1896 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1897 * the page we just got a reference to gets unmapped before we have a
1898 * chance to grab the mmu_lock, which ensure that if the page gets
1899 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1900 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1901 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1902 */
1903 smp_rmb();
1904
Christoffer Dallad361f02012-11-01 17:14:45 +01001905 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001906 if (pfn == KVM_PFN_ERR_HWPOISON) {
James Morse1559b752019-12-17 12:38:09 +00001907 kvm_send_hwpoison_signal(hva, vma_shift);
James Morse196f8782017-06-20 17:11:48 +01001908 return 0;
1909 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001910 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001911 return -EFAULT;
1912
Mario Smarduch15a49a42015-01-15 15:58:58 -08001913 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001914 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001915 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1916 } else if (logging_active) {
1917 /*
1918 * Faults on pages in a memslot with logging enabled
1919 * should not be mapped with huge pages (it introduces churn
1920 * and performance degradation), so force a pte mapping.
1921 */
Mario Smarduch15a49a42015-01-15 15:58:58 -08001922 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1923
1924 /*
1925 * Only actually map the page as writable if this was a write
1926 * fault.
1927 */
1928 if (!write_fault)
1929 writable = false;
1930 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001931
Marc Zyngier6d674e22019-12-11 16:56:48 +00001932 if (exec_fault && is_iomap(flags))
1933 return -ENOEXEC;
1934
Christoffer Dallad361f02012-11-01 17:14:45 +01001935 spin_lock(&kvm->mmu_lock);
1936 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001937 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001938
Suzuki K Poulose0529c902020-05-07 20:35:46 +08001939 /*
1940 * If we are not forced to use page mapping, check if we are
1941 * backed by a THP and thus use block mapping if possible.
1942 */
1943 if (vma_pagesize == PAGE_SIZE && !force_pte)
1944 vma_pagesize = transparent_hugepage_adjust(memslot, hva,
1945 &pfn, &fault_ipa);
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001946 if (writable)
1947 kvm_set_pfn_dirty(pfn);
1948
Marc Zyngier6d674e22019-12-11 16:56:48 +00001949 if (fault_status != FSC_PERM && !is_iomap(flags))
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001950 clean_dcache_guest_page(pfn, vma_pagesize);
1951
1952 if (exec_fault)
1953 invalidate_icache_guest_page(pfn, vma_pagesize);
1954
Punit Agrawal6396b852018-12-11 17:10:35 +00001955 /*
1956 * If we took an execution fault we have made the
1957 * icache/dcache coherent above and should now let the s2
1958 * mapping be executable.
1959 *
1960 * Write faults (!exec_fault && FSC_PERM) are orthogonal to
1961 * execute permissions, and we preserve whatever we have.
1962 */
1963 needs_exec = exec_fault ||
Will Deaconb757b472020-07-23 11:17:14 +01001964 (fault_status == FSC_PERM &&
Paolo Bonzini0378dae2020-08-09 12:58:23 -04001965 stage2_is_exec(mmu, fault_ipa, vma_pagesize));
Punit Agrawal6396b852018-12-11 17:10:35 +00001966
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001967 if (vma_pagesize == PUD_SIZE) {
1968 pud_t new_pud = kvm_pfn_pud(pfn, mem_type);
1969
1970 new_pud = kvm_pud_mkhuge(new_pud);
1971 if (writable)
1972 new_pud = kvm_s2pud_mkwrite(new_pud);
1973
1974 if (needs_exec)
1975 new_pud = kvm_s2pud_mkexec(new_pud);
1976
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001977 ret = stage2_set_pud_huge(mmu, memcache, fault_ipa, &new_pud);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001978 } else if (vma_pagesize == PMD_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001979 pmd_t new_pmd = kvm_pfn_pmd(pfn, mem_type);
1980
1981 new_pmd = kvm_pmd_mkhuge(new_pmd);
1982
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001983 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001984 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001985
Punit Agrawal6396b852018-12-11 17:10:35 +00001986 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001987 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001988
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001989 ret = stage2_set_pmd_huge(mmu, memcache, fault_ipa, &new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001990 } else {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001991 pte_t new_pte = kvm_pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001992
Christoffer Dallad361f02012-11-01 17:14:45 +01001993 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001994 new_pte = kvm_s2pte_mkwrite(new_pte);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001995 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001996 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001997
Punit Agrawal6396b852018-12-11 17:10:35 +00001998 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001999 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngiera15f6932017-10-23 17:11:15 +01002000
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002001 ret = stage2_set_pte(mmu, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05002002 }
Christoffer Dallad361f02012-11-01 17:14:45 +01002003
Christoffer Dall94f8e642013-01-20 18:28:12 -05002004out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01002005 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00002006 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05002007 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01002008 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05002009}
2010
Marc Zyngieraeda9132015-03-12 18:16:52 +00002011/*
2012 * Resolve the access fault by making the page young again.
2013 * Note that because the faulting entry is guaranteed not to be
2014 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01002015 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
2016 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00002017 */
2018static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
2019{
Punit Agrawaleb3f06242018-12-11 17:10:39 +00002020 pud_t *pud;
Marc Zyngieraeda9132015-03-12 18:16:52 +00002021 pmd_t *pmd;
2022 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08002023 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00002024 bool pfn_valid = false;
2025
2026 trace_kvm_access_fault(fault_ipa);
2027
2028 spin_lock(&vcpu->kvm->mmu_lock);
2029
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002030 if (!stage2_get_leaf_entry(vcpu->arch.hw_mmu, fault_ipa, &pud, &pmd, &pte))
Marc Zyngieraeda9132015-03-12 18:16:52 +00002031 goto out;
2032
Punit Agrawaleb3f06242018-12-11 17:10:39 +00002033 if (pud) { /* HugeTLB */
2034 *pud = kvm_s2pud_mkyoung(*pud);
2035 pfn = kvm_pud_pfn(*pud);
2036 pfn_valid = true;
2037 } else if (pmd) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00002038 *pmd = pmd_mkyoung(*pmd);
2039 pfn = pmd_pfn(*pmd);
2040 pfn_valid = true;
Punit Agrawaleb3f06242018-12-11 17:10:39 +00002041 } else {
2042 *pte = pte_mkyoung(*pte); /* Just a page... */
2043 pfn = pte_pfn(*pte);
2044 pfn_valid = true;
Marc Zyngieraeda9132015-03-12 18:16:52 +00002045 }
2046
Marc Zyngieraeda9132015-03-12 18:16:52 +00002047out:
2048 spin_unlock(&vcpu->kvm->mmu_lock);
2049 if (pfn_valid)
2050 kvm_set_pfn_accessed(pfn);
2051}
2052
Christoffer Dall94f8e642013-01-20 18:28:12 -05002053/**
2054 * kvm_handle_guest_abort - handles all 2nd stage aborts
2055 * @vcpu: the VCPU pointer
Christoffer Dall94f8e642013-01-20 18:28:12 -05002056 *
2057 * Any abort that gets to the host is almost guaranteed to be caused by a
2058 * missing second stage translation table entry, which can mean that either the
2059 * guest simply needs more memory and we must allocate an appropriate page or it
2060 * can mean that the guest tried to access I/O memory, which is emulated by user
2061 * space. The distinction is based on the IPA causing the fault and whether this
2062 * memory region has been registered as standard RAM by user space.
2063 */
Tianjia Zhang74cc7e02020-06-23 21:14:15 +08002064int kvm_handle_guest_abort(struct kvm_vcpu *vcpu)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002065{
Christoffer Dall94f8e642013-01-20 18:28:12 -05002066 unsigned long fault_status;
2067 phys_addr_t fault_ipa;
2068 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02002069 unsigned long hva;
2070 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05002071 gfn_t gfn;
2072 int ret, idx;
2073
Tyler Baicar621f48e2017-06-21 12:17:14 -06002074 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
2075
2076 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01002077 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06002078
James Morsebb428922017-07-18 13:37:41 +01002079 /* Synchronous External Abort? */
Will Deaconc9a636f2020-07-29 11:28:18 +01002080 if (kvm_vcpu_abt_issea(vcpu)) {
James Morsebb428922017-07-18 13:37:41 +01002081 /*
2082 * For RAS the host kernel may handle this abort.
2083 * There is no need to pass the error into the guest.
2084 */
Will Deacon84b951a2020-07-29 11:28:19 +01002085 if (kvm_handle_guest_sea(fault_ipa, kvm_vcpu_get_esr(vcpu)))
James Morsebb428922017-07-18 13:37:41 +01002086 kvm_inject_vabt(vcpu);
Will Deacon84b951a2020-07-29 11:28:19 +01002087
2088 return 1;
Marc Zyngier40557102016-09-06 14:02:15 +01002089 }
2090
Gavin Shan3a949f42020-06-30 11:57:05 +10002091 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_esr(vcpu),
Marc Zyngier7393b592012-09-17 19:27:09 +01002092 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05002093
2094 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00002095 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
2096 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02002097 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
2098 kvm_vcpu_trap_get_class(vcpu),
2099 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
Gavin Shan3a949f42020-06-30 11:57:05 +10002100 (unsigned long)kvm_vcpu_get_esr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05002101 return -EFAULT;
2102 }
2103
2104 idx = srcu_read_lock(&vcpu->kvm->srcu);
2105
2106 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02002107 memslot = gfn_to_memslot(vcpu->kvm, gfn);
2108 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01002109 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02002110 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Will Deacon022c8322020-07-29 11:28:21 +01002111 /*
2112 * The guest has put either its instructions or its page-tables
2113 * somewhere it shouldn't have. Userspace won't be able to do
2114 * anything about this (there's no syndrome for a start), so
2115 * re-inject the abort back into the guest.
2116 */
Christoffer Dall94f8e642013-01-20 18:28:12 -05002117 if (is_iabt) {
Marc Zyngier6d674e22019-12-11 16:56:48 +00002118 ret = -ENOEXEC;
2119 goto out;
Christoffer Dall94f8e642013-01-20 18:28:12 -05002120 }
2121
Will Deacon022c8322020-07-29 11:28:21 +01002122 if (kvm_vcpu_dabt_iss1tw(vcpu)) {
2123 kvm_inject_dabt(vcpu, kvm_vcpu_get_hfar(vcpu));
2124 ret = 1;
2125 goto out_unlock;
2126 }
2127
Marc Zyngiercfe39502012-12-12 14:42:09 +00002128 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00002129 * Check for a cache maintenance operation. Since we
2130 * ended-up here, we know it is outside of any memory
2131 * slot. But we can't find out if that is for a device,
2132 * or if the guest is just being stupid. The only thing
2133 * we know for sure is that this range cannot be cached.
2134 *
2135 * So let's assume that the guest is just being
2136 * cautious, and skip the instruction.
2137 */
Will Deacon54dc0d22020-07-29 11:28:20 +01002138 if (kvm_is_error_hva(hva) && kvm_vcpu_dabt_is_cm(vcpu)) {
Marc Zyngier57c841f2016-01-29 15:01:28 +00002139 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
2140 ret = 1;
2141 goto out_unlock;
2142 }
2143
2144 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00002145 * The IPA is reported as [MAX:12], so we need to
2146 * complement it with the bottom 12 bits from the
2147 * faulting VA. This is always 12 bits, irrespective
2148 * of the page size.
2149 */
2150 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Tianjia Zhang74cc7e02020-06-23 21:14:15 +08002151 ret = io_mem_abort(vcpu, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05002152 goto out_unlock;
2153 }
2154
Christoffer Dallc3058d52014-10-10 12:14:29 +02002155 /* Userspace should not be able to register out-of-bounds IPAs */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01002156 VM_BUG_ON(fault_ipa >= kvm_phys_size(vcpu->kvm));
Christoffer Dallc3058d52014-10-10 12:14:29 +02002157
Marc Zyngieraeda9132015-03-12 18:16:52 +00002158 if (fault_status == FSC_ACCESS) {
2159 handle_access_fault(vcpu, fault_ipa);
2160 ret = 1;
2161 goto out_unlock;
2162 }
2163
Christoffer Dall98047882014-08-19 12:18:04 +02002164 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05002165 if (ret == 0)
2166 ret = 1;
Marc Zyngier6d674e22019-12-11 16:56:48 +00002167out:
2168 if (ret == -ENOEXEC) {
2169 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
2170 ret = 1;
2171 }
Christoffer Dall94f8e642013-01-20 18:28:12 -05002172out_unlock:
2173 srcu_read_unlock(&vcpu->kvm->srcu, idx);
2174 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002175}
2176
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002177static int handle_hva_to_gpa(struct kvm *kvm,
2178 unsigned long start,
2179 unsigned long end,
2180 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002181 gpa_t gpa, u64 size,
2182 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002183 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002184{
2185 struct kvm_memslots *slots;
2186 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002187 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002188
2189 slots = kvm_memslots(kvm);
2190
2191 /* we only care about the pages that the guest sees */
2192 kvm_for_each_memslot(memslot, slots) {
2193 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002194 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002195
2196 hva_start = max(start, memslot->userspace_addr);
2197 hva_end = min(end, memslot->userspace_addr +
2198 (memslot->npages << PAGE_SHIFT));
2199 if (hva_start >= hva_end)
2200 continue;
2201
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002202 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
2203 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002204 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002205
2206 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002207}
2208
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002209static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002210{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002211 unmap_stage2_range(&kvm->arch.mmu, gpa, size);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002212 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002213}
2214
Christoffer Dalld5d81842013-01-20 18:28:07 -05002215int kvm_unmap_hva_range(struct kvm *kvm,
Will Deaconfdfe7cb2020-08-11 11:27:24 +01002216 unsigned long start, unsigned long end, unsigned flags)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002217{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002218 if (!kvm->arch.mmu.pgd)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002219 return 0;
2220
2221 trace_kvm_unmap_hva_range(start, end);
2222 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
2223 return 0;
2224}
2225
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002226static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002227{
2228 pte_t *pte = (pte_t *)data;
2229
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002230 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08002231 /*
2232 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
2233 * flag clear because MMU notifiers will have unmapped a huge PMD before
2234 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
2235 * therefore stage2_set_pte() never needs to clear out a huge PMD
2236 * through this calling path.
2237 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002238 stage2_set_pte(&kvm->arch.mmu, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002239 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002240}
2241
2242
Lan Tianyu748c0e32018-12-06 21:21:10 +08002243int kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002244{
2245 unsigned long end = hva + PAGE_SIZE;
Marc Zyngier694556d2018-08-23 09:58:27 +01002246 kvm_pfn_t pfn = pte_pfn(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002247 pte_t stage2_pte;
2248
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002249 if (!kvm->arch.mmu.pgd)
Lan Tianyu748c0e32018-12-06 21:21:10 +08002250 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002251
2252 trace_kvm_set_spte_hva(hva);
Marc Zyngier694556d2018-08-23 09:58:27 +01002253
2254 /*
2255 * We've moved a page around, probably through CoW, so let's treat it
2256 * just like a translation fault and clean the cache to the PoC.
2257 */
2258 clean_dcache_guest_page(pfn, PAGE_SIZE);
Punit Agrawalf8df7332018-12-11 17:10:36 +00002259 stage2_pte = kvm_pfn_pte(pfn, PAGE_S2);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002260 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
Lan Tianyu748c0e32018-12-06 21:21:10 +08002261
2262 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002263}
2264
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002265static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00002266{
Punit Agrawal35a63962018-12-11 17:10:40 +00002267 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00002268 pmd_t *pmd;
2269 pte_t *pte;
2270
Punit Agrawal35a63962018-12-11 17:10:40 +00002271 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002272 if (!stage2_get_leaf_entry(&kvm->arch.mmu, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00002273 return 0;
2274
Punit Agrawal35a63962018-12-11 17:10:40 +00002275 if (pud)
2276 return stage2_pudp_test_and_clear_young(pud);
2277 else if (pmd)
Catalin Marinas06485052016-04-13 17:57:37 +01002278 return stage2_pmdp_test_and_clear_young(pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00002279 else
2280 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00002281}
2282
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002283static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00002284{
Punit Agrawal35a63962018-12-11 17:10:40 +00002285 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00002286 pmd_t *pmd;
2287 pte_t *pte;
2288
Punit Agrawal35a63962018-12-11 17:10:40 +00002289 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002290 if (!stage2_get_leaf_entry(&kvm->arch.mmu, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00002291 return 0;
2292
Punit Agrawal35a63962018-12-11 17:10:40 +00002293 if (pud)
2294 return kvm_s2pud_young(*pud);
2295 else if (pmd)
Marc Zyngier35307b92015-03-12 18:16:51 +00002296 return pmd_young(*pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00002297 else
Marc Zyngier35307b92015-03-12 18:16:51 +00002298 return pte_young(*pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00002299}
2300
2301int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
2302{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002303 if (!kvm->arch.mmu.pgd)
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01002304 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00002305 trace_kvm_age_hva(start, end);
2306 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
2307}
2308
2309int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
2310{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002311 if (!kvm->arch.mmu.pgd)
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01002312 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00002313 trace_kvm_test_age_hva(hva);
Gavin Shancf2d23e2020-01-21 16:56:59 +11002314 return handle_hva_to_gpa(kvm, hva, hva + PAGE_SIZE,
2315 kvm_test_age_hva_handler, NULL);
Marc Zyngier35307b92015-03-12 18:16:51 +00002316}
2317
Christoffer Dalld5d81842013-01-20 18:28:07 -05002318void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
2319{
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07002320 kvm_mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002321}
2322
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002323phys_addr_t kvm_mmu_get_httbr(void)
2324{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002325 if (__kvm_cpu_uses_extended_idmap())
2326 return virt_to_phys(merged_hyp_pgd);
2327 else
2328 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002329}
2330
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002331phys_addr_t kvm_get_idmap_vector(void)
2332{
2333 return hyp_idmap_vector;
2334}
2335
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002336static int kvm_map_idmap_text(pgd_t *pgd)
2337{
2338 int err;
2339
2340 /* Create the idmap in the boot page tables */
Kristina Martsenko98732d12018-01-15 15:23:49 +00002341 err = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002342 hyp_idmap_start, hyp_idmap_end,
2343 __phys_to_pfn(hyp_idmap_start),
2344 PAGE_HYP_EXEC);
2345 if (err)
2346 kvm_err("Failed to idmap %lx-%lx\n",
2347 hyp_idmap_start, hyp_idmap_end);
2348
2349 return err;
2350}
2351
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002352int kvm_mmu_init(void)
2353{
Marc Zyngier2fb41052013-04-12 19:12:03 +01002354 int err;
2355
Andrew Scull0a787912020-05-19 11:40:36 +01002356 hyp_idmap_start = __pa_symbol(__hyp_idmap_text_start);
Marc Zyngier46fef152018-03-12 14:25:10 +00002357 hyp_idmap_start = ALIGN_DOWN(hyp_idmap_start, PAGE_SIZE);
Andrew Scull0a787912020-05-19 11:40:36 +01002358 hyp_idmap_end = __pa_symbol(__hyp_idmap_text_end);
Marc Zyngier46fef152018-03-12 14:25:10 +00002359 hyp_idmap_end = ALIGN(hyp_idmap_end, PAGE_SIZE);
Andrew Scull0a787912020-05-19 11:40:36 +01002360 hyp_idmap_vector = __pa_symbol(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002361
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00002362 /*
2363 * We rely on the linker script to ensure at build time that the HYP
2364 * init code does not cross a page boundary.
2365 */
2366 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002367
Marc Zyngierb4ef0492017-12-03 20:04:51 +00002368 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
2369 kvm_debug("HYP VA range: %lx:%lx\n",
2370 kern_hyp_va(PAGE_OFFSET),
2371 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01002372
Marc Zyngier6c41a412016-06-30 18:40:51 +01002373 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngiered57cac2017-12-03 18:22:49 +00002374 hyp_idmap_start < kern_hyp_va((unsigned long)high_memory - 1) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01002375 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01002376 /*
2377 * The idmap page is intersecting with the VA space,
2378 * it is not safe to continue further.
2379 */
2380 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
2381 err = -EINVAL;
2382 goto out;
2383 }
2384
Christoffer Dall38f791a2014-10-10 12:14:28 +02002385 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002386 if (!hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05002387 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01002388 err = -ENOMEM;
2389 goto out;
2390 }
2391
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002392 if (__kvm_cpu_uses_extended_idmap()) {
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002393 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
2394 hyp_pgd_order);
2395 if (!boot_hyp_pgd) {
2396 kvm_err("Hyp boot PGD not allocated\n");
2397 err = -ENOMEM;
2398 goto out;
2399 }
2400
2401 err = kvm_map_idmap_text(boot_hyp_pgd);
2402 if (err)
2403 goto out;
2404
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002405 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
2406 if (!merged_hyp_pgd) {
2407 kvm_err("Failed to allocate extra HYP pgd\n");
2408 goto out;
2409 }
2410 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
2411 hyp_idmap_start);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002412 } else {
2413 err = kvm_map_idmap_text(hyp_pgd);
2414 if (err)
2415 goto out;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002416 }
2417
Marc Zyngiere3f019b2017-12-04 17:04:38 +00002418 io_map_base = hyp_idmap_start;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002419 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01002420out:
Marc Zyngier4f728272013-04-12 19:12:05 +01002421 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01002422 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002423}
Eric Augerdf6ce242014-06-06 11:10:23 +02002424
2425void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002426 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -08002427 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02002428 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02002429 enum kvm_mr_change change)
2430{
Mario Smarduchc6473552015-01-15 15:58:56 -08002431 /*
2432 * At this point memslot has been committed and there is an
Fuad Tabba656012c2020-04-01 15:03:10 +01002433 * allocated dirty_bitmap[], dirty pages will be tracked while the
Mario Smarduchc6473552015-01-15 15:58:56 -08002434 * memory slot is write protected.
2435 */
Keqian Zhuc8626262020-04-13 20:20:23 +08002436 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2437 /*
2438 * If we're with initial-all-set, we don't need to write
2439 * protect any pages because they're all reported as dirty.
2440 * Huge pages and normal pages will be write protect gradually.
2441 */
2442 if (!kvm_dirty_log_manual_protect_and_init_set(kvm)) {
2443 kvm_mmu_wp_memory_region(kvm, mem->slot);
2444 }
2445 }
Eric Augerdf6ce242014-06-06 11:10:23 +02002446}
2447
2448int kvm_arch_prepare_memory_region(struct kvm *kvm,
2449 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002450 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02002451 enum kvm_mr_change change)
2452{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002453 hva_t hva = mem->userspace_addr;
2454 hva_t reg_end = hva + mem->memory_size;
2455 bool writable = !(mem->flags & KVM_MEM_READONLY);
2456 int ret = 0;
2457
Mario Smarduch15a49a42015-01-15 15:58:58 -08002458 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
2459 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002460 return 0;
2461
2462 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02002463 * Prevent userspace from creating a memory region outside of the IPA
2464 * space addressable by the KVM guest IPA space.
2465 */
2466 if (memslot->base_gfn + memslot->npages >=
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01002467 (kvm_phys_size(kvm) >> PAGE_SHIFT))
Christoffer Dallc3058d52014-10-10 12:14:29 +02002468 return -EFAULT;
2469
Michel Lespinasse89154dd2020-06-08 21:33:29 -07002470 mmap_read_lock(current->mm);
Christoffer Dallc3058d52014-10-10 12:14:29 +02002471 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002472 * A memory region could potentially cover multiple VMAs, and any holes
2473 * between them, so iterate over all of them to find out if we can map
2474 * any of them right now.
2475 *
2476 * +--------------------------------------------+
2477 * +---------------+----------------+ +----------------+
2478 * | : VMA 1 | VMA 2 | | VMA 3 : |
2479 * +---------------+----------------+ +----------------+
2480 * | memory region |
2481 * +--------------------------------------------+
2482 */
2483 do {
2484 struct vm_area_struct *vma = find_vma(current->mm, hva);
2485 hva_t vm_start, vm_end;
2486
2487 if (!vma || vma->vm_start >= reg_end)
2488 break;
2489
2490 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002491 * Take the intersection of this VMA with the memory region
2492 */
2493 vm_start = max(hva, vma->vm_start);
2494 vm_end = min(reg_end, vma->vm_end);
2495
2496 if (vma->vm_flags & VM_PFNMAP) {
2497 gpa_t gpa = mem->guest_phys_addr +
2498 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02002499 phys_addr_t pa;
2500
2501 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
2502 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002503
Mario Smarduch15a49a42015-01-15 15:58:58 -08002504 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00002505 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2506 ret = -EINVAL;
2507 goto out;
2508 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08002509
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002510 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
2511 vm_end - vm_start,
2512 writable);
2513 if (ret)
2514 break;
2515 }
2516 hva = vm_end;
2517 } while (hva < reg_end);
2518
Mario Smarduch15a49a42015-01-15 15:58:58 -08002519 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00002520 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08002521
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002522 spin_lock(&kvm->mmu_lock);
2523 if (ret)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002524 unmap_stage2_range(&kvm->arch.mmu, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002525 else
2526 stage2_flush_memslot(kvm, memslot);
2527 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00002528out:
Michel Lespinasse89154dd2020-06-08 21:33:29 -07002529 mmap_read_unlock(current->mm);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002530 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02002531}
2532
Sean Christophersone96c81e2020-02-18 13:07:27 -08002533void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
Eric Augerdf6ce242014-06-06 11:10:23 +02002534{
2535}
2536
Sean Christopherson15248252019-02-05 12:54:17 -08002537void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Eric Augerdf6ce242014-06-06 11:10:23 +02002538{
2539}
2540
2541void kvm_arch_flush_shadow_all(struct kvm *kvm)
2542{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002543 kvm_free_stage2_pgd(&kvm->arch.mmu);
Eric Augerdf6ce242014-06-06 11:10:23 +02002544}
2545
2546void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2547 struct kvm_memory_slot *slot)
2548{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002549 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2550 phys_addr_t size = slot->npages << PAGE_SHIFT;
2551
2552 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002553 unmap_stage2_range(&kvm->arch.mmu, gpa, size);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002554 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002555}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002556
2557/*
2558 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2559 *
2560 * Main problems:
2561 * - S/W ops are local to a CPU (not broadcast)
2562 * - We have line migration behind our back (speculation)
2563 * - System caches don't support S/W at all (damn!)
2564 *
2565 * In the face of the above, the best we can do is to try and convert
2566 * S/W ops to VA ops. Because the guest is not allowed to infer the
2567 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2568 * which is a rather good thing for us.
2569 *
2570 * Also, it is only used when turning caches on/off ("The expected
2571 * usage of the cache maintenance instructions that operate by set/way
2572 * is associated with the cache maintenance instructions associated
2573 * with the powerdown and powerup of caches, if this is required by
2574 * the implementation.").
2575 *
2576 * We use the following policy:
2577 *
2578 * - If we trap a S/W operation, we enable VM trapping to detect
2579 * caches being turned on/off, and do a full clean.
2580 *
2581 * - We flush the caches on both caches being turned on and off.
2582 *
2583 * - Once the caches are enabled, we stop trapping VM ops.
2584 */
2585void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2586{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002587 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002588
2589 /*
2590 * If this is the first time we do a S/W operation
2591 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2592 * VM trapping.
2593 *
2594 * Otherwise, rely on the VM trapping to wait for the MMU +
2595 * Caches to be turned off. At that point, we'll be able to
2596 * clean the caches again.
2597 */
2598 if (!(hcr & HCR_TVM)) {
2599 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2600 vcpu_has_cache_enabled(vcpu));
2601 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002602 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002603 }
2604}
2605
2606void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2607{
2608 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2609
2610 /*
2611 * If switching the MMU+caches on, need to invalidate the caches.
2612 * If switching it off, need to clean the caches.
2613 * Clean + invalidate does the trick always.
2614 */
2615 if (now_enabled != was_enabled)
2616 stage2_flush_vm(vcpu->kvm);
2617
2618 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2619 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002620 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002621
2622 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2623}