2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
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.
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.
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.
19 #include <linux/mman.h>
20 #include <linux/kvm_host.h>
22 #include <linux/hugetlb.h>
23 #include <linux/sched/signal.h>
24 #include <trace/events/kvm.h>
25 #include <asm/pgalloc.h>
26 #include <asm/cacheflush.h>
27 #include <asm/kvm_arm.h>
28 #include <asm/kvm_mmu.h>
29 #include <asm/kvm_mmio.h>
30 #include <asm/kvm_asm.h>
31 #include <asm/kvm_emulate.h>
33 #include <asm/system_misc.h>
37 static pgd_t *boot_hyp_pgd;
38 static pgd_t *hyp_pgd;
39 static pgd_t *merged_hyp_pgd;
40 static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
42 static unsigned long hyp_idmap_start;
43 static unsigned long hyp_idmap_end;
44 static phys_addr_t hyp_idmap_vector;
46 #define S2_PGD_SIZE (PTRS_PER_S2_PGD * sizeof(pgd_t))
47 #define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
49 #define KVM_S2PTE_FLAG_IS_IOMAP (1UL << 0)
50 #define KVM_S2_FLAG_LOGGING_ACTIVE (1UL << 1)
52 static bool memslot_is_logging(struct kvm_memory_slot *memslot)
54 return memslot->dirty_bitmap && !(memslot->flags & KVM_MEM_READONLY);
58 * kvm_flush_remote_tlbs() - flush all VM TLB entries for v7/8
59 * @kvm: pointer to kvm structure.
61 * Interface to HYP function to flush all VM TLB entries
63 void kvm_flush_remote_tlbs(struct kvm *kvm)
65 kvm_call_hyp(__kvm_tlb_flush_vmid, kvm);
68 static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
70 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
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
78 static void kvm_flush_dcache_pte(pte_t pte)
80 __kvm_flush_dcache_pte(pte);
83 static void kvm_flush_dcache_pmd(pmd_t pmd)
85 __kvm_flush_dcache_pmd(pmd);
88 static void kvm_flush_dcache_pud(pud_t pud)
90 __kvm_flush_dcache_pud(pud);
93 static bool kvm_is_device_pfn(unsigned long pfn)
95 return !pfn_valid(pfn);
99 * stage2_dissolve_pmd() - clear and flush huge PMD entry
100 * @kvm: pointer to kvm structure.
102 * @pmd: pmd pointer for IPA
104 * Function clears a PMD entry, flushes addr 1st and 2nd stage TLBs. Marks all
105 * pages in the range dirty.
107 static void stage2_dissolve_pmd(struct kvm *kvm, phys_addr_t addr, pmd_t *pmd)
109 if (!pmd_thp_or_huge(*pmd))
113 kvm_tlb_flush_vmid_ipa(kvm, addr);
114 put_page(virt_to_page(pmd));
117 static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
122 BUG_ON(max > KVM_NR_MEM_OBJS);
123 if (cache->nobjs >= min)
125 while (cache->nobjs < max) {
126 page = (void *)__get_free_page(PGALLOC_GFP);
129 cache->objects[cache->nobjs++] = page;
134 static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
137 free_page((unsigned long)mc->objects[--mc->nobjs]);
140 static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
144 BUG_ON(!mc || !mc->nobjs);
145 p = mc->objects[--mc->nobjs];
149 static void clear_stage2_pgd_entry(struct kvm *kvm, pgd_t *pgd, phys_addr_t addr)
151 pud_t *pud_table __maybe_unused = stage2_pud_offset(pgd, 0UL);
152 stage2_pgd_clear(pgd);
153 kvm_tlb_flush_vmid_ipa(kvm, addr);
154 stage2_pud_free(pud_table);
155 put_page(virt_to_page(pgd));
158 static void clear_stage2_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
160 pmd_t *pmd_table __maybe_unused = stage2_pmd_offset(pud, 0);
161 VM_BUG_ON(stage2_pud_huge(*pud));
162 stage2_pud_clear(pud);
163 kvm_tlb_flush_vmid_ipa(kvm, addr);
164 stage2_pmd_free(pmd_table);
165 put_page(virt_to_page(pud));
168 static void clear_stage2_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
170 pte_t *pte_table = pte_offset_kernel(pmd, 0);
171 VM_BUG_ON(pmd_thp_or_huge(*pmd));
173 kvm_tlb_flush_vmid_ipa(kvm, addr);
174 pte_free_kernel(NULL, pte_table);
175 put_page(virt_to_page(pmd));
179 * Unmapping vs dcache management:
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
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.
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.
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.
198 static void unmap_stage2_ptes(struct kvm *kvm, pmd_t *pmd,
199 phys_addr_t addr, phys_addr_t end)
201 phys_addr_t start_addr = addr;
202 pte_t *pte, *start_pte;
204 start_pte = pte = pte_offset_kernel(pmd, addr);
206 if (!pte_none(*pte)) {
207 pte_t old_pte = *pte;
209 kvm_set_pte(pte, __pte(0));
210 kvm_tlb_flush_vmid_ipa(kvm, addr);
212 /* No need to invalidate the cache for device mappings */
213 if (!kvm_is_device_pfn(pte_pfn(old_pte)))
214 kvm_flush_dcache_pte(old_pte);
216 put_page(virt_to_page(pte));
218 } while (pte++, addr += PAGE_SIZE, addr != end);
220 if (stage2_pte_table_empty(start_pte))
221 clear_stage2_pmd_entry(kvm, pmd, start_addr);
224 static void unmap_stage2_pmds(struct kvm *kvm, pud_t *pud,
225 phys_addr_t addr, phys_addr_t end)
227 phys_addr_t next, start_addr = addr;
228 pmd_t *pmd, *start_pmd;
230 start_pmd = pmd = stage2_pmd_offset(pud, addr);
232 next = stage2_pmd_addr_end(addr, end);
233 if (!pmd_none(*pmd)) {
234 if (pmd_thp_or_huge(*pmd)) {
235 pmd_t old_pmd = *pmd;
238 kvm_tlb_flush_vmid_ipa(kvm, addr);
240 kvm_flush_dcache_pmd(old_pmd);
242 put_page(virt_to_page(pmd));
244 unmap_stage2_ptes(kvm, pmd, addr, next);
247 } while (pmd++, addr = next, addr != end);
249 if (stage2_pmd_table_empty(start_pmd))
250 clear_stage2_pud_entry(kvm, pud, start_addr);
253 static void unmap_stage2_puds(struct kvm *kvm, pgd_t *pgd,
254 phys_addr_t addr, phys_addr_t end)
256 phys_addr_t next, start_addr = addr;
257 pud_t *pud, *start_pud;
259 start_pud = pud = stage2_pud_offset(pgd, addr);
261 next = stage2_pud_addr_end(addr, end);
262 if (!stage2_pud_none(*pud)) {
263 if (stage2_pud_huge(*pud)) {
264 pud_t old_pud = *pud;
266 stage2_pud_clear(pud);
267 kvm_tlb_flush_vmid_ipa(kvm, addr);
268 kvm_flush_dcache_pud(old_pud);
269 put_page(virt_to_page(pud));
271 unmap_stage2_pmds(kvm, pud, addr, next);
274 } while (pud++, addr = next, addr != end);
276 if (stage2_pud_table_empty(start_pud))
277 clear_stage2_pgd_entry(kvm, pgd, start_addr);
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
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.
291 static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
294 phys_addr_t addr = start, end = start + size;
297 assert_spin_locked(&kvm->mmu_lock);
298 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
301 * Make sure the page table is still active, as another thread
302 * could have possibly freed the page table, while we released
305 if (!READ_ONCE(kvm->arch.pgd))
307 next = stage2_pgd_addr_end(addr, end);
308 if (!stage2_pgd_none(*pgd))
309 unmap_stage2_puds(kvm, pgd, addr, next);
311 * If the range is too large, release the kvm->mmu_lock
312 * to prevent starvation and lockup detector warnings.
315 cond_resched_lock(&kvm->mmu_lock);
316 } while (pgd++, addr = next, addr != end);
319 static void stage2_flush_ptes(struct kvm *kvm, pmd_t *pmd,
320 phys_addr_t addr, phys_addr_t end)
324 pte = pte_offset_kernel(pmd, addr);
326 if (!pte_none(*pte) && !kvm_is_device_pfn(pte_pfn(*pte)))
327 kvm_flush_dcache_pte(*pte);
328 } while (pte++, addr += PAGE_SIZE, addr != end);
331 static void stage2_flush_pmds(struct kvm *kvm, pud_t *pud,
332 phys_addr_t addr, phys_addr_t end)
337 pmd = stage2_pmd_offset(pud, addr);
339 next = stage2_pmd_addr_end(addr, end);
340 if (!pmd_none(*pmd)) {
341 if (pmd_thp_or_huge(*pmd))
342 kvm_flush_dcache_pmd(*pmd);
344 stage2_flush_ptes(kvm, pmd, addr, next);
346 } while (pmd++, addr = next, addr != end);
349 static void stage2_flush_puds(struct kvm *kvm, pgd_t *pgd,
350 phys_addr_t addr, phys_addr_t end)
355 pud = stage2_pud_offset(pgd, addr);
357 next = stage2_pud_addr_end(addr, end);
358 if (!stage2_pud_none(*pud)) {
359 if (stage2_pud_huge(*pud))
360 kvm_flush_dcache_pud(*pud);
362 stage2_flush_pmds(kvm, pud, addr, next);
364 } while (pud++, addr = next, addr != end);
367 static void stage2_flush_memslot(struct kvm *kvm,
368 struct kvm_memory_slot *memslot)
370 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
371 phys_addr_t end = addr + PAGE_SIZE * memslot->npages;
375 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
377 next = stage2_pgd_addr_end(addr, end);
378 stage2_flush_puds(kvm, pgd, addr, next);
379 } while (pgd++, addr = next, addr != end);
383 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
384 * @kvm: The struct kvm pointer
386 * Go through the stage 2 page tables and invalidate any cache lines
387 * backing memory already mapped to the VM.
389 static void stage2_flush_vm(struct kvm *kvm)
391 struct kvm_memslots *slots;
392 struct kvm_memory_slot *memslot;
395 idx = srcu_read_lock(&kvm->srcu);
396 spin_lock(&kvm->mmu_lock);
398 slots = kvm_memslots(kvm);
399 kvm_for_each_memslot(memslot, slots)
400 stage2_flush_memslot(kvm, memslot);
402 spin_unlock(&kvm->mmu_lock);
403 srcu_read_unlock(&kvm->srcu, idx);
406 static void clear_hyp_pgd_entry(pgd_t *pgd)
408 pud_t *pud_table __maybe_unused = pud_offset(pgd, 0UL);
410 pud_free(NULL, pud_table);
411 put_page(virt_to_page(pgd));
414 static void clear_hyp_pud_entry(pud_t *pud)
416 pmd_t *pmd_table __maybe_unused = pmd_offset(pud, 0);
417 VM_BUG_ON(pud_huge(*pud));
419 pmd_free(NULL, pmd_table);
420 put_page(virt_to_page(pud));
423 static void clear_hyp_pmd_entry(pmd_t *pmd)
425 pte_t *pte_table = pte_offset_kernel(pmd, 0);
426 VM_BUG_ON(pmd_thp_or_huge(*pmd));
428 pte_free_kernel(NULL, pte_table);
429 put_page(virt_to_page(pmd));
432 static void unmap_hyp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
434 pte_t *pte, *start_pte;
436 start_pte = pte = pte_offset_kernel(pmd, addr);
438 if (!pte_none(*pte)) {
439 kvm_set_pte(pte, __pte(0));
440 put_page(virt_to_page(pte));
442 } while (pte++, addr += PAGE_SIZE, addr != end);
444 if (hyp_pte_table_empty(start_pte))
445 clear_hyp_pmd_entry(pmd);
448 static void unmap_hyp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
451 pmd_t *pmd, *start_pmd;
453 start_pmd = pmd = pmd_offset(pud, addr);
455 next = pmd_addr_end(addr, end);
456 /* Hyp doesn't use huge pmds */
458 unmap_hyp_ptes(pmd, addr, next);
459 } while (pmd++, addr = next, addr != end);
461 if (hyp_pmd_table_empty(start_pmd))
462 clear_hyp_pud_entry(pud);
465 static void unmap_hyp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
468 pud_t *pud, *start_pud;
470 start_pud = pud = pud_offset(pgd, addr);
472 next = pud_addr_end(addr, end);
473 /* Hyp doesn't use huge puds */
475 unmap_hyp_pmds(pud, addr, next);
476 } while (pud++, addr = next, addr != end);
478 if (hyp_pud_table_empty(start_pud))
479 clear_hyp_pgd_entry(pgd);
482 static void unmap_hyp_range(pgd_t *pgdp, phys_addr_t start, u64 size)
485 phys_addr_t addr = start, end = start + size;
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.
492 pgd = pgdp + pgd_index(addr);
494 next = pgd_addr_end(addr, end);
496 unmap_hyp_puds(pgd, addr, next);
497 } while (pgd++, addr = next, addr != end);
501 * free_hyp_pgds - free Hyp-mode page tables
503 * 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).
508 * boot_hyp_pgd should only map two pages for the init code.
510 void free_hyp_pgds(void)
514 mutex_lock(&kvm_hyp_pgd_mutex);
517 unmap_hyp_range(boot_hyp_pgd, hyp_idmap_start, PAGE_SIZE);
518 free_pages((unsigned long)boot_hyp_pgd, hyp_pgd_order);
523 unmap_hyp_range(hyp_pgd, hyp_idmap_start, PAGE_SIZE);
524 for (addr = PAGE_OFFSET; virt_addr_valid(addr); addr += PGDIR_SIZE)
525 unmap_hyp_range(hyp_pgd, kern_hyp_va(addr), PGDIR_SIZE);
526 for (addr = VMALLOC_START; is_vmalloc_addr((void*)addr); addr += PGDIR_SIZE)
527 unmap_hyp_range(hyp_pgd, kern_hyp_va(addr), PGDIR_SIZE);
529 free_pages((unsigned long)hyp_pgd, hyp_pgd_order);
532 if (merged_hyp_pgd) {
533 clear_page(merged_hyp_pgd);
534 free_page((unsigned long)merged_hyp_pgd);
535 merged_hyp_pgd = NULL;
538 mutex_unlock(&kvm_hyp_pgd_mutex);
541 static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
542 unsigned long end, unsigned long pfn,
550 pte = pte_offset_kernel(pmd, addr);
551 kvm_set_pte(pte, pfn_pte(pfn, prot));
552 get_page(virt_to_page(pte));
553 kvm_flush_dcache_to_poc(pte, sizeof(*pte));
555 } while (addr += PAGE_SIZE, addr != end);
558 static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
559 unsigned long end, unsigned long pfn,
564 unsigned long addr, next;
568 pmd = pmd_offset(pud, addr);
570 BUG_ON(pmd_sect(*pmd));
572 if (pmd_none(*pmd)) {
573 pte = pte_alloc_one_kernel(NULL, addr);
575 kvm_err("Cannot allocate Hyp pte\n");
578 pmd_populate_kernel(NULL, pmd, pte);
579 get_page(virt_to_page(pmd));
580 kvm_flush_dcache_to_poc(pmd, sizeof(*pmd));
583 next = pmd_addr_end(addr, end);
585 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
586 pfn += (next - addr) >> PAGE_SHIFT;
587 } while (addr = next, addr != end);
592 static int create_hyp_pud_mappings(pgd_t *pgd, unsigned long start,
593 unsigned long end, unsigned long pfn,
598 unsigned long addr, next;
603 pud = pud_offset(pgd, addr);
605 if (pud_none_or_clear_bad(pud)) {
606 pmd = pmd_alloc_one(NULL, addr);
608 kvm_err("Cannot allocate Hyp pmd\n");
611 pud_populate(NULL, pud, pmd);
612 get_page(virt_to_page(pud));
613 kvm_flush_dcache_to_poc(pud, sizeof(*pud));
616 next = pud_addr_end(addr, end);
617 ret = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
620 pfn += (next - addr) >> PAGE_SHIFT;
621 } while (addr = next, addr != end);
626 static int __create_hyp_mappings(pgd_t *pgdp,
627 unsigned long start, unsigned long end,
628 unsigned long pfn, pgprot_t prot)
632 unsigned long addr, next, ptrs_per_pgd = PTRS_PER_PGD;
636 * If it's not the hyp_pgd, fall back to the kvm idmap layout.
639 ptrs_per_pgd = __kvm_idmap_ptrs_per_pgd();
641 mutex_lock(&kvm_hyp_pgd_mutex);
642 addr = start & PAGE_MASK;
643 end = PAGE_ALIGN(end);
645 pgd = pgdp + ((addr >> PGDIR_SHIFT) & (ptrs_per_pgd - 1));
647 if (pgd_none(*pgd)) {
648 pud = pud_alloc_one(NULL, addr);
650 kvm_err("Cannot allocate Hyp pud\n");
654 pgd_populate(NULL, pgd, pud);
655 get_page(virt_to_page(pgd));
656 kvm_flush_dcache_to_poc(pgd, sizeof(*pgd));
659 next = pgd_addr_end(addr, end);
660 err = create_hyp_pud_mappings(pgd, addr, next, pfn, prot);
663 pfn += (next - addr) >> PAGE_SHIFT;
664 } while (addr = next, addr != end);
666 mutex_unlock(&kvm_hyp_pgd_mutex);
670 static phys_addr_t kvm_kaddr_to_phys(void *kaddr)
672 if (!is_vmalloc_addr(kaddr)) {
673 BUG_ON(!virt_addr_valid(kaddr));
676 return page_to_phys(vmalloc_to_page(kaddr)) +
677 offset_in_page(kaddr);
682 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
683 * @from: The virtual kernel start address of the range
684 * @to: The virtual kernel end address of the range (exclusive)
685 * @prot: The protection to be applied to this range
687 * The same virtual address as the kernel virtual address is also used
688 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
691 int create_hyp_mappings(void *from, void *to, pgprot_t prot)
693 phys_addr_t phys_addr;
694 unsigned long virt_addr;
695 unsigned long start = kern_hyp_va((unsigned long)from);
696 unsigned long end = kern_hyp_va((unsigned long)to);
698 if (is_kernel_in_hyp_mode())
701 start = start & PAGE_MASK;
702 end = PAGE_ALIGN(end);
704 for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) {
707 phys_addr = kvm_kaddr_to_phys(from + virt_addr - start);
708 err = __create_hyp_mappings(hyp_pgd, virt_addr,
709 virt_addr + PAGE_SIZE,
710 __phys_to_pfn(phys_addr),
720 * create_hyp_io_mappings - duplicate a kernel IO mapping into Hyp mode
721 * @from: The kernel start VA of the range
722 * @to: The kernel end VA of the range (exclusive)
723 * @phys_addr: The physical start address which gets mapped
725 * The resulting HYP VA is the same as the kernel VA, modulo
728 int create_hyp_io_mappings(void *from, void *to, phys_addr_t phys_addr)
730 unsigned long start = kern_hyp_va((unsigned long)from);
731 unsigned long end = kern_hyp_va((unsigned long)to);
733 if (is_kernel_in_hyp_mode())
736 /* Check for a valid kernel IO mapping */
737 if (!is_vmalloc_addr(from) || !is_vmalloc_addr(to - 1))
740 return __create_hyp_mappings(hyp_pgd, start, end,
741 __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE);
745 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
746 * @kvm: The KVM struct pointer for the VM.
748 * Allocates only the stage-2 HW PGD level table(s) (can support either full
749 * 40-bit input addresses or limited to 32-bit input addresses). Clears the
752 * Note we don't need locking here as this is only called when the VM is
753 * created, which can only be done once.
755 int kvm_alloc_stage2_pgd(struct kvm *kvm)
759 if (kvm->arch.pgd != NULL) {
760 kvm_err("kvm_arch already initialized?\n");
764 /* Allocate the HW PGD, making sure that each page gets its own refcount */
765 pgd = alloc_pages_exact(S2_PGD_SIZE, GFP_KERNEL | __GFP_ZERO);
773 static void stage2_unmap_memslot(struct kvm *kvm,
774 struct kvm_memory_slot *memslot)
776 hva_t hva = memslot->userspace_addr;
777 phys_addr_t addr = memslot->base_gfn << PAGE_SHIFT;
778 phys_addr_t size = PAGE_SIZE * memslot->npages;
779 hva_t reg_end = hva + size;
782 * A memory region could potentially cover multiple VMAs, and any holes
783 * between them, so iterate over all of them to find out if we should
786 * +--------------------------------------------+
787 * +---------------+----------------+ +----------------+
788 * | : VMA 1 | VMA 2 | | VMA 3 : |
789 * +---------------+----------------+ +----------------+
791 * +--------------------------------------------+
794 struct vm_area_struct *vma = find_vma(current->mm, hva);
795 hva_t vm_start, vm_end;
797 if (!vma || vma->vm_start >= reg_end)
801 * Take the intersection of this VMA with the memory region
803 vm_start = max(hva, vma->vm_start);
804 vm_end = min(reg_end, vma->vm_end);
806 if (!(vma->vm_flags & VM_PFNMAP)) {
807 gpa_t gpa = addr + (vm_start - memslot->userspace_addr);
808 unmap_stage2_range(kvm, gpa, vm_end - vm_start);
811 } while (hva < reg_end);
815 * stage2_unmap_vm - Unmap Stage-2 RAM mappings
816 * @kvm: The struct kvm pointer
818 * Go through the memregions and unmap any reguler RAM
819 * backing memory already mapped to the VM.
821 void stage2_unmap_vm(struct kvm *kvm)
823 struct kvm_memslots *slots;
824 struct kvm_memory_slot *memslot;
827 idx = srcu_read_lock(&kvm->srcu);
828 down_read(¤t->mm->mmap_sem);
829 spin_lock(&kvm->mmu_lock);
831 slots = kvm_memslots(kvm);
832 kvm_for_each_memslot(memslot, slots)
833 stage2_unmap_memslot(kvm, memslot);
835 spin_unlock(&kvm->mmu_lock);
836 up_read(¤t->mm->mmap_sem);
837 srcu_read_unlock(&kvm->srcu, idx);
841 * kvm_free_stage2_pgd - free all stage-2 tables
842 * @kvm: The KVM struct pointer for the VM.
844 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
845 * underlying level-2 and level-3 tables before freeing the actual level-1 table
846 * and setting the struct pointer to NULL.
848 void kvm_free_stage2_pgd(struct kvm *kvm)
852 spin_lock(&kvm->mmu_lock);
854 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
855 pgd = READ_ONCE(kvm->arch.pgd);
856 kvm->arch.pgd = NULL;
858 spin_unlock(&kvm->mmu_lock);
860 /* Free the HW pgd, one page at a time */
862 free_pages_exact(pgd, S2_PGD_SIZE);
865 static pud_t *stage2_get_pud(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
871 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
872 if (WARN_ON(stage2_pgd_none(*pgd))) {
875 pud = mmu_memory_cache_alloc(cache);
876 stage2_pgd_populate(pgd, pud);
877 get_page(virt_to_page(pgd));
880 return stage2_pud_offset(pgd, addr);
883 static pmd_t *stage2_get_pmd(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
889 pud = stage2_get_pud(kvm, cache, addr);
893 if (stage2_pud_none(*pud)) {
896 pmd = mmu_memory_cache_alloc(cache);
897 stage2_pud_populate(pud, pmd);
898 get_page(virt_to_page(pud));
901 return stage2_pmd_offset(pud, addr);
904 static int stage2_set_pmd_huge(struct kvm *kvm, struct kvm_mmu_memory_cache
905 *cache, phys_addr_t addr, const pmd_t *new_pmd)
909 pmd = stage2_get_pmd(kvm, cache, addr);
913 * Mapping in huge pages should only happen through a fault. If a
914 * page is merged into a transparent huge page, the individual
915 * subpages of that huge page should be unmapped through MMU
916 * notifiers before we get here.
918 * Merging of CompoundPages is not supported; they should become
919 * splitting first, unmapped, merged, and mapped back in on-demand.
921 VM_BUG_ON(pmd_present(*pmd) && pmd_pfn(*pmd) != pmd_pfn(*new_pmd));
924 if (pmd_present(old_pmd)) {
926 kvm_tlb_flush_vmid_ipa(kvm, addr);
928 get_page(virt_to_page(pmd));
931 kvm_set_pmd(pmd, *new_pmd);
935 static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
936 phys_addr_t addr, const pte_t *new_pte,
941 bool iomap = flags & KVM_S2PTE_FLAG_IS_IOMAP;
942 bool logging_active = flags & KVM_S2_FLAG_LOGGING_ACTIVE;
944 VM_BUG_ON(logging_active && !cache);
946 /* Create stage-2 page table mapping - Levels 0 and 1 */
947 pmd = stage2_get_pmd(kvm, cache, addr);
950 * Ignore calls from kvm_set_spte_hva for unallocated
957 * While dirty page logging - dissolve huge PMD, then continue on to
961 stage2_dissolve_pmd(kvm, addr, pmd);
963 /* Create stage-2 page mappings - Level 2 */
964 if (pmd_none(*pmd)) {
966 return 0; /* ignore calls from kvm_set_spte_hva */
967 pte = mmu_memory_cache_alloc(cache);
968 pmd_populate_kernel(NULL, pmd, pte);
969 get_page(virt_to_page(pmd));
972 pte = pte_offset_kernel(pmd, addr);
974 if (iomap && pte_present(*pte))
977 /* Create 2nd stage page table mapping - Level 3 */
979 if (pte_present(old_pte)) {
980 kvm_set_pte(pte, __pte(0));
981 kvm_tlb_flush_vmid_ipa(kvm, addr);
983 get_page(virt_to_page(pte));
986 kvm_set_pte(pte, *new_pte);
990 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
991 static int stage2_ptep_test_and_clear_young(pte_t *pte)
993 if (pte_young(*pte)) {
994 *pte = pte_mkold(*pte);
1000 static int stage2_ptep_test_and_clear_young(pte_t *pte)
1002 return __ptep_test_and_clear_young(pte);
1006 static int stage2_pmdp_test_and_clear_young(pmd_t *pmd)
1008 return stage2_ptep_test_and_clear_young((pte_t *)pmd);
1012 * kvm_phys_addr_ioremap - map a device range to guest IPA
1014 * @kvm: The KVM pointer
1015 * @guest_ipa: The IPA at which to insert the mapping
1016 * @pa: The physical address of the device
1017 * @size: The size of the mapping
1019 int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
1020 phys_addr_t pa, unsigned long size, bool writable)
1022 phys_addr_t addr, end;
1025 struct kvm_mmu_memory_cache cache = { 0, };
1027 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
1028 pfn = __phys_to_pfn(pa);
1030 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
1031 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
1034 pte = kvm_s2pte_mkwrite(pte);
1036 ret = mmu_topup_memory_cache(&cache, KVM_MMU_CACHE_MIN_PAGES,
1040 spin_lock(&kvm->mmu_lock);
1041 ret = stage2_set_pte(kvm, &cache, addr, &pte,
1042 KVM_S2PTE_FLAG_IS_IOMAP);
1043 spin_unlock(&kvm->mmu_lock);
1051 mmu_free_memory_cache(&cache);
1055 static bool transparent_hugepage_adjust(kvm_pfn_t *pfnp, phys_addr_t *ipap)
1057 kvm_pfn_t pfn = *pfnp;
1058 gfn_t gfn = *ipap >> PAGE_SHIFT;
1060 if (PageTransCompoundMap(pfn_to_page(pfn))) {
1063 * The address we faulted on is backed by a transparent huge
1064 * page. However, because we map the compound huge page and
1065 * not the individual tail page, we need to transfer the
1066 * refcount to the head page. We have to be careful that the
1067 * THP doesn't start to split while we are adjusting the
1070 * We are sure this doesn't happen, because mmu_notifier_retry
1071 * was successful and we are holding the mmu_lock, so if this
1072 * THP is trying to split, it will be blocked in the mmu
1073 * notifier before touching any of the pages, specifically
1074 * before being able to call __split_huge_page_refcount().
1076 * We can therefore safely transfer the refcount from PG_tail
1077 * to PG_head and switch the pfn from a tail page to the head
1080 mask = PTRS_PER_PMD - 1;
1081 VM_BUG_ON((gfn & mask) != (pfn & mask));
1084 kvm_release_pfn_clean(pfn);
1096 static bool kvm_is_write_fault(struct kvm_vcpu *vcpu)
1098 if (kvm_vcpu_trap_is_iabt(vcpu))
1101 return kvm_vcpu_dabt_iswrite(vcpu);
1105 * stage2_wp_ptes - write protect PMD range
1106 * @pmd: pointer to pmd entry
1107 * @addr: range start address
1108 * @end: range end address
1110 static void stage2_wp_ptes(pmd_t *pmd, phys_addr_t addr, phys_addr_t end)
1114 pte = pte_offset_kernel(pmd, addr);
1116 if (!pte_none(*pte)) {
1117 if (!kvm_s2pte_readonly(pte))
1118 kvm_set_s2pte_readonly(pte);
1120 } while (pte++, addr += PAGE_SIZE, addr != end);
1124 * stage2_wp_pmds - write protect PUD range
1125 * @pud: pointer to pud entry
1126 * @addr: range start address
1127 * @end: range end address
1129 static void stage2_wp_pmds(pud_t *pud, phys_addr_t addr, phys_addr_t end)
1134 pmd = stage2_pmd_offset(pud, addr);
1137 next = stage2_pmd_addr_end(addr, end);
1138 if (!pmd_none(*pmd)) {
1139 if (pmd_thp_or_huge(*pmd)) {
1140 if (!kvm_s2pmd_readonly(pmd))
1141 kvm_set_s2pmd_readonly(pmd);
1143 stage2_wp_ptes(pmd, addr, next);
1146 } while (pmd++, addr = next, addr != end);
1150 * stage2_wp_puds - write protect PGD range
1151 * @pgd: pointer to pgd entry
1152 * @addr: range start address
1153 * @end: range end address
1155 * Process PUD entries, for a huge PUD we cause a panic.
1157 static void stage2_wp_puds(pgd_t *pgd, phys_addr_t addr, phys_addr_t end)
1162 pud = stage2_pud_offset(pgd, addr);
1164 next = stage2_pud_addr_end(addr, end);
1165 if (!stage2_pud_none(*pud)) {
1166 /* TODO:PUD not supported, revisit later if supported */
1167 BUG_ON(stage2_pud_huge(*pud));
1168 stage2_wp_pmds(pud, addr, next);
1170 } while (pud++, addr = next, addr != end);
1174 * stage2_wp_range() - write protect stage2 memory region range
1175 * @kvm: The KVM pointer
1176 * @addr: Start address of range
1177 * @end: End address of range
1179 static void stage2_wp_range(struct kvm *kvm, phys_addr_t addr, phys_addr_t end)
1184 pgd = kvm->arch.pgd + stage2_pgd_index(addr);
1187 * Release kvm_mmu_lock periodically if the memory region is
1188 * large. Otherwise, we may see kernel panics with
1189 * CONFIG_DETECT_HUNG_TASK, CONFIG_LOCKUP_DETECTOR,
1190 * CONFIG_LOCKDEP. Additionally, holding the lock too long
1191 * will also starve other vCPUs. We have to also make sure
1192 * that the page tables are not freed while we released
1195 cond_resched_lock(&kvm->mmu_lock);
1196 if (!READ_ONCE(kvm->arch.pgd))
1198 next = stage2_pgd_addr_end(addr, end);
1199 if (stage2_pgd_present(*pgd))
1200 stage2_wp_puds(pgd, addr, next);
1201 } while (pgd++, addr = next, addr != end);
1205 * kvm_mmu_wp_memory_region() - write protect stage 2 entries for memory slot
1206 * @kvm: The KVM pointer
1207 * @slot: The memory slot to write protect
1209 * Called to start logging dirty pages after memory region
1210 * KVM_MEM_LOG_DIRTY_PAGES operation is called. After this function returns
1211 * all present PMD and PTEs are write protected in the memory region.
1212 * Afterwards read of dirty page log can be called.
1214 * Acquires kvm_mmu_lock. Called with kvm->slots_lock mutex acquired,
1215 * serializing operations for VM memory regions.
1217 void kvm_mmu_wp_memory_region(struct kvm *kvm, int slot)
1219 struct kvm_memslots *slots = kvm_memslots(kvm);
1220 struct kvm_memory_slot *memslot = id_to_memslot(slots, slot);
1221 phys_addr_t start = memslot->base_gfn << PAGE_SHIFT;
1222 phys_addr_t end = (memslot->base_gfn + memslot->npages) << PAGE_SHIFT;
1224 spin_lock(&kvm->mmu_lock);
1225 stage2_wp_range(kvm, start, end);
1226 spin_unlock(&kvm->mmu_lock);
1227 kvm_flush_remote_tlbs(kvm);
1231 * kvm_mmu_write_protect_pt_masked() - write protect dirty pages
1232 * @kvm: The KVM pointer
1233 * @slot: The memory slot associated with mask
1234 * @gfn_offset: The gfn offset in memory slot
1235 * @mask: The mask of dirty pages at offset 'gfn_offset' in this memory
1236 * slot to be write protected
1238 * Walks bits set in mask write protects the associated pte's. Caller must
1239 * acquire kvm_mmu_lock.
1241 static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
1242 struct kvm_memory_slot *slot,
1243 gfn_t gfn_offset, unsigned long mask)
1245 phys_addr_t base_gfn = slot->base_gfn + gfn_offset;
1246 phys_addr_t start = (base_gfn + __ffs(mask)) << PAGE_SHIFT;
1247 phys_addr_t end = (base_gfn + __fls(mask) + 1) << PAGE_SHIFT;
1249 stage2_wp_range(kvm, start, end);
1253 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1256 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1257 * enable dirty logging for them.
1259 void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1260 struct kvm_memory_slot *slot,
1261 gfn_t gfn_offset, unsigned long mask)
1263 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
1266 static void coherent_cache_guest_page(struct kvm_vcpu *vcpu, kvm_pfn_t pfn,
1269 __coherent_cache_guest_page(vcpu, pfn, size);
1272 static void kvm_send_hwpoison_signal(unsigned long address,
1273 struct vm_area_struct *vma)
1277 info.si_signo = SIGBUS;
1279 info.si_code = BUS_MCEERR_AR;
1280 info.si_addr = (void __user *)address;
1282 if (is_vm_hugetlb_page(vma))
1283 info.si_addr_lsb = huge_page_shift(hstate_vma(vma));
1285 info.si_addr_lsb = PAGE_SHIFT;
1287 send_sig_info(SIGBUS, &info, current);
1290 static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
1291 struct kvm_memory_slot *memslot, unsigned long hva,
1292 unsigned long fault_status)
1295 bool write_fault, writable, hugetlb = false, force_pte = false;
1296 unsigned long mmu_seq;
1297 gfn_t gfn = fault_ipa >> PAGE_SHIFT;
1298 struct kvm *kvm = vcpu->kvm;
1299 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
1300 struct vm_area_struct *vma;
1302 pgprot_t mem_type = PAGE_S2;
1303 bool logging_active = memslot_is_logging(memslot);
1304 unsigned long flags = 0;
1306 write_fault = kvm_is_write_fault(vcpu);
1307 if (fault_status == FSC_PERM && !write_fault) {
1308 kvm_err("Unexpected L2 read permission error\n");
1312 /* Let's check if we will get back a huge page backed by hugetlbfs */
1313 down_read(¤t->mm->mmap_sem);
1314 vma = find_vma_intersection(current->mm, hva, hva + 1);
1315 if (unlikely(!vma)) {
1316 kvm_err("Failed to find VMA for hva 0x%lx\n", hva);
1317 up_read(¤t->mm->mmap_sem);
1321 if (is_vm_hugetlb_page(vma) && !logging_active) {
1323 gfn = (fault_ipa & PMD_MASK) >> PAGE_SHIFT;
1326 * Pages belonging to memslots that don't have the same
1327 * alignment for userspace and IPA cannot be mapped using
1328 * block descriptors even if the pages belong to a THP for
1329 * the process, because the stage-2 block descriptor will
1330 * cover more than a single THP and we loose atomicity for
1331 * unmapping, updates, and splits of the THP or other pages
1332 * in the stage-2 block range.
1334 if ((memslot->userspace_addr & ~PMD_MASK) !=
1335 ((memslot->base_gfn << PAGE_SHIFT) & ~PMD_MASK))
1338 up_read(¤t->mm->mmap_sem);
1340 /* We need minimum second+third level pages */
1341 ret = mmu_topup_memory_cache(memcache, KVM_MMU_CACHE_MIN_PAGES,
1346 mmu_seq = vcpu->kvm->mmu_notifier_seq;
1348 * Ensure the read of mmu_notifier_seq happens before we call
1349 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
1350 * the page we just got a reference to gets unmapped before we have a
1351 * chance to grab the mmu_lock, which ensure that if the page gets
1352 * unmapped afterwards, the call to kvm_unmap_hva will take it away
1353 * from us again properly. This smp_rmb() interacts with the smp_wmb()
1354 * in kvm_mmu_notifier_invalidate_<page|range_end>.
1358 pfn = gfn_to_pfn_prot(kvm, gfn, write_fault, &writable);
1359 if (pfn == KVM_PFN_ERR_HWPOISON) {
1360 kvm_send_hwpoison_signal(hva, vma);
1363 if (is_error_noslot_pfn(pfn))
1366 if (kvm_is_device_pfn(pfn)) {
1367 mem_type = PAGE_S2_DEVICE;
1368 flags |= KVM_S2PTE_FLAG_IS_IOMAP;
1369 } else if (logging_active) {
1371 * Faults on pages in a memslot with logging enabled
1372 * should not be mapped with huge pages (it introduces churn
1373 * and performance degradation), so force a pte mapping.
1376 flags |= KVM_S2_FLAG_LOGGING_ACTIVE;
1379 * Only actually map the page as writable if this was a write
1386 spin_lock(&kvm->mmu_lock);
1387 if (mmu_notifier_retry(kvm, mmu_seq))
1390 if (!hugetlb && !force_pte)
1391 hugetlb = transparent_hugepage_adjust(&pfn, &fault_ipa);
1394 pmd_t new_pmd = pfn_pmd(pfn, mem_type);
1395 new_pmd = pmd_mkhuge(new_pmd);
1397 new_pmd = kvm_s2pmd_mkwrite(new_pmd);
1398 kvm_set_pfn_dirty(pfn);
1400 coherent_cache_guest_page(vcpu, pfn, PMD_SIZE);
1401 ret = stage2_set_pmd_huge(kvm, memcache, fault_ipa, &new_pmd);
1403 pte_t new_pte = pfn_pte(pfn, mem_type);
1406 new_pte = kvm_s2pte_mkwrite(new_pte);
1407 kvm_set_pfn_dirty(pfn);
1408 mark_page_dirty(kvm, gfn);
1410 coherent_cache_guest_page(vcpu, pfn, PAGE_SIZE);
1411 ret = stage2_set_pte(kvm, memcache, fault_ipa, &new_pte, flags);
1415 spin_unlock(&kvm->mmu_lock);
1416 kvm_set_pfn_accessed(pfn);
1417 kvm_release_pfn_clean(pfn);
1422 * Resolve the access fault by making the page young again.
1423 * Note that because the faulting entry is guaranteed not to be
1424 * cached in the TLB, we don't need to invalidate anything.
1425 * Only the HW Access Flag updates are supported for Stage 2 (no DBM),
1426 * so there is no need for atomic (pte|pmd)_mkyoung operations.
1428 static void handle_access_fault(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa)
1433 bool pfn_valid = false;
1435 trace_kvm_access_fault(fault_ipa);
1437 spin_lock(&vcpu->kvm->mmu_lock);
1439 pmd = stage2_get_pmd(vcpu->kvm, NULL, fault_ipa);
1440 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1443 if (pmd_thp_or_huge(*pmd)) { /* THP, HugeTLB */
1444 *pmd = pmd_mkyoung(*pmd);
1445 pfn = pmd_pfn(*pmd);
1450 pte = pte_offset_kernel(pmd, fault_ipa);
1451 if (pte_none(*pte)) /* Nothing there either */
1454 *pte = pte_mkyoung(*pte); /* Just a page... */
1455 pfn = pte_pfn(*pte);
1458 spin_unlock(&vcpu->kvm->mmu_lock);
1460 kvm_set_pfn_accessed(pfn);
1464 * kvm_handle_guest_abort - handles all 2nd stage aborts
1465 * @vcpu: the VCPU pointer
1466 * @run: the kvm_run structure
1468 * Any abort that gets to the host is almost guaranteed to be caused by a
1469 * missing second stage translation table entry, which can mean that either the
1470 * guest simply needs more memory and we must allocate an appropriate page or it
1471 * can mean that the guest tried to access I/O memory, which is emulated by user
1472 * space. The distinction is based on the IPA causing the fault and whether this
1473 * memory region has been registered as standard RAM by user space.
1475 int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
1477 unsigned long fault_status;
1478 phys_addr_t fault_ipa;
1479 struct kvm_memory_slot *memslot;
1481 bool is_iabt, write_fault, writable;
1485 fault_status = kvm_vcpu_trap_get_fault_type(vcpu);
1487 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
1488 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
1490 /* Synchronous External Abort? */
1491 if (kvm_vcpu_dabt_isextabt(vcpu)) {
1493 * For RAS the host kernel may handle this abort.
1494 * There is no need to pass the error into the guest.
1496 if (!handle_guest_sea(fault_ipa, kvm_vcpu_get_hsr(vcpu)))
1499 if (unlikely(!is_iabt)) {
1500 kvm_inject_vabt(vcpu);
1505 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
1506 kvm_vcpu_get_hfar(vcpu), fault_ipa);
1508 /* Check the stage-2 fault is trans. fault or write fault */
1509 if (fault_status != FSC_FAULT && fault_status != FSC_PERM &&
1510 fault_status != FSC_ACCESS) {
1511 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
1512 kvm_vcpu_trap_get_class(vcpu),
1513 (unsigned long)kvm_vcpu_trap_get_fault(vcpu),
1514 (unsigned long)kvm_vcpu_get_hsr(vcpu));
1518 idx = srcu_read_lock(&vcpu->kvm->srcu);
1520 gfn = fault_ipa >> PAGE_SHIFT;
1521 memslot = gfn_to_memslot(vcpu->kvm, gfn);
1522 hva = gfn_to_hva_memslot_prot(memslot, gfn, &writable);
1523 write_fault = kvm_is_write_fault(vcpu);
1524 if (kvm_is_error_hva(hva) || (write_fault && !writable)) {
1526 /* Prefetch Abort on I/O address */
1527 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
1533 * Check for a cache maintenance operation. Since we
1534 * ended-up here, we know it is outside of any memory
1535 * slot. But we can't find out if that is for a device,
1536 * or if the guest is just being stupid. The only thing
1537 * we know for sure is that this range cannot be cached.
1539 * So let's assume that the guest is just being
1540 * cautious, and skip the instruction.
1542 if (kvm_vcpu_dabt_is_cm(vcpu)) {
1543 kvm_skip_instr(vcpu, kvm_vcpu_trap_il_is32bit(vcpu));
1549 * The IPA is reported as [MAX:12], so we need to
1550 * complement it with the bottom 12 bits from the
1551 * faulting VA. This is always 12 bits, irrespective
1554 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
1555 ret = io_mem_abort(vcpu, run, fault_ipa);
1559 /* Userspace should not be able to register out-of-bounds IPAs */
1560 VM_BUG_ON(fault_ipa >= KVM_PHYS_SIZE);
1562 if (fault_status == FSC_ACCESS) {
1563 handle_access_fault(vcpu, fault_ipa);
1568 ret = user_mem_abort(vcpu, fault_ipa, memslot, hva, fault_status);
1572 srcu_read_unlock(&vcpu->kvm->srcu, idx);
1576 static int handle_hva_to_gpa(struct kvm *kvm,
1577 unsigned long start,
1579 int (*handler)(struct kvm *kvm,
1580 gpa_t gpa, u64 size,
1584 struct kvm_memslots *slots;
1585 struct kvm_memory_slot *memslot;
1588 slots = kvm_memslots(kvm);
1590 /* we only care about the pages that the guest sees */
1591 kvm_for_each_memslot(memslot, slots) {
1592 unsigned long hva_start, hva_end;
1595 hva_start = max(start, memslot->userspace_addr);
1596 hva_end = min(end, memslot->userspace_addr +
1597 (memslot->npages << PAGE_SHIFT));
1598 if (hva_start >= hva_end)
1601 gpa = hva_to_gfn_memslot(hva_start, memslot) << PAGE_SHIFT;
1602 ret |= handler(kvm, gpa, (u64)(hva_end - hva_start), data);
1608 static int kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
1610 unmap_stage2_range(kvm, gpa, size);
1614 int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1616 unsigned long end = hva + PAGE_SIZE;
1621 trace_kvm_unmap_hva(hva);
1622 handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL);
1626 int kvm_unmap_hva_range(struct kvm *kvm,
1627 unsigned long start, unsigned long end)
1632 trace_kvm_unmap_hva_range(start, end);
1633 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
1637 static int kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
1639 pte_t *pte = (pte_t *)data;
1641 WARN_ON(size != PAGE_SIZE);
1643 * We can always call stage2_set_pte with KVM_S2PTE_FLAG_LOGGING_ACTIVE
1644 * flag clear because MMU notifiers will have unmapped a huge PMD before
1645 * calling ->change_pte() (which in turn calls kvm_set_spte_hva()) and
1646 * therefore stage2_set_pte() never needs to clear out a huge PMD
1647 * through this calling path.
1649 stage2_set_pte(kvm, NULL, gpa, pte, 0);
1654 void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1656 unsigned long end = hva + PAGE_SIZE;
1662 trace_kvm_set_spte_hva(hva);
1663 stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2);
1664 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
1667 static int kvm_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
1672 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
1673 pmd = stage2_get_pmd(kvm, NULL, gpa);
1674 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1677 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1678 return stage2_pmdp_test_and_clear_young(pmd);
1680 pte = pte_offset_kernel(pmd, gpa);
1684 return stage2_ptep_test_and_clear_young(pte);
1687 static int kvm_test_age_hva_handler(struct kvm *kvm, gpa_t gpa, u64 size, void *data)
1692 WARN_ON(size != PAGE_SIZE && size != PMD_SIZE);
1693 pmd = stage2_get_pmd(kvm, NULL, gpa);
1694 if (!pmd || pmd_none(*pmd)) /* Nothing there */
1697 if (pmd_thp_or_huge(*pmd)) /* THP, HugeTLB */
1698 return pmd_young(*pmd);
1700 pte = pte_offset_kernel(pmd, gpa);
1701 if (!pte_none(*pte)) /* Just a page... */
1702 return pte_young(*pte);
1707 int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
1711 trace_kvm_age_hva(start, end);
1712 return handle_hva_to_gpa(kvm, start, end, kvm_age_hva_handler, NULL);
1715 int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1719 trace_kvm_test_age_hva(hva);
1720 return handle_hva_to_gpa(kvm, hva, hva, kvm_test_age_hva_handler, NULL);
1723 void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
1725 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
1728 phys_addr_t kvm_mmu_get_httbr(void)
1730 if (__kvm_cpu_uses_extended_idmap())
1731 return virt_to_phys(merged_hyp_pgd);
1733 return virt_to_phys(hyp_pgd);
1736 phys_addr_t kvm_get_idmap_vector(void)
1738 return hyp_idmap_vector;
1741 static int kvm_map_idmap_text(pgd_t *pgd)
1745 /* Create the idmap in the boot page tables */
1746 err = __create_hyp_mappings(pgd,
1747 hyp_idmap_start, hyp_idmap_end,
1748 __phys_to_pfn(hyp_idmap_start),
1751 kvm_err("Failed to idmap %lx-%lx\n",
1752 hyp_idmap_start, hyp_idmap_end);
1757 int kvm_mmu_init(void)
1761 hyp_idmap_start = kvm_virt_to_phys(__hyp_idmap_text_start);
1762 hyp_idmap_end = kvm_virt_to_phys(__hyp_idmap_text_end);
1763 hyp_idmap_vector = kvm_virt_to_phys(__kvm_hyp_init);
1766 * We rely on the linker script to ensure at build time that the HYP
1767 * init code does not cross a page boundary.
1769 BUG_ON((hyp_idmap_start ^ (hyp_idmap_end - 1)) & PAGE_MASK);
1771 kvm_info("IDMAP page: %lx\n", hyp_idmap_start);
1772 kvm_info("HYP VA range: %lx:%lx\n",
1773 kern_hyp_va(PAGE_OFFSET), kern_hyp_va(~0UL));
1775 if (hyp_idmap_start >= kern_hyp_va(PAGE_OFFSET) &&
1776 hyp_idmap_start < kern_hyp_va(~0UL) &&
1777 hyp_idmap_start != (unsigned long)__hyp_idmap_text_start) {
1779 * The idmap page is intersecting with the VA space,
1780 * it is not safe to continue further.
1782 kvm_err("IDMAP intersecting with HYP VA, unable to continue\n");
1787 hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, hyp_pgd_order);
1789 kvm_err("Hyp mode PGD not allocated\n");
1794 if (__kvm_cpu_uses_extended_idmap()) {
1795 boot_hyp_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1797 if (!boot_hyp_pgd) {
1798 kvm_err("Hyp boot PGD not allocated\n");
1803 err = kvm_map_idmap_text(boot_hyp_pgd);
1807 merged_hyp_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
1808 if (!merged_hyp_pgd) {
1809 kvm_err("Failed to allocate extra HYP pgd\n");
1812 __kvm_extend_hypmap(boot_hyp_pgd, hyp_pgd, merged_hyp_pgd,
1815 err = kvm_map_idmap_text(hyp_pgd);
1826 void kvm_arch_commit_memory_region(struct kvm *kvm,
1827 const struct kvm_userspace_memory_region *mem,
1828 const struct kvm_memory_slot *old,
1829 const struct kvm_memory_slot *new,
1830 enum kvm_mr_change change)
1833 * At this point memslot has been committed and there is an
1834 * allocated dirty_bitmap[], dirty pages will be be tracked while the
1835 * memory slot is write protected.
1837 if (change != KVM_MR_DELETE && mem->flags & KVM_MEM_LOG_DIRTY_PAGES)
1838 kvm_mmu_wp_memory_region(kvm, mem->slot);
1841 int kvm_arch_prepare_memory_region(struct kvm *kvm,
1842 struct kvm_memory_slot *memslot,
1843 const struct kvm_userspace_memory_region *mem,
1844 enum kvm_mr_change change)
1846 hva_t hva = mem->userspace_addr;
1847 hva_t reg_end = hva + mem->memory_size;
1848 bool writable = !(mem->flags & KVM_MEM_READONLY);
1851 if (change != KVM_MR_CREATE && change != KVM_MR_MOVE &&
1852 change != KVM_MR_FLAGS_ONLY)
1856 * Prevent userspace from creating a memory region outside of the IPA
1857 * space addressable by the KVM guest IPA space.
1859 if (memslot->base_gfn + memslot->npages >=
1860 (KVM_PHYS_SIZE >> PAGE_SHIFT))
1863 down_read(¤t->mm->mmap_sem);
1865 * A memory region could potentially cover multiple VMAs, and any holes
1866 * between them, so iterate over all of them to find out if we can map
1867 * any of them right now.
1869 * +--------------------------------------------+
1870 * +---------------+----------------+ +----------------+
1871 * | : VMA 1 | VMA 2 | | VMA 3 : |
1872 * +---------------+----------------+ +----------------+
1874 * +--------------------------------------------+
1877 struct vm_area_struct *vma = find_vma(current->mm, hva);
1878 hva_t vm_start, vm_end;
1880 if (!vma || vma->vm_start >= reg_end)
1884 * Mapping a read-only VMA is only allowed if the
1885 * memory region is configured as read-only.
1887 if (writable && !(vma->vm_flags & VM_WRITE)) {
1893 * Take the intersection of this VMA with the memory region
1895 vm_start = max(hva, vma->vm_start);
1896 vm_end = min(reg_end, vma->vm_end);
1898 if (vma->vm_flags & VM_PFNMAP) {
1899 gpa_t gpa = mem->guest_phys_addr +
1900 (vm_start - mem->userspace_addr);
1903 pa = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
1904 pa += vm_start - vma->vm_start;
1906 /* IO region dirty page logging not allowed */
1907 if (memslot->flags & KVM_MEM_LOG_DIRTY_PAGES) {
1912 ret = kvm_phys_addr_ioremap(kvm, gpa, pa,
1919 } while (hva < reg_end);
1921 if (change == KVM_MR_FLAGS_ONLY)
1924 spin_lock(&kvm->mmu_lock);
1926 unmap_stage2_range(kvm, mem->guest_phys_addr, mem->memory_size);
1928 stage2_flush_memslot(kvm, memslot);
1929 spin_unlock(&kvm->mmu_lock);
1931 up_read(¤t->mm->mmap_sem);
1935 void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
1936 struct kvm_memory_slot *dont)
1940 int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
1941 unsigned long npages)
1946 void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots)
1950 void kvm_arch_flush_shadow_all(struct kvm *kvm)
1952 kvm_free_stage2_pgd(kvm);
1955 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
1956 struct kvm_memory_slot *slot)
1958 gpa_t gpa = slot->base_gfn << PAGE_SHIFT;
1959 phys_addr_t size = slot->npages << PAGE_SHIFT;
1961 spin_lock(&kvm->mmu_lock);
1962 unmap_stage2_range(kvm, gpa, size);
1963 spin_unlock(&kvm->mmu_lock);
1967 * See note at ARMv7 ARM B1.14.4 (TL;DR: S/W ops are not easily virtualized).
1970 * - S/W ops are local to a CPU (not broadcast)
1971 * - We have line migration behind our back (speculation)
1972 * - System caches don't support S/W at all (damn!)
1974 * In the face of the above, the best we can do is to try and convert
1975 * S/W ops to VA ops. Because the guest is not allowed to infer the
1976 * S/W to PA mapping, it can only use S/W to nuke the whole cache,
1977 * which is a rather good thing for us.
1979 * Also, it is only used when turning caches on/off ("The expected
1980 * usage of the cache maintenance instructions that operate by set/way
1981 * is associated with the cache maintenance instructions associated
1982 * with the powerdown and powerup of caches, if this is required by
1983 * the implementation.").
1985 * We use the following policy:
1987 * - If we trap a S/W operation, we enable VM trapping to detect
1988 * caches being turned on/off, and do a full clean.
1990 * - We flush the caches on both caches being turned on and off.
1992 * - Once the caches are enabled, we stop trapping VM ops.
1994 void kvm_set_way_flush(struct kvm_vcpu *vcpu)
1996 unsigned long hcr = vcpu_get_hcr(vcpu);
1999 * If this is the first time we do a S/W operation
2000 * (i.e. HCR_TVM not set) flush the whole memory, and set the
2003 * Otherwise, rely on the VM trapping to wait for the MMU +
2004 * Caches to be turned off. At that point, we'll be able to
2005 * clean the caches again.
2007 if (!(hcr & HCR_TVM)) {
2008 trace_kvm_set_way_flush(*vcpu_pc(vcpu),
2009 vcpu_has_cache_enabled(vcpu));
2010 stage2_flush_vm(vcpu->kvm);
2011 vcpu_set_hcr(vcpu, hcr | HCR_TVM);
2015 void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled)
2017 bool now_enabled = vcpu_has_cache_enabled(vcpu);
2020 * If switching the MMU+caches on, need to invalidate the caches.
2021 * If switching it off, need to clean the caches.
2022 * Clean + invalidate does the trick always.
2024 if (now_enabled != was_enabled)
2025 stage2_flush_vm(vcpu->kvm);
2027 /* Caches are now on, stop trapping VM ops (until a S/W op) */
2029 vcpu_set_hcr(vcpu, vcpu_get_hcr(vcpu) & ~HCR_TVM);
2031 trace_kvm_toggle_cache(*vcpu_pc(vcpu), was_enabled, now_enabled);