2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.com>
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 <trace/events/kvm.h>
24 #include <asm/pgalloc.h>
25 #include <asm/cacheflush.h>
26 #include <asm/kvm_arm.h>
27 #include <asm/kvm_mmu.h>
28 #include <asm/kvm_mmio.h>
29 #include <asm/kvm_asm.h>
30 #include <asm/kvm_emulate.h>
34 extern char __hyp_idmap_text_start
[], __hyp_idmap_text_end
[];
36 static pgd_t
*boot_hyp_pgd
;
37 static pgd_t
*hyp_pgd
;
38 static DEFINE_MUTEX(kvm_hyp_pgd_mutex
);
40 static void *init_bounce_page
;
41 static unsigned long hyp_idmap_start
;
42 static unsigned long hyp_idmap_end
;
43 static phys_addr_t hyp_idmap_vector
;
45 #define hyp_pgd_order get_order(PTRS_PER_PGD * sizeof(pgd_t))
47 #define kvm_pmd_huge(_x) (pmd_huge(_x) || pmd_trans_huge(_x))
49 static void kvm_tlb_flush_vmid_ipa(struct kvm
*kvm
, phys_addr_t ipa
)
52 * This function also gets called when dealing with HYP page
53 * tables. As HYP doesn't have an associated struct kvm (and
54 * the HYP page tables are fairly static), we don't do
58 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa
, kvm
, ipa
);
61 static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache
*cache
,
66 BUG_ON(max
> KVM_NR_MEM_OBJS
);
67 if (cache
->nobjs
>= min
)
69 while (cache
->nobjs
< max
) {
70 page
= (void *)__get_free_page(PGALLOC_GFP
);
73 cache
->objects
[cache
->nobjs
++] = page
;
78 static void mmu_free_memory_cache(struct kvm_mmu_memory_cache
*mc
)
81 free_page((unsigned long)mc
->objects
[--mc
->nobjs
]);
84 static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache
*mc
)
88 BUG_ON(!mc
|| !mc
->nobjs
);
89 p
= mc
->objects
[--mc
->nobjs
];
93 static void clear_pgd_entry(struct kvm
*kvm
, pgd_t
*pgd
, phys_addr_t addr
)
95 pud_t
*pud_table __maybe_unused
= pud_offset(pgd
, 0);
97 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
98 pud_free(NULL
, pud_table
);
99 put_page(virt_to_page(pgd
));
102 static void clear_pud_entry(struct kvm
*kvm
, pud_t
*pud
, phys_addr_t addr
)
104 pmd_t
*pmd_table
= pmd_offset(pud
, 0);
105 VM_BUG_ON(pud_huge(*pud
));
107 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
108 pmd_free(NULL
, pmd_table
);
109 put_page(virt_to_page(pud
));
112 static void clear_pmd_entry(struct kvm
*kvm
, pmd_t
*pmd
, phys_addr_t addr
)
114 pte_t
*pte_table
= pte_offset_kernel(pmd
, 0);
115 VM_BUG_ON(kvm_pmd_huge(*pmd
));
117 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
118 pte_free_kernel(NULL
, pte_table
);
119 put_page(virt_to_page(pmd
));
122 static void unmap_ptes(struct kvm
*kvm
, pmd_t
*pmd
,
123 phys_addr_t addr
, phys_addr_t end
)
125 phys_addr_t start_addr
= addr
;
126 pte_t
*pte
, *start_pte
;
128 start_pte
= pte
= pte_offset_kernel(pmd
, addr
);
130 if (!pte_none(*pte
)) {
131 kvm_set_pte(pte
, __pte(0));
132 put_page(virt_to_page(pte
));
133 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
135 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
137 if (kvm_pte_table_empty(kvm
, start_pte
))
138 clear_pmd_entry(kvm
, pmd
, start_addr
);
141 static void unmap_pmds(struct kvm
*kvm
, pud_t
*pud
,
142 phys_addr_t addr
, phys_addr_t end
)
144 phys_addr_t next
, start_addr
= addr
;
145 pmd_t
*pmd
, *start_pmd
;
147 start_pmd
= pmd
= pmd_offset(pud
, addr
);
149 next
= kvm_pmd_addr_end(addr
, end
);
150 if (!pmd_none(*pmd
)) {
151 if (kvm_pmd_huge(*pmd
)) {
153 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
154 put_page(virt_to_page(pmd
));
156 unmap_ptes(kvm
, pmd
, addr
, next
);
159 } while (pmd
++, addr
= next
, addr
!= end
);
161 if (kvm_pmd_table_empty(kvm
, start_pmd
))
162 clear_pud_entry(kvm
, pud
, start_addr
);
165 static void unmap_puds(struct kvm
*kvm
, pgd_t
*pgd
,
166 phys_addr_t addr
, phys_addr_t end
)
168 phys_addr_t next
, start_addr
= addr
;
169 pud_t
*pud
, *start_pud
;
171 start_pud
= pud
= pud_offset(pgd
, addr
);
173 next
= kvm_pud_addr_end(addr
, end
);
174 if (!pud_none(*pud
)) {
175 if (pud_huge(*pud
)) {
177 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
178 put_page(virt_to_page(pud
));
180 unmap_pmds(kvm
, pud
, addr
, next
);
183 } while (pud
++, addr
= next
, addr
!= end
);
185 if (kvm_pud_table_empty(kvm
, start_pud
))
186 clear_pgd_entry(kvm
, pgd
, start_addr
);
190 static void unmap_range(struct kvm
*kvm
, pgd_t
*pgdp
,
191 phys_addr_t start
, u64 size
)
194 phys_addr_t addr
= start
, end
= start
+ size
;
197 pgd
= pgdp
+ pgd_index(addr
);
199 next
= kvm_pgd_addr_end(addr
, end
);
200 unmap_puds(kvm
, pgd
, addr
, next
);
201 } while (pgd
++, addr
= next
, addr
!= end
);
204 static void stage2_flush_ptes(struct kvm
*kvm
, pmd_t
*pmd
,
205 phys_addr_t addr
, phys_addr_t end
)
209 pte
= pte_offset_kernel(pmd
, addr
);
211 if (!pte_none(*pte
)) {
212 hva_t hva
= gfn_to_hva(kvm
, addr
>> PAGE_SHIFT
);
213 kvm_flush_dcache_to_poc((void*)hva
, PAGE_SIZE
);
215 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
218 static void stage2_flush_pmds(struct kvm
*kvm
, pud_t
*pud
,
219 phys_addr_t addr
, phys_addr_t end
)
224 pmd
= pmd_offset(pud
, addr
);
226 next
= kvm_pmd_addr_end(addr
, end
);
227 if (!pmd_none(*pmd
)) {
228 if (kvm_pmd_huge(*pmd
)) {
229 hva_t hva
= gfn_to_hva(kvm
, addr
>> PAGE_SHIFT
);
230 kvm_flush_dcache_to_poc((void*)hva
, PMD_SIZE
);
232 stage2_flush_ptes(kvm
, pmd
, addr
, next
);
235 } while (pmd
++, addr
= next
, addr
!= end
);
238 static void stage2_flush_puds(struct kvm
*kvm
, pgd_t
*pgd
,
239 phys_addr_t addr
, phys_addr_t end
)
244 pud
= pud_offset(pgd
, addr
);
246 next
= kvm_pud_addr_end(addr
, end
);
247 if (!pud_none(*pud
)) {
248 if (pud_huge(*pud
)) {
249 hva_t hva
= gfn_to_hva(kvm
, addr
>> PAGE_SHIFT
);
250 kvm_flush_dcache_to_poc((void*)hva
, PUD_SIZE
);
252 stage2_flush_pmds(kvm
, pud
, addr
, next
);
255 } while (pud
++, addr
= next
, addr
!= end
);
258 static void stage2_flush_memslot(struct kvm
*kvm
,
259 struct kvm_memory_slot
*memslot
)
261 phys_addr_t addr
= memslot
->base_gfn
<< PAGE_SHIFT
;
262 phys_addr_t end
= addr
+ PAGE_SIZE
* memslot
->npages
;
266 pgd
= kvm
->arch
.pgd
+ pgd_index(addr
);
268 next
= kvm_pgd_addr_end(addr
, end
);
269 stage2_flush_puds(kvm
, pgd
, addr
, next
);
270 } while (pgd
++, addr
= next
, addr
!= end
);
274 * stage2_flush_vm - Invalidate cache for pages mapped in stage 2
275 * @kvm: The struct kvm pointer
277 * Go through the stage 2 page tables and invalidate any cache lines
278 * backing memory already mapped to the VM.
280 void stage2_flush_vm(struct kvm
*kvm
)
282 struct kvm_memslots
*slots
;
283 struct kvm_memory_slot
*memslot
;
286 idx
= srcu_read_lock(&kvm
->srcu
);
287 spin_lock(&kvm
->mmu_lock
);
289 slots
= kvm_memslots(kvm
);
290 kvm_for_each_memslot(memslot
, slots
)
291 stage2_flush_memslot(kvm
, memslot
);
293 spin_unlock(&kvm
->mmu_lock
);
294 srcu_read_unlock(&kvm
->srcu
, idx
);
298 * free_boot_hyp_pgd - free HYP boot page tables
300 * Free the HYP boot page tables. The bounce page is also freed.
302 void free_boot_hyp_pgd(void)
304 mutex_lock(&kvm_hyp_pgd_mutex
);
307 unmap_range(NULL
, boot_hyp_pgd
, hyp_idmap_start
, PAGE_SIZE
);
308 unmap_range(NULL
, boot_hyp_pgd
, TRAMPOLINE_VA
, PAGE_SIZE
);
309 free_pages((unsigned long)boot_hyp_pgd
, hyp_pgd_order
);
314 unmap_range(NULL
, hyp_pgd
, TRAMPOLINE_VA
, PAGE_SIZE
);
316 free_page((unsigned long)init_bounce_page
);
317 init_bounce_page
= NULL
;
319 mutex_unlock(&kvm_hyp_pgd_mutex
);
323 * free_hyp_pgds - free Hyp-mode page tables
325 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
326 * therefore contains either mappings in the kernel memory area (above
327 * PAGE_OFFSET), or device mappings in the vmalloc range (from
328 * VMALLOC_START to VMALLOC_END).
330 * boot_hyp_pgd should only map two pages for the init code.
332 void free_hyp_pgds(void)
338 mutex_lock(&kvm_hyp_pgd_mutex
);
341 for (addr
= PAGE_OFFSET
; virt_addr_valid(addr
); addr
+= PGDIR_SIZE
)
342 unmap_range(NULL
, hyp_pgd
, KERN_TO_HYP(addr
), PGDIR_SIZE
);
343 for (addr
= VMALLOC_START
; is_vmalloc_addr((void*)addr
); addr
+= PGDIR_SIZE
)
344 unmap_range(NULL
, hyp_pgd
, KERN_TO_HYP(addr
), PGDIR_SIZE
);
346 free_pages((unsigned long)hyp_pgd
, hyp_pgd_order
);
350 mutex_unlock(&kvm_hyp_pgd_mutex
);
353 static void create_hyp_pte_mappings(pmd_t
*pmd
, unsigned long start
,
354 unsigned long end
, unsigned long pfn
,
362 pte
= pte_offset_kernel(pmd
, addr
);
363 kvm_set_pte(pte
, pfn_pte(pfn
, prot
));
364 get_page(virt_to_page(pte
));
365 kvm_flush_dcache_to_poc(pte
, sizeof(*pte
));
367 } while (addr
+= PAGE_SIZE
, addr
!= end
);
370 static int create_hyp_pmd_mappings(pud_t
*pud
, unsigned long start
,
371 unsigned long end
, unsigned long pfn
,
376 unsigned long addr
, next
;
380 pmd
= pmd_offset(pud
, addr
);
382 BUG_ON(pmd_sect(*pmd
));
384 if (pmd_none(*pmd
)) {
385 pte
= pte_alloc_one_kernel(NULL
, addr
);
387 kvm_err("Cannot allocate Hyp pte\n");
390 pmd_populate_kernel(NULL
, pmd
, pte
);
391 get_page(virt_to_page(pmd
));
392 kvm_flush_dcache_to_poc(pmd
, sizeof(*pmd
));
395 next
= pmd_addr_end(addr
, end
);
397 create_hyp_pte_mappings(pmd
, addr
, next
, pfn
, prot
);
398 pfn
+= (next
- addr
) >> PAGE_SHIFT
;
399 } while (addr
= next
, addr
!= end
);
404 static int create_hyp_pud_mappings(pgd_t
*pgd
, unsigned long start
,
405 unsigned long end
, unsigned long pfn
,
410 unsigned long addr
, next
;
415 pud
= pud_offset(pgd
, addr
);
417 if (pud_none_or_clear_bad(pud
)) {
418 pmd
= pmd_alloc_one(NULL
, addr
);
420 kvm_err("Cannot allocate Hyp pmd\n");
423 pud_populate(NULL
, pud
, pmd
);
424 get_page(virt_to_page(pud
));
425 kvm_flush_dcache_to_poc(pud
, sizeof(*pud
));
428 next
= pud_addr_end(addr
, end
);
429 ret
= create_hyp_pmd_mappings(pud
, addr
, next
, pfn
, prot
);
432 pfn
+= (next
- addr
) >> PAGE_SHIFT
;
433 } while (addr
= next
, addr
!= end
);
438 static int __create_hyp_mappings(pgd_t
*pgdp
,
439 unsigned long start
, unsigned long end
,
440 unsigned long pfn
, pgprot_t prot
)
444 unsigned long addr
, next
;
447 mutex_lock(&kvm_hyp_pgd_mutex
);
448 addr
= start
& PAGE_MASK
;
449 end
= PAGE_ALIGN(end
);
451 pgd
= pgdp
+ pgd_index(addr
);
453 if (pgd_none(*pgd
)) {
454 pud
= pud_alloc_one(NULL
, addr
);
456 kvm_err("Cannot allocate Hyp pud\n");
460 pgd_populate(NULL
, pgd
, pud
);
461 get_page(virt_to_page(pgd
));
462 kvm_flush_dcache_to_poc(pgd
, sizeof(*pgd
));
465 next
= pgd_addr_end(addr
, end
);
466 err
= create_hyp_pud_mappings(pgd
, addr
, next
, pfn
, prot
);
469 pfn
+= (next
- addr
) >> PAGE_SHIFT
;
470 } while (addr
= next
, addr
!= end
);
472 mutex_unlock(&kvm_hyp_pgd_mutex
);
476 static phys_addr_t
kvm_kaddr_to_phys(void *kaddr
)
478 if (!is_vmalloc_addr(kaddr
)) {
479 BUG_ON(!virt_addr_valid(kaddr
));
482 return page_to_phys(vmalloc_to_page(kaddr
)) +
483 offset_in_page(kaddr
);
488 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
489 * @from: The virtual kernel start address of the range
490 * @to: The virtual kernel end address of the range (exclusive)
492 * The same virtual address as the kernel virtual address is also used
493 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
496 int create_hyp_mappings(void *from
, void *to
)
498 phys_addr_t phys_addr
;
499 unsigned long virt_addr
;
500 unsigned long start
= KERN_TO_HYP((unsigned long)from
);
501 unsigned long end
= KERN_TO_HYP((unsigned long)to
);
503 start
= start
& PAGE_MASK
;
504 end
= PAGE_ALIGN(end
);
506 for (virt_addr
= start
; virt_addr
< end
; virt_addr
+= PAGE_SIZE
) {
509 phys_addr
= kvm_kaddr_to_phys(from
+ virt_addr
- start
);
510 err
= __create_hyp_mappings(hyp_pgd
, virt_addr
,
511 virt_addr
+ PAGE_SIZE
,
512 __phys_to_pfn(phys_addr
),
522 * create_hyp_io_mappings - duplicate a kernel IO mapping into Hyp mode
523 * @from: The kernel start VA of the range
524 * @to: The kernel end VA of the range (exclusive)
525 * @phys_addr: The physical start address which gets mapped
527 * The resulting HYP VA is the same as the kernel VA, modulo
530 int create_hyp_io_mappings(void *from
, void *to
, phys_addr_t phys_addr
)
532 unsigned long start
= KERN_TO_HYP((unsigned long)from
);
533 unsigned long end
= KERN_TO_HYP((unsigned long)to
);
535 /* Check for a valid kernel IO mapping */
536 if (!is_vmalloc_addr(from
) || !is_vmalloc_addr(to
- 1))
539 return __create_hyp_mappings(hyp_pgd
, start
, end
,
540 __phys_to_pfn(phys_addr
), PAGE_HYP_DEVICE
);
544 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
545 * @kvm: The KVM struct pointer for the VM.
547 * Allocates the 1st level table only of size defined by S2_PGD_ORDER (can
548 * support either full 40-bit input addresses or limited to 32-bit input
549 * addresses). Clears the allocated pages.
551 * Note we don't need locking here as this is only called when the VM is
552 * created, which can only be done once.
554 int kvm_alloc_stage2_pgd(struct kvm
*kvm
)
559 if (kvm
->arch
.pgd
!= NULL
) {
560 kvm_err("kvm_arch already initialized?\n");
564 if (KVM_PREALLOC_LEVEL
> 0) {
566 * Allocate fake pgd for the page table manipulation macros to
567 * work. This is not used by the hardware and we have no
568 * alignment requirement for this allocation.
570 pgd
= (pgd_t
*)kmalloc(PTRS_PER_S2_PGD
* sizeof(pgd_t
),
571 GFP_KERNEL
| __GFP_ZERO
);
574 * Allocate actual first-level Stage-2 page table used by the
575 * hardware for Stage-2 page table walks.
577 pgd
= (pgd_t
*)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
, S2_PGD_ORDER
);
583 ret
= kvm_prealloc_hwpgd(kvm
, pgd
);
591 if (KVM_PREALLOC_LEVEL
> 0)
594 free_pages((unsigned long)pgd
, S2_PGD_ORDER
);
599 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
600 * @kvm: The VM pointer
601 * @start: The intermediate physical base address of the range to unmap
602 * @size: The size of the area to unmap
604 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
605 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
606 * destroying the VM), otherwise another faulting VCPU may come in and mess
607 * with things behind our backs.
609 static void unmap_stage2_range(struct kvm
*kvm
, phys_addr_t start
, u64 size
)
611 unmap_range(kvm
, kvm
->arch
.pgd
, start
, size
);
615 * kvm_free_stage2_pgd - free all stage-2 tables
616 * @kvm: The KVM struct pointer for the VM.
618 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
619 * underlying level-2 and level-3 tables before freeing the actual level-1 table
620 * and setting the struct pointer to NULL.
622 * Note we don't need locking here as this is only called when the VM is
623 * destroyed, which can only be done once.
625 void kvm_free_stage2_pgd(struct kvm
*kvm
)
627 if (kvm
->arch
.pgd
== NULL
)
630 unmap_stage2_range(kvm
, 0, KVM_PHYS_SIZE
);
632 if (KVM_PREALLOC_LEVEL
> 0)
633 kfree(kvm
->arch
.pgd
);
635 free_pages((unsigned long)kvm
->arch
.pgd
, S2_PGD_ORDER
);
636 kvm
->arch
.pgd
= NULL
;
639 static pud_t
*stage2_get_pud(struct kvm
*kvm
, struct kvm_mmu_memory_cache
*cache
,
645 pgd
= kvm
->arch
.pgd
+ pgd_index(addr
);
646 if (WARN_ON(pgd_none(*pgd
))) {
649 pud
= mmu_memory_cache_alloc(cache
);
650 pgd_populate(NULL
, pgd
, pud
);
651 get_page(virt_to_page(pgd
));
654 return pud_offset(pgd
, addr
);
657 static pmd_t
*stage2_get_pmd(struct kvm
*kvm
, struct kvm_mmu_memory_cache
*cache
,
663 pud
= stage2_get_pud(kvm
, cache
, addr
);
664 if (pud_none(*pud
)) {
667 pmd
= mmu_memory_cache_alloc(cache
);
668 pud_populate(NULL
, pud
, pmd
);
669 get_page(virt_to_page(pud
));
672 return pmd_offset(pud
, addr
);
675 static int stage2_set_pmd_huge(struct kvm
*kvm
, struct kvm_mmu_memory_cache
676 *cache
, phys_addr_t addr
, const pmd_t
*new_pmd
)
680 pmd
= stage2_get_pmd(kvm
, cache
, addr
);
684 * Mapping in huge pages should only happen through a fault. If a
685 * page is merged into a transparent huge page, the individual
686 * subpages of that huge page should be unmapped through MMU
687 * notifiers before we get here.
689 * Merging of CompoundPages is not supported; they should become
690 * splitting first, unmapped, merged, and mapped back in on-demand.
692 VM_BUG_ON(pmd_present(*pmd
) && pmd_pfn(*pmd
) != pmd_pfn(*new_pmd
));
695 kvm_set_pmd(pmd
, *new_pmd
);
696 if (pmd_present(old_pmd
))
697 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
699 get_page(virt_to_page(pmd
));
703 static int stage2_set_pte(struct kvm
*kvm
, struct kvm_mmu_memory_cache
*cache
,
704 phys_addr_t addr
, const pte_t
*new_pte
, bool iomap
)
709 /* Create stage-2 page table mapping - Levels 0 and 1 */
710 pmd
= stage2_get_pmd(kvm
, cache
, addr
);
713 * Ignore calls from kvm_set_spte_hva for unallocated
719 /* Create stage-2 page mappings - Level 2 */
720 if (pmd_none(*pmd
)) {
722 return 0; /* ignore calls from kvm_set_spte_hva */
723 pte
= mmu_memory_cache_alloc(cache
);
725 pmd_populate_kernel(NULL
, pmd
, pte
);
726 get_page(virt_to_page(pmd
));
729 pte
= pte_offset_kernel(pmd
, addr
);
731 if (iomap
&& pte_present(*pte
))
734 /* Create 2nd stage page table mapping - Level 3 */
736 kvm_set_pte(pte
, *new_pte
);
737 if (pte_present(old_pte
))
738 kvm_tlb_flush_vmid_ipa(kvm
, addr
);
740 get_page(virt_to_page(pte
));
746 * kvm_phys_addr_ioremap - map a device range to guest IPA
748 * @kvm: The KVM pointer
749 * @guest_ipa: The IPA at which to insert the mapping
750 * @pa: The physical address of the device
751 * @size: The size of the mapping
753 int kvm_phys_addr_ioremap(struct kvm
*kvm
, phys_addr_t guest_ipa
,
754 phys_addr_t pa
, unsigned long size
, bool writable
)
756 phys_addr_t addr
, end
;
759 struct kvm_mmu_memory_cache cache
= { 0, };
761 end
= (guest_ipa
+ size
+ PAGE_SIZE
- 1) & PAGE_MASK
;
762 pfn
= __phys_to_pfn(pa
);
764 for (addr
= guest_ipa
; addr
< end
; addr
+= PAGE_SIZE
) {
765 pte_t pte
= pfn_pte(pfn
, PAGE_S2_DEVICE
);
768 kvm_set_s2pte_writable(&pte
);
770 ret
= mmu_topup_memory_cache(&cache
, KVM_MMU_CACHE_MIN_PAGES
,
774 spin_lock(&kvm
->mmu_lock
);
775 ret
= stage2_set_pte(kvm
, &cache
, addr
, &pte
, true);
776 spin_unlock(&kvm
->mmu_lock
);
784 mmu_free_memory_cache(&cache
);
788 static bool transparent_hugepage_adjust(pfn_t
*pfnp
, phys_addr_t
*ipap
)
791 gfn_t gfn
= *ipap
>> PAGE_SHIFT
;
793 if (PageTransCompound(pfn_to_page(pfn
))) {
796 * The address we faulted on is backed by a transparent huge
797 * page. However, because we map the compound huge page and
798 * not the individual tail page, we need to transfer the
799 * refcount to the head page. We have to be careful that the
800 * THP doesn't start to split while we are adjusting the
803 * We are sure this doesn't happen, because mmu_notifier_retry
804 * was successful and we are holding the mmu_lock, so if this
805 * THP is trying to split, it will be blocked in the mmu
806 * notifier before touching any of the pages, specifically
807 * before being able to call __split_huge_page_refcount().
809 * We can therefore safely transfer the refcount from PG_tail
810 * to PG_head and switch the pfn from a tail page to the head
813 mask
= PTRS_PER_PMD
- 1;
814 VM_BUG_ON((gfn
& mask
) != (pfn
& mask
));
817 kvm_release_pfn_clean(pfn
);
829 static bool kvm_is_write_fault(struct kvm_vcpu
*vcpu
)
831 if (kvm_vcpu_trap_is_iabt(vcpu
))
834 return kvm_vcpu_dabt_iswrite(vcpu
);
837 static int user_mem_abort(struct kvm_vcpu
*vcpu
, phys_addr_t fault_ipa
,
838 struct kvm_memory_slot
*memslot
, unsigned long hva
,
839 unsigned long fault_status
)
842 bool write_fault
, writable
, hugetlb
= false, force_pte
= false;
843 unsigned long mmu_seq
;
844 gfn_t gfn
= fault_ipa
>> PAGE_SHIFT
;
845 struct kvm
*kvm
= vcpu
->kvm
;
846 struct kvm_mmu_memory_cache
*memcache
= &vcpu
->arch
.mmu_page_cache
;
847 struct vm_area_struct
*vma
;
849 pgprot_t mem_type
= PAGE_S2
;
851 write_fault
= kvm_is_write_fault(vcpu
);
852 if (fault_status
== FSC_PERM
&& !write_fault
) {
853 kvm_err("Unexpected L2 read permission error\n");
857 /* Let's check if we will get back a huge page backed by hugetlbfs */
858 down_read(¤t
->mm
->mmap_sem
);
859 vma
= find_vma_intersection(current
->mm
, hva
, hva
+ 1);
860 if (unlikely(!vma
)) {
861 kvm_err("Failed to find VMA for hva 0x%lx\n", hva
);
862 up_read(¤t
->mm
->mmap_sem
);
866 if (is_vm_hugetlb_page(vma
)) {
868 gfn
= (fault_ipa
& PMD_MASK
) >> PAGE_SHIFT
;
871 * Pages belonging to memslots that don't have the same
872 * alignment for userspace and IPA cannot be mapped using
873 * block descriptors even if the pages belong to a THP for
874 * the process, because the stage-2 block descriptor will
875 * cover more than a single THP and we loose atomicity for
876 * unmapping, updates, and splits of the THP or other pages
877 * in the stage-2 block range.
879 if ((memslot
->userspace_addr
& ~PMD_MASK
) !=
880 ((memslot
->base_gfn
<< PAGE_SHIFT
) & ~PMD_MASK
))
883 up_read(¤t
->mm
->mmap_sem
);
885 /* We need minimum second+third level pages */
886 ret
= mmu_topup_memory_cache(memcache
, KVM_MMU_CACHE_MIN_PAGES
,
891 mmu_seq
= vcpu
->kvm
->mmu_notifier_seq
;
893 * Ensure the read of mmu_notifier_seq happens before we call
894 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
895 * the page we just got a reference to gets unmapped before we have a
896 * chance to grab the mmu_lock, which ensure that if the page gets
897 * unmapped afterwards, the call to kvm_unmap_hva will take it away
898 * from us again properly. This smp_rmb() interacts with the smp_wmb()
899 * in kvm_mmu_notifier_invalidate_<page|range_end>.
903 pfn
= gfn_to_pfn_prot(kvm
, gfn
, write_fault
, &writable
);
904 if (is_error_pfn(pfn
))
907 if (kvm_is_mmio_pfn(pfn
))
908 mem_type
= PAGE_S2_DEVICE
;
910 spin_lock(&kvm
->mmu_lock
);
911 if (mmu_notifier_retry(kvm
, mmu_seq
))
913 if (!hugetlb
&& !force_pte
)
914 hugetlb
= transparent_hugepage_adjust(&pfn
, &fault_ipa
);
917 pmd_t new_pmd
= pfn_pmd(pfn
, mem_type
);
918 new_pmd
= pmd_mkhuge(new_pmd
);
920 kvm_set_s2pmd_writable(&new_pmd
);
921 kvm_set_pfn_dirty(pfn
);
923 coherent_cache_guest_page(vcpu
, hva
& PMD_MASK
, PMD_SIZE
);
924 ret
= stage2_set_pmd_huge(kvm
, memcache
, fault_ipa
, &new_pmd
);
926 pte_t new_pte
= pfn_pte(pfn
, mem_type
);
928 kvm_set_s2pte_writable(&new_pte
);
929 kvm_set_pfn_dirty(pfn
);
931 coherent_cache_guest_page(vcpu
, hva
, PAGE_SIZE
);
932 ret
= stage2_set_pte(kvm
, memcache
, fault_ipa
, &new_pte
,
933 pgprot_val(mem_type
) == pgprot_val(PAGE_S2_DEVICE
));
938 spin_unlock(&kvm
->mmu_lock
);
939 kvm_release_pfn_clean(pfn
);
944 * kvm_handle_guest_abort - handles all 2nd stage aborts
945 * @vcpu: the VCPU pointer
946 * @run: the kvm_run structure
948 * Any abort that gets to the host is almost guaranteed to be caused by a
949 * missing second stage translation table entry, which can mean that either the
950 * guest simply needs more memory and we must allocate an appropriate page or it
951 * can mean that the guest tried to access I/O memory, which is emulated by user
952 * space. The distinction is based on the IPA causing the fault and whether this
953 * memory region has been registered as standard RAM by user space.
955 int kvm_handle_guest_abort(struct kvm_vcpu
*vcpu
, struct kvm_run
*run
)
957 unsigned long fault_status
;
958 phys_addr_t fault_ipa
;
959 struct kvm_memory_slot
*memslot
;
961 bool is_iabt
, write_fault
, writable
;
965 is_iabt
= kvm_vcpu_trap_is_iabt(vcpu
);
966 fault_ipa
= kvm_vcpu_get_fault_ipa(vcpu
);
968 trace_kvm_guest_fault(*vcpu_pc(vcpu
), kvm_vcpu_get_hsr(vcpu
),
969 kvm_vcpu_get_hfar(vcpu
), fault_ipa
);
971 /* Check the stage-2 fault is trans. fault or write fault */
972 fault_status
= kvm_vcpu_trap_get_fault_type(vcpu
);
973 if (fault_status
!= FSC_FAULT
&& fault_status
!= FSC_PERM
) {
974 kvm_err("Unsupported FSC: EC=%#x xFSC=%#lx ESR_EL2=%#lx\n",
975 kvm_vcpu_trap_get_class(vcpu
),
976 (unsigned long)kvm_vcpu_trap_get_fault(vcpu
),
977 (unsigned long)kvm_vcpu_get_hsr(vcpu
));
981 idx
= srcu_read_lock(&vcpu
->kvm
->srcu
);
983 gfn
= fault_ipa
>> PAGE_SHIFT
;
984 memslot
= gfn_to_memslot(vcpu
->kvm
, gfn
);
985 hva
= gfn_to_hva_memslot_prot(memslot
, gfn
, &writable
);
986 write_fault
= kvm_is_write_fault(vcpu
);
987 if (kvm_is_error_hva(hva
) || (write_fault
&& !writable
)) {
989 /* Prefetch Abort on I/O address */
990 kvm_inject_pabt(vcpu
, kvm_vcpu_get_hfar(vcpu
));
996 * The IPA is reported as [MAX:12], so we need to
997 * complement it with the bottom 12 bits from the
998 * faulting VA. This is always 12 bits, irrespective
1001 fault_ipa
|= kvm_vcpu_get_hfar(vcpu
) & ((1 << 12) - 1);
1002 ret
= io_mem_abort(vcpu
, run
, fault_ipa
);
1006 /* Userspace should not be able to register out-of-bounds IPAs */
1007 VM_BUG_ON(fault_ipa
>= KVM_PHYS_SIZE
);
1009 ret
= user_mem_abort(vcpu
, fault_ipa
, memslot
, hva
, fault_status
);
1013 srcu_read_unlock(&vcpu
->kvm
->srcu
, idx
);
1017 static void handle_hva_to_gpa(struct kvm
*kvm
,
1018 unsigned long start
,
1020 void (*handler
)(struct kvm
*kvm
,
1021 gpa_t gpa
, void *data
),
1024 struct kvm_memslots
*slots
;
1025 struct kvm_memory_slot
*memslot
;
1027 slots
= kvm_memslots(kvm
);
1029 /* we only care about the pages that the guest sees */
1030 kvm_for_each_memslot(memslot
, slots
) {
1031 unsigned long hva_start
, hva_end
;
1034 hva_start
= max(start
, memslot
->userspace_addr
);
1035 hva_end
= min(end
, memslot
->userspace_addr
+
1036 (memslot
->npages
<< PAGE_SHIFT
));
1037 if (hva_start
>= hva_end
)
1041 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1042 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1044 gfn
= hva_to_gfn_memslot(hva_start
, memslot
);
1045 gfn_end
= hva_to_gfn_memslot(hva_end
+ PAGE_SIZE
- 1, memslot
);
1047 for (; gfn
< gfn_end
; ++gfn
) {
1048 gpa_t gpa
= gfn
<< PAGE_SHIFT
;
1049 handler(kvm
, gpa
, data
);
1054 static void kvm_unmap_hva_handler(struct kvm
*kvm
, gpa_t gpa
, void *data
)
1056 unmap_stage2_range(kvm
, gpa
, PAGE_SIZE
);
1059 int kvm_unmap_hva(struct kvm
*kvm
, unsigned long hva
)
1061 unsigned long end
= hva
+ PAGE_SIZE
;
1066 trace_kvm_unmap_hva(hva
);
1067 handle_hva_to_gpa(kvm
, hva
, end
, &kvm_unmap_hva_handler
, NULL
);
1071 int kvm_unmap_hva_range(struct kvm
*kvm
,
1072 unsigned long start
, unsigned long end
)
1077 trace_kvm_unmap_hva_range(start
, end
);
1078 handle_hva_to_gpa(kvm
, start
, end
, &kvm_unmap_hva_handler
, NULL
);
1082 static void kvm_set_spte_handler(struct kvm
*kvm
, gpa_t gpa
, void *data
)
1084 pte_t
*pte
= (pte_t
*)data
;
1086 stage2_set_pte(kvm
, NULL
, gpa
, pte
, false);
1090 void kvm_set_spte_hva(struct kvm
*kvm
, unsigned long hva
, pte_t pte
)
1092 unsigned long end
= hva
+ PAGE_SIZE
;
1098 trace_kvm_set_spte_hva(hva
);
1099 stage2_pte
= pfn_pte(pte_pfn(pte
), PAGE_S2
);
1100 handle_hva_to_gpa(kvm
, hva
, end
, &kvm_set_spte_handler
, &stage2_pte
);
1103 void kvm_mmu_free_memory_caches(struct kvm_vcpu
*vcpu
)
1105 mmu_free_memory_cache(&vcpu
->arch
.mmu_page_cache
);
1108 phys_addr_t
kvm_mmu_get_httbr(void)
1110 return virt_to_phys(hyp_pgd
);
1113 phys_addr_t
kvm_mmu_get_boot_httbr(void)
1115 return virt_to_phys(boot_hyp_pgd
);
1118 phys_addr_t
kvm_get_idmap_vector(void)
1120 return hyp_idmap_vector
;
1123 int kvm_mmu_init(void)
1127 hyp_idmap_start
= kvm_virt_to_phys(__hyp_idmap_text_start
);
1128 hyp_idmap_end
= kvm_virt_to_phys(__hyp_idmap_text_end
);
1129 hyp_idmap_vector
= kvm_virt_to_phys(__kvm_hyp_init
);
1131 if ((hyp_idmap_start
^ hyp_idmap_end
) & PAGE_MASK
) {
1133 * Our init code is crossing a page boundary. Allocate
1134 * a bounce page, copy the code over and use that.
1136 size_t len
= __hyp_idmap_text_end
- __hyp_idmap_text_start
;
1137 phys_addr_t phys_base
;
1139 init_bounce_page
= (void *)__get_free_page(GFP_KERNEL
);
1140 if (!init_bounce_page
) {
1141 kvm_err("Couldn't allocate HYP init bounce page\n");
1146 memcpy(init_bounce_page
, __hyp_idmap_text_start
, len
);
1148 * Warning: the code we just copied to the bounce page
1149 * must be flushed to the point of coherency.
1150 * Otherwise, the data may be sitting in L2, and HYP
1151 * mode won't be able to observe it as it runs with
1152 * caches off at that point.
1154 kvm_flush_dcache_to_poc(init_bounce_page
, len
);
1156 phys_base
= kvm_virt_to_phys(init_bounce_page
);
1157 hyp_idmap_vector
+= phys_base
- hyp_idmap_start
;
1158 hyp_idmap_start
= phys_base
;
1159 hyp_idmap_end
= phys_base
+ len
;
1161 kvm_info("Using HYP init bounce page @%lx\n",
1162 (unsigned long)phys_base
);
1165 hyp_pgd
= (pgd_t
*)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
, hyp_pgd_order
);
1166 boot_hyp_pgd
= (pgd_t
*)__get_free_pages(GFP_KERNEL
| __GFP_ZERO
, hyp_pgd_order
);
1168 if (!hyp_pgd
|| !boot_hyp_pgd
) {
1169 kvm_err("Hyp mode PGD not allocated\n");
1174 /* Create the idmap in the boot page tables */
1175 err
= __create_hyp_mappings(boot_hyp_pgd
,
1176 hyp_idmap_start
, hyp_idmap_end
,
1177 __phys_to_pfn(hyp_idmap_start
),
1181 kvm_err("Failed to idmap %lx-%lx\n",
1182 hyp_idmap_start
, hyp_idmap_end
);
1186 /* Map the very same page at the trampoline VA */
1187 err
= __create_hyp_mappings(boot_hyp_pgd
,
1188 TRAMPOLINE_VA
, TRAMPOLINE_VA
+ PAGE_SIZE
,
1189 __phys_to_pfn(hyp_idmap_start
),
1192 kvm_err("Failed to map trampoline @%lx into boot HYP pgd\n",
1197 /* Map the same page again into the runtime page tables */
1198 err
= __create_hyp_mappings(hyp_pgd
,
1199 TRAMPOLINE_VA
, TRAMPOLINE_VA
+ PAGE_SIZE
,
1200 __phys_to_pfn(hyp_idmap_start
),
1203 kvm_err("Failed to map trampoline @%lx into runtime HYP pgd\n",
1214 void kvm_arch_commit_memory_region(struct kvm
*kvm
,
1215 struct kvm_userspace_memory_region
*mem
,
1216 const struct kvm_memory_slot
*old
,
1217 enum kvm_mr_change change
)
1221 int kvm_arch_prepare_memory_region(struct kvm
*kvm
,
1222 struct kvm_memory_slot
*memslot
,
1223 struct kvm_userspace_memory_region
*mem
,
1224 enum kvm_mr_change change
)
1226 hva_t hva
= mem
->userspace_addr
;
1227 hva_t reg_end
= hva
+ mem
->memory_size
;
1228 bool writable
= !(mem
->flags
& KVM_MEM_READONLY
);
1231 if (change
!= KVM_MR_CREATE
&& change
!= KVM_MR_MOVE
)
1235 * Prevent userspace from creating a memory region outside of the IPA
1236 * space addressable by the KVM guest IPA space.
1238 if (memslot
->base_gfn
+ memslot
->npages
>=
1239 (KVM_PHYS_SIZE
>> PAGE_SHIFT
))
1243 * A memory region could potentially cover multiple VMAs, and any holes
1244 * between them, so iterate over all of them to find out if we can map
1245 * any of them right now.
1247 * +--------------------------------------------+
1248 * +---------------+----------------+ +----------------+
1249 * | : VMA 1 | VMA 2 | | VMA 3 : |
1250 * +---------------+----------------+ +----------------+
1252 * +--------------------------------------------+
1255 struct vm_area_struct
*vma
= find_vma(current
->mm
, hva
);
1256 hva_t vm_start
, vm_end
;
1258 if (!vma
|| vma
->vm_start
>= reg_end
)
1262 * Mapping a read-only VMA is only allowed if the
1263 * memory region is configured as read-only.
1265 if (writable
&& !(vma
->vm_flags
& VM_WRITE
)) {
1271 * Take the intersection of this VMA with the memory region
1273 vm_start
= max(hva
, vma
->vm_start
);
1274 vm_end
= min(reg_end
, vma
->vm_end
);
1276 if (vma
->vm_flags
& VM_PFNMAP
) {
1277 gpa_t gpa
= mem
->guest_phys_addr
+
1278 (vm_start
- mem
->userspace_addr
);
1279 phys_addr_t pa
= (vma
->vm_pgoff
<< PAGE_SHIFT
) +
1280 vm_start
- vma
->vm_start
;
1282 ret
= kvm_phys_addr_ioremap(kvm
, gpa
, pa
,
1289 } while (hva
< reg_end
);
1292 spin_lock(&kvm
->mmu_lock
);
1293 unmap_stage2_range(kvm
, mem
->guest_phys_addr
, mem
->memory_size
);
1294 spin_unlock(&kvm
->mmu_lock
);
1299 void kvm_arch_free_memslot(struct kvm
*kvm
, struct kvm_memory_slot
*free
,
1300 struct kvm_memory_slot
*dont
)
1304 int kvm_arch_create_memslot(struct kvm
*kvm
, struct kvm_memory_slot
*slot
,
1305 unsigned long npages
)
1310 void kvm_arch_memslots_updated(struct kvm
*kvm
)
1314 void kvm_arch_flush_shadow_all(struct kvm
*kvm
)
1318 void kvm_arch_flush_shadow_memslot(struct kvm
*kvm
,
1319 struct kvm_memory_slot
*slot
)
1321 gpa_t gpa
= slot
->base_gfn
<< PAGE_SHIFT
;
1322 phys_addr_t size
= slot
->npages
<< PAGE_SHIFT
;
1324 spin_lock(&kvm
->mmu_lock
);
1325 unmap_stage2_range(kvm
, gpa
, size
);
1326 spin_unlock(&kvm
->mmu_lock
);