blob: f004e7017201a15e39f0da2afab3b4c5a40ec4b4 [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>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050023#include <trace/events/kvm.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050024#include <asm/pgalloc.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050025#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050026#include <asm/kvm_arm.h>
27#include <asm/kvm_mmu.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050028#include <asm/kvm_mmio.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050029#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050030#include <asm/kvm_emulate.h>
Marc Zyngier1e947ba2015-01-29 11:59:54 +000031#include <asm/virt.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050032
33#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050034
Marc Zyngier5a677ce2013-04-12 19:12:06 +010035static pgd_t *boot_hyp_pgd;
Marc Zyngier2fb41052013-04-12 19:12:03 +010036static pgd_t *hyp_pgd;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +000037static pgd_t *merged_hyp_pgd;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050038static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
39
Marc Zyngier5a677ce2013-04-12 19:12:06 +010040static unsigned long hyp_idmap_start;
41static unsigned long hyp_idmap_end;
42static phys_addr_t hyp_idmap_vector;
43
Suzuki K Poulose9163ee232016-03-22 17:01:21 +000044#define S2_PGD_SIZE (PTRS_PER_S2_PGD * sizeof(pgd_t))
Christoffer Dall38f791a2014-10-10 12:14:28 +020045#define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
Mark Salter5d4e08c2014-03-28 14:25:19 +000046
Mario Smarduch15a49a42015-01-15 15:58:58 -080047#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
48#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
49
50static bool memslot_is_logging(struct kvm_memory_slot *memslot)
51{
Mario Smarduch15a49a42015-01-15 15:58:58 -080052 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080053}
54
55/**
56 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
57 * @kvm: pointer to kvm structure.
58 *
59 * Interface to HYP function to flush all VM TLB entries
60 */
61void kvm_flush_remote_tlbs(struct kvm *kvm)
62{
63 kvm_call_hyp(__kvm_tlb_flush_vmid, kvm);
Mario Smarduch15a49a42015-01-15 15:58:58 -080064}
Christoffer Dallad361f02012-11-01 17:14:45 +010065
Marc Zyngier48762762013-01-28 15:27:00 +000066static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
Christoffer Dalld5d81842013-01-20 18:28:07 -050067{
Suzuki K Poulose8684e702016-03-22 17:14:25 +000068 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
Christoffer Dalld5d81842013-01-20 18:28:07 -050069}
70
Marc Zyngier363ef892014-12-19 16:48:06 +000071/*
72 * D-Cache management functions. They take the page table entries by
73 * value, as they are flushing the cache using the kernel mapping (or
74 * kmap on 32bit).
75 */
76static void kvm_flush_dcache_pte(pte_t pte)
77{
78 __kvm_flush_dcache_pte(pte);
79}
80
81static void kvm_flush_dcache_pmd(pmd_t pmd)
82{
83 __kvm_flush_dcache_pmd(pmd);
84}
85
86static void kvm_flush_dcache_pud(pud_t pud)
87{
88 __kvm_flush_dcache_pud(pud);
89}
90
Ard Biesheuvele6fab542015-11-10 15:11:20 +010091static bool kvm_is_device_pfn(unsigned long pfn)
92{
93 return !pfn_valid(pfn);
94}
95
Mario Smarduch15a49a42015-01-15 15:58:58 -080096/**
97 * stage2_dissolve_pmd() - clear and flush huge PMD entry
98 * @kvm: pointer to kvm structure.
99 * @addr: IPA
100 * @pmd: pmd pointer for IPA
101 *
102 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs. Marks all
103 * pages in the range dirty.
104 */
105static void stage2_dissolve_pmd(struct kvm *kvm, phys_addr_t addr, pmd_t *pmd)
106{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000107 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800108 return;
109
110 pmd_clear(pmd);
111 kvm_tlb_flush_vmid_ipa(kvm, addr);
112 put_page(virt_to_page(pmd));
113}
114
Christoffer Dalld5d81842013-01-20 18:28:07 -0500115static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
116 int min, int max)
117{
118 void *page;
119
120 BUG_ON(max > KVM_NR_MEM_OBJS);
121 if (cache->nobjs >= min)
122 return 0;
123 while (cache->nobjs < max) {
124 page = (void *)__get_free_page(PGALLOC_GFP);
125 if (!page)
126 return -ENOMEM;
127 cache->objects[cache->nobjs++] = page;
128 }
129 return 0;
130}
131
132static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
133{
134 while (mc->nobjs)
135 free_page((unsigned long)mc->objects[--mc->nobjs]);
136}
137
138static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
139{
140 void *p;
141
142 BUG_ON(!mc || !mc->nobjs);
143 p = mc->objects[--mc->nobjs];
144 return p;
145}
146
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000147static void clear_stage2_pgd_entry(struct kvm *kvm, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100148{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000149 pud_t *pud_table __maybe_unused = stage2_pud_offset(pgd, 0UL);
150 stage2_pgd_clear(pgd);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200151 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000152 stage2_pud_free(pud_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200153 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100154}
155
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000156static void clear_stage2_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500157{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000158 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(pud, 0);
159 VM_BUG_ON(stage2_pud_huge(*pud));
160 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200161 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000162 stage2_pmd_free(pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100163 put_page(virt_to_page(pud));
164}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500165
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000166static void clear_stage2_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100167{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200168 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000169 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200170 pmd_clear(pmd);
171 kvm_tlb_flush_vmid_ipa(kvm, addr);
172 pte_free_kernel(NULL, pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100173 put_page(virt_to_page(pmd));
174}
175
Marc Zyngier363ef892014-12-19 16:48:06 +0000176/*
177 * Unmapping vs dcache management:
178 *
179 * If a guest maps certain memory pages as uncached, all writes will
180 * bypass the data cache and go directly to RAM. However, the CPUs
181 * can still speculate reads (not writes) and fill cache lines with
182 * data.
183 *
184 * Those cache lines will be *clean* cache lines though, so a
185 * clean+invalidate operation is equivalent to an invalidate
186 * operation, because no cache lines are marked dirty.
187 *
188 * Those clean cache lines could be filled prior to an uncached write
189 * by the guest, and the cache coherent IO subsystem would therefore
190 * end up writing old data to disk.
191 *
192 * This is why right after unmapping a page/section and invalidating
193 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
194 * the IO subsystem will never hit in the cache.
195 */
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000196static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200197 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100198{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200199 phys_addr_t start_addr = addr;
200 pte_t *pte, *start_pte;
201
202 start_pte = pte = pte_offset_kernel(pmd, addr);
203 do {
204 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000205 pte_t old_pte = *pte;
206
Christoffer Dall4f853a72014-05-09 23:31:31 +0200207 kvm_set_pte(pte, __pte(0));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200208 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000209
210 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100211 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000212 kvm_flush_dcache_pte(old_pte);
213
214 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200215 }
216 } while (pte++, addr += PAGE_SIZE, addr != end);
217
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000218 if (stage2_pte_table_empty(start_pte))
219 clear_stage2_pmd_entry(kvm, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500220}
221
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000222static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200223 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500224{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200225 phys_addr_t next, start_addr = addr;
226 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000227
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000228 start_pmd = pmd = stage2_pmd_offset(pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200229 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000230 next = stage2_pmd_addr_end(addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200231 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000232 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000233 pmd_t old_pmd = *pmd;
234
Christoffer Dall4f853a72014-05-09 23:31:31 +0200235 pmd_clear(pmd);
236 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000237
238 kvm_flush_dcache_pmd(old_pmd);
239
Christoffer Dall4f853a72014-05-09 23:31:31 +0200240 put_page(virt_to_page(pmd));
241 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000242 unmap_stage2_ptes(kvm, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100243 }
244 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200245 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100246
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000247 if (stage2_pmd_table_empty(start_pmd))
248 clear_stage2_pud_entry(kvm, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200249}
250
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000251static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200252 phys_addr_t addr, phys_addr_t end)
253{
254 phys_addr_t next, start_addr = addr;
255 pud_t *pud, *start_pud;
256
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000257 start_pud = pud = stage2_pud_offset(pgd, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200258 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000259 next = stage2_pud_addr_end(addr, end);
260 if (!stage2_pud_none(*pud)) {
261 if (stage2_pud_huge(*pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000262 pud_t old_pud = *pud;
263
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000264 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200265 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000266 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200267 put_page(virt_to_page(pud));
268 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000269 unmap_stage2_pmds(kvm, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200270 }
271 }
272 } while (pud++, addr = next, addr != end);
273
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000274 if (stage2_pud_table_empty(start_pud))
275 clear_stage2_pgd_entry(kvm, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200276}
277
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000278/**
279 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
280 * @kvm: The VM pointer
281 * @start: The intermediate physical base address of the range to unmap
282 * @size: The size of the area to unmap
283 *
284 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
285 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
286 * destroying the VM), otherwise another faulting VCPU may come in and mess
287 * with things behind our backs.
288 */
289static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200290{
291 pgd_t *pgd;
292 phys_addr_t addr = start, end = start + size;
293 phys_addr_t next;
294
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000295 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200296 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000297 next = stage2_pgd_addr_end(addr, end);
298 if (!stage2_pgd_none(*pgd))
299 unmap_stage2_puds(kvm, pgd, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200300 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000301}
302
Marc Zyngier9d218a12014-01-15 12:50:23 +0000303static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
304 phys_addr_t addr, phys_addr_t end)
305{
306 pte_t *pte;
307
308 pte = pte_offset_kernel(pmd, addr);
309 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100310 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000311 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000312 } while (pte++, addr += PAGE_SIZE, addr != end);
313}
314
315static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
316 phys_addr_t addr, phys_addr_t end)
317{
318 pmd_t *pmd;
319 phys_addr_t next;
320
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000321 pmd = stage2_pmd_offset(pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000322 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000323 next = stage2_pmd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000324 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000325 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000326 kvm_flush_dcache_pmd(*pmd);
327 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000328 stage2_flush_ptes(kvm, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000329 }
330 } while (pmd++, addr = next, addr != end);
331}
332
333static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
334 phys_addr_t addr, phys_addr_t end)
335{
336 pud_t *pud;
337 phys_addr_t next;
338
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000339 pud = stage2_pud_offset(pgd, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000340 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000341 next = stage2_pud_addr_end(addr, end);
342 if (!stage2_pud_none(*pud)) {
343 if (stage2_pud_huge(*pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000344 kvm_flush_dcache_pud(*pud);
345 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000346 stage2_flush_pmds(kvm, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000347 }
348 } while (pud++, addr = next, addr != end);
349}
350
351static void stage2_flush_memslot(struct kvm *kvm,
352 struct kvm_memory_slot *memslot)
353{
354 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
355 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
356 phys_addr_t next;
357 pgd_t *pgd;
358
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000359 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000360 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000361 next = stage2_pgd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000362 stage2_flush_puds(kvm, pgd, addr, next);
363 } while (pgd++, addr = next, addr != end);
364}
365
366/**
367 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
368 * @kvm: The struct kvm pointer
369 *
370 * Go through the stage 2 page tables and invalidate any cache lines
371 * backing memory already mapped to the VM.
372 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000373static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000374{
375 struct kvm_memslots *slots;
376 struct kvm_memory_slot *memslot;
377 int idx;
378
379 idx = srcu_read_lock(&kvm->srcu);
380 spin_lock(&kvm->mmu_lock);
381
382 slots = kvm_memslots(kvm);
383 kvm_for_each_memslot(memslot, slots)
384 stage2_flush_memslot(kvm, memslot);
385
386 spin_unlock(&kvm->mmu_lock);
387 srcu_read_unlock(&kvm->srcu, idx);
388}
389
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000390static void clear_hyp_pgd_entry(pgd_t *pgd)
391{
392 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
393 pgd_clear(pgd);
394 pud_free(NULL, pud_table);
395 put_page(virt_to_page(pgd));
396}
397
398static void clear_hyp_pud_entry(pud_t *pud)
399{
400 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
401 VM_BUG_ON(pud_huge(*pud));
402 pud_clear(pud);
403 pmd_free(NULL, pmd_table);
404 put_page(virt_to_page(pud));
405}
406
407static void clear_hyp_pmd_entry(pmd_t *pmd)
408{
409 pte_t *pte_table = pte_offset_kernel(pmd, 0);
410 VM_BUG_ON(pmd_thp_or_huge(*pmd));
411 pmd_clear(pmd);
412 pte_free_kernel(NULL, pte_table);
413 put_page(virt_to_page(pmd));
414}
415
416static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
417{
418 pte_t *pte, *start_pte;
419
420 start_pte = pte = pte_offset_kernel(pmd, addr);
421 do {
422 if (!pte_none(*pte)) {
423 kvm_set_pte(pte, __pte(0));
424 put_page(virt_to_page(pte));
425 }
426 } while (pte++, addr += PAGE_SIZE, addr != end);
427
428 if (hyp_pte_table_empty(start_pte))
429 clear_hyp_pmd_entry(pmd);
430}
431
432static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
433{
434 phys_addr_t next;
435 pmd_t *pmd, *start_pmd;
436
437 start_pmd = pmd = pmd_offset(pud, addr);
438 do {
439 next = pmd_addr_end(addr, end);
440 /* Hyp doesn't use huge pmds */
441 if (!pmd_none(*pmd))
442 unmap_hyp_ptes(pmd, addr, next);
443 } while (pmd++, addr = next, addr != end);
444
445 if (hyp_pmd_table_empty(start_pmd))
446 clear_hyp_pud_entry(pud);
447}
448
449static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
450{
451 phys_addr_t next;
452 pud_t *pud, *start_pud;
453
454 start_pud = pud = pud_offset(pgd, addr);
455 do {
456 next = pud_addr_end(addr, end);
457 /* Hyp doesn't use huge puds */
458 if (!pud_none(*pud))
459 unmap_hyp_pmds(pud, addr, next);
460 } while (pud++, addr = next, addr != end);
461
462 if (hyp_pud_table_empty(start_pud))
463 clear_hyp_pgd_entry(pgd);
464}
465
466static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
467{
468 pgd_t *pgd;
469 phys_addr_t addr = start, end = start + size;
470 phys_addr_t next;
471
472 /*
473 * We don't unmap anything from HYP, except at the hyp tear down.
474 * Hence, we don't have to invalidate the TLBs here.
475 */
476 pgd = pgdp + pgd_index(addr);
477 do {
478 next = pgd_addr_end(addr, end);
479 if (!pgd_none(*pgd))
480 unmap_hyp_puds(pgd, addr, next);
481 } while (pgd++, addr = next, addr != end);
482}
483
Marc Zyngier000d3992013-03-05 02:43:17 +0000484/**
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100485 * free_boot_hyp_pgd - free HYP boot page tables
486 *
487 * Free the HYP boot page tables. The bounce page is also freed.
488 */
489void free_boot_hyp_pgd(void)
490{
491 mutex_lock(&kvm_hyp_pgd_mutex);
492
493 if (boot_hyp_pgd) {
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000494 unmap_hyp_range(boot_hyp_pgd, hyp_idmap_start, PAGE_SIZE);
495 unmap_hyp_range(boot_hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200496 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100497 boot_hyp_pgd = NULL;
498 }
499
500 if (hyp_pgd)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000501 unmap_hyp_range(hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100502
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100503 mutex_unlock(&kvm_hyp_pgd_mutex);
504}
505
506/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100507 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000508 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100509 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
510 * therefore contains either mappings in the kernel memory area (above
511 * PAGE_OFFSET), or device mappings in the vmalloc range (from
512 * VMALLOC_START to VMALLOC_END).
513 *
514 * boot_hyp_pgd should only map two pages for the init code.
Marc Zyngier000d3992013-03-05 02:43:17 +0000515 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100516void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000517{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500518 unsigned long addr;
519
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100520 free_boot_hyp_pgd();
Marc Zyngier4f728272013-04-12 19:12:05 +0100521
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100522 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100523
Marc Zyngier4f728272013-04-12 19:12:05 +0100524 if (hyp_pgd) {
525 for (addr = PAGE_OFFSET; virt_addr_valid(addr); addr += PGDIR_SIZE)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000526 unmap_hyp_range(hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE);
Marc Zyngier4f728272013-04-12 19:12:05 +0100527 for (addr = VMALLOC_START; is_vmalloc_addr((void*)addr); addr += PGDIR_SIZE)
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000528 unmap_hyp_range(hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100529
Christoffer Dall38f791a2014-10-10 12:14:28 +0200530 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100531 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100532 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000533 if (merged_hyp_pgd) {
534 clear_page(merged_hyp_pgd);
535 free_page((unsigned long)merged_hyp_pgd);
536 merged_hyp_pgd = NULL;
537 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100538
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500539 mutex_unlock(&kvm_hyp_pgd_mutex);
540}
541
542static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100543 unsigned long end, unsigned long pfn,
544 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500545{
546 pte_t *pte;
547 unsigned long addr;
548
Marc Zyngier3562c762013-04-12 19:12:02 +0100549 addr = start;
550 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100551 pte = pte_offset_kernel(pmd, addr);
552 kvm_set_pte(pte, pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100553 get_page(virt_to_page(pte));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100554 kvm_flush_dcache_to_poc(pte, sizeof(*pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100555 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100556 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500557}
558
559static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100560 unsigned long end, unsigned long pfn,
561 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500562{
563 pmd_t *pmd;
564 pte_t *pte;
565 unsigned long addr, next;
566
Marc Zyngier3562c762013-04-12 19:12:02 +0100567 addr = start;
568 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100569 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500570
571 BUG_ON(pmd_sect(*pmd));
572
573 if (pmd_none(*pmd)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100574 pte = pte_alloc_one_kernel(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500575 if (!pte) {
576 kvm_err("Cannot allocate Hyp pte\n");
577 return -ENOMEM;
578 }
579 pmd_populate_kernel(NULL, pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100580 get_page(virt_to_page(pmd));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100581 kvm_flush_dcache_to_poc(pmd, sizeof(*pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500582 }
583
584 next = pmd_addr_end(addr, end);
585
Marc Zyngier6060df82013-04-12 19:12:01 +0100586 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
587 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100588 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500589
590 return 0;
591}
592
Christoffer Dall38f791a2014-10-10 12:14:28 +0200593static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
594 unsigned long end, unsigned long pfn,
595 pgprot_t prot)
596{
597 pud_t *pud;
598 pmd_t *pmd;
599 unsigned long addr, next;
600 int ret;
601
602 addr = start;
603 do {
604 pud = pud_offset(pgd, addr);
605
606 if (pud_none_or_clear_bad(pud)) {
607 pmd = pmd_alloc_one(NULL, addr);
608 if (!pmd) {
609 kvm_err("Cannot allocate Hyp pmd\n");
610 return -ENOMEM;
611 }
612 pud_populate(NULL, pud, pmd);
613 get_page(virt_to_page(pud));
614 kvm_flush_dcache_to_poc(pud, sizeof(*pud));
615 }
616
617 next = pud_addr_end(addr, end);
618 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
619 if (ret)
620 return ret;
621 pfn += (next - addr) >> PAGE_SHIFT;
622 } while (addr = next, addr != end);
623
624 return 0;
625}
626
Marc Zyngier6060df82013-04-12 19:12:01 +0100627static int __create_hyp_mappings(pgd_t *pgdp,
628 unsigned long start, unsigned long end,
629 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500630{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500631 pgd_t *pgd;
632 pud_t *pud;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500633 unsigned long addr, next;
634 int err = 0;
635
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500636 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100637 addr = start & PAGE_MASK;
638 end = PAGE_ALIGN(end);
639 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100640 pgd = pgdp + pgd_index(addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500641
Christoffer Dall38f791a2014-10-10 12:14:28 +0200642 if (pgd_none(*pgd)) {
643 pud = pud_alloc_one(NULL, addr);
644 if (!pud) {
645 kvm_err("Cannot allocate Hyp pud\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500646 err = -ENOMEM;
647 goto out;
648 }
Christoffer Dall38f791a2014-10-10 12:14:28 +0200649 pgd_populate(NULL, pgd, pud);
650 get_page(virt_to_page(pgd));
651 kvm_flush_dcache_to_poc(pgd, sizeof(*pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500652 }
653
654 next = pgd_addr_end(addr, end);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200655 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500656 if (err)
657 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100658 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100659 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500660out:
661 mutex_unlock(&kvm_hyp_pgd_mutex);
662 return err;
663}
664
Christoffer Dall40c27292013-11-15 13:14:12 -0800665static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
666{
667 if (!is_vmalloc_addr(kaddr)) {
668 BUG_ON(!virt_addr_valid(kaddr));
669 return __pa(kaddr);
670 } else {
671 return page_to_phys(vmalloc_to_page(kaddr)) +
672 offset_in_page(kaddr);
673 }
674}
675
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500676/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100677 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500678 * @from: The virtual kernel start address of the range
679 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100680 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500681 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100682 * The same virtual address as the kernel virtual address is also used
683 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
684 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500685 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100686int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500687{
Christoffer Dall40c27292013-11-15 13:14:12 -0800688 phys_addr_t phys_addr;
689 unsigned long virt_addr;
Marc Zyngier6060df82013-04-12 19:12:01 +0100690 unsigned long start = KERN_TO_HYP((unsigned long)from);
691 unsigned long end = KERN_TO_HYP((unsigned long)to);
692
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000693 if (is_kernel_in_hyp_mode())
694 return 0;
695
Christoffer Dall40c27292013-11-15 13:14:12 -0800696 start = start & PAGE_MASK;
697 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100698
Christoffer Dall40c27292013-11-15 13:14:12 -0800699 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
700 int err;
701
702 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
703 err = __create_hyp_mappings(hyp_pgd, virt_addr,
704 virt_addr + PAGE_SIZE,
705 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100706 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800707 if (err)
708 return err;
709 }
710
711 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500712}
713
714/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100715 * create_hyp_io_mappings - duplicate a kernel IO mapping into Hyp mode
716 * @from: The kernel start VA of the range
717 * @to: The kernel end VA of the range (exclusive)
Marc Zyngier6060df82013-04-12 19:12:01 +0100718 * @phys_addr: The physical start address which gets mapped
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100719 *
720 * The resulting HYP VA is the same as the kernel VA, modulo
721 * HYP_PAGE_OFFSET.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500722 */
Marc Zyngier6060df82013-04-12 19:12:01 +0100723int create_hyp_io_mappings(void *from, void *to, phys_addr_t phys_addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500724{
Marc Zyngier6060df82013-04-12 19:12:01 +0100725 unsigned long start = KERN_TO_HYP((unsigned long)from);
726 unsigned long end = KERN_TO_HYP((unsigned long)to);
727
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000728 if (is_kernel_in_hyp_mode())
729 return 0;
730
Marc Zyngier6060df82013-04-12 19:12:01 +0100731 /* Check for a valid kernel IO mapping */
732 if (!is_vmalloc_addr(from) || !is_vmalloc_addr(to - 1))
733 return -EINVAL;
734
735 return __create_hyp_mappings(hyp_pgd, start, end,
736 __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500737}
738
Christoffer Dalld5d81842013-01-20 18:28:07 -0500739/**
740 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
741 * @kvm: The KVM struct pointer for the VM.
742 *
Vladimir Murzin9d4dc6882015-11-16 11:28:16 +0000743 * Allocates only the stage-2 HW PGD level table(s) (can support either full
744 * 40-bit input addresses or limited to 32-bit input addresses). Clears the
745 * allocated pages.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500746 *
747 * Note we don't need locking here as this is only called when the VM is
748 * created, which can only be done once.
749 */
750int kvm_alloc_stage2_pgd(struct kvm *kvm)
751{
752 pgd_t *pgd;
753
754 if (kvm->arch.pgd != NULL) {
755 kvm_err("kvm_arch already initialized?\n");
756 return -EINVAL;
757 }
758
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000759 /* Allocate the HW PGD, making sure that each page gets its own refcount */
760 pgd = alloc_pages_exact(S2_PGD_SIZE, GFP_KERNEL | __GFP_ZERO);
761 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000762 return -ENOMEM;
763
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100764 kvm_clean_pgd(pgd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500765 kvm->arch.pgd = pgd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500766 return 0;
767}
768
Christoffer Dall957db102014-11-27 10:35:03 +0100769static void stage2_unmap_memslot(struct kvm *kvm,
770 struct kvm_memory_slot *memslot)
771{
772 hva_t hva = memslot->userspace_addr;
773 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
774 phys_addr_t size = PAGE_SIZE * memslot->npages;
775 hva_t reg_end = hva + size;
776
777 /*
778 * A memory region could potentially cover multiple VMAs, and any holes
779 * between them, so iterate over all of them to find out if we should
780 * unmap any of them.
781 *
782 * +--------------------------------------------+
783 * +---------------+----------------+ +----------------+
784 * | : VMA 1 | VMA 2 | | VMA 3 : |
785 * +---------------+----------------+ +----------------+
786 * | memory region |
787 * +--------------------------------------------+
788 */
789 do {
790 struct vm_area_struct *vma = find_vma(current->mm, hva);
791 hva_t vm_start, vm_end;
792
793 if (!vma || vma->vm_start >= reg_end)
794 break;
795
796 /*
797 * Take the intersection of this VMA with the memory region
798 */
799 vm_start = max(hva, vma->vm_start);
800 vm_end = min(reg_end, vma->vm_end);
801
802 if (!(vma->vm_flags & VM_PFNMAP)) {
803 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
804 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
805 }
806 hva = vm_end;
807 } while (hva < reg_end);
808}
809
810/**
811 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
812 * @kvm: The struct kvm pointer
813 *
814 * Go through the memregions and unmap any reguler RAM
815 * backing memory already mapped to the VM.
816 */
817void stage2_unmap_vm(struct kvm *kvm)
818{
819 struct kvm_memslots *slots;
820 struct kvm_memory_slot *memslot;
821 int idx;
822
823 idx = srcu_read_lock(&kvm->srcu);
824 spin_lock(&kvm->mmu_lock);
825
826 slots = kvm_memslots(kvm);
827 kvm_for_each_memslot(memslot, slots)
828 stage2_unmap_memslot(kvm, memslot);
829
830 spin_unlock(&kvm->mmu_lock);
831 srcu_read_unlock(&kvm->srcu, idx);
832}
833
Christoffer Dalld5d81842013-01-20 18:28:07 -0500834/**
835 * kvm_free_stage2_pgd - free all stage-2 tables
836 * @kvm: The KVM struct pointer for the VM.
837 *
838 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
839 * underlying level-2 and level-3 tables before freeing the actual level-1 table
840 * and setting the struct pointer to NULL.
841 *
842 * Note we don't need locking here as this is only called when the VM is
843 * destroyed, which can only be done once.
844 */
845void kvm_free_stage2_pgd(struct kvm *kvm)
846{
847 if (kvm->arch.pgd == NULL)
848 return;
849
850 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000851 /* Free the HW pgd, one page at a time */
852 free_pages_exact(kvm->arch.pgd, S2_PGD_SIZE);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500853 kvm->arch.pgd = NULL;
854}
855
Christoffer Dall38f791a2014-10-10 12:14:28 +0200856static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
857 phys_addr_t addr)
858{
859 pgd_t *pgd;
860 pud_t *pud;
861
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000862 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
863 if (WARN_ON(stage2_pgd_none(*pgd))) {
Christoffer Dall38f791a2014-10-10 12:14:28 +0200864 if (!cache)
865 return NULL;
866 pud = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000867 stage2_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200868 get_page(virt_to_page(pgd));
869 }
870
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000871 return stage2_pud_offset(pgd, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200872}
873
Christoffer Dallad361f02012-11-01 17:14:45 +0100874static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
875 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500876{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500877 pud_t *pud;
878 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500879
Christoffer Dall38f791a2014-10-10 12:14:28 +0200880 pud = stage2_get_pud(kvm, cache, addr);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000881 if (stage2_pud_none(*pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500882 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +0100883 return NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500884 pmd = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000885 stage2_pud_populate(pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500886 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100887 }
888
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000889 return stage2_pmd_offset(pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +0100890}
Christoffer Dalld5d81842013-01-20 18:28:07 -0500891
Christoffer Dallad361f02012-11-01 17:14:45 +0100892static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
893 *cache, phys_addr_t addr, const pmd_t *new_pmd)
894{
895 pmd_t *pmd, old_pmd;
896
897 pmd = stage2_get_pmd(kvm, cache, addr);
898 VM_BUG_ON(!pmd);
899
900 /*
901 * Mapping in huge pages should only happen through a fault. If a
902 * page is merged into a transparent huge page, the individual
903 * subpages of that huge page should be unmapped through MMU
904 * notifiers before we get here.
905 *
906 * Merging of CompoundPages is not supported; they should become
907 * splitting first, unmapped, merged, and mapped back in on-demand.
908 */
909 VM_BUG_ON(pmd_present(*pmd) && pmd_pfn(*pmd) != pmd_pfn(*new_pmd));
910
911 old_pmd = *pmd;
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100912 if (pmd_present(old_pmd)) {
913 pmd_clear(pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100914 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100915 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +0100916 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100917 }
918
919 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100920 return 0;
921}
922
923static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -0800924 phys_addr_t addr, const pte_t *new_pte,
925 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +0100926{
927 pmd_t *pmd;
928 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -0800929 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
930 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
931
932 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +0100933
Christoffer Dall38f791a2014-10-10 12:14:28 +0200934 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dallad361f02012-11-01 17:14:45 +0100935 pmd = stage2_get_pmd(kvm, cache, addr);
936 if (!pmd) {
937 /*
938 * Ignore calls from kvm_set_spte_hva for unallocated
939 * address ranges.
940 */
941 return 0;
942 }
943
Mario Smarduch15a49a42015-01-15 15:58:58 -0800944 /*
945 * While dirty page logging - dissolve huge PMD, then continue on to
946 * allocate page.
947 */
948 if (logging_active)
949 stage2_dissolve_pmd(kvm, addr, pmd);
950
Christoffer Dallad361f02012-11-01 17:14:45 +0100951 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -0500952 if (pmd_none(*pmd)) {
953 if (!cache)
954 return 0; /* ignore calls from kvm_set_spte_hva */
955 pte = mmu_memory_cache_alloc(cache);
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100956 kvm_clean_pte(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500957 pmd_populate_kernel(NULL, pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500958 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100959 }
960
961 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500962
963 if (iomap && pte_present(*pte))
964 return -EFAULT;
965
966 /* Create 2nd stage page table mapping - Level 3 */
967 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100968 if (pte_present(old_pte)) {
969 kvm_set_pte(pte, __pte(0));
Marc Zyngier48762762013-01-28 15:27:00 +0000970 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100971 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500972 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100973 }
Christoffer Dalld5d81842013-01-20 18:28:07 -0500974
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100975 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500976 return 0;
977}
978
Catalin Marinas06485052016-04-13 17:57:37 +0100979#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
980static int stage2_ptep_test_and_clear_young(pte_t *pte)
981{
982 if (pte_young(*pte)) {
983 *pte = pte_mkold(*pte);
984 return 1;
985 }
986 return 0;
987}
988#else
989static int stage2_ptep_test_and_clear_young(pte_t *pte)
990{
991 return __ptep_test_and_clear_young(pte);
992}
993#endif
994
995static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
996{
997 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
998}
999
Christoffer Dalld5d81842013-01-20 18:28:07 -05001000/**
1001 * kvm_phys_addr_ioremap - map a device range to guest IPA
1002 *
1003 * @kvm: The KVM pointer
1004 * @guest_ipa: The IPA at which to insert the mapping
1005 * @pa: The physical address of the device
1006 * @size: The size of the mapping
1007 */
1008int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001009 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001010{
1011 phys_addr_t addr, end;
1012 int ret = 0;
1013 unsigned long pfn;
1014 struct kvm_mmu_memory_cache cache = { 0, };
1015
1016 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1017 pfn = __phys_to_pfn(pa);
1018
1019 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001020 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001021
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001022 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001023 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001024
Christoffer Dall38f791a2014-10-10 12:14:28 +02001025 ret = mmu_topup_memory_cache(&cache, KVM_MMU_CACHE_MIN_PAGES,
1026 KVM_NR_MEM_OBJS);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001027 if (ret)
1028 goto out;
1029 spin_lock(&kvm->mmu_lock);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001030 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1031 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001032 spin_unlock(&kvm->mmu_lock);
1033 if (ret)
1034 goto out;
1035
1036 pfn++;
1037 }
1038
1039out:
1040 mmu_free_memory_cache(&cache);
1041 return ret;
1042}
1043
Dan Williamsba049e92016-01-15 16:56:11 -08001044static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001045{
Dan Williamsba049e92016-01-15 16:56:11 -08001046 kvm_pfn_t pfn = *pfnp;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001047 gfn_t gfn = *ipap >> PAGE_SHIFT;
1048
Andrea Arcangeli127393f2016-05-05 16:22:20 -07001049 if (PageTransCompoundMap(pfn_to_page(pfn))) {
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001050 unsigned long mask;
1051 /*
1052 * The address we faulted on is backed by a transparent huge
1053 * page. However, because we map the compound huge page and
1054 * not the individual tail page, we need to transfer the
1055 * refcount to the head page. We have to be careful that the
1056 * THP doesn't start to split while we are adjusting the
1057 * refcounts.
1058 *
1059 * We are sure this doesn't happen, because mmu_notifier_retry
1060 * was successful and we are holding the mmu_lock, so if this
1061 * THP is trying to split, it will be blocked in the mmu
1062 * notifier before touching any of the pages, specifically
1063 * before being able to call __split_huge_page_refcount().
1064 *
1065 * We can therefore safely transfer the refcount from PG_tail
1066 * to PG_head and switch the pfn from a tail page to the head
1067 * page accordingly.
1068 */
1069 mask = PTRS_PER_PMD - 1;
1070 VM_BUG_ON((gfn & mask) != (pfn & mask));
1071 if (pfn & mask) {
1072 *ipap &= PMD_MASK;
1073 kvm_release_pfn_clean(pfn);
1074 pfn &= ~mask;
1075 kvm_get_pfn(pfn);
1076 *pfnp = pfn;
1077 }
1078
1079 return true;
1080 }
1081
1082 return false;
1083}
1084
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001085static bool kvm_is_write_fault(struct kvm_vcpu *vcpu)
1086{
1087 if (kvm_vcpu_trap_is_iabt(vcpu))
1088 return false;
1089
1090 return kvm_vcpu_dabt_iswrite(vcpu);
1091}
1092
Mario Smarduchc6473552015-01-15 15:58:56 -08001093/**
1094 * stage2_wp_ptes - write protect PMD range
1095 * @pmd: pointer to pmd entry
1096 * @addr: range start address
1097 * @end: range end address
1098 */
1099static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1100{
1101 pte_t *pte;
1102
1103 pte = pte_offset_kernel(pmd, addr);
1104 do {
1105 if (!pte_none(*pte)) {
1106 if (!kvm_s2pte_readonly(pte))
1107 kvm_set_s2pte_readonly(pte);
1108 }
1109 } while (pte++, addr += PAGE_SIZE, addr != end);
1110}
1111
1112/**
1113 * stage2_wp_pmds - write protect PUD range
1114 * @pud: pointer to pud entry
1115 * @addr: range start address
1116 * @end: range end address
1117 */
1118static void stage2_wp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
1119{
1120 pmd_t *pmd;
1121 phys_addr_t next;
1122
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001123 pmd = stage2_pmd_offset(pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001124
1125 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001126 next = stage2_pmd_addr_end(addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001127 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001128 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001129 if (!kvm_s2pmd_readonly(pmd))
1130 kvm_set_s2pmd_readonly(pmd);
1131 } else {
1132 stage2_wp_ptes(pmd, addr, next);
1133 }
1134 }
1135 } while (pmd++, addr = next, addr != end);
1136}
1137
1138/**
1139 * stage2_wp_puds - write protect PGD range
1140 * @pgd: pointer to pgd entry
1141 * @addr: range start address
1142 * @end: range end address
1143 *
1144 * Process PUD entries, for a huge PUD we cause a panic.
1145 */
1146static void stage2_wp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
1147{
1148 pud_t *pud;
1149 phys_addr_t next;
1150
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001151 pud = stage2_pud_offset(pgd, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001152 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001153 next = stage2_pud_addr_end(addr, end);
1154 if (!stage2_pud_none(*pud)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001155 /* TODO:PUD not supported, revisit later if supported */
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001156 BUG_ON(stage2_pud_huge(*pud));
Mario Smarduchc6473552015-01-15 15:58:56 -08001157 stage2_wp_pmds(pud, addr, next);
1158 }
1159 } while (pud++, addr = next, addr != end);
1160}
1161
1162/**
1163 * stage2_wp_range() - write protect stage2 memory region range
1164 * @kvm: The KVM pointer
1165 * @addr: Start address of range
1166 * @end: End address of range
1167 */
1168static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1169{
1170 pgd_t *pgd;
1171 phys_addr_t next;
1172
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001173 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001174 do {
1175 /*
1176 * Release kvm_mmu_lock periodically if the memory region is
1177 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001178 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1179 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Mario Smarduchc6473552015-01-15 15:58:56 -08001180 * will also starve other vCPUs.
1181 */
1182 if (need_resched() || spin_needbreak(&kvm->mmu_lock))
1183 cond_resched_lock(&kvm->mmu_lock);
1184
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001185 next = stage2_pgd_addr_end(addr, end);
1186 if (stage2_pgd_present(*pgd))
Mario Smarduchc6473552015-01-15 15:58:56 -08001187 stage2_wp_puds(pgd, addr, next);
1188 } while (pgd++, addr = next, addr != end);
1189}
1190
1191/**
1192 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1193 * @kvm: The KVM pointer
1194 * @slot: The memory slot to write protect
1195 *
1196 * Called to start logging dirty pages after memory region
1197 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
1198 * all present PMD and PTEs are write protected in the memory region.
1199 * Afterwards read of dirty page log can be called.
1200 *
1201 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1202 * serializing operations for VM memory regions.
1203 */
1204void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1205{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001206 struct kvm_memslots *slots = kvm_memslots(kvm);
1207 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Mario Smarduchc6473552015-01-15 15:58:56 -08001208 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1209 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1210
1211 spin_lock(&kvm->mmu_lock);
1212 stage2_wp_range(kvm, start, end);
1213 spin_unlock(&kvm->mmu_lock);
1214 kvm_flush_remote_tlbs(kvm);
1215}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001216
1217/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001218 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001219 * @kvm: The KVM pointer
1220 * @slot: The memory slot associated with mask
1221 * @gfn_offset: The gfn offset in memory slot
1222 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1223 * slot to be write protected
1224 *
1225 * Walks bits set in mask write protects the associated pte's. Caller must
1226 * acquire kvm_mmu_lock.
1227 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001228static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001229 struct kvm_memory_slot *slot,
1230 gfn_t gfn_offset, unsigned long mask)
1231{
1232 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1233 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1234 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1235
1236 stage2_wp_range(kvm, start, end);
1237}
Mario Smarduchc6473552015-01-15 15:58:56 -08001238
Kai Huang3b0f1d02015-01-28 10:54:23 +08001239/*
1240 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1241 * dirty pages.
1242 *
1243 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1244 * enable dirty logging for them.
1245 */
1246void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1247 struct kvm_memory_slot *slot,
1248 gfn_t gfn_offset, unsigned long mask)
1249{
1250 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1251}
1252
Dan Williamsba049e92016-01-15 16:56:11 -08001253static void coherent_cache_guest_page(struct kvm_vcpu *vcpu, kvm_pfn_t pfn,
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001254 unsigned long size, bool uncached)
1255{
1256 __coherent_cache_guest_page(vcpu, pfn, size, uncached);
1257}
1258
Christoffer Dall94f8e642013-01-20 18:28:12 -05001259static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001260 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001261 unsigned long fault_status)
1262{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001263 int ret;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001264 bool write_fault, writable, hugetlb = false, force_pte = false;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001265 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001266 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001267 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001268 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001269 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001270 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001271 pgprot_t mem_type = PAGE_S2;
Laszlo Ersek840f4bf2014-11-17 14:58:52 +00001272 bool fault_ipa_uncached;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001273 bool logging_active = memslot_is_logging(memslot);
1274 unsigned long flags = 0;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001275
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001276 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001277 if (fault_status == FSC_PERM && !write_fault) {
1278 kvm_err("Unexpected L2 read permission error\n");
1279 return -EFAULT;
1280 }
1281
Christoffer Dallad361f02012-11-01 17:14:45 +01001282 /* Let's check if we will get back a huge page backed by hugetlbfs */
1283 down_read(&current->mm->mmap_sem);
1284 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001285 if (unlikely(!vma)) {
1286 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1287 up_read(&current->mm->mmap_sem);
1288 return -EFAULT;
1289 }
1290
Mario Smarduch15a49a42015-01-15 15:58:58 -08001291 if (is_vm_hugetlb_page(vma) && !logging_active) {
Christoffer Dallad361f02012-11-01 17:14:45 +01001292 hugetlb = true;
1293 gfn = (fault_ipa & PMD_MASK) >> PAGE_SHIFT;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001294 } else {
1295 /*
Marc Zyngier136d7372013-12-13 16:56:06 +00001296 * Pages belonging to memslots that don't have the same
1297 * alignment for userspace and IPA cannot be mapped using
1298 * block descriptors even if the pages belong to a THP for
1299 * the process, because the stage-2 block descriptor will
1300 * cover more than a single THP and we loose atomicity for
1301 * unmapping, updates, and splits of the THP or other pages
1302 * in the stage-2 block range.
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001303 */
Marc Zyngier136d7372013-12-13 16:56:06 +00001304 if ((memslot->userspace_addr & ~PMD_MASK) !=
1305 ((memslot->base_gfn << PAGE_SHIFT) & ~PMD_MASK))
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001306 force_pte = true;
Christoffer Dallad361f02012-11-01 17:14:45 +01001307 }
1308 up_read(&current->mm->mmap_sem);
1309
Christoffer Dall94f8e642013-01-20 18:28:12 -05001310 /* We need minimum second+third level pages */
Christoffer Dall38f791a2014-10-10 12:14:28 +02001311 ret = mmu_topup_memory_cache(memcache, KVM_MMU_CACHE_MIN_PAGES,
1312 KVM_NR_MEM_OBJS);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001313 if (ret)
1314 return ret;
1315
1316 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1317 /*
1318 * Ensure the read of mmu_notifier_seq happens before we call
1319 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1320 * the page we just got a reference to gets unmapped before we have a
1321 * chance to grab the mmu_lock, which ensure that if the page gets
1322 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1323 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1324 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1325 */
1326 smp_rmb();
1327
Christoffer Dallad361f02012-11-01 17:14:45 +01001328 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001329 if (is_error_pfn(pfn))
1330 return -EFAULT;
1331
Mario Smarduch15a49a42015-01-15 15:58:58 -08001332 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001333 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001334 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1335 } else if (logging_active) {
1336 /*
1337 * Faults on pages in a memslot with logging enabled
1338 * should not be mapped with huge pages (it introduces churn
1339 * and performance degradation), so force a pte mapping.
1340 */
1341 force_pte = true;
1342 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1343
1344 /*
1345 * Only actually map the page as writable if this was a write
1346 * fault.
1347 */
1348 if (!write_fault)
1349 writable = false;
1350 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001351
Christoffer Dallad361f02012-11-01 17:14:45 +01001352 spin_lock(&kvm->mmu_lock);
1353 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001354 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001355
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001356 if (!hugetlb && !force_pte)
1357 hugetlb = transparent_hugepage_adjust(&pfn, &fault_ipa);
Christoffer Dallad361f02012-11-01 17:14:45 +01001358
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001359 fault_ipa_uncached = memslot->flags & KVM_MEMSLOT_INCOHERENT;
Laszlo Ersek840f4bf2014-11-17 14:58:52 +00001360
Christoffer Dallad361f02012-11-01 17:14:45 +01001361 if (hugetlb) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001362 pmd_t new_pmd = pfn_pmd(pfn, mem_type);
Christoffer Dallad361f02012-11-01 17:14:45 +01001363 new_pmd = pmd_mkhuge(new_pmd);
1364 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001365 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001366 kvm_set_pfn_dirty(pfn);
1367 }
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001368 coherent_cache_guest_page(vcpu, pfn, PMD_SIZE, fault_ipa_uncached);
Christoffer Dallad361f02012-11-01 17:14:45 +01001369 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1370 } else {
Kim Phillipsb8865762014-06-26 01:45:51 +01001371 pte_t new_pte = pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001372
Christoffer Dallad361f02012-11-01 17:14:45 +01001373 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001374 new_pte = kvm_s2pte_mkwrite(new_pte);
Christoffer Dallad361f02012-11-01 17:14:45 +01001375 kvm_set_pfn_dirty(pfn);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001376 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001377 }
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001378 coherent_cache_guest_page(vcpu, pfn, PAGE_SIZE, fault_ipa_uncached);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001379 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001380 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001381
Christoffer Dall94f8e642013-01-20 18:28:12 -05001382out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001383 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001384 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001385 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001386 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001387}
1388
Marc Zyngieraeda9132015-03-12 18:16:52 +00001389/*
1390 * Resolve the access fault by making the page young again.
1391 * Note that because the faulting entry is guaranteed not to be
1392 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001393 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1394 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001395 */
1396static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1397{
1398 pmd_t *pmd;
1399 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001400 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001401 bool pfn_valid = false;
1402
1403 trace_kvm_access_fault(fault_ipa);
1404
1405 spin_lock(&vcpu->kvm->mmu_lock);
1406
1407 pmd = stage2_get_pmd(vcpu->kvm, NULL, fault_ipa);
1408 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1409 goto out;
1410
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001411 if (pmd_thp_or_huge(*pmd)) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001412 *pmd = pmd_mkyoung(*pmd);
1413 pfn = pmd_pfn(*pmd);
1414 pfn_valid = true;
1415 goto out;
1416 }
1417
1418 pte = pte_offset_kernel(pmd, fault_ipa);
1419 if (pte_none(*pte)) /* Nothing there either */
1420 goto out;
1421
1422 *pte = pte_mkyoung(*pte); /* Just a page... */
1423 pfn = pte_pfn(*pte);
1424 pfn_valid = true;
1425out:
1426 spin_unlock(&vcpu->kvm->mmu_lock);
1427 if (pfn_valid)
1428 kvm_set_pfn_accessed(pfn);
1429}
1430
Christoffer Dall94f8e642013-01-20 18:28:12 -05001431/**
1432 * kvm_handle_guest_abort - handles all 2nd stage aborts
1433 * @vcpu: the VCPU pointer
1434 * @run: the kvm_run structure
1435 *
1436 * Any abort that gets to the host is almost guaranteed to be caused by a
1437 * missing second stage translation table entry, which can mean that either the
1438 * guest simply needs more memory and we must allocate an appropriate page or it
1439 * can mean that the guest tried to access I/O memory, which is emulated by user
1440 * space. The distinction is based on the IPA causing the fault and whether this
1441 * memory region has been registered as standard RAM by user space.
1442 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001443int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1444{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001445 unsigned long fault_status;
1446 phys_addr_t fault_ipa;
1447 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001448 unsigned long hva;
1449 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001450 gfn_t gfn;
1451 int ret, idx;
1452
Marc Zyngier52d1dba2012-10-15 10:33:38 +01001453 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Marc Zyngier7393b592012-09-17 19:27:09 +01001454 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001455
Marc Zyngier7393b592012-09-17 19:27:09 +01001456 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1457 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001458
1459 /* Check the stage-2 fault is trans. fault or write fault */
Christoffer Dall0496daa52014-09-26 12:29:34 +02001460 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
Marc Zyngier35307b92015-03-12 18:16:51 +00001461 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1462 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001463 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1464 kvm_vcpu_trap_get_class(vcpu),
1465 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1466 (unsigned long)kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001467 return -EFAULT;
1468 }
1469
1470 idx = srcu_read_lock(&vcpu->kvm->srcu);
1471
1472 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001473 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1474 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001475 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001476 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001477 if (is_iabt) {
1478 /* Prefetch Abort on I/O address */
Marc Zyngier7393b592012-09-17 19:27:09 +01001479 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001480 ret = 1;
1481 goto out_unlock;
1482 }
1483
Marc Zyngiercfe39502012-12-12 14:42:09 +00001484 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001485 * Check for a cache maintenance operation. Since we
1486 * ended-up here, we know it is outside of any memory
1487 * slot. But we can't find out if that is for a device,
1488 * or if the guest is just being stupid. The only thing
1489 * we know for sure is that this range cannot be cached.
1490 *
1491 * So let's assume that the guest is just being
1492 * cautious, and skip the instruction.
1493 */
1494 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1495 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1496 ret = 1;
1497 goto out_unlock;
1498 }
1499
1500 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001501 * The IPA is reported as [MAX:12], so we need to
1502 * complement it with the bottom 12 bits from the
1503 * faulting VA. This is always 12 bits, irrespective
1504 * of the page size.
1505 */
1506 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -05001507 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001508 goto out_unlock;
1509 }
1510
Christoffer Dallc3058d52014-10-10 12:14:29 +02001511 /* Userspace should not be able to register out-of-bounds IPAs */
1512 VM_BUG_ON(fault_ipa >= KVM_PHYS_SIZE);
1513
Marc Zyngieraeda9132015-03-12 18:16:52 +00001514 if (fault_status == FSC_ACCESS) {
1515 handle_access_fault(vcpu, fault_ipa);
1516 ret = 1;
1517 goto out_unlock;
1518 }
1519
Christoffer Dall98047882014-08-19 12:18:04 +02001520 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001521 if (ret == 0)
1522 ret = 1;
1523out_unlock:
1524 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1525 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001526}
1527
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001528static int handle_hva_to_gpa(struct kvm *kvm,
1529 unsigned long start,
1530 unsigned long end,
1531 int (*handler)(struct kvm *kvm,
1532 gpa_t gpa, void *data),
1533 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001534{
1535 struct kvm_memslots *slots;
1536 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001537 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001538
1539 slots = kvm_memslots(kvm);
1540
1541 /* we only care about the pages that the guest sees */
1542 kvm_for_each_memslot(memslot, slots) {
1543 unsigned long hva_start, hva_end;
1544 gfn_t gfn, gfn_end;
1545
1546 hva_start = max(start, memslot->userspace_addr);
1547 hva_end = min(end, memslot->userspace_addr +
1548 (memslot->npages << PAGE_SHIFT));
1549 if (hva_start >= hva_end)
1550 continue;
1551
1552 /*
1553 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1554 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1555 */
1556 gfn = hva_to_gfn_memslot(hva_start, memslot);
1557 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
1558
1559 for (; gfn < gfn_end; ++gfn) {
1560 gpa_t gpa = gfn << PAGE_SHIFT;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001561 ret |= handler(kvm, gpa, data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001562 }
1563 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001564
1565 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001566}
1567
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001568static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001569{
1570 unmap_stage2_range(kvm, gpa, PAGE_SIZE);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001571 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001572}
1573
1574int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1575{
1576 unsigned long end = hva + PAGE_SIZE;
1577
1578 if (!kvm->arch.pgd)
1579 return 0;
1580
1581 trace_kvm_unmap_hva(hva);
1582 handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL);
1583 return 0;
1584}
1585
1586int kvm_unmap_hva_range(struct kvm *kvm,
1587 unsigned long start, unsigned long end)
1588{
1589 if (!kvm->arch.pgd)
1590 return 0;
1591
1592 trace_kvm_unmap_hva_range(start, end);
1593 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
1594 return 0;
1595}
1596
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001597static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001598{
1599 pte_t *pte = (pte_t *)data;
1600
Mario Smarduch15a49a42015-01-15 15:58:58 -08001601 /*
1602 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1603 * flag clear because MMU notifiers will have unmapped a huge PMD before
1604 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1605 * therefore stage2_set_pte() never needs to clear out a huge PMD
1606 * through this calling path.
1607 */
1608 stage2_set_pte(kvm, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001609 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001610}
1611
1612
1613void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1614{
1615 unsigned long end = hva + PAGE_SIZE;
1616 pte_t stage2_pte;
1617
1618 if (!kvm->arch.pgd)
1619 return;
1620
1621 trace_kvm_set_spte_hva(hva);
1622 stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2);
1623 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
1624}
1625
Marc Zyngier35307b92015-03-12 18:16:51 +00001626static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, void *data)
1627{
1628 pmd_t *pmd;
1629 pte_t *pte;
1630
1631 pmd = stage2_get_pmd(kvm, NULL, gpa);
1632 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1633 return 0;
1634
Catalin Marinas06485052016-04-13 17:57:37 +01001635 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1636 return stage2_pmdp_test_and_clear_young(pmd);
Marc Zyngier35307b92015-03-12 18:16:51 +00001637
1638 pte = pte_offset_kernel(pmd, gpa);
1639 if (pte_none(*pte))
1640 return 0;
1641
Catalin Marinas06485052016-04-13 17:57:37 +01001642 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001643}
1644
1645static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, void *data)
1646{
1647 pmd_t *pmd;
1648 pte_t *pte;
1649
1650 pmd = stage2_get_pmd(kvm, NULL, gpa);
1651 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1652 return 0;
1653
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001654 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
Marc Zyngier35307b92015-03-12 18:16:51 +00001655 return pmd_young(*pmd);
1656
1657 pte = pte_offset_kernel(pmd, gpa);
1658 if (!pte_none(*pte)) /* Just a page... */
1659 return pte_young(*pte);
1660
1661 return 0;
1662}
1663
1664int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1665{
1666 trace_kvm_age_hva(start, end);
1667 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1668}
1669
1670int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1671{
1672 trace_kvm_test_age_hva(hva);
1673 return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
1674}
1675
Christoffer Dalld5d81842013-01-20 18:28:07 -05001676void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
1677{
1678 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
1679}
1680
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001681phys_addr_t kvm_mmu_get_httbr(void)
1682{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001683 if (__kvm_cpu_uses_extended_idmap())
1684 return virt_to_phys(merged_hyp_pgd);
1685 else
1686 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001687}
1688
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001689phys_addr_t kvm_mmu_get_boot_httbr(void)
1690{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001691 if (__kvm_cpu_uses_extended_idmap())
1692 return virt_to_phys(merged_hyp_pgd);
1693 else
1694 return virt_to_phys(boot_hyp_pgd);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001695}
1696
1697phys_addr_t kvm_get_idmap_vector(void)
1698{
1699 return hyp_idmap_vector;
1700}
1701
AKASHI Takahiro67f69192016-04-27 17:47:05 +01001702phys_addr_t kvm_get_idmap_start(void)
1703{
1704 return hyp_idmap_start;
1705}
1706
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001707int kvm_mmu_init(void)
1708{
Marc Zyngier2fb41052013-04-12 19:12:03 +01001709 int err;
1710
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001711 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
1712 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
1713 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001714
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00001715 /*
1716 * We rely on the linker script to ensure at build time that the HYP
1717 * init code does not cross a page boundary.
1718 */
1719 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001720
Christoffer Dall38f791a2014-10-10 12:14:28 +02001721 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
1722 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Mark Salter5d4e08c2014-03-28 14:25:19 +00001723
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001724 if (!hyp_pgd || !boot_hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001725 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01001726 err = -ENOMEM;
1727 goto out;
1728 }
1729
1730 /* Create the idmap in the boot page tables */
1731 err = __create_hyp_mappings(boot_hyp_pgd,
1732 hyp_idmap_start, hyp_idmap_end,
1733 __phys_to_pfn(hyp_idmap_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001734 PAGE_HYP_EXEC);
Marc Zyngier2fb41052013-04-12 19:12:03 +01001735
1736 if (err) {
1737 kvm_err("Failed to idmap %lx-%lx\n",
1738 hyp_idmap_start, hyp_idmap_end);
1739 goto out;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001740 }
1741
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001742 if (__kvm_cpu_uses_extended_idmap()) {
1743 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
1744 if (!merged_hyp_pgd) {
1745 kvm_err("Failed to allocate extra HYP pgd\n");
1746 goto out;
1747 }
1748 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
1749 hyp_idmap_start);
1750 return 0;
1751 }
1752
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001753 /* Map the very same page at the trampoline VA */
1754 err = __create_hyp_mappings(boot_hyp_pgd,
1755 TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE,
1756 __phys_to_pfn(hyp_idmap_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001757 PAGE_HYP_EXEC);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001758 if (err) {
1759 kvm_err("Failed to map trampoline @%lx into boot HYP pgd\n",
1760 TRAMPOLINE_VA);
1761 goto out;
1762 }
1763
1764 /* Map the same page again into the runtime page tables */
1765 err = __create_hyp_mappings(hyp_pgd,
1766 TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE,
1767 __phys_to_pfn(hyp_idmap_start),
Marc Zyngier59002702016-06-13 15:00:48 +01001768 PAGE_HYP_EXEC);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001769 if (err) {
1770 kvm_err("Failed to map trampoline @%lx into runtime HYP pgd\n",
1771 TRAMPOLINE_VA);
1772 goto out;
1773 }
1774
Christoffer Dalld5d81842013-01-20 18:28:07 -05001775 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01001776out:
Marc Zyngier4f728272013-04-12 19:12:05 +01001777 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01001778 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001779}
Eric Augerdf6ce242014-06-06 11:10:23 +02001780
1781void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001782 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001783 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001784 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02001785 enum kvm_mr_change change)
1786{
Mario Smarduchc6473552015-01-15 15:58:56 -08001787 /*
1788 * At this point memslot has been committed and there is an
1789 * allocated dirty_bitmap[], dirty pages will be be tracked while the
1790 * memory slot is write protected.
1791 */
1792 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
1793 kvm_mmu_wp_memory_region(kvm, mem->slot);
Eric Augerdf6ce242014-06-06 11:10:23 +02001794}
1795
1796int kvm_arch_prepare_memory_region(struct kvm *kvm,
1797 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001798 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001799 enum kvm_mr_change change)
1800{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001801 hva_t hva = mem->userspace_addr;
1802 hva_t reg_end = hva + mem->memory_size;
1803 bool writable = !(mem->flags & KVM_MEM_READONLY);
1804 int ret = 0;
1805
Mario Smarduch15a49a42015-01-15 15:58:58 -08001806 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
1807 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001808 return 0;
1809
1810 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02001811 * Prevent userspace from creating a memory region outside of the IPA
1812 * space addressable by the KVM guest IPA space.
1813 */
1814 if (memslot->base_gfn + memslot->npages >=
1815 (KVM_PHYS_SIZE >> PAGE_SHIFT))
1816 return -EFAULT;
1817
1818 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001819 * A memory region could potentially cover multiple VMAs, and any holes
1820 * between them, so iterate over all of them to find out if we can map
1821 * any of them right now.
1822 *
1823 * +--------------------------------------------+
1824 * +---------------+----------------+ +----------------+
1825 * | : VMA 1 | VMA 2 | | VMA 3 : |
1826 * +---------------+----------------+ +----------------+
1827 * | memory region |
1828 * +--------------------------------------------+
1829 */
1830 do {
1831 struct vm_area_struct *vma = find_vma(current->mm, hva);
1832 hva_t vm_start, vm_end;
1833
1834 if (!vma || vma->vm_start >= reg_end)
1835 break;
1836
1837 /*
1838 * Mapping a read-only VMA is only allowed if the
1839 * memory region is configured as read-only.
1840 */
1841 if (writable && !(vma->vm_flags & VM_WRITE)) {
1842 ret = -EPERM;
1843 break;
1844 }
1845
1846 /*
1847 * Take the intersection of this VMA with the memory region
1848 */
1849 vm_start = max(hva, vma->vm_start);
1850 vm_end = min(reg_end, vma->vm_end);
1851
1852 if (vma->vm_flags & VM_PFNMAP) {
1853 gpa_t gpa = mem->guest_phys_addr +
1854 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02001855 phys_addr_t pa;
1856
1857 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
1858 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001859
Mario Smarduch15a49a42015-01-15 15:58:58 -08001860 /* IO region dirty page logging not allowed */
1861 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES)
1862 return -EINVAL;
1863
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001864 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
1865 vm_end - vm_start,
1866 writable);
1867 if (ret)
1868 break;
1869 }
1870 hva = vm_end;
1871 } while (hva < reg_end);
1872
Mario Smarduch15a49a42015-01-15 15:58:58 -08001873 if (change == KVM_MR_FLAGS_ONLY)
1874 return ret;
1875
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001876 spin_lock(&kvm->mmu_lock);
1877 if (ret)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001878 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001879 else
1880 stage2_flush_memslot(kvm, memslot);
1881 spin_unlock(&kvm->mmu_lock);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001882 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02001883}
1884
1885void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
1886 struct kvm_memory_slot *dont)
1887{
1888}
1889
1890int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
1891 unsigned long npages)
1892{
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001893 /*
1894 * Readonly memslots are not incoherent with the caches by definition,
1895 * but in practice, they are used mostly to emulate ROMs or NOR flashes
1896 * that the guest may consider devices and hence map as uncached.
1897 * To prevent incoherency issues in these cases, tag all readonly
1898 * regions as incoherent.
1899 */
1900 if (slot->flags & KVM_MEM_READONLY)
1901 slot->flags |= KVM_MEMSLOT_INCOHERENT;
Eric Augerdf6ce242014-06-06 11:10:23 +02001902 return 0;
1903}
1904
Paolo Bonzini15f46012015-05-17 21:26:08 +02001905void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Eric Augerdf6ce242014-06-06 11:10:23 +02001906{
1907}
1908
1909void kvm_arch_flush_shadow_all(struct kvm *kvm)
1910{
1911}
1912
1913void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
1914 struct kvm_memory_slot *slot)
1915{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001916 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
1917 phys_addr_t size = slot->npages << PAGE_SHIFT;
1918
1919 spin_lock(&kvm->mmu_lock);
1920 unmap_stage2_range(kvm, gpa, size);
1921 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02001922}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00001923
1924/*
1925 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
1926 *
1927 * Main problems:
1928 * - S/W ops are local to a CPU (not broadcast)
1929 * - We have line migration behind our back (speculation)
1930 * - System caches don't support S/W at all (damn!)
1931 *
1932 * In the face of the above, the best we can do is to try and convert
1933 * S/W ops to VA ops. Because the guest is not allowed to infer the
1934 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
1935 * which is a rather good thing for us.
1936 *
1937 * Also, it is only used when turning caches on/off ("The expected
1938 * usage of the cache maintenance instructions that operate by set/way
1939 * is associated with the cache maintenance instructions associated
1940 * with the powerdown and powerup of caches, if this is required by
1941 * the implementation.").
1942 *
1943 * We use the following policy:
1944 *
1945 * - If we trap a S/W operation, we enable VM trapping to detect
1946 * caches being turned on/off, and do a full clean.
1947 *
1948 * - We flush the caches on both caches being turned on and off.
1949 *
1950 * - Once the caches are enabled, we stop trapping VM ops.
1951 */
1952void kvm_set_way_flush(struct kvm_vcpu *vcpu)
1953{
1954 unsigned long hcr = vcpu_get_hcr(vcpu);
1955
1956 /*
1957 * If this is the first time we do a S/W operation
1958 * (i.e. HCR_TVM not set) flush the whole memory, and set the
1959 * VM trapping.
1960 *
1961 * Otherwise, rely on the VM trapping to wait for the MMU +
1962 * Caches to be turned off. At that point, we'll be able to
1963 * clean the caches again.
1964 */
1965 if (!(hcr & HCR_TVM)) {
1966 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
1967 vcpu_has_cache_enabled(vcpu));
1968 stage2_flush_vm(vcpu->kvm);
1969 vcpu_set_hcr(vcpu, hcr | HCR_TVM);
1970 }
1971}
1972
1973void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
1974{
1975 bool now_enabled = vcpu_has_cache_enabled(vcpu);
1976
1977 /*
1978 * If switching the MMU+caches on, need to invalidate the caches.
1979 * If switching it off, need to clean the caches.
1980 * Clean + invalidate does the trick always.
1981 */
1982 if (now_enabled != was_enabled)
1983 stage2_flush_vm(vcpu->kvm);
1984
1985 /* Caches are now on, stop trapping VM ops (until a S/W op) */
1986 if (now_enabled)
1987 vcpu_set_hcr(vcpu, vcpu_get_hcr(vcpu) & ~HCR_TVM);
1988
1989 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
1990}