KVM: MMU: fix accessed bit set on prefault path
[linux-2.6/btrfs-unstable.git] / arch / x86 / kvm / mmu.c
blobd475b6b87dce4f5d426c8af4469f096a7942b3bb
1 /*
2 * Kernel-based Virtual Machine driver for Linux
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
7 * MMU support
9 * Copyright (C) 2006 Qumranet, Inc.
10 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
12 * Authors:
13 * Yaniv Kamay <yaniv@qumranet.com>
14 * Avi Kivity <avi@qumranet.com>
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
21 #include "irq.h"
22 #include "mmu.h"
23 #include "x86.h"
24 #include "kvm_cache_regs.h"
25 #include "x86.h"
27 #include <linux/kvm_host.h>
28 #include <linux/types.h>
29 #include <linux/string.h>
30 #include <linux/mm.h>
31 #include <linux/highmem.h>
32 #include <linux/module.h>
33 #include <linux/swap.h>
34 #include <linux/hugetlb.h>
35 #include <linux/compiler.h>
36 #include <linux/srcu.h>
37 #include <linux/slab.h>
38 #include <linux/uaccess.h>
40 #include <asm/page.h>
41 #include <asm/cmpxchg.h>
42 #include <asm/io.h>
43 #include <asm/vmx.h>
46 * When setting this variable to true it enables Two-Dimensional-Paging
47 * where the hardware walks 2 page tables:
48 * 1. the guest-virtual to guest-physical
49 * 2. while doing 1. it walks guest-physical to host-physical
50 * If the hardware supports that we don't need to do shadow paging.
52 bool tdp_enabled = false;
54 enum {
55 AUDIT_PRE_PAGE_FAULT,
56 AUDIT_POST_PAGE_FAULT,
57 AUDIT_PRE_PTE_WRITE,
58 AUDIT_POST_PTE_WRITE,
59 AUDIT_PRE_SYNC,
60 AUDIT_POST_SYNC
63 char *audit_point_name[] = {
64 "pre page fault",
65 "post page fault",
66 "pre pte write",
67 "post pte write",
68 "pre sync",
69 "post sync"
72 #undef MMU_DEBUG
74 #ifdef MMU_DEBUG
76 #define pgprintk(x...) do { if (dbg) printk(x); } while (0)
77 #define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
79 #else
81 #define pgprintk(x...) do { } while (0)
82 #define rmap_printk(x...) do { } while (0)
84 #endif
86 #ifdef MMU_DEBUG
87 static int dbg = 0;
88 module_param(dbg, bool, 0644);
89 #endif
91 static int oos_shadow = 1;
92 module_param(oos_shadow, bool, 0644);
94 #ifndef MMU_DEBUG
95 #define ASSERT(x) do { } while (0)
96 #else
97 #define ASSERT(x) \
98 if (!(x)) { \
99 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
100 __FILE__, __LINE__, #x); \
102 #endif
104 #define PTE_PREFETCH_NUM 8
106 #define PT_FIRST_AVAIL_BITS_SHIFT 9
107 #define PT64_SECOND_AVAIL_BITS_SHIFT 52
109 #define PT64_LEVEL_BITS 9
111 #define PT64_LEVEL_SHIFT(level) \
112 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
114 #define PT64_LEVEL_MASK(level) \
115 (((1ULL << PT64_LEVEL_BITS) - 1) << PT64_LEVEL_SHIFT(level))
117 #define PT64_INDEX(address, level)\
118 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
121 #define PT32_LEVEL_BITS 10
123 #define PT32_LEVEL_SHIFT(level) \
124 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
126 #define PT32_LEVEL_MASK(level) \
127 (((1ULL << PT32_LEVEL_BITS) - 1) << PT32_LEVEL_SHIFT(level))
128 #define PT32_LVL_OFFSET_MASK(level) \
129 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
130 * PT32_LEVEL_BITS))) - 1))
132 #define PT32_INDEX(address, level)\
133 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
136 #define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
137 #define PT64_DIR_BASE_ADDR_MASK \
138 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
139 #define PT64_LVL_ADDR_MASK(level) \
140 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
141 * PT64_LEVEL_BITS))) - 1))
142 #define PT64_LVL_OFFSET_MASK(level) \
143 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
144 * PT64_LEVEL_BITS))) - 1))
146 #define PT32_BASE_ADDR_MASK PAGE_MASK
147 #define PT32_DIR_BASE_ADDR_MASK \
148 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
149 #define PT32_LVL_ADDR_MASK(level) \
150 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
151 * PT32_LEVEL_BITS))) - 1))
153 #define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | PT_USER_MASK \
154 | PT64_NX_MASK)
156 #define RMAP_EXT 4
158 #define ACC_EXEC_MASK 1
159 #define ACC_WRITE_MASK PT_WRITABLE_MASK
160 #define ACC_USER_MASK PT_USER_MASK
161 #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
163 #include <trace/events/kvm.h>
165 #define CREATE_TRACE_POINTS
166 #include "mmutrace.h"
168 #define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
170 #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
172 struct kvm_rmap_desc {
173 u64 *sptes[RMAP_EXT];
174 struct kvm_rmap_desc *more;
177 struct kvm_shadow_walk_iterator {
178 u64 addr;
179 hpa_t shadow_addr;
180 int level;
181 u64 *sptep;
182 unsigned index;
185 #define for_each_shadow_entry(_vcpu, _addr, _walker) \
186 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
187 shadow_walk_okay(&(_walker)); \
188 shadow_walk_next(&(_walker)))
190 typedef void (*mmu_parent_walk_fn) (struct kvm_mmu_page *sp, u64 *spte);
192 static struct kmem_cache *pte_chain_cache;
193 static struct kmem_cache *rmap_desc_cache;
194 static struct kmem_cache *mmu_page_header_cache;
195 static struct percpu_counter kvm_total_used_mmu_pages;
197 static u64 __read_mostly shadow_trap_nonpresent_pte;
198 static u64 __read_mostly shadow_notrap_nonpresent_pte;
199 static u64 __read_mostly shadow_nx_mask;
200 static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
201 static u64 __read_mostly shadow_user_mask;
202 static u64 __read_mostly shadow_accessed_mask;
203 static u64 __read_mostly shadow_dirty_mask;
205 static inline u64 rsvd_bits(int s, int e)
207 return ((1ULL << (e - s + 1)) - 1) << s;
210 void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
212 shadow_trap_nonpresent_pte = trap_pte;
213 shadow_notrap_nonpresent_pte = notrap_pte;
215 EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
217 void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
218 u64 dirty_mask, u64 nx_mask, u64 x_mask)
220 shadow_user_mask = user_mask;
221 shadow_accessed_mask = accessed_mask;
222 shadow_dirty_mask = dirty_mask;
223 shadow_nx_mask = nx_mask;
224 shadow_x_mask = x_mask;
226 EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
228 static bool is_write_protection(struct kvm_vcpu *vcpu)
230 return kvm_read_cr0_bits(vcpu, X86_CR0_WP);
233 static int is_cpuid_PSE36(void)
235 return 1;
238 static int is_nx(struct kvm_vcpu *vcpu)
240 return vcpu->arch.efer & EFER_NX;
243 static int is_shadow_present_pte(u64 pte)
245 return pte != shadow_trap_nonpresent_pte
246 && pte != shadow_notrap_nonpresent_pte;
249 static int is_large_pte(u64 pte)
251 return pte & PT_PAGE_SIZE_MASK;
254 static int is_writable_pte(unsigned long pte)
256 return pte & PT_WRITABLE_MASK;
259 static int is_dirty_gpte(unsigned long pte)
261 return pte & PT_DIRTY_MASK;
264 static int is_rmap_spte(u64 pte)
266 return is_shadow_present_pte(pte);
269 static int is_last_spte(u64 pte, int level)
271 if (level == PT_PAGE_TABLE_LEVEL)
272 return 1;
273 if (is_large_pte(pte))
274 return 1;
275 return 0;
278 static pfn_t spte_to_pfn(u64 pte)
280 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
283 static gfn_t pse36_gfn_delta(u32 gpte)
285 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
287 return (gpte & PT32_DIR_PSE36_MASK) << shift;
290 static void __set_spte(u64 *sptep, u64 spte)
292 set_64bit(sptep, spte);
295 static u64 __xchg_spte(u64 *sptep, u64 new_spte)
297 #ifdef CONFIG_X86_64
298 return xchg(sptep, new_spte);
299 #else
300 u64 old_spte;
302 do {
303 old_spte = *sptep;
304 } while (cmpxchg64(sptep, old_spte, new_spte) != old_spte);
306 return old_spte;
307 #endif
310 static bool spte_has_volatile_bits(u64 spte)
312 if (!shadow_accessed_mask)
313 return false;
315 if (!is_shadow_present_pte(spte))
316 return false;
318 if ((spte & shadow_accessed_mask) &&
319 (!is_writable_pte(spte) || (spte & shadow_dirty_mask)))
320 return false;
322 return true;
325 static bool spte_is_bit_cleared(u64 old_spte, u64 new_spte, u64 bit_mask)
327 return (old_spte & bit_mask) && !(new_spte & bit_mask);
330 static void update_spte(u64 *sptep, u64 new_spte)
332 u64 mask, old_spte = *sptep;
334 WARN_ON(!is_rmap_spte(new_spte));
336 new_spte |= old_spte & shadow_dirty_mask;
338 mask = shadow_accessed_mask;
339 if (is_writable_pte(old_spte))
340 mask |= shadow_dirty_mask;
342 if (!spte_has_volatile_bits(old_spte) || (new_spte & mask) == mask)
343 __set_spte(sptep, new_spte);
344 else
345 old_spte = __xchg_spte(sptep, new_spte);
347 if (!shadow_accessed_mask)
348 return;
350 if (spte_is_bit_cleared(old_spte, new_spte, shadow_accessed_mask))
351 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
352 if (spte_is_bit_cleared(old_spte, new_spte, shadow_dirty_mask))
353 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
356 static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
357 struct kmem_cache *base_cache, int min)
359 void *obj;
361 if (cache->nobjs >= min)
362 return 0;
363 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
364 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
365 if (!obj)
366 return -ENOMEM;
367 cache->objects[cache->nobjs++] = obj;
369 return 0;
372 static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
373 struct kmem_cache *cache)
375 while (mc->nobjs)
376 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
379 static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
380 int min)
382 struct page *page;
384 if (cache->nobjs >= min)
385 return 0;
386 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
387 page = alloc_page(GFP_KERNEL);
388 if (!page)
389 return -ENOMEM;
390 cache->objects[cache->nobjs++] = page_address(page);
392 return 0;
395 static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
397 while (mc->nobjs)
398 free_page((unsigned long)mc->objects[--mc->nobjs]);
401 static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
403 int r;
405 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_chain_cache,
406 pte_chain_cache, 4);
407 if (r)
408 goto out;
409 r = mmu_topup_memory_cache(&vcpu->arch.mmu_rmap_desc_cache,
410 rmap_desc_cache, 4 + PTE_PREFETCH_NUM);
411 if (r)
412 goto out;
413 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
414 if (r)
415 goto out;
416 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
417 mmu_page_header_cache, 4);
418 out:
419 return r;
422 static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
424 mmu_free_memory_cache(&vcpu->arch.mmu_pte_chain_cache, pte_chain_cache);
425 mmu_free_memory_cache(&vcpu->arch.mmu_rmap_desc_cache, rmap_desc_cache);
426 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
427 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
428 mmu_page_header_cache);
431 static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
432 size_t size)
434 void *p;
436 BUG_ON(!mc->nobjs);
437 p = mc->objects[--mc->nobjs];
438 return p;
441 static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
443 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_chain_cache,
444 sizeof(struct kvm_pte_chain));
447 static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
449 kmem_cache_free(pte_chain_cache, pc);
452 static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
454 return mmu_memory_cache_alloc(&vcpu->arch.mmu_rmap_desc_cache,
455 sizeof(struct kvm_rmap_desc));
458 static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
460 kmem_cache_free(rmap_desc_cache, rd);
463 static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
465 if (!sp->role.direct)
466 return sp->gfns[index];
468 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
471 static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
473 if (sp->role.direct)
474 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
475 else
476 sp->gfns[index] = gfn;
480 * Return the pointer to the largepage write count for a given
481 * gfn, handling slots that are not large page aligned.
483 static int *slot_largepage_idx(gfn_t gfn,
484 struct kvm_memory_slot *slot,
485 int level)
487 unsigned long idx;
489 idx = (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
490 (slot->base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
491 return &slot->lpage_info[level - 2][idx].write_count;
494 static void account_shadowed(struct kvm *kvm, gfn_t gfn)
496 struct kvm_memory_slot *slot;
497 int *write_count;
498 int i;
500 slot = gfn_to_memslot(kvm, gfn);
501 for (i = PT_DIRECTORY_LEVEL;
502 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
503 write_count = slot_largepage_idx(gfn, slot, i);
504 *write_count += 1;
508 static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
510 struct kvm_memory_slot *slot;
511 int *write_count;
512 int i;
514 slot = gfn_to_memslot(kvm, gfn);
515 for (i = PT_DIRECTORY_LEVEL;
516 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
517 write_count = slot_largepage_idx(gfn, slot, i);
518 *write_count -= 1;
519 WARN_ON(*write_count < 0);
523 static int has_wrprotected_page(struct kvm *kvm,
524 gfn_t gfn,
525 int level)
527 struct kvm_memory_slot *slot;
528 int *largepage_idx;
530 slot = gfn_to_memslot(kvm, gfn);
531 if (slot) {
532 largepage_idx = slot_largepage_idx(gfn, slot, level);
533 return *largepage_idx;
536 return 1;
539 static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
541 unsigned long page_size;
542 int i, ret = 0;
544 page_size = kvm_host_page_size(kvm, gfn);
546 for (i = PT_PAGE_TABLE_LEVEL;
547 i < (PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES); ++i) {
548 if (page_size >= KVM_HPAGE_SIZE(i))
549 ret = i;
550 else
551 break;
554 return ret;
557 static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn)
559 struct kvm_memory_slot *slot;
560 int host_level, level, max_level;
562 slot = gfn_to_memslot(vcpu->kvm, large_gfn);
563 if (slot && slot->dirty_bitmap)
564 return PT_PAGE_TABLE_LEVEL;
566 host_level = host_mapping_level(vcpu->kvm, large_gfn);
568 if (host_level == PT_PAGE_TABLE_LEVEL)
569 return host_level;
571 max_level = kvm_x86_ops->get_lpage_level() < host_level ?
572 kvm_x86_ops->get_lpage_level() : host_level;
574 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
575 if (has_wrprotected_page(vcpu->kvm, large_gfn, level))
576 break;
578 return level - 1;
582 * Take gfn and return the reverse mapping to it.
585 static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int level)
587 struct kvm_memory_slot *slot;
588 unsigned long idx;
590 slot = gfn_to_memslot(kvm, gfn);
591 if (likely(level == PT_PAGE_TABLE_LEVEL))
592 return &slot->rmap[gfn - slot->base_gfn];
594 idx = (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
595 (slot->base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
597 return &slot->lpage_info[level - 2][idx].rmap_pde;
601 * Reverse mapping data structures:
603 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
604 * that points to page_address(page).
606 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
607 * containing more mappings.
609 * Returns the number of rmap entries before the spte was added or zero if
610 * the spte was not added.
613 static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
615 struct kvm_mmu_page *sp;
616 struct kvm_rmap_desc *desc;
617 unsigned long *rmapp;
618 int i, count = 0;
620 if (!is_rmap_spte(*spte))
621 return count;
622 sp = page_header(__pa(spte));
623 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
624 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
625 if (!*rmapp) {
626 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
627 *rmapp = (unsigned long)spte;
628 } else if (!(*rmapp & 1)) {
629 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
630 desc = mmu_alloc_rmap_desc(vcpu);
631 desc->sptes[0] = (u64 *)*rmapp;
632 desc->sptes[1] = spte;
633 *rmapp = (unsigned long)desc | 1;
634 ++count;
635 } else {
636 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
637 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
638 while (desc->sptes[RMAP_EXT-1] && desc->more) {
639 desc = desc->more;
640 count += RMAP_EXT;
642 if (desc->sptes[RMAP_EXT-1]) {
643 desc->more = mmu_alloc_rmap_desc(vcpu);
644 desc = desc->more;
646 for (i = 0; desc->sptes[i]; ++i)
647 ++count;
648 desc->sptes[i] = spte;
650 return count;
653 static void rmap_desc_remove_entry(unsigned long *rmapp,
654 struct kvm_rmap_desc *desc,
655 int i,
656 struct kvm_rmap_desc *prev_desc)
658 int j;
660 for (j = RMAP_EXT - 1; !desc->sptes[j] && j > i; --j)
662 desc->sptes[i] = desc->sptes[j];
663 desc->sptes[j] = NULL;
664 if (j != 0)
665 return;
666 if (!prev_desc && !desc->more)
667 *rmapp = (unsigned long)desc->sptes[0];
668 else
669 if (prev_desc)
670 prev_desc->more = desc->more;
671 else
672 *rmapp = (unsigned long)desc->more | 1;
673 mmu_free_rmap_desc(desc);
676 static void rmap_remove(struct kvm *kvm, u64 *spte)
678 struct kvm_rmap_desc *desc;
679 struct kvm_rmap_desc *prev_desc;
680 struct kvm_mmu_page *sp;
681 gfn_t gfn;
682 unsigned long *rmapp;
683 int i;
685 sp = page_header(__pa(spte));
686 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
687 rmapp = gfn_to_rmap(kvm, gfn, sp->role.level);
688 if (!*rmapp) {
689 printk(KERN_ERR "rmap_remove: %p 0->BUG\n", spte);
690 BUG();
691 } else if (!(*rmapp & 1)) {
692 rmap_printk("rmap_remove: %p 1->0\n", spte);
693 if ((u64 *)*rmapp != spte) {
694 printk(KERN_ERR "rmap_remove: %p 1->BUG\n", spte);
695 BUG();
697 *rmapp = 0;
698 } else {
699 rmap_printk("rmap_remove: %p many->many\n", spte);
700 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
701 prev_desc = NULL;
702 while (desc) {
703 for (i = 0; i < RMAP_EXT && desc->sptes[i]; ++i)
704 if (desc->sptes[i] == spte) {
705 rmap_desc_remove_entry(rmapp,
706 desc, i,
707 prev_desc);
708 return;
710 prev_desc = desc;
711 desc = desc->more;
713 pr_err("rmap_remove: %p many->many\n", spte);
714 BUG();
718 static int set_spte_track_bits(u64 *sptep, u64 new_spte)
720 pfn_t pfn;
721 u64 old_spte = *sptep;
723 if (!spte_has_volatile_bits(old_spte))
724 __set_spte(sptep, new_spte);
725 else
726 old_spte = __xchg_spte(sptep, new_spte);
728 if (!is_rmap_spte(old_spte))
729 return 0;
731 pfn = spte_to_pfn(old_spte);
732 if (!shadow_accessed_mask || old_spte & shadow_accessed_mask)
733 kvm_set_pfn_accessed(pfn);
734 if (!shadow_dirty_mask || (old_spte & shadow_dirty_mask))
735 kvm_set_pfn_dirty(pfn);
736 return 1;
739 static void drop_spte(struct kvm *kvm, u64 *sptep, u64 new_spte)
741 if (set_spte_track_bits(sptep, new_spte))
742 rmap_remove(kvm, sptep);
745 static u64 *rmap_next(struct kvm *kvm, unsigned long *rmapp, u64 *spte)
747 struct kvm_rmap_desc *desc;
748 u64 *prev_spte;
749 int i;
751 if (!*rmapp)
752 return NULL;
753 else if (!(*rmapp & 1)) {
754 if (!spte)
755 return (u64 *)*rmapp;
756 return NULL;
758 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
759 prev_spte = NULL;
760 while (desc) {
761 for (i = 0; i < RMAP_EXT && desc->sptes[i]; ++i) {
762 if (prev_spte == spte)
763 return desc->sptes[i];
764 prev_spte = desc->sptes[i];
766 desc = desc->more;
768 return NULL;
771 static int rmap_write_protect(struct kvm *kvm, u64 gfn)
773 unsigned long *rmapp;
774 u64 *spte;
775 int i, write_protected = 0;
777 rmapp = gfn_to_rmap(kvm, gfn, PT_PAGE_TABLE_LEVEL);
779 spte = rmap_next(kvm, rmapp, NULL);
780 while (spte) {
781 BUG_ON(!spte);
782 BUG_ON(!(*spte & PT_PRESENT_MASK));
783 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
784 if (is_writable_pte(*spte)) {
785 update_spte(spte, *spte & ~PT_WRITABLE_MASK);
786 write_protected = 1;
788 spte = rmap_next(kvm, rmapp, spte);
791 /* check for huge page mappings */
792 for (i = PT_DIRECTORY_LEVEL;
793 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
794 rmapp = gfn_to_rmap(kvm, gfn, i);
795 spte = rmap_next(kvm, rmapp, NULL);
796 while (spte) {
797 BUG_ON(!spte);
798 BUG_ON(!(*spte & PT_PRESENT_MASK));
799 BUG_ON((*spte & (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK)) != (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK));
800 pgprintk("rmap_write_protect(large): spte %p %llx %lld\n", spte, *spte, gfn);
801 if (is_writable_pte(*spte)) {
802 drop_spte(kvm, spte,
803 shadow_trap_nonpresent_pte);
804 --kvm->stat.lpages;
805 spte = NULL;
806 write_protected = 1;
808 spte = rmap_next(kvm, rmapp, spte);
812 return write_protected;
815 static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp,
816 unsigned long data)
818 u64 *spte;
819 int need_tlb_flush = 0;
821 while ((spte = rmap_next(kvm, rmapp, NULL))) {
822 BUG_ON(!(*spte & PT_PRESENT_MASK));
823 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", spte, *spte);
824 drop_spte(kvm, spte, shadow_trap_nonpresent_pte);
825 need_tlb_flush = 1;
827 return need_tlb_flush;
830 static int kvm_set_pte_rmapp(struct kvm *kvm, unsigned long *rmapp,
831 unsigned long data)
833 int need_flush = 0;
834 u64 *spte, new_spte;
835 pte_t *ptep = (pte_t *)data;
836 pfn_t new_pfn;
838 WARN_ON(pte_huge(*ptep));
839 new_pfn = pte_pfn(*ptep);
840 spte = rmap_next(kvm, rmapp, NULL);
841 while (spte) {
842 BUG_ON(!is_shadow_present_pte(*spte));
843 rmap_printk("kvm_set_pte_rmapp: spte %p %llx\n", spte, *spte);
844 need_flush = 1;
845 if (pte_write(*ptep)) {
846 drop_spte(kvm, spte, shadow_trap_nonpresent_pte);
847 spte = rmap_next(kvm, rmapp, NULL);
848 } else {
849 new_spte = *spte &~ (PT64_BASE_ADDR_MASK);
850 new_spte |= (u64)new_pfn << PAGE_SHIFT;
852 new_spte &= ~PT_WRITABLE_MASK;
853 new_spte &= ~SPTE_HOST_WRITEABLE;
854 new_spte &= ~shadow_accessed_mask;
855 set_spte_track_bits(spte, new_spte);
856 spte = rmap_next(kvm, rmapp, spte);
859 if (need_flush)
860 kvm_flush_remote_tlbs(kvm);
862 return 0;
865 static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
866 unsigned long data,
867 int (*handler)(struct kvm *kvm, unsigned long *rmapp,
868 unsigned long data))
870 int i, j;
871 int ret;
872 int retval = 0;
873 struct kvm_memslots *slots;
875 slots = kvm_memslots(kvm);
877 for (i = 0; i < slots->nmemslots; i++) {
878 struct kvm_memory_slot *memslot = &slots->memslots[i];
879 unsigned long start = memslot->userspace_addr;
880 unsigned long end;
882 end = start + (memslot->npages << PAGE_SHIFT);
883 if (hva >= start && hva < end) {
884 gfn_t gfn_offset = (hva - start) >> PAGE_SHIFT;
886 ret = handler(kvm, &memslot->rmap[gfn_offset], data);
888 for (j = 0; j < KVM_NR_PAGE_SIZES - 1; ++j) {
889 unsigned long idx;
890 int sh;
892 sh = KVM_HPAGE_GFN_SHIFT(PT_DIRECTORY_LEVEL+j);
893 idx = ((memslot->base_gfn+gfn_offset) >> sh) -
894 (memslot->base_gfn >> sh);
895 ret |= handler(kvm,
896 &memslot->lpage_info[j][idx].rmap_pde,
897 data);
899 trace_kvm_age_page(hva, memslot, ret);
900 retval |= ret;
904 return retval;
907 int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
909 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
912 void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
914 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
917 static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
918 unsigned long data)
920 u64 *spte;
921 int young = 0;
924 * Emulate the accessed bit for EPT, by checking if this page has
925 * an EPT mapping, and clearing it if it does. On the next access,
926 * a new EPT mapping will be established.
927 * This has some overhead, but not as much as the cost of swapping
928 * out actively used pages or breaking up actively used hugepages.
930 if (!shadow_accessed_mask)
931 return kvm_unmap_rmapp(kvm, rmapp, data);
933 spte = rmap_next(kvm, rmapp, NULL);
934 while (spte) {
935 int _young;
936 u64 _spte = *spte;
937 BUG_ON(!(_spte & PT_PRESENT_MASK));
938 _young = _spte & PT_ACCESSED_MASK;
939 if (_young) {
940 young = 1;
941 clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
943 spte = rmap_next(kvm, rmapp, spte);
945 return young;
948 #define RMAP_RECYCLE_THRESHOLD 1000
950 static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
952 unsigned long *rmapp;
953 struct kvm_mmu_page *sp;
955 sp = page_header(__pa(spte));
957 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
959 kvm_unmap_rmapp(vcpu->kvm, rmapp, 0);
960 kvm_flush_remote_tlbs(vcpu->kvm);
963 int kvm_age_hva(struct kvm *kvm, unsigned long hva)
965 return kvm_handle_hva(kvm, hva, 0, kvm_age_rmapp);
968 #ifdef MMU_DEBUG
969 static int is_empty_shadow_page(u64 *spt)
971 u64 *pos;
972 u64 *end;
974 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
975 if (is_shadow_present_pte(*pos)) {
976 printk(KERN_ERR "%s: %p %llx\n", __func__,
977 pos, *pos);
978 return 0;
980 return 1;
982 #endif
985 * This value is the sum of all of the kvm instances's
986 * kvm->arch.n_used_mmu_pages values. We need a global,
987 * aggregate version in order to make the slab shrinker
988 * faster
990 static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
992 kvm->arch.n_used_mmu_pages += nr;
993 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
996 static void kvm_mmu_free_page(struct kvm *kvm, struct kvm_mmu_page *sp)
998 ASSERT(is_empty_shadow_page(sp->spt));
999 hlist_del(&sp->hash_link);
1000 list_del(&sp->link);
1001 __free_page(virt_to_page(sp->spt));
1002 if (!sp->role.direct)
1003 __free_page(virt_to_page(sp->gfns));
1004 kmem_cache_free(mmu_page_header_cache, sp);
1005 kvm_mod_used_mmu_pages(kvm, -1);
1008 static unsigned kvm_page_table_hashfn(gfn_t gfn)
1010 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
1013 static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
1014 u64 *parent_pte, int direct)
1016 struct kvm_mmu_page *sp;
1018 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache, sizeof *sp);
1019 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
1020 if (!direct)
1021 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache,
1022 PAGE_SIZE);
1023 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
1024 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
1025 bitmap_zero(sp->slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
1026 sp->multimapped = 0;
1027 sp->parent_pte = parent_pte;
1028 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
1029 return sp;
1032 static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1033 struct kvm_mmu_page *sp, u64 *parent_pte)
1035 struct kvm_pte_chain *pte_chain;
1036 struct hlist_node *node;
1037 int i;
1039 if (!parent_pte)
1040 return;
1041 if (!sp->multimapped) {
1042 u64 *old = sp->parent_pte;
1044 if (!old) {
1045 sp->parent_pte = parent_pte;
1046 return;
1048 sp->multimapped = 1;
1049 pte_chain = mmu_alloc_pte_chain(vcpu);
1050 INIT_HLIST_HEAD(&sp->parent_ptes);
1051 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
1052 pte_chain->parent_ptes[0] = old;
1054 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link) {
1055 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
1056 continue;
1057 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
1058 if (!pte_chain->parent_ptes[i]) {
1059 pte_chain->parent_ptes[i] = parent_pte;
1060 return;
1063 pte_chain = mmu_alloc_pte_chain(vcpu);
1064 BUG_ON(!pte_chain);
1065 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
1066 pte_chain->parent_ptes[0] = parent_pte;
1069 static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1070 u64 *parent_pte)
1072 struct kvm_pte_chain *pte_chain;
1073 struct hlist_node *node;
1074 int i;
1076 if (!sp->multimapped) {
1077 BUG_ON(sp->parent_pte != parent_pte);
1078 sp->parent_pte = NULL;
1079 return;
1081 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
1082 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
1083 if (!pte_chain->parent_ptes[i])
1084 break;
1085 if (pte_chain->parent_ptes[i] != parent_pte)
1086 continue;
1087 while (i + 1 < NR_PTE_CHAIN_ENTRIES
1088 && pte_chain->parent_ptes[i + 1]) {
1089 pte_chain->parent_ptes[i]
1090 = pte_chain->parent_ptes[i + 1];
1091 ++i;
1093 pte_chain->parent_ptes[i] = NULL;
1094 if (i == 0) {
1095 hlist_del(&pte_chain->link);
1096 mmu_free_pte_chain(pte_chain);
1097 if (hlist_empty(&sp->parent_ptes)) {
1098 sp->multimapped = 0;
1099 sp->parent_pte = NULL;
1102 return;
1104 BUG();
1107 static void mmu_parent_walk(struct kvm_mmu_page *sp, mmu_parent_walk_fn fn)
1109 struct kvm_pte_chain *pte_chain;
1110 struct hlist_node *node;
1111 struct kvm_mmu_page *parent_sp;
1112 int i;
1114 if (!sp->multimapped && sp->parent_pte) {
1115 parent_sp = page_header(__pa(sp->parent_pte));
1116 fn(parent_sp, sp->parent_pte);
1117 return;
1120 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
1121 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
1122 u64 *spte = pte_chain->parent_ptes[i];
1124 if (!spte)
1125 break;
1126 parent_sp = page_header(__pa(spte));
1127 fn(parent_sp, spte);
1131 static void mark_unsync(struct kvm_mmu_page *sp, u64 *spte);
1132 static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
1134 mmu_parent_walk(sp, mark_unsync);
1137 static void mark_unsync(struct kvm_mmu_page *sp, u64 *spte)
1139 unsigned int index;
1141 index = spte - sp->spt;
1142 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1143 return;
1144 if (sp->unsync_children++)
1145 return;
1146 kvm_mmu_mark_parents_unsync(sp);
1149 static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
1150 struct kvm_mmu_page *sp)
1152 int i;
1154 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1155 sp->spt[i] = shadow_trap_nonpresent_pte;
1158 static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
1159 struct kvm_mmu_page *sp)
1161 return 1;
1164 static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1168 #define KVM_PAGE_ARRAY_NR 16
1170 struct kvm_mmu_pages {
1171 struct mmu_page_and_offset {
1172 struct kvm_mmu_page *sp;
1173 unsigned int idx;
1174 } page[KVM_PAGE_ARRAY_NR];
1175 unsigned int nr;
1178 #define for_each_unsync_children(bitmap, idx) \
1179 for (idx = find_first_bit(bitmap, 512); \
1180 idx < 512; \
1181 idx = find_next_bit(bitmap, 512, idx+1))
1183 static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1184 int idx)
1186 int i;
1188 if (sp->unsync)
1189 for (i=0; i < pvec->nr; i++)
1190 if (pvec->page[i].sp == sp)
1191 return 0;
1193 pvec->page[pvec->nr].sp = sp;
1194 pvec->page[pvec->nr].idx = idx;
1195 pvec->nr++;
1196 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1199 static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1200 struct kvm_mmu_pages *pvec)
1202 int i, ret, nr_unsync_leaf = 0;
1204 for_each_unsync_children(sp->unsync_child_bitmap, i) {
1205 struct kvm_mmu_page *child;
1206 u64 ent = sp->spt[i];
1208 if (!is_shadow_present_pte(ent) || is_large_pte(ent))
1209 goto clear_child_bitmap;
1211 child = page_header(ent & PT64_BASE_ADDR_MASK);
1213 if (child->unsync_children) {
1214 if (mmu_pages_add(pvec, child, i))
1215 return -ENOSPC;
1217 ret = __mmu_unsync_walk(child, pvec);
1218 if (!ret)
1219 goto clear_child_bitmap;
1220 else if (ret > 0)
1221 nr_unsync_leaf += ret;
1222 else
1223 return ret;
1224 } else if (child->unsync) {
1225 nr_unsync_leaf++;
1226 if (mmu_pages_add(pvec, child, i))
1227 return -ENOSPC;
1228 } else
1229 goto clear_child_bitmap;
1231 continue;
1233 clear_child_bitmap:
1234 __clear_bit(i, sp->unsync_child_bitmap);
1235 sp->unsync_children--;
1236 WARN_ON((int)sp->unsync_children < 0);
1240 return nr_unsync_leaf;
1243 static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1244 struct kvm_mmu_pages *pvec)
1246 if (!sp->unsync_children)
1247 return 0;
1249 mmu_pages_add(pvec, sp, 0);
1250 return __mmu_unsync_walk(sp, pvec);
1253 static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1255 WARN_ON(!sp->unsync);
1256 trace_kvm_mmu_sync_page(sp);
1257 sp->unsync = 0;
1258 --kvm->stat.mmu_unsync;
1261 static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1262 struct list_head *invalid_list);
1263 static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1264 struct list_head *invalid_list);
1266 #define for_each_gfn_sp(kvm, sp, gfn, pos) \
1267 hlist_for_each_entry(sp, pos, \
1268 &(kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)], hash_link) \
1269 if ((sp)->gfn != (gfn)) {} else
1271 #define for_each_gfn_indirect_valid_sp(kvm, sp, gfn, pos) \
1272 hlist_for_each_entry(sp, pos, \
1273 &(kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)], hash_link) \
1274 if ((sp)->gfn != (gfn) || (sp)->role.direct || \
1275 (sp)->role.invalid) {} else
1277 /* @sp->gfn should be write-protected at the call site */
1278 static int __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1279 struct list_head *invalid_list, bool clear_unsync)
1281 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
1282 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
1283 return 1;
1286 if (clear_unsync)
1287 kvm_unlink_unsync_page(vcpu->kvm, sp);
1289 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
1290 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
1291 return 1;
1294 kvm_mmu_flush_tlb(vcpu);
1295 return 0;
1298 static int kvm_sync_page_transient(struct kvm_vcpu *vcpu,
1299 struct kvm_mmu_page *sp)
1301 LIST_HEAD(invalid_list);
1302 int ret;
1304 ret = __kvm_sync_page(vcpu, sp, &invalid_list, false);
1305 if (ret)
1306 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
1308 return ret;
1311 static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1312 struct list_head *invalid_list)
1314 return __kvm_sync_page(vcpu, sp, invalid_list, true);
1317 /* @gfn should be write-protected at the call site */
1318 static void kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
1320 struct kvm_mmu_page *s;
1321 struct hlist_node *node;
1322 LIST_HEAD(invalid_list);
1323 bool flush = false;
1325 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
1326 if (!s->unsync)
1327 continue;
1329 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
1330 kvm_unlink_unsync_page(vcpu->kvm, s);
1331 if ((s->role.cr4_pae != !!is_pae(vcpu)) ||
1332 (vcpu->arch.mmu.sync_page(vcpu, s))) {
1333 kvm_mmu_prepare_zap_page(vcpu->kvm, s, &invalid_list);
1334 continue;
1336 flush = true;
1339 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
1340 if (flush)
1341 kvm_mmu_flush_tlb(vcpu);
1344 struct mmu_page_path {
1345 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1346 unsigned int idx[PT64_ROOT_LEVEL-1];
1349 #define for_each_sp(pvec, sp, parents, i) \
1350 for (i = mmu_pages_next(&pvec, &parents, -1), \
1351 sp = pvec.page[i].sp; \
1352 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1353 i = mmu_pages_next(&pvec, &parents, i))
1355 static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1356 struct mmu_page_path *parents,
1357 int i)
1359 int n;
1361 for (n = i+1; n < pvec->nr; n++) {
1362 struct kvm_mmu_page *sp = pvec->page[n].sp;
1364 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1365 parents->idx[0] = pvec->page[n].idx;
1366 return n;
1369 parents->parent[sp->role.level-2] = sp;
1370 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1373 return n;
1376 static void mmu_pages_clear_parents(struct mmu_page_path *parents)
1378 struct kvm_mmu_page *sp;
1379 unsigned int level = 0;
1381 do {
1382 unsigned int idx = parents->idx[level];
1384 sp = parents->parent[level];
1385 if (!sp)
1386 return;
1388 --sp->unsync_children;
1389 WARN_ON((int)sp->unsync_children < 0);
1390 __clear_bit(idx, sp->unsync_child_bitmap);
1391 level++;
1392 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
1395 static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1396 struct mmu_page_path *parents,
1397 struct kvm_mmu_pages *pvec)
1399 parents->parent[parent->role.level-1] = NULL;
1400 pvec->nr = 0;
1403 static void mmu_sync_children(struct kvm_vcpu *vcpu,
1404 struct kvm_mmu_page *parent)
1406 int i;
1407 struct kvm_mmu_page *sp;
1408 struct mmu_page_path parents;
1409 struct kvm_mmu_pages pages;
1410 LIST_HEAD(invalid_list);
1412 kvm_mmu_pages_init(parent, &parents, &pages);
1413 while (mmu_unsync_walk(parent, &pages)) {
1414 int protected = 0;
1416 for_each_sp(pages, sp, parents, i)
1417 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1419 if (protected)
1420 kvm_flush_remote_tlbs(vcpu->kvm);
1422 for_each_sp(pages, sp, parents, i) {
1423 kvm_sync_page(vcpu, sp, &invalid_list);
1424 mmu_pages_clear_parents(&parents);
1426 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
1427 cond_resched_lock(&vcpu->kvm->mmu_lock);
1428 kvm_mmu_pages_init(parent, &parents, &pages);
1432 static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1433 gfn_t gfn,
1434 gva_t gaddr,
1435 unsigned level,
1436 int direct,
1437 unsigned access,
1438 u64 *parent_pte)
1440 union kvm_mmu_page_role role;
1441 unsigned quadrant;
1442 struct kvm_mmu_page *sp;
1443 struct hlist_node *node;
1444 bool need_sync = false;
1446 role = vcpu->arch.mmu.base_role;
1447 role.level = level;
1448 role.direct = direct;
1449 if (role.direct)
1450 role.cr4_pae = 0;
1451 role.access = access;
1452 if (!vcpu->arch.mmu.direct_map
1453 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
1454 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1455 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1456 role.quadrant = quadrant;
1458 for_each_gfn_sp(vcpu->kvm, sp, gfn, node) {
1459 if (!need_sync && sp->unsync)
1460 need_sync = true;
1462 if (sp->role.word != role.word)
1463 continue;
1465 if (sp->unsync && kvm_sync_page_transient(vcpu, sp))
1466 break;
1468 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
1469 if (sp->unsync_children) {
1470 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
1471 kvm_mmu_mark_parents_unsync(sp);
1472 } else if (sp->unsync)
1473 kvm_mmu_mark_parents_unsync(sp);
1475 trace_kvm_mmu_get_page(sp, false);
1476 return sp;
1478 ++vcpu->kvm->stat.mmu_cache_miss;
1479 sp = kvm_mmu_alloc_page(vcpu, parent_pte, direct);
1480 if (!sp)
1481 return sp;
1482 sp->gfn = gfn;
1483 sp->role = role;
1484 hlist_add_head(&sp->hash_link,
1485 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
1486 if (!direct) {
1487 if (rmap_write_protect(vcpu->kvm, gfn))
1488 kvm_flush_remote_tlbs(vcpu->kvm);
1489 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
1490 kvm_sync_pages(vcpu, gfn);
1492 account_shadowed(vcpu->kvm, gfn);
1494 if (shadow_trap_nonpresent_pte != shadow_notrap_nonpresent_pte)
1495 vcpu->arch.mmu.prefetch_page(vcpu, sp);
1496 else
1497 nonpaging_prefetch_page(vcpu, sp);
1498 trace_kvm_mmu_get_page(sp, true);
1499 return sp;
1502 static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
1503 struct kvm_vcpu *vcpu, u64 addr)
1505 iterator->addr = addr;
1506 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
1507 iterator->level = vcpu->arch.mmu.shadow_root_level;
1509 if (iterator->level == PT64_ROOT_LEVEL &&
1510 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
1511 !vcpu->arch.mmu.direct_map)
1512 --iterator->level;
1514 if (iterator->level == PT32E_ROOT_LEVEL) {
1515 iterator->shadow_addr
1516 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
1517 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
1518 --iterator->level;
1519 if (!iterator->shadow_addr)
1520 iterator->level = 0;
1524 static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
1526 if (iterator->level < PT_PAGE_TABLE_LEVEL)
1527 return false;
1529 if (iterator->level == PT_PAGE_TABLE_LEVEL)
1530 if (is_large_pte(*iterator->sptep))
1531 return false;
1533 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
1534 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
1535 return true;
1538 static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
1540 iterator->shadow_addr = *iterator->sptep & PT64_BASE_ADDR_MASK;
1541 --iterator->level;
1544 static void link_shadow_page(u64 *sptep, struct kvm_mmu_page *sp)
1546 u64 spte;
1548 spte = __pa(sp->spt)
1549 | PT_PRESENT_MASK | PT_ACCESSED_MASK
1550 | PT_WRITABLE_MASK | PT_USER_MASK;
1551 __set_spte(sptep, spte);
1554 static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1556 if (is_large_pte(*sptep)) {
1557 drop_spte(vcpu->kvm, sptep, shadow_trap_nonpresent_pte);
1558 kvm_flush_remote_tlbs(vcpu->kvm);
1562 static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1563 unsigned direct_access)
1565 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
1566 struct kvm_mmu_page *child;
1569 * For the direct sp, if the guest pte's dirty bit
1570 * changed form clean to dirty, it will corrupt the
1571 * sp's access: allow writable in the read-only sp,
1572 * so we should update the spte at this point to get
1573 * a new sp with the correct access.
1575 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
1576 if (child->role.access == direct_access)
1577 return;
1579 mmu_page_remove_parent_pte(child, sptep);
1580 __set_spte(sptep, shadow_trap_nonpresent_pte);
1581 kvm_flush_remote_tlbs(vcpu->kvm);
1585 static void kvm_mmu_page_unlink_children(struct kvm *kvm,
1586 struct kvm_mmu_page *sp)
1588 unsigned i;
1589 u64 *pt;
1590 u64 ent;
1592 pt = sp->spt;
1594 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1595 ent = pt[i];
1597 if (is_shadow_present_pte(ent)) {
1598 if (!is_last_spte(ent, sp->role.level)) {
1599 ent &= PT64_BASE_ADDR_MASK;
1600 mmu_page_remove_parent_pte(page_header(ent),
1601 &pt[i]);
1602 } else {
1603 if (is_large_pte(ent))
1604 --kvm->stat.lpages;
1605 drop_spte(kvm, &pt[i],
1606 shadow_trap_nonpresent_pte);
1609 pt[i] = shadow_trap_nonpresent_pte;
1613 static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
1615 mmu_page_remove_parent_pte(sp, parent_pte);
1618 static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
1620 int i;
1621 struct kvm_vcpu *vcpu;
1623 kvm_for_each_vcpu(i, vcpu, kvm)
1624 vcpu->arch.last_pte_updated = NULL;
1627 static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
1629 u64 *parent_pte;
1631 while (sp->multimapped || sp->parent_pte) {
1632 if (!sp->multimapped)
1633 parent_pte = sp->parent_pte;
1634 else {
1635 struct kvm_pte_chain *chain;
1637 chain = container_of(sp->parent_ptes.first,
1638 struct kvm_pte_chain, link);
1639 parent_pte = chain->parent_ptes[0];
1641 BUG_ON(!parent_pte);
1642 kvm_mmu_put_page(sp, parent_pte);
1643 __set_spte(parent_pte, shadow_trap_nonpresent_pte);
1647 static int mmu_zap_unsync_children(struct kvm *kvm,
1648 struct kvm_mmu_page *parent,
1649 struct list_head *invalid_list)
1651 int i, zapped = 0;
1652 struct mmu_page_path parents;
1653 struct kvm_mmu_pages pages;
1655 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
1656 return 0;
1658 kvm_mmu_pages_init(parent, &parents, &pages);
1659 while (mmu_unsync_walk(parent, &pages)) {
1660 struct kvm_mmu_page *sp;
1662 for_each_sp(pages, sp, parents, i) {
1663 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
1664 mmu_pages_clear_parents(&parents);
1665 zapped++;
1667 kvm_mmu_pages_init(parent, &parents, &pages);
1670 return zapped;
1673 static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1674 struct list_head *invalid_list)
1676 int ret;
1678 trace_kvm_mmu_prepare_zap_page(sp);
1679 ++kvm->stat.mmu_shadow_zapped;
1680 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
1681 kvm_mmu_page_unlink_children(kvm, sp);
1682 kvm_mmu_unlink_parents(kvm, sp);
1683 if (!sp->role.invalid && !sp->role.direct)
1684 unaccount_shadowed(kvm, sp->gfn);
1685 if (sp->unsync)
1686 kvm_unlink_unsync_page(kvm, sp);
1687 if (!sp->root_count) {
1688 /* Count self */
1689 ret++;
1690 list_move(&sp->link, invalid_list);
1691 } else {
1692 list_move(&sp->link, &kvm->arch.active_mmu_pages);
1693 kvm_reload_remote_mmus(kvm);
1696 sp->role.invalid = 1;
1697 kvm_mmu_reset_last_pte_updated(kvm);
1698 return ret;
1701 static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1702 struct list_head *invalid_list)
1704 struct kvm_mmu_page *sp;
1706 if (list_empty(invalid_list))
1707 return;
1709 kvm_flush_remote_tlbs(kvm);
1711 do {
1712 sp = list_first_entry(invalid_list, struct kvm_mmu_page, link);
1713 WARN_ON(!sp->role.invalid || sp->root_count);
1714 kvm_mmu_free_page(kvm, sp);
1715 } while (!list_empty(invalid_list));
1720 * Changing the number of mmu pages allocated to the vm
1721 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
1723 void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
1725 LIST_HEAD(invalid_list);
1727 * If we set the number of mmu pages to be smaller be than the
1728 * number of actived pages , we must to free some mmu pages before we
1729 * change the value
1732 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
1733 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages &&
1734 !list_empty(&kvm->arch.active_mmu_pages)) {
1735 struct kvm_mmu_page *page;
1737 page = container_of(kvm->arch.active_mmu_pages.prev,
1738 struct kvm_mmu_page, link);
1739 kvm_mmu_prepare_zap_page(kvm, page, &invalid_list);
1740 kvm_mmu_commit_zap_page(kvm, &invalid_list);
1742 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
1745 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
1748 static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
1750 struct kvm_mmu_page *sp;
1751 struct hlist_node *node;
1752 LIST_HEAD(invalid_list);
1753 int r;
1755 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
1756 r = 0;
1758 for_each_gfn_indirect_valid_sp(kvm, sp, gfn, node) {
1759 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
1760 sp->role.word);
1761 r = 1;
1762 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
1764 kvm_mmu_commit_zap_page(kvm, &invalid_list);
1765 return r;
1768 static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
1770 struct kvm_mmu_page *sp;
1771 struct hlist_node *node;
1772 LIST_HEAD(invalid_list);
1774 for_each_gfn_indirect_valid_sp(kvm, sp, gfn, node) {
1775 pgprintk("%s: zap %llx %x\n",
1776 __func__, gfn, sp->role.word);
1777 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
1779 kvm_mmu_commit_zap_page(kvm, &invalid_list);
1782 static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
1784 int slot = memslot_id(kvm, gfn);
1785 struct kvm_mmu_page *sp = page_header(__pa(pte));
1787 __set_bit(slot, sp->slot_bitmap);
1790 static void mmu_convert_notrap(struct kvm_mmu_page *sp)
1792 int i;
1793 u64 *pt = sp->spt;
1795 if (shadow_trap_nonpresent_pte == shadow_notrap_nonpresent_pte)
1796 return;
1798 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1799 if (pt[i] == shadow_notrap_nonpresent_pte)
1800 __set_spte(&pt[i], shadow_trap_nonpresent_pte);
1805 * The function is based on mtrr_type_lookup() in
1806 * arch/x86/kernel/cpu/mtrr/generic.c
1808 static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
1809 u64 start, u64 end)
1811 int i;
1812 u64 base, mask;
1813 u8 prev_match, curr_match;
1814 int num_var_ranges = KVM_NR_VAR_MTRR;
1816 if (!mtrr_state->enabled)
1817 return 0xFF;
1819 /* Make end inclusive end, instead of exclusive */
1820 end--;
1822 /* Look in fixed ranges. Just return the type as per start */
1823 if (mtrr_state->have_fixed && (start < 0x100000)) {
1824 int idx;
1826 if (start < 0x80000) {
1827 idx = 0;
1828 idx += (start >> 16);
1829 return mtrr_state->fixed_ranges[idx];
1830 } else if (start < 0xC0000) {
1831 idx = 1 * 8;
1832 idx += ((start - 0x80000) >> 14);
1833 return mtrr_state->fixed_ranges[idx];
1834 } else if (start < 0x1000000) {
1835 idx = 3 * 8;
1836 idx += ((start - 0xC0000) >> 12);
1837 return mtrr_state->fixed_ranges[idx];
1842 * Look in variable ranges
1843 * Look of multiple ranges matching this address and pick type
1844 * as per MTRR precedence
1846 if (!(mtrr_state->enabled & 2))
1847 return mtrr_state->def_type;
1849 prev_match = 0xFF;
1850 for (i = 0; i < num_var_ranges; ++i) {
1851 unsigned short start_state, end_state;
1853 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
1854 continue;
1856 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
1857 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
1858 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
1859 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
1861 start_state = ((start & mask) == (base & mask));
1862 end_state = ((end & mask) == (base & mask));
1863 if (start_state != end_state)
1864 return 0xFE;
1866 if ((start & mask) != (base & mask))
1867 continue;
1869 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
1870 if (prev_match == 0xFF) {
1871 prev_match = curr_match;
1872 continue;
1875 if (prev_match == MTRR_TYPE_UNCACHABLE ||
1876 curr_match == MTRR_TYPE_UNCACHABLE)
1877 return MTRR_TYPE_UNCACHABLE;
1879 if ((prev_match == MTRR_TYPE_WRBACK &&
1880 curr_match == MTRR_TYPE_WRTHROUGH) ||
1881 (prev_match == MTRR_TYPE_WRTHROUGH &&
1882 curr_match == MTRR_TYPE_WRBACK)) {
1883 prev_match = MTRR_TYPE_WRTHROUGH;
1884 curr_match = MTRR_TYPE_WRTHROUGH;
1887 if (prev_match != curr_match)
1888 return MTRR_TYPE_UNCACHABLE;
1891 if (prev_match != 0xFF)
1892 return prev_match;
1894 return mtrr_state->def_type;
1897 u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
1899 u8 mtrr;
1901 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
1902 (gfn << PAGE_SHIFT) + PAGE_SIZE);
1903 if (mtrr == 0xfe || mtrr == 0xff)
1904 mtrr = MTRR_TYPE_WRBACK;
1905 return mtrr;
1907 EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
1909 static void __kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1911 trace_kvm_mmu_unsync_page(sp);
1912 ++vcpu->kvm->stat.mmu_unsync;
1913 sp->unsync = 1;
1915 kvm_mmu_mark_parents_unsync(sp);
1916 mmu_convert_notrap(sp);
1919 static void kvm_unsync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
1921 struct kvm_mmu_page *s;
1922 struct hlist_node *node;
1924 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
1925 if (s->unsync)
1926 continue;
1927 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
1928 __kvm_unsync_page(vcpu, s);
1932 static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1933 bool can_unsync)
1935 struct kvm_mmu_page *s;
1936 struct hlist_node *node;
1937 bool need_unsync = false;
1939 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
1940 if (!can_unsync)
1941 return 1;
1943 if (s->role.level != PT_PAGE_TABLE_LEVEL)
1944 return 1;
1946 if (!need_unsync && !s->unsync) {
1947 if (!oos_shadow)
1948 return 1;
1949 need_unsync = true;
1952 if (need_unsync)
1953 kvm_unsync_pages(vcpu, gfn);
1954 return 0;
1957 static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1958 unsigned pte_access, int user_fault,
1959 int write_fault, int dirty, int level,
1960 gfn_t gfn, pfn_t pfn, bool speculative,
1961 bool can_unsync, bool host_writable)
1963 u64 spte, entry = *sptep;
1964 int ret = 0;
1967 * We don't set the accessed bit, since we sometimes want to see
1968 * whether the guest actually used the pte (in order to detect
1969 * demand paging).
1971 spte = PT_PRESENT_MASK;
1972 if (!speculative)
1973 spte |= shadow_accessed_mask;
1974 if (!dirty)
1975 pte_access &= ~ACC_WRITE_MASK;
1976 if (pte_access & ACC_EXEC_MASK)
1977 spte |= shadow_x_mask;
1978 else
1979 spte |= shadow_nx_mask;
1980 if (pte_access & ACC_USER_MASK)
1981 spte |= shadow_user_mask;
1982 if (level > PT_PAGE_TABLE_LEVEL)
1983 spte |= PT_PAGE_SIZE_MASK;
1984 if (tdp_enabled)
1985 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
1986 kvm_is_mmio_pfn(pfn));
1988 if (host_writable)
1989 spte |= SPTE_HOST_WRITEABLE;
1991 spte |= (u64)pfn << PAGE_SHIFT;
1993 if ((pte_access & ACC_WRITE_MASK)
1994 || (!vcpu->arch.mmu.direct_map && write_fault
1995 && !is_write_protection(vcpu) && !user_fault)) {
1997 if (level > PT_PAGE_TABLE_LEVEL &&
1998 has_wrprotected_page(vcpu->kvm, gfn, level)) {
1999 ret = 1;
2000 drop_spte(vcpu->kvm, sptep, shadow_trap_nonpresent_pte);
2001 goto done;
2004 spte |= PT_WRITABLE_MASK;
2006 if (!vcpu->arch.mmu.direct_map
2007 && !(pte_access & ACC_WRITE_MASK))
2008 spte &= ~PT_USER_MASK;
2011 * Optimization: for pte sync, if spte was writable the hash
2012 * lookup is unnecessary (and expensive). Write protection
2013 * is responsibility of mmu_get_page / kvm_sync_page.
2014 * Same reasoning can be applied to dirty page accounting.
2016 if (!can_unsync && is_writable_pte(*sptep))
2017 goto set_pte;
2019 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
2020 pgprintk("%s: found shadow page for %llx, marking ro\n",
2021 __func__, gfn);
2022 ret = 1;
2023 pte_access &= ~ACC_WRITE_MASK;
2024 if (is_writable_pte(spte))
2025 spte &= ~PT_WRITABLE_MASK;
2029 if (pte_access & ACC_WRITE_MASK)
2030 mark_page_dirty(vcpu->kvm, gfn);
2032 set_pte:
2033 update_spte(sptep, spte);
2035 * If we overwrite a writable spte with a read-only one we
2036 * should flush remote TLBs. Otherwise rmap_write_protect
2037 * will find a read-only spte, even though the writable spte
2038 * might be cached on a CPU's TLB.
2040 if (is_writable_pte(entry) && !is_writable_pte(*sptep))
2041 kvm_flush_remote_tlbs(vcpu->kvm);
2042 done:
2043 return ret;
2046 static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2047 unsigned pt_access, unsigned pte_access,
2048 int user_fault, int write_fault, int dirty,
2049 int *ptwrite, int level, gfn_t gfn,
2050 pfn_t pfn, bool speculative,
2051 bool host_writable)
2053 int was_rmapped = 0;
2054 int rmap_count;
2056 pgprintk("%s: spte %llx access %x write_fault %d"
2057 " user_fault %d gfn %llx\n",
2058 __func__, *sptep, pt_access,
2059 write_fault, user_fault, gfn);
2061 if (is_rmap_spte(*sptep)) {
2063 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2064 * the parent of the now unreachable PTE.
2066 if (level > PT_PAGE_TABLE_LEVEL &&
2067 !is_large_pte(*sptep)) {
2068 struct kvm_mmu_page *child;
2069 u64 pte = *sptep;
2071 child = page_header(pte & PT64_BASE_ADDR_MASK);
2072 mmu_page_remove_parent_pte(child, sptep);
2073 __set_spte(sptep, shadow_trap_nonpresent_pte);
2074 kvm_flush_remote_tlbs(vcpu->kvm);
2075 } else if (pfn != spte_to_pfn(*sptep)) {
2076 pgprintk("hfn old %llx new %llx\n",
2077 spte_to_pfn(*sptep), pfn);
2078 drop_spte(vcpu->kvm, sptep, shadow_trap_nonpresent_pte);
2079 kvm_flush_remote_tlbs(vcpu->kvm);
2080 } else
2081 was_rmapped = 1;
2084 if (set_spte(vcpu, sptep, pte_access, user_fault, write_fault,
2085 dirty, level, gfn, pfn, speculative, true,
2086 host_writable)) {
2087 if (write_fault)
2088 *ptwrite = 1;
2089 kvm_mmu_flush_tlb(vcpu);
2092 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
2093 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
2094 is_large_pte(*sptep)? "2MB" : "4kB",
2095 *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
2096 *sptep, sptep);
2097 if (!was_rmapped && is_large_pte(*sptep))
2098 ++vcpu->kvm->stat.lpages;
2100 page_header_update_slot(vcpu->kvm, sptep, gfn);
2101 if (!was_rmapped) {
2102 rmap_count = rmap_add(vcpu, sptep, gfn);
2103 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2104 rmap_recycle(vcpu, sptep, gfn);
2106 kvm_release_pfn_clean(pfn);
2107 if (speculative) {
2108 vcpu->arch.last_pte_updated = sptep;
2109 vcpu->arch.last_pte_gfn = gfn;
2113 static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
2117 static struct kvm_memory_slot *
2118 pte_prefetch_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn, bool no_dirty_log)
2120 struct kvm_memory_slot *slot;
2122 slot = gfn_to_memslot(vcpu->kvm, gfn);
2123 if (!slot || slot->flags & KVM_MEMSLOT_INVALID ||
2124 (no_dirty_log && slot->dirty_bitmap))
2125 slot = NULL;
2127 return slot;
2130 static pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
2131 bool no_dirty_log)
2133 struct kvm_memory_slot *slot;
2134 unsigned long hva;
2136 slot = pte_prefetch_gfn_to_memslot(vcpu, gfn, no_dirty_log);
2137 if (!slot) {
2138 get_page(bad_page);
2139 return page_to_pfn(bad_page);
2142 hva = gfn_to_hva_memslot(slot, gfn);
2144 return hva_to_pfn_atomic(vcpu->kvm, hva);
2147 static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2148 struct kvm_mmu_page *sp,
2149 u64 *start, u64 *end)
2151 struct page *pages[PTE_PREFETCH_NUM];
2152 unsigned access = sp->role.access;
2153 int i, ret;
2154 gfn_t gfn;
2156 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
2157 if (!pte_prefetch_gfn_to_memslot(vcpu, gfn, access & ACC_WRITE_MASK))
2158 return -1;
2160 ret = gfn_to_page_many_atomic(vcpu->kvm, gfn, pages, end - start);
2161 if (ret <= 0)
2162 return -1;
2164 for (i = 0; i < ret; i++, gfn++, start++)
2165 mmu_set_spte(vcpu, start, ACC_ALL,
2166 access, 0, 0, 1, NULL,
2167 sp->role.level, gfn,
2168 page_to_pfn(pages[i]), true, true);
2170 return 0;
2173 static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2174 struct kvm_mmu_page *sp, u64 *sptep)
2176 u64 *spte, *start = NULL;
2177 int i;
2179 WARN_ON(!sp->role.direct);
2181 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2182 spte = sp->spt + i;
2184 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
2185 if (*spte != shadow_trap_nonpresent_pte || spte == sptep) {
2186 if (!start)
2187 continue;
2188 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2189 break;
2190 start = NULL;
2191 } else if (!start)
2192 start = spte;
2196 static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2198 struct kvm_mmu_page *sp;
2201 * Since it's no accessed bit on EPT, it's no way to
2202 * distinguish between actually accessed translations
2203 * and prefetched, so disable pte prefetch if EPT is
2204 * enabled.
2206 if (!shadow_accessed_mask)
2207 return;
2209 sp = page_header(__pa(sptep));
2210 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2211 return;
2213 __direct_pte_prefetch(vcpu, sp, sptep);
2216 static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
2217 int map_writable, int level, gfn_t gfn, pfn_t pfn,
2218 bool prefault)
2220 struct kvm_shadow_walk_iterator iterator;
2221 struct kvm_mmu_page *sp;
2222 int pt_write = 0;
2223 gfn_t pseudo_gfn;
2225 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
2226 if (iterator.level == level) {
2227 unsigned pte_access = ACC_ALL;
2229 if (!map_writable)
2230 pte_access &= ~ACC_WRITE_MASK;
2231 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, pte_access,
2232 0, write, 1, &pt_write,
2233 level, gfn, pfn, prefault, map_writable);
2234 direct_pte_prefetch(vcpu, iterator.sptep);
2235 ++vcpu->stat.pf_fixed;
2236 break;
2239 if (*iterator.sptep == shadow_trap_nonpresent_pte) {
2240 u64 base_addr = iterator.addr;
2242 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2243 pseudo_gfn = base_addr >> PAGE_SHIFT;
2244 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
2245 iterator.level - 1,
2246 1, ACC_ALL, iterator.sptep);
2247 if (!sp) {
2248 pgprintk("nonpaging_map: ENOMEM\n");
2249 kvm_release_pfn_clean(pfn);
2250 return -ENOMEM;
2253 __set_spte(iterator.sptep,
2254 __pa(sp->spt)
2255 | PT_PRESENT_MASK | PT_WRITABLE_MASK
2256 | shadow_user_mask | shadow_x_mask
2257 | shadow_accessed_mask);
2260 return pt_write;
2263 static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
2265 siginfo_t info;
2267 info.si_signo = SIGBUS;
2268 info.si_errno = 0;
2269 info.si_code = BUS_MCEERR_AR;
2270 info.si_addr = (void __user *)address;
2271 info.si_addr_lsb = PAGE_SHIFT;
2273 send_sig_info(SIGBUS, &info, tsk);
2276 static int kvm_handle_bad_page(struct kvm *kvm, gfn_t gfn, pfn_t pfn)
2278 kvm_release_pfn_clean(pfn);
2279 if (is_hwpoison_pfn(pfn)) {
2280 kvm_send_hwpoison_signal(gfn_to_hva(kvm, gfn), current);
2281 return 0;
2282 } else if (is_fault_pfn(pfn))
2283 return -EFAULT;
2285 return 1;
2288 static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
2289 gva_t gva, pfn_t *pfn, bool write, bool *writable);
2291 static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn,
2292 bool prefault)
2294 int r;
2295 int level;
2296 pfn_t pfn;
2297 unsigned long mmu_seq;
2298 bool map_writable;
2300 level = mapping_level(vcpu, gfn);
2303 * This path builds a PAE pagetable - so we can map 2mb pages at
2304 * maximum. Therefore check if the level is larger than that.
2306 if (level > PT_DIRECTORY_LEVEL)
2307 level = PT_DIRECTORY_LEVEL;
2309 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
2311 mmu_seq = vcpu->kvm->mmu_notifier_seq;
2312 smp_rmb();
2314 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
2315 return 0;
2317 /* mmio */
2318 if (is_error_pfn(pfn))
2319 return kvm_handle_bad_page(vcpu->kvm, gfn, pfn);
2321 spin_lock(&vcpu->kvm->mmu_lock);
2322 if (mmu_notifier_retry(vcpu, mmu_seq))
2323 goto out_unlock;
2324 kvm_mmu_free_some_pages(vcpu);
2325 r = __direct_map(vcpu, v, write, map_writable, level, gfn, pfn,
2326 prefault);
2327 spin_unlock(&vcpu->kvm->mmu_lock);
2330 return r;
2332 out_unlock:
2333 spin_unlock(&vcpu->kvm->mmu_lock);
2334 kvm_release_pfn_clean(pfn);
2335 return 0;
2339 static void mmu_free_roots(struct kvm_vcpu *vcpu)
2341 int i;
2342 struct kvm_mmu_page *sp;
2343 LIST_HEAD(invalid_list);
2345 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2346 return;
2347 spin_lock(&vcpu->kvm->mmu_lock);
2348 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
2349 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
2350 vcpu->arch.mmu.direct_map)) {
2351 hpa_t root = vcpu->arch.mmu.root_hpa;
2353 sp = page_header(root);
2354 --sp->root_count;
2355 if (!sp->root_count && sp->role.invalid) {
2356 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
2357 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
2359 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
2360 spin_unlock(&vcpu->kvm->mmu_lock);
2361 return;
2363 for (i = 0; i < 4; ++i) {
2364 hpa_t root = vcpu->arch.mmu.pae_root[i];
2366 if (root) {
2367 root &= PT64_BASE_ADDR_MASK;
2368 sp = page_header(root);
2369 --sp->root_count;
2370 if (!sp->root_count && sp->role.invalid)
2371 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
2372 &invalid_list);
2374 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
2376 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
2377 spin_unlock(&vcpu->kvm->mmu_lock);
2378 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
2381 static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
2383 int ret = 0;
2385 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
2386 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
2387 ret = 1;
2390 return ret;
2393 static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
2395 struct kvm_mmu_page *sp;
2396 unsigned i;
2398 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2399 spin_lock(&vcpu->kvm->mmu_lock);
2400 kvm_mmu_free_some_pages(vcpu);
2401 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL,
2402 1, ACC_ALL, NULL);
2403 ++sp->root_count;
2404 spin_unlock(&vcpu->kvm->mmu_lock);
2405 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
2406 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
2407 for (i = 0; i < 4; ++i) {
2408 hpa_t root = vcpu->arch.mmu.pae_root[i];
2410 ASSERT(!VALID_PAGE(root));
2411 spin_lock(&vcpu->kvm->mmu_lock);
2412 kvm_mmu_free_some_pages(vcpu);
2413 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
2414 i << 30,
2415 PT32_ROOT_LEVEL, 1, ACC_ALL,
2416 NULL);
2417 root = __pa(sp->spt);
2418 ++sp->root_count;
2419 spin_unlock(&vcpu->kvm->mmu_lock);
2420 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
2422 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
2423 } else
2424 BUG();
2426 return 0;
2429 static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
2431 struct kvm_mmu_page *sp;
2432 u64 pdptr, pm_mask;
2433 gfn_t root_gfn;
2434 int i;
2436 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
2438 if (mmu_check_root(vcpu, root_gfn))
2439 return 1;
2442 * Do we shadow a long mode page table? If so we need to
2443 * write-protect the guests page table root.
2445 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
2446 hpa_t root = vcpu->arch.mmu.root_hpa;
2448 ASSERT(!VALID_PAGE(root));
2450 spin_lock(&vcpu->kvm->mmu_lock);
2451 kvm_mmu_free_some_pages(vcpu);
2452 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
2453 0, ACC_ALL, NULL);
2454 root = __pa(sp->spt);
2455 ++sp->root_count;
2456 spin_unlock(&vcpu->kvm->mmu_lock);
2457 vcpu->arch.mmu.root_hpa = root;
2458 return 0;
2462 * We shadow a 32 bit page table. This may be a legacy 2-level
2463 * or a PAE 3-level page table. In either case we need to be aware that
2464 * the shadow page table may be a PAE or a long mode page table.
2466 pm_mask = PT_PRESENT_MASK;
2467 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
2468 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
2470 for (i = 0; i < 4; ++i) {
2471 hpa_t root = vcpu->arch.mmu.pae_root[i];
2473 ASSERT(!VALID_PAGE(root));
2474 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
2475 pdptr = kvm_pdptr_read_mmu(vcpu, &vcpu->arch.mmu, i);
2476 if (!is_present_gpte(pdptr)) {
2477 vcpu->arch.mmu.pae_root[i] = 0;
2478 continue;
2480 root_gfn = pdptr >> PAGE_SHIFT;
2481 if (mmu_check_root(vcpu, root_gfn))
2482 return 1;
2484 spin_lock(&vcpu->kvm->mmu_lock);
2485 kvm_mmu_free_some_pages(vcpu);
2486 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
2487 PT32_ROOT_LEVEL, 0,
2488 ACC_ALL, NULL);
2489 root = __pa(sp->spt);
2490 ++sp->root_count;
2491 spin_unlock(&vcpu->kvm->mmu_lock);
2493 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
2495 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
2498 * If we shadow a 32 bit page table with a long mode page
2499 * table we enter this path.
2501 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2502 if (vcpu->arch.mmu.lm_root == NULL) {
2504 * The additional page necessary for this is only
2505 * allocated on demand.
2508 u64 *lm_root;
2510 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
2511 if (lm_root == NULL)
2512 return 1;
2514 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
2516 vcpu->arch.mmu.lm_root = lm_root;
2519 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
2522 return 0;
2525 static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
2527 if (vcpu->arch.mmu.direct_map)
2528 return mmu_alloc_direct_roots(vcpu);
2529 else
2530 return mmu_alloc_shadow_roots(vcpu);
2533 static void mmu_sync_roots(struct kvm_vcpu *vcpu)
2535 int i;
2536 struct kvm_mmu_page *sp;
2538 if (vcpu->arch.mmu.direct_map)
2539 return;
2541 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2542 return;
2544 trace_kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
2545 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
2546 hpa_t root = vcpu->arch.mmu.root_hpa;
2547 sp = page_header(root);
2548 mmu_sync_children(vcpu, sp);
2549 trace_kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
2550 return;
2552 for (i = 0; i < 4; ++i) {
2553 hpa_t root = vcpu->arch.mmu.pae_root[i];
2555 if (root && VALID_PAGE(root)) {
2556 root &= PT64_BASE_ADDR_MASK;
2557 sp = page_header(root);
2558 mmu_sync_children(vcpu, sp);
2561 trace_kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
2564 void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2566 spin_lock(&vcpu->kvm->mmu_lock);
2567 mmu_sync_roots(vcpu);
2568 spin_unlock(&vcpu->kvm->mmu_lock);
2571 static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
2572 u32 access, struct x86_exception *exception)
2574 if (exception)
2575 exception->error_code = 0;
2576 return vaddr;
2579 static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
2580 u32 access,
2581 struct x86_exception *exception)
2583 if (exception)
2584 exception->error_code = 0;
2585 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
2588 static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
2589 u32 error_code, bool prefault)
2591 gfn_t gfn;
2592 int r;
2594 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
2595 r = mmu_topup_memory_caches(vcpu);
2596 if (r)
2597 return r;
2599 ASSERT(vcpu);
2600 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2602 gfn = gva >> PAGE_SHIFT;
2604 return nonpaging_map(vcpu, gva & PAGE_MASK,
2605 error_code & PFERR_WRITE_MASK, gfn, prefault);
2608 static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
2610 struct kvm_arch_async_pf arch;
2611 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
2612 arch.gfn = gfn;
2613 arch.direct_map = vcpu->arch.mmu.direct_map;
2615 return kvm_setup_async_pf(vcpu, gva, gfn, &arch);
2618 static bool can_do_async_pf(struct kvm_vcpu *vcpu)
2620 if (unlikely(!irqchip_in_kernel(vcpu->kvm) ||
2621 kvm_event_needs_reinjection(vcpu)))
2622 return false;
2624 return kvm_x86_ops->interrupt_allowed(vcpu);
2627 static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
2628 gva_t gva, pfn_t *pfn, bool write, bool *writable)
2630 bool async;
2632 *pfn = gfn_to_pfn_async(vcpu->kvm, gfn, &async, write, writable);
2634 if (!async)
2635 return false; /* *pfn has correct page already */
2637 put_page(pfn_to_page(*pfn));
2639 if (!prefault && can_do_async_pf(vcpu)) {
2640 trace_kvm_try_async_get_page(gva, gfn);
2641 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
2642 trace_kvm_async_pf_doublefault(gva, gfn);
2643 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
2644 return true;
2645 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
2646 return true;
2649 *pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write, writable);
2651 return false;
2654 static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
2655 bool prefault)
2657 pfn_t pfn;
2658 int r;
2659 int level;
2660 gfn_t gfn = gpa >> PAGE_SHIFT;
2661 unsigned long mmu_seq;
2662 int write = error_code & PFERR_WRITE_MASK;
2663 bool map_writable;
2665 ASSERT(vcpu);
2666 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2668 r = mmu_topup_memory_caches(vcpu);
2669 if (r)
2670 return r;
2672 level = mapping_level(vcpu, gfn);
2674 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
2676 mmu_seq = vcpu->kvm->mmu_notifier_seq;
2677 smp_rmb();
2679 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
2680 return 0;
2682 /* mmio */
2683 if (is_error_pfn(pfn))
2684 return kvm_handle_bad_page(vcpu->kvm, gfn, pfn);
2685 spin_lock(&vcpu->kvm->mmu_lock);
2686 if (mmu_notifier_retry(vcpu, mmu_seq))
2687 goto out_unlock;
2688 kvm_mmu_free_some_pages(vcpu);
2689 r = __direct_map(vcpu, gpa, write, map_writable,
2690 level, gfn, pfn, prefault);
2691 spin_unlock(&vcpu->kvm->mmu_lock);
2693 return r;
2695 out_unlock:
2696 spin_unlock(&vcpu->kvm->mmu_lock);
2697 kvm_release_pfn_clean(pfn);
2698 return 0;
2701 static void nonpaging_free(struct kvm_vcpu *vcpu)
2703 mmu_free_roots(vcpu);
2706 static int nonpaging_init_context(struct kvm_vcpu *vcpu,
2707 struct kvm_mmu *context)
2709 context->new_cr3 = nonpaging_new_cr3;
2710 context->page_fault = nonpaging_page_fault;
2711 context->gva_to_gpa = nonpaging_gva_to_gpa;
2712 context->free = nonpaging_free;
2713 context->prefetch_page = nonpaging_prefetch_page;
2714 context->sync_page = nonpaging_sync_page;
2715 context->invlpg = nonpaging_invlpg;
2716 context->root_level = 0;
2717 context->shadow_root_level = PT32E_ROOT_LEVEL;
2718 context->root_hpa = INVALID_PAGE;
2719 context->direct_map = true;
2720 context->nx = false;
2721 return 0;
2724 void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2726 ++vcpu->stat.tlb_flush;
2727 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2730 static void paging_new_cr3(struct kvm_vcpu *vcpu)
2732 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
2733 mmu_free_roots(vcpu);
2736 static unsigned long get_cr3(struct kvm_vcpu *vcpu)
2738 return vcpu->arch.cr3;
2741 static void inject_page_fault(struct kvm_vcpu *vcpu,
2742 struct x86_exception *fault)
2744 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
2747 static void paging_free(struct kvm_vcpu *vcpu)
2749 nonpaging_free(vcpu);
2752 static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
2754 int bit7;
2756 bit7 = (gpte >> 7) & 1;
2757 return (gpte & mmu->rsvd_bits_mask[bit7][level-1]) != 0;
2760 #define PTTYPE 64
2761 #include "paging_tmpl.h"
2762 #undef PTTYPE
2764 #define PTTYPE 32
2765 #include "paging_tmpl.h"
2766 #undef PTTYPE
2768 static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
2769 struct kvm_mmu *context,
2770 int level)
2772 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2773 u64 exb_bit_rsvd = 0;
2775 if (!context->nx)
2776 exb_bit_rsvd = rsvd_bits(63, 63);
2777 switch (level) {
2778 case PT32_ROOT_LEVEL:
2779 /* no rsvd bits for 2 level 4K page table entries */
2780 context->rsvd_bits_mask[0][1] = 0;
2781 context->rsvd_bits_mask[0][0] = 0;
2782 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
2784 if (!is_pse(vcpu)) {
2785 context->rsvd_bits_mask[1][1] = 0;
2786 break;
2789 if (is_cpuid_PSE36())
2790 /* 36bits PSE 4MB page */
2791 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
2792 else
2793 /* 32 bits PSE 4MB page */
2794 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
2795 break;
2796 case PT32E_ROOT_LEVEL:
2797 context->rsvd_bits_mask[0][2] =
2798 rsvd_bits(maxphyaddr, 63) |
2799 rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
2800 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
2801 rsvd_bits(maxphyaddr, 62); /* PDE */
2802 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2803 rsvd_bits(maxphyaddr, 62); /* PTE */
2804 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2805 rsvd_bits(maxphyaddr, 62) |
2806 rsvd_bits(13, 20); /* large page */
2807 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
2808 break;
2809 case PT64_ROOT_LEVEL:
2810 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
2811 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2812 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
2813 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2814 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
2815 rsvd_bits(maxphyaddr, 51);
2816 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2817 rsvd_bits(maxphyaddr, 51);
2818 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
2819 context->rsvd_bits_mask[1][2] = exb_bit_rsvd |
2820 rsvd_bits(maxphyaddr, 51) |
2821 rsvd_bits(13, 29);
2822 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2823 rsvd_bits(maxphyaddr, 51) |
2824 rsvd_bits(13, 20); /* large page */
2825 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
2826 break;
2830 static int paging64_init_context_common(struct kvm_vcpu *vcpu,
2831 struct kvm_mmu *context,
2832 int level)
2834 context->nx = is_nx(vcpu);
2836 reset_rsvds_bits_mask(vcpu, context, level);
2838 ASSERT(is_pae(vcpu));
2839 context->new_cr3 = paging_new_cr3;
2840 context->page_fault = paging64_page_fault;
2841 context->gva_to_gpa = paging64_gva_to_gpa;
2842 context->prefetch_page = paging64_prefetch_page;
2843 context->sync_page = paging64_sync_page;
2844 context->invlpg = paging64_invlpg;
2845 context->free = paging_free;
2846 context->root_level = level;
2847 context->shadow_root_level = level;
2848 context->root_hpa = INVALID_PAGE;
2849 context->direct_map = false;
2850 return 0;
2853 static int paging64_init_context(struct kvm_vcpu *vcpu,
2854 struct kvm_mmu *context)
2856 return paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
2859 static int paging32_init_context(struct kvm_vcpu *vcpu,
2860 struct kvm_mmu *context)
2862 context->nx = false;
2864 reset_rsvds_bits_mask(vcpu, context, PT32_ROOT_LEVEL);
2866 context->new_cr3 = paging_new_cr3;
2867 context->page_fault = paging32_page_fault;
2868 context->gva_to_gpa = paging32_gva_to_gpa;
2869 context->free = paging_free;
2870 context->prefetch_page = paging32_prefetch_page;
2871 context->sync_page = paging32_sync_page;
2872 context->invlpg = paging32_invlpg;
2873 context->root_level = PT32_ROOT_LEVEL;
2874 context->shadow_root_level = PT32E_ROOT_LEVEL;
2875 context->root_hpa = INVALID_PAGE;
2876 context->direct_map = false;
2877 return 0;
2880 static int paging32E_init_context(struct kvm_vcpu *vcpu,
2881 struct kvm_mmu *context)
2883 return paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
2886 static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2888 struct kvm_mmu *context = vcpu->arch.walk_mmu;
2890 context->new_cr3 = nonpaging_new_cr3;
2891 context->page_fault = tdp_page_fault;
2892 context->free = nonpaging_free;
2893 context->prefetch_page = nonpaging_prefetch_page;
2894 context->sync_page = nonpaging_sync_page;
2895 context->invlpg = nonpaging_invlpg;
2896 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
2897 context->root_hpa = INVALID_PAGE;
2898 context->direct_map = true;
2899 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
2900 context->get_cr3 = get_cr3;
2901 context->inject_page_fault = kvm_inject_page_fault;
2902 context->nx = is_nx(vcpu);
2904 if (!is_paging(vcpu)) {
2905 context->nx = false;
2906 context->gva_to_gpa = nonpaging_gva_to_gpa;
2907 context->root_level = 0;
2908 } else if (is_long_mode(vcpu)) {
2909 context->nx = is_nx(vcpu);
2910 reset_rsvds_bits_mask(vcpu, context, PT64_ROOT_LEVEL);
2911 context->gva_to_gpa = paging64_gva_to_gpa;
2912 context->root_level = PT64_ROOT_LEVEL;
2913 } else if (is_pae(vcpu)) {
2914 context->nx = is_nx(vcpu);
2915 reset_rsvds_bits_mask(vcpu, context, PT32E_ROOT_LEVEL);
2916 context->gva_to_gpa = paging64_gva_to_gpa;
2917 context->root_level = PT32E_ROOT_LEVEL;
2918 } else {
2919 context->nx = false;
2920 reset_rsvds_bits_mask(vcpu, context, PT32_ROOT_LEVEL);
2921 context->gva_to_gpa = paging32_gva_to_gpa;
2922 context->root_level = PT32_ROOT_LEVEL;
2925 return 0;
2928 int kvm_init_shadow_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
2930 int r;
2931 ASSERT(vcpu);
2932 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2934 if (!is_paging(vcpu))
2935 r = nonpaging_init_context(vcpu, context);
2936 else if (is_long_mode(vcpu))
2937 r = paging64_init_context(vcpu, context);
2938 else if (is_pae(vcpu))
2939 r = paging32E_init_context(vcpu, context);
2940 else
2941 r = paging32_init_context(vcpu, context);
2943 vcpu->arch.mmu.base_role.cr4_pae = !!is_pae(vcpu);
2944 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
2946 return r;
2948 EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
2950 static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
2952 int r = kvm_init_shadow_mmu(vcpu, vcpu->arch.walk_mmu);
2954 vcpu->arch.walk_mmu->set_cr3 = kvm_x86_ops->set_cr3;
2955 vcpu->arch.walk_mmu->get_cr3 = get_cr3;
2956 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
2958 return r;
2961 static int init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
2963 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
2965 g_context->get_cr3 = get_cr3;
2966 g_context->inject_page_fault = kvm_inject_page_fault;
2969 * Note that arch.mmu.gva_to_gpa translates l2_gva to l1_gpa. The
2970 * translation of l2_gpa to l1_gpa addresses is done using the
2971 * arch.nested_mmu.gva_to_gpa function. Basically the gva_to_gpa
2972 * functions between mmu and nested_mmu are swapped.
2974 if (!is_paging(vcpu)) {
2975 g_context->nx = false;
2976 g_context->root_level = 0;
2977 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
2978 } else if (is_long_mode(vcpu)) {
2979 g_context->nx = is_nx(vcpu);
2980 reset_rsvds_bits_mask(vcpu, g_context, PT64_ROOT_LEVEL);
2981 g_context->root_level = PT64_ROOT_LEVEL;
2982 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
2983 } else if (is_pae(vcpu)) {
2984 g_context->nx = is_nx(vcpu);
2985 reset_rsvds_bits_mask(vcpu, g_context, PT32E_ROOT_LEVEL);
2986 g_context->root_level = PT32E_ROOT_LEVEL;
2987 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
2988 } else {
2989 g_context->nx = false;
2990 reset_rsvds_bits_mask(vcpu, g_context, PT32_ROOT_LEVEL);
2991 g_context->root_level = PT32_ROOT_LEVEL;
2992 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
2995 return 0;
2998 static int init_kvm_mmu(struct kvm_vcpu *vcpu)
3000 vcpu->arch.update_pte.pfn = bad_pfn;
3002 if (mmu_is_nested(vcpu))
3003 return init_kvm_nested_mmu(vcpu);
3004 else if (tdp_enabled)
3005 return init_kvm_tdp_mmu(vcpu);
3006 else
3007 return init_kvm_softmmu(vcpu);
3010 static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
3012 ASSERT(vcpu);
3013 if (VALID_PAGE(vcpu->arch.mmu.root_hpa))
3014 /* mmu.free() should set root_hpa = INVALID_PAGE */
3015 vcpu->arch.mmu.free(vcpu);
3018 int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
3020 destroy_kvm_mmu(vcpu);
3021 return init_kvm_mmu(vcpu);
3023 EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
3025 int kvm_mmu_load(struct kvm_vcpu *vcpu)
3027 int r;
3029 r = mmu_topup_memory_caches(vcpu);
3030 if (r)
3031 goto out;
3032 r = mmu_alloc_roots(vcpu);
3033 spin_lock(&vcpu->kvm->mmu_lock);
3034 mmu_sync_roots(vcpu);
3035 spin_unlock(&vcpu->kvm->mmu_lock);
3036 if (r)
3037 goto out;
3038 /* set_cr3() should ensure TLB has been flushed */
3039 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
3040 out:
3041 return r;
3043 EXPORT_SYMBOL_GPL(kvm_mmu_load);
3045 void kvm_mmu_unload(struct kvm_vcpu *vcpu)
3047 mmu_free_roots(vcpu);
3049 EXPORT_SYMBOL_GPL(kvm_mmu_unload);
3051 static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
3052 struct kvm_mmu_page *sp,
3053 u64 *spte)
3055 u64 pte;
3056 struct kvm_mmu_page *child;
3058 pte = *spte;
3059 if (is_shadow_present_pte(pte)) {
3060 if (is_last_spte(pte, sp->role.level))
3061 drop_spte(vcpu->kvm, spte, shadow_trap_nonpresent_pte);
3062 else {
3063 child = page_header(pte & PT64_BASE_ADDR_MASK);
3064 mmu_page_remove_parent_pte(child, spte);
3067 __set_spte(spte, shadow_trap_nonpresent_pte);
3068 if (is_large_pte(pte))
3069 --vcpu->kvm->stat.lpages;
3072 static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
3073 struct kvm_mmu_page *sp,
3074 u64 *spte,
3075 const void *new)
3077 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
3078 ++vcpu->kvm->stat.mmu_pde_zapped;
3079 return;
3082 ++vcpu->kvm->stat.mmu_pte_updated;
3083 if (!sp->role.cr4_pae)
3084 paging32_update_pte(vcpu, sp, spte, new);
3085 else
3086 paging64_update_pte(vcpu, sp, spte, new);
3089 static bool need_remote_flush(u64 old, u64 new)
3091 if (!is_shadow_present_pte(old))
3092 return false;
3093 if (!is_shadow_present_pte(new))
3094 return true;
3095 if ((old ^ new) & PT64_BASE_ADDR_MASK)
3096 return true;
3097 old ^= PT64_NX_MASK;
3098 new ^= PT64_NX_MASK;
3099 return (old & ~new & PT64_PERM_MASK) != 0;
3102 static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
3103 bool remote_flush, bool local_flush)
3105 if (zap_page)
3106 return;
3108 if (remote_flush)
3109 kvm_flush_remote_tlbs(vcpu->kvm);
3110 else if (local_flush)
3111 kvm_mmu_flush_tlb(vcpu);
3114 static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
3116 u64 *spte = vcpu->arch.last_pte_updated;
3118 return !!(spte && (*spte & shadow_accessed_mask));
3121 static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
3122 u64 gpte)
3124 gfn_t gfn;
3125 pfn_t pfn;
3127 if (!is_present_gpte(gpte))
3128 return;
3129 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
3131 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
3132 smp_rmb();
3133 pfn = gfn_to_pfn(vcpu->kvm, gfn);
3135 if (is_error_pfn(pfn)) {
3136 kvm_release_pfn_clean(pfn);
3137 return;
3139 vcpu->arch.update_pte.gfn = gfn;
3140 vcpu->arch.update_pte.pfn = pfn;
3143 static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
3145 u64 *spte = vcpu->arch.last_pte_updated;
3147 if (spte
3148 && vcpu->arch.last_pte_gfn == gfn
3149 && shadow_accessed_mask
3150 && !(*spte & shadow_accessed_mask)
3151 && is_shadow_present_pte(*spte))
3152 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
3155 void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
3156 const u8 *new, int bytes,
3157 bool guest_initiated)
3159 gfn_t gfn = gpa >> PAGE_SHIFT;
3160 union kvm_mmu_page_role mask = { .word = 0 };
3161 struct kvm_mmu_page *sp;
3162 struct hlist_node *node;
3163 LIST_HEAD(invalid_list);
3164 u64 entry, gentry;
3165 u64 *spte;
3166 unsigned offset = offset_in_page(gpa);
3167 unsigned pte_size;
3168 unsigned page_offset;
3169 unsigned misaligned;
3170 unsigned quadrant;
3171 int level;
3172 int flooded = 0;
3173 int npte;
3174 int r;
3175 int invlpg_counter;
3176 bool remote_flush, local_flush, zap_page;
3178 zap_page = remote_flush = local_flush = false;
3180 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
3182 invlpg_counter = atomic_read(&vcpu->kvm->arch.invlpg_counter);
3185 * Assume that the pte write on a page table of the same type
3186 * as the current vcpu paging mode. This is nearly always true
3187 * (might be false while changing modes). Note it is verified later
3188 * by update_pte().
3190 if ((is_pae(vcpu) && bytes == 4) || !new) {
3191 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
3192 if (is_pae(vcpu)) {
3193 gpa &= ~(gpa_t)7;
3194 bytes = 8;
3196 r = kvm_read_guest(vcpu->kvm, gpa, &gentry, min(bytes, 8));
3197 if (r)
3198 gentry = 0;
3199 new = (const u8 *)&gentry;
3202 switch (bytes) {
3203 case 4:
3204 gentry = *(const u32 *)new;
3205 break;
3206 case 8:
3207 gentry = *(const u64 *)new;
3208 break;
3209 default:
3210 gentry = 0;
3211 break;
3214 mmu_guess_page_from_pte_write(vcpu, gpa, gentry);
3215 spin_lock(&vcpu->kvm->mmu_lock);
3216 if (atomic_read(&vcpu->kvm->arch.invlpg_counter) != invlpg_counter)
3217 gentry = 0;
3218 kvm_mmu_access_page(vcpu, gfn);
3219 kvm_mmu_free_some_pages(vcpu);
3220 ++vcpu->kvm->stat.mmu_pte_write;
3221 trace_kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
3222 if (guest_initiated) {
3223 if (gfn == vcpu->arch.last_pt_write_gfn
3224 && !last_updated_pte_accessed(vcpu)) {
3225 ++vcpu->arch.last_pt_write_count;
3226 if (vcpu->arch.last_pt_write_count >= 3)
3227 flooded = 1;
3228 } else {
3229 vcpu->arch.last_pt_write_gfn = gfn;
3230 vcpu->arch.last_pt_write_count = 1;
3231 vcpu->arch.last_pte_updated = NULL;
3235 mask.cr0_wp = mask.cr4_pae = mask.nxe = 1;
3236 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn, node) {
3237 pte_size = sp->role.cr4_pae ? 8 : 4;
3238 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
3239 misaligned |= bytes < 4;
3240 if (misaligned || flooded) {
3242 * Misaligned accesses are too much trouble to fix
3243 * up; also, they usually indicate a page is not used
3244 * as a page table.
3246 * If we're seeing too many writes to a page,
3247 * it may no longer be a page table, or we may be
3248 * forking, in which case it is better to unmap the
3249 * page.
3251 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
3252 gpa, bytes, sp->role.word);
3253 zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3254 &invalid_list);
3255 ++vcpu->kvm->stat.mmu_flooded;
3256 continue;
3258 page_offset = offset;
3259 level = sp->role.level;
3260 npte = 1;
3261 if (!sp->role.cr4_pae) {
3262 page_offset <<= 1; /* 32->64 */
3264 * A 32-bit pde maps 4MB while the shadow pdes map
3265 * only 2MB. So we need to double the offset again
3266 * and zap two pdes instead of one.
3268 if (level == PT32_ROOT_LEVEL) {
3269 page_offset &= ~7; /* kill rounding error */
3270 page_offset <<= 1;
3271 npte = 2;
3273 quadrant = page_offset >> PAGE_SHIFT;
3274 page_offset &= ~PAGE_MASK;
3275 if (quadrant != sp->role.quadrant)
3276 continue;
3278 local_flush = true;
3279 spte = &sp->spt[page_offset / sizeof(*spte)];
3280 while (npte--) {
3281 entry = *spte;
3282 mmu_pte_write_zap_pte(vcpu, sp, spte);
3283 if (gentry &&
3284 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
3285 & mask.word))
3286 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
3287 if (!remote_flush && need_remote_flush(entry, *spte))
3288 remote_flush = true;
3289 ++spte;
3292 mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
3293 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3294 trace_kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
3295 spin_unlock(&vcpu->kvm->mmu_lock);
3296 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
3297 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
3298 vcpu->arch.update_pte.pfn = bad_pfn;
3302 int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
3304 gpa_t gpa;
3305 int r;
3307 if (vcpu->arch.mmu.direct_map)
3308 return 0;
3310 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
3312 spin_lock(&vcpu->kvm->mmu_lock);
3313 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
3314 spin_unlock(&vcpu->kvm->mmu_lock);
3315 return r;
3317 EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
3319 void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
3321 LIST_HEAD(invalid_list);
3323 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES &&
3324 !list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
3325 struct kvm_mmu_page *sp;
3327 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
3328 struct kvm_mmu_page, link);
3329 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3330 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3331 ++vcpu->kvm->stat.mmu_recycled;
3335 int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
3337 int r;
3338 enum emulation_result er;
3340 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code, false);
3341 if (r < 0)
3342 goto out;
3344 if (!r) {
3345 r = 1;
3346 goto out;
3349 r = mmu_topup_memory_caches(vcpu);
3350 if (r)
3351 goto out;
3353 er = emulate_instruction(vcpu, cr2, error_code, 0);
3355 switch (er) {
3356 case EMULATE_DONE:
3357 return 1;
3358 case EMULATE_DO_MMIO:
3359 ++vcpu->stat.mmio_exits;
3360 /* fall through */
3361 case EMULATE_FAIL:
3362 return 0;
3363 default:
3364 BUG();
3366 out:
3367 return r;
3369 EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
3371 void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
3373 vcpu->arch.mmu.invlpg(vcpu, gva);
3374 kvm_mmu_flush_tlb(vcpu);
3375 ++vcpu->stat.invlpg;
3377 EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
3379 void kvm_enable_tdp(void)
3381 tdp_enabled = true;
3383 EXPORT_SYMBOL_GPL(kvm_enable_tdp);
3385 void kvm_disable_tdp(void)
3387 tdp_enabled = false;
3389 EXPORT_SYMBOL_GPL(kvm_disable_tdp);
3391 static void free_mmu_pages(struct kvm_vcpu *vcpu)
3393 free_page((unsigned long)vcpu->arch.mmu.pae_root);
3394 if (vcpu->arch.mmu.lm_root != NULL)
3395 free_page((unsigned long)vcpu->arch.mmu.lm_root);
3398 static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
3400 struct page *page;
3401 int i;
3403 ASSERT(vcpu);
3406 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
3407 * Therefore we need to allocate shadow page tables in the first
3408 * 4GB of memory, which happens to fit the DMA32 zone.
3410 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
3411 if (!page)
3412 return -ENOMEM;
3414 vcpu->arch.mmu.pae_root = page_address(page);
3415 for (i = 0; i < 4; ++i)
3416 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
3418 return 0;
3421 int kvm_mmu_create(struct kvm_vcpu *vcpu)
3423 ASSERT(vcpu);
3424 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
3426 return alloc_mmu_pages(vcpu);
3429 int kvm_mmu_setup(struct kvm_vcpu *vcpu)
3431 ASSERT(vcpu);
3432 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
3434 return init_kvm_mmu(vcpu);
3437 void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
3439 struct kvm_mmu_page *sp;
3441 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
3442 int i;
3443 u64 *pt;
3445 if (!test_bit(slot, sp->slot_bitmap))
3446 continue;
3448 pt = sp->spt;
3449 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
3450 /* avoid RMW */
3451 if (is_writable_pte(pt[i]))
3452 update_spte(&pt[i], pt[i] & ~PT_WRITABLE_MASK);
3454 kvm_flush_remote_tlbs(kvm);
3457 void kvm_mmu_zap_all(struct kvm *kvm)
3459 struct kvm_mmu_page *sp, *node;
3460 LIST_HEAD(invalid_list);
3462 spin_lock(&kvm->mmu_lock);
3463 restart:
3464 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
3465 if (kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list))
3466 goto restart;
3468 kvm_mmu_commit_zap_page(kvm, &invalid_list);
3469 spin_unlock(&kvm->mmu_lock);
3472 static int kvm_mmu_remove_some_alloc_mmu_pages(struct kvm *kvm,
3473 struct list_head *invalid_list)
3475 struct kvm_mmu_page *page;
3477 page = container_of(kvm->arch.active_mmu_pages.prev,
3478 struct kvm_mmu_page, link);
3479 return kvm_mmu_prepare_zap_page(kvm, page, invalid_list);
3482 static int mmu_shrink(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
3484 struct kvm *kvm;
3485 struct kvm *kvm_freed = NULL;
3487 if (nr_to_scan == 0)
3488 goto out;
3490 spin_lock(&kvm_lock);
3492 list_for_each_entry(kvm, &vm_list, vm_list) {
3493 int idx, freed_pages;
3494 LIST_HEAD(invalid_list);
3496 idx = srcu_read_lock(&kvm->srcu);
3497 spin_lock(&kvm->mmu_lock);
3498 if (!kvm_freed && nr_to_scan > 0 &&
3499 kvm->arch.n_used_mmu_pages > 0) {
3500 freed_pages = kvm_mmu_remove_some_alloc_mmu_pages(kvm,
3501 &invalid_list);
3502 kvm_freed = kvm;
3504 nr_to_scan--;
3506 kvm_mmu_commit_zap_page(kvm, &invalid_list);
3507 spin_unlock(&kvm->mmu_lock);
3508 srcu_read_unlock(&kvm->srcu, idx);
3510 if (kvm_freed)
3511 list_move_tail(&kvm_freed->vm_list, &vm_list);
3513 spin_unlock(&kvm_lock);
3515 out:
3516 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
3519 static struct shrinker mmu_shrinker = {
3520 .shrink = mmu_shrink,
3521 .seeks = DEFAULT_SEEKS * 10,
3524 static void mmu_destroy_caches(void)
3526 if (pte_chain_cache)
3527 kmem_cache_destroy(pte_chain_cache);
3528 if (rmap_desc_cache)
3529 kmem_cache_destroy(rmap_desc_cache);
3530 if (mmu_page_header_cache)
3531 kmem_cache_destroy(mmu_page_header_cache);
3534 void kvm_mmu_module_exit(void)
3536 mmu_destroy_caches();
3537 percpu_counter_destroy(&kvm_total_used_mmu_pages);
3538 unregister_shrinker(&mmu_shrinker);
3541 int kvm_mmu_module_init(void)
3543 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
3544 sizeof(struct kvm_pte_chain),
3545 0, 0, NULL);
3546 if (!pte_chain_cache)
3547 goto nomem;
3548 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
3549 sizeof(struct kvm_rmap_desc),
3550 0, 0, NULL);
3551 if (!rmap_desc_cache)
3552 goto nomem;
3554 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
3555 sizeof(struct kvm_mmu_page),
3556 0, 0, NULL);
3557 if (!mmu_page_header_cache)
3558 goto nomem;
3560 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0))
3561 goto nomem;
3563 register_shrinker(&mmu_shrinker);
3565 return 0;
3567 nomem:
3568 mmu_destroy_caches();
3569 return -ENOMEM;
3573 * Caculate mmu pages needed for kvm.
3575 unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
3577 int i;
3578 unsigned int nr_mmu_pages;
3579 unsigned int nr_pages = 0;
3580 struct kvm_memslots *slots;
3582 slots = kvm_memslots(kvm);
3584 for (i = 0; i < slots->nmemslots; i++)
3585 nr_pages += slots->memslots[i].npages;
3587 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
3588 nr_mmu_pages = max(nr_mmu_pages,
3589 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
3591 return nr_mmu_pages;
3594 static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3595 unsigned len)
3597 if (len > buffer->len)
3598 return NULL;
3599 return buffer->ptr;
3602 static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3603 unsigned len)
3605 void *ret;
3607 ret = pv_mmu_peek_buffer(buffer, len);
3608 if (!ret)
3609 return ret;
3610 buffer->ptr += len;
3611 buffer->len -= len;
3612 buffer->processed += len;
3613 return ret;
3616 static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
3617 gpa_t addr, gpa_t value)
3619 int bytes = 8;
3620 int r;
3622 if (!is_long_mode(vcpu) && !is_pae(vcpu))
3623 bytes = 4;
3625 r = mmu_topup_memory_caches(vcpu);
3626 if (r)
3627 return r;
3629 if (!emulator_write_phys(vcpu, addr, &value, bytes))
3630 return -EFAULT;
3632 return 1;
3635 static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
3637 (void)kvm_set_cr3(vcpu, vcpu->arch.cr3);
3638 return 1;
3641 static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
3643 spin_lock(&vcpu->kvm->mmu_lock);
3644 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
3645 spin_unlock(&vcpu->kvm->mmu_lock);
3646 return 1;
3649 static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
3650 struct kvm_pv_mmu_op_buffer *buffer)
3652 struct kvm_mmu_op_header *header;
3654 header = pv_mmu_peek_buffer(buffer, sizeof *header);
3655 if (!header)
3656 return 0;
3657 switch (header->op) {
3658 case KVM_MMU_OP_WRITE_PTE: {
3659 struct kvm_mmu_op_write_pte *wpte;
3661 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
3662 if (!wpte)
3663 return 0;
3664 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
3665 wpte->pte_val);
3667 case KVM_MMU_OP_FLUSH_TLB: {
3668 struct kvm_mmu_op_flush_tlb *ftlb;
3670 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
3671 if (!ftlb)
3672 return 0;
3673 return kvm_pv_mmu_flush_tlb(vcpu);
3675 case KVM_MMU_OP_RELEASE_PT: {
3676 struct kvm_mmu_op_release_pt *rpt;
3678 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
3679 if (!rpt)
3680 return 0;
3681 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
3683 default: return 0;
3687 int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
3688 gpa_t addr, unsigned long *ret)
3690 int r;
3691 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
3693 buffer->ptr = buffer->buf;
3694 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
3695 buffer->processed = 0;
3697 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
3698 if (r)
3699 goto out;
3701 while (buffer->len) {
3702 r = kvm_pv_mmu_op_one(vcpu, buffer);
3703 if (r < 0)
3704 goto out;
3705 if (r == 0)
3706 break;
3709 r = 1;
3710 out:
3711 *ret = buffer->processed;
3712 return r;
3715 int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
3717 struct kvm_shadow_walk_iterator iterator;
3718 int nr_sptes = 0;
3720 spin_lock(&vcpu->kvm->mmu_lock);
3721 for_each_shadow_entry(vcpu, addr, iterator) {
3722 sptes[iterator.level-1] = *iterator.sptep;
3723 nr_sptes++;
3724 if (!is_shadow_present_pte(*iterator.sptep))
3725 break;
3727 spin_unlock(&vcpu->kvm->mmu_lock);
3729 return nr_sptes;
3731 EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
3733 #ifdef CONFIG_KVM_MMU_AUDIT
3734 #include "mmu_audit.c"
3735 #else
3736 static void mmu_audit_disable(void) { }
3737 #endif
3739 void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
3741 ASSERT(vcpu);
3743 destroy_kvm_mmu(vcpu);
3744 free_mmu_pages(vcpu);
3745 mmu_free_memory_caches(vcpu);
3746 mmu_audit_disable();