blob: 97b87037aff3850273875436e460b0a1c1bb9013 [file] [log] [blame]
Thomas Gleixnerd94d71c2019-05-29 07:12:40 -07001// SPDX-License-Identifier: GPL-2.0-only
Christoffer Dall749cf76c2013-01-20 18:28:06 -05002/*
3 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
4 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
Christoffer Dall749cf76c2013-01-20 18:28:06 -05005 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05006
7#include <linux/mman.h>
8#include <linux/kvm_host.h>
9#include <linux/io.h>
Christoffer Dallad361f02012-11-01 17:14:45 +010010#include <linux/hugetlb.h>
James Morse196f8782017-06-20 17:11:48 +010011#include <linux/sched/signal.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050012#include <trace/events/kvm.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050013#include <asm/pgalloc.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050014#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050015#include <asm/kvm_arm.h>
16#include <asm/kvm_mmu.h>
James Morse0db5e022019-01-29 18:48:49 +000017#include <asm/kvm_ras.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050018#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050019#include <asm/kvm_emulate.h>
Marc Zyngier1e947ba2015-01-29 11:59:54 +000020#include <asm/virt.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050021
22#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050023
Marc Zyngier5a677ce2013-04-12 19:12:06 +010024static pgd_t *boot_hyp_pgd;
Marc Zyngier2fb41052013-04-12 19:12:03 +010025static pgd_t *hyp_pgd;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +000026static pgd_t *merged_hyp_pgd;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050027static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
28
Marc Zyngier5a677ce2013-04-12 19:12:06 +010029static unsigned long hyp_idmap_start;
30static unsigned long hyp_idmap_end;
31static phys_addr_t hyp_idmap_vector;
32
Marc Zyngiere3f019b2017-12-04 17:04:38 +000033static unsigned long io_map_base;
34
Christoffer Dall38f791a2014-10-10 12:14:28 +020035#define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
Mark Salter5d4e08c2014-03-28 14:25:19 +000036
Mario Smarduch15a49a42015-01-15 15:58:58 -080037#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
38#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
39
Marc Zyngier6d674e22019-12-11 16:56:48 +000040static bool is_iomap(unsigned long flags)
41{
42 return flags & KVM_S2PTE_FLAG_IS_IOMAP;
43}
44
Mario Smarduch15a49a42015-01-15 15:58:58 -080045static bool memslot_is_logging(struct kvm_memory_slot *memslot)
46{
Mario Smarduch15a49a42015-01-15 15:58:58 -080047 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080048}
49
50/**
51 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
52 * @kvm: pointer to kvm structure.
53 *
54 * Interface to HYP function to flush all VM TLB entries
55 */
56void kvm_flush_remote_tlbs(struct kvm *kvm)
57{
58 kvm_call_hyp(__kvm_tlb_flush_vmid, kvm);
Mario Smarduch15a49a42015-01-15 15:58:58 -080059}
Christoffer Dallad361f02012-11-01 17:14:45 +010060
Marc Zyngier48762762013-01-28 15:27:00 +000061static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
Christoffer Dalld5d81842013-01-20 18:28:07 -050062{
Suzuki K Poulose8684e702016-03-22 17:14:25 +000063 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
Christoffer Dalld5d81842013-01-20 18:28:07 -050064}
65
Marc Zyngier363ef892014-12-19 16:48:06 +000066/*
67 * D-Cache management functions. They take the page table entries by
68 * value, as they are flushing the cache using the kernel mapping (or
69 * kmap on 32bit).
70 */
71static void kvm_flush_dcache_pte(pte_t pte)
72{
73 __kvm_flush_dcache_pte(pte);
74}
75
76static void kvm_flush_dcache_pmd(pmd_t pmd)
77{
78 __kvm_flush_dcache_pmd(pmd);
79}
80
81static void kvm_flush_dcache_pud(pud_t pud)
82{
83 __kvm_flush_dcache_pud(pud);
84}
85
Ard Biesheuvele6fab542015-11-10 15:11:20 +010086static bool kvm_is_device_pfn(unsigned long pfn)
87{
88 return !pfn_valid(pfn);
89}
90
Mario Smarduch15a49a42015-01-15 15:58:58 -080091/**
92 * stage2_dissolve_pmd() - clear and flush huge PMD entry
93 * @kvm: pointer to kvm structure.
94 * @addr: IPA
95 * @pmd: pmd pointer for IPA
96 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +000097 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs.
Mario Smarduch15a49a42015-01-15 15:58:58 -080098 */
99static void stage2_dissolve_pmd(struct kvm *kvm, phys_addr_t addr, pmd_t *pmd)
100{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000101 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800102 return;
103
104 pmd_clear(pmd);
105 kvm_tlb_flush_vmid_ipa(kvm, addr);
106 put_page(virt_to_page(pmd));
107}
108
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000109/**
110 * stage2_dissolve_pud() - clear and flush huge PUD entry
111 * @kvm: pointer to kvm structure.
112 * @addr: IPA
113 * @pud: pud pointer for IPA
114 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000115 * Function clears a PUD entry, flushes addr 1st and 2nd stage TLBs.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +0000116 */
117static void stage2_dissolve_pud(struct kvm *kvm, phys_addr_t addr, pud_t *pudp)
118{
119 if (!stage2_pud_huge(kvm, *pudp))
120 return;
121
122 stage2_pud_clear(kvm, pudp);
123 kvm_tlb_flush_vmid_ipa(kvm, addr);
124 put_page(virt_to_page(pudp));
125}
126
Christoffer Dalld5d81842013-01-20 18:28:07 -0500127static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
128 int min, int max)
129{
130 void *page;
131
132 BUG_ON(max > KVM_NR_MEM_OBJS);
133 if (cache->nobjs >= min)
134 return 0;
135 while (cache->nobjs < max) {
Mike Rapoport50f11a82019-07-11 20:58:02 -0700136 page = (void *)__get_free_page(GFP_PGTABLE_USER);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500137 if (!page)
138 return -ENOMEM;
139 cache->objects[cache->nobjs++] = page;
140 }
141 return 0;
142}
143
144static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
145{
146 while (mc->nobjs)
147 free_page((unsigned long)mc->objects[--mc->nobjs]);
148}
149
150static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
151{
152 void *p;
153
154 BUG_ON(!mc || !mc->nobjs);
155 p = mc->objects[--mc->nobjs];
156 return p;
157}
158
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000159static void clear_stage2_pgd_entry(struct kvm *kvm, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100160{
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100161 pud_t *pud_table __maybe_unused = stage2_pud_offset(kvm, pgd, 0UL);
162 stage2_pgd_clear(kvm, pgd);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200163 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100164 stage2_pud_free(kvm, pud_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200165 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100166}
167
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000168static void clear_stage2_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500169{
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100170 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(kvm, pud, 0);
171 VM_BUG_ON(stage2_pud_huge(kvm, *pud));
172 stage2_pud_clear(kvm, pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200173 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100174 stage2_pmd_free(kvm, pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100175 put_page(virt_to_page(pud));
176}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500177
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000178static void clear_stage2_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100179{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200180 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000181 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200182 pmd_clear(pmd);
183 kvm_tlb_flush_vmid_ipa(kvm, addr);
Anshuman Khandual14b94d02019-03-12 18:55:45 +0530184 free_page((unsigned long)pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100185 put_page(virt_to_page(pmd));
186}
187
Marc Zyngier88dc25e82018-05-25 12:23:11 +0100188static inline void kvm_set_pte(pte_t *ptep, pte_t new_pte)
189{
190 WRITE_ONCE(*ptep, new_pte);
191 dsb(ishst);
192}
193
194static inline void kvm_set_pmd(pmd_t *pmdp, pmd_t new_pmd)
195{
196 WRITE_ONCE(*pmdp, new_pmd);
197 dsb(ishst);
198}
199
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100200static inline void kvm_pmd_populate(pmd_t *pmdp, pte_t *ptep)
201{
202 kvm_set_pmd(pmdp, kvm_mk_pmd(ptep));
203}
204
205static inline void kvm_pud_populate(pud_t *pudp, pmd_t *pmdp)
206{
207 WRITE_ONCE(*pudp, kvm_mk_pud(pmdp));
208 dsb(ishst);
209}
210
211static inline void kvm_pgd_populate(pgd_t *pgdp, pud_t *pudp)
212{
213 WRITE_ONCE(*pgdp, kvm_mk_pgd(pudp));
214 dsb(ishst);
215}
216
Marc Zyngier363ef892014-12-19 16:48:06 +0000217/*
218 * Unmapping vs dcache management:
219 *
220 * If a guest maps certain memory pages as uncached, all writes will
221 * bypass the data cache and go directly to RAM. However, the CPUs
222 * can still speculate reads (not writes) and fill cache lines with
223 * data.
224 *
225 * Those cache lines will be *clean* cache lines though, so a
226 * clean+invalidate operation is equivalent to an invalidate
227 * operation, because no cache lines are marked dirty.
228 *
229 * Those clean cache lines could be filled prior to an uncached write
230 * by the guest, and the cache coherent IO subsystem would therefore
231 * end up writing old data to disk.
232 *
233 * This is why right after unmapping a page/section and invalidating
234 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
235 * the IO subsystem will never hit in the cache.
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100236 *
237 * This is all avoided on systems that have ARM64_HAS_STAGE2_FWB, as
238 * we then fully enforce cacheability of RAM, no matter what the guest
239 * does.
Marc Zyngier363ef892014-12-19 16:48:06 +0000240 */
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000241static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200242 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100243{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200244 phys_addr_t start_addr = addr;
245 pte_t *pte, *start_pte;
246
247 start_pte = pte = pte_offset_kernel(pmd, addr);
248 do {
249 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000250 pte_t old_pte = *pte;
251
Christoffer Dall4f853a72014-05-09 23:31:31 +0200252 kvm_set_pte(pte, __pte(0));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200253 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000254
255 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100256 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000257 kvm_flush_dcache_pte(old_pte);
258
259 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200260 }
261 } while (pte++, addr += PAGE_SIZE, addr != end);
262
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100263 if (stage2_pte_table_empty(kvm, start_pte))
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000264 clear_stage2_pmd_entry(kvm, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500265}
266
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000267static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200268 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500269{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200270 phys_addr_t next, start_addr = addr;
271 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000272
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100273 start_pmd = pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200274 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100275 next = stage2_pmd_addr_end(kvm, addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200276 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000277 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000278 pmd_t old_pmd = *pmd;
279
Christoffer Dall4f853a72014-05-09 23:31:31 +0200280 pmd_clear(pmd);
281 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000282
283 kvm_flush_dcache_pmd(old_pmd);
284
Christoffer Dall4f853a72014-05-09 23:31:31 +0200285 put_page(virt_to_page(pmd));
286 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000287 unmap_stage2_ptes(kvm, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100288 }
289 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200290 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100291
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100292 if (stage2_pmd_table_empty(kvm, start_pmd))
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000293 clear_stage2_pud_entry(kvm, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200294}
295
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000296static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200297 phys_addr_t addr, phys_addr_t end)
298{
299 phys_addr_t next, start_addr = addr;
300 pud_t *pud, *start_pud;
301
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100302 start_pud = pud = stage2_pud_offset(kvm, pgd, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200303 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100304 next = stage2_pud_addr_end(kvm, addr, end);
305 if (!stage2_pud_none(kvm, *pud)) {
306 if (stage2_pud_huge(kvm, *pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000307 pud_t old_pud = *pud;
308
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100309 stage2_pud_clear(kvm, pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200310 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000311 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200312 put_page(virt_to_page(pud));
313 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000314 unmap_stage2_pmds(kvm, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200315 }
316 }
317 } while (pud++, addr = next, addr != end);
318
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100319 if (stage2_pud_table_empty(kvm, start_pud))
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000320 clear_stage2_pgd_entry(kvm, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200321}
322
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000323/**
324 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
325 * @kvm: The VM pointer
326 * @start: The intermediate physical base address of the range to unmap
327 * @size: The size of the area to unmap
328 *
329 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
330 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
331 * destroying the VM), otherwise another faulting VCPU may come in and mess
332 * with things behind our backs.
333 */
334static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200335{
336 pgd_t *pgd;
337 phys_addr_t addr = start, end = start + size;
338 phys_addr_t next;
339
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100340 assert_spin_locked(&kvm->mmu_lock);
Jia He47a91b72018-05-21 11:05:30 +0800341 WARN_ON(size & ~PAGE_MASK);
342
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100343 pgd = kvm->arch.pgd + stage2_pgd_index(kvm, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200344 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100345 /*
346 * Make sure the page table is still active, as another thread
347 * could have possibly freed the page table, while we released
348 * the lock.
349 */
350 if (!READ_ONCE(kvm->arch.pgd))
351 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100352 next = stage2_pgd_addr_end(kvm, addr, end);
353 if (!stage2_pgd_none(kvm, *pgd))
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000354 unmap_stage2_puds(kvm, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100355 /*
356 * If the range is too large, release the kvm->mmu_lock
357 * to prevent starvation and lockup detector warnings.
358 */
359 if (next != end)
360 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200361 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000362}
363
Marc Zyngier9d218a12014-01-15 12:50:23 +0000364static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
365 phys_addr_t addr, phys_addr_t end)
366{
367 pte_t *pte;
368
369 pte = pte_offset_kernel(pmd, addr);
370 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100371 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000372 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000373 } while (pte++, addr += PAGE_SIZE, addr != end);
374}
375
376static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
377 phys_addr_t addr, phys_addr_t end)
378{
379 pmd_t *pmd;
380 phys_addr_t next;
381
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100382 pmd = stage2_pmd_offset(kvm, pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000383 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100384 next = stage2_pmd_addr_end(kvm, addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000385 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000386 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000387 kvm_flush_dcache_pmd(*pmd);
388 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000389 stage2_flush_ptes(kvm, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000390 }
391 } while (pmd++, addr = next, addr != end);
392}
393
394static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
395 phys_addr_t addr, phys_addr_t end)
396{
397 pud_t *pud;
398 phys_addr_t next;
399
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100400 pud = stage2_pud_offset(kvm, pgd, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000401 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100402 next = stage2_pud_addr_end(kvm, addr, end);
403 if (!stage2_pud_none(kvm, *pud)) {
404 if (stage2_pud_huge(kvm, *pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000405 kvm_flush_dcache_pud(*pud);
406 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000407 stage2_flush_pmds(kvm, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000408 }
409 } while (pud++, addr = next, addr != end);
410}
411
412static void stage2_flush_memslot(struct kvm *kvm,
413 struct kvm_memory_slot *memslot)
414{
415 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
416 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
417 phys_addr_t next;
418 pgd_t *pgd;
419
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100420 pgd = kvm->arch.pgd + stage2_pgd_index(kvm, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000421 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100422 next = stage2_pgd_addr_end(kvm, addr, end);
423 if (!stage2_pgd_none(kvm, *pgd))
Suzuki K Poulosed2db7772018-09-26 17:32:37 +0100424 stage2_flush_puds(kvm, pgd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000425 } while (pgd++, addr = next, addr != end);
426}
427
428/**
429 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
430 * @kvm: The struct kvm pointer
431 *
432 * Go through the stage 2 page tables and invalidate any cache lines
433 * backing memory already mapped to the VM.
434 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000435static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000436{
437 struct kvm_memslots *slots;
438 struct kvm_memory_slot *memslot;
439 int idx;
440
441 idx = srcu_read_lock(&kvm->srcu);
442 spin_lock(&kvm->mmu_lock);
443
444 slots = kvm_memslots(kvm);
445 kvm_for_each_memslot(memslot, slots)
446 stage2_flush_memslot(kvm, memslot);
447
448 spin_unlock(&kvm->mmu_lock);
449 srcu_read_unlock(&kvm->srcu, idx);
450}
451
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000452static void clear_hyp_pgd_entry(pgd_t *pgd)
453{
454 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
455 pgd_clear(pgd);
456 pud_free(NULL, pud_table);
457 put_page(virt_to_page(pgd));
458}
459
460static void clear_hyp_pud_entry(pud_t *pud)
461{
462 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
463 VM_BUG_ON(pud_huge(*pud));
464 pud_clear(pud);
465 pmd_free(NULL, pmd_table);
466 put_page(virt_to_page(pud));
467}
468
469static void clear_hyp_pmd_entry(pmd_t *pmd)
470{
471 pte_t *pte_table = pte_offset_kernel(pmd, 0);
472 VM_BUG_ON(pmd_thp_or_huge(*pmd));
473 pmd_clear(pmd);
474 pte_free_kernel(NULL, pte_table);
475 put_page(virt_to_page(pmd));
476}
477
478static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
479{
480 pte_t *pte, *start_pte;
481
482 start_pte = pte = pte_offset_kernel(pmd, addr);
483 do {
484 if (!pte_none(*pte)) {
485 kvm_set_pte(pte, __pte(0));
486 put_page(virt_to_page(pte));
487 }
488 } while (pte++, addr += PAGE_SIZE, addr != end);
489
490 if (hyp_pte_table_empty(start_pte))
491 clear_hyp_pmd_entry(pmd);
492}
493
494static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
495{
496 phys_addr_t next;
497 pmd_t *pmd, *start_pmd;
498
499 start_pmd = pmd = pmd_offset(pud, addr);
500 do {
501 next = pmd_addr_end(addr, end);
502 /* Hyp doesn't use huge pmds */
503 if (!pmd_none(*pmd))
504 unmap_hyp_ptes(pmd, addr, next);
505 } while (pmd++, addr = next, addr != end);
506
507 if (hyp_pmd_table_empty(start_pmd))
508 clear_hyp_pud_entry(pud);
509}
510
511static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
512{
513 phys_addr_t next;
514 pud_t *pud, *start_pud;
515
516 start_pud = pud = pud_offset(pgd, addr);
517 do {
518 next = pud_addr_end(addr, end);
519 /* Hyp doesn't use huge puds */
520 if (!pud_none(*pud))
521 unmap_hyp_pmds(pud, addr, next);
522 } while (pud++, addr = next, addr != end);
523
524 if (hyp_pud_table_empty(start_pud))
525 clear_hyp_pgd_entry(pgd);
526}
527
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000528static unsigned int kvm_pgd_index(unsigned long addr, unsigned int ptrs_per_pgd)
529{
530 return (addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1);
531}
532
533static void __unmap_hyp_range(pgd_t *pgdp, unsigned long ptrs_per_pgd,
534 phys_addr_t start, u64 size)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000535{
536 pgd_t *pgd;
537 phys_addr_t addr = start, end = start + size;
538 phys_addr_t next;
539
540 /*
541 * We don't unmap anything from HYP, except at the hyp tear down.
542 * Hence, we don't have to invalidate the TLBs here.
543 */
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000544 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000545 do {
546 next = pgd_addr_end(addr, end);
547 if (!pgd_none(*pgd))
548 unmap_hyp_puds(pgd, addr, next);
549 } while (pgd++, addr = next, addr != end);
550}
551
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000552static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
553{
554 __unmap_hyp_range(pgdp, PTRS_PER_PGD, start, size);
555}
556
557static void unmap_hyp_idmap_range(pgd_t *pgdp, phys_addr_t start, u64 size)
558{
559 __unmap_hyp_range(pgdp, __kvm_idmap_ptrs_per_pgd(), start, size);
560}
561
Marc Zyngier000d3992013-03-05 02:43:17 +0000562/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100563 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000564 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100565 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
566 * therefore contains either mappings in the kernel memory area (above
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000567 * PAGE_OFFSET), or device mappings in the idmap range.
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100568 *
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000569 * boot_hyp_pgd should only map the idmap range, and is only used in
570 * the extended idmap case.
Marc Zyngier000d3992013-03-05 02:43:17 +0000571 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100572void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000573{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000574 pgd_t *id_pgd;
575
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100576 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100577
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000578 id_pgd = boot_hyp_pgd ? boot_hyp_pgd : hyp_pgd;
579
580 if (id_pgd) {
581 /* In case we never called hyp_mmu_init() */
582 if (!io_map_base)
583 io_map_base = hyp_idmap_start;
584 unmap_hyp_idmap_range(id_pgd, io_map_base,
585 hyp_idmap_start + PAGE_SIZE - io_map_base);
586 }
587
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100588 if (boot_hyp_pgd) {
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100589 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
590 boot_hyp_pgd = NULL;
591 }
592
Marc Zyngier4f728272013-04-12 19:12:05 +0100593 if (hyp_pgd) {
Marc Zyngier7839c672017-12-07 11:45:45 +0000594 unmap_hyp_range(hyp_pgd, kern_hyp_va(PAGE_OFFSET),
595 (uintptr_t)high_memory - PAGE_OFFSET);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100596
Christoffer Dall38f791a2014-10-10 12:14:28 +0200597 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100598 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100599 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000600 if (merged_hyp_pgd) {
601 clear_page(merged_hyp_pgd);
602 free_page((unsigned long)merged_hyp_pgd);
603 merged_hyp_pgd = NULL;
604 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100605
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500606 mutex_unlock(&kvm_hyp_pgd_mutex);
607}
608
609static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100610 unsigned long end, unsigned long pfn,
611 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500612{
613 pte_t *pte;
614 unsigned long addr;
615
Marc Zyngier3562c762013-04-12 19:12:02 +0100616 addr = start;
617 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100618 pte = pte_offset_kernel(pmd, addr);
Punit Agrawalf8df7332018-12-11 17:10:36 +0000619 kvm_set_pte(pte, kvm_pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100620 get_page(virt_to_page(pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100621 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100622 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500623}
624
625static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100626 unsigned long end, unsigned long pfn,
627 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500628{
629 pmd_t *pmd;
630 pte_t *pte;
631 unsigned long addr, next;
632
Marc Zyngier3562c762013-04-12 19:12:02 +0100633 addr = start;
634 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100635 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500636
637 BUG_ON(pmd_sect(*pmd));
638
639 if (pmd_none(*pmd)) {
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -0800640 pte = pte_alloc_one_kernel(NULL);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500641 if (!pte) {
642 kvm_err("Cannot allocate Hyp pte\n");
643 return -ENOMEM;
644 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100645 kvm_pmd_populate(pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100646 get_page(virt_to_page(pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500647 }
648
649 next = pmd_addr_end(addr, end);
650
Marc Zyngier6060df82013-04-12 19:12:01 +0100651 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
652 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100653 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500654
655 return 0;
656}
657
Christoffer Dall38f791a2014-10-10 12:14:28 +0200658static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
659 unsigned long end, unsigned long pfn,
660 pgprot_t prot)
661{
662 pud_t *pud;
663 pmd_t *pmd;
664 unsigned long addr, next;
665 int ret;
666
667 addr = start;
668 do {
669 pud = pud_offset(pgd, addr);
670
671 if (pud_none_or_clear_bad(pud)) {
672 pmd = pmd_alloc_one(NULL, addr);
673 if (!pmd) {
674 kvm_err("Cannot allocate Hyp pmd\n");
675 return -ENOMEM;
676 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100677 kvm_pud_populate(pud, pmd);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200678 get_page(virt_to_page(pud));
Christoffer Dall38f791a2014-10-10 12:14:28 +0200679 }
680
681 next = pud_addr_end(addr, end);
682 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
683 if (ret)
684 return ret;
685 pfn += (next - addr) >> PAGE_SHIFT;
686 } while (addr = next, addr != end);
687
688 return 0;
689}
690
Kristina Martsenko98732d12018-01-15 15:23:49 +0000691static int __create_hyp_mappings(pgd_t *pgdp, unsigned long ptrs_per_pgd,
Marc Zyngier6060df82013-04-12 19:12:01 +0100692 unsigned long start, unsigned long end,
693 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500694{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500695 pgd_t *pgd;
696 pud_t *pud;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500697 unsigned long addr, next;
698 int err = 0;
699
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500700 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100701 addr = start & PAGE_MASK;
702 end = PAGE_ALIGN(end);
703 do {
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000704 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500705
Christoffer Dall38f791a2014-10-10 12:14:28 +0200706 if (pgd_none(*pgd)) {
707 pud = pud_alloc_one(NULL, addr);
708 if (!pud) {
709 kvm_err("Cannot allocate Hyp pud\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500710 err = -ENOMEM;
711 goto out;
712 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100713 kvm_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200714 get_page(virt_to_page(pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500715 }
716
717 next = pgd_addr_end(addr, end);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200718 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500719 if (err)
720 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100721 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100722 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500723out:
724 mutex_unlock(&kvm_hyp_pgd_mutex);
725 return err;
726}
727
Christoffer Dall40c27292013-11-15 13:14:12 -0800728static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
729{
730 if (!is_vmalloc_addr(kaddr)) {
731 BUG_ON(!virt_addr_valid(kaddr));
732 return __pa(kaddr);
733 } else {
734 return page_to_phys(vmalloc_to_page(kaddr)) +
735 offset_in_page(kaddr);
736 }
737}
738
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500739/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100740 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500741 * @from: The virtual kernel start address of the range
742 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100743 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500744 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100745 * The same virtual address as the kernel virtual address is also used
746 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
747 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500748 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100749int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500750{
Christoffer Dall40c27292013-11-15 13:14:12 -0800751 phys_addr_t phys_addr;
752 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100753 unsigned long start = kern_hyp_va((unsigned long)from);
754 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100755
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000756 if (is_kernel_in_hyp_mode())
757 return 0;
758
Christoffer Dall40c27292013-11-15 13:14:12 -0800759 start = start & PAGE_MASK;
760 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100761
Christoffer Dall40c27292013-11-15 13:14:12 -0800762 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
763 int err;
764
765 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Kristina Martsenko98732d12018-01-15 15:23:49 +0000766 err = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD,
767 virt_addr, virt_addr + PAGE_SIZE,
Christoffer Dall40c27292013-11-15 13:14:12 -0800768 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100769 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800770 if (err)
771 return err;
772 }
773
774 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500775}
776
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000777static int __create_hyp_private_mapping(phys_addr_t phys_addr, size_t size,
778 unsigned long *haddr, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500779{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000780 pgd_t *pgd = hyp_pgd;
781 unsigned long base;
782 int ret = 0;
Marc Zyngier6060df82013-04-12 19:12:01 +0100783
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000784 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier6060df82013-04-12 19:12:01 +0100785
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000786 /*
787 * This assumes that we we have enough space below the idmap
788 * page to allocate our VAs. If not, the check below will
789 * kick. A potential alternative would be to detect that
790 * overflow and switch to an allocation above the idmap.
791 *
792 * The allocated size is always a multiple of PAGE_SIZE.
793 */
794 size = PAGE_ALIGN(size + offset_in_page(phys_addr));
795 base = io_map_base - size;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000796
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000797 /*
798 * Verify that BIT(VA_BITS - 1) hasn't been flipped by
799 * allocating the new area, as it would indicate we've
800 * overflowed the idmap/IO address range.
801 */
802 if ((base ^ io_map_base) & BIT(VA_BITS - 1))
803 ret = -ENOMEM;
804 else
805 io_map_base = base;
806
807 mutex_unlock(&kvm_hyp_pgd_mutex);
808
809 if (ret)
810 goto out;
811
812 if (__kvm_cpu_uses_extended_idmap())
813 pgd = boot_hyp_pgd;
814
815 ret = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
816 base, base + size,
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000817 __phys_to_pfn(phys_addr), prot);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000818 if (ret)
819 goto out;
820
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000821 *haddr = base + offset_in_page(phys_addr);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000822
823out:
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000824 return ret;
825}
826
827/**
828 * create_hyp_io_mappings - Map IO into both kernel and HYP
829 * @phys_addr: The physical start address which gets mapped
830 * @size: Size of the region being mapped
831 * @kaddr: Kernel VA for this mapping
832 * @haddr: HYP VA for this mapping
833 */
834int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
835 void __iomem **kaddr,
836 void __iomem **haddr)
837{
838 unsigned long addr;
839 int ret;
840
841 *kaddr = ioremap(phys_addr, size);
842 if (!*kaddr)
843 return -ENOMEM;
844
845 if (is_kernel_in_hyp_mode()) {
846 *haddr = *kaddr;
847 return 0;
848 }
849
850 ret = __create_hyp_private_mapping(phys_addr, size,
851 &addr, PAGE_HYP_DEVICE);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000852 if (ret) {
853 iounmap(*kaddr);
854 *kaddr = NULL;
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000855 *haddr = NULL;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000856 return ret;
857 }
858
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000859 *haddr = (void __iomem *)addr;
860 return 0;
861}
862
863/**
864 * create_hyp_exec_mappings - Map an executable range into HYP
865 * @phys_addr: The physical start address which gets mapped
866 * @size: Size of the region being mapped
867 * @haddr: HYP VA for this mapping
868 */
869int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size,
870 void **haddr)
871{
872 unsigned long addr;
873 int ret;
874
875 BUG_ON(is_kernel_in_hyp_mode());
876
877 ret = __create_hyp_private_mapping(phys_addr, size,
878 &addr, PAGE_HYP_EXEC);
879 if (ret) {
880 *haddr = NULL;
881 return ret;
882 }
883
884 *haddr = (void *)addr;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000885 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500886}
887
Christoffer Dalld5d81842013-01-20 18:28:07 -0500888/**
889 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
890 * @kvm: The KVM struct pointer for the VM.
891 *
Zenghui Yu8324c3d2019-03-25 08:02:05 +0000892 * Allocates only the stage-2 HW PGD level table(s) of size defined by
893 * stage2_pgd_size(kvm).
Christoffer Dalld5d81842013-01-20 18:28:07 -0500894 *
895 * Note we don't need locking here as this is only called when the VM is
896 * created, which can only be done once.
897 */
898int kvm_alloc_stage2_pgd(struct kvm *kvm)
899{
Christoffer Dalle329fb72018-12-11 15:26:31 +0100900 phys_addr_t pgd_phys;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500901 pgd_t *pgd;
902
903 if (kvm->arch.pgd != NULL) {
904 kvm_err("kvm_arch already initialized?\n");
905 return -EINVAL;
906 }
907
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000908 /* Allocate the HW PGD, making sure that each page gets its own refcount */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +0100909 pgd = alloc_pages_exact(stage2_pgd_size(kvm), GFP_KERNEL | __GFP_ZERO);
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000910 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000911 return -ENOMEM;
912
Christoffer Dalle329fb72018-12-11 15:26:31 +0100913 pgd_phys = virt_to_phys(pgd);
914 if (WARN_ON(pgd_phys & ~kvm_vttbr_baddr_mask(kvm)))
915 return -EINVAL;
916
Christoffer Dalld5d81842013-01-20 18:28:07 -0500917 kvm->arch.pgd = pgd;
Christoffer Dalle329fb72018-12-11 15:26:31 +0100918 kvm->arch.pgd_phys = pgd_phys;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500919 return 0;
920}
921
Christoffer Dall957db102014-11-27 10:35:03 +0100922static void stage2_unmap_memslot(struct kvm *kvm,
923 struct kvm_memory_slot *memslot)
924{
925 hva_t hva = memslot->userspace_addr;
926 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
927 phys_addr_t size = PAGE_SIZE * memslot->npages;
928 hva_t reg_end = hva + size;
929
930 /*
931 * A memory region could potentially cover multiple VMAs, and any holes
932 * between them, so iterate over all of them to find out if we should
933 * unmap any of them.
934 *
935 * +--------------------------------------------+
936 * +---------------+----------------+ +----------------+
937 * | : VMA 1 | VMA 2 | | VMA 3 : |
938 * +---------------+----------------+ +----------------+
939 * | memory region |
940 * +--------------------------------------------+
941 */
942 do {
943 struct vm_area_struct *vma = find_vma(current->mm, hva);
944 hva_t vm_start, vm_end;
945
946 if (!vma || vma->vm_start >= reg_end)
947 break;
948
949 /*
950 * Take the intersection of this VMA with the memory region
951 */
952 vm_start = max(hva, vma->vm_start);
953 vm_end = min(reg_end, vma->vm_end);
954
955 if (!(vma->vm_flags & VM_PFNMAP)) {
956 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
957 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
958 }
959 hva = vm_end;
960 } while (hva < reg_end);
961}
962
963/**
964 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
965 * @kvm: The struct kvm pointer
966 *
967 * Go through the memregions and unmap any reguler RAM
968 * backing memory already mapped to the VM.
969 */
970void stage2_unmap_vm(struct kvm *kvm)
971{
972 struct kvm_memslots *slots;
973 struct kvm_memory_slot *memslot;
974 int idx;
975
976 idx = srcu_read_lock(&kvm->srcu);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000977 down_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100978 spin_lock(&kvm->mmu_lock);
979
980 slots = kvm_memslots(kvm);
981 kvm_for_each_memslot(memslot, slots)
982 stage2_unmap_memslot(kvm, memslot);
983
984 spin_unlock(&kvm->mmu_lock);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000985 up_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100986 srcu_read_unlock(&kvm->srcu, idx);
987}
988
Christoffer Dalld5d81842013-01-20 18:28:07 -0500989/**
990 * kvm_free_stage2_pgd - free all stage-2 tables
991 * @kvm: The KVM struct pointer for the VM.
992 *
993 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
994 * underlying level-2 and level-3 tables before freeing the actual level-1 table
995 * and setting the struct pointer to NULL.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500996 */
997void kvm_free_stage2_pgd(struct kvm *kvm)
998{
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100999 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001000
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +01001001 spin_lock(&kvm->mmu_lock);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001002 if (kvm->arch.pgd) {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001003 unmap_stage2_range(kvm, 0, kvm_phys_size(kvm));
Suzuki K Poulose2952a602017-05-16 10:34:54 +01001004 pgd = READ_ONCE(kvm->arch.pgd);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001005 kvm->arch.pgd = NULL;
Christoffer Dalle329fb72018-12-11 15:26:31 +01001006 kvm->arch.pgd_phys = 0;
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001007 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +01001008 spin_unlock(&kvm->mmu_lock);
1009
Suzuki K Poulose9163ee232016-03-22 17:01:21 +00001010 /* Free the HW pgd, one page at a time */
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +01001011 if (pgd)
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001012 free_pages_exact(pgd, stage2_pgd_size(kvm));
Christoffer Dalld5d81842013-01-20 18:28:07 -05001013}
1014
Christoffer Dall38f791a2014-10-10 12:14:28 +02001015static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
1016 phys_addr_t addr)
1017{
1018 pgd_t *pgd;
1019 pud_t *pud;
1020
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001021 pgd = kvm->arch.pgd + stage2_pgd_index(kvm, addr);
1022 if (stage2_pgd_none(kvm, *pgd)) {
Christoffer Dall38f791a2014-10-10 12:14:28 +02001023 if (!cache)
1024 return NULL;
1025 pud = mmu_memory_cache_alloc(cache);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001026 stage2_pgd_populate(kvm, pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001027 get_page(virt_to_page(pgd));
1028 }
1029
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001030 return stage2_pud_offset(kvm, pgd, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001031}
1032
Christoffer Dallad361f02012-11-01 17:14:45 +01001033static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
1034 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001035{
Christoffer Dalld5d81842013-01-20 18:28:07 -05001036 pud_t *pud;
1037 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001038
Christoffer Dall38f791a2014-10-10 12:14:28 +02001039 pud = stage2_get_pud(kvm, cache, addr);
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001040 if (!pud || stage2_pud_huge(kvm, *pud))
Marc Zyngierd6dbdd32017-06-05 19:17:18 +01001041 return NULL;
1042
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001043 if (stage2_pud_none(kvm, *pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001044 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +01001045 return NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001046 pmd = mmu_memory_cache_alloc(cache);
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001047 stage2_pud_populate(kvm, pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001048 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001049 }
1050
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001051 return stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001052}
Christoffer Dalld5d81842013-01-20 18:28:07 -05001053
Christoffer Dallad361f02012-11-01 17:14:45 +01001054static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
1055 *cache, phys_addr_t addr, const pmd_t *new_pmd)
1056{
1057 pmd_t *pmd, old_pmd;
1058
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001059retry:
Christoffer Dallad361f02012-11-01 17:14:45 +01001060 pmd = stage2_get_pmd(kvm, cache, addr);
1061 VM_BUG_ON(!pmd);
1062
Christoffer Dallad361f02012-11-01 17:14:45 +01001063 old_pmd = *pmd;
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001064 /*
1065 * Multiple vcpus faulting on the same PMD entry, can
1066 * lead to them sequentially updating the PMD with the
1067 * same value. Following the break-before-make
1068 * (pmd_clear() followed by tlb_flush()) process can
1069 * hinder forward progress due to refaults generated
1070 * on missing translations.
1071 *
1072 * Skip updating the page table if the entry is
1073 * unchanged.
1074 */
1075 if (pmd_val(old_pmd) == pmd_val(*new_pmd))
1076 return 0;
1077
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001078 if (pmd_present(old_pmd)) {
Punit Agrawal86658b82018-08-13 11:43:50 +01001079 /*
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001080 * If we already have PTE level mapping for this block,
1081 * we must unmap it to avoid inconsistent TLB state and
1082 * leaking the table page. We could end up in this situation
1083 * if the memory slot was marked for dirty logging and was
1084 * reverted, leaving PTE level mappings for the pages accessed
1085 * during the period. So, unmap the PTE level mapping for this
1086 * block and retry, as we could have released the upper level
1087 * table in the process.
Punit Agrawal86658b82018-08-13 11:43:50 +01001088 *
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001089 * Normal THP split/merge follows mmu_notifier callbacks and do
1090 * get handled accordingly.
Punit Agrawal86658b82018-08-13 11:43:50 +01001091 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001092 if (!pmd_thp_or_huge(old_pmd)) {
1093 unmap_stage2_range(kvm, addr & S2_PMD_MASK, S2_PMD_SIZE);
1094 goto retry;
1095 }
Punit Agrawal86658b82018-08-13 11:43:50 +01001096 /*
1097 * Mapping in huge pages should only happen through a
1098 * fault. If a page is merged into a transparent huge
1099 * page, the individual subpages of that huge page
1100 * should be unmapped through MMU notifiers before we
1101 * get here.
1102 *
1103 * Merging of CompoundPages is not supported; they
1104 * should become splitting first, unmapped, merged,
1105 * and mapped back in on-demand.
1106 */
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001107 WARN_ON_ONCE(pmd_pfn(old_pmd) != pmd_pfn(*new_pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001108 pmd_clear(pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001109 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001110 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +01001111 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001112 }
1113
1114 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001115 return 0;
1116}
1117
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001118static int stage2_set_pud_huge(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
1119 phys_addr_t addr, const pud_t *new_pudp)
1120{
1121 pud_t *pudp, old_pud;
1122
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001123retry:
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001124 pudp = stage2_get_pud(kvm, cache, addr);
1125 VM_BUG_ON(!pudp);
1126
1127 old_pud = *pudp;
1128
1129 /*
1130 * A large number of vcpus faulting on the same stage 2 entry,
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001131 * can lead to a refault due to the stage2_pud_clear()/tlb_flush().
1132 * Skip updating the page tables if there is no change.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001133 */
1134 if (pud_val(old_pud) == pud_val(*new_pudp))
1135 return 0;
1136
1137 if (stage2_pud_present(kvm, old_pud)) {
Suzuki K Poulose3c3736c2019-03-20 14:57:19 +00001138 /*
1139 * If we already have table level mapping for this block, unmap
1140 * the range for this block and retry.
1141 */
1142 if (!stage2_pud_huge(kvm, old_pud)) {
1143 unmap_stage2_range(kvm, addr & S2_PUD_MASK, S2_PUD_SIZE);
1144 goto retry;
1145 }
1146
1147 WARN_ON_ONCE(kvm_pud_pfn(old_pud) != kvm_pud_pfn(*new_pudp));
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001148 stage2_pud_clear(kvm, pudp);
1149 kvm_tlb_flush_vmid_ipa(kvm, addr);
1150 } else {
1151 get_page(virt_to_page(pudp));
1152 }
1153
1154 kvm_set_pud(pudp, *new_pudp);
1155 return 0;
1156}
1157
Punit Agrawal86d1c552018-12-11 17:10:38 +00001158/*
1159 * stage2_get_leaf_entry - walk the stage2 VM page tables and return
1160 * true if a valid and present leaf-entry is found. A pointer to the
1161 * leaf-entry is returned in the appropriate level variable - pudpp,
1162 * pmdpp, ptepp.
1163 */
1164static bool stage2_get_leaf_entry(struct kvm *kvm, phys_addr_t addr,
1165 pud_t **pudpp, pmd_t **pmdpp, pte_t **ptepp)
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001166{
Punit Agrawal86d1c552018-12-11 17:10:38 +00001167 pud_t *pudp;
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001168 pmd_t *pmdp;
1169 pte_t *ptep;
1170
Punit Agrawal86d1c552018-12-11 17:10:38 +00001171 *pudpp = NULL;
1172 *pmdpp = NULL;
1173 *ptepp = NULL;
1174
1175 pudp = stage2_get_pud(kvm, NULL, addr);
1176 if (!pudp || stage2_pud_none(kvm, *pudp) || !stage2_pud_present(kvm, *pudp))
1177 return false;
1178
1179 if (stage2_pud_huge(kvm, *pudp)) {
1180 *pudpp = pudp;
1181 return true;
1182 }
1183
1184 pmdp = stage2_pmd_offset(kvm, pudp, addr);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001185 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
1186 return false;
1187
Punit Agrawal86d1c552018-12-11 17:10:38 +00001188 if (pmd_thp_or_huge(*pmdp)) {
1189 *pmdpp = pmdp;
1190 return true;
1191 }
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001192
1193 ptep = pte_offset_kernel(pmdp, addr);
1194 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
1195 return false;
1196
Punit Agrawal86d1c552018-12-11 17:10:38 +00001197 *ptepp = ptep;
1198 return true;
1199}
1200
1201static bool stage2_is_exec(struct kvm *kvm, phys_addr_t addr)
1202{
1203 pud_t *pudp;
1204 pmd_t *pmdp;
1205 pte_t *ptep;
1206 bool found;
1207
1208 found = stage2_get_leaf_entry(kvm, addr, &pudp, &pmdp, &ptep);
1209 if (!found)
1210 return false;
1211
1212 if (pudp)
1213 return kvm_s2pud_exec(pudp);
1214 else if (pmdp)
1215 return kvm_s2pmd_exec(pmdp);
1216 else
1217 return kvm_s2pte_exec(ptep);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001218}
1219
Christoffer Dallad361f02012-11-01 17:14:45 +01001220static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -08001221 phys_addr_t addr, const pte_t *new_pte,
1222 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +01001223{
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001224 pud_t *pud;
Christoffer Dallad361f02012-11-01 17:14:45 +01001225 pmd_t *pmd;
1226 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001227 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
1228 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
1229
1230 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +01001231
Christoffer Dall38f791a2014-10-10 12:14:28 +02001232 /* Create stage-2 page table mapping - Levels 0 and 1 */
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001233 pud = stage2_get_pud(kvm, cache, addr);
1234 if (!pud) {
1235 /*
1236 * Ignore calls from kvm_set_spte_hva for unallocated
1237 * address ranges.
1238 */
1239 return 0;
1240 }
1241
1242 /*
1243 * While dirty page logging - dissolve huge PUD, then continue
1244 * on to allocate page.
1245 */
1246 if (logging_active)
1247 stage2_dissolve_pud(kvm, addr, pud);
1248
1249 if (stage2_pud_none(kvm, *pud)) {
1250 if (!cache)
1251 return 0; /* ignore calls from kvm_set_spte_hva */
1252 pmd = mmu_memory_cache_alloc(cache);
1253 stage2_pud_populate(kvm, pud, pmd);
1254 get_page(virt_to_page(pud));
1255 }
1256
1257 pmd = stage2_pmd_offset(kvm, pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001258 if (!pmd) {
1259 /*
1260 * Ignore calls from kvm_set_spte_hva for unallocated
1261 * address ranges.
1262 */
1263 return 0;
1264 }
1265
Mario Smarduch15a49a42015-01-15 15:58:58 -08001266 /*
1267 * While dirty page logging - dissolve huge PMD, then continue on to
1268 * allocate page.
1269 */
1270 if (logging_active)
1271 stage2_dissolve_pmd(kvm, addr, pmd);
1272
Christoffer Dallad361f02012-11-01 17:14:45 +01001273 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -05001274 if (pmd_none(*pmd)) {
1275 if (!cache)
1276 return 0; /* ignore calls from kvm_set_spte_hva */
1277 pte = mmu_memory_cache_alloc(cache);
Marc Zyngier0db9dd82018-06-27 15:51:05 +01001278 kvm_pmd_populate(pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001279 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001280 }
1281
1282 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001283
1284 if (iomap && pte_present(*pte))
1285 return -EFAULT;
1286
1287 /* Create 2nd stage page table mapping - Level 3 */
1288 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001289 if (pte_present(old_pte)) {
Punit Agrawal976d34e2018-08-13 11:43:51 +01001290 /* Skip page table update if there is no change */
1291 if (pte_val(old_pte) == pte_val(*new_pte))
1292 return 0;
1293
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001294 kvm_set_pte(pte, __pte(0));
Marc Zyngier48762762013-01-28 15:27:00 +00001295 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001296 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001297 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001298 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001299
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001300 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001301 return 0;
1302}
1303
Catalin Marinas06485052016-04-13 17:57:37 +01001304#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1305static int stage2_ptep_test_and_clear_young(pte_t *pte)
1306{
1307 if (pte_young(*pte)) {
1308 *pte = pte_mkold(*pte);
1309 return 1;
1310 }
1311 return 0;
1312}
1313#else
1314static int stage2_ptep_test_and_clear_young(pte_t *pte)
1315{
1316 return __ptep_test_and_clear_young(pte);
1317}
1318#endif
1319
1320static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1321{
1322 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1323}
1324
Punit Agrawal35a63962018-12-11 17:10:40 +00001325static int stage2_pudp_test_and_clear_young(pud_t *pud)
1326{
1327 return stage2_ptep_test_and_clear_young((pte_t *)pud);
1328}
1329
Christoffer Dalld5d81842013-01-20 18:28:07 -05001330/**
1331 * kvm_phys_addr_ioremap - map a device range to guest IPA
1332 *
1333 * @kvm: The KVM pointer
1334 * @guest_ipa: The IPA at which to insert the mapping
1335 * @pa: The physical address of the device
1336 * @size: The size of the mapping
1337 */
1338int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001339 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001340{
1341 phys_addr_t addr, end;
1342 int ret = 0;
1343 unsigned long pfn;
1344 struct kvm_mmu_memory_cache cache = { 0, };
1345
1346 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1347 pfn = __phys_to_pfn(pa);
1348
1349 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001350 pte_t pte = kvm_pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001351
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001352 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001353 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001354
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001355 ret = mmu_topup_memory_cache(&cache,
1356 kvm_mmu_cache_min_pages(kvm),
1357 KVM_NR_MEM_OBJS);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001358 if (ret)
1359 goto out;
1360 spin_lock(&kvm->mmu_lock);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001361 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1362 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001363 spin_unlock(&kvm->mmu_lock);
1364 if (ret)
1365 goto out;
1366
1367 pfn++;
1368 }
1369
1370out:
1371 mmu_free_memory_cache(&cache);
1372 return ret;
1373}
1374
Dan Williamsba049e92016-01-15 16:56:11 -08001375static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001376{
Dan Williamsba049e92016-01-15 16:56:11 -08001377 kvm_pfn_t pfn = *pfnp;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001378 gfn_t gfn = *ipap >> PAGE_SHIFT;
1379
Sean Christopherson005ba372020-01-08 12:24:36 -08001380 if (kvm_is_transparent_hugepage(pfn)) {
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001381 unsigned long mask;
1382 /*
1383 * The address we faulted on is backed by a transparent huge
1384 * page. However, because we map the compound huge page and
1385 * not the individual tail page, we need to transfer the
1386 * refcount to the head page. We have to be careful that the
1387 * THP doesn't start to split while we are adjusting the
1388 * refcounts.
1389 *
1390 * We are sure this doesn't happen, because mmu_notifier_retry
1391 * was successful and we are holding the mmu_lock, so if this
1392 * THP is trying to split, it will be blocked in the mmu
1393 * notifier before touching any of the pages, specifically
1394 * before being able to call __split_huge_page_refcount().
1395 *
1396 * We can therefore safely transfer the refcount from PG_tail
1397 * to PG_head and switch the pfn from a tail page to the head
1398 * page accordingly.
1399 */
1400 mask = PTRS_PER_PMD - 1;
1401 VM_BUG_ON((gfn & mask) != (pfn & mask));
1402 if (pfn & mask) {
1403 *ipap &= PMD_MASK;
1404 kvm_release_pfn_clean(pfn);
1405 pfn &= ~mask;
1406 kvm_get_pfn(pfn);
1407 *pfnp = pfn;
1408 }
1409
1410 return true;
1411 }
1412
1413 return false;
1414}
1415
Mario Smarduchc6473552015-01-15 15:58:56 -08001416/**
1417 * stage2_wp_ptes - write protect PMD range
1418 * @pmd: pointer to pmd entry
1419 * @addr: range start address
1420 * @end: range end address
1421 */
1422static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1423{
1424 pte_t *pte;
1425
1426 pte = pte_offset_kernel(pmd, addr);
1427 do {
1428 if (!pte_none(*pte)) {
1429 if (!kvm_s2pte_readonly(pte))
1430 kvm_set_s2pte_readonly(pte);
1431 }
1432 } while (pte++, addr += PAGE_SIZE, addr != end);
1433}
1434
1435/**
1436 * stage2_wp_pmds - write protect PUD range
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001437 * kvm: kvm instance for the VM
Mario Smarduchc6473552015-01-15 15:58:56 -08001438 * @pud: pointer to pud entry
1439 * @addr: range start address
1440 * @end: range end address
1441 */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001442static void stage2_wp_pmds(struct kvm *kvm, pud_t *pud,
1443 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001444{
1445 pmd_t *pmd;
1446 phys_addr_t next;
1447
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001448 pmd = stage2_pmd_offset(kvm, pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001449
1450 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001451 next = stage2_pmd_addr_end(kvm, addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001452 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001453 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001454 if (!kvm_s2pmd_readonly(pmd))
1455 kvm_set_s2pmd_readonly(pmd);
1456 } else {
1457 stage2_wp_ptes(pmd, addr, next);
1458 }
1459 }
1460 } while (pmd++, addr = next, addr != end);
1461}
1462
1463/**
Zenghui Yu8324c3d2019-03-25 08:02:05 +00001464 * stage2_wp_puds - write protect PGD range
1465 * @pgd: pointer to pgd entry
1466 * @addr: range start address
1467 * @end: range end address
1468 */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001469static void stage2_wp_puds(struct kvm *kvm, pgd_t *pgd,
1470 phys_addr_t addr, phys_addr_t end)
Mario Smarduchc6473552015-01-15 15:58:56 -08001471{
1472 pud_t *pud;
1473 phys_addr_t next;
1474
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001475 pud = stage2_pud_offset(kvm, pgd, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001476 do {
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001477 next = stage2_pud_addr_end(kvm, addr, end);
1478 if (!stage2_pud_none(kvm, *pud)) {
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001479 if (stage2_pud_huge(kvm, *pud)) {
1480 if (!kvm_s2pud_readonly(pud))
1481 kvm_set_s2pud_readonly(pud);
1482 } else {
1483 stage2_wp_pmds(kvm, pud, addr, next);
1484 }
Mario Smarduchc6473552015-01-15 15:58:56 -08001485 }
1486 } while (pud++, addr = next, addr != end);
1487}
1488
1489/**
1490 * stage2_wp_range() - write protect stage2 memory region range
1491 * @kvm: The KVM pointer
1492 * @addr: Start address of range
1493 * @end: End address of range
1494 */
1495static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1496{
1497 pgd_t *pgd;
1498 phys_addr_t next;
1499
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001500 pgd = kvm->arch.pgd + stage2_pgd_index(kvm, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001501 do {
1502 /*
1503 * Release kvm_mmu_lock periodically if the memory region is
1504 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001505 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1506 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001507 * will also starve other vCPUs. We have to also make sure
1508 * that the page tables are not freed while we released
1509 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001510 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001511 cond_resched_lock(&kvm->mmu_lock);
1512 if (!READ_ONCE(kvm->arch.pgd))
1513 break;
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001514 next = stage2_pgd_addr_end(kvm, addr, end);
1515 if (stage2_pgd_present(kvm, *pgd))
1516 stage2_wp_puds(kvm, pgd, addr, next);
Mario Smarduchc6473552015-01-15 15:58:56 -08001517 } while (pgd++, addr = next, addr != end);
1518}
1519
1520/**
1521 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1522 * @kvm: The KVM pointer
1523 * @slot: The memory slot to write protect
1524 *
1525 * Called to start logging dirty pages after memory region
1526 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
Punit Agrawal4ea5af52018-12-11 17:10:37 +00001527 * all present PUD, PMD and PTEs are write protected in the memory region.
Mario Smarduchc6473552015-01-15 15:58:56 -08001528 * Afterwards read of dirty page log can be called.
1529 *
1530 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1531 * serializing operations for VM memory regions.
1532 */
1533void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1534{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001535 struct kvm_memslots *slots = kvm_memslots(kvm);
1536 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Mario Smarduchc6473552015-01-15 15:58:56 -08001537 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1538 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1539
1540 spin_lock(&kvm->mmu_lock);
1541 stage2_wp_range(kvm, start, end);
1542 spin_unlock(&kvm->mmu_lock);
1543 kvm_flush_remote_tlbs(kvm);
1544}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001545
1546/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001547 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001548 * @kvm: The KVM pointer
1549 * @slot: The memory slot associated with mask
1550 * @gfn_offset: The gfn offset in memory slot
1551 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1552 * slot to be write protected
1553 *
1554 * Walks bits set in mask write protects the associated pte's. Caller must
1555 * acquire kvm_mmu_lock.
1556 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001557static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001558 struct kvm_memory_slot *slot,
1559 gfn_t gfn_offset, unsigned long mask)
1560{
1561 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1562 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1563 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1564
1565 stage2_wp_range(kvm, start, end);
1566}
Mario Smarduchc6473552015-01-15 15:58:56 -08001567
Kai Huang3b0f1d02015-01-28 10:54:23 +08001568/*
1569 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1570 * dirty pages.
1571 *
1572 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1573 * enable dirty logging for them.
1574 */
1575void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1576 struct kvm_memory_slot *slot,
1577 gfn_t gfn_offset, unsigned long mask)
1578{
1579 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1580}
1581
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001582static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001583{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001584 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001585}
1586
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001587static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001588{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001589 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001590}
1591
James Morse1559b752019-12-17 12:38:09 +00001592static void kvm_send_hwpoison_signal(unsigned long address, short lsb)
James Morse196f8782017-06-20 17:11:48 +01001593{
Eric W. Biederman795a8372018-04-16 13:39:10 -05001594 send_sig_mceerr(BUS_MCEERR_AR, (void __user *)address, lsb, current);
James Morse196f8782017-06-20 17:11:48 +01001595}
1596
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001597static bool fault_supports_stage2_huge_mapping(struct kvm_memory_slot *memslot,
1598 unsigned long hva,
1599 unsigned long map_size)
Christoffer Dall6794ad52018-11-02 08:53:22 +01001600{
Shaokun Zhangc2be79a2019-02-19 17:22:21 +08001601 gpa_t gpa_start;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001602 hva_t uaddr_start, uaddr_end;
1603 size_t size;
1604
1605 size = memslot->npages * PAGE_SIZE;
1606
1607 gpa_start = memslot->base_gfn << PAGE_SHIFT;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001608
1609 uaddr_start = memslot->userspace_addr;
1610 uaddr_end = uaddr_start + size;
1611
1612 /*
1613 * Pages belonging to memslots that don't have the same alignment
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001614 * within a PMD/PUD for userspace and IPA cannot be mapped with stage-2
1615 * PMD/PUD entries, because we'll end up mapping the wrong pages.
Christoffer Dall6794ad52018-11-02 08:53:22 +01001616 *
1617 * Consider a layout like the following:
1618 *
1619 * memslot->userspace_addr:
1620 * +-----+--------------------+--------------------+---+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001621 * |abcde|fgh Stage-1 block | Stage-1 block tv|xyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001622 * +-----+--------------------+--------------------+---+
1623 *
1624 * memslot->base_gfn << PAGE_SIZE:
1625 * +---+--------------------+--------------------+-----+
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001626 * |abc|def Stage-2 block | Stage-2 block |tvxyz|
Christoffer Dall6794ad52018-11-02 08:53:22 +01001627 * +---+--------------------+--------------------+-----+
1628 *
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001629 * If we create those stage-2 blocks, we'll end up with this incorrect
Christoffer Dall6794ad52018-11-02 08:53:22 +01001630 * mapping:
1631 * d -> f
1632 * e -> g
1633 * f -> h
1634 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001635 if ((gpa_start & (map_size - 1)) != (uaddr_start & (map_size - 1)))
Christoffer Dall6794ad52018-11-02 08:53:22 +01001636 return false;
1637
1638 /*
1639 * Next, let's make sure we're not trying to map anything not covered
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001640 * by the memslot. This means we have to prohibit block size mappings
1641 * for the beginning and end of a non-block aligned and non-block sized
Christoffer Dall6794ad52018-11-02 08:53:22 +01001642 * memory slot (illustrated by the head and tail parts of the
1643 * userspace view above containing pages 'abcde' and 'xyz',
1644 * respectively).
1645 *
1646 * Note that it doesn't matter if we do the check using the
1647 * userspace_addr or the base_gfn, as both are equally aligned (per
1648 * the check above) and equally sized.
1649 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001650 return (hva & ~(map_size - 1)) >= uaddr_start &&
1651 (hva & ~(map_size - 1)) + map_size <= uaddr_end;
Christoffer Dall6794ad52018-11-02 08:53:22 +01001652}
1653
Christoffer Dall94f8e642013-01-20 18:28:12 -05001654static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001655 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001656 unsigned long fault_status)
1657{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001658 int ret;
Punit Agrawal6396b852018-12-11 17:10:35 +00001659 bool write_fault, writable, force_pte = false;
1660 bool exec_fault, needs_exec;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001661 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001662 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001663 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001664 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001665 struct vm_area_struct *vma;
James Morse1559b752019-12-17 12:38:09 +00001666 short vma_shift;
Dan Williamsba049e92016-01-15 16:56:11 -08001667 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001668 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001669 bool logging_active = memslot_is_logging(memslot);
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001670 unsigned long vma_pagesize, flags = 0;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001671
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001672 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001673 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1674 VM_BUG_ON(write_fault && exec_fault);
1675
1676 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001677 kvm_err("Unexpected L2 read permission error\n");
1678 return -EFAULT;
1679 }
1680
Christoffer Dallad361f02012-11-01 17:14:45 +01001681 /* Let's check if we will get back a huge page backed by hugetlbfs */
1682 down_read(&current->mm->mmap_sem);
1683 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001684 if (unlikely(!vma)) {
1685 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1686 up_read(&current->mm->mmap_sem);
1687 return -EFAULT;
1688 }
1689
James Morse1559b752019-12-17 12:38:09 +00001690 if (is_vm_hugetlb_page(vma))
1691 vma_shift = huge_page_shift(hstate_vma(vma));
1692 else
1693 vma_shift = PAGE_SHIFT;
1694
1695 vma_pagesize = 1ULL << vma_shift;
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001696 if (logging_active ||
Marc Zyngier6d674e22019-12-11 16:56:48 +00001697 (vma->vm_flags & VM_PFNMAP) ||
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001698 !fault_supports_stage2_huge_mapping(memslot, hva, vma_pagesize)) {
1699 force_pte = true;
1700 vma_pagesize = PAGE_SIZE;
1701 }
1702
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001703 /*
Suzuki K Poulose280cebf2019-01-29 19:12:17 +00001704 * The stage2 has a minimum of 2 level table (For arm64 see
1705 * kvm_arm_setup_stage2()). Hence, we are guaranteed that we can
1706 * use PMD_SIZE huge mappings (even when the PMD is folded into PGD).
1707 * As for PUD huge maps, we must make sure that we have at least
1708 * 3 levels, i.e, PMD is not folded.
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001709 */
Suzuki K Poulosea80868f2019-03-12 09:52:51 +00001710 if (vma_pagesize == PMD_SIZE ||
1711 (vma_pagesize == PUD_SIZE && kvm_stage2_has_pmd(kvm)))
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001712 gfn = (fault_ipa & huge_page_mask(hstate_vma(vma))) >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001713 up_read(&current->mm->mmap_sem);
1714
Christoffer Dall94f8e642013-01-20 18:28:12 -05001715 /* We need minimum second+third level pages */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001716 ret = mmu_topup_memory_cache(memcache, kvm_mmu_cache_min_pages(kvm),
Christoffer Dall38f791a2014-10-10 12:14:28 +02001717 KVM_NR_MEM_OBJS);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001718 if (ret)
1719 return ret;
1720
1721 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1722 /*
1723 * Ensure the read of mmu_notifier_seq happens before we call
1724 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1725 * the page we just got a reference to gets unmapped before we have a
1726 * chance to grab the mmu_lock, which ensure that if the page gets
1727 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1728 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1729 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1730 */
1731 smp_rmb();
1732
Christoffer Dallad361f02012-11-01 17:14:45 +01001733 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001734 if (pfn == KVM_PFN_ERR_HWPOISON) {
James Morse1559b752019-12-17 12:38:09 +00001735 kvm_send_hwpoison_signal(hva, vma_shift);
James Morse196f8782017-06-20 17:11:48 +01001736 return 0;
1737 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001738 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001739 return -EFAULT;
1740
Mario Smarduch15a49a42015-01-15 15:58:58 -08001741 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001742 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001743 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1744 } else if (logging_active) {
1745 /*
1746 * Faults on pages in a memslot with logging enabled
1747 * should not be mapped with huge pages (it introduces churn
1748 * and performance degradation), so force a pte mapping.
1749 */
Mario Smarduch15a49a42015-01-15 15:58:58 -08001750 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1751
1752 /*
1753 * Only actually map the page as writable if this was a write
1754 * fault.
1755 */
1756 if (!write_fault)
1757 writable = false;
1758 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001759
Marc Zyngier6d674e22019-12-11 16:56:48 +00001760 if (exec_fault && is_iomap(flags))
1761 return -ENOEXEC;
1762
Christoffer Dallad361f02012-11-01 17:14:45 +01001763 spin_lock(&kvm->mmu_lock);
1764 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001765 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001766
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001767 if (vma_pagesize == PAGE_SIZE && !force_pte) {
1768 /*
1769 * Only PMD_SIZE transparent hugepages(THP) are
1770 * currently supported. This code will need to be
1771 * updated to support other THP sizes.
Suzuki K Poulose2e8010b2019-04-10 16:14:57 +01001772 *
1773 * Make sure the host VA and the guest IPA are sufficiently
1774 * aligned and that the block is contained within the memslot.
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001775 */
Suzuki K Poulose2e8010b2019-04-10 16:14:57 +01001776 if (fault_supports_stage2_huge_mapping(memslot, hva, PMD_SIZE) &&
1777 transparent_hugepage_adjust(&pfn, &fault_ipa))
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001778 vma_pagesize = PMD_SIZE;
1779 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001780
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001781 if (writable)
1782 kvm_set_pfn_dirty(pfn);
1783
Marc Zyngier6d674e22019-12-11 16:56:48 +00001784 if (fault_status != FSC_PERM && !is_iomap(flags))
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001785 clean_dcache_guest_page(pfn, vma_pagesize);
1786
1787 if (exec_fault)
1788 invalidate_icache_guest_page(pfn, vma_pagesize);
1789
Punit Agrawal6396b852018-12-11 17:10:35 +00001790 /*
1791 * If we took an execution fault we have made the
1792 * icache/dcache coherent above and should now let the s2
1793 * mapping be executable.
1794 *
1795 * Write faults (!exec_fault && FSC_PERM) are orthogonal to
1796 * execute permissions, and we preserve whatever we have.
1797 */
1798 needs_exec = exec_fault ||
1799 (fault_status == FSC_PERM && stage2_is_exec(kvm, fault_ipa));
1800
Punit Agrawalb8e0ba72018-12-11 17:10:41 +00001801 if (vma_pagesize == PUD_SIZE) {
1802 pud_t new_pud = kvm_pfn_pud(pfn, mem_type);
1803
1804 new_pud = kvm_pud_mkhuge(new_pud);
1805 if (writable)
1806 new_pud = kvm_s2pud_mkwrite(new_pud);
1807
1808 if (needs_exec)
1809 new_pud = kvm_s2pud_mkexec(new_pud);
1810
1811 ret = stage2_set_pud_huge(kvm, memcache, fault_ipa, &new_pud);
1812 } else if (vma_pagesize == PMD_SIZE) {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001813 pmd_t new_pmd = kvm_pfn_pmd(pfn, mem_type);
1814
1815 new_pmd = kvm_pmd_mkhuge(new_pmd);
1816
Punit Agrawal3f58bf62018-12-11 17:10:34 +00001817 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001818 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001819
Punit Agrawal6396b852018-12-11 17:10:35 +00001820 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001821 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001822
Christoffer Dallad361f02012-11-01 17:14:45 +01001823 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1824 } else {
Punit Agrawalf8df7332018-12-11 17:10:36 +00001825 pte_t new_pte = kvm_pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001826
Christoffer Dallad361f02012-11-01 17:14:45 +01001827 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001828 new_pte = kvm_s2pte_mkwrite(new_pte);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001829 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001830 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001831
Punit Agrawal6396b852018-12-11 17:10:35 +00001832 if (needs_exec)
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001833 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001834
Mario Smarduch15a49a42015-01-15 15:58:58 -08001835 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001836 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001837
Christoffer Dall94f8e642013-01-20 18:28:12 -05001838out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001839 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001840 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001841 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001842 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001843}
1844
Marc Zyngieraeda9132015-03-12 18:16:52 +00001845/*
1846 * Resolve the access fault by making the page young again.
1847 * Note that because the faulting entry is guaranteed not to be
1848 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001849 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1850 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001851 */
1852static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1853{
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001854 pud_t *pud;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001855 pmd_t *pmd;
1856 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001857 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001858 bool pfn_valid = false;
1859
1860 trace_kvm_access_fault(fault_ipa);
1861
1862 spin_lock(&vcpu->kvm->mmu_lock);
1863
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001864 if (!stage2_get_leaf_entry(vcpu->kvm, fault_ipa, &pud, &pmd, &pte))
Marc Zyngieraeda9132015-03-12 18:16:52 +00001865 goto out;
1866
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001867 if (pud) { /* HugeTLB */
1868 *pud = kvm_s2pud_mkyoung(*pud);
1869 pfn = kvm_pud_pfn(*pud);
1870 pfn_valid = true;
1871 } else if (pmd) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001872 *pmd = pmd_mkyoung(*pmd);
1873 pfn = pmd_pfn(*pmd);
1874 pfn_valid = true;
Punit Agrawaleb3f06242018-12-11 17:10:39 +00001875 } else {
1876 *pte = pte_mkyoung(*pte); /* Just a page... */
1877 pfn = pte_pfn(*pte);
1878 pfn_valid = true;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001879 }
1880
Marc Zyngieraeda9132015-03-12 18:16:52 +00001881out:
1882 spin_unlock(&vcpu->kvm->mmu_lock);
1883 if (pfn_valid)
1884 kvm_set_pfn_accessed(pfn);
1885}
1886
Christoffer Dall94f8e642013-01-20 18:28:12 -05001887/**
1888 * kvm_handle_guest_abort - handles all 2nd stage aborts
1889 * @vcpu: the VCPU pointer
1890 * @run: the kvm_run structure
1891 *
1892 * Any abort that gets to the host is almost guaranteed to be caused by a
1893 * missing second stage translation table entry, which can mean that either the
1894 * guest simply needs more memory and we must allocate an appropriate page or it
1895 * can mean that the guest tried to access I/O memory, which is emulated by user
1896 * space. The distinction is based on the IPA causing the fault and whether this
1897 * memory region has been registered as standard RAM by user space.
1898 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001899int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1900{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001901 unsigned long fault_status;
1902 phys_addr_t fault_ipa;
1903 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001904 unsigned long hva;
1905 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001906 gfn_t gfn;
1907 int ret, idx;
1908
Tyler Baicar621f48e2017-06-21 12:17:14 -06001909 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1910
1911 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01001912 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06001913
James Morsebb428922017-07-18 13:37:41 +01001914 /* Synchronous External Abort? */
1915 if (kvm_vcpu_dabt_isextabt(vcpu)) {
1916 /*
1917 * For RAS the host kernel may handle this abort.
1918 * There is no need to pass the error into the guest.
1919 */
James Morse0db5e022019-01-29 18:48:49 +00001920 if (!kvm_handle_guest_sea(fault_ipa, kvm_vcpu_get_hsr(vcpu)))
Tyler Baicar621f48e2017-06-21 12:17:14 -06001921 return 1;
Tyler Baicar621f48e2017-06-21 12:17:14 -06001922
James Morsebb428922017-07-18 13:37:41 +01001923 if (unlikely(!is_iabt)) {
1924 kvm_inject_vabt(vcpu);
1925 return 1;
1926 }
Marc Zyngier40557102016-09-06 14:02:15 +01001927 }
1928
Marc Zyngier7393b592012-09-17 19:27:09 +01001929 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1930 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001931
1932 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00001933 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1934 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001935 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1936 kvm_vcpu_trap_get_class(vcpu),
1937 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1938 (unsigned long)kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001939 return -EFAULT;
1940 }
1941
1942 idx = srcu_read_lock(&vcpu->kvm->srcu);
1943
1944 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001945 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1946 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001947 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001948 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001949 if (is_iabt) {
1950 /* Prefetch Abort on I/O address */
Marc Zyngier6d674e22019-12-11 16:56:48 +00001951 ret = -ENOEXEC;
1952 goto out;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001953 }
1954
Marc Zyngiercfe39502012-12-12 14:42:09 +00001955 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001956 * Check for a cache maintenance operation. Since we
1957 * ended-up here, we know it is outside of any memory
1958 * slot. But we can't find out if that is for a device,
1959 * or if the guest is just being stupid. The only thing
1960 * we know for sure is that this range cannot be cached.
1961 *
1962 * So let's assume that the guest is just being
1963 * cautious, and skip the instruction.
1964 */
1965 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1966 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1967 ret = 1;
1968 goto out_unlock;
1969 }
1970
1971 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001972 * The IPA is reported as [MAX:12], so we need to
1973 * complement it with the bottom 12 bits from the
1974 * faulting VA. This is always 12 bits, irrespective
1975 * of the page size.
1976 */
1977 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -05001978 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001979 goto out_unlock;
1980 }
1981
Christoffer Dallc3058d52014-10-10 12:14:29 +02001982 /* Userspace should not be able to register out-of-bounds IPAs */
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01001983 VM_BUG_ON(fault_ipa >= kvm_phys_size(vcpu->kvm));
Christoffer Dallc3058d52014-10-10 12:14:29 +02001984
Marc Zyngieraeda9132015-03-12 18:16:52 +00001985 if (fault_status == FSC_ACCESS) {
1986 handle_access_fault(vcpu, fault_ipa);
1987 ret = 1;
1988 goto out_unlock;
1989 }
1990
Christoffer Dall98047882014-08-19 12:18:04 +02001991 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001992 if (ret == 0)
1993 ret = 1;
Marc Zyngier6d674e22019-12-11 16:56:48 +00001994out:
1995 if (ret == -ENOEXEC) {
1996 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
1997 ret = 1;
1998 }
Christoffer Dall94f8e642013-01-20 18:28:12 -05001999out_unlock:
2000 srcu_read_unlock(&vcpu->kvm->srcu, idx);
2001 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002002}
2003
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002004static int handle_hva_to_gpa(struct kvm *kvm,
2005 unsigned long start,
2006 unsigned long end,
2007 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002008 gpa_t gpa, u64 size,
2009 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002010 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002011{
2012 struct kvm_memslots *slots;
2013 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002014 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002015
2016 slots = kvm_memslots(kvm);
2017
2018 /* we only care about the pages that the guest sees */
2019 kvm_for_each_memslot(memslot, slots) {
2020 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002021 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002022
2023 hva_start = max(start, memslot->userspace_addr);
2024 hva_end = min(end, memslot->userspace_addr +
2025 (memslot->npages << PAGE_SHIFT));
2026 if (hva_start >= hva_end)
2027 continue;
2028
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002029 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
2030 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002031 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002032
2033 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002034}
2035
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002036static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002037{
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002038 unmap_stage2_range(kvm, gpa, size);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002039 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002040}
2041
Christoffer Dalld5d81842013-01-20 18:28:07 -05002042int kvm_unmap_hva_range(struct kvm *kvm,
2043 unsigned long start, unsigned long end)
2044{
2045 if (!kvm->arch.pgd)
2046 return 0;
2047
2048 trace_kvm_unmap_hva_range(start, end);
2049 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
2050 return 0;
2051}
2052
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002053static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002054{
2055 pte_t *pte = (pte_t *)data;
2056
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002057 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08002058 /*
2059 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
2060 * flag clear because MMU notifiers will have unmapped a huge PMD before
2061 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
2062 * therefore stage2_set_pte() never needs to clear out a huge PMD
2063 * through this calling path.
2064 */
2065 stage2_set_pte(kvm, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00002066 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002067}
2068
2069
Lan Tianyu748c0e32018-12-06 21:21:10 +08002070int kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
Christoffer Dalld5d81842013-01-20 18:28:07 -05002071{
2072 unsigned long end = hva + PAGE_SIZE;
Marc Zyngier694556d2018-08-23 09:58:27 +01002073 kvm_pfn_t pfn = pte_pfn(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002074 pte_t stage2_pte;
2075
2076 if (!kvm->arch.pgd)
Lan Tianyu748c0e32018-12-06 21:21:10 +08002077 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002078
2079 trace_kvm_set_spte_hva(hva);
Marc Zyngier694556d2018-08-23 09:58:27 +01002080
2081 /*
2082 * We've moved a page around, probably through CoW, so let's treat it
2083 * just like a translation fault and clean the cache to the PoC.
2084 */
2085 clean_dcache_guest_page(pfn, PAGE_SIZE);
Punit Agrawalf8df7332018-12-11 17:10:36 +00002086 stage2_pte = kvm_pfn_pte(pfn, PAGE_S2);
Christoffer Dalld5d81842013-01-20 18:28:07 -05002087 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
Lan Tianyu748c0e32018-12-06 21:21:10 +08002088
2089 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002090}
2091
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002092static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00002093{
Punit Agrawal35a63962018-12-11 17:10:40 +00002094 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00002095 pmd_t *pmd;
2096 pte_t *pte;
2097
Punit Agrawal35a63962018-12-11 17:10:40 +00002098 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
2099 if (!stage2_get_leaf_entry(kvm, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00002100 return 0;
2101
Punit Agrawal35a63962018-12-11 17:10:40 +00002102 if (pud)
2103 return stage2_pudp_test_and_clear_young(pud);
2104 else if (pmd)
Catalin Marinas06485052016-04-13 17:57:37 +01002105 return stage2_pmdp_test_and_clear_young(pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00002106 else
2107 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00002108}
2109
Suzuki K Poulose056aad62017-03-20 18:26:42 +00002110static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00002111{
Punit Agrawal35a63962018-12-11 17:10:40 +00002112 pud_t *pud;
Marc Zyngier35307b92015-03-12 18:16:51 +00002113 pmd_t *pmd;
2114 pte_t *pte;
2115
Punit Agrawal35a63962018-12-11 17:10:40 +00002116 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE && size != PUD_SIZE);
2117 if (!stage2_get_leaf_entry(kvm, gpa, &pud, &pmd, &pte))
Marc Zyngier35307b92015-03-12 18:16:51 +00002118 return 0;
2119
Punit Agrawal35a63962018-12-11 17:10:40 +00002120 if (pud)
2121 return kvm_s2pud_young(*pud);
2122 else if (pmd)
Marc Zyngier35307b92015-03-12 18:16:51 +00002123 return pmd_young(*pmd);
Punit Agrawal35a63962018-12-11 17:10:40 +00002124 else
Marc Zyngier35307b92015-03-12 18:16:51 +00002125 return pte_young(*pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00002126}
2127
2128int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
2129{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01002130 if (!kvm->arch.pgd)
2131 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00002132 trace_kvm_age_hva(start, end);
2133 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
2134}
2135
2136int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
2137{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01002138 if (!kvm->arch.pgd)
2139 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00002140 trace_kvm_test_age_hva(hva);
Gavin Shancf2d23e2020-01-21 16:56:59 +11002141 return handle_hva_to_gpa(kvm, hva, hva + PAGE_SIZE,
2142 kvm_test_age_hva_handler, NULL);
Marc Zyngier35307b92015-03-12 18:16:51 +00002143}
2144
Christoffer Dalld5d81842013-01-20 18:28:07 -05002145void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
2146{
2147 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
2148}
2149
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002150phys_addr_t kvm_mmu_get_httbr(void)
2151{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002152 if (__kvm_cpu_uses_extended_idmap())
2153 return virt_to_phys(merged_hyp_pgd);
2154 else
2155 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002156}
2157
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002158phys_addr_t kvm_get_idmap_vector(void)
2159{
2160 return hyp_idmap_vector;
2161}
2162
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002163static int kvm_map_idmap_text(pgd_t *pgd)
2164{
2165 int err;
2166
2167 /* Create the idmap in the boot page tables */
Kristina Martsenko98732d12018-01-15 15:23:49 +00002168 err = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002169 hyp_idmap_start, hyp_idmap_end,
2170 __phys_to_pfn(hyp_idmap_start),
2171 PAGE_HYP_EXEC);
2172 if (err)
2173 kvm_err("Failed to idmap %lx-%lx\n",
2174 hyp_idmap_start, hyp_idmap_end);
2175
2176 return err;
2177}
2178
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002179int kvm_mmu_init(void)
2180{
Marc Zyngier2fb41052013-04-12 19:12:03 +01002181 int err;
2182
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05002183 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
Marc Zyngier46fef152018-03-12 14:25:10 +00002184 hyp_idmap_start = ALIGN_DOWN(hyp_idmap_start, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05002185 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
Marc Zyngier46fef152018-03-12 14:25:10 +00002186 hyp_idmap_end = ALIGN(hyp_idmap_end, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05002187 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002188
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00002189 /*
2190 * We rely on the linker script to ensure at build time that the HYP
2191 * init code does not cross a page boundary.
2192 */
2193 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002194
Marc Zyngierb4ef0492017-12-03 20:04:51 +00002195 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
2196 kvm_debug("HYP VA range: %lx:%lx\n",
2197 kern_hyp_va(PAGE_OFFSET),
2198 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01002199
Marc Zyngier6c41a412016-06-30 18:40:51 +01002200 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngiered57cac2017-12-03 18:22:49 +00002201 hyp_idmap_start < kern_hyp_va((unsigned long)high_memory - 1) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01002202 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01002203 /*
2204 * The idmap page is intersecting with the VA space,
2205 * it is not safe to continue further.
2206 */
2207 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
2208 err = -EINVAL;
2209 goto out;
2210 }
2211
Christoffer Dall38f791a2014-10-10 12:14:28 +02002212 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002213 if (!hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05002214 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01002215 err = -ENOMEM;
2216 goto out;
2217 }
2218
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002219 if (__kvm_cpu_uses_extended_idmap()) {
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002220 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
2221 hyp_pgd_order);
2222 if (!boot_hyp_pgd) {
2223 kvm_err("Hyp boot PGD not allocated\n");
2224 err = -ENOMEM;
2225 goto out;
2226 }
2227
2228 err = kvm_map_idmap_text(boot_hyp_pgd);
2229 if (err)
2230 goto out;
2231
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002232 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
2233 if (!merged_hyp_pgd) {
2234 kvm_err("Failed to allocate extra HYP pgd\n");
2235 goto out;
2236 }
2237 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
2238 hyp_idmap_start);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002239 } else {
2240 err = kvm_map_idmap_text(hyp_pgd);
2241 if (err)
2242 goto out;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002243 }
2244
Marc Zyngiere3f019b2017-12-04 17:04:38 +00002245 io_map_base = hyp_idmap_start;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002246 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01002247out:
Marc Zyngier4f728272013-04-12 19:12:05 +01002248 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01002249 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002250}
Eric Augerdf6ce242014-06-06 11:10:23 +02002251
2252void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002253 const struct kvm_userspace_memory_region *mem,
Sean Christopherson9d4c1972020-02-18 13:07:24 -08002254 struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02002255 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02002256 enum kvm_mr_change change)
2257{
Mario Smarduchc6473552015-01-15 15:58:56 -08002258 /*
2259 * At this point memslot has been committed and there is an
2260 * allocated dirty_bitmap[], dirty pages will be be tracked while the
2261 * memory slot is write protected.
2262 */
2263 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
2264 kvm_mmu_wp_memory_region(kvm, mem->slot);
Eric Augerdf6ce242014-06-06 11:10:23 +02002265}
2266
2267int kvm_arch_prepare_memory_region(struct kvm *kvm,
2268 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002269 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02002270 enum kvm_mr_change change)
2271{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002272 hva_t hva = mem->userspace_addr;
2273 hva_t reg_end = hva + mem->memory_size;
2274 bool writable = !(mem->flags & KVM_MEM_READONLY);
2275 int ret = 0;
2276
Mario Smarduch15a49a42015-01-15 15:58:58 -08002277 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
2278 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002279 return 0;
2280
2281 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02002282 * Prevent userspace from creating a memory region outside of the IPA
2283 * space addressable by the KVM guest IPA space.
2284 */
2285 if (memslot->base_gfn + memslot->npages >=
Suzuki K Poulosee55cac52018-09-26 17:32:44 +01002286 (kvm_phys_size(kvm) >> PAGE_SHIFT))
Christoffer Dallc3058d52014-10-10 12:14:29 +02002287 return -EFAULT;
2288
Marc Zyngier72f31042017-03-16 18:20:50 +00002289 down_read(&current->mm->mmap_sem);
Christoffer Dallc3058d52014-10-10 12:14:29 +02002290 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002291 * A memory region could potentially cover multiple VMAs, and any holes
2292 * between them, so iterate over all of them to find out if we can map
2293 * any of them right now.
2294 *
2295 * +--------------------------------------------+
2296 * +---------------+----------------+ +----------------+
2297 * | : VMA 1 | VMA 2 | | VMA 3 : |
2298 * +---------------+----------------+ +----------------+
2299 * | memory region |
2300 * +--------------------------------------------+
2301 */
2302 do {
2303 struct vm_area_struct *vma = find_vma(current->mm, hva);
2304 hva_t vm_start, vm_end;
2305
2306 if (!vma || vma->vm_start >= reg_end)
2307 break;
2308
2309 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002310 * Take the intersection of this VMA with the memory region
2311 */
2312 vm_start = max(hva, vma->vm_start);
2313 vm_end = min(reg_end, vma->vm_end);
2314
2315 if (vma->vm_flags & VM_PFNMAP) {
2316 gpa_t gpa = mem->guest_phys_addr +
2317 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02002318 phys_addr_t pa;
2319
2320 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
2321 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002322
Mario Smarduch15a49a42015-01-15 15:58:58 -08002323 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00002324 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2325 ret = -EINVAL;
2326 goto out;
2327 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08002328
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002329 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
2330 vm_end - vm_start,
2331 writable);
2332 if (ret)
2333 break;
2334 }
2335 hva = vm_end;
2336 } while (hva < reg_end);
2337
Mario Smarduch15a49a42015-01-15 15:58:58 -08002338 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00002339 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08002340
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002341 spin_lock(&kvm->mmu_lock);
2342 if (ret)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002343 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002344 else
2345 stage2_flush_memslot(kvm, memslot);
2346 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00002347out:
2348 up_read(&current->mm->mmap_sem);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002349 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02002350}
2351
2352void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
2353 struct kvm_memory_slot *dont)
2354{
2355}
2356
Sean Christopherson15248252019-02-05 12:54:17 -08002357void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen)
Eric Augerdf6ce242014-06-06 11:10:23 +02002358{
2359}
2360
2361void kvm_arch_flush_shadow_all(struct kvm *kvm)
2362{
Suzuki K Poulose293f2932016-09-08 16:25:49 +01002363 kvm_free_stage2_pgd(kvm);
Eric Augerdf6ce242014-06-06 11:10:23 +02002364}
2365
2366void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2367 struct kvm_memory_slot *slot)
2368{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002369 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2370 phys_addr_t size = slot->npages << PAGE_SHIFT;
2371
2372 spin_lock(&kvm->mmu_lock);
2373 unmap_stage2_range(kvm, gpa, size);
2374 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002375}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002376
2377/*
2378 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2379 *
2380 * Main problems:
2381 * - S/W ops are local to a CPU (not broadcast)
2382 * - We have line migration behind our back (speculation)
2383 * - System caches don't support S/W at all (damn!)
2384 *
2385 * In the face of the above, the best we can do is to try and convert
2386 * S/W ops to VA ops. Because the guest is not allowed to infer the
2387 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2388 * which is a rather good thing for us.
2389 *
2390 * Also, it is only used when turning caches on/off ("The expected
2391 * usage of the cache maintenance instructions that operate by set/way
2392 * is associated with the cache maintenance instructions associated
2393 * with the powerdown and powerup of caches, if this is required by
2394 * the implementation.").
2395 *
2396 * We use the following policy:
2397 *
2398 * - If we trap a S/W operation, we enable VM trapping to detect
2399 * caches being turned on/off, and do a full clean.
2400 *
2401 * - We flush the caches on both caches being turned on and off.
2402 *
2403 * - Once the caches are enabled, we stop trapping VM ops.
2404 */
2405void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2406{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002407 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002408
2409 /*
2410 * If this is the first time we do a S/W operation
2411 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2412 * VM trapping.
2413 *
2414 * Otherwise, rely on the VM trapping to wait for the MMU +
2415 * Caches to be turned off. At that point, we'll be able to
2416 * clean the caches again.
2417 */
2418 if (!(hcr & HCR_TVM)) {
2419 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2420 vcpu_has_cache_enabled(vcpu));
2421 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002422 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002423 }
2424}
2425
2426void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2427{
2428 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2429
2430 /*
2431 * If switching the MMU+caches on, need to invalidate the caches.
2432 * If switching it off, need to clean the caches.
2433 * Clean + invalidate does the trick always.
2434 */
2435 if (now_enabled != was_enabled)
2436 stage2_flush_vm(vcpu->kvm);
2437
2438 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2439 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002440 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002441
2442 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2443}