blob: d8ea68b78e9cb59b6a8b31cdfcf6aa397deedcc7 [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2, as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -050018
19#include <linux/mman.h>
20#include <linux/kvm_host.h>
21#include <linux/io.h>
Christoffer Dallad361f02012-11-01 17:14:45 +010022#include <linux/hugetlb.h>
James Morse196f8782017-06-20 17:11:48 +010023#include <linux/sched/signal.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050024#include <trace/events/kvm.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050025#include <asm/pgalloc.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050026#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050027#include <asm/kvm_arm.h>
28#include <asm/kvm_mmu.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050029#include <asm/kvm_mmio.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050030#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050031#include <asm/kvm_emulate.h>
Marc Zyngier1e947ba2015-01-29 11:59:54 +000032#include <asm/virt.h>
Tyler Baicar621f48e2017-06-21 12:17:14 -060033#include <asm/system_misc.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050034
35#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050036
Marc Zyngier5a677ce2013-04-12 19:12:06 +010037static pgd_t *boot_hyp_pgd;
Marc Zyngier2fb41052013-04-12 19:12:03 +010038static pgd_t *hyp_pgd;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +000039static pgd_t *merged_hyp_pgd;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050040static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
41
Marc Zyngier5a677ce2013-04-12 19:12:06 +010042static unsigned long hyp_idmap_start;
43static unsigned long hyp_idmap_end;
44static phys_addr_t hyp_idmap_vector;
45
Marc Zyngiere3f019b2017-12-04 17:04:38 +000046static unsigned long io_map_base;
47
Suzuki K Poulose9163ee232016-03-22 17:01:21 +000048#define S2_PGD_SIZE (PTRS_PER_S2_PGD * sizeof(pgd_t))
Christoffer Dall38f791a2014-10-10 12:14:28 +020049#define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
Mark Salter5d4e08c2014-03-28 14:25:19 +000050
Mario Smarduch15a49a42015-01-15 15:58:58 -080051#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
52#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
53
54static bool memslot_is_logging(struct kvm_memory_slot *memslot)
55{
Mario Smarduch15a49a42015-01-15 15:58:58 -080056 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080057}
58
59/**
60 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
61 * @kvm: pointer to kvm structure.
62 *
63 * Interface to HYP function to flush all VM TLB entries
64 */
65void kvm_flush_remote_tlbs(struct kvm *kvm)
66{
67 kvm_call_hyp(__kvm_tlb_flush_vmid, kvm);
Mario Smarduch15a49a42015-01-15 15:58:58 -080068}
Christoffer Dallad361f02012-11-01 17:14:45 +010069
Marc Zyngier48762762013-01-28 15:27:00 +000070static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
Christoffer Dalld5d81842013-01-20 18:28:07 -050071{
Suzuki K Poulose8684e702016-03-22 17:14:25 +000072 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
Christoffer Dalld5d81842013-01-20 18:28:07 -050073}
74
Marc Zyngier363ef892014-12-19 16:48:06 +000075/*
76 * D-Cache management functions. They take the page table entries by
77 * value, as they are flushing the cache using the kernel mapping (or
78 * kmap on 32bit).
79 */
80static void kvm_flush_dcache_pte(pte_t pte)
81{
82 __kvm_flush_dcache_pte(pte);
83}
84
85static void kvm_flush_dcache_pmd(pmd_t pmd)
86{
87 __kvm_flush_dcache_pmd(pmd);
88}
89
90static void kvm_flush_dcache_pud(pud_t pud)
91{
92 __kvm_flush_dcache_pud(pud);
93}
94
Ard Biesheuvele6fab542015-11-10 15:11:20 +010095static bool kvm_is_device_pfn(unsigned long pfn)
96{
97 return !pfn_valid(pfn);
98}
99
Mario Smarduch15a49a42015-01-15 15:58:58 -0800100/**
101 * stage2_dissolve_pmd() - clear and flush huge PMD entry
102 * @kvm: pointer to kvm structure.
103 * @addr: IPA
104 * @pmd: pmd pointer for IPA
105 *
106 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs. Marks all
107 * pages in the range dirty.
108 */
109static void stage2_dissolve_pmd(struct kvm *kvm, phys_addr_t addr, pmd_t *pmd)
110{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000111 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800112 return;
113
114 pmd_clear(pmd);
115 kvm_tlb_flush_vmid_ipa(kvm, addr);
116 put_page(virt_to_page(pmd));
117}
118
Christoffer Dalld5d81842013-01-20 18:28:07 -0500119static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
120 int min, int max)
121{
122 void *page;
123
124 BUG_ON(max > KVM_NR_MEM_OBJS);
125 if (cache->nobjs >= min)
126 return 0;
127 while (cache->nobjs < max) {
128 page = (void *)__get_free_page(PGALLOC_GFP);
129 if (!page)
130 return -ENOMEM;
131 cache->objects[cache->nobjs++] = page;
132 }
133 return 0;
134}
135
136static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
137{
138 while (mc->nobjs)
139 free_page((unsigned long)mc->objects[--mc->nobjs]);
140}
141
142static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
143{
144 void *p;
145
146 BUG_ON(!mc || !mc->nobjs);
147 p = mc->objects[--mc->nobjs];
148 return p;
149}
150
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000151static void clear_stage2_pgd_entry(struct kvm *kvm, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100152{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000153 pud_t *pud_table __maybe_unused = stage2_pud_offset(pgd, 0UL);
154 stage2_pgd_clear(pgd);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200155 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000156 stage2_pud_free(pud_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200157 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100158}
159
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000160static void clear_stage2_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500161{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000162 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(pud, 0);
163 VM_BUG_ON(stage2_pud_huge(*pud));
164 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200165 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000166 stage2_pmd_free(pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100167 put_page(virt_to_page(pud));
168}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500169
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000170static void clear_stage2_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100171{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200172 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000173 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200174 pmd_clear(pmd);
175 kvm_tlb_flush_vmid_ipa(kvm, addr);
176 pte_free_kernel(NULL, pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100177 put_page(virt_to_page(pmd));
178}
179
Marc Zyngier363ef892014-12-19 16:48:06 +0000180/*
181 * Unmapping vs dcache management:
182 *
183 * If a guest maps certain memory pages as uncached, all writes will
184 * bypass the data cache and go directly to RAM. However, the CPUs
185 * can still speculate reads (not writes) and fill cache lines with
186 * data.
187 *
188 * Those cache lines will be *clean* cache lines though, so a
189 * clean+invalidate operation is equivalent to an invalidate
190 * operation, because no cache lines are marked dirty.
191 *
192 * Those clean cache lines could be filled prior to an uncached write
193 * by the guest, and the cache coherent IO subsystem would therefore
194 * end up writing old data to disk.
195 *
196 * This is why right after unmapping a page/section and invalidating
197 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
198 * the IO subsystem will never hit in the cache.
199 */
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000200static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200201 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100202{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200203 phys_addr_t start_addr = addr;
204 pte_t *pte, *start_pte;
205
206 start_pte = pte = pte_offset_kernel(pmd, addr);
207 do {
208 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000209 pte_t old_pte = *pte;
210
Christoffer Dall4f853a72014-05-09 23:31:31 +0200211 kvm_set_pte(pte, __pte(0));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200212 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000213
214 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100215 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000216 kvm_flush_dcache_pte(old_pte);
217
218 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200219 }
220 } while (pte++, addr += PAGE_SIZE, addr != end);
221
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000222 if (stage2_pte_table_empty(start_pte))
223 clear_stage2_pmd_entry(kvm, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500224}
225
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000226static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200227 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500228{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200229 phys_addr_t next, start_addr = addr;
230 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000231
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000232 start_pmd = pmd = stage2_pmd_offset(pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200233 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000234 next = stage2_pmd_addr_end(addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200235 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000236 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000237 pmd_t old_pmd = *pmd;
238
Christoffer Dall4f853a72014-05-09 23:31:31 +0200239 pmd_clear(pmd);
240 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000241
242 kvm_flush_dcache_pmd(old_pmd);
243
Christoffer Dall4f853a72014-05-09 23:31:31 +0200244 put_page(virt_to_page(pmd));
245 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000246 unmap_stage2_ptes(kvm, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100247 }
248 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200249 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100250
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000251 if (stage2_pmd_table_empty(start_pmd))
252 clear_stage2_pud_entry(kvm, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200253}
254
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000255static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200256 phys_addr_t addr, phys_addr_t end)
257{
258 phys_addr_t next, start_addr = addr;
259 pud_t *pud, *start_pud;
260
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000261 start_pud = pud = stage2_pud_offset(pgd, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200262 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000263 next = stage2_pud_addr_end(addr, end);
264 if (!stage2_pud_none(*pud)) {
265 if (stage2_pud_huge(*pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000266 pud_t old_pud = *pud;
267
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000268 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200269 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000270 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200271 put_page(virt_to_page(pud));
272 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000273 unmap_stage2_pmds(kvm, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200274 }
275 }
276 } while (pud++, addr = next, addr != end);
277
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000278 if (stage2_pud_table_empty(start_pud))
279 clear_stage2_pgd_entry(kvm, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200280}
281
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000282/**
283 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
284 * @kvm: The VM pointer
285 * @start: The intermediate physical base address of the range to unmap
286 * @size: The size of the area to unmap
287 *
288 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
289 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
290 * destroying the VM), otherwise another faulting VCPU may come in and mess
291 * with things behind our backs.
292 */
293static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200294{
295 pgd_t *pgd;
296 phys_addr_t addr = start, end = start + size;
297 phys_addr_t next;
298
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100299 assert_spin_locked(&kvm->mmu_lock);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000300 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200301 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100302 /*
303 * Make sure the page table is still active, as another thread
304 * could have possibly freed the page table, while we released
305 * the lock.
306 */
307 if (!READ_ONCE(kvm->arch.pgd))
308 break;
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000309 next = stage2_pgd_addr_end(addr, end);
310 if (!stage2_pgd_none(*pgd))
311 unmap_stage2_puds(kvm, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100312 /*
313 * If the range is too large, release the kvm->mmu_lock
314 * to prevent starvation and lockup detector warnings.
315 */
316 if (next != end)
317 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200318 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000319}
320
Marc Zyngier9d218a12014-01-15 12:50:23 +0000321static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
322 phys_addr_t addr, phys_addr_t end)
323{
324 pte_t *pte;
325
326 pte = pte_offset_kernel(pmd, addr);
327 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100328 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000329 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000330 } while (pte++, addr += PAGE_SIZE, addr != end);
331}
332
333static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
334 phys_addr_t addr, phys_addr_t end)
335{
336 pmd_t *pmd;
337 phys_addr_t next;
338
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000339 pmd = stage2_pmd_offset(pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000340 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000341 next = stage2_pmd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000342 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000343 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000344 kvm_flush_dcache_pmd(*pmd);
345 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000346 stage2_flush_ptes(kvm, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000347 }
348 } while (pmd++, addr = next, addr != end);
349}
350
351static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
352 phys_addr_t addr, phys_addr_t end)
353{
354 pud_t *pud;
355 phys_addr_t next;
356
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000357 pud = stage2_pud_offset(pgd, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000358 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000359 next = stage2_pud_addr_end(addr, end);
360 if (!stage2_pud_none(*pud)) {
361 if (stage2_pud_huge(*pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000362 kvm_flush_dcache_pud(*pud);
363 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000364 stage2_flush_pmds(kvm, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000365 }
366 } while (pud++, addr = next, addr != end);
367}
368
369static void stage2_flush_memslot(struct kvm *kvm,
370 struct kvm_memory_slot *memslot)
371{
372 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
373 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
374 phys_addr_t next;
375 pgd_t *pgd;
376
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000377 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000378 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000379 next = stage2_pgd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000380 stage2_flush_puds(kvm, pgd, addr, next);
381 } while (pgd++, addr = next, addr != end);
382}
383
384/**
385 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
386 * @kvm: The struct kvm pointer
387 *
388 * Go through the stage 2 page tables and invalidate any cache lines
389 * backing memory already mapped to the VM.
390 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000391static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000392{
393 struct kvm_memslots *slots;
394 struct kvm_memory_slot *memslot;
395 int idx;
396
397 idx = srcu_read_lock(&kvm->srcu);
398 spin_lock(&kvm->mmu_lock);
399
400 slots = kvm_memslots(kvm);
401 kvm_for_each_memslot(memslot, slots)
402 stage2_flush_memslot(kvm, memslot);
403
404 spin_unlock(&kvm->mmu_lock);
405 srcu_read_unlock(&kvm->srcu, idx);
406}
407
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000408static void clear_hyp_pgd_entry(pgd_t *pgd)
409{
410 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
411 pgd_clear(pgd);
412 pud_free(NULL, pud_table);
413 put_page(virt_to_page(pgd));
414}
415
416static void clear_hyp_pud_entry(pud_t *pud)
417{
418 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
419 VM_BUG_ON(pud_huge(*pud));
420 pud_clear(pud);
421 pmd_free(NULL, pmd_table);
422 put_page(virt_to_page(pud));
423}
424
425static void clear_hyp_pmd_entry(pmd_t *pmd)
426{
427 pte_t *pte_table = pte_offset_kernel(pmd, 0);
428 VM_BUG_ON(pmd_thp_or_huge(*pmd));
429 pmd_clear(pmd);
430 pte_free_kernel(NULL, pte_table);
431 put_page(virt_to_page(pmd));
432}
433
434static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
435{
436 pte_t *pte, *start_pte;
437
438 start_pte = pte = pte_offset_kernel(pmd, addr);
439 do {
440 if (!pte_none(*pte)) {
441 kvm_set_pte(pte, __pte(0));
442 put_page(virt_to_page(pte));
443 }
444 } while (pte++, addr += PAGE_SIZE, addr != end);
445
446 if (hyp_pte_table_empty(start_pte))
447 clear_hyp_pmd_entry(pmd);
448}
449
450static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
451{
452 phys_addr_t next;
453 pmd_t *pmd, *start_pmd;
454
455 start_pmd = pmd = pmd_offset(pud, addr);
456 do {
457 next = pmd_addr_end(addr, end);
458 /* Hyp doesn't use huge pmds */
459 if (!pmd_none(*pmd))
460 unmap_hyp_ptes(pmd, addr, next);
461 } while (pmd++, addr = next, addr != end);
462
463 if (hyp_pmd_table_empty(start_pmd))
464 clear_hyp_pud_entry(pud);
465}
466
467static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
468{
469 phys_addr_t next;
470 pud_t *pud, *start_pud;
471
472 start_pud = pud = pud_offset(pgd, addr);
473 do {
474 next = pud_addr_end(addr, end);
475 /* Hyp doesn't use huge puds */
476 if (!pud_none(*pud))
477 unmap_hyp_pmds(pud, addr, next);
478 } while (pud++, addr = next, addr != end);
479
480 if (hyp_pud_table_empty(start_pud))
481 clear_hyp_pgd_entry(pgd);
482}
483
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000484static unsigned int kvm_pgd_index(unsigned long addr, unsigned int ptrs_per_pgd)
485{
486 return (addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1);
487}
488
489static void __unmap_hyp_range(pgd_t *pgdp, unsigned long ptrs_per_pgd,
490 phys_addr_t start, u64 size)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000491{
492 pgd_t *pgd;
493 phys_addr_t addr = start, end = start + size;
494 phys_addr_t next;
495
496 /*
497 * We don't unmap anything from HYP, except at the hyp tear down.
498 * Hence, we don't have to invalidate the TLBs here.
499 */
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000500 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000501 do {
502 next = pgd_addr_end(addr, end);
503 if (!pgd_none(*pgd))
504 unmap_hyp_puds(pgd, addr, next);
505 } while (pgd++, addr = next, addr != end);
506}
507
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000508static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
509{
510 __unmap_hyp_range(pgdp, PTRS_PER_PGD, start, size);
511}
512
513static void unmap_hyp_idmap_range(pgd_t *pgdp, phys_addr_t start, u64 size)
514{
515 __unmap_hyp_range(pgdp, __kvm_idmap_ptrs_per_pgd(), start, size);
516}
517
Marc Zyngier000d3992013-03-05 02:43:17 +0000518/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100519 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000520 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100521 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
522 * therefore contains either mappings in the kernel memory area (above
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000523 * PAGE_OFFSET), or device mappings in the idmap range.
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100524 *
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000525 * boot_hyp_pgd should only map the idmap range, and is only used in
526 * the extended idmap case.
Marc Zyngier000d3992013-03-05 02:43:17 +0000527 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100528void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000529{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000530 pgd_t *id_pgd;
531
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100532 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100533
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000534 id_pgd = boot_hyp_pgd ? boot_hyp_pgd : hyp_pgd;
535
536 if (id_pgd) {
537 /* In case we never called hyp_mmu_init() */
538 if (!io_map_base)
539 io_map_base = hyp_idmap_start;
540 unmap_hyp_idmap_range(id_pgd, io_map_base,
541 hyp_idmap_start + PAGE_SIZE - io_map_base);
542 }
543
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100544 if (boot_hyp_pgd) {
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100545 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
546 boot_hyp_pgd = NULL;
547 }
548
Marc Zyngier4f728272013-04-12 19:12:05 +0100549 if (hyp_pgd) {
Marc Zyngier7839c672017-12-07 11:45:45 +0000550 unmap_hyp_range(hyp_pgd, kern_hyp_va(PAGE_OFFSET),
551 (uintptr_t)high_memory - PAGE_OFFSET);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100552
Christoffer Dall38f791a2014-10-10 12:14:28 +0200553 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100554 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100555 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000556 if (merged_hyp_pgd) {
557 clear_page(merged_hyp_pgd);
558 free_page((unsigned long)merged_hyp_pgd);
559 merged_hyp_pgd = NULL;
560 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100561
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500562 mutex_unlock(&kvm_hyp_pgd_mutex);
563}
564
565static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100566 unsigned long end, unsigned long pfn,
567 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500568{
569 pte_t *pte;
570 unsigned long addr;
571
Marc Zyngier3562c762013-04-12 19:12:02 +0100572 addr = start;
573 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100574 pte = pte_offset_kernel(pmd, addr);
575 kvm_set_pte(pte, pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100576 get_page(virt_to_page(pte));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100577 kvm_flush_dcache_to_poc(pte, sizeof(*pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100578 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100579 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500580}
581
582static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100583 unsigned long end, unsigned long pfn,
584 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500585{
586 pmd_t *pmd;
587 pte_t *pte;
588 unsigned long addr, next;
589
Marc Zyngier3562c762013-04-12 19:12:02 +0100590 addr = start;
591 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100592 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500593
594 BUG_ON(pmd_sect(*pmd));
595
596 if (pmd_none(*pmd)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100597 pte = pte_alloc_one_kernel(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500598 if (!pte) {
599 kvm_err("Cannot allocate Hyp pte\n");
600 return -ENOMEM;
601 }
602 pmd_populate_kernel(NULL, pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100603 get_page(virt_to_page(pmd));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100604 kvm_flush_dcache_to_poc(pmd, sizeof(*pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500605 }
606
607 next = pmd_addr_end(addr, end);
608
Marc Zyngier6060df82013-04-12 19:12:01 +0100609 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
610 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100611 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500612
613 return 0;
614}
615
Christoffer Dall38f791a2014-10-10 12:14:28 +0200616static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
617 unsigned long end, unsigned long pfn,
618 pgprot_t prot)
619{
620 pud_t *pud;
621 pmd_t *pmd;
622 unsigned long addr, next;
623 int ret;
624
625 addr = start;
626 do {
627 pud = pud_offset(pgd, addr);
628
629 if (pud_none_or_clear_bad(pud)) {
630 pmd = pmd_alloc_one(NULL, addr);
631 if (!pmd) {
632 kvm_err("Cannot allocate Hyp pmd\n");
633 return -ENOMEM;
634 }
635 pud_populate(NULL, pud, pmd);
636 get_page(virt_to_page(pud));
637 kvm_flush_dcache_to_poc(pud, sizeof(*pud));
638 }
639
640 next = pud_addr_end(addr, end);
641 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
642 if (ret)
643 return ret;
644 pfn += (next - addr) >> PAGE_SHIFT;
645 } while (addr = next, addr != end);
646
647 return 0;
648}
649
Kristina Martsenko98732d12018-01-15 15:23:49 +0000650static int __create_hyp_mappings(pgd_t *pgdp, unsigned long ptrs_per_pgd,
Marc Zyngier6060df82013-04-12 19:12:01 +0100651 unsigned long start, unsigned long end,
652 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500653{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500654 pgd_t *pgd;
655 pud_t *pud;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500656 unsigned long addr, next;
657 int err = 0;
658
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500659 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100660 addr = start & PAGE_MASK;
661 end = PAGE_ALIGN(end);
662 do {
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000663 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500664
Christoffer Dall38f791a2014-10-10 12:14:28 +0200665 if (pgd_none(*pgd)) {
666 pud = pud_alloc_one(NULL, addr);
667 if (!pud) {
668 kvm_err("Cannot allocate Hyp pud\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500669 err = -ENOMEM;
670 goto out;
671 }
Christoffer Dall38f791a2014-10-10 12:14:28 +0200672 pgd_populate(NULL, pgd, pud);
673 get_page(virt_to_page(pgd));
674 kvm_flush_dcache_to_poc(pgd, sizeof(*pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500675 }
676
677 next = pgd_addr_end(addr, end);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200678 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500679 if (err)
680 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100681 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100682 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500683out:
684 mutex_unlock(&kvm_hyp_pgd_mutex);
685 return err;
686}
687
Christoffer Dall40c27292013-11-15 13:14:12 -0800688static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
689{
690 if (!is_vmalloc_addr(kaddr)) {
691 BUG_ON(!virt_addr_valid(kaddr));
692 return __pa(kaddr);
693 } else {
694 return page_to_phys(vmalloc_to_page(kaddr)) +
695 offset_in_page(kaddr);
696 }
697}
698
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500699/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100700 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500701 * @from: The virtual kernel start address of the range
702 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100703 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500704 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100705 * The same virtual address as the kernel virtual address is also used
706 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
707 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500708 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100709int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500710{
Christoffer Dall40c27292013-11-15 13:14:12 -0800711 phys_addr_t phys_addr;
712 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100713 unsigned long start = kern_hyp_va((unsigned long)from);
714 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100715
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000716 if (is_kernel_in_hyp_mode())
717 return 0;
718
Christoffer Dall40c27292013-11-15 13:14:12 -0800719 start = start & PAGE_MASK;
720 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100721
Christoffer Dall40c27292013-11-15 13:14:12 -0800722 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
723 int err;
724
725 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Kristina Martsenko98732d12018-01-15 15:23:49 +0000726 err = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD,
727 virt_addr, virt_addr + PAGE_SIZE,
Christoffer Dall40c27292013-11-15 13:14:12 -0800728 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100729 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800730 if (err)
731 return err;
732 }
733
734 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500735}
736
737/**
Marc Zyngier807a3782017-12-04 16:26:09 +0000738 * create_hyp_io_mappings - Map IO into both kernel and HYP
Marc Zyngier6060df82013-04-12 19:12:01 +0100739 * @phys_addr: The physical start address which gets mapped
Marc Zyngier807a3782017-12-04 16:26:09 +0000740 * @size: Size of the region being mapped
741 * @kaddr: Kernel VA for this mapping
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000742 * @haddr: HYP VA for this mapping
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500743 */
Marc Zyngier807a3782017-12-04 16:26:09 +0000744int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000745 void __iomem **kaddr,
746 void __iomem **haddr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500747{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000748 pgd_t *pgd = hyp_pgd;
749 unsigned long base;
750 int ret = 0;
Marc Zyngier6060df82013-04-12 19:12:01 +0100751
Marc Zyngier807a3782017-12-04 16:26:09 +0000752 *kaddr = ioremap(phys_addr, size);
753 if (!*kaddr)
754 return -ENOMEM;
755
756 if (is_kernel_in_hyp_mode()) {
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000757 *haddr = *kaddr;
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000758 return 0;
Marc Zyngier807a3782017-12-04 16:26:09 +0000759 }
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000760
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000761 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier6060df82013-04-12 19:12:01 +0100762
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000763 /*
764 * This assumes that we we have enough space below the idmap
765 * page to allocate our VAs. If not, the check below will
766 * kick. A potential alternative would be to detect that
767 * overflow and switch to an allocation above the idmap.
768 *
769 * The allocated size is always a multiple of PAGE_SIZE.
770 */
771 size = PAGE_ALIGN(size + offset_in_page(phys_addr));
772 base = io_map_base - size;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000773
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000774 /*
775 * Verify that BIT(VA_BITS - 1) hasn't been flipped by
776 * allocating the new area, as it would indicate we've
777 * overflowed the idmap/IO address range.
778 */
779 if ((base ^ io_map_base) & BIT(VA_BITS - 1))
780 ret = -ENOMEM;
781 else
782 io_map_base = base;
783
784 mutex_unlock(&kvm_hyp_pgd_mutex);
785
786 if (ret)
787 goto out;
788
789 if (__kvm_cpu_uses_extended_idmap())
790 pgd = boot_hyp_pgd;
791
792 ret = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
793 base, base + size,
794 __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE);
795 if (ret)
796 goto out;
797
798 *haddr = (void __iomem *)base + offset_in_page(phys_addr);
799
800out:
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000801 if (ret) {
802 iounmap(*kaddr);
803 *kaddr = NULL;
804 return ret;
805 }
806
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000807 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500808}
809
Christoffer Dalld5d81842013-01-20 18:28:07 -0500810/**
811 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
812 * @kvm: The KVM struct pointer for the VM.
813 *
Vladimir Murzin9d4dc6882015-11-16 11:28:16 +0000814 * Allocates only the stage-2 HW PGD level table(s) (can support either full
815 * 40-bit input addresses or limited to 32-bit input addresses). Clears the
816 * allocated pages.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500817 *
818 * Note we don't need locking here as this is only called when the VM is
819 * created, which can only be done once.
820 */
821int kvm_alloc_stage2_pgd(struct kvm *kvm)
822{
823 pgd_t *pgd;
824
825 if (kvm->arch.pgd != NULL) {
826 kvm_err("kvm_arch already initialized?\n");
827 return -EINVAL;
828 }
829
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000830 /* Allocate the HW PGD, making sure that each page gets its own refcount */
831 pgd = alloc_pages_exact(S2_PGD_SIZE, GFP_KERNEL | __GFP_ZERO);
832 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000833 return -ENOMEM;
834
Christoffer Dalld5d81842013-01-20 18:28:07 -0500835 kvm->arch.pgd = pgd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500836 return 0;
837}
838
Christoffer Dall957db102014-11-27 10:35:03 +0100839static void stage2_unmap_memslot(struct kvm *kvm,
840 struct kvm_memory_slot *memslot)
841{
842 hva_t hva = memslot->userspace_addr;
843 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
844 phys_addr_t size = PAGE_SIZE * memslot->npages;
845 hva_t reg_end = hva + size;
846
847 /*
848 * A memory region could potentially cover multiple VMAs, and any holes
849 * between them, so iterate over all of them to find out if we should
850 * unmap any of them.
851 *
852 * +--------------------------------------------+
853 * +---------------+----------------+ +----------------+
854 * | : VMA 1 | VMA 2 | | VMA 3 : |
855 * +---------------+----------------+ +----------------+
856 * | memory region |
857 * +--------------------------------------------+
858 */
859 do {
860 struct vm_area_struct *vma = find_vma(current->mm, hva);
861 hva_t vm_start, vm_end;
862
863 if (!vma || vma->vm_start >= reg_end)
864 break;
865
866 /*
867 * Take the intersection of this VMA with the memory region
868 */
869 vm_start = max(hva, vma->vm_start);
870 vm_end = min(reg_end, vma->vm_end);
871
872 if (!(vma->vm_flags & VM_PFNMAP)) {
873 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
874 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
875 }
876 hva = vm_end;
877 } while (hva < reg_end);
878}
879
880/**
881 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
882 * @kvm: The struct kvm pointer
883 *
884 * Go through the memregions and unmap any reguler RAM
885 * backing memory already mapped to the VM.
886 */
887void stage2_unmap_vm(struct kvm *kvm)
888{
889 struct kvm_memslots *slots;
890 struct kvm_memory_slot *memslot;
891 int idx;
892
893 idx = srcu_read_lock(&kvm->srcu);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000894 down_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100895 spin_lock(&kvm->mmu_lock);
896
897 slots = kvm_memslots(kvm);
898 kvm_for_each_memslot(memslot, slots)
899 stage2_unmap_memslot(kvm, memslot);
900
901 spin_unlock(&kvm->mmu_lock);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000902 up_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100903 srcu_read_unlock(&kvm->srcu, idx);
904}
905
Christoffer Dalld5d81842013-01-20 18:28:07 -0500906/**
907 * kvm_free_stage2_pgd - free all stage-2 tables
908 * @kvm: The KVM struct pointer for the VM.
909 *
910 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
911 * underlying level-2 and level-3 tables before freeing the actual level-1 table
912 * and setting the struct pointer to NULL.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500913 */
914void kvm_free_stage2_pgd(struct kvm *kvm)
915{
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100916 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500917
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100918 spin_lock(&kvm->mmu_lock);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100919 if (kvm->arch.pgd) {
920 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
Suzuki K Poulose2952a602017-05-16 10:34:54 +0100921 pgd = READ_ONCE(kvm->arch.pgd);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100922 kvm->arch.pgd = NULL;
923 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100924 spin_unlock(&kvm->mmu_lock);
925
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000926 /* Free the HW pgd, one page at a time */
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100927 if (pgd)
928 free_pages_exact(pgd, S2_PGD_SIZE);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500929}
930
Christoffer Dall38f791a2014-10-10 12:14:28 +0200931static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
932 phys_addr_t addr)
933{
934 pgd_t *pgd;
935 pud_t *pud;
936
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000937 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
938 if (WARN_ON(stage2_pgd_none(*pgd))) {
Christoffer Dall38f791a2014-10-10 12:14:28 +0200939 if (!cache)
940 return NULL;
941 pud = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000942 stage2_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200943 get_page(virt_to_page(pgd));
944 }
945
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000946 return stage2_pud_offset(pgd, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200947}
948
Christoffer Dallad361f02012-11-01 17:14:45 +0100949static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
950 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500951{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500952 pud_t *pud;
953 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500954
Christoffer Dall38f791a2014-10-10 12:14:28 +0200955 pud = stage2_get_pud(kvm, cache, addr);
Marc Zyngierd6dbdd32017-06-05 19:17:18 +0100956 if (!pud)
957 return NULL;
958
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000959 if (stage2_pud_none(*pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500960 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +0100961 return NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500962 pmd = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000963 stage2_pud_populate(pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500964 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100965 }
966
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000967 return stage2_pmd_offset(pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +0100968}
Christoffer Dalld5d81842013-01-20 18:28:07 -0500969
Christoffer Dallad361f02012-11-01 17:14:45 +0100970static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
971 *cache, phys_addr_t addr, const pmd_t *new_pmd)
972{
973 pmd_t *pmd, old_pmd;
974
975 pmd = stage2_get_pmd(kvm, cache, addr);
976 VM_BUG_ON(!pmd);
977
978 /*
979 * Mapping in huge pages should only happen through a fault. If a
980 * page is merged into a transparent huge page, the individual
981 * subpages of that huge page should be unmapped through MMU
982 * notifiers before we get here.
983 *
984 * Merging of CompoundPages is not supported; they should become
985 * splitting first, unmapped, merged, and mapped back in on-demand.
986 */
987 VM_BUG_ON(pmd_present(*pmd) && pmd_pfn(*pmd) != pmd_pfn(*new_pmd));
988
989 old_pmd = *pmd;
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100990 if (pmd_present(old_pmd)) {
991 pmd_clear(pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100992 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100993 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +0100994 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100995 }
996
997 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100998 return 0;
999}
1000
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001001static bool stage2_is_exec(struct kvm *kvm, phys_addr_t addr)
1002{
1003 pmd_t *pmdp;
1004 pte_t *ptep;
1005
1006 pmdp = stage2_get_pmd(kvm, NULL, addr);
1007 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
1008 return false;
1009
1010 if (pmd_thp_or_huge(*pmdp))
1011 return kvm_s2pmd_exec(pmdp);
1012
1013 ptep = pte_offset_kernel(pmdp, addr);
1014 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
1015 return false;
1016
1017 return kvm_s2pte_exec(ptep);
1018}
1019
Christoffer Dallad361f02012-11-01 17:14:45 +01001020static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -08001021 phys_addr_t addr, const pte_t *new_pte,
1022 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +01001023{
1024 pmd_t *pmd;
1025 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001026 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
1027 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
1028
1029 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +01001030
Christoffer Dall38f791a2014-10-10 12:14:28 +02001031 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dallad361f02012-11-01 17:14:45 +01001032 pmd = stage2_get_pmd(kvm, cache, addr);
1033 if (!pmd) {
1034 /*
1035 * Ignore calls from kvm_set_spte_hva for unallocated
1036 * address ranges.
1037 */
1038 return 0;
1039 }
1040
Mario Smarduch15a49a42015-01-15 15:58:58 -08001041 /*
1042 * While dirty page logging - dissolve huge PMD, then continue on to
1043 * allocate page.
1044 */
1045 if (logging_active)
1046 stage2_dissolve_pmd(kvm, addr, pmd);
1047
Christoffer Dallad361f02012-11-01 17:14:45 +01001048 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -05001049 if (pmd_none(*pmd)) {
1050 if (!cache)
1051 return 0; /* ignore calls from kvm_set_spte_hva */
1052 pte = mmu_memory_cache_alloc(cache);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001053 pmd_populate_kernel(NULL, pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001054 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001055 }
1056
1057 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001058
1059 if (iomap && pte_present(*pte))
1060 return -EFAULT;
1061
1062 /* Create 2nd stage page table mapping - Level 3 */
1063 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001064 if (pte_present(old_pte)) {
1065 kvm_set_pte(pte, __pte(0));
Marc Zyngier48762762013-01-28 15:27:00 +00001066 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001067 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001068 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001069 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001070
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001071 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001072 return 0;
1073}
1074
Catalin Marinas06485052016-04-13 17:57:37 +01001075#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1076static int stage2_ptep_test_and_clear_young(pte_t *pte)
1077{
1078 if (pte_young(*pte)) {
1079 *pte = pte_mkold(*pte);
1080 return 1;
1081 }
1082 return 0;
1083}
1084#else
1085static int stage2_ptep_test_and_clear_young(pte_t *pte)
1086{
1087 return __ptep_test_and_clear_young(pte);
1088}
1089#endif
1090
1091static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1092{
1093 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1094}
1095
Christoffer Dalld5d81842013-01-20 18:28:07 -05001096/**
1097 * kvm_phys_addr_ioremap - map a device range to guest IPA
1098 *
1099 * @kvm: The KVM pointer
1100 * @guest_ipa: The IPA at which to insert the mapping
1101 * @pa: The physical address of the device
1102 * @size: The size of the mapping
1103 */
1104int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001105 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001106{
1107 phys_addr_t addr, end;
1108 int ret = 0;
1109 unsigned long pfn;
1110 struct kvm_mmu_memory_cache cache = { 0, };
1111
1112 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1113 pfn = __phys_to_pfn(pa);
1114
1115 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001116 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001117
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001118 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001119 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001120
Christoffer Dall38f791a2014-10-10 12:14:28 +02001121 ret = mmu_topup_memory_cache(&cache, KVM_MMU_CACHE_MIN_PAGES,
1122 KVM_NR_MEM_OBJS);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001123 if (ret)
1124 goto out;
1125 spin_lock(&kvm->mmu_lock);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001126 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1127 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001128 spin_unlock(&kvm->mmu_lock);
1129 if (ret)
1130 goto out;
1131
1132 pfn++;
1133 }
1134
1135out:
1136 mmu_free_memory_cache(&cache);
1137 return ret;
1138}
1139
Dan Williamsba049e92016-01-15 16:56:11 -08001140static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001141{
Dan Williamsba049e92016-01-15 16:56:11 -08001142 kvm_pfn_t pfn = *pfnp;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001143 gfn_t gfn = *ipap >> PAGE_SHIFT;
1144
Andrea Arcangeli127393f2016-05-05 16:22:20 -07001145 if (PageTransCompoundMap(pfn_to_page(pfn))) {
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001146 unsigned long mask;
1147 /*
1148 * The address we faulted on is backed by a transparent huge
1149 * page. However, because we map the compound huge page and
1150 * not the individual tail page, we need to transfer the
1151 * refcount to the head page. We have to be careful that the
1152 * THP doesn't start to split while we are adjusting the
1153 * refcounts.
1154 *
1155 * We are sure this doesn't happen, because mmu_notifier_retry
1156 * was successful and we are holding the mmu_lock, so if this
1157 * THP is trying to split, it will be blocked in the mmu
1158 * notifier before touching any of the pages, specifically
1159 * before being able to call __split_huge_page_refcount().
1160 *
1161 * We can therefore safely transfer the refcount from PG_tail
1162 * to PG_head and switch the pfn from a tail page to the head
1163 * page accordingly.
1164 */
1165 mask = PTRS_PER_PMD - 1;
1166 VM_BUG_ON((gfn & mask) != (pfn & mask));
1167 if (pfn & mask) {
1168 *ipap &= PMD_MASK;
1169 kvm_release_pfn_clean(pfn);
1170 pfn &= ~mask;
1171 kvm_get_pfn(pfn);
1172 *pfnp = pfn;
1173 }
1174
1175 return true;
1176 }
1177
1178 return false;
1179}
1180
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001181static bool kvm_is_write_fault(struct kvm_vcpu *vcpu)
1182{
1183 if (kvm_vcpu_trap_is_iabt(vcpu))
1184 return false;
1185
1186 return kvm_vcpu_dabt_iswrite(vcpu);
1187}
1188
Mario Smarduchc6473552015-01-15 15:58:56 -08001189/**
1190 * stage2_wp_ptes - write protect PMD range
1191 * @pmd: pointer to pmd entry
1192 * @addr: range start address
1193 * @end: range end address
1194 */
1195static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1196{
1197 pte_t *pte;
1198
1199 pte = pte_offset_kernel(pmd, addr);
1200 do {
1201 if (!pte_none(*pte)) {
1202 if (!kvm_s2pte_readonly(pte))
1203 kvm_set_s2pte_readonly(pte);
1204 }
1205 } while (pte++, addr += PAGE_SIZE, addr != end);
1206}
1207
1208/**
1209 * stage2_wp_pmds - write protect PUD range
1210 * @pud: pointer to pud entry
1211 * @addr: range start address
1212 * @end: range end address
1213 */
1214static void stage2_wp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
1215{
1216 pmd_t *pmd;
1217 phys_addr_t next;
1218
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001219 pmd = stage2_pmd_offset(pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001220
1221 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001222 next = stage2_pmd_addr_end(addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001223 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001224 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001225 if (!kvm_s2pmd_readonly(pmd))
1226 kvm_set_s2pmd_readonly(pmd);
1227 } else {
1228 stage2_wp_ptes(pmd, addr, next);
1229 }
1230 }
1231 } while (pmd++, addr = next, addr != end);
1232}
1233
1234/**
1235 * stage2_wp_puds - write protect PGD range
1236 * @pgd: pointer to pgd entry
1237 * @addr: range start address
1238 * @end: range end address
1239 *
1240 * Process PUD entries, for a huge PUD we cause a panic.
1241 */
1242static void stage2_wp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
1243{
1244 pud_t *pud;
1245 phys_addr_t next;
1246
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001247 pud = stage2_pud_offset(pgd, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001248 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001249 next = stage2_pud_addr_end(addr, end);
1250 if (!stage2_pud_none(*pud)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001251 /* TODO:PUD not supported, revisit later if supported */
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001252 BUG_ON(stage2_pud_huge(*pud));
Mario Smarduchc6473552015-01-15 15:58:56 -08001253 stage2_wp_pmds(pud, addr, next);
1254 }
1255 } while (pud++, addr = next, addr != end);
1256}
1257
1258/**
1259 * stage2_wp_range() - write protect stage2 memory region range
1260 * @kvm: The KVM pointer
1261 * @addr: Start address of range
1262 * @end: End address of range
1263 */
1264static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1265{
1266 pgd_t *pgd;
1267 phys_addr_t next;
1268
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001269 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001270 do {
1271 /*
1272 * Release kvm_mmu_lock periodically if the memory region is
1273 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001274 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1275 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001276 * will also starve other vCPUs. We have to also make sure
1277 * that the page tables are not freed while we released
1278 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001279 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001280 cond_resched_lock(&kvm->mmu_lock);
1281 if (!READ_ONCE(kvm->arch.pgd))
1282 break;
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001283 next = stage2_pgd_addr_end(addr, end);
1284 if (stage2_pgd_present(*pgd))
Mario Smarduchc6473552015-01-15 15:58:56 -08001285 stage2_wp_puds(pgd, addr, next);
1286 } while (pgd++, addr = next, addr != end);
1287}
1288
1289/**
1290 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1291 * @kvm: The KVM pointer
1292 * @slot: The memory slot to write protect
1293 *
1294 * Called to start logging dirty pages after memory region
1295 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
1296 * all present PMD and PTEs are write protected in the memory region.
1297 * Afterwards read of dirty page log can be called.
1298 *
1299 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1300 * serializing operations for VM memory regions.
1301 */
1302void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1303{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001304 struct kvm_memslots *slots = kvm_memslots(kvm);
1305 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Mario Smarduchc6473552015-01-15 15:58:56 -08001306 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1307 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1308
1309 spin_lock(&kvm->mmu_lock);
1310 stage2_wp_range(kvm, start, end);
1311 spin_unlock(&kvm->mmu_lock);
1312 kvm_flush_remote_tlbs(kvm);
1313}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001314
1315/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001316 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001317 * @kvm: The KVM pointer
1318 * @slot: The memory slot associated with mask
1319 * @gfn_offset: The gfn offset in memory slot
1320 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1321 * slot to be write protected
1322 *
1323 * Walks bits set in mask write protects the associated pte's. Caller must
1324 * acquire kvm_mmu_lock.
1325 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001326static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001327 struct kvm_memory_slot *slot,
1328 gfn_t gfn_offset, unsigned long mask)
1329{
1330 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1331 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1332 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1333
1334 stage2_wp_range(kvm, start, end);
1335}
Mario Smarduchc6473552015-01-15 15:58:56 -08001336
Kai Huang3b0f1d02015-01-28 10:54:23 +08001337/*
1338 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1339 * dirty pages.
1340 *
1341 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1342 * enable dirty logging for them.
1343 */
1344void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1345 struct kvm_memory_slot *slot,
1346 gfn_t gfn_offset, unsigned long mask)
1347{
1348 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1349}
1350
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001351static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001352{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001353 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001354}
1355
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001356static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001357{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001358 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001359}
1360
James Morse196f8782017-06-20 17:11:48 +01001361static void kvm_send_hwpoison_signal(unsigned long address,
1362 struct vm_area_struct *vma)
1363{
1364 siginfo_t info;
1365
1366 info.si_signo = SIGBUS;
1367 info.si_errno = 0;
1368 info.si_code = BUS_MCEERR_AR;
1369 info.si_addr = (void __user *)address;
1370
1371 if (is_vm_hugetlb_page(vma))
1372 info.si_addr_lsb = huge_page_shift(hstate_vma(vma));
1373 else
1374 info.si_addr_lsb = PAGE_SHIFT;
1375
1376 send_sig_info(SIGBUS, &info, current);
1377}
1378
Christoffer Dall94f8e642013-01-20 18:28:12 -05001379static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001380 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001381 unsigned long fault_status)
1382{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001383 int ret;
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001384 bool write_fault, exec_fault, writable, hugetlb = false, force_pte = false;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001385 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001386 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001387 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001388 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001389 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001390 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001391 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001392 bool logging_active = memslot_is_logging(memslot);
1393 unsigned long flags = 0;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001394
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001395 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001396 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1397 VM_BUG_ON(write_fault && exec_fault);
1398
1399 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001400 kvm_err("Unexpected L2 read permission error\n");
1401 return -EFAULT;
1402 }
1403
Christoffer Dallad361f02012-11-01 17:14:45 +01001404 /* Let's check if we will get back a huge page backed by hugetlbfs */
1405 down_read(&current->mm->mmap_sem);
1406 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001407 if (unlikely(!vma)) {
1408 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1409 up_read(&current->mm->mmap_sem);
1410 return -EFAULT;
1411 }
1412
Punit Agrawalc507bab2018-01-04 18:24:33 +00001413 if (vma_kernel_pagesize(vma) == PMD_SIZE && !logging_active) {
Christoffer Dallad361f02012-11-01 17:14:45 +01001414 hugetlb = true;
1415 gfn = (fault_ipa & PMD_MASK) >> PAGE_SHIFT;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001416 } else {
1417 /*
Marc Zyngier136d7372013-12-13 16:56:06 +00001418 * Pages belonging to memslots that don't have the same
1419 * alignment for userspace and IPA cannot be mapped using
1420 * block descriptors even if the pages belong to a THP for
1421 * the process, because the stage-2 block descriptor will
1422 * cover more than a single THP and we loose atomicity for
1423 * unmapping, updates, and splits of the THP or other pages
1424 * in the stage-2 block range.
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001425 */
Marc Zyngier136d7372013-12-13 16:56:06 +00001426 if ((memslot->userspace_addr & ~PMD_MASK) !=
1427 ((memslot->base_gfn << PAGE_SHIFT) & ~PMD_MASK))
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001428 force_pte = true;
Christoffer Dallad361f02012-11-01 17:14:45 +01001429 }
1430 up_read(&current->mm->mmap_sem);
1431
Christoffer Dall94f8e642013-01-20 18:28:12 -05001432 /* We need minimum second+third level pages */
Christoffer Dall38f791a2014-10-10 12:14:28 +02001433 ret = mmu_topup_memory_cache(memcache, KVM_MMU_CACHE_MIN_PAGES,
1434 KVM_NR_MEM_OBJS);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001435 if (ret)
1436 return ret;
1437
1438 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1439 /*
1440 * Ensure the read of mmu_notifier_seq happens before we call
1441 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1442 * the page we just got a reference to gets unmapped before we have a
1443 * chance to grab the mmu_lock, which ensure that if the page gets
1444 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1445 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1446 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1447 */
1448 smp_rmb();
1449
Christoffer Dallad361f02012-11-01 17:14:45 +01001450 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001451 if (pfn == KVM_PFN_ERR_HWPOISON) {
1452 kvm_send_hwpoison_signal(hva, vma);
1453 return 0;
1454 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001455 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001456 return -EFAULT;
1457
Mario Smarduch15a49a42015-01-15 15:58:58 -08001458 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001459 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001460 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1461 } else if (logging_active) {
1462 /*
1463 * Faults on pages in a memslot with logging enabled
1464 * should not be mapped with huge pages (it introduces churn
1465 * and performance degradation), so force a pte mapping.
1466 */
1467 force_pte = true;
1468 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1469
1470 /*
1471 * Only actually map the page as writable if this was a write
1472 * fault.
1473 */
1474 if (!write_fault)
1475 writable = false;
1476 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001477
Christoffer Dallad361f02012-11-01 17:14:45 +01001478 spin_lock(&kvm->mmu_lock);
1479 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001480 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001481
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001482 if (!hugetlb && !force_pte)
1483 hugetlb = transparent_hugepage_adjust(&pfn, &fault_ipa);
Christoffer Dallad361f02012-11-01 17:14:45 +01001484
1485 if (hugetlb) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001486 pmd_t new_pmd = pfn_pmd(pfn, mem_type);
Christoffer Dallad361f02012-11-01 17:14:45 +01001487 new_pmd = pmd_mkhuge(new_pmd);
1488 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001489 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001490 kvm_set_pfn_dirty(pfn);
1491 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001492
1493 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001494 clean_dcache_guest_page(pfn, PMD_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001495
1496 if (exec_fault) {
1497 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001498 invalidate_icache_guest_page(pfn, PMD_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001499 } else if (fault_status == FSC_PERM) {
1500 /* Preserve execute if XN was already cleared */
1501 if (stage2_is_exec(kvm, fault_ipa))
1502 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001503 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001504
Christoffer Dallad361f02012-11-01 17:14:45 +01001505 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1506 } else {
Kim Phillipsb8865762014-06-26 01:45:51 +01001507 pte_t new_pte = pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001508
Christoffer Dallad361f02012-11-01 17:14:45 +01001509 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001510 new_pte = kvm_s2pte_mkwrite(new_pte);
Christoffer Dallad361f02012-11-01 17:14:45 +01001511 kvm_set_pfn_dirty(pfn);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001512 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001513 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001514
1515 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001516 clean_dcache_guest_page(pfn, PAGE_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001517
1518 if (exec_fault) {
1519 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001520 invalidate_icache_guest_page(pfn, PAGE_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001521 } else if (fault_status == FSC_PERM) {
1522 /* Preserve execute if XN was already cleared */
1523 if (stage2_is_exec(kvm, fault_ipa))
1524 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001525 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001526
Mario Smarduch15a49a42015-01-15 15:58:58 -08001527 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001528 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001529
Christoffer Dall94f8e642013-01-20 18:28:12 -05001530out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001531 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001532 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001533 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001534 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001535}
1536
Marc Zyngieraeda9132015-03-12 18:16:52 +00001537/*
1538 * Resolve the access fault by making the page young again.
1539 * Note that because the faulting entry is guaranteed not to be
1540 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001541 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1542 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001543 */
1544static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1545{
1546 pmd_t *pmd;
1547 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001548 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001549 bool pfn_valid = false;
1550
1551 trace_kvm_access_fault(fault_ipa);
1552
1553 spin_lock(&vcpu->kvm->mmu_lock);
1554
1555 pmd = stage2_get_pmd(vcpu->kvm, NULL, fault_ipa);
1556 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1557 goto out;
1558
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001559 if (pmd_thp_or_huge(*pmd)) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001560 *pmd = pmd_mkyoung(*pmd);
1561 pfn = pmd_pfn(*pmd);
1562 pfn_valid = true;
1563 goto out;
1564 }
1565
1566 pte = pte_offset_kernel(pmd, fault_ipa);
1567 if (pte_none(*pte)) /* Nothing there either */
1568 goto out;
1569
1570 *pte = pte_mkyoung(*pte); /* Just a page... */
1571 pfn = pte_pfn(*pte);
1572 pfn_valid = true;
1573out:
1574 spin_unlock(&vcpu->kvm->mmu_lock);
1575 if (pfn_valid)
1576 kvm_set_pfn_accessed(pfn);
1577}
1578
Christoffer Dall94f8e642013-01-20 18:28:12 -05001579/**
1580 * kvm_handle_guest_abort - handles all 2nd stage aborts
1581 * @vcpu: the VCPU pointer
1582 * @run: the kvm_run structure
1583 *
1584 * Any abort that gets to the host is almost guaranteed to be caused by a
1585 * missing second stage translation table entry, which can mean that either the
1586 * guest simply needs more memory and we must allocate an appropriate page or it
1587 * can mean that the guest tried to access I/O memory, which is emulated by user
1588 * space. The distinction is based on the IPA causing the fault and whether this
1589 * memory region has been registered as standard RAM by user space.
1590 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001591int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1592{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001593 unsigned long fault_status;
1594 phys_addr_t fault_ipa;
1595 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001596 unsigned long hva;
1597 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001598 gfn_t gfn;
1599 int ret, idx;
1600
Tyler Baicar621f48e2017-06-21 12:17:14 -06001601 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1602
1603 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01001604 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06001605
James Morsebb428922017-07-18 13:37:41 +01001606 /* Synchronous External Abort? */
1607 if (kvm_vcpu_dabt_isextabt(vcpu)) {
1608 /*
1609 * For RAS the host kernel may handle this abort.
1610 * There is no need to pass the error into the guest.
1611 */
Tyler Baicar621f48e2017-06-21 12:17:14 -06001612 if (!handle_guest_sea(fault_ipa, kvm_vcpu_get_hsr(vcpu)))
1613 return 1;
Tyler Baicar621f48e2017-06-21 12:17:14 -06001614
James Morsebb428922017-07-18 13:37:41 +01001615 if (unlikely(!is_iabt)) {
1616 kvm_inject_vabt(vcpu);
1617 return 1;
1618 }
Marc Zyngier40557102016-09-06 14:02:15 +01001619 }
1620
Marc Zyngier7393b592012-09-17 19:27:09 +01001621 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1622 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001623
1624 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00001625 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1626 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001627 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1628 kvm_vcpu_trap_get_class(vcpu),
1629 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1630 (unsigned long)kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001631 return -EFAULT;
1632 }
1633
1634 idx = srcu_read_lock(&vcpu->kvm->srcu);
1635
1636 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001637 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1638 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001639 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001640 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001641 if (is_iabt) {
1642 /* Prefetch Abort on I/O address */
Marc Zyngier7393b592012-09-17 19:27:09 +01001643 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001644 ret = 1;
1645 goto out_unlock;
1646 }
1647
Marc Zyngiercfe39502012-12-12 14:42:09 +00001648 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001649 * Check for a cache maintenance operation. Since we
1650 * ended-up here, we know it is outside of any memory
1651 * slot. But we can't find out if that is for a device,
1652 * or if the guest is just being stupid. The only thing
1653 * we know for sure is that this range cannot be cached.
1654 *
1655 * So let's assume that the guest is just being
1656 * cautious, and skip the instruction.
1657 */
1658 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1659 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1660 ret = 1;
1661 goto out_unlock;
1662 }
1663
1664 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001665 * The IPA is reported as [MAX:12], so we need to
1666 * complement it with the bottom 12 bits from the
1667 * faulting VA. This is always 12 bits, irrespective
1668 * of the page size.
1669 */
1670 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -05001671 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001672 goto out_unlock;
1673 }
1674
Christoffer Dallc3058d52014-10-10 12:14:29 +02001675 /* Userspace should not be able to register out-of-bounds IPAs */
1676 VM_BUG_ON(fault_ipa >= KVM_PHYS_SIZE);
1677
Marc Zyngieraeda9132015-03-12 18:16:52 +00001678 if (fault_status == FSC_ACCESS) {
1679 handle_access_fault(vcpu, fault_ipa);
1680 ret = 1;
1681 goto out_unlock;
1682 }
1683
Christoffer Dall98047882014-08-19 12:18:04 +02001684 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001685 if (ret == 0)
1686 ret = 1;
1687out_unlock:
1688 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1689 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001690}
1691
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001692static int handle_hva_to_gpa(struct kvm *kvm,
1693 unsigned long start,
1694 unsigned long end,
1695 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001696 gpa_t gpa, u64 size,
1697 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001698 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001699{
1700 struct kvm_memslots *slots;
1701 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001702 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001703
1704 slots = kvm_memslots(kvm);
1705
1706 /* we only care about the pages that the guest sees */
1707 kvm_for_each_memslot(memslot, slots) {
1708 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001709 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001710
1711 hva_start = max(start, memslot->userspace_addr);
1712 hva_end = min(end, memslot->userspace_addr +
1713 (memslot->npages << PAGE_SHIFT));
1714 if (hva_start >= hva_end)
1715 continue;
1716
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001717 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
1718 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001719 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001720
1721 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001722}
1723
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001724static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001725{
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001726 unmap_stage2_range(kvm, gpa, size);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001727 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001728}
1729
1730int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1731{
1732 unsigned long end = hva + PAGE_SIZE;
1733
1734 if (!kvm->arch.pgd)
1735 return 0;
1736
1737 trace_kvm_unmap_hva(hva);
1738 handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL);
1739 return 0;
1740}
1741
1742int kvm_unmap_hva_range(struct kvm *kvm,
1743 unsigned long start, unsigned long end)
1744{
1745 if (!kvm->arch.pgd)
1746 return 0;
1747
1748 trace_kvm_unmap_hva_range(start, end);
1749 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
1750 return 0;
1751}
1752
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001753static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001754{
1755 pte_t *pte = (pte_t *)data;
1756
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001757 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001758 /*
1759 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1760 * flag clear because MMU notifiers will have unmapped a huge PMD before
1761 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1762 * therefore stage2_set_pte() never needs to clear out a huge PMD
1763 * through this calling path.
1764 */
1765 stage2_set_pte(kvm, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001766 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001767}
1768
1769
1770void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1771{
1772 unsigned long end = hva + PAGE_SIZE;
1773 pte_t stage2_pte;
1774
1775 if (!kvm->arch.pgd)
1776 return;
1777
1778 trace_kvm_set_spte_hva(hva);
1779 stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2);
1780 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
1781}
1782
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001783static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001784{
1785 pmd_t *pmd;
1786 pte_t *pte;
1787
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001788 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001789 pmd = stage2_get_pmd(kvm, NULL, gpa);
1790 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1791 return 0;
1792
Catalin Marinas06485052016-04-13 17:57:37 +01001793 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1794 return stage2_pmdp_test_and_clear_young(pmd);
Marc Zyngier35307b92015-03-12 18:16:51 +00001795
1796 pte = pte_offset_kernel(pmd, gpa);
1797 if (pte_none(*pte))
1798 return 0;
1799
Catalin Marinas06485052016-04-13 17:57:37 +01001800 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001801}
1802
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001803static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001804{
1805 pmd_t *pmd;
1806 pte_t *pte;
1807
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001808 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001809 pmd = stage2_get_pmd(kvm, NULL, gpa);
1810 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1811 return 0;
1812
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001813 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
Marc Zyngier35307b92015-03-12 18:16:51 +00001814 return pmd_young(*pmd);
1815
1816 pte = pte_offset_kernel(pmd, gpa);
1817 if (!pte_none(*pte)) /* Just a page... */
1818 return pte_young(*pte);
1819
1820 return 0;
1821}
1822
1823int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1824{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001825 if (!kvm->arch.pgd)
1826 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001827 trace_kvm_age_hva(start, end);
1828 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1829}
1830
1831int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1832{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001833 if (!kvm->arch.pgd)
1834 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001835 trace_kvm_test_age_hva(hva);
1836 return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
1837}
1838
Christoffer Dalld5d81842013-01-20 18:28:07 -05001839void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
1840{
1841 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
1842}
1843
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001844phys_addr_t kvm_mmu_get_httbr(void)
1845{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001846 if (__kvm_cpu_uses_extended_idmap())
1847 return virt_to_phys(merged_hyp_pgd);
1848 else
1849 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001850}
1851
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001852phys_addr_t kvm_get_idmap_vector(void)
1853{
1854 return hyp_idmap_vector;
1855}
1856
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001857static int kvm_map_idmap_text(pgd_t *pgd)
1858{
1859 int err;
1860
1861 /* Create the idmap in the boot page tables */
Kristina Martsenko98732d12018-01-15 15:23:49 +00001862 err = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001863 hyp_idmap_start, hyp_idmap_end,
1864 __phys_to_pfn(hyp_idmap_start),
1865 PAGE_HYP_EXEC);
1866 if (err)
1867 kvm_err("Failed to idmap %lx-%lx\n",
1868 hyp_idmap_start, hyp_idmap_end);
1869
1870 return err;
1871}
1872
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001873int kvm_mmu_init(void)
1874{
Marc Zyngier2fb41052013-04-12 19:12:03 +01001875 int err;
1876
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001877 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
Marc Zyngier46fef152018-03-12 14:25:10 +00001878 hyp_idmap_start = ALIGN_DOWN(hyp_idmap_start, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001879 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
Marc Zyngier46fef152018-03-12 14:25:10 +00001880 hyp_idmap_end = ALIGN(hyp_idmap_end, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001881 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001882
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00001883 /*
1884 * We rely on the linker script to ensure at build time that the HYP
1885 * init code does not cross a page boundary.
1886 */
1887 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001888
Marc Zyngierb4ef0492017-12-03 20:04:51 +00001889 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
1890 kvm_debug("HYP VA range: %lx:%lx\n",
1891 kern_hyp_va(PAGE_OFFSET),
1892 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01001893
Marc Zyngier6c41a412016-06-30 18:40:51 +01001894 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01001895 hyp_idmap_start < kern_hyp_va(~0UL) &&
1896 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01001897 /*
1898 * The idmap page is intersecting with the VA space,
1899 * it is not safe to continue further.
1900 */
1901 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
1902 err = -EINVAL;
1903 goto out;
1904 }
1905
Christoffer Dall38f791a2014-10-10 12:14:28 +02001906 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001907 if (!hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001908 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01001909 err = -ENOMEM;
1910 goto out;
1911 }
1912
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001913 if (__kvm_cpu_uses_extended_idmap()) {
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001914 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1915 hyp_pgd_order);
1916 if (!boot_hyp_pgd) {
1917 kvm_err("Hyp boot PGD not allocated\n");
1918 err = -ENOMEM;
1919 goto out;
1920 }
1921
1922 err = kvm_map_idmap_text(boot_hyp_pgd);
1923 if (err)
1924 goto out;
1925
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001926 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
1927 if (!merged_hyp_pgd) {
1928 kvm_err("Failed to allocate extra HYP pgd\n");
1929 goto out;
1930 }
1931 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
1932 hyp_idmap_start);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001933 } else {
1934 err = kvm_map_idmap_text(hyp_pgd);
1935 if (err)
1936 goto out;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001937 }
1938
Marc Zyngiere3f019b2017-12-04 17:04:38 +00001939 io_map_base = hyp_idmap_start;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001940 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01001941out:
Marc Zyngier4f728272013-04-12 19:12:05 +01001942 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01001943 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001944}
Eric Augerdf6ce242014-06-06 11:10:23 +02001945
1946void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001947 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001948 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001949 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02001950 enum kvm_mr_change change)
1951{
Mario Smarduchc6473552015-01-15 15:58:56 -08001952 /*
1953 * At this point memslot has been committed and there is an
1954 * allocated dirty_bitmap[], dirty pages will be be tracked while the
1955 * memory slot is write protected.
1956 */
1957 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
1958 kvm_mmu_wp_memory_region(kvm, mem->slot);
Eric Augerdf6ce242014-06-06 11:10:23 +02001959}
1960
1961int kvm_arch_prepare_memory_region(struct kvm *kvm,
1962 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001963 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001964 enum kvm_mr_change change)
1965{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001966 hva_t hva = mem->userspace_addr;
1967 hva_t reg_end = hva + mem->memory_size;
1968 bool writable = !(mem->flags & KVM_MEM_READONLY);
1969 int ret = 0;
1970
Mario Smarduch15a49a42015-01-15 15:58:58 -08001971 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
1972 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001973 return 0;
1974
1975 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02001976 * Prevent userspace from creating a memory region outside of the IPA
1977 * space addressable by the KVM guest IPA space.
1978 */
1979 if (memslot->base_gfn + memslot->npages >=
1980 (KVM_PHYS_SIZE >> PAGE_SHIFT))
1981 return -EFAULT;
1982
Marc Zyngier72f31042017-03-16 18:20:50 +00001983 down_read(&current->mm->mmap_sem);
Christoffer Dallc3058d52014-10-10 12:14:29 +02001984 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001985 * A memory region could potentially cover multiple VMAs, and any holes
1986 * between them, so iterate over all of them to find out if we can map
1987 * any of them right now.
1988 *
1989 * +--------------------------------------------+
1990 * +---------------+----------------+ +----------------+
1991 * | : VMA 1 | VMA 2 | | VMA 3 : |
1992 * +---------------+----------------+ +----------------+
1993 * | memory region |
1994 * +--------------------------------------------+
1995 */
1996 do {
1997 struct vm_area_struct *vma = find_vma(current->mm, hva);
1998 hva_t vm_start, vm_end;
1999
2000 if (!vma || vma->vm_start >= reg_end)
2001 break;
2002
2003 /*
2004 * Mapping a read-only VMA is only allowed if the
2005 * memory region is configured as read-only.
2006 */
2007 if (writable && !(vma->vm_flags & VM_WRITE)) {
2008 ret = -EPERM;
2009 break;
2010 }
2011
2012 /*
2013 * Take the intersection of this VMA with the memory region
2014 */
2015 vm_start = max(hva, vma->vm_start);
2016 vm_end = min(reg_end, vma->vm_end);
2017
2018 if (vma->vm_flags & VM_PFNMAP) {
2019 gpa_t gpa = mem->guest_phys_addr +
2020 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02002021 phys_addr_t pa;
2022
2023 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
2024 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002025
Mario Smarduch15a49a42015-01-15 15:58:58 -08002026 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00002027 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2028 ret = -EINVAL;
2029 goto out;
2030 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08002031
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002032 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
2033 vm_end - vm_start,
2034 writable);
2035 if (ret)
2036 break;
2037 }
2038 hva = vm_end;
2039 } while (hva < reg_end);
2040
Mario Smarduch15a49a42015-01-15 15:58:58 -08002041 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00002042 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08002043
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002044 spin_lock(&kvm->mmu_lock);
2045 if (ret)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002046 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002047 else
2048 stage2_flush_memslot(kvm, memslot);
2049 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00002050out:
2051 up_read(&current->mm->mmap_sem);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002052 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02002053}
2054
2055void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
2056 struct kvm_memory_slot *dont)
2057{
2058}
2059
2060int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
2061 unsigned long npages)
2062{
2063 return 0;
2064}
2065
Paolo Bonzini15f46012015-05-17 21:26:08 +02002066void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Eric Augerdf6ce242014-06-06 11:10:23 +02002067{
2068}
2069
2070void kvm_arch_flush_shadow_all(struct kvm *kvm)
2071{
Suzuki K Poulose293f2932016-09-08 16:25:49 +01002072 kvm_free_stage2_pgd(kvm);
Eric Augerdf6ce242014-06-06 11:10:23 +02002073}
2074
2075void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2076 struct kvm_memory_slot *slot)
2077{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002078 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2079 phys_addr_t size = slot->npages << PAGE_SHIFT;
2080
2081 spin_lock(&kvm->mmu_lock);
2082 unmap_stage2_range(kvm, gpa, size);
2083 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002084}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002085
2086/*
2087 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2088 *
2089 * Main problems:
2090 * - S/W ops are local to a CPU (not broadcast)
2091 * - We have line migration behind our back (speculation)
2092 * - System caches don't support S/W at all (damn!)
2093 *
2094 * In the face of the above, the best we can do is to try and convert
2095 * S/W ops to VA ops. Because the guest is not allowed to infer the
2096 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2097 * which is a rather good thing for us.
2098 *
2099 * Also, it is only used when turning caches on/off ("The expected
2100 * usage of the cache maintenance instructions that operate by set/way
2101 * is associated with the cache maintenance instructions associated
2102 * with the powerdown and powerup of caches, if this is required by
2103 * the implementation.").
2104 *
2105 * We use the following policy:
2106 *
2107 * - If we trap a S/W operation, we enable VM trapping to detect
2108 * caches being turned on/off, and do a full clean.
2109 *
2110 * - We flush the caches on both caches being turned on and off.
2111 *
2112 * - Once the caches are enabled, we stop trapping VM ops.
2113 */
2114void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2115{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002116 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002117
2118 /*
2119 * If this is the first time we do a S/W operation
2120 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2121 * VM trapping.
2122 *
2123 * Otherwise, rely on the VM trapping to wait for the MMU +
2124 * Caches to be turned off. At that point, we'll be able to
2125 * clean the caches again.
2126 */
2127 if (!(hcr & HCR_TVM)) {
2128 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2129 vcpu_has_cache_enabled(vcpu));
2130 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002131 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002132 }
2133}
2134
2135void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2136{
2137 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2138
2139 /*
2140 * If switching the MMU+caches on, need to invalidate the caches.
2141 * If switching it off, need to clean the caches.
2142 * Clean + invalidate does the trick always.
2143 */
2144 if (now_enabled != was_enabled)
2145 stage2_flush_vm(vcpu->kvm);
2146
2147 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2148 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002149 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002150
2151 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2152}