blob: 52b0ee31ebee0d77a2f07775af9dd08783d02659 [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
Suzuki K Poulose9163ee232016-03-22 17:01:21 +000046#define S2_PGD_SIZE (PTRS_PER_S2_PGD * sizeof(pgd_t))
Christoffer Dall38f791a2014-10-10 12:14:28 +020047#define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
Mark Salter5d4e08c2014-03-28 14:25:19 +000048
Mario Smarduch15a49a42015-01-15 15:58:58 -080049#define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
50#define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
51
52static bool memslot_is_logging(struct kvm_memory_slot *memslot)
53{
Mario Smarduch15a49a42015-01-15 15:58:58 -080054 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
Mario Smarduch72760302015-01-15 15:59:01 -080055}
56
57/**
58 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
59 * @kvm: pointer to kvm structure.
60 *
61 * Interface to HYP function to flush all VM TLB entries
62 */
63void kvm_flush_remote_tlbs(struct kvm *kvm)
64{
65 kvm_call_hyp(__kvm_tlb_flush_vmid, kvm);
Mario Smarduch15a49a42015-01-15 15:58:58 -080066}
Christoffer Dallad361f02012-11-01 17:14:45 +010067
Marc Zyngier48762762013-01-28 15:27:00 +000068static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
Christoffer Dalld5d81842013-01-20 18:28:07 -050069{
Suzuki K Poulose8684e702016-03-22 17:14:25 +000070 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
Christoffer Dalld5d81842013-01-20 18:28:07 -050071}
72
Marc Zyngier363ef892014-12-19 16:48:06 +000073/*
74 * D-Cache management functions. They take the page table entries by
75 * value, as they are flushing the cache using the kernel mapping (or
76 * kmap on 32bit).
77 */
78static void kvm_flush_dcache_pte(pte_t pte)
79{
80 __kvm_flush_dcache_pte(pte);
81}
82
83static void kvm_flush_dcache_pmd(pmd_t pmd)
84{
85 __kvm_flush_dcache_pmd(pmd);
86}
87
88static void kvm_flush_dcache_pud(pud_t pud)
89{
90 __kvm_flush_dcache_pud(pud);
91}
92
Ard Biesheuvele6fab542015-11-10 15:11:20 +010093static bool kvm_is_device_pfn(unsigned long pfn)
94{
95 return !pfn_valid(pfn);
96}
97
Mario Smarduch15a49a42015-01-15 15:58:58 -080098/**
99 * stage2_dissolve_pmd() - clear and flush huge PMD entry
100 * @kvm: pointer to kvm structure.
101 * @addr: IPA
102 * @pmd: pmd pointer for IPA
103 *
104 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs. Marks all
105 * pages in the range dirty.
106 */
107static void stage2_dissolve_pmd(struct kvm *kvm, phys_addr_t addr, pmd_t *pmd)
108{
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000109 if (!pmd_thp_or_huge(*pmd))
Mario Smarduch15a49a42015-01-15 15:58:58 -0800110 return;
111
112 pmd_clear(pmd);
113 kvm_tlb_flush_vmid_ipa(kvm, addr);
114 put_page(virt_to_page(pmd));
115}
116
Christoffer Dalld5d81842013-01-20 18:28:07 -0500117static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
118 int min, int max)
119{
120 void *page;
121
122 BUG_ON(max > KVM_NR_MEM_OBJS);
123 if (cache->nobjs >= min)
124 return 0;
125 while (cache->nobjs < max) {
126 page = (void *)__get_free_page(PGALLOC_GFP);
127 if (!page)
128 return -ENOMEM;
129 cache->objects[cache->nobjs++] = page;
130 }
131 return 0;
132}
133
134static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
135{
136 while (mc->nobjs)
137 free_page((unsigned long)mc->objects[--mc->nobjs]);
138}
139
140static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
141{
142 void *p;
143
144 BUG_ON(!mc || !mc->nobjs);
145 p = mc->objects[--mc->nobjs];
146 return p;
147}
148
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000149static void clear_stage2_pgd_entry(struct kvm *kvm, pgd_t *pgd, phys_addr_t addr)
Marc Zyngier979acd52013-08-06 13:05:48 +0100150{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000151 pud_t *pud_table __maybe_unused = stage2_pud_offset(pgd, 0UL);
152 stage2_pgd_clear(pgd);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200153 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000154 stage2_pud_free(pud_table);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200155 put_page(virt_to_page(pgd));
Marc Zyngier979acd52013-08-06 13:05:48 +0100156}
157
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000158static void clear_stage2_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500159{
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000160 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(pud, 0);
161 VM_BUG_ON(stage2_pud_huge(*pud));
162 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200163 kvm_tlb_flush_vmid_ipa(kvm, addr);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000164 stage2_pmd_free(pmd_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100165 put_page(virt_to_page(pud));
166}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500167
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000168static void clear_stage2_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100169{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200170 pte_t *pte_table = pte_offset_kernel(pmd, 0);
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000171 VM_BUG_ON(pmd_thp_or_huge(*pmd));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200172 pmd_clear(pmd);
173 kvm_tlb_flush_vmid_ipa(kvm, addr);
174 pte_free_kernel(NULL, pte_table);
Marc Zyngier4f728272013-04-12 19:12:05 +0100175 put_page(virt_to_page(pmd));
176}
177
Marc Zyngier363ef892014-12-19 16:48:06 +0000178/*
179 * Unmapping vs dcache management:
180 *
181 * If a guest maps certain memory pages as uncached, all writes will
182 * bypass the data cache and go directly to RAM. However, the CPUs
183 * can still speculate reads (not writes) and fill cache lines with
184 * data.
185 *
186 * Those cache lines will be *clean* cache lines though, so a
187 * clean+invalidate operation is equivalent to an invalidate
188 * operation, because no cache lines are marked dirty.
189 *
190 * Those clean cache lines could be filled prior to an uncached write
191 * by the guest, and the cache coherent IO subsystem would therefore
192 * end up writing old data to disk.
193 *
194 * This is why right after unmapping a page/section and invalidating
195 * the corresponding TLBs, we call kvm_flush_dcache_p*() to make sure
196 * the IO subsystem will never hit in the cache.
197 */
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000198static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200199 phys_addr_t addr, phys_addr_t end)
Marc Zyngier4f728272013-04-12 19:12:05 +0100200{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200201 phys_addr_t start_addr = addr;
202 pte_t *pte, *start_pte;
203
204 start_pte = pte = pte_offset_kernel(pmd, addr);
205 do {
206 if (!pte_none(*pte)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000207 pte_t old_pte = *pte;
208
Christoffer Dall4f853a72014-05-09 23:31:31 +0200209 kvm_set_pte(pte, __pte(0));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200210 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000211
212 /* No need to invalidate the cache for device mappings */
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100213 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000214 kvm_flush_dcache_pte(old_pte);
215
216 put_page(virt_to_page(pte));
Christoffer Dall4f853a72014-05-09 23:31:31 +0200217 }
218 } while (pte++, addr += PAGE_SIZE, addr != end);
219
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000220 if (stage2_pte_table_empty(start_pte))
221 clear_stage2_pmd_entry(kvm, pmd, start_addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500222}
223
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000224static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200225 phys_addr_t addr, phys_addr_t end)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500226{
Christoffer Dall4f853a72014-05-09 23:31:31 +0200227 phys_addr_t next, start_addr = addr;
228 pmd_t *pmd, *start_pmd;
Marc Zyngier000d3992013-03-05 02:43:17 +0000229
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000230 start_pmd = pmd = stage2_pmd_offset(pud, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200231 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000232 next = stage2_pmd_addr_end(addr, end);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200233 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000234 if (pmd_thp_or_huge(*pmd)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000235 pmd_t old_pmd = *pmd;
236
Christoffer Dall4f853a72014-05-09 23:31:31 +0200237 pmd_clear(pmd);
238 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000239
240 kvm_flush_dcache_pmd(old_pmd);
241
Christoffer Dall4f853a72014-05-09 23:31:31 +0200242 put_page(virt_to_page(pmd));
243 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000244 unmap_stage2_ptes(kvm, pmd, addr, next);
Marc Zyngier4f728272013-04-12 19:12:05 +0100245 }
246 }
Christoffer Dall4f853a72014-05-09 23:31:31 +0200247 } while (pmd++, addr = next, addr != end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100248
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000249 if (stage2_pmd_table_empty(start_pmd))
250 clear_stage2_pud_entry(kvm, pud, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200251}
252
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000253static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
Christoffer Dall4f853a72014-05-09 23:31:31 +0200254 phys_addr_t addr, phys_addr_t end)
255{
256 phys_addr_t next, start_addr = addr;
257 pud_t *pud, *start_pud;
258
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000259 start_pud = pud = stage2_pud_offset(pgd, addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200260 do {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000261 next = stage2_pud_addr_end(addr, end);
262 if (!stage2_pud_none(*pud)) {
263 if (stage2_pud_huge(*pud)) {
Marc Zyngier363ef892014-12-19 16:48:06 +0000264 pud_t old_pud = *pud;
265
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000266 stage2_pud_clear(pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200267 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier363ef892014-12-19 16:48:06 +0000268 kvm_flush_dcache_pud(old_pud);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200269 put_page(virt_to_page(pud));
270 } else {
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000271 unmap_stage2_pmds(kvm, pud, addr, next);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200272 }
273 }
274 } while (pud++, addr = next, addr != end);
275
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000276 if (stage2_pud_table_empty(start_pud))
277 clear_stage2_pgd_entry(kvm, pgd, start_addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200278}
279
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000280/**
281 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
282 * @kvm: The VM pointer
283 * @start: The intermediate physical base address of the range to unmap
284 * @size: The size of the area to unmap
285 *
286 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
287 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
288 * destroying the VM), otherwise another faulting VCPU may come in and mess
289 * with things behind our backs.
290 */
291static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200292{
293 pgd_t *pgd;
294 phys_addr_t addr = start, end = start + size;
295 phys_addr_t next;
296
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100297 assert_spin_locked(&kvm->mmu_lock);
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000298 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200299 do {
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +0100300 /*
301 * Make sure the page table is still active, as another thread
302 * could have possibly freed the page table, while we released
303 * the lock.
304 */
305 if (!READ_ONCE(kvm->arch.pgd))
306 break;
Suzuki K Poulose7a1c8312016-03-23 12:08:02 +0000307 next = stage2_pgd_addr_end(addr, end);
308 if (!stage2_pgd_none(*pgd))
309 unmap_stage2_puds(kvm, pgd, addr, next);
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100310 /*
311 * If the range is too large, release the kvm->mmu_lock
312 * to prevent starvation and lockup detector warnings.
313 */
314 if (next != end)
315 cond_resched_lock(&kvm->mmu_lock);
Christoffer Dall4f853a72014-05-09 23:31:31 +0200316 } while (pgd++, addr = next, addr != end);
Marc Zyngier000d3992013-03-05 02:43:17 +0000317}
318
Marc Zyngier9d218a12014-01-15 12:50:23 +0000319static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
320 phys_addr_t addr, phys_addr_t end)
321{
322 pte_t *pte;
323
324 pte = pte_offset_kernel(pmd, addr);
325 do {
Ard Biesheuvel0de58f82015-12-03 09:25:22 +0100326 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
Marc Zyngier363ef892014-12-19 16:48:06 +0000327 kvm_flush_dcache_pte(*pte);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000328 } while (pte++, addr += PAGE_SIZE, addr != end);
329}
330
331static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
332 phys_addr_t addr, phys_addr_t end)
333{
334 pmd_t *pmd;
335 phys_addr_t next;
336
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000337 pmd = stage2_pmd_offset(pud, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000338 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000339 next = stage2_pmd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000340 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +0000341 if (pmd_thp_or_huge(*pmd))
Marc Zyngier363ef892014-12-19 16:48:06 +0000342 kvm_flush_dcache_pmd(*pmd);
343 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000344 stage2_flush_ptes(kvm, pmd, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000345 }
346 } while (pmd++, addr = next, addr != end);
347}
348
349static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
350 phys_addr_t addr, phys_addr_t end)
351{
352 pud_t *pud;
353 phys_addr_t next;
354
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000355 pud = stage2_pud_offset(pgd, addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000356 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000357 next = stage2_pud_addr_end(addr, end);
358 if (!stage2_pud_none(*pud)) {
359 if (stage2_pud_huge(*pud))
Marc Zyngier363ef892014-12-19 16:48:06 +0000360 kvm_flush_dcache_pud(*pud);
361 else
Marc Zyngier9d218a12014-01-15 12:50:23 +0000362 stage2_flush_pmds(kvm, pud, addr, next);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000363 }
364 } while (pud++, addr = next, addr != end);
365}
366
367static void stage2_flush_memslot(struct kvm *kvm,
368 struct kvm_memory_slot *memslot)
369{
370 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
371 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
372 phys_addr_t next;
373 pgd_t *pgd;
374
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000375 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000376 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000377 next = stage2_pgd_addr_end(addr, end);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000378 stage2_flush_puds(kvm, pgd, addr, next);
379 } while (pgd++, addr = next, addr != end);
380}
381
382/**
383 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
384 * @kvm: The struct kvm pointer
385 *
386 * Go through the stage 2 page tables and invalidate any cache lines
387 * backing memory already mapped to the VM.
388 */
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000389static void stage2_flush_vm(struct kvm *kvm)
Marc Zyngier9d218a12014-01-15 12:50:23 +0000390{
391 struct kvm_memslots *slots;
392 struct kvm_memory_slot *memslot;
393 int idx;
394
395 idx = srcu_read_lock(&kvm->srcu);
396 spin_lock(&kvm->mmu_lock);
397
398 slots = kvm_memslots(kvm);
399 kvm_for_each_memslot(memslot, slots)
400 stage2_flush_memslot(kvm, memslot);
401
402 spin_unlock(&kvm->mmu_lock);
403 srcu_read_unlock(&kvm->srcu, idx);
404}
405
Suzuki K Poulose64f32492016-03-22 18:56:21 +0000406static void clear_hyp_pgd_entry(pgd_t *pgd)
407{
408 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
409 pgd_clear(pgd);
410 pud_free(NULL, pud_table);
411 put_page(virt_to_page(pgd));
412}
413
414static void clear_hyp_pud_entry(pud_t *pud)
415{
416 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
417 VM_BUG_ON(pud_huge(*pud));
418 pud_clear(pud);
419 pmd_free(NULL, pmd_table);
420 put_page(virt_to_page(pud));
421}
422
423static void clear_hyp_pmd_entry(pmd_t *pmd)
424{
425 pte_t *pte_table = pte_offset_kernel(pmd, 0);
426 VM_BUG_ON(pmd_thp_or_huge(*pmd));
427 pmd_clear(pmd);
428 pte_free_kernel(NULL, pte_table);
429 put_page(virt_to_page(pmd));
430}
431
432static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
433{
434 pte_t *pte, *start_pte;
435
436 start_pte = pte = pte_offset_kernel(pmd, addr);
437 do {
438 if (!pte_none(*pte)) {
439 kvm_set_pte(pte, __pte(0));
440 put_page(virt_to_page(pte));
441 }
442 } while (pte++, addr += PAGE_SIZE, addr != end);
443
444 if (hyp_pte_table_empty(start_pte))
445 clear_hyp_pmd_entry(pmd);
446}
447
448static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
449{
450 phys_addr_t next;
451 pmd_t *pmd, *start_pmd;
452
453 start_pmd = pmd = pmd_offset(pud, addr);
454 do {
455 next = pmd_addr_end(addr, end);
456 /* Hyp doesn't use huge pmds */
457 if (!pmd_none(*pmd))
458 unmap_hyp_ptes(pmd, addr, next);
459 } while (pmd++, addr = next, addr != end);
460
461 if (hyp_pmd_table_empty(start_pmd))
462 clear_hyp_pud_entry(pud);
463}
464
465static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
466{
467 phys_addr_t next;
468 pud_t *pud, *start_pud;
469
470 start_pud = pud = pud_offset(pgd, addr);
471 do {
472 next = pud_addr_end(addr, end);
473 /* Hyp doesn't use huge puds */
474 if (!pud_none(*pud))
475 unmap_hyp_pmds(pud, addr, next);
476 } while (pud++, addr = next, addr != end);
477
478 if (hyp_pud_table_empty(start_pud))
479 clear_hyp_pgd_entry(pgd);
480}
481
482static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
483{
484 pgd_t *pgd;
485 phys_addr_t addr = start, end = start + size;
486 phys_addr_t next;
487
488 /*
489 * We don't unmap anything from HYP, except at the hyp tear down.
490 * Hence, we don't have to invalidate the TLBs here.
491 */
492 pgd = pgdp + pgd_index(addr);
493 do {
494 next = pgd_addr_end(addr, end);
495 if (!pgd_none(*pgd))
496 unmap_hyp_puds(pgd, addr, next);
497 } while (pgd++, addr = next, addr != end);
498}
499
Marc Zyngier000d3992013-03-05 02:43:17 +0000500/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100501 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000502 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100503 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
504 * therefore contains either mappings in the kernel memory area (above
505 * PAGE_OFFSET), or device mappings in the vmalloc range (from
506 * VMALLOC_START to VMALLOC_END).
507 *
508 * boot_hyp_pgd should only map two pages for the init code.
Marc Zyngier000d3992013-03-05 02:43:17 +0000509 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100510void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000511{
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100512 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100513
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100514 if (boot_hyp_pgd) {
515 unmap_hyp_range(boot_hyp_pgd, hyp_idmap_start, PAGE_SIZE);
516 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
517 boot_hyp_pgd = NULL;
518 }
519
Marc Zyngier4f728272013-04-12 19:12:05 +0100520 if (hyp_pgd) {
Marc Zyngier26781f9c2016-06-30 18:40:46 +0100521 unmap_hyp_range(hyp_pgd, hyp_idmap_start, PAGE_SIZE);
Marc Zyngier7839c672017-12-07 11:45:45 +0000522 unmap_hyp_range(hyp_pgd, kern_hyp_va(PAGE_OFFSET),
523 (uintptr_t)high_memory - PAGE_OFFSET);
524 unmap_hyp_range(hyp_pgd, kern_hyp_va(VMALLOC_START),
525 VMALLOC_END - VMALLOC_START);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100526
Christoffer Dall38f791a2014-10-10 12:14:28 +0200527 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100528 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100529 }
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000530 if (merged_hyp_pgd) {
531 clear_page(merged_hyp_pgd);
532 free_page((unsigned long)merged_hyp_pgd);
533 merged_hyp_pgd = NULL;
534 }
Marc Zyngier4f728272013-04-12 19:12:05 +0100535
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500536 mutex_unlock(&kvm_hyp_pgd_mutex);
537}
538
539static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100540 unsigned long end, unsigned long pfn,
541 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500542{
543 pte_t *pte;
544 unsigned long addr;
545
Marc Zyngier3562c762013-04-12 19:12:02 +0100546 addr = start;
547 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100548 pte = pte_offset_kernel(pmd, addr);
549 kvm_set_pte(pte, pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100550 get_page(virt_to_page(pte));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100551 kvm_flush_dcache_to_poc(pte, sizeof(*pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100552 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100553 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500554}
555
556static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100557 unsigned long end, unsigned long pfn,
558 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500559{
560 pmd_t *pmd;
561 pte_t *pte;
562 unsigned long addr, next;
563
Marc Zyngier3562c762013-04-12 19:12:02 +0100564 addr = start;
565 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100566 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500567
568 BUG_ON(pmd_sect(*pmd));
569
570 if (pmd_none(*pmd)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100571 pte = pte_alloc_one_kernel(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500572 if (!pte) {
573 kvm_err("Cannot allocate Hyp pte\n");
574 return -ENOMEM;
575 }
576 pmd_populate_kernel(NULL, pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100577 get_page(virt_to_page(pmd));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100578 kvm_flush_dcache_to_poc(pmd, sizeof(*pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500579 }
580
581 next = pmd_addr_end(addr, end);
582
Marc Zyngier6060df82013-04-12 19:12:01 +0100583 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
584 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100585 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500586
587 return 0;
588}
589
Christoffer Dall38f791a2014-10-10 12:14:28 +0200590static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
591 unsigned long end, unsigned long pfn,
592 pgprot_t prot)
593{
594 pud_t *pud;
595 pmd_t *pmd;
596 unsigned long addr, next;
597 int ret;
598
599 addr = start;
600 do {
601 pud = pud_offset(pgd, addr);
602
603 if (pud_none_or_clear_bad(pud)) {
604 pmd = pmd_alloc_one(NULL, addr);
605 if (!pmd) {
606 kvm_err("Cannot allocate Hyp pmd\n");
607 return -ENOMEM;
608 }
609 pud_populate(NULL, pud, pmd);
610 get_page(virt_to_page(pud));
611 kvm_flush_dcache_to_poc(pud, sizeof(*pud));
612 }
613
614 next = pud_addr_end(addr, end);
615 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
616 if (ret)
617 return ret;
618 pfn += (next - addr) >> PAGE_SHIFT;
619 } while (addr = next, addr != end);
620
621 return 0;
622}
623
Kristina Martsenko98732d12018-01-15 15:23:49 +0000624static int __create_hyp_mappings(pgd_t *pgdp, unsigned long ptrs_per_pgd,
Marc Zyngier6060df82013-04-12 19:12:01 +0100625 unsigned long start, unsigned long end,
626 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500627{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500628 pgd_t *pgd;
629 pud_t *pud;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500630 unsigned long addr, next;
631 int err = 0;
632
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500633 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100634 addr = start & PAGE_MASK;
635 end = PAGE_ALIGN(end);
636 do {
Kristina Martsenkofa2a8442017-12-13 17:07:24 +0000637 pgd = pgdp + ((addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500638
Christoffer Dall38f791a2014-10-10 12:14:28 +0200639 if (pgd_none(*pgd)) {
640 pud = pud_alloc_one(NULL, addr);
641 if (!pud) {
642 kvm_err("Cannot allocate Hyp pud\n");
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500643 err = -ENOMEM;
644 goto out;
645 }
Christoffer Dall38f791a2014-10-10 12:14:28 +0200646 pgd_populate(NULL, pgd, pud);
647 get_page(virt_to_page(pgd));
648 kvm_flush_dcache_to_poc(pgd, sizeof(*pgd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500649 }
650
651 next = pgd_addr_end(addr, end);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200652 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500653 if (err)
654 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100655 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100656 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500657out:
658 mutex_unlock(&kvm_hyp_pgd_mutex);
659 return err;
660}
661
Christoffer Dall40c27292013-11-15 13:14:12 -0800662static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
663{
664 if (!is_vmalloc_addr(kaddr)) {
665 BUG_ON(!virt_addr_valid(kaddr));
666 return __pa(kaddr);
667 } else {
668 return page_to_phys(vmalloc_to_page(kaddr)) +
669 offset_in_page(kaddr);
670 }
671}
672
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500673/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100674 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500675 * @from: The virtual kernel start address of the range
676 * @to: The virtual kernel end address of the range (exclusive)
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100677 * @prot: The protection to be applied to this range
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500678 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100679 * The same virtual address as the kernel virtual address is also used
680 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
681 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500682 */
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100683int create_hyp_mappings(void *from, void *to, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500684{
Christoffer Dall40c27292013-11-15 13:14:12 -0800685 phys_addr_t phys_addr;
686 unsigned long virt_addr;
Marc Zyngier6c41a412016-06-30 18:40:51 +0100687 unsigned long start = kern_hyp_va((unsigned long)from);
688 unsigned long end = kern_hyp_va((unsigned long)to);
Marc Zyngier6060df82013-04-12 19:12:01 +0100689
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000690 if (is_kernel_in_hyp_mode())
691 return 0;
692
Christoffer Dall40c27292013-11-15 13:14:12 -0800693 start = start & PAGE_MASK;
694 end = PAGE_ALIGN(end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100695
Christoffer Dall40c27292013-11-15 13:14:12 -0800696 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
697 int err;
698
699 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
Kristina Martsenko98732d12018-01-15 15:23:49 +0000700 err = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD,
701 virt_addr, virt_addr + PAGE_SIZE,
Christoffer Dall40c27292013-11-15 13:14:12 -0800702 __phys_to_pfn(phys_addr),
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100703 prot);
Christoffer Dall40c27292013-11-15 13:14:12 -0800704 if (err)
705 return err;
706 }
707
708 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500709}
710
711/**
Marc Zyngier807a3782017-12-04 16:26:09 +0000712 * create_hyp_io_mappings - Map IO into both kernel and HYP
Marc Zyngier6060df82013-04-12 19:12:01 +0100713 * @phys_addr: The physical start address which gets mapped
Marc Zyngier807a3782017-12-04 16:26:09 +0000714 * @size: Size of the region being mapped
715 * @kaddr: Kernel VA for this mapping
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000716 * @haddr: HYP VA for this mapping
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500717 */
Marc Zyngier807a3782017-12-04 16:26:09 +0000718int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000719 void __iomem **kaddr,
720 void __iomem **haddr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500721{
Marc Zyngier807a3782017-12-04 16:26:09 +0000722 unsigned long start, end;
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000723 int ret;
Marc Zyngier6060df82013-04-12 19:12:01 +0100724
Marc Zyngier807a3782017-12-04 16:26:09 +0000725 *kaddr = ioremap(phys_addr, size);
726 if (!*kaddr)
727 return -ENOMEM;
728
729 if (is_kernel_in_hyp_mode()) {
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000730 *haddr = *kaddr;
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000731 return 0;
Marc Zyngier807a3782017-12-04 16:26:09 +0000732 }
Marc Zyngier1e947ba2015-01-29 11:59:54 +0000733
Marc Zyngier6060df82013-04-12 19:12:01 +0100734
Marc Zyngier807a3782017-12-04 16:26:09 +0000735 start = kern_hyp_va((unsigned long)*kaddr);
736 end = kern_hyp_va((unsigned long)*kaddr + size);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000737 ret = __create_hyp_mappings(hyp_pgd, PTRS_PER_PGD, start, end,
Marc Zyngier6060df82013-04-12 19:12:01 +0100738 __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE);
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000739
740 if (ret) {
741 iounmap(*kaddr);
742 *kaddr = NULL;
743 return ret;
744 }
745
746 *haddr = (void __iomem *)start;
747 return 0;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500748}
749
Christoffer Dalld5d81842013-01-20 18:28:07 -0500750/**
751 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
752 * @kvm: The KVM struct pointer for the VM.
753 *
Vladimir Murzin9d4dc6882015-11-16 11:28:16 +0000754 * Allocates only the stage-2 HW PGD level table(s) (can support either full
755 * 40-bit input addresses or limited to 32-bit input addresses). Clears the
756 * allocated pages.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500757 *
758 * Note we don't need locking here as this is only called when the VM is
759 * created, which can only be done once.
760 */
761int kvm_alloc_stage2_pgd(struct kvm *kvm)
762{
763 pgd_t *pgd;
764
765 if (kvm->arch.pgd != NULL) {
766 kvm_err("kvm_arch already initialized?\n");
767 return -EINVAL;
768 }
769
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000770 /* Allocate the HW PGD, making sure that each page gets its own refcount */
771 pgd = alloc_pages_exact(S2_PGD_SIZE, GFP_KERNEL | __GFP_ZERO);
772 if (!pgd)
Marc Zyngiera9873702015-03-10 19:06:59 +0000773 return -ENOMEM;
774
Christoffer Dalld5d81842013-01-20 18:28:07 -0500775 kvm->arch.pgd = pgd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500776 return 0;
777}
778
Christoffer Dall957db102014-11-27 10:35:03 +0100779static void stage2_unmap_memslot(struct kvm *kvm,
780 struct kvm_memory_slot *memslot)
781{
782 hva_t hva = memslot->userspace_addr;
783 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
784 phys_addr_t size = PAGE_SIZE * memslot->npages;
785 hva_t reg_end = hva + size;
786
787 /*
788 * A memory region could potentially cover multiple VMAs, and any holes
789 * between them, so iterate over all of them to find out if we should
790 * unmap any of them.
791 *
792 * +--------------------------------------------+
793 * +---------------+----------------+ +----------------+
794 * | : VMA 1 | VMA 2 | | VMA 3 : |
795 * +---------------+----------------+ +----------------+
796 * | memory region |
797 * +--------------------------------------------+
798 */
799 do {
800 struct vm_area_struct *vma = find_vma(current->mm, hva);
801 hva_t vm_start, vm_end;
802
803 if (!vma || vma->vm_start >= reg_end)
804 break;
805
806 /*
807 * Take the intersection of this VMA with the memory region
808 */
809 vm_start = max(hva, vma->vm_start);
810 vm_end = min(reg_end, vma->vm_end);
811
812 if (!(vma->vm_flags & VM_PFNMAP)) {
813 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
814 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
815 }
816 hva = vm_end;
817 } while (hva < reg_end);
818}
819
820/**
821 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
822 * @kvm: The struct kvm pointer
823 *
824 * Go through the memregions and unmap any reguler RAM
825 * backing memory already mapped to the VM.
826 */
827void stage2_unmap_vm(struct kvm *kvm)
828{
829 struct kvm_memslots *slots;
830 struct kvm_memory_slot *memslot;
831 int idx;
832
833 idx = srcu_read_lock(&kvm->srcu);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000834 down_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100835 spin_lock(&kvm->mmu_lock);
836
837 slots = kvm_memslots(kvm);
838 kvm_for_each_memslot(memslot, slots)
839 stage2_unmap_memslot(kvm, memslot);
840
841 spin_unlock(&kvm->mmu_lock);
Marc Zyngier90f6e152017-03-16 18:20:49 +0000842 up_read(&current->mm->mmap_sem);
Christoffer Dall957db102014-11-27 10:35:03 +0100843 srcu_read_unlock(&kvm->srcu, idx);
844}
845
Christoffer Dalld5d81842013-01-20 18:28:07 -0500846/**
847 * kvm_free_stage2_pgd - free all stage-2 tables
848 * @kvm: The KVM struct pointer for the VM.
849 *
850 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
851 * underlying level-2 and level-3 tables before freeing the actual level-1 table
852 * and setting the struct pointer to NULL.
Christoffer Dalld5d81842013-01-20 18:28:07 -0500853 */
854void kvm_free_stage2_pgd(struct kvm *kvm)
855{
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100856 void *pgd = NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500857
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100858 spin_lock(&kvm->mmu_lock);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100859 if (kvm->arch.pgd) {
860 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
Suzuki K Poulose2952a602017-05-16 10:34:54 +0100861 pgd = READ_ONCE(kvm->arch.pgd);
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100862 kvm->arch.pgd = NULL;
863 }
Suzuki K Poulose8b3405e2017-04-03 15:12:43 +0100864 spin_unlock(&kvm->mmu_lock);
865
Suzuki K Poulose9163ee232016-03-22 17:01:21 +0000866 /* Free the HW pgd, one page at a time */
Suzuki K Poulose6c0d7062017-05-03 15:17:51 +0100867 if (pgd)
868 free_pages_exact(pgd, S2_PGD_SIZE);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500869}
870
Christoffer Dall38f791a2014-10-10 12:14:28 +0200871static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
872 phys_addr_t addr)
873{
874 pgd_t *pgd;
875 pud_t *pud;
876
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000877 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
878 if (WARN_ON(stage2_pgd_none(*pgd))) {
Christoffer Dall38f791a2014-10-10 12:14:28 +0200879 if (!cache)
880 return NULL;
881 pud = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000882 stage2_pgd_populate(pgd, pud);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200883 get_page(virt_to_page(pgd));
884 }
885
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000886 return stage2_pud_offset(pgd, addr);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200887}
888
Christoffer Dallad361f02012-11-01 17:14:45 +0100889static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
890 phys_addr_t addr)
Christoffer Dalld5d81842013-01-20 18:28:07 -0500891{
Christoffer Dalld5d81842013-01-20 18:28:07 -0500892 pud_t *pud;
893 pmd_t *pmd;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500894
Christoffer Dall38f791a2014-10-10 12:14:28 +0200895 pud = stage2_get_pud(kvm, cache, addr);
Marc Zyngierd6dbdd32017-06-05 19:17:18 +0100896 if (!pud)
897 return NULL;
898
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000899 if (stage2_pud_none(*pud)) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500900 if (!cache)
Christoffer Dallad361f02012-11-01 17:14:45 +0100901 return NULL;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500902 pmd = mmu_memory_cache_alloc(cache);
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000903 stage2_pud_populate(pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500904 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100905 }
906
Suzuki K Poulose70fd1902016-03-22 18:33:45 +0000907 return stage2_pmd_offset(pud, addr);
Christoffer Dallad361f02012-11-01 17:14:45 +0100908}
Christoffer Dalld5d81842013-01-20 18:28:07 -0500909
Christoffer Dallad361f02012-11-01 17:14:45 +0100910static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
911 *cache, phys_addr_t addr, const pmd_t *new_pmd)
912{
913 pmd_t *pmd, old_pmd;
914
915 pmd = stage2_get_pmd(kvm, cache, addr);
916 VM_BUG_ON(!pmd);
917
918 /*
919 * Mapping in huge pages should only happen through a fault. If a
920 * page is merged into a transparent huge page, the individual
921 * subpages of that huge page should be unmapped through MMU
922 * notifiers before we get here.
923 *
924 * Merging of CompoundPages is not supported; they should become
925 * splitting first, unmapped, merged, and mapped back in on-demand.
926 */
927 VM_BUG_ON(pmd_present(*pmd) && pmd_pfn(*pmd) != pmd_pfn(*new_pmd));
928
929 old_pmd = *pmd;
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100930 if (pmd_present(old_pmd)) {
931 pmd_clear(pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100932 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100933 } else {
Christoffer Dallad361f02012-11-01 17:14:45 +0100934 get_page(virt_to_page(pmd));
Marc Zyngierd4b9e072016-04-28 16:16:31 +0100935 }
936
937 kvm_set_pmd(pmd, *new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +0100938 return 0;
939}
940
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100941static bool stage2_is_exec(struct kvm *kvm, phys_addr_t addr)
942{
943 pmd_t *pmdp;
944 pte_t *ptep;
945
946 pmdp = stage2_get_pmd(kvm, NULL, addr);
947 if (!pmdp || pmd_none(*pmdp) || !pmd_present(*pmdp))
948 return false;
949
950 if (pmd_thp_or_huge(*pmdp))
951 return kvm_s2pmd_exec(pmdp);
952
953 ptep = pte_offset_kernel(pmdp, addr);
954 if (!ptep || pte_none(*ptep) || !pte_present(*ptep))
955 return false;
956
957 return kvm_s2pte_exec(ptep);
958}
959
Christoffer Dallad361f02012-11-01 17:14:45 +0100960static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
Mario Smarduch15a49a42015-01-15 15:58:58 -0800961 phys_addr_t addr, const pte_t *new_pte,
962 unsigned long flags)
Christoffer Dallad361f02012-11-01 17:14:45 +0100963{
964 pmd_t *pmd;
965 pte_t *pte, old_pte;
Mario Smarduch15a49a42015-01-15 15:58:58 -0800966 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
967 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
968
969 VM_BUG_ON(logging_active && !cache);
Christoffer Dallad361f02012-11-01 17:14:45 +0100970
Christoffer Dall38f791a2014-10-10 12:14:28 +0200971 /* Create stage-2 page table mapping - Levels 0 and 1 */
Christoffer Dallad361f02012-11-01 17:14:45 +0100972 pmd = stage2_get_pmd(kvm, cache, addr);
973 if (!pmd) {
974 /*
975 * Ignore calls from kvm_set_spte_hva for unallocated
976 * address ranges.
977 */
978 return 0;
979 }
980
Mario Smarduch15a49a42015-01-15 15:58:58 -0800981 /*
982 * While dirty page logging - dissolve huge PMD, then continue on to
983 * allocate page.
984 */
985 if (logging_active)
986 stage2_dissolve_pmd(kvm, addr, pmd);
987
Christoffer Dallad361f02012-11-01 17:14:45 +0100988 /* Create stage-2 page mappings - Level 2 */
Christoffer Dalld5d81842013-01-20 18:28:07 -0500989 if (pmd_none(*pmd)) {
990 if (!cache)
991 return 0; /* ignore calls from kvm_set_spte_hva */
992 pte = mmu_memory_cache_alloc(cache);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500993 pmd_populate_kernel(NULL, pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500994 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100995 }
996
997 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500998
999 if (iomap && pte_present(*pte))
1000 return -EFAULT;
1001
1002 /* Create 2nd stage page table mapping - Level 3 */
1003 old_pte = *pte;
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001004 if (pte_present(old_pte)) {
1005 kvm_set_pte(pte, __pte(0));
Marc Zyngier48762762013-01-28 15:27:00 +00001006 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001007 } else {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001008 get_page(virt_to_page(pte));
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001009 }
Christoffer Dalld5d81842013-01-20 18:28:07 -05001010
Marc Zyngierd4b9e072016-04-28 16:16:31 +01001011 kvm_set_pte(pte, *new_pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001012 return 0;
1013}
1014
Catalin Marinas06485052016-04-13 17:57:37 +01001015#ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1016static int stage2_ptep_test_and_clear_young(pte_t *pte)
1017{
1018 if (pte_young(*pte)) {
1019 *pte = pte_mkold(*pte);
1020 return 1;
1021 }
1022 return 0;
1023}
1024#else
1025static int stage2_ptep_test_and_clear_young(pte_t *pte)
1026{
1027 return __ptep_test_and_clear_young(pte);
1028}
1029#endif
1030
1031static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1032{
1033 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1034}
1035
Christoffer Dalld5d81842013-01-20 18:28:07 -05001036/**
1037 * kvm_phys_addr_ioremap - map a device range to guest IPA
1038 *
1039 * @kvm: The KVM pointer
1040 * @guest_ipa: The IPA at which to insert the mapping
1041 * @pa: The physical address of the device
1042 * @size: The size of the mapping
1043 */
1044int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001045 phys_addr_t pa, unsigned long size, bool writable)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001046{
1047 phys_addr_t addr, end;
1048 int ret = 0;
1049 unsigned long pfn;
1050 struct kvm_mmu_memory_cache cache = { 0, };
1051
1052 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1053 pfn = __phys_to_pfn(pa);
1054
1055 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +01001056 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001057
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001058 if (writable)
Catalin Marinas06485052016-04-13 17:57:37 +01001059 pte = kvm_s2pte_mkwrite(pte);
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -07001060
Christoffer Dall38f791a2014-10-10 12:14:28 +02001061 ret = mmu_topup_memory_cache(&cache, KVM_MMU_CACHE_MIN_PAGES,
1062 KVM_NR_MEM_OBJS);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001063 if (ret)
1064 goto out;
1065 spin_lock(&kvm->mmu_lock);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001066 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1067 KVM_S2PTE_FLAG_IS_IOMAP);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001068 spin_unlock(&kvm->mmu_lock);
1069 if (ret)
1070 goto out;
1071
1072 pfn++;
1073 }
1074
1075out:
1076 mmu_free_memory_cache(&cache);
1077 return ret;
1078}
1079
Dan Williamsba049e92016-01-15 16:56:11 -08001080static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001081{
Dan Williamsba049e92016-01-15 16:56:11 -08001082 kvm_pfn_t pfn = *pfnp;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001083 gfn_t gfn = *ipap >> PAGE_SHIFT;
1084
Andrea Arcangeli127393f2016-05-05 16:22:20 -07001085 if (PageTransCompoundMap(pfn_to_page(pfn))) {
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001086 unsigned long mask;
1087 /*
1088 * The address we faulted on is backed by a transparent huge
1089 * page. However, because we map the compound huge page and
1090 * not the individual tail page, we need to transfer the
1091 * refcount to the head page. We have to be careful that the
1092 * THP doesn't start to split while we are adjusting the
1093 * refcounts.
1094 *
1095 * We are sure this doesn't happen, because mmu_notifier_retry
1096 * was successful and we are holding the mmu_lock, so if this
1097 * THP is trying to split, it will be blocked in the mmu
1098 * notifier before touching any of the pages, specifically
1099 * before being able to call __split_huge_page_refcount().
1100 *
1101 * We can therefore safely transfer the refcount from PG_tail
1102 * to PG_head and switch the pfn from a tail page to the head
1103 * page accordingly.
1104 */
1105 mask = PTRS_PER_PMD - 1;
1106 VM_BUG_ON((gfn & mask) != (pfn & mask));
1107 if (pfn & mask) {
1108 *ipap &= PMD_MASK;
1109 kvm_release_pfn_clean(pfn);
1110 pfn &= ~mask;
1111 kvm_get_pfn(pfn);
1112 *pfnp = pfn;
1113 }
1114
1115 return true;
1116 }
1117
1118 return false;
1119}
1120
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001121static bool kvm_is_write_fault(struct kvm_vcpu *vcpu)
1122{
1123 if (kvm_vcpu_trap_is_iabt(vcpu))
1124 return false;
1125
1126 return kvm_vcpu_dabt_iswrite(vcpu);
1127}
1128
Mario Smarduchc6473552015-01-15 15:58:56 -08001129/**
1130 * stage2_wp_ptes - write protect PMD range
1131 * @pmd: pointer to pmd entry
1132 * @addr: range start address
1133 * @end: range end address
1134 */
1135static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1136{
1137 pte_t *pte;
1138
1139 pte = pte_offset_kernel(pmd, addr);
1140 do {
1141 if (!pte_none(*pte)) {
1142 if (!kvm_s2pte_readonly(pte))
1143 kvm_set_s2pte_readonly(pte);
1144 }
1145 } while (pte++, addr += PAGE_SIZE, addr != end);
1146}
1147
1148/**
1149 * stage2_wp_pmds - write protect PUD range
1150 * @pud: pointer to pud entry
1151 * @addr: range start address
1152 * @end: range end address
1153 */
1154static void stage2_wp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
1155{
1156 pmd_t *pmd;
1157 phys_addr_t next;
1158
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001159 pmd = stage2_pmd_offset(pud, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001160
1161 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001162 next = stage2_pmd_addr_end(addr, end);
Mario Smarduchc6473552015-01-15 15:58:56 -08001163 if (!pmd_none(*pmd)) {
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001164 if (pmd_thp_or_huge(*pmd)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001165 if (!kvm_s2pmd_readonly(pmd))
1166 kvm_set_s2pmd_readonly(pmd);
1167 } else {
1168 stage2_wp_ptes(pmd, addr, next);
1169 }
1170 }
1171 } while (pmd++, addr = next, addr != end);
1172}
1173
1174/**
1175 * stage2_wp_puds - write protect PGD range
1176 * @pgd: pointer to pgd entry
1177 * @addr: range start address
1178 * @end: range end address
1179 *
1180 * Process PUD entries, for a huge PUD we cause a panic.
1181 */
1182static void stage2_wp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
1183{
1184 pud_t *pud;
1185 phys_addr_t next;
1186
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001187 pud = stage2_pud_offset(pgd, addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001188 do {
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001189 next = stage2_pud_addr_end(addr, end);
1190 if (!stage2_pud_none(*pud)) {
Mario Smarduchc6473552015-01-15 15:58:56 -08001191 /* TODO:PUD not supported, revisit later if supported */
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001192 BUG_ON(stage2_pud_huge(*pud));
Mario Smarduchc6473552015-01-15 15:58:56 -08001193 stage2_wp_pmds(pud, addr, next);
1194 }
1195 } while (pud++, addr = next, addr != end);
1196}
1197
1198/**
1199 * stage2_wp_range() - write protect stage2 memory region range
1200 * @kvm: The KVM pointer
1201 * @addr: Start address of range
1202 * @end: End address of range
1203 */
1204static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1205{
1206 pgd_t *pgd;
1207 phys_addr_t next;
1208
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001209 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
Mario Smarduchc6473552015-01-15 15:58:56 -08001210 do {
1211 /*
1212 * Release kvm_mmu_lock periodically if the memory region is
1213 * large. Otherwise, we may see kernel panics with
Christoffer Dall227ea812015-01-23 10:49:31 +01001214 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1215 * CONFIG_LOCKDEP. Additionally, holding the lock too long
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001216 * will also starve other vCPUs. We have to also make sure
1217 * that the page tables are not freed while we released
1218 * the lock.
Mario Smarduchc6473552015-01-15 15:58:56 -08001219 */
Suzuki K Poulose0c428a6a2017-05-16 10:34:55 +01001220 cond_resched_lock(&kvm->mmu_lock);
1221 if (!READ_ONCE(kvm->arch.pgd))
1222 break;
Suzuki K Poulose70fd1902016-03-22 18:33:45 +00001223 next = stage2_pgd_addr_end(addr, end);
1224 if (stage2_pgd_present(*pgd))
Mario Smarduchc6473552015-01-15 15:58:56 -08001225 stage2_wp_puds(pgd, addr, next);
1226 } while (pgd++, addr = next, addr != end);
1227}
1228
1229/**
1230 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1231 * @kvm: The KVM pointer
1232 * @slot: The memory slot to write protect
1233 *
1234 * Called to start logging dirty pages after memory region
1235 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
1236 * all present PMD and PTEs are write protected in the memory region.
1237 * Afterwards read of dirty page log can be called.
1238 *
1239 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1240 * serializing operations for VM memory regions.
1241 */
1242void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1243{
Paolo Bonzini9f6b8022015-05-17 16:20:07 +02001244 struct kvm_memslots *slots = kvm_memslots(kvm);
1245 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
Mario Smarduchc6473552015-01-15 15:58:56 -08001246 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1247 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1248
1249 spin_lock(&kvm->mmu_lock);
1250 stage2_wp_range(kvm, start, end);
1251 spin_unlock(&kvm->mmu_lock);
1252 kvm_flush_remote_tlbs(kvm);
1253}
Mario Smarduch53c810c2015-01-15 15:58:57 -08001254
1255/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001256 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
Mario Smarduch53c810c2015-01-15 15:58:57 -08001257 * @kvm: The KVM pointer
1258 * @slot: The memory slot associated with mask
1259 * @gfn_offset: The gfn offset in memory slot
1260 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1261 * slot to be write protected
1262 *
1263 * Walks bits set in mask write protects the associated pte's. Caller must
1264 * acquire kvm_mmu_lock.
1265 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001266static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Mario Smarduch53c810c2015-01-15 15:58:57 -08001267 struct kvm_memory_slot *slot,
1268 gfn_t gfn_offset, unsigned long mask)
1269{
1270 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1271 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1272 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1273
1274 stage2_wp_range(kvm, start, end);
1275}
Mario Smarduchc6473552015-01-15 15:58:56 -08001276
Kai Huang3b0f1d02015-01-28 10:54:23 +08001277/*
1278 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1279 * dirty pages.
1280 *
1281 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1282 * enable dirty logging for them.
1283 */
1284void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1285 struct kvm_memory_slot *slot,
1286 gfn_t gfn_offset, unsigned long mask)
1287{
1288 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1289}
1290
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001291static void clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001292{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001293 __clean_dcache_guest_page(pfn, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +01001294}
1295
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001296static void invalidate_icache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngiera15f6932017-10-23 17:11:15 +01001297{
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001298 __invalidate_icache_guest_page(pfn, size);
Marc Zyngier0d3e4d42015-01-05 21:13:24 +00001299}
1300
James Morse196f8782017-06-20 17:11:48 +01001301static void kvm_send_hwpoison_signal(unsigned long address,
1302 struct vm_area_struct *vma)
1303{
1304 siginfo_t info;
1305
1306 info.si_signo = SIGBUS;
1307 info.si_errno = 0;
1308 info.si_code = BUS_MCEERR_AR;
1309 info.si_addr = (void __user *)address;
1310
1311 if (is_vm_hugetlb_page(vma))
1312 info.si_addr_lsb = huge_page_shift(hstate_vma(vma));
1313 else
1314 info.si_addr_lsb = PAGE_SHIFT;
1315
1316 send_sig_info(SIGBUS, &info, current);
1317}
1318
Christoffer Dall94f8e642013-01-20 18:28:12 -05001319static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
Christoffer Dall98047882014-08-19 12:18:04 +02001320 struct kvm_memory_slot *memslot, unsigned long hva,
Christoffer Dall94f8e642013-01-20 18:28:12 -05001321 unsigned long fault_status)
1322{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001323 int ret;
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001324 bool write_fault, exec_fault, writable, hugetlb = false, force_pte = false;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001325 unsigned long mmu_seq;
Christoffer Dallad361f02012-11-01 17:14:45 +01001326 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dallad361f02012-11-01 17:14:45 +01001327 struct kvm *kvm = vcpu->kvm;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001328 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
Christoffer Dallad361f02012-11-01 17:14:45 +01001329 struct vm_area_struct *vma;
Dan Williamsba049e92016-01-15 16:56:11 -08001330 kvm_pfn_t pfn;
Kim Phillipsb8865762014-06-26 01:45:51 +01001331 pgprot_t mem_type = PAGE_S2;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001332 bool logging_active = memslot_is_logging(memslot);
1333 unsigned long flags = 0;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001334
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001335 write_fault = kvm_is_write_fault(vcpu);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001336 exec_fault = kvm_vcpu_trap_is_iabt(vcpu);
1337 VM_BUG_ON(write_fault && exec_fault);
1338
1339 if (fault_status == FSC_PERM && !write_fault && !exec_fault) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001340 kvm_err("Unexpected L2 read permission error\n");
1341 return -EFAULT;
1342 }
1343
Christoffer Dallad361f02012-11-01 17:14:45 +01001344 /* Let's check if we will get back a huge page backed by hugetlbfs */
1345 down_read(&current->mm->mmap_sem);
1346 vma = find_vma_intersection(current->mm, hva, hva + 1);
Ard Biesheuvel37b54402014-09-17 14:56:17 -07001347 if (unlikely(!vma)) {
1348 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1349 up_read(&current->mm->mmap_sem);
1350 return -EFAULT;
1351 }
1352
Punit Agrawalc507bab2018-01-04 18:24:33 +00001353 if (vma_kernel_pagesize(vma) == PMD_SIZE && !logging_active) {
Christoffer Dallad361f02012-11-01 17:14:45 +01001354 hugetlb = true;
1355 gfn = (fault_ipa & PMD_MASK) >> PAGE_SHIFT;
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001356 } else {
1357 /*
Marc Zyngier136d7372013-12-13 16:56:06 +00001358 * Pages belonging to memslots that don't have the same
1359 * alignment for userspace and IPA cannot be mapped using
1360 * block descriptors even if the pages belong to a THP for
1361 * the process, because the stage-2 block descriptor will
1362 * cover more than a single THP and we loose atomicity for
1363 * unmapping, updates, and splits of the THP or other pages
1364 * in the stage-2 block range.
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001365 */
Marc Zyngier136d7372013-12-13 16:56:06 +00001366 if ((memslot->userspace_addr & ~PMD_MASK) !=
1367 ((memslot->base_gfn << PAGE_SHIFT) & ~PMD_MASK))
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001368 force_pte = true;
Christoffer Dallad361f02012-11-01 17:14:45 +01001369 }
1370 up_read(&current->mm->mmap_sem);
1371
Christoffer Dall94f8e642013-01-20 18:28:12 -05001372 /* We need minimum second+third level pages */
Christoffer Dall38f791a2014-10-10 12:14:28 +02001373 ret = mmu_topup_memory_cache(memcache, KVM_MMU_CACHE_MIN_PAGES,
1374 KVM_NR_MEM_OBJS);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001375 if (ret)
1376 return ret;
1377
1378 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1379 /*
1380 * Ensure the read of mmu_notifier_seq happens before we call
1381 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1382 * the page we just got a reference to gets unmapped before we have a
1383 * chance to grab the mmu_lock, which ensure that if the page gets
1384 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1385 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1386 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1387 */
1388 smp_rmb();
1389
Christoffer Dallad361f02012-11-01 17:14:45 +01001390 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
James Morse196f8782017-06-20 17:11:48 +01001391 if (pfn == KVM_PFN_ERR_HWPOISON) {
1392 kvm_send_hwpoison_signal(hva, vma);
1393 return 0;
1394 }
Christoffer Dall9ac71592016-08-17 10:46:10 +02001395 if (is_error_noslot_pfn(pfn))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001396 return -EFAULT;
1397
Mario Smarduch15a49a42015-01-15 15:58:58 -08001398 if (kvm_is_device_pfn(pfn)) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001399 mem_type = PAGE_S2_DEVICE;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001400 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1401 } else if (logging_active) {
1402 /*
1403 * Faults on pages in a memslot with logging enabled
1404 * should not be mapped with huge pages (it introduces churn
1405 * and performance degradation), so force a pte mapping.
1406 */
1407 force_pte = true;
1408 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1409
1410 /*
1411 * Only actually map the page as writable if this was a write
1412 * fault.
1413 */
1414 if (!write_fault)
1415 writable = false;
1416 }
Kim Phillipsb8865762014-06-26 01:45:51 +01001417
Christoffer Dallad361f02012-11-01 17:14:45 +01001418 spin_lock(&kvm->mmu_lock);
1419 if (mmu_notifier_retry(kvm, mmu_seq))
Christoffer Dall94f8e642013-01-20 18:28:12 -05001420 goto out_unlock;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001421
Christoffer Dall9b5fdb92013-10-02 15:32:01 -07001422 if (!hugetlb && !force_pte)
1423 hugetlb = transparent_hugepage_adjust(&pfn, &fault_ipa);
Christoffer Dallad361f02012-11-01 17:14:45 +01001424
1425 if (hugetlb) {
Kim Phillipsb8865762014-06-26 01:45:51 +01001426 pmd_t new_pmd = pfn_pmd(pfn, mem_type);
Christoffer Dallad361f02012-11-01 17:14:45 +01001427 new_pmd = pmd_mkhuge(new_pmd);
1428 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001429 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
Christoffer Dallad361f02012-11-01 17:14:45 +01001430 kvm_set_pfn_dirty(pfn);
1431 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001432
1433 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001434 clean_dcache_guest_page(pfn, PMD_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001435
1436 if (exec_fault) {
1437 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001438 invalidate_icache_guest_page(pfn, PMD_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001439 } else if (fault_status == FSC_PERM) {
1440 /* Preserve execute if XN was already cleared */
1441 if (stage2_is_exec(kvm, fault_ipa))
1442 new_pmd = kvm_s2pmd_mkexec(new_pmd);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001443 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001444
Christoffer Dallad361f02012-11-01 17:14:45 +01001445 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1446 } else {
Kim Phillipsb8865762014-06-26 01:45:51 +01001447 pte_t new_pte = pfn_pte(pfn, mem_type);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001448
Christoffer Dallad361f02012-11-01 17:14:45 +01001449 if (writable) {
Catalin Marinas06485052016-04-13 17:57:37 +01001450 new_pte = kvm_s2pte_mkwrite(new_pte);
Christoffer Dallad361f02012-11-01 17:14:45 +01001451 kvm_set_pfn_dirty(pfn);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001452 mark_page_dirty(kvm, gfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001453 }
Marc Zyngiera9c0e122017-10-23 17:11:20 +01001454
1455 if (fault_status != FSC_PERM)
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001456 clean_dcache_guest_page(pfn, PAGE_SIZE);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001457
1458 if (exec_fault) {
1459 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngier17ab9d52017-10-23 17:11:22 +01001460 invalidate_icache_guest_page(pfn, PAGE_SIZE);
Marc Zyngier7a3796d2017-10-23 17:11:21 +01001461 } else if (fault_status == FSC_PERM) {
1462 /* Preserve execute if XN was already cleared */
1463 if (stage2_is_exec(kvm, fault_ipa))
1464 new_pte = kvm_s2pte_mkexec(new_pte);
Marc Zyngierd0e22b42017-10-23 17:11:19 +01001465 }
Marc Zyngiera15f6932017-10-23 17:11:15 +01001466
Mario Smarduch15a49a42015-01-15 15:58:58 -08001467 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001468 }
Christoffer Dallad361f02012-11-01 17:14:45 +01001469
Christoffer Dall94f8e642013-01-20 18:28:12 -05001470out_unlock:
Christoffer Dallad361f02012-11-01 17:14:45 +01001471 spin_unlock(&kvm->mmu_lock);
Marc Zyngier35307b92015-03-12 18:16:51 +00001472 kvm_set_pfn_accessed(pfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001473 kvm_release_pfn_clean(pfn);
Christoffer Dallad361f02012-11-01 17:14:45 +01001474 return ret;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001475}
1476
Marc Zyngieraeda9132015-03-12 18:16:52 +00001477/*
1478 * Resolve the access fault by making the page young again.
1479 * Note that because the faulting entry is guaranteed not to be
1480 * cached in the TLB, we don't need to invalidate anything.
Catalin Marinas06485052016-04-13 17:57:37 +01001481 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1482 * so there is no need for atomic (pte|pmd)_mkyoung operations.
Marc Zyngieraeda9132015-03-12 18:16:52 +00001483 */
1484static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1485{
1486 pmd_t *pmd;
1487 pte_t *pte;
Dan Williamsba049e92016-01-15 16:56:11 -08001488 kvm_pfn_t pfn;
Marc Zyngieraeda9132015-03-12 18:16:52 +00001489 bool pfn_valid = false;
1490
1491 trace_kvm_access_fault(fault_ipa);
1492
1493 spin_lock(&vcpu->kvm->mmu_lock);
1494
1495 pmd = stage2_get_pmd(vcpu->kvm, NULL, fault_ipa);
1496 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1497 goto out;
1498
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001499 if (pmd_thp_or_huge(*pmd)) { /* THP, HugeTLB */
Marc Zyngieraeda9132015-03-12 18:16:52 +00001500 *pmd = pmd_mkyoung(*pmd);
1501 pfn = pmd_pfn(*pmd);
1502 pfn_valid = true;
1503 goto out;
1504 }
1505
1506 pte = pte_offset_kernel(pmd, fault_ipa);
1507 if (pte_none(*pte)) /* Nothing there either */
1508 goto out;
1509
1510 *pte = pte_mkyoung(*pte); /* Just a page... */
1511 pfn = pte_pfn(*pte);
1512 pfn_valid = true;
1513out:
1514 spin_unlock(&vcpu->kvm->mmu_lock);
1515 if (pfn_valid)
1516 kvm_set_pfn_accessed(pfn);
1517}
1518
Christoffer Dall94f8e642013-01-20 18:28:12 -05001519/**
1520 * kvm_handle_guest_abort - handles all 2nd stage aborts
1521 * @vcpu: the VCPU pointer
1522 * @run: the kvm_run structure
1523 *
1524 * Any abort that gets to the host is almost guaranteed to be caused by a
1525 * missing second stage translation table entry, which can mean that either the
1526 * guest simply needs more memory and we must allocate an appropriate page or it
1527 * can mean that the guest tried to access I/O memory, which is emulated by user
1528 * space. The distinction is based on the IPA causing the fault and whether this
1529 * memory region has been registered as standard RAM by user space.
1530 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001531int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1532{
Christoffer Dall94f8e642013-01-20 18:28:12 -05001533 unsigned long fault_status;
1534 phys_addr_t fault_ipa;
1535 struct kvm_memory_slot *memslot;
Christoffer Dall98047882014-08-19 12:18:04 +02001536 unsigned long hva;
1537 bool is_iabt, write_fault, writable;
Christoffer Dall94f8e642013-01-20 18:28:12 -05001538 gfn_t gfn;
1539 int ret, idx;
1540
Tyler Baicar621f48e2017-06-21 12:17:14 -06001541 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1542
1543 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
James Morsebb428922017-07-18 13:37:41 +01001544 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Tyler Baicar621f48e2017-06-21 12:17:14 -06001545
James Morsebb428922017-07-18 13:37:41 +01001546 /* Synchronous External Abort? */
1547 if (kvm_vcpu_dabt_isextabt(vcpu)) {
1548 /*
1549 * For RAS the host kernel may handle this abort.
1550 * There is no need to pass the error into the guest.
1551 */
Tyler Baicar621f48e2017-06-21 12:17:14 -06001552 if (!handle_guest_sea(fault_ipa, kvm_vcpu_get_hsr(vcpu)))
1553 return 1;
Tyler Baicar621f48e2017-06-21 12:17:14 -06001554
James Morsebb428922017-07-18 13:37:41 +01001555 if (unlikely(!is_iabt)) {
1556 kvm_inject_vabt(vcpu);
1557 return 1;
1558 }
Marc Zyngier40557102016-09-06 14:02:15 +01001559 }
1560
Marc Zyngier7393b592012-09-17 19:27:09 +01001561 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1562 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001563
1564 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier35307b92015-03-12 18:16:51 +00001565 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1566 fault_status != FSC_ACCESS) {
Christoffer Dall0496daa52014-09-26 12:29:34 +02001567 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1568 kvm_vcpu_trap_get_class(vcpu),
1569 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1570 (unsigned long)kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001571 return -EFAULT;
1572 }
1573
1574 idx = srcu_read_lock(&vcpu->kvm->srcu);
1575
1576 gfn = fault_ipa >> PAGE_SHIFT;
Christoffer Dall98047882014-08-19 12:18:04 +02001577 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1578 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
Ard Biesheuvela7d079c2014-09-09 11:27:09 +01001579 write_fault = kvm_is_write_fault(vcpu);
Christoffer Dall98047882014-08-19 12:18:04 +02001580 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
Christoffer Dall94f8e642013-01-20 18:28:12 -05001581 if (is_iabt) {
1582 /* Prefetch Abort on I/O address */
Marc Zyngier7393b592012-09-17 19:27:09 +01001583 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -05001584 ret = 1;
1585 goto out_unlock;
1586 }
1587
Marc Zyngiercfe39502012-12-12 14:42:09 +00001588 /*
Marc Zyngier57c841f2016-01-29 15:01:28 +00001589 * Check for a cache maintenance operation. Since we
1590 * ended-up here, we know it is outside of any memory
1591 * slot. But we can't find out if that is for a device,
1592 * or if the guest is just being stupid. The only thing
1593 * we know for sure is that this range cannot be cached.
1594 *
1595 * So let's assume that the guest is just being
1596 * cautious, and skip the instruction.
1597 */
1598 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1599 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1600 ret = 1;
1601 goto out_unlock;
1602 }
1603
1604 /*
Marc Zyngiercfe39502012-12-12 14:42:09 +00001605 * The IPA is reported as [MAX:12], so we need to
1606 * complement it with the bottom 12 bits from the
1607 * faulting VA. This is always 12 bits, irrespective
1608 * of the page size.
1609 */
1610 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -05001611 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001612 goto out_unlock;
1613 }
1614
Christoffer Dallc3058d52014-10-10 12:14:29 +02001615 /* Userspace should not be able to register out-of-bounds IPAs */
1616 VM_BUG_ON(fault_ipa >= KVM_PHYS_SIZE);
1617
Marc Zyngieraeda9132015-03-12 18:16:52 +00001618 if (fault_status == FSC_ACCESS) {
1619 handle_access_fault(vcpu, fault_ipa);
1620 ret = 1;
1621 goto out_unlock;
1622 }
1623
Christoffer Dall98047882014-08-19 12:18:04 +02001624 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -05001625 if (ret == 0)
1626 ret = 1;
1627out_unlock:
1628 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1629 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001630}
1631
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001632static int handle_hva_to_gpa(struct kvm *kvm,
1633 unsigned long start,
1634 unsigned long end,
1635 int (*handler)(struct kvm *kvm,
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001636 gpa_t gpa, u64 size,
1637 void *data),
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001638 void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001639{
1640 struct kvm_memslots *slots;
1641 struct kvm_memory_slot *memslot;
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001642 int ret = 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001643
1644 slots = kvm_memslots(kvm);
1645
1646 /* we only care about the pages that the guest sees */
1647 kvm_for_each_memslot(memslot, slots) {
1648 unsigned long hva_start, hva_end;
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001649 gfn_t gpa;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001650
1651 hva_start = max(start, memslot->userspace_addr);
1652 hva_end = min(end, memslot->userspace_addr +
1653 (memslot->npages << PAGE_SHIFT));
1654 if (hva_start >= hva_end)
1655 continue;
1656
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001657 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
1658 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
Christoffer Dalld5d81842013-01-20 18:28:07 -05001659 }
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001660
1661 return ret;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001662}
1663
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001664static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001665{
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001666 unmap_stage2_range(kvm, gpa, size);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001667 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001668}
1669
1670int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1671{
1672 unsigned long end = hva + PAGE_SIZE;
1673
1674 if (!kvm->arch.pgd)
1675 return 0;
1676
1677 trace_kvm_unmap_hva(hva);
1678 handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL);
1679 return 0;
1680}
1681
1682int kvm_unmap_hva_range(struct kvm *kvm,
1683 unsigned long start, unsigned long end)
1684{
1685 if (!kvm->arch.pgd)
1686 return 0;
1687
1688 trace_kvm_unmap_hva_range(start, end);
1689 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
1690 return 0;
1691}
1692
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001693static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Christoffer Dalld5d81842013-01-20 18:28:07 -05001694{
1695 pte_t *pte = (pte_t *)data;
1696
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001697 WARN_ON(size != PAGE_SIZE);
Mario Smarduch15a49a42015-01-15 15:58:58 -08001698 /*
1699 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1700 * flag clear because MMU notifiers will have unmapped a huge PMD before
1701 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1702 * therefore stage2_set_pte() never needs to clear out a huge PMD
1703 * through this calling path.
1704 */
1705 stage2_set_pte(kvm, NULL, gpa, pte, 0);
Marc Zyngier1d2ebac2015-03-12 18:16:50 +00001706 return 0;
Christoffer Dalld5d81842013-01-20 18:28:07 -05001707}
1708
1709
1710void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1711{
1712 unsigned long end = hva + PAGE_SIZE;
1713 pte_t stage2_pte;
1714
1715 if (!kvm->arch.pgd)
1716 return;
1717
1718 trace_kvm_set_spte_hva(hva);
1719 stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2);
1720 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
1721}
1722
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001723static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001724{
1725 pmd_t *pmd;
1726 pte_t *pte;
1727
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001728 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001729 pmd = stage2_get_pmd(kvm, NULL, gpa);
1730 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1731 return 0;
1732
Catalin Marinas06485052016-04-13 17:57:37 +01001733 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1734 return stage2_pmdp_test_and_clear_young(pmd);
Marc Zyngier35307b92015-03-12 18:16:51 +00001735
1736 pte = pte_offset_kernel(pmd, gpa);
1737 if (pte_none(*pte))
1738 return 0;
1739
Catalin Marinas06485052016-04-13 17:57:37 +01001740 return stage2_ptep_test_and_clear_young(pte);
Marc Zyngier35307b92015-03-12 18:16:51 +00001741}
1742
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001743static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
Marc Zyngier35307b92015-03-12 18:16:51 +00001744{
1745 pmd_t *pmd;
1746 pte_t *pte;
1747
Suzuki K Poulose056aad62017-03-20 18:26:42 +00001748 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
Marc Zyngier35307b92015-03-12 18:16:51 +00001749 pmd = stage2_get_pmd(kvm, NULL, gpa);
1750 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1751 return 0;
1752
Suzuki K Poulosebbb3b6b2016-03-01 12:00:39 +00001753 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
Marc Zyngier35307b92015-03-12 18:16:51 +00001754 return pmd_young(*pmd);
1755
1756 pte = pte_offset_kernel(pmd, gpa);
1757 if (!pte_none(*pte)) /* Just a page... */
1758 return pte_young(*pte);
1759
1760 return 0;
1761}
1762
1763int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1764{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001765 if (!kvm->arch.pgd)
1766 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001767 trace_kvm_age_hva(start, end);
1768 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1769}
1770
1771int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1772{
Suzuki K Poulose7e5a6722017-07-05 09:57:00 +01001773 if (!kvm->arch.pgd)
1774 return 0;
Marc Zyngier35307b92015-03-12 18:16:51 +00001775 trace_kvm_test_age_hva(hva);
1776 return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
1777}
1778
Christoffer Dalld5d81842013-01-20 18:28:07 -05001779void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
1780{
1781 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
1782}
1783
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001784phys_addr_t kvm_mmu_get_httbr(void)
1785{
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001786 if (__kvm_cpu_uses_extended_idmap())
1787 return virt_to_phys(merged_hyp_pgd);
1788 else
1789 return virt_to_phys(hyp_pgd);
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001790}
1791
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001792phys_addr_t kvm_get_idmap_vector(void)
1793{
1794 return hyp_idmap_vector;
1795}
1796
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001797static int kvm_map_idmap_text(pgd_t *pgd)
1798{
1799 int err;
1800
1801 /* Create the idmap in the boot page tables */
Kristina Martsenko98732d12018-01-15 15:23:49 +00001802 err = __create_hyp_mappings(pgd, __kvm_idmap_ptrs_per_pgd(),
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001803 hyp_idmap_start, hyp_idmap_end,
1804 __phys_to_pfn(hyp_idmap_start),
1805 PAGE_HYP_EXEC);
1806 if (err)
1807 kvm_err("Failed to idmap %lx-%lx\n",
1808 hyp_idmap_start, hyp_idmap_end);
1809
1810 return err;
1811}
1812
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001813int kvm_mmu_init(void)
1814{
Marc Zyngier2fb41052013-04-12 19:12:03 +01001815 int err;
1816
Santosh Shilimkar4fda3422013-11-19 14:59:12 -05001817 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
1818 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
1819 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001820
Ard Biesheuvel06f75a12015-03-19 16:42:26 +00001821 /*
1822 * We rely on the linker script to ensure at build time that the HYP
1823 * init code does not cross a page boundary.
1824 */
1825 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001826
Marc Zyngierb4ef0492017-12-03 20:04:51 +00001827 kvm_debug("IDMAP page: %lx\n", hyp_idmap_start);
1828 kvm_debug("HYP VA range: %lx:%lx\n",
1829 kern_hyp_va(PAGE_OFFSET),
1830 kern_hyp_va((unsigned long)high_memory - 1));
Marc Zyngiereac378a2016-06-30 18:40:50 +01001831
Marc Zyngier6c41a412016-06-30 18:40:51 +01001832 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
Marc Zyngierd2896d42016-08-22 09:01:17 +01001833 hyp_idmap_start < kern_hyp_va(~0UL) &&
1834 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
Marc Zyngiereac378a2016-06-30 18:40:50 +01001835 /*
1836 * The idmap page is intersecting with the VA space,
1837 * it is not safe to continue further.
1838 */
1839 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
1840 err = -EINVAL;
1841 goto out;
1842 }
1843
Christoffer Dall38f791a2014-10-10 12:14:28 +02001844 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001845 if (!hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -05001846 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +01001847 err = -ENOMEM;
1848 goto out;
1849 }
1850
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001851 if (__kvm_cpu_uses_extended_idmap()) {
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001852 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1853 hyp_pgd_order);
1854 if (!boot_hyp_pgd) {
1855 kvm_err("Hyp boot PGD not allocated\n");
1856 err = -ENOMEM;
1857 goto out;
1858 }
1859
1860 err = kvm_map_idmap_text(boot_hyp_pgd);
1861 if (err)
1862 goto out;
1863
Ard Biesheuvele4c5a682015-03-19 16:42:28 +00001864 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
1865 if (!merged_hyp_pgd) {
1866 kvm_err("Failed to allocate extra HYP pgd\n");
1867 goto out;
1868 }
1869 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
1870 hyp_idmap_start);
Marc Zyngier0535a3e2016-06-30 18:40:43 +01001871 } else {
1872 err = kvm_map_idmap_text(hyp_pgd);
1873 if (err)
1874 goto out;
Marc Zyngier5a677ce2013-04-12 19:12:06 +01001875 }
1876
Christoffer Dalld5d81842013-01-20 18:28:07 -05001877 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +01001878out:
Marc Zyngier4f728272013-04-12 19:12:05 +01001879 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +01001880 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -05001881}
Eric Augerdf6ce242014-06-06 11:10:23 +02001882
1883void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001884 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001885 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02001886 const struct kvm_memory_slot *new,
Eric Augerdf6ce242014-06-06 11:10:23 +02001887 enum kvm_mr_change change)
1888{
Mario Smarduchc6473552015-01-15 15:58:56 -08001889 /*
1890 * At this point memslot has been committed and there is an
1891 * allocated dirty_bitmap[], dirty pages will be be tracked while the
1892 * memory slot is write protected.
1893 */
1894 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
1895 kvm_mmu_wp_memory_region(kvm, mem->slot);
Eric Augerdf6ce242014-06-06 11:10:23 +02001896}
1897
1898int kvm_arch_prepare_memory_region(struct kvm *kvm,
1899 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02001900 const struct kvm_userspace_memory_region *mem,
Eric Augerdf6ce242014-06-06 11:10:23 +02001901 enum kvm_mr_change change)
1902{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001903 hva_t hva = mem->userspace_addr;
1904 hva_t reg_end = hva + mem->memory_size;
1905 bool writable = !(mem->flags & KVM_MEM_READONLY);
1906 int ret = 0;
1907
Mario Smarduch15a49a42015-01-15 15:58:58 -08001908 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
1909 change != KVM_MR_FLAGS_ONLY)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001910 return 0;
1911
1912 /*
Christoffer Dallc3058d52014-10-10 12:14:29 +02001913 * Prevent userspace from creating a memory region outside of the IPA
1914 * space addressable by the KVM guest IPA space.
1915 */
1916 if (memslot->base_gfn + memslot->npages >=
1917 (KVM_PHYS_SIZE >> PAGE_SHIFT))
1918 return -EFAULT;
1919
Marc Zyngier72f31042017-03-16 18:20:50 +00001920 down_read(&current->mm->mmap_sem);
Christoffer Dallc3058d52014-10-10 12:14:29 +02001921 /*
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001922 * A memory region could potentially cover multiple VMAs, and any holes
1923 * between them, so iterate over all of them to find out if we can map
1924 * any of them right now.
1925 *
1926 * +--------------------------------------------+
1927 * +---------------+----------------+ +----------------+
1928 * | : VMA 1 | VMA 2 | | VMA 3 : |
1929 * +---------------+----------------+ +----------------+
1930 * | memory region |
1931 * +--------------------------------------------+
1932 */
1933 do {
1934 struct vm_area_struct *vma = find_vma(current->mm, hva);
1935 hva_t vm_start, vm_end;
1936
1937 if (!vma || vma->vm_start >= reg_end)
1938 break;
1939
1940 /*
1941 * Mapping a read-only VMA is only allowed if the
1942 * memory region is configured as read-only.
1943 */
1944 if (writable && !(vma->vm_flags & VM_WRITE)) {
1945 ret = -EPERM;
1946 break;
1947 }
1948
1949 /*
1950 * Take the intersection of this VMA with the memory region
1951 */
1952 vm_start = max(hva, vma->vm_start);
1953 vm_end = min(reg_end, vma->vm_end);
1954
1955 if (vma->vm_flags & VM_PFNMAP) {
1956 gpa_t gpa = mem->guest_phys_addr +
1957 (vm_start - mem->userspace_addr);
Marek Majtykaca09f022015-09-16 12:04:55 +02001958 phys_addr_t pa;
1959
1960 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
1961 pa += vm_start - vma->vm_start;
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001962
Mario Smarduch15a49a42015-01-15 15:58:58 -08001963 /* IO region dirty page logging not allowed */
Marc Zyngier72f31042017-03-16 18:20:50 +00001964 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
1965 ret = -EINVAL;
1966 goto out;
1967 }
Mario Smarduch15a49a42015-01-15 15:58:58 -08001968
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001969 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
1970 vm_end - vm_start,
1971 writable);
1972 if (ret)
1973 break;
1974 }
1975 hva = vm_end;
1976 } while (hva < reg_end);
1977
Mario Smarduch15a49a42015-01-15 15:58:58 -08001978 if (change == KVM_MR_FLAGS_ONLY)
Marc Zyngier72f31042017-03-16 18:20:50 +00001979 goto out;
Mario Smarduch15a49a42015-01-15 15:58:58 -08001980
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001981 spin_lock(&kvm->mmu_lock);
1982 if (ret)
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001983 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
Ard Biesheuvel849260c2014-11-17 14:58:53 +00001984 else
1985 stage2_flush_memslot(kvm, memslot);
1986 spin_unlock(&kvm->mmu_lock);
Marc Zyngier72f31042017-03-16 18:20:50 +00001987out:
1988 up_read(&current->mm->mmap_sem);
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02001989 return ret;
Eric Augerdf6ce242014-06-06 11:10:23 +02001990}
1991
1992void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
1993 struct kvm_memory_slot *dont)
1994{
1995}
1996
1997int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
1998 unsigned long npages)
1999{
2000 return 0;
2001}
2002
Paolo Bonzini15f46012015-05-17 21:26:08 +02002003void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
Eric Augerdf6ce242014-06-06 11:10:23 +02002004{
2005}
2006
2007void kvm_arch_flush_shadow_all(struct kvm *kvm)
2008{
Suzuki K Poulose293f2932016-09-08 16:25:49 +01002009 kvm_free_stage2_pgd(kvm);
Eric Augerdf6ce242014-06-06 11:10:23 +02002010}
2011
2012void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
2013 struct kvm_memory_slot *slot)
2014{
Ard Biesheuvel8eef9122014-10-10 17:00:32 +02002015 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
2016 phys_addr_t size = slot->npages << PAGE_SHIFT;
2017
2018 spin_lock(&kvm->mmu_lock);
2019 unmap_stage2_range(kvm, gpa, size);
2020 spin_unlock(&kvm->mmu_lock);
Eric Augerdf6ce242014-06-06 11:10:23 +02002021}
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002022
2023/*
2024 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
2025 *
2026 * Main problems:
2027 * - S/W ops are local to a CPU (not broadcast)
2028 * - We have line migration behind our back (speculation)
2029 * - System caches don't support S/W at all (damn!)
2030 *
2031 * In the face of the above, the best we can do is to try and convert
2032 * S/W ops to VA ops. Because the guest is not allowed to infer the
2033 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
2034 * which is a rather good thing for us.
2035 *
2036 * Also, it is only used when turning caches on/off ("The expected
2037 * usage of the cache maintenance instructions that operate by set/way
2038 * is associated with the cache maintenance instructions associated
2039 * with the powerdown and powerup of caches, if this is required by
2040 * the implementation.").
2041 *
2042 * We use the following policy:
2043 *
2044 * - If we trap a S/W operation, we enable VM trapping to detect
2045 * caches being turned on/off, and do a full clean.
2046 *
2047 * - We flush the caches on both caches being turned on and off.
2048 *
2049 * - Once the caches are enabled, we stop trapping VM ops.
2050 */
2051void kvm_set_way_flush(struct kvm_vcpu *vcpu)
2052{
Christoffer Dall3df59d82017-08-03 12:09:05 +02002053 unsigned long hcr = *vcpu_hcr(vcpu);
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002054
2055 /*
2056 * If this is the first time we do a S/W operation
2057 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2058 * VM trapping.
2059 *
2060 * Otherwise, rely on the VM trapping to wait for the MMU +
2061 * Caches to be turned off. At that point, we'll be able to
2062 * clean the caches again.
2063 */
2064 if (!(hcr & HCR_TVM)) {
2065 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2066 vcpu_has_cache_enabled(vcpu));
2067 stage2_flush_vm(vcpu->kvm);
Christoffer Dall3df59d82017-08-03 12:09:05 +02002068 *vcpu_hcr(vcpu) = hcr | HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002069 }
2070}
2071
2072void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2073{
2074 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2075
2076 /*
2077 * If switching the MMU+caches on, need to invalidate the caches.
2078 * If switching it off, need to clean the caches.
2079 * Clean + invalidate does the trick always.
2080 */
2081 if (now_enabled != was_enabled)
2082 stage2_flush_vm(vcpu->kvm);
2083
2084 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2085 if (now_enabled)
Christoffer Dall3df59d82017-08-03 12:09:05 +02002086 *vcpu_hcr(vcpu) &= ~HCR_TVM;
Marc Zyngier3c1e7162014-12-19 16:05:31 +00002087
2088 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);
2089}