blob: fabd72b0c8a4e88dfe7646c9fd36a71956a658fb [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>
Will Deacon0f9d09b2020-09-11 14:25:12 +010017#include <asm/kvm_pgtable.h>
James Morse0db5e022019-01-29 18:48:49 +000018#include <asm/kvm_ras.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050019#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050020#include <asm/kvm_emulate.h>
Marc Zyngier1e947ba2015-01-29 11:59:54 +000021#include <asm/virt.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050022
23#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050024
Will Deacon0f9d09b2020-09-11 14:25:12 +010025static struct kvm_pgtable *hyp_pgtable;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050026static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
27
Marc Zyngier5a677ce2013-04-12 19:12:06 +010028static unsigned long hyp_idmap_start;
29static unsigned long hyp_idmap_end;
30static phys_addr_t hyp_idmap_vector;
31
Marc Zyngiere3f019b2017-12-04 17:04:38 +000032static unsigned long io_map_base;
33
Mario Smarduch15a49a42015-01-15 15:58:58 -080034#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
35#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
36
Marc Zyngier6d674e22019-12-11 16:56:48 +000037static bool is_iomap(unsigned long flags)
38{
39 return flags & KVM_S2PTE_FLAG_IS_IOMAP;
40}
41
Mario Smarduch15a49a42015-01-15 15:58:58 -080042static bool memslot_is_logging(struct kvm_memory_slot *memslot)
43{
Mario Smarduch15a49a42015-01-15 15:58:58 -080044 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080045}
46
47/**
48 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
49 * @kvm: pointer to kvm structure.
50 *
51 * Interface to HYP function to flush all VM TLB entries
52 */
53void kvm_flush_remote_tlbs(struct kvm *kvm)
54{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +010055 kvm_call_hyp(__kvm_tlb_flush_vmid, &kvm->arch.mmu);
Mario Smarduch15a49a42015-01-15 15:58:58 -080056}
Christoffer Dallad361f02012-11-01 17:14:45 +010057
Marc Zyngierefaa5b92019-01-02 12:34:25 +000058static void kvm_tlb_flush_vmid_ipa(struct kvm_s2_mmu *mmu, phys_addr_t ipa,
59 int level)
Christoffer Dalld5d81842013-01-20 18:28:07 -050060{
Marc Zyngierefaa5b92019-01-02 12:34:25 +000061 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, mmu, ipa, level);
Christoffer Dalld5d81842013-01-20 18:28:07 -050062}
63
Marc Zyngier363ef892014-12-19 16:48:06 +000064/*
65 * D-Cache management functions. They take the page table entries by
66 * value, as they are flushing the cache using the kernel mapping (or
67 * kmap on 32bit).
68 */
69static void kvm_flush_dcache_pte(pte_t pte)
70{
71 __kvm_flush_dcache_pte(pte);
72}
73
74static void kvm_flush_dcache_pmd(pmd_t pmd)
75{
76 __kvm_flush_dcache_pmd(pmd);
77}
78
79static void kvm_flush_dcache_pud(pud_t pud)
80{
81 __kvm_flush_dcache_pud(pud);
82}
83
Ard Biesheuvele6fab542015-11-10 15:11:20 +010084static bool kvm_is_device_pfn(unsigned long pfn)
85{
86 return !pfn_valid(pfn);
87}
88
Mario Smarduch15a49a42015-01-15 15:58:58 -080089/**
90 * stage2_dissolve_pmd() - clear and flush huge PMD entry
Christoffer Dalla0e50aa2019-01-04 21:09:05 +010091 * @mmu: pointer to mmu structure to operate on
Mario Smarduch15a49a42015-01-15 15:58:58 -080092 * @addr: IPA
93 * @pmd: pmd pointer for IPA
94 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +000095 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs.
Mario Smarduch15a49a42015-01-15 15:58:58 -080096 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +010097static void stage2_dissolve_pmd(struct kvm_s2_mmu *mmu, phys_addr_t addr, pmd_t *pmd)
Mario Smarduch15a49a42015-01-15 15:58:58 -080098{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +000099 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800100 return;
101
102 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000103 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Mario Smarduch15a49a42015-01-15 15:58:58 -0800104 put_page(virt_to_page(pmd));
105}
106
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000107/**
108 * stage2_dissolve_pud() - clear and flush huge PUD entry
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100109 * @mmu: pointer to mmu structure to operate on
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000110 * @addr: IPA
111 * @pud: pud pointer for IPA
112 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000113 * Function clears a PUD entry, flushes addr 1st and 2nd stage TLBs.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000114 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100115static void stage2_dissolve_pud(struct kvm_s2_mmu *mmu, phys_addr_t addr, pud_t *pudp)
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000116{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100117 struct kvm *kvm = mmu->kvm;
118
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000119 if (!stage2_pud_huge(kvm, *pudp))
120 return;
121
122 stage2_pud_clear(kvm, pudp);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000123 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000124 put_page(virt_to_page(pudp));
125}
126
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100127static void clear_stage2_pgd_entry(struct kvm_s2_mmu *mmu, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100128{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100129 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700130 p4d_t *p4d_table __maybe_unused = stage2_p4d_offset(kvm, pgd, 0UL);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100131 stage2_pgd_clear(kvm, pgd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000132 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700133 stage2_p4d_free(kvm, p4d_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200134 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100135}
136
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100137static void clear_stage2_p4d_entry(struct kvm_s2_mmu *mmu, p4d_t *p4d, phys_addr_t addr)
Mike Rapoporte9f63762020-06-04 16:46:23 -0700138{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100139 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700140 pud_t *pud_table __maybe_unused = stage2_pud_offset(kvm, p4d, 0);
141 stage2_p4d_clear(kvm, p4d);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000142 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700143 stage2_pud_free(kvm, pud_table);
144 put_page(virt_to_page(p4d));
145}
146
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100147static void clear_stage2_pud_entry(struct kvm_s2_mmu *mmu, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500148{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100149 struct kvm *kvm = mmu->kvm;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100150 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(kvm, pud, 0);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100151
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100152 VM_BUG_ON(stage2_pud_huge(kvm, *pud));
153 stage2_pud_clear(kvm, pud);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000154 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100155 stage2_pmd_free(kvm, pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100156 put_page(virt_to_page(pud));
157}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500158
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100159static void clear_stage2_pmd_entry(struct kvm_s2_mmu *mmu, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100160{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200161 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000162 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200163 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000164 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_NO_LEVEL_HINT);
Anshuman Khandual14b94d02019-03-12 18:55:45 +0530165 free_page((unsigned long)pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100166 put_page(virt_to_page(pmd));
167}
168
Marc Zyngier88dc25e82018-05-25 12:23:11 +0100169static inline void kvm_set_pte(pte_t *ptep, pte_t new_pte)
170{
171 WRITE_ONCE(*ptep, new_pte);
172 dsb(ishst);
173}
174
175static inline void kvm_set_pmd(pmd_t *pmdp, pmd_t new_pmd)
176{
177 WRITE_ONCE(*pmdp, new_pmd);
178 dsb(ishst);
179}
180
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100181static inline void kvm_pmd_populate(pmd_t *pmdp, pte_t *ptep)
182{
183 kvm_set_pmd(pmdp, kvm_mk_pmd(ptep));
184}
185
186static inline void kvm_pud_populate(pud_t *pudp, pmd_t *pmdp)
187{
188 WRITE_ONCE(*pudp, kvm_mk_pud(pmdp));
189 dsb(ishst);
190}
191
Mike Rapoporte9f63762020-06-04 16:46:23 -0700192static inline void kvm_p4d_populate(p4d_t *p4dp, pud_t *pudp)
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100193{
Mike Rapoporte9f63762020-06-04 16:46:23 -0700194 WRITE_ONCE(*p4dp, kvm_mk_p4d(pudp));
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100195 dsb(ishst);
196}
197
Mike Rapoporte9f63762020-06-04 16:46:23 -0700198static inline void kvm_pgd_populate(pgd_t *pgdp, p4d_t *p4dp)
199{
200#ifndef __PAGETABLE_P4D_FOLDED
201 WRITE_ONCE(*pgdp, kvm_mk_pgd(p4dp));
202 dsb(ishst);
203#endif
204}
205
Marc Zyngier363ef892014-12-19 16:48:06 +0000206/*
207 * Unmapping vs dcache management:
208 *
209 * If a guest maps certain memory pages as uncached, all writes will
210 * bypass the data cache and go directly to RAM. However, the CPUs
211 * can still speculate reads (not writes) and fill cache lines with
212 * data.
213 *
214 * Those cache lines will be *clean* cache lines though, so a
215 * clean+invalidate operation is equivalent to an invalidate
216 * operation, because no cache lines are marked dirty.
217 *
218 * Those clean cache lines could be filled prior to an uncached write
219 * by the guest, and the cache coherent IO subsystem would therefore
220 * end up writing old data to disk.
221 *
222 * This is why right after unmapping a page/section and invalidating
223 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
224 * the IO subsystem will never hit in the cache.
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100225 *
226 * This is all avoided on systems that have ARM64_HAS_STAGE2_FWB, as
227 * we then fully enforce cacheability of RAM, no matter what the guest
228 * does.
Marc Zyngier363ef892014-12-19 16:48:06 +0000229 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100230static void unmap_stage2_ptes(struct kvm_s2_mmu *mmu, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200231 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100232{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200233 phys_addr_t start_addr = addr;
234 pte_t *pte, *start_pte;
235
236 start_pte = pte = pte_offset_kernel(pmd, addr);
237 do {
238 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000239 pte_t old_pte = *pte;
240
Christoffer Dall4f853a72014-05-09 23:31:31 +0200241 kvm_set_pte(pte, __pte(0));
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000242 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PTE_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000243
244 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100245 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000246 kvm_flush_dcache_pte(old_pte);
247
248 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200249 }
250 } while (pte++, addr += PAGE_SIZE, addr != end);
251
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100252 if (stage2_pte_table_empty(mmu->kvm, start_pte))
253 clear_stage2_pmd_entry(mmu, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500254}
255
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100256static void unmap_stage2_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200257 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500258{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100259 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200260 phys_addr_t next, start_addr = addr;
261 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000262
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100263 start_pmd = pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200264 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100265 next = stage2_pmd_addr_end(kvm, addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200266 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000267 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000268 pmd_t old_pmd = *pmd;
269
Christoffer Dall4f853a72014-05-09 23:31:31 +0200270 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000271 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000272
273 kvm_flush_dcache_pmd(old_pmd);
274
Christoffer Dall4f853a72014-05-09 23:31:31 +0200275 put_page(virt_to_page(pmd));
276 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100277 unmap_stage2_ptes(mmu, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100278 }
279 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200280 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100281
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100282 if (stage2_pmd_table_empty(kvm, start_pmd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100283 clear_stage2_pud_entry(mmu, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200284}
285
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100286static void unmap_stage2_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200287 phys_addr_t addr, phys_addr_t end)
288{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100289 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200290 phys_addr_t next, start_addr = addr;
291 pud_t *pud, *start_pud;
292
Mike Rapoporte9f63762020-06-04 16:46:23 -0700293 start_pud = pud = stage2_pud_offset(kvm, p4d, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200294 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100295 next = stage2_pud_addr_end(kvm, addr, end);
296 if (!stage2_pud_none(kvm, *pud)) {
297 if (stage2_pud_huge(kvm, *pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000298 pud_t old_pud = *pud;
299
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100300 stage2_pud_clear(kvm, pud);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000301 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Marc Zyngier363ef892014-12-19 16:48:06 +0000302 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200303 put_page(virt_to_page(pud));
304 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100305 unmap_stage2_pmds(mmu, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200306 }
307 }
308 } while (pud++, addr = next, addr != end);
309
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100310 if (stage2_pud_table_empty(kvm, start_pud))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100311 clear_stage2_p4d_entry(mmu, p4d, start_addr);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700312}
313
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100314static void unmap_stage2_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -0700315 phys_addr_t addr, phys_addr_t end)
316{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100317 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700318 phys_addr_t next, start_addr = addr;
319 p4d_t *p4d, *start_p4d;
320
321 start_p4d = p4d = stage2_p4d_offset(kvm, pgd, addr);
322 do {
323 next = stage2_p4d_addr_end(kvm, addr, end);
324 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100325 unmap_stage2_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700326 } while (p4d++, addr = next, addr != end);
327
328 if (stage2_p4d_table_empty(kvm, start_p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100329 clear_stage2_pgd_entry(mmu, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200330}
331
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000332/**
333 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
334 * @kvm: The VM pointer
335 * @start: The intermediate physical base address of the range to unmap
336 * @size: The size of the area to unmap
337 *
338 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
339 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
340 * destroying the VM), otherwise another faulting VCPU may come in and mess
341 * with things behind our backs.
342 */
Will Deaconb5331372020-08-11 11:27:25 +0100343static void __unmap_stage2_range(struct kvm_s2_mmu *mmu, phys_addr_t start, u64 size,
344 bool may_block)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200345{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100346 struct kvm *kvm = mmu->kvm;
Christoffer Dall4f853a72014-05-09 23:31:31 +0200347 pgd_t *pgd;
348 phys_addr_t addr = start, end = start + size;
349 phys_addr_t next;
350
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100351 assert_spin_locked(&kvm->mmu_lock);
Jia He47a91b72018-05-21 11:05:30 +0800352 WARN_ON(size & ~PAGE_MASK);
353
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100354 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200355 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100356 /*
357 * Make sure the page table is still active, as another thread
358 * could have possibly freed the page table, while we released
359 * the lock.
360 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100361 if (!READ_ONCE(mmu->pgd))
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100362 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100363 next = stage2_pgd_addr_end(kvm, addr, end);
364 if (!stage2_pgd_none(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100365 unmap_stage2_p4ds(mmu, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100366 /*
367 * If the range is too large, release the kvm->mmu_lock
368 * to prevent starvation and lockup detector warnings.
369 */
Will Deaconb5331372020-08-11 11:27:25 +0100370 if (may_block && next != end)
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100371 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200372 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000373}
374
Will Deaconb5331372020-08-11 11:27:25 +0100375static void unmap_stage2_range(struct kvm_s2_mmu *mmu, phys_addr_t start, u64 size)
376{
377 __unmap_stage2_range(mmu, start, size, true);
378}
379
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100380static void stage2_flush_ptes(struct kvm_s2_mmu *mmu, pmd_t *pmd,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000381 phys_addr_t addr, phys_addr_t end)
382{
383 pte_t *pte;
384
385 pte = pte_offset_kernel(pmd, addr);
386 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100387 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000388 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000389 } while (pte++, addr += PAGE_SIZE, addr != end);
390}
391
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100392static void stage2_flush_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000393 phys_addr_t addr, phys_addr_t end)
394{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100395 struct kvm *kvm = mmu->kvm;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000396 pmd_t *pmd;
397 phys_addr_t next;
398
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100399 pmd = stage2_pmd_offset(kvm, pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000400 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100401 next = stage2_pmd_addr_end(kvm, addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000402 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000403 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000404 kvm_flush_dcache_pmd(*pmd);
405 else
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100406 stage2_flush_ptes(mmu, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000407 }
408 } while (pmd++, addr = next, addr != end);
409}
410
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100411static void stage2_flush_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Marc Zyngier9d218a12014-01-15 12:50:23 +0000412 phys_addr_t addr, phys_addr_t end)
413{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100414 struct kvm *kvm = mmu->kvm;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000415 pud_t *pud;
416 phys_addr_t next;
417
Mike Rapoporte9f63762020-06-04 16:46:23 -0700418 pud = stage2_pud_offset(kvm, p4d, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000419 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100420 next = stage2_pud_addr_end(kvm, addr, end);
421 if (!stage2_pud_none(kvm, *pud)) {
422 if (stage2_pud_huge(kvm, *pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000423 kvm_flush_dcache_pud(*pud);
424 else
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100425 stage2_flush_pmds(mmu, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000426 }
427 } while (pud++, addr = next, addr != end);
428}
429
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100430static void stage2_flush_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -0700431 phys_addr_t addr, phys_addr_t end)
432{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100433 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700434 p4d_t *p4d;
435 phys_addr_t next;
436
437 p4d = stage2_p4d_offset(kvm, pgd, addr);
438 do {
439 next = stage2_p4d_addr_end(kvm, addr, end);
440 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100441 stage2_flush_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700442 } while (p4d++, addr = next, addr != end);
443}
444
Marc Zyngier9d218a12014-01-15 12:50:23 +0000445static void stage2_flush_memslot(struct kvm *kvm,
446 struct kvm_memory_slot *memslot)
447{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100448 struct kvm_s2_mmu *mmu = &kvm->arch.mmu;
Marc Zyngier9d218a12014-01-15 12:50:23 +0000449 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
450 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
451 phys_addr_t next;
452 pgd_t *pgd;
453
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100454 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000455 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100456 next = stage2_pgd_addr_end(kvm, addr, end);
457 if (!stage2_pgd_none(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100458 stage2_flush_p4ds(mmu, pgd, addr, next);
Jiang Yi48c963e2020-04-15 10:42:29 +0200459
460 if (next != end)
461 cond_resched_lock(&kvm->mmu_lock);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000462 } while (pgd++, addr = next, addr != end);
463}
464
465/**
466 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
467 * @kvm: The struct kvm pointer
468 *
469 * Go through the stage 2 page tables and invalidate any cache lines
470 * backing memory already mapped to the VM.
471 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000472static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000473{
474 struct kvm_memslots *slots;
475 struct kvm_memory_slot *memslot;
476 int idx;
477
478 idx = srcu_read_lock(&kvm->srcu);
479 spin_lock(&kvm->mmu_lock);
480
481 slots = kvm_memslots(kvm);
482 kvm_for_each_memslot(memslot, slots)
483 stage2_flush_memslot(kvm, memslot);
484
485 spin_unlock(&kvm->mmu_lock);
486 srcu_read_unlock(&kvm->srcu, idx);
487}
488
Marc Zyngier000d3992013-03-05 02:43:17 +0000489/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100490 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000491 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100492void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000493{
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100494 mutex_lock(&kvm_hyp_pgd_mutex);
Will Deacon0f9d09b2020-09-11 14:25:12 +0100495 if (hyp_pgtable) {
496 kvm_pgtable_hyp_destroy(hyp_pgtable);
497 kfree(hyp_pgtable);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000498 }
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500499 mutex_unlock(&kvm_hyp_pgd_mutex);
500}
501
Will Deacon0f9d09b2020-09-11 14:25:12 +0100502static int __create_hyp_mappings(unsigned long start, unsigned long size,
503 unsigned long phys, enum kvm_pgtable_prot prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500504{
Will Deacon0f9d09b2020-09-11 14:25:12 +0100505 int err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500506
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500507 mutex_lock(&kvm_hyp_pgd_mutex);
Will Deacon0f9d09b2020-09-11 14:25:12 +0100508 err = kvm_pgtable_hyp_map(hyp_pgtable, start, size, phys, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500509 mutex_unlock(&kvm_hyp_pgd_mutex);
Will Deacon0f9d09b2020-09-11 14:25:12 +0100510
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500511 return err;
512}
513
Christoffer Dall40c27292013-11-15 13:14:12 -0800514static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
515{
516 if (!is_vmalloc_addr(kaddr)) {
517 BUG_ON(!virt_addr_valid(kaddr));
518 return __pa(kaddr);
519 } else {
520 return page_to_phys(vmalloc_to_page(kaddr)) +
521 offset_in_page(kaddr);
522 }
523}
524
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500525/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100526 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500527 * @from: The virtual kernel start address of the range
528 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100529 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500530 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100531 * The same virtual address as the kernel virtual address is also used
532 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
533 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500534 */
Will Deacon0f9d09b2020-09-11 14:25:12 +0100535int create_hyp_mappings(void *from, void *to, enum kvm_pgtable_prot prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500536{
Christoffer Dall40c27292013-11-15 13:14:12 -0800537 phys_addr_t phys_addr;
538 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100539 unsigned long start = kern_hyp_va((unsigned long)from);
540 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100541
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000542 if (is_kernel_in_hyp_mode())
543 return 0;
544
Christoffer Dall40c27292013-11-15 13:14:12 -0800545 start = start & PAGE_MASK;
546 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100547
Christoffer Dall40c27292013-11-15 13:14:12 -0800548 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
549 int err;
550
551 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Will Deacon0f9d09b2020-09-11 14:25:12 +0100552 err = __create_hyp_mappings(virt_addr, PAGE_SIZE, phys_addr,
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100553 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800554 if (err)
555 return err;
556 }
557
558 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500559}
560
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000561static int __create_hyp_private_mapping(phys_addr_t phys_addr, size_t size,
Will Deacon0f9d09b2020-09-11 14:25:12 +0100562 unsigned long *haddr,
563 enum kvm_pgtable_prot prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500564{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000565 unsigned long base;
566 int ret = 0;
Marc Zyngier6060df82013-04-12 19:12:01 +0100567
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000568 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier6060df82013-04-12 19:12:01 +0100569
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000570 /*
Fuad Tabba656012c2020-04-01 15:03:10 +0100571 * This assumes that we have enough space below the idmap
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000572 * page to allocate our VAs. If not, the check below will
573 * kick. A potential alternative would be to detect that
574 * overflow and switch to an allocation above the idmap.
575 *
576 * The allocated size is always a multiple of PAGE_SIZE.
577 */
578 size = PAGE_ALIGN(size + offset_in_page(phys_addr));
579 base = io_map_base - size;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000580
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000581 /*
582 * Verify that BIT(VA_BITS - 1) hasn't been flipped by
583 * allocating the new area, as it would indicate we've
584 * overflowed the idmap/IO address range.
585 */
586 if ((base ^ io_map_base) & BIT(VA_BITS - 1))
587 ret = -ENOMEM;
588 else
589 io_map_base = base;
590
591 mutex_unlock(&kvm_hyp_pgd_mutex);
592
593 if (ret)
594 goto out;
595
Will Deacon0f9d09b2020-09-11 14:25:12 +0100596 ret = __create_hyp_mappings(base, size, phys_addr, prot);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000597 if (ret)
598 goto out;
599
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000600 *haddr = base + offset_in_page(phys_addr);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000601out:
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000602 return ret;
603}
604
605/**
606 * create_hyp_io_mappings - Map IO into both kernel and HYP
607 * @phys_addr: The physical start address which gets mapped
608 * @size: Size of the region being mapped
609 * @kaddr: Kernel VA for this mapping
610 * @haddr: HYP VA for this mapping
611 */
612int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
613 void __iomem **kaddr,
614 void __iomem **haddr)
615{
616 unsigned long addr;
617 int ret;
618
619 *kaddr = ioremap(phys_addr, size);
620 if (!*kaddr)
621 return -ENOMEM;
622
623 if (is_kernel_in_hyp_mode()) {
624 *haddr = *kaddr;
625 return 0;
626 }
627
628 ret = __create_hyp_private_mapping(phys_addr, size,
629 &addr, PAGE_HYP_DEVICE);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000630 if (ret) {
631 iounmap(*kaddr);
632 *kaddr = NULL;
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000633 *haddr = NULL;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000634 return ret;
635 }
636
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000637 *haddr = (void __iomem *)addr;
638 return 0;
639}
640
641/**
642 * create_hyp_exec_mappings - Map an executable range into HYP
643 * @phys_addr: The physical start address which gets mapped
644 * @size: Size of the region being mapped
645 * @haddr: HYP VA for this mapping
646 */
647int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size,
648 void **haddr)
649{
650 unsigned long addr;
651 int ret;
652
653 BUG_ON(is_kernel_in_hyp_mode());
654
655 ret = __create_hyp_private_mapping(phys_addr, size,
656 &addr, PAGE_HYP_EXEC);
657 if (ret) {
658 *haddr = NULL;
659 return ret;
660 }
661
662 *haddr = (void *)addr;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000663 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500664}
665
Christoffer Dalld5d81842013-01-20 18:28:07 -0500666/**
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100667 * kvm_init_stage2_mmu - Initialise a S2 MMU strucrure
668 * @kvm: The pointer to the KVM structure
669 * @mmu: The pointer to the s2 MMU structure
Christoffer Dalld5d81842013-01-20 18:28:07 -0500670 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000671 * Allocates only the stage-2 HW PGD level table(s) of size defined by
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100672 * stage2_pgd_size(mmu->kvm).
Christoffer Dalld5d81842013-01-20 18:28:07 -0500673 *
674 * Note we don't need locking here as this is only called when the VM is
675 * created, which can only be done once.
676 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100677int kvm_init_stage2_mmu(struct kvm *kvm, struct kvm_s2_mmu *mmu)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500678{
Christoffer Dalle329fb72018-12-11 15:26:31 +0100679 phys_addr_t pgd_phys;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500680 pgd_t *pgd;
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100681 int cpu;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500682
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100683 if (mmu->pgd != NULL) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500684 kvm_err("kvm_arch already initialized?\n");
685 return -EINVAL;
686 }
687
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000688 /* Allocate the HW PGD, making sure that each page gets its own refcount */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100689 pgd = alloc_pages_exact(stage2_pgd_size(kvm), GFP_KERNEL | __GFP_ZERO);
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000690 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000691 return -ENOMEM;
692
Christoffer Dalle329fb72018-12-11 15:26:31 +0100693 pgd_phys = virt_to_phys(pgd);
694 if (WARN_ON(pgd_phys & ~kvm_vttbr_baddr_mask(kvm)))
695 return -EINVAL;
696
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100697 mmu->last_vcpu_ran = alloc_percpu(typeof(*mmu->last_vcpu_ran));
698 if (!mmu->last_vcpu_ran) {
699 free_pages_exact(pgd, stage2_pgd_size(kvm));
700 return -ENOMEM;
701 }
702
703 for_each_possible_cpu(cpu)
704 *per_cpu_ptr(mmu->last_vcpu_ran, cpu) = -1;
705
706 mmu->kvm = kvm;
707 mmu->pgd = pgd;
708 mmu->pgd_phys = pgd_phys;
709 mmu->vmid.vmid_gen = 0;
710
Christoffer Dalld5d81842013-01-20 18:28:07 -0500711 return 0;
712}
713
Christoffer Dall957db102014-11-27 10:35:03 +0100714static void stage2_unmap_memslot(struct kvm *kvm,
715 struct kvm_memory_slot *memslot)
716{
717 hva_t hva = memslot->userspace_addr;
718 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
719 phys_addr_t size = PAGE_SIZE * memslot->npages;
720 hva_t reg_end = hva + size;
721
722 /*
723 * A memory region could potentially cover multiple VMAs, and any holes
724 * between them, so iterate over all of them to find out if we should
725 * unmap any of them.
726 *
727 * +--------------------------------------------+
728 * +---------------+----------------+ +----------------+
729 * | : VMA 1 | VMA 2 | | VMA 3 : |
730 * +---------------+----------------+ +----------------+
731 * | memory region |
732 * +--------------------------------------------+
733 */
734 do {
735 struct vm_area_struct *vma = find_vma(current->mm, hva);
736 hva_t vm_start, vm_end;
737
738 if (!vma || vma->vm_start >= reg_end)
739 break;
740
741 /*
742 * Take the intersection of this VMA with the memory region
743 */
744 vm_start = max(hva, vma->vm_start);
745 vm_end = min(reg_end, vma->vm_end);
746
747 if (!(vma->vm_flags & VM_PFNMAP)) {
748 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100749 unmap_stage2_range(&kvm->arch.mmu, gpa, vm_end - vm_start);
Christoffer Dall957db102014-11-27 10:35:03 +0100750 }
751 hva = vm_end;
752 } while (hva < reg_end);
753}
754
755/**
756 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
757 * @kvm: The struct kvm pointer
758 *
Fuad Tabba656012c2020-04-01 15:03:10 +0100759 * Go through the memregions and unmap any regular RAM
Christoffer Dall957db102014-11-27 10:35:03 +0100760 * backing memory already mapped to the VM.
761 */
762void stage2_unmap_vm(struct kvm *kvm)
763{
764 struct kvm_memslots *slots;
765 struct kvm_memory_slot *memslot;
766 int idx;
767
768 idx = srcu_read_lock(&kvm->srcu);
Michel Lespinasse89154dd2020-06-08 21:33:29 -0700769 mmap_read_lock(current->mm);
Christoffer Dall957db102014-11-27 10:35:03 +0100770 spin_lock(&kvm->mmu_lock);
771
772 slots = kvm_memslots(kvm);
773 kvm_for_each_memslot(memslot, slots)
774 stage2_unmap_memslot(kvm, memslot);
775
776 spin_unlock(&kvm->mmu_lock);
Michel Lespinasse89154dd2020-06-08 21:33:29 -0700777 mmap_read_unlock(current->mm);
Christoffer Dall957db102014-11-27 10:35:03 +0100778 srcu_read_unlock(&kvm->srcu, idx);
779}
780
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100781void kvm_free_stage2_pgd(struct kvm_s2_mmu *mmu)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500782{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100783 struct kvm *kvm = mmu->kvm;
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100784 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500785
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100786 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100787 if (mmu->pgd) {
788 unmap_stage2_range(mmu, 0, kvm_phys_size(kvm));
789 pgd = READ_ONCE(mmu->pgd);
790 mmu->pgd = NULL;
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100791 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100792 spin_unlock(&kvm->mmu_lock);
793
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000794 /* Free the HW pgd, one page at a time */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100795 if (pgd) {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100796 free_pages_exact(pgd, stage2_pgd_size(kvm));
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100797 free_percpu(mmu->last_vcpu_ran);
798 }
Christoffer Dalld5d81842013-01-20 18:28:07 -0500799}
800
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100801static p4d_t *stage2_get_p4d(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Christoffer Dall38f791a2014-10-10 12:14:28 +0200802 phys_addr_t addr)
803{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100804 struct kvm *kvm = mmu->kvm;
Christoffer Dall38f791a2014-10-10 12:14:28 +0200805 pgd_t *pgd;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700806 p4d_t *p4d;
Christoffer Dall38f791a2014-10-10 12:14:28 +0200807
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100808 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100809 if (stage2_pgd_none(kvm, *pgd)) {
Christoffer Dall38f791a2014-10-10 12:14:28 +0200810 if (!cache)
811 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -0700812 p4d = kvm_mmu_memory_cache_alloc(cache);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700813 stage2_pgd_populate(kvm, pgd, p4d);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200814 get_page(virt_to_page(pgd));
815 }
816
Mike Rapoporte9f63762020-06-04 16:46:23 -0700817 return stage2_p4d_offset(kvm, pgd, addr);
818}
819
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100820static pud_t *stage2_get_pud(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Mike Rapoporte9f63762020-06-04 16:46:23 -0700821 phys_addr_t addr)
822{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100823 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -0700824 p4d_t *p4d;
825 pud_t *pud;
826
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100827 p4d = stage2_get_p4d(mmu, cache, addr);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700828 if (stage2_p4d_none(kvm, *p4d)) {
829 if (!cache)
830 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -0700831 pud = kvm_mmu_memory_cache_alloc(cache);
Mike Rapoporte9f63762020-06-04 16:46:23 -0700832 stage2_p4d_populate(kvm, p4d, pud);
833 get_page(virt_to_page(p4d));
834 }
835
836 return stage2_pud_offset(kvm, p4d, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200837}
838
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100839static pmd_t *stage2_get_pmd(struct kvm_s2_mmu *mmu, struct kvm_mmu_memory_cache *cache,
Christoffer Dallad361f02012-11-01 17:14:45 +0100840 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500841{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100842 struct kvm *kvm = mmu->kvm;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500843 pud_t *pud;
844 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500845
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100846 pud = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000847 if (!pud || stage2_pud_huge(kvm, *pud))
Marc Zyngierd6dbdd32017-06-05 19:17:18 +0100848 return NULL;
849
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100850 if (stage2_pud_none(kvm, *pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500851 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +0100852 return NULL;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -0700853 pmd = kvm_mmu_memory_cache_alloc(cache);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100854 stage2_pud_populate(kvm, pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500855 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100856 }
857
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100858 return stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +0100859}
Christoffer Dalld5d81842013-01-20 18:28:07 -0500860
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100861static int stage2_set_pmd_huge(struct kvm_s2_mmu *mmu,
862 struct kvm_mmu_memory_cache *cache,
863 phys_addr_t addr, const pmd_t *new_pmd)
Christoffer Dallad361f02012-11-01 17:14:45 +0100864{
865 pmd_t *pmd, old_pmd;
866
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000867retry:
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100868 pmd = stage2_get_pmd(mmu, cache, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +0100869 VM_BUG_ON(!pmd);
870
Christoffer Dallad361f02012-11-01 17:14:45 +0100871 old_pmd = *pmd;
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000872 /*
873 * Multiple vcpus faulting on the same PMD entry, can
874 * lead to them sequentially updating the PMD with the
875 * same value. Following the break-before-make
876 * (pmd_clear() followed by tlb_flush()) process can
877 * hinder forward progress due to refaults generated
878 * on missing translations.
879 *
880 * Skip updating the page table if the entry is
881 * unchanged.
882 */
883 if (pmd_val(old_pmd) == pmd_val(*new_pmd))
884 return 0;
885
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100886 if (pmd_present(old_pmd)) {
Punit Agrawal86658b82018-08-13 11:43:50 +0100887 /*
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000888 * If we already have PTE level mapping for this block,
889 * we must unmap it to avoid inconsistent TLB state and
890 * leaking the table page. We could end up in this situation
891 * if the memory slot was marked for dirty logging and was
892 * reverted, leaving PTE level mappings for the pages accessed
893 * during the period. So, unmap the PTE level mapping for this
894 * block and retry, as we could have released the upper level
895 * table in the process.
Punit Agrawal86658b82018-08-13 11:43:50 +0100896 *
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000897 * Normal THP split/merge follows mmu_notifier callbacks and do
898 * get handled accordingly.
Punit Agrawal86658b82018-08-13 11:43:50 +0100899 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000900 if (!pmd_thp_or_huge(old_pmd)) {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100901 unmap_stage2_range(mmu, addr & S2_PMD_MASK, S2_PMD_SIZE);
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000902 goto retry;
903 }
Punit Agrawal86658b82018-08-13 11:43:50 +0100904 /*
905 * Mapping in huge pages should only happen through a
906 * fault. If a page is merged into a transparent huge
907 * page, the individual subpages of that huge page
908 * should be unmapped through MMU notifiers before we
909 * get here.
910 *
911 * Merging of CompoundPages is not supported; they
912 * should become splitting first, unmapped, merged,
913 * and mapped back in on-demand.
914 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000915 WARN_ON_ONCE(pmd_pfn(old_pmd) != pmd_pfn(*new_pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100916 pmd_clear(pmd);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000917 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PMD_LEVEL);
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100918 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +0100919 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100920 }
921
922 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100923 return 0;
924}
925
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100926static int stage2_set_pud_huge(struct kvm_s2_mmu *mmu,
927 struct kvm_mmu_memory_cache *cache,
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000928 phys_addr_t addr, const pud_t *new_pudp)
929{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100930 struct kvm *kvm = mmu->kvm;
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000931 pud_t *pudp, old_pud;
932
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000933retry:
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100934 pudp = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000935 VM_BUG_ON(!pudp);
936
937 old_pud = *pudp;
938
939 /*
940 * A large number of vcpus faulting on the same stage 2 entry,
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000941 * can lead to a refault due to the stage2_pud_clear()/tlb_flush().
942 * Skip updating the page tables if there is no change.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000943 */
944 if (pud_val(old_pud) == pud_val(*new_pudp))
945 return 0;
946
947 if (stage2_pud_present(kvm, old_pud)) {
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000948 /*
949 * If we already have table level mapping for this block, unmap
950 * the range for this block and retry.
951 */
952 if (!stage2_pud_huge(kvm, old_pud)) {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100953 unmap_stage2_range(mmu, addr & S2_PUD_MASK, S2_PUD_SIZE);
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +0000954 goto retry;
955 }
956
957 WARN_ON_ONCE(kvm_pud_pfn(old_pud) != kvm_pud_pfn(*new_pudp));
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000958 stage2_pud_clear(kvm, pudp);
Marc Zyngierefaa5b92019-01-02 12:34:25 +0000959 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PUD_LEVEL);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000960 } else {
961 get_page(virt_to_page(pudp));
962 }
963
964 kvm_set_pud(pudp, *new_pudp);
965 return 0;
966}
967
Punit Agrawal86d1c552018-12-11 17:10:38 +0000968/*
969 * stage2_get_leaf_entry - walk the stage2 VM page tables and return
970 * true if a valid and present leaf-entry is found. A pointer to the
971 * leaf-entry is returned in the appropriate level variable - pudpp,
972 * pmdpp, ptepp.
973 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100974static bool stage2_get_leaf_entry(struct kvm_s2_mmu *mmu, phys_addr_t addr,
Punit Agrawal86d1c552018-12-11 17:10:38 +0000975 pud_t **pudpp, pmd_t **pmdpp, pte_t **ptepp)
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100976{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100977 struct kvm *kvm = mmu->kvm;
Punit Agrawal86d1c552018-12-11 17:10:38 +0000978 pud_t *pudp;
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100979 pmd_t *pmdp;
980 pte_t *ptep;
981
Punit Agrawal86d1c552018-12-11 17:10:38 +0000982 *pudpp = NULL;
983 *pmdpp = NULL;
984 *ptepp = NULL;
985
Christoffer Dalla0e50aa2019-01-04 21:09:05 +0100986 pudp = stage2_get_pud(mmu, NULL, addr);
Punit Agrawal86d1c552018-12-11 17:10:38 +0000987 if (!pudp || stage2_pud_none(kvm, *pudp) || !stage2_pud_present(kvm, *pudp))
988 return false;
989
990 if (stage2_pud_huge(kvm, *pudp)) {
991 *pudpp = pudp;
992 return true;
993 }
994
995 pmdp = stage2_pmd_offset(kvm, pudp, addr);
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100996 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
997 return false;
998
Punit Agrawal86d1c552018-12-11 17:10:38 +0000999 if (pmd_thp_or_huge(*pmdp)) {
1000 *pmdpp = pmdp;
1001 return true;
1002 }
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001003
1004 ptep = pte_offset_kernel(pmdp, addr);
1005 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
1006 return false;
1007
Punit Agrawal86d1c552018-12-11 17:10:38 +00001008 *ptepp = ptep;
1009 return true;
1010}
1011
Paolo Bonzini0378dae2020-08-09 12:58:23 -04001012static bool stage2_is_exec(struct kvm_s2_mmu *mmu, phys_addr_t addr, unsigned long sz)
Punit Agrawal86d1c552018-12-11 17:10:38 +00001013{
1014 pud_t *pudp;
1015 pmd_t *pmdp;
1016 pte_t *ptep;
1017 bool found;
1018
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001019 found = stage2_get_leaf_entry(mmu, addr, &pudp, &pmdp, &ptep);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001020 if (!found)
1021 return false;
1022
1023 if (pudp)
Will Deaconb757b472020-07-23 11:17:14 +01001024 return sz <= PUD_SIZE && kvm_s2pud_exec(pudp);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001025 else if (pmdp)
Will Deaconb757b472020-07-23 11:17:14 +01001026 return sz <= PMD_SIZE && kvm_s2pmd_exec(pmdp);
Punit Agrawal86d1c552018-12-11 17:10:38 +00001027 else
Will Deaconb757b472020-07-23 11:17:14 +01001028 return sz == PAGE_SIZE && kvm_s2pte_exec(ptep);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001029}
1030
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001031static int stage2_set_pte(struct kvm_s2_mmu *mmu,
1032 struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -08001033 phys_addr_t addr, const pte_t *new_pte,
1034 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +01001035{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001036 struct kvm *kvm = mmu->kvm;
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001037 pud_t *pud;
Christoffer Dallad361f02012-11-01 17:14:45 +01001038 pmd_t *pmd;
1039 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001040 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
1041 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
1042
1043 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +01001044
Christoffer Dall38f791a2014-10-10 12:14:28 +02001045 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001046 pud = stage2_get_pud(mmu, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001047 if (!pud) {
1048 /*
1049 * Ignore calls from kvm_set_spte_hva for unallocated
1050 * address ranges.
1051 */
1052 return 0;
1053 }
1054
1055 /*
1056 * While dirty page logging - dissolve huge PUD, then continue
1057 * on to allocate page.
1058 */
1059 if (logging_active)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001060 stage2_dissolve_pud(mmu, addr, pud);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001061
1062 if (stage2_pud_none(kvm, *pud)) {
1063 if (!cache)
1064 return 0; /* ignore calls from kvm_set_spte_hva */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001065 pmd = kvm_mmu_memory_cache_alloc(cache);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001066 stage2_pud_populate(kvm, pud, pmd);
1067 get_page(virt_to_page(pud));
1068 }
1069
1070 pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001071 if (!pmd) {
1072 /*
1073 * Ignore calls from kvm_set_spte_hva for unallocated
1074 * address ranges.
1075 */
1076 return 0;
1077 }
1078
Mario Smarduch15a49a42015-01-15 15:58:58 -08001079 /*
1080 * While dirty page logging - dissolve huge PMD, then continue on to
1081 * allocate page.
1082 */
1083 if (logging_active)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001084 stage2_dissolve_pmd(mmu, addr, pmd);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001085
Christoffer Dallad361f02012-11-01 17:14:45 +01001086 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -05001087 if (pmd_none(*pmd)) {
1088 if (!cache)
1089 return 0; /* ignore calls from kvm_set_spte_hva */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001090 pte = kvm_mmu_memory_cache_alloc(cache);
Marc Zyngier0db9dd82018-06-27 15:51:05 +01001091 kvm_pmd_populate(pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001092 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001093 }
1094
1095 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001096
1097 if (iomap && pte_present(*pte))
1098 return -EFAULT;
1099
1100 /* Create 2nd stage page table mapping - Level 3 */
1101 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001102 if (pte_present(old_pte)) {
Punit Agrawal976d34e2018-08-13 11:43:51 +01001103 /* Skip page table update if there is no change */
1104 if (pte_val(old_pte) == pte_val(*new_pte))
1105 return 0;
1106
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001107 kvm_set_pte(pte, __pte(0));
Marc Zyngierefaa5b92019-01-02 12:34:25 +00001108 kvm_tlb_flush_vmid_ipa(mmu, addr, S2_PTE_LEVEL);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001109 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001110 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001111 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001112
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001113 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001114 return 0;
1115}
1116
Catalin Marinas06485052016-04-13 17:57:37 +01001117#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1118static int stage2_ptep_test_and_clear_young(pte_t *pte)
1119{
1120 if (pte_young(*pte)) {
1121 *pte = pte_mkold(*pte);
1122 return 1;
1123 }
1124 return 0;
1125}
1126#else
1127static int stage2_ptep_test_and_clear_young(pte_t *pte)
1128{
1129 return __ptep_test_and_clear_young(pte);
1130}
1131#endif
1132
1133static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1134{
1135 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1136}
1137
Punit Agrawal35a63962018-12-11 17:10:40 +00001138static int stage2_pudp_test_and_clear_young(pud_t *pud)
1139{
1140 return stage2_ptep_test_and_clear_young((pte_t *)pud);
1141}
1142
Christoffer Dalld5d81842013-01-20 18:28:07 -05001143/**
1144 * kvm_phys_addr_ioremap - map a device range to guest IPA
1145 *
1146 * @kvm: The KVM pointer
1147 * @guest_ipa: The IPA at which to insert the mapping
1148 * @pa: The physical address of the device
1149 * @size: The size of the mapping
1150 */
1151int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001152 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001153{
1154 phys_addr_t addr, end;
1155 int ret = 0;
1156 unsigned long pfn;
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001157 struct kvm_mmu_memory_cache cache = { 0, __GFP_ZERO, NULL, };
Christoffer Dalld5d81842013-01-20 18:28:07 -05001158
1159 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1160 pfn = __phys_to_pfn(pa);
1161
1162 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001163 pte_t pte = kvm_pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001164
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001165 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001166 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001167
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001168 ret = kvm_mmu_topup_memory_cache(&cache,
1169 kvm_mmu_cache_min_pages(kvm));
Christoffer Dalld5d81842013-01-20 18:28:07 -05001170 if (ret)
1171 goto out;
1172 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001173 ret = stage2_set_pte(&kvm->arch.mmu, &cache, addr, &pte,
1174 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001175 spin_unlock(&kvm->mmu_lock);
1176 if (ret)
1177 goto out;
1178
1179 pfn++;
1180 }
1181
1182out:
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001183 kvm_mmu_free_memory_cache(&cache);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001184 return ret;
1185}
1186
Mario Smarduchc6473552015-01-15 15:58:56 -08001187/**
1188 * stage2_wp_ptes - write protect PMD range
1189 * @pmd: pointer to pmd entry
1190 * @addr: range start address
1191 * @end: range end address
1192 */
1193static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1194{
1195 pte_t *pte;
1196
1197 pte = pte_offset_kernel(pmd, addr);
1198 do {
1199 if (!pte_none(*pte)) {
1200 if (!kvm_s2pte_readonly(pte))
1201 kvm_set_s2pte_readonly(pte);
1202 }
1203 } while (pte++, addr += PAGE_SIZE, addr != end);
1204}
1205
1206/**
1207 * stage2_wp_pmds - write protect PUD range
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001208 * kvm: kvm instance for the VM
Mario Smarduchc6473552015-01-15 15:58:56 -08001209 * @pud: pointer to pud entry
1210 * @addr: range start address
1211 * @end: range end address
1212 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001213static void stage2_wp_pmds(struct kvm_s2_mmu *mmu, pud_t *pud,
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001214 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001215{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001216 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001217 pmd_t *pmd;
1218 phys_addr_t next;
1219
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001220 pmd = stage2_pmd_offset(kvm, pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001221
1222 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001223 next = stage2_pmd_addr_end(kvm, addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001224 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001225 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001226 if (!kvm_s2pmd_readonly(pmd))
1227 kvm_set_s2pmd_readonly(pmd);
1228 } else {
1229 stage2_wp_ptes(pmd, addr, next);
1230 }
1231 }
1232 } while (pmd++, addr = next, addr != end);
1233}
1234
1235/**
Mike Rapoporte9f63762020-06-04 16:46:23 -07001236 * stage2_wp_puds - write protect P4D range
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001237 * @p4d: pointer to p4d entry
Zenghui Yu8324c3d2019-03-25 08:02:05 +00001238 * @addr: range start address
1239 * @end: range end address
1240 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001241static void stage2_wp_puds(struct kvm_s2_mmu *mmu, p4d_t *p4d,
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001242 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001243{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001244 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001245 pud_t *pud;
1246 phys_addr_t next;
1247
Mike Rapoporte9f63762020-06-04 16:46:23 -07001248 pud = stage2_pud_offset(kvm, p4d, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001249 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001250 next = stage2_pud_addr_end(kvm, addr, end);
1251 if (!stage2_pud_none(kvm, *pud)) {
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001252 if (stage2_pud_huge(kvm, *pud)) {
1253 if (!kvm_s2pud_readonly(pud))
1254 kvm_set_s2pud_readonly(pud);
1255 } else {
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001256 stage2_wp_pmds(mmu, pud, addr, next);
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001257 }
Mario Smarduchc6473552015-01-15 15:58:56 -08001258 }
1259 } while (pud++, addr = next, addr != end);
1260}
1261
1262/**
Mike Rapoporte9f63762020-06-04 16:46:23 -07001263 * stage2_wp_p4ds - write protect PGD range
1264 * @pgd: pointer to pgd entry
1265 * @addr: range start address
1266 * @end: range end address
1267 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001268static void stage2_wp_p4ds(struct kvm_s2_mmu *mmu, pgd_t *pgd,
Mike Rapoporte9f63762020-06-04 16:46:23 -07001269 phys_addr_t addr, phys_addr_t end)
1270{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001271 struct kvm *kvm = mmu->kvm;
Mike Rapoporte9f63762020-06-04 16:46:23 -07001272 p4d_t *p4d;
1273 phys_addr_t next;
1274
1275 p4d = stage2_p4d_offset(kvm, pgd, addr);
1276 do {
1277 next = stage2_p4d_addr_end(kvm, addr, end);
1278 if (!stage2_p4d_none(kvm, *p4d))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001279 stage2_wp_puds(mmu, p4d, addr, next);
Mike Rapoporte9f63762020-06-04 16:46:23 -07001280 } while (p4d++, addr = next, addr != end);
1281}
1282
1283/**
Mario Smarduchc6473552015-01-15 15:58:56 -08001284 * stage2_wp_range() - write protect stage2 memory region range
1285 * @kvm: The KVM pointer
1286 * @addr: Start address of range
1287 * @end: End address of range
1288 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001289static void stage2_wp_range(struct kvm_s2_mmu *mmu, phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001290{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001291 struct kvm *kvm = mmu->kvm;
Mario Smarduchc6473552015-01-15 15:58:56 -08001292 pgd_t *pgd;
1293 phys_addr_t next;
1294
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001295 pgd = mmu->pgd + stage2_pgd_index(kvm, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001296 do {
1297 /*
1298 * Release kvm_mmu_lock periodically if the memory region is
1299 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001300 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1301 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001302 * will also starve other vCPUs. We have to also make sure
1303 * that the page tables are not freed while we released
1304 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001305 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001306 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001307 if (!READ_ONCE(mmu->pgd))
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001308 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001309 next = stage2_pgd_addr_end(kvm, addr, end);
1310 if (stage2_pgd_present(kvm, *pgd))
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001311 stage2_wp_p4ds(mmu, pgd, addr, next);
Mario Smarduchc6473552015-01-15 15:58:56 -08001312 } while (pgd++, addr = next, addr != end);
1313}
1314
1315/**
1316 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1317 * @kvm: The KVM pointer
1318 * @slot: The memory slot to write protect
1319 *
1320 * Called to start logging dirty pages after memory region
1321 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001322 * all present PUD, PMD and PTEs are write protected in the memory region.
Mario Smarduchc6473552015-01-15 15:58:56 -08001323 * Afterwards read of dirty page log can be called.
1324 *
1325 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1326 * serializing operations for VM memory regions.
1327 */
1328void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1329{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001330 struct kvm_memslots *slots = kvm_memslots(kvm);
1331 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Sean Christopherson0577d1a2020-02-18 13:07:31 -08001332 phys_addr_t start, end;
1333
1334 if (WARN_ON_ONCE(!memslot))
1335 return;
1336
1337 start = memslot->base_gfn << PAGE_SHIFT;
1338 end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
Mario Smarduchc6473552015-01-15 15:58:56 -08001339
1340 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001341 stage2_wp_range(&kvm->arch.mmu, start, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001342 spin_unlock(&kvm->mmu_lock);
1343 kvm_flush_remote_tlbs(kvm);
1344}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001345
1346/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001347 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001348 * @kvm: The KVM pointer
1349 * @slot: The memory slot associated with mask
1350 * @gfn_offset: The gfn offset in memory slot
1351 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1352 * slot to be write protected
1353 *
1354 * Walks bits set in mask write protects the associated pte's. Caller must
1355 * acquire kvm_mmu_lock.
1356 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001357static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001358 struct kvm_memory_slot *slot,
1359 gfn_t gfn_offset, unsigned long mask)
1360{
1361 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1362 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1363 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1364
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001365 stage2_wp_range(&kvm->arch.mmu, start, end);
Mario Smarduch53c810c2015-01-15 15:58:57 -08001366}
Mario Smarduchc6473552015-01-15 15:58:56 -08001367
Kai Huang3b0f1d02015-01-28 10:54:23 +08001368/*
1369 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1370 * dirty pages.
1371 *
1372 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1373 * enable dirty logging for them.
1374 */
1375void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1376 struct kvm_memory_slot *slot,
1377 gfn_t gfn_offset, unsigned long mask)
1378{
1379 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1380}
1381
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001382static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001383{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001384 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001385}
1386
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001387static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001388{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001389 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001390}
1391
James Morse1559b752019-12-17 12:38:09 +00001392static void kvm_send_hwpoison_signal(unsigned long address, short lsb)
James Morse196f8782017-06-20 17:11:48 +01001393{
Eric W. Biederman795a8372018-04-16 13:39:10 -05001394 send_sig_mceerr(BUS_MCEERR_AR, (void __user *)address, lsb, current);
James Morse196f8782017-06-20 17:11:48 +01001395}
1396
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001397static bool fault_supports_stage2_huge_mapping(struct kvm_memory_slot *memslot,
1398 unsigned long hva,
1399 unsigned long map_size)
Christoffer Dall6794ad52018-11-02 08:53:22 +01001400{
Shaokun Zhangc2be79a2019-02-19 17:22:21 +08001401 gpa_t gpa_start;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001402 hva_t uaddr_start, uaddr_end;
1403 size_t size;
1404
Suzuki K Poulose9f283612020-05-07 20:35:45 +08001405 /* The memslot and the VMA are guaranteed to be aligned to PAGE_SIZE */
1406 if (map_size == PAGE_SIZE)
1407 return true;
1408
Christoffer Dall6794ad52018-11-02 08:53:22 +01001409 size = memslot->npages * PAGE_SIZE;
1410
1411 gpa_start = memslot->base_gfn << PAGE_SHIFT;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001412
1413 uaddr_start = memslot->userspace_addr;
1414 uaddr_end = uaddr_start + size;
1415
1416 /*
1417 * Pages belonging to memslots that don't have the same alignment
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001418 * within a PMD/PUD for userspace and IPA cannot be mapped with stage-2
1419 * PMD/PUD entries, because we'll end up mapping the wrong pages.
Christoffer Dall6794ad52018-11-02 08:53:22 +01001420 *
1421 * Consider a layout like the following:
1422 *
1423 * memslot->userspace_addr:
1424 * +-----+--------------------+--------------------+---+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001425 * |abcde|fgh Stage-1 block | Stage-1 block tv|xyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001426 * +-----+--------------------+--------------------+---+
1427 *
Suzuki K Poulose9f283612020-05-07 20:35:45 +08001428 * memslot->base_gfn << PAGE_SHIFT:
Christoffer Dall6794ad52018-11-02 08:53:22 +01001429 * +---+--------------------+--------------------+-----+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001430 * |abc|def Stage-2 block | Stage-2 block |tvxyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001431 * +---+--------------------+--------------------+-----+
1432 *
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001433 * If we create those stage-2 blocks, we'll end up with this incorrect
Christoffer Dall6794ad52018-11-02 08:53:22 +01001434 * mapping:
1435 * d -> f
1436 * e -> g
1437 * f -> h
1438 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001439 if ((gpa_start & (map_size - 1)) != (uaddr_start & (map_size - 1)))
Christoffer Dall6794ad52018-11-02 08:53:22 +01001440 return false;
1441
1442 /*
1443 * Next, let's make sure we're not trying to map anything not covered
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001444 * by the memslot. This means we have to prohibit block size mappings
1445 * for the beginning and end of a non-block aligned and non-block sized
Christoffer Dall6794ad52018-11-02 08:53:22 +01001446 * memory slot (illustrated by the head and tail parts of the
1447 * userspace view above containing pages 'abcde' and 'xyz',
1448 * respectively).
1449 *
1450 * Note that it doesn't matter if we do the check using the
1451 * userspace_addr or the base_gfn, as both are equally aligned (per
1452 * the check above) and equally sized.
1453 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001454 return (hva & ~(map_size - 1)) >= uaddr_start &&
1455 (hva & ~(map_size - 1)) + map_size <= uaddr_end;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001456}
1457
Suzuki K Poulose0529c902020-05-07 20:35:46 +08001458/*
1459 * Check if the given hva is backed by a transparent huge page (THP) and
1460 * whether it can be mapped using block mapping in stage2. If so, adjust
1461 * the stage2 PFN and IPA accordingly. Only PMD_SIZE THPs are currently
1462 * supported. This will need to be updated to support other THP sizes.
1463 *
1464 * Returns the size of the mapping.
1465 */
1466static unsigned long
1467transparent_hugepage_adjust(struct kvm_memory_slot *memslot,
1468 unsigned long hva, kvm_pfn_t *pfnp,
1469 phys_addr_t *ipap)
1470{
1471 kvm_pfn_t pfn = *pfnp;
1472
1473 /*
1474 * Make sure the adjustment is done only for THP pages. Also make
1475 * sure that the HVA and IPA are sufficiently aligned and that the
1476 * block map is contained within the memslot.
1477 */
1478 if (kvm_is_transparent_hugepage(pfn) &&
1479 fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE)) {
1480 /*
1481 * The address we faulted on is backed by a transparent huge
1482 * page. However, because we map the compound huge page and
1483 * not the individual tail page, we need to transfer the
1484 * refcount to the head page. We have to be careful that the
1485 * THP doesn't start to split while we are adjusting the
1486 * refcounts.
1487 *
1488 * We are sure this doesn't happen, because mmu_notifier_retry
1489 * was successful and we are holding the mmu_lock, so if this
1490 * THP is trying to split, it will be blocked in the mmu
1491 * notifier before touching any of the pages, specifically
1492 * before being able to call __split_huge_page_refcount().
1493 *
1494 * We can therefore safely transfer the refcount from PG_tail
1495 * to PG_head and switch the pfn from a tail page to the head
1496 * page accordingly.
1497 */
1498 *ipap &= PMD_MASK;
1499 kvm_release_pfn_clean(pfn);
1500 pfn &= ~(PTRS_PER_PMD - 1);
1501 kvm_get_pfn(pfn);
1502 *pfnp = pfn;
1503
1504 return PMD_SIZE;
1505 }
1506
1507 /* Use page mapping if we cannot use block mapping. */
1508 return PAGE_SIZE;
1509}
1510
Christoffer Dall94f8e642013-01-20 18:28:12 -05001511static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001512 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001513 unsigned long fault_status)
1514{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001515 int ret;
Punit Agrawal6396b852018-12-11 17:10:35 +00001516 bool write_fault, writable, force_pte = false;
1517 bool exec_fault, needs_exec;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001518 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001519 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001520 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001521 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001522 struct vm_area_struct *vma;
James Morse1559b752019-12-17 12:38:09 +00001523 short vma_shift;
Dan Williamsba049e92016-01-15 16:56:11 -08001524 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001525 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001526 bool logging_active = memslot_is_logging(memslot);
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001527 unsigned long vma_pagesize, flags = 0;
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001528 struct kvm_s2_mmu *mmu = vcpu->arch.hw_mmu;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001529
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001530 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001531 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1532 VM_BUG_ON(write_fault && exec_fault);
1533
1534 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001535 kvm_err("Unexpected L2 read permission error\n");
1536 return -EFAULT;
1537 }
1538
Christoffer Dallad361f02012-11-01 17:14:45 +01001539 /* Let's check if we will get back a huge page backed by hugetlbfs */
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001540 mmap_read_lock(current->mm);
Christoffer Dallad361f02012-11-01 17:14:45 +01001541 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001542 if (unlikely(!vma)) {
1543 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001544 mmap_read_unlock(current->mm);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001545 return -EFAULT;
1546 }
1547
James Morse1559b752019-12-17 12:38:09 +00001548 if (is_vm_hugetlb_page(vma))
1549 vma_shift = huge_page_shift(hstate_vma(vma));
1550 else
1551 vma_shift = PAGE_SHIFT;
1552
1553 vma_pagesize = 1ULL << vma_shift;
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001554 if (logging_active ||
Marc Zyngier6d674e22019-12-11 16:56:48 +00001555 (vma->vm_flags & VM_PFNMAP) ||
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001556 !fault_supports_stage2_huge_mapping(memslot, hva, vma_pagesize)) {
1557 force_pte = true;
1558 vma_pagesize = PAGE_SIZE;
1559 }
1560
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001561 /*
Suzuki K Poulose280cebf2019-01-29 19:12:17 +00001562 * The stage2 has a minimum of 2 level table (For arm64 see
1563 * kvm_arm_setup_stage2()). Hence, we are guaranteed that we can
1564 * use PMD_SIZE huge mappings (even when the PMD is folded into PGD).
1565 * As for PUD huge maps, we must make sure that we have at least
1566 * 3 levels, i.e, PMD is not folded.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001567 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001568 if (vma_pagesize == PMD_SIZE ||
1569 (vma_pagesize == PUD_SIZE && kvm_stage2_has_pmd(kvm)))
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001570 gfn = (fault_ipa & huge_page_mask(hstate_vma(vma))) >> PAGE_SHIFT;
Michel Lespinasse89154dd2020-06-08 21:33:29 -07001571 mmap_read_unlock(current->mm);
Christoffer Dallad361f02012-11-01 17:14:45 +01001572
Christoffer Dall94f8e642013-01-20 18:28:12 -05001573 /* We need minimum second+third level pages */
Sean Christophersonc1a33ae2020-07-02 19:35:42 -07001574 ret = kvm_mmu_topup_memory_cache(memcache, kvm_mmu_cache_min_pages(kvm));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001575 if (ret)
1576 return ret;
1577
1578 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1579 /*
1580 * Ensure the read of mmu_notifier_seq happens before we call
1581 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1582 * the page we just got a reference to gets unmapped before we have a
1583 * chance to grab the mmu_lock, which ensure that if the page gets
1584 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1585 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1586 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1587 */
1588 smp_rmb();
1589
Christoffer Dallad361f02012-11-01 17:14:45 +01001590 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001591 if (pfn == KVM_PFN_ERR_HWPOISON) {
James Morse1559b752019-12-17 12:38:09 +00001592 kvm_send_hwpoison_signal(hva, vma_shift);
James Morse196f8782017-06-20 17:11:48 +01001593 return 0;
1594 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001595 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001596 return -EFAULT;
1597
Mario Smarduch15a49a42015-01-15 15:58:58 -08001598 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001599 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001600 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1601 } else if (logging_active) {
1602 /*
1603 * Faults on pages in a memslot with logging enabled
1604 * should not be mapped with huge pages (it introduces churn
1605 * and performance degradation), so force a pte mapping.
1606 */
Mario Smarduch15a49a42015-01-15 15:58:58 -08001607 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1608
1609 /*
1610 * Only actually map the page as writable if this was a write
1611 * fault.
1612 */
1613 if (!write_fault)
1614 writable = false;
1615 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001616
Marc Zyngier6d674e22019-12-11 16:56:48 +00001617 if (exec_fault && is_iomap(flags))
1618 return -ENOEXEC;
1619
Christoffer Dallad361f02012-11-01 17:14:45 +01001620 spin_lock(&kvm->mmu_lock);
1621 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001622 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001623
Suzuki K Poulose0529c902020-05-07 20:35:46 +08001624 /*
1625 * If we are not forced to use page mapping, check if we are
1626 * backed by a THP and thus use block mapping if possible.
1627 */
1628 if (vma_pagesize == PAGE_SIZE && !force_pte)
1629 vma_pagesize = transparent_hugepage_adjust(memslot, hva,
1630 &pfn, &fault_ipa);
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001631 if (writable)
1632 kvm_set_pfn_dirty(pfn);
1633
Marc Zyngier6d674e22019-12-11 16:56:48 +00001634 if (fault_status != FSC_PERM && !is_iomap(flags))
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001635 clean_dcache_guest_page(pfn, vma_pagesize);
1636
1637 if (exec_fault)
1638 invalidate_icache_guest_page(pfn, vma_pagesize);
1639
Punit Agrawal6396b852018-12-11 17:10:35 +00001640 /*
1641 * If we took an execution fault we have made the
1642 * icache/dcache coherent above and should now let the s2
1643 * mapping be executable.
1644 *
1645 * Write faults (!exec_fault && FSC_PERM) are orthogonal to
1646 * execute permissions, and we preserve whatever we have.
1647 */
1648 needs_exec = exec_fault ||
Will Deaconb757b472020-07-23 11:17:14 +01001649 (fault_status == FSC_PERM &&
Paolo Bonzini0378dae2020-08-09 12:58:23 -04001650 stage2_is_exec(mmu, fault_ipa, vma_pagesize));
Punit Agrawal6396b852018-12-11 17:10:35 +00001651
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001652 if (vma_pagesize == PUD_SIZE) {
1653 pud_t new_pud = kvm_pfn_pud(pfn, mem_type);
1654
1655 new_pud = kvm_pud_mkhuge(new_pud);
1656 if (writable)
1657 new_pud = kvm_s2pud_mkwrite(new_pud);
1658
1659 if (needs_exec)
1660 new_pud = kvm_s2pud_mkexec(new_pud);
1661
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001662 ret = stage2_set_pud_huge(mmu, memcache, fault_ipa, &new_pud);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001663 } else if (vma_pagesize == PMD_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001664 pmd_t new_pmd = kvm_pfn_pmd(pfn, mem_type);
1665
1666 new_pmd = kvm_pmd_mkhuge(new_pmd);
1667
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001668 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001669 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001670
Punit Agrawal6396b852018-12-11 17:10:35 +00001671 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001672 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001673
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001674 ret = stage2_set_pmd_huge(mmu, memcache, fault_ipa, &new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001675 } else {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001676 pte_t new_pte = kvm_pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001677
Christoffer Dallad361f02012-11-01 17:14:45 +01001678 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001679 new_pte = kvm_s2pte_mkwrite(new_pte);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001680 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001681 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001682
Punit Agrawal6396b852018-12-11 17:10:35 +00001683 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001684 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001685
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001686 ret = stage2_set_pte(mmu, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001687 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001688
Christoffer Dall94f8e642013-01-20 18:28:12 -05001689out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001690 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001691 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001692 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001693 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001694}
1695
Marc Zyngieraeda9132015-03-12 18:16:52 +00001696/*
1697 * Resolve the access fault by making the page young again.
1698 * Note that because the faulting entry is guaranteed not to be
1699 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001700 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1701 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001702 */
1703static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1704{
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001705 pud_t *pud;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001706 pmd_t *pmd;
1707 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001708 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001709 bool pfn_valid = false;
1710
1711 trace_kvm_access_fault(fault_ipa);
1712
1713 spin_lock(&vcpu->kvm->mmu_lock);
1714
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001715 if (!stage2_get_leaf_entry(vcpu->arch.hw_mmu, fault_ipa, &pud, &pmd, &pte))
Marc Zyngieraeda9132015-03-12 18:16:52 +00001716 goto out;
1717
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001718 if (pud) { /* HugeTLB */
1719 *pud = kvm_s2pud_mkyoung(*pud);
1720 pfn = kvm_pud_pfn(*pud);
1721 pfn_valid = true;
1722 } else if (pmd) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001723 *pmd = pmd_mkyoung(*pmd);
1724 pfn = pmd_pfn(*pmd);
1725 pfn_valid = true;
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001726 } else {
1727 *pte = pte_mkyoung(*pte); /* Just a page... */
1728 pfn = pte_pfn(*pte);
1729 pfn_valid = true;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001730 }
1731
Marc Zyngieraeda9132015-03-12 18:16:52 +00001732out:
1733 spin_unlock(&vcpu->kvm->mmu_lock);
1734 if (pfn_valid)
1735 kvm_set_pfn_accessed(pfn);
1736}
1737
Christoffer Dall94f8e642013-01-20 18:28:12 -05001738/**
1739 * kvm_handle_guest_abort - handles all 2nd stage aborts
1740 * @vcpu: the VCPU pointer
Christoffer Dall94f8e642013-01-20 18:28:12 -05001741 *
1742 * Any abort that gets to the host is almost guaranteed to be caused by a
1743 * missing second stage translation table entry, which can mean that either the
1744 * guest simply needs more memory and we must allocate an appropriate page or it
1745 * can mean that the guest tried to access I/O memory, which is emulated by user
1746 * space. The distinction is based on the IPA causing the fault and whether this
1747 * memory region has been registered as standard RAM by user space.
1748 */
Tianjia Zhang74cc7e02020-06-23 21:14:15 +08001749int kvm_handle_guest_abort(struct kvm_vcpu *vcpu)
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001750{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001751 unsigned long fault_status;
1752 phys_addr_t fault_ipa;
1753 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001754 unsigned long hva;
1755 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001756 gfn_t gfn;
1757 int ret, idx;
1758
Tyler Baicar621f48e2017-06-21 12:17:14 -06001759 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1760
1761 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01001762 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06001763
James Morsebb428922017-07-18 13:37:41 +01001764 /* Synchronous External Abort? */
Will Deaconc9a636f2020-07-29 11:28:18 +01001765 if (kvm_vcpu_abt_issea(vcpu)) {
James Morsebb428922017-07-18 13:37:41 +01001766 /*
1767 * For RAS the host kernel may handle this abort.
1768 * There is no need to pass the error into the guest.
1769 */
Will Deacon84b951a2020-07-29 11:28:19 +01001770 if (kvm_handle_guest_sea(fault_ipa, kvm_vcpu_get_esr(vcpu)))
James Morsebb428922017-07-18 13:37:41 +01001771 kvm_inject_vabt(vcpu);
Will Deacon84b951a2020-07-29 11:28:19 +01001772
1773 return 1;
Marc Zyngier40557102016-09-06 14:02:15 +01001774 }
1775
Gavin Shan3a949f42020-06-30 11:57:05 +10001776 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_esr(vcpu),
Marc Zyngier7393b592012-09-17 19:27:09 +01001777 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001778
1779 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00001780 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1781 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001782 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1783 kvm_vcpu_trap_get_class(vcpu),
1784 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
Gavin Shan3a949f42020-06-30 11:57:05 +10001785 (unsigned long)kvm_vcpu_get_esr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001786 return -EFAULT;
1787 }
1788
1789 idx = srcu_read_lock(&vcpu->kvm->srcu);
1790
1791 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001792 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1793 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001794 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001795 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Will Deacon022c8322020-07-29 11:28:21 +01001796 /*
1797 * The guest has put either its instructions or its page-tables
1798 * somewhere it shouldn't have. Userspace won't be able to do
1799 * anything about this (there's no syndrome for a start), so
1800 * re-inject the abort back into the guest.
1801 */
Christoffer Dall94f8e642013-01-20 18:28:12 -05001802 if (is_iabt) {
Marc Zyngier6d674e22019-12-11 16:56:48 +00001803 ret = -ENOEXEC;
1804 goto out;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001805 }
1806
Will Deacon022c8322020-07-29 11:28:21 +01001807 if (kvm_vcpu_dabt_iss1tw(vcpu)) {
1808 kvm_inject_dabt(vcpu, kvm_vcpu_get_hfar(vcpu));
1809 ret = 1;
1810 goto out_unlock;
1811 }
1812
Marc Zyngiercfe39502012-12-12 14:42:09 +00001813 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001814 * Check for a cache maintenance operation. Since we
1815 * ended-up here, we know it is outside of any memory
1816 * slot. But we can't find out if that is for a device,
1817 * or if the guest is just being stupid. The only thing
1818 * we know for sure is that this range cannot be cached.
1819 *
1820 * So let's assume that the guest is just being
1821 * cautious, and skip the instruction.
1822 */
Will Deacon54dc0d22020-07-29 11:28:20 +01001823 if (kvm_is_error_hva(hva) && kvm_vcpu_dabt_is_cm(vcpu)) {
Marc Zyngier57c841f2016-01-29 15:01:28 +00001824 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1825 ret = 1;
1826 goto out_unlock;
1827 }
1828
1829 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001830 * The IPA is reported as [MAX:12], so we need to
1831 * complement it with the bottom 12 bits from the
1832 * faulting VA. This is always 12 bits, irrespective
1833 * of the page size.
1834 */
1835 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Tianjia Zhang74cc7e02020-06-23 21:14:15 +08001836 ret = io_mem_abort(vcpu, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001837 goto out_unlock;
1838 }
1839
Christoffer Dallc3058d52014-10-10 12:14:29 +02001840 /* Userspace should not be able to register out-of-bounds IPAs */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001841 VM_BUG_ON(fault_ipa >= kvm_phys_size(vcpu->kvm));
Christoffer Dallc3058d52014-10-10 12:14:29 +02001842
Marc Zyngieraeda9132015-03-12 18:16:52 +00001843 if (fault_status == FSC_ACCESS) {
1844 handle_access_fault(vcpu, fault_ipa);
1845 ret = 1;
1846 goto out_unlock;
1847 }
1848
Christoffer Dall98047882014-08-19 12:18:04 +02001849 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001850 if (ret == 0)
1851 ret = 1;
Marc Zyngier6d674e22019-12-11 16:56:48 +00001852out:
1853 if (ret == -ENOEXEC) {
1854 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
1855 ret = 1;
1856 }
Christoffer Dall94f8e642013-01-20 18:28:12 -05001857out_unlock:
1858 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1859 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001860}
1861
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001862static int handle_hva_to_gpa(struct kvm *kvm,
1863 unsigned long start,
1864 unsigned long end,
1865 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001866 gpa_t gpa, u64 size,
1867 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001868 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001869{
1870 struct kvm_memslots *slots;
1871 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001872 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001873
1874 slots = kvm_memslots(kvm);
1875
1876 /* we only care about the pages that the guest sees */
1877 kvm_for_each_memslot(memslot, slots) {
1878 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001879 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001880
1881 hva_start = max(start, memslot->userspace_addr);
1882 hva_end = min(end, memslot->userspace_addr +
1883 (memslot->npages << PAGE_SHIFT));
1884 if (hva_start >= hva_end)
1885 continue;
1886
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001887 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
1888 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001889 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001890
1891 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001892}
1893
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001894static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001895{
Will Deaconb5331372020-08-11 11:27:25 +01001896 unsigned flags = *(unsigned *)data;
1897 bool may_block = flags & MMU_NOTIFIER_RANGE_BLOCKABLE;
1898
1899 __unmap_stage2_range(&kvm->arch.mmu, gpa, size, may_block);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001900 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001901}
1902
Christoffer Dalld5d81842013-01-20 18:28:07 -05001903int kvm_unmap_hva_range(struct kvm *kvm,
Will Deaconfdfe7cb2020-08-11 11:27:24 +01001904 unsigned long start, unsigned long end, unsigned flags)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001905{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001906 if (!kvm->arch.mmu.pgd)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001907 return 0;
1908
1909 trace_kvm_unmap_hva_range(start, end);
Will Deaconb5331372020-08-11 11:27:25 +01001910 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, &flags);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001911 return 0;
1912}
1913
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001914static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001915{
1916 pte_t *pte = (pte_t *)data;
1917
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001918 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001919 /*
1920 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1921 * flag clear because MMU notifiers will have unmapped a huge PMD before
1922 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1923 * therefore stage2_set_pte() never needs to clear out a huge PMD
1924 * through this calling path.
1925 */
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001926 stage2_set_pte(&kvm->arch.mmu, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001927 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001928}
1929
1930
Lan Tianyu748c0e32018-12-06 21:21:10 +08001931int kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001932{
1933 unsigned long end = hva + PAGE_SIZE;
Marc Zyngier694556d2018-08-23 09:58:27 +01001934 kvm_pfn_t pfn = pte_pfn(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001935 pte_t stage2_pte;
1936
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001937 if (!kvm->arch.mmu.pgd)
Lan Tianyu748c0e32018-12-06 21:21:10 +08001938 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001939
1940 trace_kvm_set_spte_hva(hva);
Marc Zyngier694556d2018-08-23 09:58:27 +01001941
1942 /*
1943 * We've moved a page around, probably through CoW, so let's treat it
1944 * just like a translation fault and clean the cache to the PoC.
1945 */
1946 clean_dcache_guest_page(pfn, PAGE_SIZE);
Punit Agrawalf8df7332018-12-11 17:10:36 +00001947 stage2_pte = kvm_pfn_pte(pfn, PAGE_S2);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001948 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
Lan Tianyu748c0e32018-12-06 21:21:10 +08001949
1950 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001951}
1952
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001953static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001954{
Punit Agrawal35a63962018-12-11 17:10:40 +00001955 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00001956 pmd_t *pmd;
1957 pte_t *pte;
1958
Punit Agrawal35a63962018-12-11 17:10:40 +00001959 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001960 if (!stage2_get_leaf_entry(&kvm->arch.mmu, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00001961 return 0;
1962
Punit Agrawal35a63962018-12-11 17:10:40 +00001963 if (pud)
1964 return stage2_pudp_test_and_clear_young(pud);
1965 else if (pmd)
Catalin Marinas06485052016-04-13 17:57:37 +01001966 return stage2_pmdp_test_and_clear_young(pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00001967 else
1968 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001969}
1970
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001971static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001972{
Punit Agrawal35a63962018-12-11 17:10:40 +00001973 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00001974 pmd_t *pmd;
1975 pte_t *pte;
1976
Punit Agrawal35a63962018-12-11 17:10:40 +00001977 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001978 if (!stage2_get_leaf_entry(&kvm->arch.mmu, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00001979 return 0;
1980
Punit Agrawal35a63962018-12-11 17:10:40 +00001981 if (pud)
1982 return kvm_s2pud_young(*pud);
1983 else if (pmd)
Marc Zyngier35307b92015-03-12 18:16:51 +00001984 return pmd_young(*pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00001985 else
Marc Zyngier35307b92015-03-12 18:16:51 +00001986 return pte_young(*pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001987}
1988
1989int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1990{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001991 if (!kvm->arch.mmu.pgd)
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001992 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001993 trace_kvm_age_hva(start, end);
1994 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1995}
1996
1997int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1998{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01001999 if (!kvm->arch.mmu.pgd)
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01002000 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00002001 trace_kvm_test_age_hva(hva);
Gavin Shancf2d23e2020-01-21 16:56:59 +11002002 return handle_hva_to_gpa(kvm, hva, hva + PAGE_SIZE,
2003 kvm_test_age_hva_handler, NULL);
Marc Zyngier35307b92015-03-12 18:16:51 +00002004}
2005
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002006phys_addr_t kvm_mmu_get_httbr(void)
2007{
Will Deacon0f9d09b2020-09-11 14:25:12 +01002008 return __pa(hyp_pgtable->pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002009}
2010
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002011phys_addr_t kvm_get_idmap_vector(void)
2012{
2013 return hyp_idmap_vector;
2014}
2015
Will Deacon0f9d09b2020-09-11 14:25:12 +01002016static int kvm_map_idmap_text(void)
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002017{
Will Deacon0f9d09b2020-09-11 14:25:12 +01002018 unsigned long size = hyp_idmap_end - hyp_idmap_start;
2019 int err = __create_hyp_mappings(hyp_idmap_start, size, hyp_idmap_start,
2020 PAGE_HYP_EXEC);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002021 if (err)
2022 kvm_err("Failed to idmap %lx-%lx\n",
2023 hyp_idmap_start, hyp_idmap_end);
2024
2025 return err;
2026}
2027
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002028int kvm_mmu_init(void)
2029{
Marc Zyngier2fb41052013-04-12 19:12:03 +01002030 int err;
Will Deacon0f9d09b2020-09-11 14:25:12 +01002031 u32 hyp_va_bits;
Marc Zyngier2fb41052013-04-12 19:12:03 +01002032
Andrew Scull0a787912020-05-19 11:40:36 +01002033 hyp_idmap_start = __pa_symbol(__hyp_idmap_text_start);
Marc Zyngier46fef152018-03-12 14:25:10 +00002034 hyp_idmap_start = ALIGN_DOWN(hyp_idmap_start, PAGE_SIZE);
Andrew Scull0a787912020-05-19 11:40:36 +01002035 hyp_idmap_end = __pa_symbol(__hyp_idmap_text_end);
Marc Zyngier46fef152018-03-12 14:25:10 +00002036 hyp_idmap_end = ALIGN(hyp_idmap_end, PAGE_SIZE);
Andrew Scull0a787912020-05-19 11:40:36 +01002037 hyp_idmap_vector = __pa_symbol(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002038
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00002039 /*
2040 * We rely on the linker script to ensure at build time that the HYP
2041 * init code does not cross a page boundary.
2042 */
2043 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002044
Will Deacon0f9d09b2020-09-11 14:25:12 +01002045 hyp_va_bits = 64 - ((idmap_t0sz & TCR_T0SZ_MASK) >> TCR_T0SZ_OFFSET);
2046 kvm_debug("Using %u-bit virtual addresses at EL2\n", hyp_va_bits);
Marc Zyngierb4ef0492017-12-03 20:04:51 +00002047 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
2048 kvm_debug("HYP VA range: %lx:%lx\n",
2049 kern_hyp_va(PAGE_OFFSET),
2050 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01002051
Marc Zyngier6c41a412016-06-30 18:40:51 +01002052 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngiered57cac2017-12-03 18:22:49 +00002053 hyp_idmap_start < kern_hyp_va((unsigned long)high_memory - 1) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01002054 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01002055 /*
2056 * The idmap page is intersecting with the VA space,
2057 * it is not safe to continue further.
2058 */
2059 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
2060 err = -EINVAL;
2061 goto out;
2062 }
2063
Will Deacon0f9d09b2020-09-11 14:25:12 +01002064 hyp_pgtable = kzalloc(sizeof(*hyp_pgtable), GFP_KERNEL);
2065 if (!hyp_pgtable) {
2066 kvm_err("Hyp mode page-table not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01002067 err = -ENOMEM;
2068 goto out;
2069 }
2070
Will Deacon0f9d09b2020-09-11 14:25:12 +01002071 err = kvm_pgtable_hyp_init(hyp_pgtable, hyp_va_bits);
2072 if (err)
2073 goto out_free_pgtable;
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002074
Will Deacon0f9d09b2020-09-11 14:25:12 +01002075 err = kvm_map_idmap_text();
2076 if (err)
2077 goto out_destroy_pgtable;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002078
Marc Zyngiere3f019b2017-12-04 17:04:38 +00002079 io_map_base = hyp_idmap_start;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002080 return 0;
Will Deacon0f9d09b2020-09-11 14:25:12 +01002081
2082out_destroy_pgtable:
2083 kvm_pgtable_hyp_destroy(hyp_pgtable);
2084out_free_pgtable:
2085 kfree(hyp_pgtable);
2086 hyp_pgtable = NULL;
Marc Zyngier2fb41052013-04-12 19:12:03 +01002087out:
Marc Zyngier2fb41052013-04-12 19:12:03 +01002088 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002089}
Eric Augerdf6ce242014-06-06 11:10:23 +02002090
2091void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002092 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -08002093 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02002094 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02002095 enum kvm_mr_change change)
2096{
Mario Smarduchc6473552015-01-15 15:58:56 -08002097 /*
2098 * At this point memslot has been committed and there is an
Fuad Tabba656012c2020-04-01 15:03:10 +01002099 * allocated dirty_bitmap[], dirty pages will be tracked while the
Mario Smarduchc6473552015-01-15 15:58:56 -08002100 * memory slot is write protected.
2101 */
Keqian Zhuc8626262020-04-13 20:20:23 +08002102 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2103 /*
2104 * If we're with initial-all-set, we don't need to write
2105 * protect any pages because they're all reported as dirty.
2106 * Huge pages and normal pages will be write protect gradually.
2107 */
2108 if (!kvm_dirty_log_manual_protect_and_init_set(kvm)) {
2109 kvm_mmu_wp_memory_region(kvm, mem->slot);
2110 }
2111 }
Eric Augerdf6ce242014-06-06 11:10:23 +02002112}
2113
2114int kvm_arch_prepare_memory_region(struct kvm *kvm,
2115 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002116 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02002117 enum kvm_mr_change change)
2118{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002119 hva_t hva = mem->userspace_addr;
2120 hva_t reg_end = hva + mem->memory_size;
2121 bool writable = !(mem->flags & KVM_MEM_READONLY);
2122 int ret = 0;
2123
Mario Smarduch15a49a42015-01-15 15:58:58 -08002124 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
2125 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002126 return 0;
2127
2128 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02002129 * Prevent userspace from creating a memory region outside of the IPA
2130 * space addressable by the KVM guest IPA space.
2131 */
2132 if (memslot->base_gfn + memslot->npages >=
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01002133 (kvm_phys_size(kvm) >> PAGE_SHIFT))
Christoffer Dallc3058d52014-10-10 12:14:29 +02002134 return -EFAULT;
2135
Michel Lespinasse89154dd2020-06-08 21:33:29 -07002136 mmap_read_lock(current->mm);
Christoffer Dallc3058d52014-10-10 12:14:29 +02002137 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002138 * A memory region could potentially cover multiple VMAs, and any holes
2139 * between them, so iterate over all of them to find out if we can map
2140 * any of them right now.
2141 *
2142 * +--------------------------------------------+
2143 * +---------------+----------------+ +----------------+
2144 * | : VMA 1 | VMA 2 | | VMA 3 : |
2145 * +---------------+----------------+ +----------------+
2146 * | memory region |
2147 * +--------------------------------------------+
2148 */
2149 do {
2150 struct vm_area_struct *vma = find_vma(current->mm, hva);
2151 hva_t vm_start, vm_end;
2152
2153 if (!vma || vma->vm_start >= reg_end)
2154 break;
2155
2156 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002157 * Take the intersection of this VMA with the memory region
2158 */
2159 vm_start = max(hva, vma->vm_start);
2160 vm_end = min(reg_end, vma->vm_end);
2161
2162 if (vma->vm_flags & VM_PFNMAP) {
2163 gpa_t gpa = mem->guest_phys_addr +
2164 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02002165 phys_addr_t pa;
2166
2167 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
2168 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002169
Mario Smarduch15a49a42015-01-15 15:58:58 -08002170 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00002171 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2172 ret = -EINVAL;
2173 goto out;
2174 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08002175
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002176 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
2177 vm_end - vm_start,
2178 writable);
2179 if (ret)
2180 break;
2181 }
2182 hva = vm_end;
2183 } while (hva < reg_end);
2184
Mario Smarduch15a49a42015-01-15 15:58:58 -08002185 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00002186 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08002187
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002188 spin_lock(&kvm->mmu_lock);
2189 if (ret)
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002190 unmap_stage2_range(&kvm->arch.mmu, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002191 else
2192 stage2_flush_memslot(kvm, memslot);
2193 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00002194out:
Michel Lespinasse89154dd2020-06-08 21:33:29 -07002195 mmap_read_unlock(current->mm);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002196 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02002197}
2198
Sean Christophersone96c81e2020-02-18 13:07:27 -08002199void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot)
Eric Augerdf6ce242014-06-06 11:10:23 +02002200{
2201}
2202
Sean Christopherson15248252019-02-05 12:54:17 -08002203void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Eric Augerdf6ce242014-06-06 11:10:23 +02002204{
2205}
2206
2207void kvm_arch_flush_shadow_all(struct kvm *kvm)
2208{
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002209 kvm_free_stage2_pgd(&kvm->arch.mmu);
Eric Augerdf6ce242014-06-06 11:10:23 +02002210}
2211
2212void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2213 struct kvm_memory_slot *slot)
2214{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002215 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2216 phys_addr_t size = slot->npages << PAGE_SHIFT;
2217
2218 spin_lock(&kvm->mmu_lock);
Christoffer Dalla0e50aa2019-01-04 21:09:05 +01002219 unmap_stage2_range(&kvm->arch.mmu, gpa, size);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002220 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002221}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002222
2223/*
2224 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2225 *
2226 * Main problems:
2227 * - S/W ops are local to a CPU (not broadcast)
2228 * - We have line migration behind our back (speculation)
2229 * - System caches don't support S/W at all (damn!)
2230 *
2231 * In the face of the above, the best we can do is to try and convert
2232 * S/W ops to VA ops. Because the guest is not allowed to infer the
2233 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2234 * which is a rather good thing for us.
2235 *
2236 * Also, it is only used when turning caches on/off ("The expected
2237 * usage of the cache maintenance instructions that operate by set/way
2238 * is associated with the cache maintenance instructions associated
2239 * with the powerdown and powerup of caches, if this is required by
2240 * the implementation.").
2241 *
2242 * We use the following policy:
2243 *
2244 * - If we trap a S/W operation, we enable VM trapping to detect
2245 * caches being turned on/off, and do a full clean.
2246 *
2247 * - We flush the caches on both caches being turned on and off.
2248 *
2249 * - Once the caches are enabled, we stop trapping VM ops.
2250 */
2251void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2252{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002253 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002254
2255 /*
2256 * If this is the first time we do a S/W operation
2257 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2258 * VM trapping.
2259 *
2260 * Otherwise, rely on the VM trapping to wait for the MMU +
2261 * Caches to be turned off. At that point, we'll be able to
2262 * clean the caches again.
2263 */
2264 if (!(hcr & HCR_TVM)) {
2265 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2266 vcpu_has_cache_enabled(vcpu));
2267 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002268 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002269 }
2270}
2271
2272void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2273{
2274 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2275
2276 /*
2277 * If switching the MMU+caches on, need to invalidate the caches.
2278 * If switching it off, need to clean the caches.
2279 * Clean + invalidate does the trick always.
2280 */
2281 if (now_enabled != was_enabled)
2282 stage2_flush_vm(vcpu->kvm);
2283
2284 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2285 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002286 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002287
2288 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2289}