blob: ee7ce8fa4a12c6cea7b41588a43fcc82f8f05427 [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 Zyngier88dc25e82018-05-25 12:23:11 +0100180static inline void kvm_set_pte(pte_t *ptep, pte_t new_pte)
181{
182 WRITE_ONCE(*ptep, new_pte);
183 dsb(ishst);
184}
185
186static inline void kvm_set_pmd(pmd_t *pmdp, pmd_t new_pmd)
187{
188 WRITE_ONCE(*pmdp, new_pmd);
189 dsb(ishst);
190}
191
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100192static inline void kvm_pmd_populate(pmd_t *pmdp, pte_t *ptep)
193{
194 kvm_set_pmd(pmdp, kvm_mk_pmd(ptep));
195}
196
197static inline void kvm_pud_populate(pud_t *pudp, pmd_t *pmdp)
198{
199 WRITE_ONCE(*pudp, kvm_mk_pud(pmdp));
200 dsb(ishst);
201}
202
203static inline void kvm_pgd_populate(pgd_t *pgdp, pud_t *pudp)
204{
205 WRITE_ONCE(*pgdp, kvm_mk_pgd(pudp));
206 dsb(ishst);
207}
208
Marc Zyngier363ef892014-12-19 16:48:06 +0000209/*
210 * Unmapping vs dcache management:
211 *
212 * If a guest maps certain memory pages as uncached, all writes will
213 * bypass the data cache and go directly to RAM. However, the CPUs
214 * can still speculate reads (not writes) and fill cache lines with
215 * data.
216 *
217 * Those cache lines will be *clean* cache lines though, so a
218 * clean+invalidate operation is equivalent to an invalidate
219 * operation, because no cache lines are marked dirty.
220 *
221 * Those clean cache lines could be filled prior to an uncached write
222 * by the guest, and the cache coherent IO subsystem would therefore
223 * end up writing old data to disk.
224 *
225 * This is why right after unmapping a page/section and invalidating
226 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
227 * the IO subsystem will never hit in the cache.
Marc Zyngiere48d53a2018-04-06 12:27:28 +0100228 *
229 * This is all avoided on systems that have ARM64_HAS_STAGE2_FWB, as
230 * we then fully enforce cacheability of RAM, no matter what the guest
231 * does.
Marc Zyngier363ef892014-12-19 16:48:06 +0000232 */
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000233static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200234 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100235{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200236 phys_addr_t start_addr = addr;
237 pte_t *pte, *start_pte;
238
239 start_pte = pte = pte_offset_kernel(pmd, addr);
240 do {
241 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000242 pte_t old_pte = *pte;
243
Christoffer Dall4f853a72014-05-09 23:31:31 +0200244 kvm_set_pte(pte, __pte(0));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200245 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000246
247 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100248 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000249 kvm_flush_dcache_pte(old_pte);
250
251 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200252 }
253 } while (pte++, addr += PAGE_SIZE, addr != end);
254
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000255 if (stage2_pte_table_empty(start_pte))
256 clear_stage2_pmd_entry(kvm, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500257}
258
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000259static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200260 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500261{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200262 phys_addr_t next, start_addr = addr;
263 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000264
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000265 start_pmd = pmd = stage2_pmd_offset(pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200266 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000267 next = stage2_pmd_addr_end(addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200268 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000269 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000270 pmd_t old_pmd = *pmd;
271
Christoffer Dall4f853a72014-05-09 23:31:31 +0200272 pmd_clear(pmd);
273 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000274
275 kvm_flush_dcache_pmd(old_pmd);
276
Christoffer Dall4f853a72014-05-09 23:31:31 +0200277 put_page(virt_to_page(pmd));
278 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000279 unmap_stage2_ptes(kvm, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100280 }
281 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200282 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100283
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000284 if (stage2_pmd_table_empty(start_pmd))
285 clear_stage2_pud_entry(kvm, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200286}
287
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000288static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200289 phys_addr_t addr, phys_addr_t end)
290{
291 phys_addr_t next, start_addr = addr;
292 pud_t *pud, *start_pud;
293
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000294 start_pud = pud = stage2_pud_offset(pgd, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200295 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000296 next = stage2_pud_addr_end(addr, end);
297 if (!stage2_pud_none(*pud)) {
298 if (stage2_pud_huge(*pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000299 pud_t old_pud = *pud;
300
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000301 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200302 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000303 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200304 put_page(virt_to_page(pud));
305 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000306 unmap_stage2_pmds(kvm, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200307 }
308 }
309 } while (pud++, addr = next, addr != end);
310
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000311 if (stage2_pud_table_empty(start_pud))
312 clear_stage2_pgd_entry(kvm, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200313}
314
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000315/**
316 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
317 * @kvm: The VM pointer
318 * @start: The intermediate physical base address of the range to unmap
319 * @size: The size of the area to unmap
320 *
321 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
322 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
323 * destroying the VM), otherwise another faulting VCPU may come in and mess
324 * with things behind our backs.
325 */
326static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200327{
328 pgd_t *pgd;
329 phys_addr_t addr = start, end = start + size;
330 phys_addr_t next;
331
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100332 assert_spin_locked(&kvm->mmu_lock);
Jia He47a91b72018-05-21 11:05:30 +0800333 WARN_ON(size & ~PAGE_MASK);
334
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000335 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200336 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100337 /*
338 * Make sure the page table is still active, as another thread
339 * could have possibly freed the page table, while we released
340 * the lock.
341 */
342 if (!READ_ONCE(kvm->arch.pgd))
343 break;
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000344 next = stage2_pgd_addr_end(addr, end);
345 if (!stage2_pgd_none(*pgd))
346 unmap_stage2_puds(kvm, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100347 /*
348 * If the range is too large, release the kvm->mmu_lock
349 * to prevent starvation and lockup detector warnings.
350 */
351 if (next != end)
352 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200353 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000354}
355
Marc Zyngier9d218a12014-01-15 12:50:23 +0000356static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
357 phys_addr_t addr, phys_addr_t end)
358{
359 pte_t *pte;
360
361 pte = pte_offset_kernel(pmd, addr);
362 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100363 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000364 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000365 } while (pte++, addr += PAGE_SIZE, addr != end);
366}
367
368static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
369 phys_addr_t addr, phys_addr_t end)
370{
371 pmd_t *pmd;
372 phys_addr_t next;
373
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000374 pmd = stage2_pmd_offset(pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000375 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000376 next = stage2_pmd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000377 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000378 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000379 kvm_flush_dcache_pmd(*pmd);
380 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000381 stage2_flush_ptes(kvm, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000382 }
383 } while (pmd++, addr = next, addr != end);
384}
385
386static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
387 phys_addr_t addr, phys_addr_t end)
388{
389 pud_t *pud;
390 phys_addr_t next;
391
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000392 pud = stage2_pud_offset(pgd, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000393 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000394 next = stage2_pud_addr_end(addr, end);
395 if (!stage2_pud_none(*pud)) {
396 if (stage2_pud_huge(*pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000397 kvm_flush_dcache_pud(*pud);
398 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000399 stage2_flush_pmds(kvm, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000400 }
401 } while (pud++, addr = next, addr != end);
402}
403
404static void stage2_flush_memslot(struct kvm *kvm,
405 struct kvm_memory_slot *memslot)
406{
407 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
408 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
409 phys_addr_t next;
410 pgd_t *pgd;
411
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000412 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000413 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000414 next = stage2_pgd_addr_end(addr, end);
Suzuki K Poulosed2db7772018-09-26 17:32:37 +0100415 if (!stage2_pgd_none(*pgd))
416 stage2_flush_puds(kvm, pgd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000417 } while (pgd++, addr = next, addr != end);
418}
419
420/**
421 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
422 * @kvm: The struct kvm pointer
423 *
424 * Go through the stage 2 page tables and invalidate any cache lines
425 * backing memory already mapped to the VM.
426 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000427static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000428{
429 struct kvm_memslots *slots;
430 struct kvm_memory_slot *memslot;
431 int idx;
432
433 idx = srcu_read_lock(&kvm->srcu);
434 spin_lock(&kvm->mmu_lock);
435
436 slots = kvm_memslots(kvm);
437 kvm_for_each_memslot(memslot, slots)
438 stage2_flush_memslot(kvm, memslot);
439
440 spin_unlock(&kvm->mmu_lock);
441 srcu_read_unlock(&kvm->srcu, idx);
442}
443
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000444static void clear_hyp_pgd_entry(pgd_t *pgd)
445{
446 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
447 pgd_clear(pgd);
448 pud_free(NULL, pud_table);
449 put_page(virt_to_page(pgd));
450}
451
452static void clear_hyp_pud_entry(pud_t *pud)
453{
454 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
455 VM_BUG_ON(pud_huge(*pud));
456 pud_clear(pud);
457 pmd_free(NULL, pmd_table);
458 put_page(virt_to_page(pud));
459}
460
461static void clear_hyp_pmd_entry(pmd_t *pmd)
462{
463 pte_t *pte_table = pte_offset_kernel(pmd, 0);
464 VM_BUG_ON(pmd_thp_or_huge(*pmd));
465 pmd_clear(pmd);
466 pte_free_kernel(NULL, pte_table);
467 put_page(virt_to_page(pmd));
468}
469
470static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
471{
472 pte_t *pte, *start_pte;
473
474 start_pte = pte = pte_offset_kernel(pmd, addr);
475 do {
476 if (!pte_none(*pte)) {
477 kvm_set_pte(pte, __pte(0));
478 put_page(virt_to_page(pte));
479 }
480 } while (pte++, addr += PAGE_SIZE, addr != end);
481
482 if (hyp_pte_table_empty(start_pte))
483 clear_hyp_pmd_entry(pmd);
484}
485
486static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
487{
488 phys_addr_t next;
489 pmd_t *pmd, *start_pmd;
490
491 start_pmd = pmd = pmd_offset(pud, addr);
492 do {
493 next = pmd_addr_end(addr, end);
494 /* Hyp doesn't use huge pmds */
495 if (!pmd_none(*pmd))
496 unmap_hyp_ptes(pmd, addr, next);
497 } while (pmd++, addr = next, addr != end);
498
499 if (hyp_pmd_table_empty(start_pmd))
500 clear_hyp_pud_entry(pud);
501}
502
503static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
504{
505 phys_addr_t next;
506 pud_t *pud, *start_pud;
507
508 start_pud = pud = pud_offset(pgd, addr);
509 do {
510 next = pud_addr_end(addr, end);
511 /* Hyp doesn't use huge puds */
512 if (!pud_none(*pud))
513 unmap_hyp_pmds(pud, addr, next);
514 } while (pud++, addr = next, addr != end);
515
516 if (hyp_pud_table_empty(start_pud))
517 clear_hyp_pgd_entry(pgd);
518}
519
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000520static unsigned int kvm_pgd_index(unsigned long addr, unsigned int ptrs_per_pgd)
521{
522 return (addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1);
523}
524
525static void __unmap_hyp_range(pgd_t *pgdp, unsigned long ptrs_per_pgd,
526 phys_addr_t start, u64 size)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000527{
528 pgd_t *pgd;
529 phys_addr_t addr = start, end = start + size;
530 phys_addr_t next;
531
532 /*
533 * We don't unmap anything from HYP, except at the hyp tear down.
534 * Hence, we don't have to invalidate the TLBs here.
535 */
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000536 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000537 do {
538 next = pgd_addr_end(addr, end);
539 if (!pgd_none(*pgd))
540 unmap_hyp_puds(pgd, addr, next);
541 } while (pgd++, addr = next, addr != end);
542}
543
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000544static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
545{
546 __unmap_hyp_range(pgdp, PTRS_PER_PGD, start, size);
547}
548
549static void unmap_hyp_idmap_range(pgd_t *pgdp, phys_addr_t start, u64 size)
550{
551 __unmap_hyp_range(pgdp, __kvm_idmap_ptrs_per_pgd(), start, size);
552}
553
Marc Zyngier000d3992013-03-05 02:43:17 +0000554/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100555 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000556 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100557 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
558 * therefore contains either mappings in the kernel memory area (above
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000559 * PAGE_OFFSET), or device mappings in the idmap range.
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100560 *
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000561 * boot_hyp_pgd should only map the idmap range, and is only used in
562 * the extended idmap case.
Marc Zyngier000d3992013-03-05 02:43:17 +0000563 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100564void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000565{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000566 pgd_t *id_pgd;
567
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100568 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100569
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000570 id_pgd = boot_hyp_pgd ? boot_hyp_pgd : hyp_pgd;
571
572 if (id_pgd) {
573 /* In case we never called hyp_mmu_init() */
574 if (!io_map_base)
575 io_map_base = hyp_idmap_start;
576 unmap_hyp_idmap_range(id_pgd, io_map_base,
577 hyp_idmap_start + PAGE_SIZE - io_map_base);
578 }
579
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100580 if (boot_hyp_pgd) {
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100581 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
582 boot_hyp_pgd = NULL;
583 }
584
Marc Zyngier4f728272013-04-12 19:12:05 +0100585 if (hyp_pgd) {
Marc Zyngier7839c672017-12-07 11:45:45 +0000586 unmap_hyp_range(hyp_pgd, kern_hyp_va(PAGE_OFFSET),
587 (uintptr_t)high_memory - PAGE_OFFSET);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100588
Christoffer Dall38f791a2014-10-10 12:14:28 +0200589 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100590 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100591 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000592 if (merged_hyp_pgd) {
593 clear_page(merged_hyp_pgd);
594 free_page((unsigned long)merged_hyp_pgd);
595 merged_hyp_pgd = NULL;
596 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100597
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500598 mutex_unlock(&kvm_hyp_pgd_mutex);
599}
600
601static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100602 unsigned long end, unsigned long pfn,
603 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500604{
605 pte_t *pte;
606 unsigned long addr;
607
Marc Zyngier3562c762013-04-12 19:12:02 +0100608 addr = start;
609 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100610 pte = pte_offset_kernel(pmd, addr);
611 kvm_set_pte(pte, pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100612 get_page(virt_to_page(pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100613 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100614 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500615}
616
617static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100618 unsigned long end, unsigned long pfn,
619 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500620{
621 pmd_t *pmd;
622 pte_t *pte;
623 unsigned long addr, next;
624
Marc Zyngier3562c762013-04-12 19:12:02 +0100625 addr = start;
626 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100627 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500628
629 BUG_ON(pmd_sect(*pmd));
630
631 if (pmd_none(*pmd)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100632 pte = pte_alloc_one_kernel(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500633 if (!pte) {
634 kvm_err("Cannot allocate Hyp pte\n");
635 return -ENOMEM;
636 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100637 kvm_pmd_populate(pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100638 get_page(virt_to_page(pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500639 }
640
641 next = pmd_addr_end(addr, end);
642
Marc Zyngier6060df82013-04-12 19:12:01 +0100643 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
644 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100645 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500646
647 return 0;
648}
649
Christoffer Dall38f791a2014-10-10 12:14:28 +0200650static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
651 unsigned long end, unsigned long pfn,
652 pgprot_t prot)
653{
654 pud_t *pud;
655 pmd_t *pmd;
656 unsigned long addr, next;
657 int ret;
658
659 addr = start;
660 do {
661 pud = pud_offset(pgd, addr);
662
663 if (pud_none_or_clear_bad(pud)) {
664 pmd = pmd_alloc_one(NULL, addr);
665 if (!pmd) {
666 kvm_err("Cannot allocate Hyp pmd\n");
667 return -ENOMEM;
668 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100669 kvm_pud_populate(pud, pmd);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200670 get_page(virt_to_page(pud));
Christoffer Dall38f791a2014-10-10 12:14:28 +0200671 }
672
673 next = pud_addr_end(addr, end);
674 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
675 if (ret)
676 return ret;
677 pfn += (next - addr) >> PAGE_SHIFT;
678 } while (addr = next, addr != end);
679
680 return 0;
681}
682
Kristina Martsenko98732d12018-01-15 15:23:49 +0000683static int __create_hyp_mappings(pgd_t *pgdp, unsigned long ptrs_per_pgd,
Marc Zyngier6060df82013-04-12 19:12:01 +0100684 unsigned long start, unsigned long end,
685 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500686{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500687 pgd_t *pgd;
688 pud_t *pud;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500689 unsigned long addr, next;
690 int err = 0;
691
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500692 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100693 addr = start & PAGE_MASK;
694 end = PAGE_ALIGN(end);
695 do {
Marc Zyngier3ddd4552018-03-14 15:17:33 +0000696 pgd = pgdp + kvm_pgd_index(addr, ptrs_per_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500697
Christoffer Dall38f791a2014-10-10 12:14:28 +0200698 if (pgd_none(*pgd)) {
699 pud = pud_alloc_one(NULL, addr);
700 if (!pud) {
701 kvm_err("Cannot allocate Hyp pud\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500702 err = -ENOMEM;
703 goto out;
704 }
Marc Zyngier0db9dd82018-06-27 15:51:05 +0100705 kvm_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200706 get_page(virt_to_page(pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500707 }
708
709 next = pgd_addr_end(addr, end);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200710 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500711 if (err)
712 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100713 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100714 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500715out:
716 mutex_unlock(&kvm_hyp_pgd_mutex);
717 return err;
718}
719
Christoffer Dall40c27292013-11-15 13:14:12 -0800720static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
721{
722 if (!is_vmalloc_addr(kaddr)) {
723 BUG_ON(!virt_addr_valid(kaddr));
724 return __pa(kaddr);
725 } else {
726 return page_to_phys(vmalloc_to_page(kaddr)) +
727 offset_in_page(kaddr);
728 }
729}
730
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500731/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100732 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500733 * @from: The virtual kernel start address of the range
734 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100735 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500736 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100737 * The same virtual address as the kernel virtual address is also used
738 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
739 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500740 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100741int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500742{
Christoffer Dall40c27292013-11-15 13:14:12 -0800743 phys_addr_t phys_addr;
744 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100745 unsigned long start = kern_hyp_va((unsigned long)from);
746 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100747
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000748 if (is_kernel_in_hyp_mode())
749 return 0;
750
Christoffer Dall40c27292013-11-15 13:14:12 -0800751 start = start & PAGE_MASK;
752 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100753
Christoffer Dall40c27292013-11-15 13:14:12 -0800754 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
755 int err;
756
757 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Kristina Martsenko98732d12018-01-15 15:23:49 +0000758 err = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD,
759 virt_addr, virt_addr + PAGE_SIZE,
Christoffer Dall40c27292013-11-15 13:14:12 -0800760 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100761 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800762 if (err)
763 return err;
764 }
765
766 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500767}
768
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000769static int __create_hyp_private_mapping(phys_addr_t phys_addr, size_t size,
770 unsigned long *haddr, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500771{
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000772 pgd_t *pgd = hyp_pgd;
773 unsigned long base;
774 int ret = 0;
Marc Zyngier6060df82013-04-12 19:12:01 +0100775
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000776 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier6060df82013-04-12 19:12:01 +0100777
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000778 /*
779 * This assumes that we we have enough space below the idmap
780 * page to allocate our VAs. If not, the check below will
781 * kick. A potential alternative would be to detect that
782 * overflow and switch to an allocation above the idmap.
783 *
784 * The allocated size is always a multiple of PAGE_SIZE.
785 */
786 size = PAGE_ALIGN(size + offset_in_page(phys_addr));
787 base = io_map_base - size;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000788
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000789 /*
790 * Verify that BIT(VA_BITS - 1) hasn't been flipped by
791 * allocating the new area, as it would indicate we've
792 * overflowed the idmap/IO address range.
793 */
794 if ((base ^ io_map_base) & BIT(VA_BITS - 1))
795 ret = -ENOMEM;
796 else
797 io_map_base = base;
798
799 mutex_unlock(&kvm_hyp_pgd_mutex);
800
801 if (ret)
802 goto out;
803
804 if (__kvm_cpu_uses_extended_idmap())
805 pgd = boot_hyp_pgd;
806
807 ret = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
808 base, base + size,
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000809 __phys_to_pfn(phys_addr), prot);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000810 if (ret)
811 goto out;
812
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000813 *haddr = base + offset_in_page(phys_addr);
Marc Zyngiere3f019b2017-12-04 17:04:38 +0000814
815out:
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000816 return ret;
817}
818
819/**
820 * create_hyp_io_mappings - Map IO into both kernel and HYP
821 * @phys_addr: The physical start address which gets mapped
822 * @size: Size of the region being mapped
823 * @kaddr: Kernel VA for this mapping
824 * @haddr: HYP VA for this mapping
825 */
826int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
827 void __iomem **kaddr,
828 void __iomem **haddr)
829{
830 unsigned long addr;
831 int ret;
832
833 *kaddr = ioremap(phys_addr, size);
834 if (!*kaddr)
835 return -ENOMEM;
836
837 if (is_kernel_in_hyp_mode()) {
838 *haddr = *kaddr;
839 return 0;
840 }
841
842 ret = __create_hyp_private_mapping(phys_addr, size,
843 &addr, PAGE_HYP_DEVICE);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000844 if (ret) {
845 iounmap(*kaddr);
846 *kaddr = NULL;
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000847 *haddr = NULL;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000848 return ret;
849 }
850
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000851 *haddr = (void __iomem *)addr;
852 return 0;
853}
854
855/**
856 * create_hyp_exec_mappings - Map an executable range into HYP
857 * @phys_addr: The physical start address which gets mapped
858 * @size: Size of the region being mapped
859 * @haddr: HYP VA for this mapping
860 */
861int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size,
862 void **haddr)
863{
864 unsigned long addr;
865 int ret;
866
867 BUG_ON(is_kernel_in_hyp_mode());
868
869 ret = __create_hyp_private_mapping(phys_addr, size,
870 &addr, PAGE_HYP_EXEC);
871 if (ret) {
872 *haddr = NULL;
873 return ret;
874 }
875
876 *haddr = (void *)addr;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000877 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500878}
879
Christoffer Dalld5d81842013-01-20 18:28:07 -0500880/**
881 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
882 * @kvm: The KVM struct pointer for the VM.
883 *
Vladimir Murzin9d4dc6882015-11-16 11:28:16 +0000884 * Allocates only the stage-2 HW PGD level table(s) (can support either full
885 * 40-bit input addresses or limited to 32-bit input addresses). Clears the
886 * allocated pages.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500887 *
888 * Note we don't need locking here as this is only called when the VM is
889 * created, which can only be done once.
890 */
891int kvm_alloc_stage2_pgd(struct kvm *kvm)
892{
893 pgd_t *pgd;
894
895 if (kvm->arch.pgd != NULL) {
896 kvm_err("kvm_arch already initialized?\n");
897 return -EINVAL;
898 }
899
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000900 /* Allocate the HW PGD, making sure that each page gets its own refcount */
901 pgd = alloc_pages_exact(S2_PGD_SIZE, GFP_KERNEL | __GFP_ZERO);
902 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000903 return -ENOMEM;
904
Christoffer Dalld5d81842013-01-20 18:28:07 -0500905 kvm->arch.pgd = pgd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500906 return 0;
907}
908
Christoffer Dall957db102014-11-27 10:35:03 +0100909static void stage2_unmap_memslot(struct kvm *kvm,
910 struct kvm_memory_slot *memslot)
911{
912 hva_t hva = memslot->userspace_addr;
913 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
914 phys_addr_t size = PAGE_SIZE * memslot->npages;
915 hva_t reg_end = hva + size;
916
917 /*
918 * A memory region could potentially cover multiple VMAs, and any holes
919 * between them, so iterate over all of them to find out if we should
920 * unmap any of them.
921 *
922 * +--------------------------------------------+
923 * +---------------+----------------+ +----------------+
924 * | : VMA 1 | VMA 2 | | VMA 3 : |
925 * +---------------+----------------+ +----------------+
926 * | memory region |
927 * +--------------------------------------------+
928 */
929 do {
930 struct vm_area_struct *vma = find_vma(current->mm, hva);
931 hva_t vm_start, vm_end;
932
933 if (!vma || vma->vm_start >= reg_end)
934 break;
935
936 /*
937 * Take the intersection of this VMA with the memory region
938 */
939 vm_start = max(hva, vma->vm_start);
940 vm_end = min(reg_end, vma->vm_end);
941
942 if (!(vma->vm_flags & VM_PFNMAP)) {
943 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
944 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
945 }
946 hva = vm_end;
947 } while (hva < reg_end);
948}
949
950/**
951 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
952 * @kvm: The struct kvm pointer
953 *
954 * Go through the memregions and unmap any reguler RAM
955 * backing memory already mapped to the VM.
956 */
957void stage2_unmap_vm(struct kvm *kvm)
958{
959 struct kvm_memslots *slots;
960 struct kvm_memory_slot *memslot;
961 int idx;
962
963 idx = srcu_read_lock(&kvm->srcu);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000964 down_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100965 spin_lock(&kvm->mmu_lock);
966
967 slots = kvm_memslots(kvm);
968 kvm_for_each_memslot(memslot, slots)
969 stage2_unmap_memslot(kvm, memslot);
970
971 spin_unlock(&kvm->mmu_lock);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000972 up_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100973 srcu_read_unlock(&kvm->srcu, idx);
974}
975
Christoffer Dalld5d81842013-01-20 18:28:07 -0500976/**
977 * kvm_free_stage2_pgd - free all stage-2 tables
978 * @kvm: The KVM struct pointer for the VM.
979 *
980 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
981 * underlying level-2 and level-3 tables before freeing the actual level-1 table
982 * and setting the struct pointer to NULL.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500983 */
984void kvm_free_stage2_pgd(struct kvm *kvm)
985{
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100986 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500987
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100988 spin_lock(&kvm->mmu_lock);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100989 if (kvm->arch.pgd) {
990 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
Suzuki K Poulose2952a602017-05-16 10:34:54 +0100991 pgd = READ_ONCE(kvm->arch.pgd);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100992 kvm->arch.pgd = NULL;
993 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100994 spin_unlock(&kvm->mmu_lock);
995
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000996 /* Free the HW pgd, one page at a time */
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100997 if (pgd)
998 free_pages_exact(pgd, S2_PGD_SIZE);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500999}
1000
Christoffer Dall38f791a2014-10-10 12:14:28 +02001001static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
1002 phys_addr_t addr)
1003{
1004 pgd_t *pgd;
1005 pud_t *pud;
1006
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001007 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
1008 if (WARN_ON(stage2_pgd_none(*pgd))) {
Christoffer Dall38f791a2014-10-10 12:14:28 +02001009 if (!cache)
1010 return NULL;
1011 pud = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001012 stage2_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001013 get_page(virt_to_page(pgd));
1014 }
1015
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001016 return stage2_pud_offset(pgd, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +02001017}
1018
Christoffer Dallad361f02012-11-01 17:14:45 +01001019static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
1020 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001021{
Christoffer Dalld5d81842013-01-20 18:28:07 -05001022 pud_t *pud;
1023 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001024
Christoffer Dall38f791a2014-10-10 12:14:28 +02001025 pud = stage2_get_pud(kvm, cache, addr);
Marc Zyngierd6dbdd32017-06-05 19:17:18 +01001026 if (!pud)
1027 return NULL;
1028
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001029 if (stage2_pud_none(*pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001030 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +01001031 return NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001032 pmd = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001033 stage2_pud_populate(pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001034 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001035 }
1036
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001037 return stage2_pmd_offset(pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +01001038}
Christoffer Dalld5d81842013-01-20 18:28:07 -05001039
Christoffer Dallad361f02012-11-01 17:14:45 +01001040static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
1041 *cache, phys_addr_t addr, const pmd_t *new_pmd)
1042{
1043 pmd_t *pmd, old_pmd;
1044
1045 pmd = stage2_get_pmd(kvm, cache, addr);
1046 VM_BUG_ON(!pmd);
1047
Christoffer Dallad361f02012-11-01 17:14:45 +01001048 old_pmd = *pmd;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001049 if (pmd_present(old_pmd)) {
Punit Agrawal86658b82018-08-13 11:43:50 +01001050 /*
1051 * Multiple vcpus faulting on the same PMD entry, can
1052 * lead to them sequentially updating the PMD with the
1053 * same value. Following the break-before-make
1054 * (pmd_clear() followed by tlb_flush()) process can
1055 * hinder forward progress due to refaults generated
1056 * on missing translations.
1057 *
1058 * Skip updating the page table if the entry is
1059 * unchanged.
1060 */
1061 if (pmd_val(old_pmd) == pmd_val(*new_pmd))
1062 return 0;
1063
1064 /*
1065 * Mapping in huge pages should only happen through a
1066 * fault. If a page is merged into a transparent huge
1067 * page, the individual subpages of that huge page
1068 * should be unmapped through MMU notifiers before we
1069 * get here.
1070 *
1071 * Merging of CompoundPages is not supported; they
1072 * should become splitting first, unmapped, merged,
1073 * and mapped back in on-demand.
1074 */
1075 VM_BUG_ON(pmd_pfn(old_pmd) != pmd_pfn(*new_pmd));
1076
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001077 pmd_clear(pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001078 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001079 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +01001080 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001081 }
1082
1083 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001084 return 0;
1085}
1086
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001087static bool stage2_is_exec(struct kvm *kvm, phys_addr_t addr)
1088{
1089 pmd_t *pmdp;
1090 pte_t *ptep;
1091
1092 pmdp = stage2_get_pmd(kvm, NULL, addr);
1093 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
1094 return false;
1095
1096 if (pmd_thp_or_huge(*pmdp))
1097 return kvm_s2pmd_exec(pmdp);
1098
1099 ptep = pte_offset_kernel(pmdp, addr);
1100 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
1101 return false;
1102
1103 return kvm_s2pte_exec(ptep);
1104}
1105
Christoffer Dallad361f02012-11-01 17:14:45 +01001106static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -08001107 phys_addr_t addr, const pte_t *new_pte,
1108 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +01001109{
1110 pmd_t *pmd;
1111 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001112 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
1113 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
1114
1115 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +01001116
Christoffer Dall38f791a2014-10-10 12:14:28 +02001117 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dallad361f02012-11-01 17:14:45 +01001118 pmd = stage2_get_pmd(kvm, cache, addr);
1119 if (!pmd) {
1120 /*
1121 * Ignore calls from kvm_set_spte_hva for unallocated
1122 * address ranges.
1123 */
1124 return 0;
1125 }
1126
Mario Smarduch15a49a42015-01-15 15:58:58 -08001127 /*
1128 * While dirty page logging - dissolve huge PMD, then continue on to
1129 * allocate page.
1130 */
1131 if (logging_active)
1132 stage2_dissolve_pmd(kvm, addr, pmd);
1133
Christoffer Dallad361f02012-11-01 17:14:45 +01001134 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -05001135 if (pmd_none(*pmd)) {
1136 if (!cache)
1137 return 0; /* ignore calls from kvm_set_spte_hva */
1138 pte = mmu_memory_cache_alloc(cache);
Marc Zyngier0db9dd82018-06-27 15:51:05 +01001139 kvm_pmd_populate(pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001140 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001141 }
1142
1143 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001144
1145 if (iomap && pte_present(*pte))
1146 return -EFAULT;
1147
1148 /* Create 2nd stage page table mapping - Level 3 */
1149 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001150 if (pte_present(old_pte)) {
Punit Agrawal976d34e2018-08-13 11:43:51 +01001151 /* Skip page table update if there is no change */
1152 if (pte_val(old_pte) == pte_val(*new_pte))
1153 return 0;
1154
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001155 kvm_set_pte(pte, __pte(0));
Marc Zyngier48762762013-01-28 15:27:00 +00001156 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001157 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001158 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001159 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001160
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001161 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001162 return 0;
1163}
1164
Catalin Marinas06485052016-04-13 17:57:37 +01001165#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1166static int stage2_ptep_test_and_clear_young(pte_t *pte)
1167{
1168 if (pte_young(*pte)) {
1169 *pte = pte_mkold(*pte);
1170 return 1;
1171 }
1172 return 0;
1173}
1174#else
1175static int stage2_ptep_test_and_clear_young(pte_t *pte)
1176{
1177 return __ptep_test_and_clear_young(pte);
1178}
1179#endif
1180
1181static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1182{
1183 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1184}
1185
Christoffer Dalld5d81842013-01-20 18:28:07 -05001186/**
1187 * kvm_phys_addr_ioremap - map a device range to guest IPA
1188 *
1189 * @kvm: The KVM pointer
1190 * @guest_ipa: The IPA at which to insert the mapping
1191 * @pa: The physical address of the device
1192 * @size: The size of the mapping
1193 */
1194int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001195 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001196{
1197 phys_addr_t addr, end;
1198 int ret = 0;
1199 unsigned long pfn;
1200 struct kvm_mmu_memory_cache cache = { 0, };
1201
1202 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1203 pfn = __phys_to_pfn(pa);
1204
1205 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001206 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001207
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001208 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001209 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001210
Christoffer Dall38f791a2014-10-10 12:14:28 +02001211 ret = mmu_topup_memory_cache(&cache, KVM_MMU_CACHE_MIN_PAGES,
1212 KVM_NR_MEM_OBJS);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001213 if (ret)
1214 goto out;
1215 spin_lock(&kvm->mmu_lock);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001216 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1217 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001218 spin_unlock(&kvm->mmu_lock);
1219 if (ret)
1220 goto out;
1221
1222 pfn++;
1223 }
1224
1225out:
1226 mmu_free_memory_cache(&cache);
1227 return ret;
1228}
1229
Dan Williamsba049e92016-01-15 16:56:11 -08001230static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001231{
Dan Williamsba049e92016-01-15 16:56:11 -08001232 kvm_pfn_t pfn = *pfnp;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001233 gfn_t gfn = *ipap >> PAGE_SHIFT;
1234
Andrea Arcangeli127393f2016-05-05 16:22:20 -07001235 if (PageTransCompoundMap(pfn_to_page(pfn))) {
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001236 unsigned long mask;
1237 /*
1238 * The address we faulted on is backed by a transparent huge
1239 * page. However, because we map the compound huge page and
1240 * not the individual tail page, we need to transfer the
1241 * refcount to the head page. We have to be careful that the
1242 * THP doesn't start to split while we are adjusting the
1243 * refcounts.
1244 *
1245 * We are sure this doesn't happen, because mmu_notifier_retry
1246 * was successful and we are holding the mmu_lock, so if this
1247 * THP is trying to split, it will be blocked in the mmu
1248 * notifier before touching any of the pages, specifically
1249 * before being able to call __split_huge_page_refcount().
1250 *
1251 * We can therefore safely transfer the refcount from PG_tail
1252 * to PG_head and switch the pfn from a tail page to the head
1253 * page accordingly.
1254 */
1255 mask = PTRS_PER_PMD - 1;
1256 VM_BUG_ON((gfn & mask) != (pfn & mask));
1257 if (pfn & mask) {
1258 *ipap &= PMD_MASK;
1259 kvm_release_pfn_clean(pfn);
1260 pfn &= ~mask;
1261 kvm_get_pfn(pfn);
1262 *pfnp = pfn;
1263 }
1264
1265 return true;
1266 }
1267
1268 return false;
1269}
1270
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001271static bool kvm_is_write_fault(struct kvm_vcpu *vcpu)
1272{
1273 if (kvm_vcpu_trap_is_iabt(vcpu))
1274 return false;
1275
1276 return kvm_vcpu_dabt_iswrite(vcpu);
1277}
1278
Mario Smarduchc6473552015-01-15 15:58:56 -08001279/**
1280 * stage2_wp_ptes - write protect PMD range
1281 * @pmd: pointer to pmd entry
1282 * @addr: range start address
1283 * @end: range end address
1284 */
1285static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1286{
1287 pte_t *pte;
1288
1289 pte = pte_offset_kernel(pmd, addr);
1290 do {
1291 if (!pte_none(*pte)) {
1292 if (!kvm_s2pte_readonly(pte))
1293 kvm_set_s2pte_readonly(pte);
1294 }
1295 } while (pte++, addr += PAGE_SIZE, addr != end);
1296}
1297
1298/**
1299 * stage2_wp_pmds - write protect PUD range
1300 * @pud: pointer to pud entry
1301 * @addr: range start address
1302 * @end: range end address
1303 */
1304static void stage2_wp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
1305{
1306 pmd_t *pmd;
1307 phys_addr_t next;
1308
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001309 pmd = stage2_pmd_offset(pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001310
1311 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001312 next = stage2_pmd_addr_end(addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001313 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001314 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001315 if (!kvm_s2pmd_readonly(pmd))
1316 kvm_set_s2pmd_readonly(pmd);
1317 } else {
1318 stage2_wp_ptes(pmd, addr, next);
1319 }
1320 }
1321 } while (pmd++, addr = next, addr != end);
1322}
1323
1324/**
1325 * stage2_wp_puds - write protect PGD range
1326 * @pgd: pointer to pgd entry
1327 * @addr: range start address
1328 * @end: range end address
1329 *
1330 * Process PUD entries, for a huge PUD we cause a panic.
1331 */
1332static void stage2_wp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
1333{
1334 pud_t *pud;
1335 phys_addr_t next;
1336
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001337 pud = stage2_pud_offset(pgd, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001338 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001339 next = stage2_pud_addr_end(addr, end);
1340 if (!stage2_pud_none(*pud)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001341 /* TODO:PUD not supported, revisit later if supported */
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001342 BUG_ON(stage2_pud_huge(*pud));
Mario Smarduchc6473552015-01-15 15:58:56 -08001343 stage2_wp_pmds(pud, addr, next);
1344 }
1345 } while (pud++, addr = next, addr != end);
1346}
1347
1348/**
1349 * stage2_wp_range() - write protect stage2 memory region range
1350 * @kvm: The KVM pointer
1351 * @addr: Start address of range
1352 * @end: End address of range
1353 */
1354static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1355{
1356 pgd_t *pgd;
1357 phys_addr_t next;
1358
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001359 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001360 do {
1361 /*
1362 * Release kvm_mmu_lock periodically if the memory region is
1363 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001364 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1365 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001366 * will also starve other vCPUs. We have to also make sure
1367 * that the page tables are not freed while we released
1368 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001369 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001370 cond_resched_lock(&kvm->mmu_lock);
1371 if (!READ_ONCE(kvm->arch.pgd))
1372 break;
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001373 next = stage2_pgd_addr_end(addr, end);
1374 if (stage2_pgd_present(*pgd))
Mario Smarduchc6473552015-01-15 15:58:56 -08001375 stage2_wp_puds(pgd, addr, next);
1376 } while (pgd++, addr = next, addr != end);
1377}
1378
1379/**
1380 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1381 * @kvm: The KVM pointer
1382 * @slot: The memory slot to write protect
1383 *
1384 * Called to start logging dirty pages after memory region
1385 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
1386 * all present PMD and PTEs are write protected in the memory region.
1387 * Afterwards read of dirty page log can be called.
1388 *
1389 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1390 * serializing operations for VM memory regions.
1391 */
1392void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1393{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001394 struct kvm_memslots *slots = kvm_memslots(kvm);
1395 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Mario Smarduchc6473552015-01-15 15:58:56 -08001396 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1397 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1398
1399 spin_lock(&kvm->mmu_lock);
1400 stage2_wp_range(kvm, start, end);
1401 spin_unlock(&kvm->mmu_lock);
1402 kvm_flush_remote_tlbs(kvm);
1403}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001404
1405/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001406 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001407 * @kvm: The KVM pointer
1408 * @slot: The memory slot associated with mask
1409 * @gfn_offset: The gfn offset in memory slot
1410 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1411 * slot to be write protected
1412 *
1413 * Walks bits set in mask write protects the associated pte's. Caller must
1414 * acquire kvm_mmu_lock.
1415 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001416static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001417 struct kvm_memory_slot *slot,
1418 gfn_t gfn_offset, unsigned long mask)
1419{
1420 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1421 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1422 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1423
1424 stage2_wp_range(kvm, start, end);
1425}
Mario Smarduchc6473552015-01-15 15:58:56 -08001426
Kai Huang3b0f1d02015-01-28 10:54:23 +08001427/*
1428 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1429 * dirty pages.
1430 *
1431 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1432 * enable dirty logging for them.
1433 */
1434void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1435 struct kvm_memory_slot *slot,
1436 gfn_t gfn_offset, unsigned long mask)
1437{
1438 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1439}
1440
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001441static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001442{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001443 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001444}
1445
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001446static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001447{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001448 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001449}
1450
James Morse196f8782017-06-20 17:11:48 +01001451static void kvm_send_hwpoison_signal(unsigned long address,
1452 struct vm_area_struct *vma)
1453{
1454 siginfo_t info;
1455
Eric W. Biederman3eb0f512018-04-17 15:26:37 -05001456 clear_siginfo(&info);
James Morse196f8782017-06-20 17:11:48 +01001457 info.si_signo = SIGBUS;
1458 info.si_errno = 0;
1459 info.si_code = BUS_MCEERR_AR;
1460 info.si_addr = (void __user *)address;
1461
1462 if (is_vm_hugetlb_page(vma))
1463 info.si_addr_lsb = huge_page_shift(hstate_vma(vma));
1464 else
1465 info.si_addr_lsb = PAGE_SHIFT;
1466
1467 send_sig_info(SIGBUS, &info, current);
1468}
1469
Christoffer Dall94f8e642013-01-20 18:28:12 -05001470static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001471 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001472 unsigned long fault_status)
1473{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001474 int ret;
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001475 bool write_fault, exec_fault, writable, hugetlb = false, force_pte = false;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001476 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001477 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001478 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001479 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001480 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001481 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001482 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001483 bool logging_active = memslot_is_logging(memslot);
1484 unsigned long flags = 0;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001485
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001486 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001487 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1488 VM_BUG_ON(write_fault && exec_fault);
1489
1490 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001491 kvm_err("Unexpected L2 read permission error\n");
1492 return -EFAULT;
1493 }
1494
Christoffer Dallad361f02012-11-01 17:14:45 +01001495 /* Let's check if we will get back a huge page backed by hugetlbfs */
1496 down_read(&current->mm->mmap_sem);
1497 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001498 if (unlikely(!vma)) {
1499 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1500 up_read(&current->mm->mmap_sem);
1501 return -EFAULT;
1502 }
1503
Punit Agrawalc507bab2018-01-04 18:24:33 +00001504 if (vma_kernel_pagesize(vma) == PMD_SIZE && !logging_active) {
Christoffer Dallad361f02012-11-01 17:14:45 +01001505 hugetlb = true;
1506 gfn = (fault_ipa & PMD_MASK) >> PAGE_SHIFT;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001507 } else {
1508 /*
Marc Zyngier136d7372013-12-13 16:56:06 +00001509 * Pages belonging to memslots that don't have the same
1510 * alignment for userspace and IPA cannot be mapped using
1511 * block descriptors even if the pages belong to a THP for
1512 * the process, because the stage-2 block descriptor will
1513 * cover more than a single THP and we loose atomicity for
1514 * unmapping, updates, and splits of the THP or other pages
1515 * in the stage-2 block range.
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001516 */
Marc Zyngier136d7372013-12-13 16:56:06 +00001517 if ((memslot->userspace_addr & ~PMD_MASK) !=
1518 ((memslot->base_gfn << PAGE_SHIFT) & ~PMD_MASK))
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001519 force_pte = true;
Christoffer Dallad361f02012-11-01 17:14:45 +01001520 }
1521 up_read(&current->mm->mmap_sem);
1522
Christoffer Dall94f8e642013-01-20 18:28:12 -05001523 /* We need minimum second+third level pages */
Christoffer Dall38f791a2014-10-10 12:14:28 +02001524 ret = mmu_topup_memory_cache(memcache, KVM_MMU_CACHE_MIN_PAGES,
1525 KVM_NR_MEM_OBJS);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001526 if (ret)
1527 return ret;
1528
1529 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1530 /*
1531 * Ensure the read of mmu_notifier_seq happens before we call
1532 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1533 * the page we just got a reference to gets unmapped before we have a
1534 * chance to grab the mmu_lock, which ensure that if the page gets
1535 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1536 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1537 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1538 */
1539 smp_rmb();
1540
Christoffer Dallad361f02012-11-01 17:14:45 +01001541 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001542 if (pfn == KVM_PFN_ERR_HWPOISON) {
1543 kvm_send_hwpoison_signal(hva, vma);
1544 return 0;
1545 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001546 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001547 return -EFAULT;
1548
Mario Smarduch15a49a42015-01-15 15:58:58 -08001549 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001550 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001551 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1552 } else if (logging_active) {
1553 /*
1554 * Faults on pages in a memslot with logging enabled
1555 * should not be mapped with huge pages (it introduces churn
1556 * and performance degradation), so force a pte mapping.
1557 */
1558 force_pte = true;
1559 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1560
1561 /*
1562 * Only actually map the page as writable if this was a write
1563 * fault.
1564 */
1565 if (!write_fault)
1566 writable = false;
1567 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001568
Christoffer Dallad361f02012-11-01 17:14:45 +01001569 spin_lock(&kvm->mmu_lock);
1570 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001571 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001572
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001573 if (!hugetlb && !force_pte)
1574 hugetlb = transparent_hugepage_adjust(&pfn, &fault_ipa);
Christoffer Dallad361f02012-11-01 17:14:45 +01001575
1576 if (hugetlb) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001577 pmd_t new_pmd = pfn_pmd(pfn, mem_type);
Christoffer Dallad361f02012-11-01 17:14:45 +01001578 new_pmd = pmd_mkhuge(new_pmd);
1579 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001580 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001581 kvm_set_pfn_dirty(pfn);
1582 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001583
1584 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001585 clean_dcache_guest_page(pfn, PMD_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001586
1587 if (exec_fault) {
1588 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001589 invalidate_icache_guest_page(pfn, PMD_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001590 } else if (fault_status == FSC_PERM) {
1591 /* Preserve execute if XN was already cleared */
1592 if (stage2_is_exec(kvm, fault_ipa))
1593 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001594 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001595
Christoffer Dallad361f02012-11-01 17:14:45 +01001596 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1597 } else {
Kim Phillipsb8865762014-06-26 01:45:51 +01001598 pte_t new_pte = pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001599
Christoffer Dallad361f02012-11-01 17:14:45 +01001600 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001601 new_pte = kvm_s2pte_mkwrite(new_pte);
Christoffer Dallad361f02012-11-01 17:14:45 +01001602 kvm_set_pfn_dirty(pfn);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001603 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001604 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001605
1606 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001607 clean_dcache_guest_page(pfn, PAGE_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001608
1609 if (exec_fault) {
1610 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001611 invalidate_icache_guest_page(pfn, PAGE_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001612 } else if (fault_status == FSC_PERM) {
1613 /* Preserve execute if XN was already cleared */
1614 if (stage2_is_exec(kvm, fault_ipa))
1615 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001616 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001617
Mario Smarduch15a49a42015-01-15 15:58:58 -08001618 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001619 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001620
Christoffer Dall94f8e642013-01-20 18:28:12 -05001621out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001622 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001623 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001624 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001625 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001626}
1627
Marc Zyngieraeda9132015-03-12 18:16:52 +00001628/*
1629 * Resolve the access fault by making the page young again.
1630 * Note that because the faulting entry is guaranteed not to be
1631 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001632 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1633 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001634 */
1635static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1636{
1637 pmd_t *pmd;
1638 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001639 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001640 bool pfn_valid = false;
1641
1642 trace_kvm_access_fault(fault_ipa);
1643
1644 spin_lock(&vcpu->kvm->mmu_lock);
1645
1646 pmd = stage2_get_pmd(vcpu->kvm, NULL, fault_ipa);
1647 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1648 goto out;
1649
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001650 if (pmd_thp_or_huge(*pmd)) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001651 *pmd = pmd_mkyoung(*pmd);
1652 pfn = pmd_pfn(*pmd);
1653 pfn_valid = true;
1654 goto out;
1655 }
1656
1657 pte = pte_offset_kernel(pmd, fault_ipa);
1658 if (pte_none(*pte)) /* Nothing there either */
1659 goto out;
1660
1661 *pte = pte_mkyoung(*pte); /* Just a page... */
1662 pfn = pte_pfn(*pte);
1663 pfn_valid = true;
1664out:
1665 spin_unlock(&vcpu->kvm->mmu_lock);
1666 if (pfn_valid)
1667 kvm_set_pfn_accessed(pfn);
1668}
1669
Christoffer Dall94f8e642013-01-20 18:28:12 -05001670/**
1671 * kvm_handle_guest_abort - handles all 2nd stage aborts
1672 * @vcpu: the VCPU pointer
1673 * @run: the kvm_run structure
1674 *
1675 * Any abort that gets to the host is almost guaranteed to be caused by a
1676 * missing second stage translation table entry, which can mean that either the
1677 * guest simply needs more memory and we must allocate an appropriate page or it
1678 * can mean that the guest tried to access I/O memory, which is emulated by user
1679 * space. The distinction is based on the IPA causing the fault and whether this
1680 * memory region has been registered as standard RAM by user space.
1681 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001682int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1683{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001684 unsigned long fault_status;
1685 phys_addr_t fault_ipa;
1686 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001687 unsigned long hva;
1688 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001689 gfn_t gfn;
1690 int ret, idx;
1691
Tyler Baicar621f48e2017-06-21 12:17:14 -06001692 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1693
1694 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01001695 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06001696
James Morsebb428922017-07-18 13:37:41 +01001697 /* Synchronous External Abort? */
1698 if (kvm_vcpu_dabt_isextabt(vcpu)) {
1699 /*
1700 * For RAS the host kernel may handle this abort.
1701 * There is no need to pass the error into the guest.
1702 */
Tyler Baicar621f48e2017-06-21 12:17:14 -06001703 if (!handle_guest_sea(fault_ipa, kvm_vcpu_get_hsr(vcpu)))
1704 return 1;
Tyler Baicar621f48e2017-06-21 12:17:14 -06001705
James Morsebb428922017-07-18 13:37:41 +01001706 if (unlikely(!is_iabt)) {
1707 kvm_inject_vabt(vcpu);
1708 return 1;
1709 }
Marc Zyngier40557102016-09-06 14:02:15 +01001710 }
1711
Marc Zyngier7393b592012-09-17 19:27:09 +01001712 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1713 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001714
1715 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00001716 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1717 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001718 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1719 kvm_vcpu_trap_get_class(vcpu),
1720 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1721 (unsigned long)kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001722 return -EFAULT;
1723 }
1724
1725 idx = srcu_read_lock(&vcpu->kvm->srcu);
1726
1727 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001728 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1729 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001730 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001731 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001732 if (is_iabt) {
1733 /* Prefetch Abort on I/O address */
Marc Zyngier7393b592012-09-17 19:27:09 +01001734 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001735 ret = 1;
1736 goto out_unlock;
1737 }
1738
Marc Zyngiercfe39502012-12-12 14:42:09 +00001739 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001740 * Check for a cache maintenance operation. Since we
1741 * ended-up here, we know it is outside of any memory
1742 * slot. But we can't find out if that is for a device,
1743 * or if the guest is just being stupid. The only thing
1744 * we know for sure is that this range cannot be cached.
1745 *
1746 * So let's assume that the guest is just being
1747 * cautious, and skip the instruction.
1748 */
1749 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1750 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1751 ret = 1;
1752 goto out_unlock;
1753 }
1754
1755 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001756 * The IPA is reported as [MAX:12], so we need to
1757 * complement it with the bottom 12 bits from the
1758 * faulting VA. This is always 12 bits, irrespective
1759 * of the page size.
1760 */
1761 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -05001762 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001763 goto out_unlock;
1764 }
1765
Christoffer Dallc3058d52014-10-10 12:14:29 +02001766 /* Userspace should not be able to register out-of-bounds IPAs */
1767 VM_BUG_ON(fault_ipa >= KVM_PHYS_SIZE);
1768
Marc Zyngieraeda9132015-03-12 18:16:52 +00001769 if (fault_status == FSC_ACCESS) {
1770 handle_access_fault(vcpu, fault_ipa);
1771 ret = 1;
1772 goto out_unlock;
1773 }
1774
Christoffer Dall98047882014-08-19 12:18:04 +02001775 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001776 if (ret == 0)
1777 ret = 1;
1778out_unlock:
1779 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1780 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001781}
1782
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001783static int handle_hva_to_gpa(struct kvm *kvm,
1784 unsigned long start,
1785 unsigned long end,
1786 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001787 gpa_t gpa, u64 size,
1788 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001789 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001790{
1791 struct kvm_memslots *slots;
1792 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001793 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001794
1795 slots = kvm_memslots(kvm);
1796
1797 /* we only care about the pages that the guest sees */
1798 kvm_for_each_memslot(memslot, slots) {
1799 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001800 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001801
1802 hva_start = max(start, memslot->userspace_addr);
1803 hva_end = min(end, memslot->userspace_addr +
1804 (memslot->npages << PAGE_SHIFT));
1805 if (hva_start >= hva_end)
1806 continue;
1807
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001808 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
1809 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001810 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001811
1812 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001813}
1814
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001815static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001816{
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001817 unmap_stage2_range(kvm, gpa, size);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001818 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001819}
1820
Christoffer Dalld5d81842013-01-20 18:28:07 -05001821int kvm_unmap_hva_range(struct kvm *kvm,
1822 unsigned long start, unsigned long end)
1823{
1824 if (!kvm->arch.pgd)
1825 return 0;
1826
1827 trace_kvm_unmap_hva_range(start, end);
1828 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
1829 return 0;
1830}
1831
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001832static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001833{
1834 pte_t *pte = (pte_t *)data;
1835
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001836 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001837 /*
1838 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1839 * flag clear because MMU notifiers will have unmapped a huge PMD before
1840 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1841 * therefore stage2_set_pte() never needs to clear out a huge PMD
1842 * through this calling path.
1843 */
1844 stage2_set_pte(kvm, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001845 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001846}
1847
1848
1849void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1850{
1851 unsigned long end = hva + PAGE_SIZE;
Marc Zyngier694556d2018-08-23 09:58:27 +01001852 kvm_pfn_t pfn = pte_pfn(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001853 pte_t stage2_pte;
1854
1855 if (!kvm->arch.pgd)
1856 return;
1857
1858 trace_kvm_set_spte_hva(hva);
Marc Zyngier694556d2018-08-23 09:58:27 +01001859
1860 /*
1861 * We've moved a page around, probably through CoW, so let's treat it
1862 * just like a translation fault and clean the cache to the PoC.
1863 */
1864 clean_dcache_guest_page(pfn, PAGE_SIZE);
1865 stage2_pte = pfn_pte(pfn, PAGE_S2);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001866 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
1867}
1868
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001869static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001870{
1871 pmd_t *pmd;
1872 pte_t *pte;
1873
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001874 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001875 pmd = stage2_get_pmd(kvm, NULL, gpa);
1876 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1877 return 0;
1878
Catalin Marinas06485052016-04-13 17:57:37 +01001879 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1880 return stage2_pmdp_test_and_clear_young(pmd);
Marc Zyngier35307b92015-03-12 18:16:51 +00001881
1882 pte = pte_offset_kernel(pmd, gpa);
1883 if (pte_none(*pte))
1884 return 0;
1885
Catalin Marinas06485052016-04-13 17:57:37 +01001886 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001887}
1888
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001889static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001890{
1891 pmd_t *pmd;
1892 pte_t *pte;
1893
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001894 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001895 pmd = stage2_get_pmd(kvm, NULL, gpa);
1896 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1897 return 0;
1898
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001899 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
Marc Zyngier35307b92015-03-12 18:16:51 +00001900 return pmd_young(*pmd);
1901
1902 pte = pte_offset_kernel(pmd, gpa);
1903 if (!pte_none(*pte)) /* Just a page... */
1904 return pte_young(*pte);
1905
1906 return 0;
1907}
1908
1909int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1910{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001911 if (!kvm->arch.pgd)
1912 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001913 trace_kvm_age_hva(start, end);
1914 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1915}
1916
1917int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1918{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001919 if (!kvm->arch.pgd)
1920 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001921 trace_kvm_test_age_hva(hva);
1922 return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
1923}
1924
Christoffer Dalld5d81842013-01-20 18:28:07 -05001925void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
1926{
1927 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
1928}
1929
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001930phys_addr_t kvm_mmu_get_httbr(void)
1931{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001932 if (__kvm_cpu_uses_extended_idmap())
1933 return virt_to_phys(merged_hyp_pgd);
1934 else
1935 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001936}
1937
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001938phys_addr_t kvm_get_idmap_vector(void)
1939{
1940 return hyp_idmap_vector;
1941}
1942
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001943static int kvm_map_idmap_text(pgd_t *pgd)
1944{
1945 int err;
1946
1947 /* Create the idmap in the boot page tables */
Kristina Martsenko98732d12018-01-15 15:23:49 +00001948 err = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001949 hyp_idmap_start, hyp_idmap_end,
1950 __phys_to_pfn(hyp_idmap_start),
1951 PAGE_HYP_EXEC);
1952 if (err)
1953 kvm_err("Failed to idmap %lx-%lx\n",
1954 hyp_idmap_start, hyp_idmap_end);
1955
1956 return err;
1957}
1958
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001959int kvm_mmu_init(void)
1960{
Marc Zyngier2fb41052013-04-12 19:12:03 +01001961 int err;
1962
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001963 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
Marc Zyngier46fef152018-03-12 14:25:10 +00001964 hyp_idmap_start = ALIGN_DOWN(hyp_idmap_start, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001965 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
Marc Zyngier46fef152018-03-12 14:25:10 +00001966 hyp_idmap_end = ALIGN(hyp_idmap_end, PAGE_SIZE);
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001967 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001968
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00001969 /*
1970 * We rely on the linker script to ensure at build time that the HYP
1971 * init code does not cross a page boundary.
1972 */
1973 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001974
Marc Zyngierb4ef0492017-12-03 20:04:51 +00001975 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
1976 kvm_debug("HYP VA range: %lx:%lx\n",
1977 kern_hyp_va(PAGE_OFFSET),
1978 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01001979
Marc Zyngier6c41a412016-06-30 18:40:51 +01001980 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngiered57cac2017-12-03 18:22:49 +00001981 hyp_idmap_start < kern_hyp_va((unsigned long)high_memory - 1) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01001982 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01001983 /*
1984 * The idmap page is intersecting with the VA space,
1985 * it is not safe to continue further.
1986 */
1987 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
1988 err = -EINVAL;
1989 goto out;
1990 }
1991
Christoffer Dall38f791a2014-10-10 12:14:28 +02001992 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001993 if (!hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001994 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01001995 err = -ENOMEM;
1996 goto out;
1997 }
1998
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001999 if (__kvm_cpu_uses_extended_idmap()) {
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002000 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
2001 hyp_pgd_order);
2002 if (!boot_hyp_pgd) {
2003 kvm_err("Hyp boot PGD not allocated\n");
2004 err = -ENOMEM;
2005 goto out;
2006 }
2007
2008 err = kvm_map_idmap_text(boot_hyp_pgd);
2009 if (err)
2010 goto out;
2011
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00002012 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
2013 if (!merged_hyp_pgd) {
2014 kvm_err("Failed to allocate extra HYP pgd\n");
2015 goto out;
2016 }
2017 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
2018 hyp_idmap_start);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01002019 } else {
2020 err = kvm_map_idmap_text(hyp_pgd);
2021 if (err)
2022 goto out;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01002023 }
2024
Marc Zyngiere3f019b2017-12-04 17:04:38 +00002025 io_map_base = hyp_idmap_start;
Christoffer Dalld5d81842013-01-20 18:28:07 -05002026 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01002027out:
Marc Zyngier4f728272013-04-12 19:12:05 +01002028 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01002029 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05002030}
Eric Augerdf6ce242014-06-06 11:10:23 +02002031
2032void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002033 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02002034 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02002035 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02002036 enum kvm_mr_change change)
2037{
Mario Smarduchc6473552015-01-15 15:58:56 -08002038 /*
2039 * At this point memslot has been committed and there is an
2040 * allocated dirty_bitmap[], dirty pages will be be tracked while the
2041 * memory slot is write protected.
2042 */
2043 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
2044 kvm_mmu_wp_memory_region(kvm, mem->slot);
Eric Augerdf6ce242014-06-06 11:10:23 +02002045}
2046
2047int kvm_arch_prepare_memory_region(struct kvm *kvm,
2048 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02002049 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02002050 enum kvm_mr_change change)
2051{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002052 hva_t hva = mem->userspace_addr;
2053 hva_t reg_end = hva + mem->memory_size;
2054 bool writable = !(mem->flags & KVM_MEM_READONLY);
2055 int ret = 0;
2056
Mario Smarduch15a49a42015-01-15 15:58:58 -08002057 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
2058 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002059 return 0;
2060
2061 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02002062 * Prevent userspace from creating a memory region outside of the IPA
2063 * space addressable by the KVM guest IPA space.
2064 */
2065 if (memslot->base_gfn + memslot->npages >=
2066 (KVM_PHYS_SIZE >> PAGE_SHIFT))
2067 return -EFAULT;
2068
Marc Zyngier72f31042017-03-16 18:20:50 +00002069 down_read(&current->mm->mmap_sem);
Christoffer Dallc3058d52014-10-10 12:14:29 +02002070 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002071 * A memory region could potentially cover multiple VMAs, and any holes
2072 * between them, so iterate over all of them to find out if we can map
2073 * any of them right now.
2074 *
2075 * +--------------------------------------------+
2076 * +---------------+----------------+ +----------------+
2077 * | : VMA 1 | VMA 2 | | VMA 3 : |
2078 * +---------------+----------------+ +----------------+
2079 * | memory region |
2080 * +--------------------------------------------+
2081 */
2082 do {
2083 struct vm_area_struct *vma = find_vma(current->mm, hva);
2084 hva_t vm_start, vm_end;
2085
2086 if (!vma || vma->vm_start >= reg_end)
2087 break;
2088
2089 /*
2090 * Mapping a read-only VMA is only allowed if the
2091 * memory region is configured as read-only.
2092 */
2093 if (writable && !(vma->vm_flags & VM_WRITE)) {
2094 ret = -EPERM;
2095 break;
2096 }
2097
2098 /*
2099 * Take the intersection of this VMA with the memory region
2100 */
2101 vm_start = max(hva, vma->vm_start);
2102 vm_end = min(reg_end, vma->vm_end);
2103
2104 if (vma->vm_flags & VM_PFNMAP) {
2105 gpa_t gpa = mem->guest_phys_addr +
2106 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02002107 phys_addr_t pa;
2108
2109 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
2110 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002111
Mario Smarduch15a49a42015-01-15 15:58:58 -08002112 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00002113 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
2114 ret = -EINVAL;
2115 goto out;
2116 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08002117
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002118 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
2119 vm_end - vm_start,
2120 writable);
2121 if (ret)
2122 break;
2123 }
2124 hva = vm_end;
2125 } while (hva < reg_end);
2126
Mario Smarduch15a49a42015-01-15 15:58:58 -08002127 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00002128 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08002129
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002130 spin_lock(&kvm->mmu_lock);
2131 if (ret)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002132 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00002133 else
2134 stage2_flush_memslot(kvm, memslot);
2135 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00002136out:
2137 up_read(&current->mm->mmap_sem);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002138 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02002139}
2140
2141void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
2142 struct kvm_memory_slot *dont)
2143{
2144}
2145
2146int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
2147 unsigned long npages)
2148{
2149 return 0;
2150}
2151
Paolo Bonzini15f46012015-05-17 21:26:08 +02002152void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Eric Augerdf6ce242014-06-06 11:10:23 +02002153{
2154}
2155
2156void kvm_arch_flush_shadow_all(struct kvm *kvm)
2157{
Suzuki K Poulose293f2932016-09-08 16:25:49 +01002158 kvm_free_stage2_pgd(kvm);
Eric Augerdf6ce242014-06-06 11:10:23 +02002159}
2160
2161void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2162 struct kvm_memory_slot *slot)
2163{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002164 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2165 phys_addr_t size = slot->npages << PAGE_SHIFT;
2166
2167 spin_lock(&kvm->mmu_lock);
2168 unmap_stage2_range(kvm, gpa, size);
2169 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002170}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002171
2172/*
2173 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2174 *
2175 * Main problems:
2176 * - S/W ops are local to a CPU (not broadcast)
2177 * - We have line migration behind our back (speculation)
2178 * - System caches don't support S/W at all (damn!)
2179 *
2180 * In the face of the above, the best we can do is to try and convert
2181 * S/W ops to VA ops. Because the guest is not allowed to infer the
2182 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2183 * which is a rather good thing for us.
2184 *
2185 * Also, it is only used when turning caches on/off ("The expected
2186 * usage of the cache maintenance instructions that operate by set/way
2187 * is associated with the cache maintenance instructions associated
2188 * with the powerdown and powerup of caches, if this is required by
2189 * the implementation.").
2190 *
2191 * We use the following policy:
2192 *
2193 * - If we trap a S/W operation, we enable VM trapping to detect
2194 * caches being turned on/off, and do a full clean.
2195 *
2196 * - We flush the caches on both caches being turned on and off.
2197 *
2198 * - Once the caches are enabled, we stop trapping VM ops.
2199 */
2200void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2201{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002202 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002203
2204 /*
2205 * If this is the first time we do a S/W operation
2206 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2207 * VM trapping.
2208 *
2209 * Otherwise, rely on the VM trapping to wait for the MMU +
2210 * Caches to be turned off. At that point, we'll be able to
2211 * clean the caches again.
2212 */
2213 if (!(hcr & HCR_TVM)) {
2214 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2215 vcpu_has_cache_enabled(vcpu));
2216 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002217 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002218 }
2219}
2220
2221void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2222{
2223 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2224
2225 /*
2226 * If switching the MMU+caches on, need to invalidate the caches.
2227 * If switching it off, need to clean the caches.
2228 * Clean + invalidate does the trick always.
2229 */
2230 if (now_enabled != was_enabled)
2231 stage2_flush_vm(vcpu->kvm);
2232
2233 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2234 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002235 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002236
2237 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2238}