]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kvm/mmu.c
KVM: MMU audit: update count_writable_mappings / count_rmaps
[net-next-2.6.git] / arch / x86 / kvm / mmu.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * MMU support
8 *
9 * Copyright (C) 2006 Qumranet, Inc.
10 *
11 * Authors:
12 * Yaniv Kamay <yaniv@qumranet.com>
13 * Avi Kivity <avi@qumranet.com>
14 *
15 * This work is licensed under the terms of the GNU GPL, version 2. See
16 * the COPYING file in the top-level directory.
17 *
18 */
e495606d 19
1d737c8a 20#include "mmu.h"
6de4f3ad 21#include "kvm_cache_regs.h"
e495606d 22
edf88417 23#include <linux/kvm_host.h>
6aa8b732
AK
24#include <linux/types.h>
25#include <linux/string.h>
6aa8b732
AK
26#include <linux/mm.h>
27#include <linux/highmem.h>
28#include <linux/module.h>
448353ca 29#include <linux/swap.h>
05da4558 30#include <linux/hugetlb.h>
2f333bcb 31#include <linux/compiler.h>
6aa8b732 32
e495606d
AK
33#include <asm/page.h>
34#include <asm/cmpxchg.h>
4e542370 35#include <asm/io.h>
13673a90 36#include <asm/vmx.h>
6aa8b732 37
18552672
JR
38/*
39 * When setting this variable to true it enables Two-Dimensional-Paging
40 * where the hardware walks 2 page tables:
41 * 1. the guest-virtual to guest-physical
42 * 2. while doing 1. it walks guest-physical to host-physical
43 * If the hardware supports that we don't need to do shadow paging.
44 */
2f333bcb 45bool tdp_enabled = false;
18552672 46
37a7d8b0
AK
47#undef MMU_DEBUG
48
49#undef AUDIT
50
51#ifdef AUDIT
52static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg);
53#else
54static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg) {}
55#endif
56
57#ifdef MMU_DEBUG
58
59#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
60#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
61
62#else
63
64#define pgprintk(x...) do { } while (0)
65#define rmap_printk(x...) do { } while (0)
66
67#endif
68
69#if defined(MMU_DEBUG) || defined(AUDIT)
6ada8cca
AK
70static int dbg = 0;
71module_param(dbg, bool, 0644);
37a7d8b0 72#endif
6aa8b732 73
582801a9
MT
74static int oos_shadow = 1;
75module_param(oos_shadow, bool, 0644);
76
d6c69ee9
YD
77#ifndef MMU_DEBUG
78#define ASSERT(x) do { } while (0)
79#else
6aa8b732
AK
80#define ASSERT(x) \
81 if (!(x)) { \
82 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
83 __FILE__, __LINE__, #x); \
84 }
d6c69ee9 85#endif
6aa8b732 86
6aa8b732
AK
87#define PT_FIRST_AVAIL_BITS_SHIFT 9
88#define PT64_SECOND_AVAIL_BITS_SHIFT 52
89
6aa8b732
AK
90#define VALID_PAGE(x) ((x) != INVALID_PAGE)
91
92#define PT64_LEVEL_BITS 9
93
94#define PT64_LEVEL_SHIFT(level) \
d77c26fc 95 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
6aa8b732
AK
96
97#define PT64_LEVEL_MASK(level) \
98 (((1ULL << PT64_LEVEL_BITS) - 1) << PT64_LEVEL_SHIFT(level))
99
100#define PT64_INDEX(address, level)\
101 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
102
103
104#define PT32_LEVEL_BITS 10
105
106#define PT32_LEVEL_SHIFT(level) \
d77c26fc 107 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
6aa8b732
AK
108
109#define PT32_LEVEL_MASK(level) \
110 (((1ULL << PT32_LEVEL_BITS) - 1) << PT32_LEVEL_SHIFT(level))
111
112#define PT32_INDEX(address, level)\
113 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
114
115
27aba766 116#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
6aa8b732
AK
117#define PT64_DIR_BASE_ADDR_MASK \
118 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
119
120#define PT32_BASE_ADDR_MASK PAGE_MASK
121#define PT32_DIR_BASE_ADDR_MASK \
122 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
123
79539cec
AK
124#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | PT_USER_MASK \
125 | PT64_NX_MASK)
6aa8b732
AK
126
127#define PFERR_PRESENT_MASK (1U << 0)
128#define PFERR_WRITE_MASK (1U << 1)
129#define PFERR_USER_MASK (1U << 2)
82725b20 130#define PFERR_RSVD_MASK (1U << 3)
73b1087e 131#define PFERR_FETCH_MASK (1U << 4)
6aa8b732 132
6aa8b732
AK
133#define PT_DIRECTORY_LEVEL 2
134#define PT_PAGE_TABLE_LEVEL 1
135
cd4a4e53
AK
136#define RMAP_EXT 4
137
fe135d2c
AK
138#define ACC_EXEC_MASK 1
139#define ACC_WRITE_MASK PT_WRITABLE_MASK
140#define ACC_USER_MASK PT_USER_MASK
141#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
142
135f8c2b
AK
143#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
144
cd4a4e53 145struct kvm_rmap_desc {
d555c333 146 u64 *sptes[RMAP_EXT];
cd4a4e53
AK
147 struct kvm_rmap_desc *more;
148};
149
2d11123a
AK
150struct kvm_shadow_walk_iterator {
151 u64 addr;
152 hpa_t shadow_addr;
153 int level;
154 u64 *sptep;
155 unsigned index;
156};
157
158#define for_each_shadow_entry(_vcpu, _addr, _walker) \
159 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
160 shadow_walk_okay(&(_walker)); \
161 shadow_walk_next(&(_walker)))
162
163
4731d4c7
MT
164struct kvm_unsync_walk {
165 int (*entry) (struct kvm_mmu_page *sp, struct kvm_unsync_walk *walk);
166};
167
ad8cfbe3
MT
168typedef int (*mmu_parent_walk_fn) (struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp);
169
b5a33a75
AK
170static struct kmem_cache *pte_chain_cache;
171static struct kmem_cache *rmap_desc_cache;
d3d25b04 172static struct kmem_cache *mmu_page_header_cache;
b5a33a75 173
c7addb90
AK
174static u64 __read_mostly shadow_trap_nonpresent_pte;
175static u64 __read_mostly shadow_notrap_nonpresent_pte;
7b52345e
SY
176static u64 __read_mostly shadow_base_present_pte;
177static u64 __read_mostly shadow_nx_mask;
178static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
179static u64 __read_mostly shadow_user_mask;
180static u64 __read_mostly shadow_accessed_mask;
181static u64 __read_mostly shadow_dirty_mask;
c7addb90 182
82725b20
DE
183static inline u64 rsvd_bits(int s, int e)
184{
185 return ((1ULL << (e - s + 1)) - 1) << s;
186}
187
c7addb90
AK
188void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
189{
190 shadow_trap_nonpresent_pte = trap_pte;
191 shadow_notrap_nonpresent_pte = notrap_pte;
192}
193EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
194
7b52345e
SY
195void kvm_mmu_set_base_ptes(u64 base_pte)
196{
197 shadow_base_present_pte = base_pte;
198}
199EXPORT_SYMBOL_GPL(kvm_mmu_set_base_ptes);
200
201void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
4b12f0de 202 u64 dirty_mask, u64 nx_mask, u64 x_mask)
7b52345e
SY
203{
204 shadow_user_mask = user_mask;
205 shadow_accessed_mask = accessed_mask;
206 shadow_dirty_mask = dirty_mask;
207 shadow_nx_mask = nx_mask;
208 shadow_x_mask = x_mask;
209}
210EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
211
6aa8b732
AK
212static int is_write_protection(struct kvm_vcpu *vcpu)
213{
ad312c7c 214 return vcpu->arch.cr0 & X86_CR0_WP;
6aa8b732
AK
215}
216
217static int is_cpuid_PSE36(void)
218{
219 return 1;
220}
221
73b1087e
AK
222static int is_nx(struct kvm_vcpu *vcpu)
223{
ad312c7c 224 return vcpu->arch.shadow_efer & EFER_NX;
73b1087e
AK
225}
226
c7addb90
AK
227static int is_shadow_present_pte(u64 pte)
228{
c7addb90
AK
229 return pte != shadow_trap_nonpresent_pte
230 && pte != shadow_notrap_nonpresent_pte;
231}
232
05da4558
MT
233static int is_large_pte(u64 pte)
234{
235 return pte & PT_PAGE_SIZE_MASK;
236}
237
6aa8b732
AK
238static int is_writeble_pte(unsigned long pte)
239{
240 return pte & PT_WRITABLE_MASK;
241}
242
43a3795a 243static int is_dirty_gpte(unsigned long pte)
e3c5e7ec 244{
439e218a 245 return pte & PT_DIRTY_MASK;
e3c5e7ec
AK
246}
247
43a3795a 248static int is_rmap_spte(u64 pte)
cd4a4e53 249{
4b1a80fa 250 return is_shadow_present_pte(pte);
cd4a4e53
AK
251}
252
776e6633
MT
253static int is_last_spte(u64 pte, int level)
254{
255 if (level == PT_PAGE_TABLE_LEVEL)
256 return 1;
257 if (level == PT_DIRECTORY_LEVEL && is_large_pte(pte))
258 return 1;
259 return 0;
260}
261
35149e21 262static pfn_t spte_to_pfn(u64 pte)
0b49ea86 263{
35149e21 264 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
0b49ea86
AK
265}
266
da928521
AK
267static gfn_t pse36_gfn_delta(u32 gpte)
268{
269 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
270
271 return (gpte & PT32_DIR_PSE36_MASK) << shift;
272}
273
d555c333 274static void __set_spte(u64 *sptep, u64 spte)
e663ee64
AK
275{
276#ifdef CONFIG_X86_64
277 set_64bit((unsigned long *)sptep, spte);
278#else
279 set_64bit((unsigned long long *)sptep, spte);
280#endif
281}
282
e2dec939 283static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
2e3e5882 284 struct kmem_cache *base_cache, int min)
714b93da
AK
285{
286 void *obj;
287
288 if (cache->nobjs >= min)
e2dec939 289 return 0;
714b93da 290 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
2e3e5882 291 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
714b93da 292 if (!obj)
e2dec939 293 return -ENOMEM;
714b93da
AK
294 cache->objects[cache->nobjs++] = obj;
295 }
e2dec939 296 return 0;
714b93da
AK
297}
298
299static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
300{
301 while (mc->nobjs)
302 kfree(mc->objects[--mc->nobjs]);
303}
304
c1158e63 305static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
2e3e5882 306 int min)
c1158e63
AK
307{
308 struct page *page;
309
310 if (cache->nobjs >= min)
311 return 0;
312 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
2e3e5882 313 page = alloc_page(GFP_KERNEL);
c1158e63
AK
314 if (!page)
315 return -ENOMEM;
316 set_page_private(page, 0);
317 cache->objects[cache->nobjs++] = page_address(page);
318 }
319 return 0;
320}
321
322static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
323{
324 while (mc->nobjs)
c4d198d5 325 free_page((unsigned long)mc->objects[--mc->nobjs]);
c1158e63
AK
326}
327
2e3e5882 328static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
714b93da 329{
e2dec939
AK
330 int r;
331
ad312c7c 332 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_chain_cache,
2e3e5882 333 pte_chain_cache, 4);
e2dec939
AK
334 if (r)
335 goto out;
ad312c7c 336 r = mmu_topup_memory_cache(&vcpu->arch.mmu_rmap_desc_cache,
c41ef344 337 rmap_desc_cache, 4);
d3d25b04
AK
338 if (r)
339 goto out;
ad312c7c 340 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
d3d25b04
AK
341 if (r)
342 goto out;
ad312c7c 343 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
2e3e5882 344 mmu_page_header_cache, 4);
e2dec939
AK
345out:
346 return r;
714b93da
AK
347}
348
349static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
350{
ad312c7c
ZX
351 mmu_free_memory_cache(&vcpu->arch.mmu_pte_chain_cache);
352 mmu_free_memory_cache(&vcpu->arch.mmu_rmap_desc_cache);
353 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
354 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache);
714b93da
AK
355}
356
357static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
358 size_t size)
359{
360 void *p;
361
362 BUG_ON(!mc->nobjs);
363 p = mc->objects[--mc->nobjs];
714b93da
AK
364 return p;
365}
366
714b93da
AK
367static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
368{
ad312c7c 369 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_chain_cache,
714b93da
AK
370 sizeof(struct kvm_pte_chain));
371}
372
90cb0529 373static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
714b93da 374{
90cb0529 375 kfree(pc);
714b93da
AK
376}
377
378static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
379{
ad312c7c 380 return mmu_memory_cache_alloc(&vcpu->arch.mmu_rmap_desc_cache,
714b93da
AK
381 sizeof(struct kvm_rmap_desc));
382}
383
90cb0529 384static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
714b93da 385{
90cb0529 386 kfree(rd);
714b93da
AK
387}
388
05da4558
MT
389/*
390 * Return the pointer to the largepage write count for a given
391 * gfn, handling slots that are not large page aligned.
392 */
393static int *slot_largepage_idx(gfn_t gfn, struct kvm_memory_slot *slot)
394{
395 unsigned long idx;
396
397 idx = (gfn / KVM_PAGES_PER_HPAGE) -
398 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
399 return &slot->lpage_info[idx].write_count;
400}
401
402static void account_shadowed(struct kvm *kvm, gfn_t gfn)
403{
404 int *write_count;
405
2843099f
IE
406 gfn = unalias_gfn(kvm, gfn);
407 write_count = slot_largepage_idx(gfn,
408 gfn_to_memslot_unaliased(kvm, gfn));
05da4558 409 *write_count += 1;
05da4558
MT
410}
411
412static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
413{
414 int *write_count;
415
2843099f
IE
416 gfn = unalias_gfn(kvm, gfn);
417 write_count = slot_largepage_idx(gfn,
418 gfn_to_memslot_unaliased(kvm, gfn));
05da4558
MT
419 *write_count -= 1;
420 WARN_ON(*write_count < 0);
421}
422
423static int has_wrprotected_page(struct kvm *kvm, gfn_t gfn)
424{
2843099f 425 struct kvm_memory_slot *slot;
05da4558
MT
426 int *largepage_idx;
427
2843099f
IE
428 gfn = unalias_gfn(kvm, gfn);
429 slot = gfn_to_memslot_unaliased(kvm, gfn);
05da4558
MT
430 if (slot) {
431 largepage_idx = slot_largepage_idx(gfn, slot);
432 return *largepage_idx;
433 }
434
435 return 1;
436}
437
438static int host_largepage_backed(struct kvm *kvm, gfn_t gfn)
439{
440 struct vm_area_struct *vma;
441 unsigned long addr;
4c2155ce 442 int ret = 0;
05da4558
MT
443
444 addr = gfn_to_hva(kvm, gfn);
445 if (kvm_is_error_hva(addr))
4c2155ce 446 return ret;
05da4558 447
4c2155ce 448 down_read(&current->mm->mmap_sem);
05da4558
MT
449 vma = find_vma(current->mm, addr);
450 if (vma && is_vm_hugetlb_page(vma))
4c2155ce
MT
451 ret = 1;
452 up_read(&current->mm->mmap_sem);
05da4558 453
4c2155ce 454 return ret;
05da4558
MT
455}
456
457static int is_largepage_backed(struct kvm_vcpu *vcpu, gfn_t large_gfn)
458{
459 struct kvm_memory_slot *slot;
460
461 if (has_wrprotected_page(vcpu->kvm, large_gfn))
462 return 0;
463
464 if (!host_largepage_backed(vcpu->kvm, large_gfn))
465 return 0;
466
467 slot = gfn_to_memslot(vcpu->kvm, large_gfn);
468 if (slot && slot->dirty_bitmap)
469 return 0;
470
471 return 1;
472}
473
290fc38d
IE
474/*
475 * Take gfn and return the reverse mapping to it.
476 * Note: gfn must be unaliased before this function get called
477 */
478
05da4558 479static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int lpage)
290fc38d
IE
480{
481 struct kvm_memory_slot *slot;
05da4558 482 unsigned long idx;
290fc38d
IE
483
484 slot = gfn_to_memslot(kvm, gfn);
05da4558
MT
485 if (!lpage)
486 return &slot->rmap[gfn - slot->base_gfn];
487
488 idx = (gfn / KVM_PAGES_PER_HPAGE) -
489 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
490
491 return &slot->lpage_info[idx].rmap_pde;
290fc38d
IE
492}
493
cd4a4e53
AK
494/*
495 * Reverse mapping data structures:
496 *
290fc38d
IE
497 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
498 * that points to page_address(page).
cd4a4e53 499 *
290fc38d
IE
500 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
501 * containing more mappings.
53a27b39
MT
502 *
503 * Returns the number of rmap entries before the spte was added or zero if
504 * the spte was not added.
505 *
cd4a4e53 506 */
53a27b39 507static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn, int lpage)
cd4a4e53 508{
4db35314 509 struct kvm_mmu_page *sp;
cd4a4e53 510 struct kvm_rmap_desc *desc;
290fc38d 511 unsigned long *rmapp;
53a27b39 512 int i, count = 0;
cd4a4e53 513
43a3795a 514 if (!is_rmap_spte(*spte))
53a27b39 515 return count;
290fc38d 516 gfn = unalias_gfn(vcpu->kvm, gfn);
4db35314
AK
517 sp = page_header(__pa(spte));
518 sp->gfns[spte - sp->spt] = gfn;
05da4558 519 rmapp = gfn_to_rmap(vcpu->kvm, gfn, lpage);
290fc38d 520 if (!*rmapp) {
cd4a4e53 521 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
290fc38d
IE
522 *rmapp = (unsigned long)spte;
523 } else if (!(*rmapp & 1)) {
cd4a4e53 524 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
714b93da 525 desc = mmu_alloc_rmap_desc(vcpu);
d555c333
AK
526 desc->sptes[0] = (u64 *)*rmapp;
527 desc->sptes[1] = spte;
290fc38d 528 *rmapp = (unsigned long)desc | 1;
cd4a4e53
AK
529 } else {
530 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
290fc38d 531 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
d555c333 532 while (desc->sptes[RMAP_EXT-1] && desc->more) {
cd4a4e53 533 desc = desc->more;
53a27b39
MT
534 count += RMAP_EXT;
535 }
d555c333 536 if (desc->sptes[RMAP_EXT-1]) {
714b93da 537 desc->more = mmu_alloc_rmap_desc(vcpu);
cd4a4e53
AK
538 desc = desc->more;
539 }
d555c333 540 for (i = 0; desc->sptes[i]; ++i)
cd4a4e53 541 ;
d555c333 542 desc->sptes[i] = spte;
cd4a4e53 543 }
53a27b39 544 return count;
cd4a4e53
AK
545}
546
290fc38d 547static void rmap_desc_remove_entry(unsigned long *rmapp,
cd4a4e53
AK
548 struct kvm_rmap_desc *desc,
549 int i,
550 struct kvm_rmap_desc *prev_desc)
551{
552 int j;
553
d555c333 554 for (j = RMAP_EXT - 1; !desc->sptes[j] && j > i; --j)
cd4a4e53 555 ;
d555c333
AK
556 desc->sptes[i] = desc->sptes[j];
557 desc->sptes[j] = NULL;
cd4a4e53
AK
558 if (j != 0)
559 return;
560 if (!prev_desc && !desc->more)
d555c333 561 *rmapp = (unsigned long)desc->sptes[0];
cd4a4e53
AK
562 else
563 if (prev_desc)
564 prev_desc->more = desc->more;
565 else
290fc38d 566 *rmapp = (unsigned long)desc->more | 1;
90cb0529 567 mmu_free_rmap_desc(desc);
cd4a4e53
AK
568}
569
290fc38d 570static void rmap_remove(struct kvm *kvm, u64 *spte)
cd4a4e53 571{
cd4a4e53
AK
572 struct kvm_rmap_desc *desc;
573 struct kvm_rmap_desc *prev_desc;
4db35314 574 struct kvm_mmu_page *sp;
35149e21 575 pfn_t pfn;
290fc38d 576 unsigned long *rmapp;
cd4a4e53
AK
577 int i;
578
43a3795a 579 if (!is_rmap_spte(*spte))
cd4a4e53 580 return;
4db35314 581 sp = page_header(__pa(spte));
35149e21 582 pfn = spte_to_pfn(*spte);
7b52345e 583 if (*spte & shadow_accessed_mask)
35149e21 584 kvm_set_pfn_accessed(pfn);
b4231d61 585 if (is_writeble_pte(*spte))
35149e21 586 kvm_release_pfn_dirty(pfn);
b4231d61 587 else
35149e21 588 kvm_release_pfn_clean(pfn);
05da4558 589 rmapp = gfn_to_rmap(kvm, sp->gfns[spte - sp->spt], is_large_pte(*spte));
290fc38d 590 if (!*rmapp) {
cd4a4e53
AK
591 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
592 BUG();
290fc38d 593 } else if (!(*rmapp & 1)) {
cd4a4e53 594 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
290fc38d 595 if ((u64 *)*rmapp != spte) {
cd4a4e53
AK
596 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
597 spte, *spte);
598 BUG();
599 }
290fc38d 600 *rmapp = 0;
cd4a4e53
AK
601 } else {
602 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
290fc38d 603 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
cd4a4e53
AK
604 prev_desc = NULL;
605 while (desc) {
d555c333
AK
606 for (i = 0; i < RMAP_EXT && desc->sptes[i]; ++i)
607 if (desc->sptes[i] == spte) {
290fc38d 608 rmap_desc_remove_entry(rmapp,
714b93da 609 desc, i,
cd4a4e53
AK
610 prev_desc);
611 return;
612 }
613 prev_desc = desc;
614 desc = desc->more;
615 }
616 BUG();
617 }
618}
619
98348e95 620static u64 *rmap_next(struct kvm *kvm, unsigned long *rmapp, u64 *spte)
374cbac0 621{
374cbac0 622 struct kvm_rmap_desc *desc;
98348e95
IE
623 struct kvm_rmap_desc *prev_desc;
624 u64 *prev_spte;
625 int i;
626
627 if (!*rmapp)
628 return NULL;
629 else if (!(*rmapp & 1)) {
630 if (!spte)
631 return (u64 *)*rmapp;
632 return NULL;
633 }
634 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
635 prev_desc = NULL;
636 prev_spte = NULL;
637 while (desc) {
d555c333 638 for (i = 0; i < RMAP_EXT && desc->sptes[i]; ++i) {
98348e95 639 if (prev_spte == spte)
d555c333
AK
640 return desc->sptes[i];
641 prev_spte = desc->sptes[i];
98348e95
IE
642 }
643 desc = desc->more;
644 }
645 return NULL;
646}
647
b1a36821 648static int rmap_write_protect(struct kvm *kvm, u64 gfn)
98348e95 649{
290fc38d 650 unsigned long *rmapp;
374cbac0 651 u64 *spte;
caa5b8a5 652 int write_protected = 0;
374cbac0 653
4a4c9924 654 gfn = unalias_gfn(kvm, gfn);
05da4558 655 rmapp = gfn_to_rmap(kvm, gfn, 0);
374cbac0 656
98348e95
IE
657 spte = rmap_next(kvm, rmapp, NULL);
658 while (spte) {
374cbac0 659 BUG_ON(!spte);
374cbac0 660 BUG_ON(!(*spte & PT_PRESENT_MASK));
374cbac0 661 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
caa5b8a5 662 if (is_writeble_pte(*spte)) {
d555c333 663 __set_spte(spte, *spte & ~PT_WRITABLE_MASK);
caa5b8a5
ED
664 write_protected = 1;
665 }
9647c14c 666 spte = rmap_next(kvm, rmapp, spte);
374cbac0 667 }
855149aa 668 if (write_protected) {
35149e21 669 pfn_t pfn;
855149aa
IE
670
671 spte = rmap_next(kvm, rmapp, NULL);
35149e21
AL
672 pfn = spte_to_pfn(*spte);
673 kvm_set_pfn_dirty(pfn);
855149aa
IE
674 }
675
05da4558
MT
676 /* check for huge page mappings */
677 rmapp = gfn_to_rmap(kvm, gfn, 1);
678 spte = rmap_next(kvm, rmapp, NULL);
679 while (spte) {
680 BUG_ON(!spte);
681 BUG_ON(!(*spte & PT_PRESENT_MASK));
682 BUG_ON((*spte & (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK)) != (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK));
683 pgprintk("rmap_write_protect(large): spte %p %llx %lld\n", spte, *spte, gfn);
684 if (is_writeble_pte(*spte)) {
685 rmap_remove(kvm, spte);
686 --kvm->stat.lpages;
d555c333 687 __set_spte(spte, shadow_trap_nonpresent_pte);
6597ca09 688 spte = NULL;
05da4558
MT
689 write_protected = 1;
690 }
691 spte = rmap_next(kvm, rmapp, spte);
692 }
693
b1a36821 694 return write_protected;
374cbac0
AK
695}
696
e930bffe
AA
697static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp)
698{
699 u64 *spte;
700 int need_tlb_flush = 0;
701
702 while ((spte = rmap_next(kvm, rmapp, NULL))) {
703 BUG_ON(!(*spte & PT_PRESENT_MASK));
704 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", spte, *spte);
705 rmap_remove(kvm, spte);
d555c333 706 __set_spte(spte, shadow_trap_nonpresent_pte);
e930bffe
AA
707 need_tlb_flush = 1;
708 }
709 return need_tlb_flush;
710}
711
712static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
713 int (*handler)(struct kvm *kvm, unsigned long *rmapp))
714{
715 int i;
716 int retval = 0;
717
718 /*
719 * If mmap_sem isn't taken, we can look the memslots with only
720 * the mmu_lock by skipping over the slots with userspace_addr == 0.
721 */
722 for (i = 0; i < kvm->nmemslots; i++) {
723 struct kvm_memory_slot *memslot = &kvm->memslots[i];
724 unsigned long start = memslot->userspace_addr;
725 unsigned long end;
726
727 /* mmu_lock protects userspace_addr */
728 if (!start)
729 continue;
730
731 end = start + (memslot->npages << PAGE_SHIFT);
732 if (hva >= start && hva < end) {
733 gfn_t gfn_offset = (hva - start) >> PAGE_SHIFT;
734 retval |= handler(kvm, &memslot->rmap[gfn_offset]);
735 retval |= handler(kvm,
736 &memslot->lpage_info[
737 gfn_offset /
738 KVM_PAGES_PER_HPAGE].rmap_pde);
739 }
740 }
741
742 return retval;
743}
744
745int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
746{
747 return kvm_handle_hva(kvm, hva, kvm_unmap_rmapp);
748}
749
750static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp)
751{
752 u64 *spte;
753 int young = 0;
754
534e38b4
SY
755 /* always return old for EPT */
756 if (!shadow_accessed_mask)
757 return 0;
758
e930bffe
AA
759 spte = rmap_next(kvm, rmapp, NULL);
760 while (spte) {
761 int _young;
762 u64 _spte = *spte;
763 BUG_ON(!(_spte & PT_PRESENT_MASK));
764 _young = _spte & PT_ACCESSED_MASK;
765 if (_young) {
766 young = 1;
767 clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
768 }
769 spte = rmap_next(kvm, rmapp, spte);
770 }
771 return young;
772}
773
53a27b39
MT
774#define RMAP_RECYCLE_THRESHOLD 1000
775
776static void rmap_recycle(struct kvm_vcpu *vcpu, gfn_t gfn, int lpage)
777{
778 unsigned long *rmapp;
779
780 gfn = unalias_gfn(vcpu->kvm, gfn);
781 rmapp = gfn_to_rmap(vcpu->kvm, gfn, lpage);
782
783 kvm_unmap_rmapp(vcpu->kvm, rmapp);
784 kvm_flush_remote_tlbs(vcpu->kvm);
785}
786
e930bffe
AA
787int kvm_age_hva(struct kvm *kvm, unsigned long hva)
788{
789 return kvm_handle_hva(kvm, hva, kvm_age_rmapp);
790}
791
d6c69ee9 792#ifdef MMU_DEBUG
47ad8e68 793static int is_empty_shadow_page(u64 *spt)
6aa8b732 794{
139bdb2d
AK
795 u64 *pos;
796 u64 *end;
797
47ad8e68 798 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
3c915510 799 if (is_shadow_present_pte(*pos)) {
b8688d51 800 printk(KERN_ERR "%s: %p %llx\n", __func__,
139bdb2d 801 pos, *pos);
6aa8b732 802 return 0;
139bdb2d 803 }
6aa8b732
AK
804 return 1;
805}
d6c69ee9 806#endif
6aa8b732 807
4db35314 808static void kvm_mmu_free_page(struct kvm *kvm, struct kvm_mmu_page *sp)
260746c0 809{
4db35314
AK
810 ASSERT(is_empty_shadow_page(sp->spt));
811 list_del(&sp->link);
812 __free_page(virt_to_page(sp->spt));
813 __free_page(virt_to_page(sp->gfns));
814 kfree(sp);
f05e70ac 815 ++kvm->arch.n_free_mmu_pages;
260746c0
AK
816}
817
cea0f0e7
AK
818static unsigned kvm_page_table_hashfn(gfn_t gfn)
819{
1ae0a13d 820 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
cea0f0e7
AK
821}
822
25c0de2c
AK
823static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
824 u64 *parent_pte)
6aa8b732 825{
4db35314 826 struct kvm_mmu_page *sp;
6aa8b732 827
ad312c7c
ZX
828 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache, sizeof *sp);
829 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
830 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
4db35314 831 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
f05e70ac 832 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
6cffe8ca 833 INIT_LIST_HEAD(&sp->oos_link);
291f26bc 834 bitmap_zero(sp->slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
4db35314
AK
835 sp->multimapped = 0;
836 sp->parent_pte = parent_pte;
f05e70ac 837 --vcpu->kvm->arch.n_free_mmu_pages;
4db35314 838 return sp;
6aa8b732
AK
839}
840
714b93da 841static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
4db35314 842 struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7
AK
843{
844 struct kvm_pte_chain *pte_chain;
845 struct hlist_node *node;
846 int i;
847
848 if (!parent_pte)
849 return;
4db35314
AK
850 if (!sp->multimapped) {
851 u64 *old = sp->parent_pte;
cea0f0e7
AK
852
853 if (!old) {
4db35314 854 sp->parent_pte = parent_pte;
cea0f0e7
AK
855 return;
856 }
4db35314 857 sp->multimapped = 1;
714b93da 858 pte_chain = mmu_alloc_pte_chain(vcpu);
4db35314
AK
859 INIT_HLIST_HEAD(&sp->parent_ptes);
860 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
cea0f0e7
AK
861 pte_chain->parent_ptes[0] = old;
862 }
4db35314 863 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link) {
cea0f0e7
AK
864 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
865 continue;
866 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
867 if (!pte_chain->parent_ptes[i]) {
868 pte_chain->parent_ptes[i] = parent_pte;
869 return;
870 }
871 }
714b93da 872 pte_chain = mmu_alloc_pte_chain(vcpu);
cea0f0e7 873 BUG_ON(!pte_chain);
4db35314 874 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
cea0f0e7
AK
875 pte_chain->parent_ptes[0] = parent_pte;
876}
877
4db35314 878static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
cea0f0e7
AK
879 u64 *parent_pte)
880{
881 struct kvm_pte_chain *pte_chain;
882 struct hlist_node *node;
883 int i;
884
4db35314
AK
885 if (!sp->multimapped) {
886 BUG_ON(sp->parent_pte != parent_pte);
887 sp->parent_pte = NULL;
cea0f0e7
AK
888 return;
889 }
4db35314 890 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
cea0f0e7
AK
891 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
892 if (!pte_chain->parent_ptes[i])
893 break;
894 if (pte_chain->parent_ptes[i] != parent_pte)
895 continue;
697fe2e2
AK
896 while (i + 1 < NR_PTE_CHAIN_ENTRIES
897 && pte_chain->parent_ptes[i + 1]) {
cea0f0e7
AK
898 pte_chain->parent_ptes[i]
899 = pte_chain->parent_ptes[i + 1];
900 ++i;
901 }
902 pte_chain->parent_ptes[i] = NULL;
697fe2e2
AK
903 if (i == 0) {
904 hlist_del(&pte_chain->link);
90cb0529 905 mmu_free_pte_chain(pte_chain);
4db35314
AK
906 if (hlist_empty(&sp->parent_ptes)) {
907 sp->multimapped = 0;
908 sp->parent_pte = NULL;
697fe2e2
AK
909 }
910 }
cea0f0e7
AK
911 return;
912 }
913 BUG();
914}
915
ad8cfbe3
MT
916
917static void mmu_parent_walk(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
918 mmu_parent_walk_fn fn)
919{
920 struct kvm_pte_chain *pte_chain;
921 struct hlist_node *node;
922 struct kvm_mmu_page *parent_sp;
923 int i;
924
925 if (!sp->multimapped && sp->parent_pte) {
926 parent_sp = page_header(__pa(sp->parent_pte));
927 fn(vcpu, parent_sp);
928 mmu_parent_walk(vcpu, parent_sp, fn);
929 return;
930 }
931 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
932 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
933 if (!pte_chain->parent_ptes[i])
934 break;
935 parent_sp = page_header(__pa(pte_chain->parent_ptes[i]));
936 fn(vcpu, parent_sp);
937 mmu_parent_walk(vcpu, parent_sp, fn);
938 }
939}
940
0074ff63
MT
941static void kvm_mmu_update_unsync_bitmap(u64 *spte)
942{
943 unsigned int index;
944 struct kvm_mmu_page *sp = page_header(__pa(spte));
945
946 index = spte - sp->spt;
60c8aec6
MT
947 if (!__test_and_set_bit(index, sp->unsync_child_bitmap))
948 sp->unsync_children++;
949 WARN_ON(!sp->unsync_children);
0074ff63
MT
950}
951
952static void kvm_mmu_update_parents_unsync(struct kvm_mmu_page *sp)
953{
954 struct kvm_pte_chain *pte_chain;
955 struct hlist_node *node;
956 int i;
957
958 if (!sp->parent_pte)
959 return;
960
961 if (!sp->multimapped) {
962 kvm_mmu_update_unsync_bitmap(sp->parent_pte);
963 return;
964 }
965
966 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
967 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
968 if (!pte_chain->parent_ptes[i])
969 break;
970 kvm_mmu_update_unsync_bitmap(pte_chain->parent_ptes[i]);
971 }
972}
973
974static int unsync_walk_fn(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
975{
0074ff63
MT
976 kvm_mmu_update_parents_unsync(sp);
977 return 1;
978}
979
980static void kvm_mmu_mark_parents_unsync(struct kvm_vcpu *vcpu,
981 struct kvm_mmu_page *sp)
982{
983 mmu_parent_walk(vcpu, sp, unsync_walk_fn);
984 kvm_mmu_update_parents_unsync(sp);
985}
986
d761a501
AK
987static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
988 struct kvm_mmu_page *sp)
989{
990 int i;
991
992 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
993 sp->spt[i] = shadow_trap_nonpresent_pte;
994}
995
e8bc217a
MT
996static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
997 struct kvm_mmu_page *sp)
998{
999 return 1;
1000}
1001
a7052897
MT
1002static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1003{
1004}
1005
60c8aec6
MT
1006#define KVM_PAGE_ARRAY_NR 16
1007
1008struct kvm_mmu_pages {
1009 struct mmu_page_and_offset {
1010 struct kvm_mmu_page *sp;
1011 unsigned int idx;
1012 } page[KVM_PAGE_ARRAY_NR];
1013 unsigned int nr;
1014};
1015
0074ff63
MT
1016#define for_each_unsync_children(bitmap, idx) \
1017 for (idx = find_first_bit(bitmap, 512); \
1018 idx < 512; \
1019 idx = find_next_bit(bitmap, 512, idx+1))
1020
cded19f3
HE
1021static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1022 int idx)
4731d4c7 1023{
60c8aec6 1024 int i;
4731d4c7 1025
60c8aec6
MT
1026 if (sp->unsync)
1027 for (i=0; i < pvec->nr; i++)
1028 if (pvec->page[i].sp == sp)
1029 return 0;
1030
1031 pvec->page[pvec->nr].sp = sp;
1032 pvec->page[pvec->nr].idx = idx;
1033 pvec->nr++;
1034 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1035}
1036
1037static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1038 struct kvm_mmu_pages *pvec)
1039{
1040 int i, ret, nr_unsync_leaf = 0;
4731d4c7 1041
0074ff63 1042 for_each_unsync_children(sp->unsync_child_bitmap, i) {
4731d4c7
MT
1043 u64 ent = sp->spt[i];
1044
87917239 1045 if (is_shadow_present_pte(ent) && !is_large_pte(ent)) {
4731d4c7
MT
1046 struct kvm_mmu_page *child;
1047 child = page_header(ent & PT64_BASE_ADDR_MASK);
1048
1049 if (child->unsync_children) {
60c8aec6
MT
1050 if (mmu_pages_add(pvec, child, i))
1051 return -ENOSPC;
1052
1053 ret = __mmu_unsync_walk(child, pvec);
1054 if (!ret)
1055 __clear_bit(i, sp->unsync_child_bitmap);
1056 else if (ret > 0)
1057 nr_unsync_leaf += ret;
1058 else
4731d4c7
MT
1059 return ret;
1060 }
1061
1062 if (child->unsync) {
60c8aec6
MT
1063 nr_unsync_leaf++;
1064 if (mmu_pages_add(pvec, child, i))
1065 return -ENOSPC;
4731d4c7
MT
1066 }
1067 }
1068 }
1069
0074ff63 1070 if (find_first_bit(sp->unsync_child_bitmap, 512) == 512)
4731d4c7
MT
1071 sp->unsync_children = 0;
1072
60c8aec6
MT
1073 return nr_unsync_leaf;
1074}
1075
1076static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1077 struct kvm_mmu_pages *pvec)
1078{
1079 if (!sp->unsync_children)
1080 return 0;
1081
1082 mmu_pages_add(pvec, sp, 0);
1083 return __mmu_unsync_walk(sp, pvec);
4731d4c7
MT
1084}
1085
4db35314 1086static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm *kvm, gfn_t gfn)
cea0f0e7
AK
1087{
1088 unsigned index;
1089 struct hlist_head *bucket;
4db35314 1090 struct kvm_mmu_page *sp;
cea0f0e7
AK
1091 struct hlist_node *node;
1092
b8688d51 1093 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
1ae0a13d 1094 index = kvm_page_table_hashfn(gfn);
f05e70ac 1095 bucket = &kvm->arch.mmu_page_hash[index];
4db35314 1096 hlist_for_each_entry(sp, node, bucket, hash_link)
f6e2c02b 1097 if (sp->gfn == gfn && !sp->role.direct
2e53d63a 1098 && !sp->role.invalid) {
cea0f0e7 1099 pgprintk("%s: found role %x\n",
b8688d51 1100 __func__, sp->role.word);
4db35314 1101 return sp;
cea0f0e7
AK
1102 }
1103 return NULL;
1104}
1105
4731d4c7
MT
1106static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1107{
1108 WARN_ON(!sp->unsync);
1109 sp->unsync = 0;
1110 --kvm->stat.mmu_unsync;
1111}
1112
1113static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp);
1114
1115static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1116{
1117 if (sp->role.glevels != vcpu->arch.mmu.root_level) {
1118 kvm_mmu_zap_page(vcpu->kvm, sp);
1119 return 1;
1120 }
1121
b1a36821
MT
1122 if (rmap_write_protect(vcpu->kvm, sp->gfn))
1123 kvm_flush_remote_tlbs(vcpu->kvm);
0c0f40bd 1124 kvm_unlink_unsync_page(vcpu->kvm, sp);
4731d4c7
MT
1125 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
1126 kvm_mmu_zap_page(vcpu->kvm, sp);
1127 return 1;
1128 }
1129
1130 kvm_mmu_flush_tlb(vcpu);
4731d4c7
MT
1131 return 0;
1132}
1133
60c8aec6
MT
1134struct mmu_page_path {
1135 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1136 unsigned int idx[PT64_ROOT_LEVEL-1];
4731d4c7
MT
1137};
1138
60c8aec6
MT
1139#define for_each_sp(pvec, sp, parents, i) \
1140 for (i = mmu_pages_next(&pvec, &parents, -1), \
1141 sp = pvec.page[i].sp; \
1142 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1143 i = mmu_pages_next(&pvec, &parents, i))
1144
cded19f3
HE
1145static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1146 struct mmu_page_path *parents,
1147 int i)
60c8aec6
MT
1148{
1149 int n;
1150
1151 for (n = i+1; n < pvec->nr; n++) {
1152 struct kvm_mmu_page *sp = pvec->page[n].sp;
1153
1154 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1155 parents->idx[0] = pvec->page[n].idx;
1156 return n;
1157 }
1158
1159 parents->parent[sp->role.level-2] = sp;
1160 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1161 }
1162
1163 return n;
1164}
1165
cded19f3 1166static void mmu_pages_clear_parents(struct mmu_page_path *parents)
4731d4c7 1167{
60c8aec6
MT
1168 struct kvm_mmu_page *sp;
1169 unsigned int level = 0;
1170
1171 do {
1172 unsigned int idx = parents->idx[level];
4731d4c7 1173
60c8aec6
MT
1174 sp = parents->parent[level];
1175 if (!sp)
1176 return;
1177
1178 --sp->unsync_children;
1179 WARN_ON((int)sp->unsync_children < 0);
1180 __clear_bit(idx, sp->unsync_child_bitmap);
1181 level++;
1182 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
4731d4c7
MT
1183}
1184
60c8aec6
MT
1185static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1186 struct mmu_page_path *parents,
1187 struct kvm_mmu_pages *pvec)
4731d4c7 1188{
60c8aec6
MT
1189 parents->parent[parent->role.level-1] = NULL;
1190 pvec->nr = 0;
1191}
4731d4c7 1192
60c8aec6
MT
1193static void mmu_sync_children(struct kvm_vcpu *vcpu,
1194 struct kvm_mmu_page *parent)
1195{
1196 int i;
1197 struct kvm_mmu_page *sp;
1198 struct mmu_page_path parents;
1199 struct kvm_mmu_pages pages;
1200
1201 kvm_mmu_pages_init(parent, &parents, &pages);
1202 while (mmu_unsync_walk(parent, &pages)) {
b1a36821
MT
1203 int protected = 0;
1204
1205 for_each_sp(pages, sp, parents, i)
1206 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1207
1208 if (protected)
1209 kvm_flush_remote_tlbs(vcpu->kvm);
1210
60c8aec6
MT
1211 for_each_sp(pages, sp, parents, i) {
1212 kvm_sync_page(vcpu, sp);
1213 mmu_pages_clear_parents(&parents);
1214 }
4731d4c7 1215 cond_resched_lock(&vcpu->kvm->mmu_lock);
60c8aec6
MT
1216 kvm_mmu_pages_init(parent, &parents, &pages);
1217 }
4731d4c7
MT
1218}
1219
cea0f0e7
AK
1220static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1221 gfn_t gfn,
1222 gva_t gaddr,
1223 unsigned level,
f6e2c02b 1224 int direct,
41074d07 1225 unsigned access,
f7d9c7b7 1226 u64 *parent_pte)
cea0f0e7
AK
1227{
1228 union kvm_mmu_page_role role;
1229 unsigned index;
1230 unsigned quadrant;
1231 struct hlist_head *bucket;
4db35314 1232 struct kvm_mmu_page *sp;
4731d4c7 1233 struct hlist_node *node, *tmp;
cea0f0e7 1234
a770f6f2 1235 role = vcpu->arch.mmu.base_role;
cea0f0e7 1236 role.level = level;
f6e2c02b 1237 role.direct = direct;
41074d07 1238 role.access = access;
ad312c7c 1239 if (vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
cea0f0e7
AK
1240 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1241 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1242 role.quadrant = quadrant;
1243 }
b8688d51 1244 pgprintk("%s: looking gfn %lx role %x\n", __func__,
cea0f0e7 1245 gfn, role.word);
1ae0a13d 1246 index = kvm_page_table_hashfn(gfn);
f05e70ac 1247 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
4731d4c7
MT
1248 hlist_for_each_entry_safe(sp, node, tmp, bucket, hash_link)
1249 if (sp->gfn == gfn) {
1250 if (sp->unsync)
1251 if (kvm_sync_page(vcpu, sp))
1252 continue;
1253
1254 if (sp->role.word != role.word)
1255 continue;
1256
4db35314 1257 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
0074ff63
MT
1258 if (sp->unsync_children) {
1259 set_bit(KVM_REQ_MMU_SYNC, &vcpu->requests);
1260 kvm_mmu_mark_parents_unsync(vcpu, sp);
1261 }
b8688d51 1262 pgprintk("%s: found\n", __func__);
4db35314 1263 return sp;
cea0f0e7 1264 }
dfc5aa00 1265 ++vcpu->kvm->stat.mmu_cache_miss;
4db35314
AK
1266 sp = kvm_mmu_alloc_page(vcpu, parent_pte);
1267 if (!sp)
1268 return sp;
b8688d51 1269 pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word);
4db35314
AK
1270 sp->gfn = gfn;
1271 sp->role = role;
1272 hlist_add_head(&sp->hash_link, bucket);
f6e2c02b 1273 if (!direct) {
b1a36821
MT
1274 if (rmap_write_protect(vcpu->kvm, gfn))
1275 kvm_flush_remote_tlbs(vcpu->kvm);
4731d4c7
MT
1276 account_shadowed(vcpu->kvm, gfn);
1277 }
131d8279
AK
1278 if (shadow_trap_nonpresent_pte != shadow_notrap_nonpresent_pte)
1279 vcpu->arch.mmu.prefetch_page(vcpu, sp);
1280 else
1281 nonpaging_prefetch_page(vcpu, sp);
4db35314 1282 return sp;
cea0f0e7
AK
1283}
1284
2d11123a
AK
1285static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
1286 struct kvm_vcpu *vcpu, u64 addr)
1287{
1288 iterator->addr = addr;
1289 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
1290 iterator->level = vcpu->arch.mmu.shadow_root_level;
1291 if (iterator->level == PT32E_ROOT_LEVEL) {
1292 iterator->shadow_addr
1293 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
1294 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
1295 --iterator->level;
1296 if (!iterator->shadow_addr)
1297 iterator->level = 0;
1298 }
1299}
1300
1301static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
1302{
1303 if (iterator->level < PT_PAGE_TABLE_LEVEL)
1304 return false;
1305 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
1306 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
1307 return true;
1308}
1309
1310static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
1311{
1312 iterator->shadow_addr = *iterator->sptep & PT64_BASE_ADDR_MASK;
1313 --iterator->level;
1314}
1315
90cb0529 1316static void kvm_mmu_page_unlink_children(struct kvm *kvm,
4db35314 1317 struct kvm_mmu_page *sp)
a436036b 1318{
697fe2e2
AK
1319 unsigned i;
1320 u64 *pt;
1321 u64 ent;
1322
4db35314 1323 pt = sp->spt;
697fe2e2 1324
697fe2e2
AK
1325 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1326 ent = pt[i];
1327
05da4558 1328 if (is_shadow_present_pte(ent)) {
776e6633 1329 if (!is_last_spte(ent, sp->role.level)) {
05da4558
MT
1330 ent &= PT64_BASE_ADDR_MASK;
1331 mmu_page_remove_parent_pte(page_header(ent),
1332 &pt[i]);
1333 } else {
776e6633
MT
1334 if (is_large_pte(ent))
1335 --kvm->stat.lpages;
05da4558
MT
1336 rmap_remove(kvm, &pt[i]);
1337 }
1338 }
c7addb90 1339 pt[i] = shadow_trap_nonpresent_pte;
697fe2e2 1340 }
a436036b
AK
1341}
1342
4db35314 1343static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7 1344{
4db35314 1345 mmu_page_remove_parent_pte(sp, parent_pte);
a436036b
AK
1346}
1347
12b7d28f
AK
1348static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
1349{
1350 int i;
988a2cae 1351 struct kvm_vcpu *vcpu;
12b7d28f 1352
988a2cae
GN
1353 kvm_for_each_vcpu(i, vcpu, kvm)
1354 vcpu->arch.last_pte_updated = NULL;
12b7d28f
AK
1355}
1356
31aa2b44 1357static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
a436036b
AK
1358{
1359 u64 *parent_pte;
1360
4db35314
AK
1361 while (sp->multimapped || sp->parent_pte) {
1362 if (!sp->multimapped)
1363 parent_pte = sp->parent_pte;
a436036b
AK
1364 else {
1365 struct kvm_pte_chain *chain;
1366
4db35314 1367 chain = container_of(sp->parent_ptes.first,
a436036b
AK
1368 struct kvm_pte_chain, link);
1369 parent_pte = chain->parent_ptes[0];
1370 }
697fe2e2 1371 BUG_ON(!parent_pte);
4db35314 1372 kvm_mmu_put_page(sp, parent_pte);
d555c333 1373 __set_spte(parent_pte, shadow_trap_nonpresent_pte);
a436036b 1374 }
31aa2b44
AK
1375}
1376
60c8aec6
MT
1377static int mmu_zap_unsync_children(struct kvm *kvm,
1378 struct kvm_mmu_page *parent)
4731d4c7 1379{
60c8aec6
MT
1380 int i, zapped = 0;
1381 struct mmu_page_path parents;
1382 struct kvm_mmu_pages pages;
4731d4c7 1383
60c8aec6 1384 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
4731d4c7 1385 return 0;
60c8aec6
MT
1386
1387 kvm_mmu_pages_init(parent, &parents, &pages);
1388 while (mmu_unsync_walk(parent, &pages)) {
1389 struct kvm_mmu_page *sp;
1390
1391 for_each_sp(pages, sp, parents, i) {
1392 kvm_mmu_zap_page(kvm, sp);
1393 mmu_pages_clear_parents(&parents);
1394 }
1395 zapped += pages.nr;
1396 kvm_mmu_pages_init(parent, &parents, &pages);
1397 }
1398
1399 return zapped;
4731d4c7
MT
1400}
1401
07385413 1402static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp)
31aa2b44 1403{
4731d4c7 1404 int ret;
31aa2b44 1405 ++kvm->stat.mmu_shadow_zapped;
4731d4c7 1406 ret = mmu_zap_unsync_children(kvm, sp);
4db35314 1407 kvm_mmu_page_unlink_children(kvm, sp);
31aa2b44 1408 kvm_mmu_unlink_parents(kvm, sp);
5b5c6a5a 1409 kvm_flush_remote_tlbs(kvm);
f6e2c02b 1410 if (!sp->role.invalid && !sp->role.direct)
5b5c6a5a 1411 unaccount_shadowed(kvm, sp->gfn);
4731d4c7
MT
1412 if (sp->unsync)
1413 kvm_unlink_unsync_page(kvm, sp);
4db35314
AK
1414 if (!sp->root_count) {
1415 hlist_del(&sp->hash_link);
1416 kvm_mmu_free_page(kvm, sp);
2e53d63a 1417 } else {
2e53d63a 1418 sp->role.invalid = 1;
5b5c6a5a 1419 list_move(&sp->link, &kvm->arch.active_mmu_pages);
2e53d63a
MT
1420 kvm_reload_remote_mmus(kvm);
1421 }
12b7d28f 1422 kvm_mmu_reset_last_pte_updated(kvm);
4731d4c7 1423 return ret;
a436036b
AK
1424}
1425
82ce2c96
IE
1426/*
1427 * Changing the number of mmu pages allocated to the vm
1428 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
1429 */
1430void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
1431{
025dbbf3
MT
1432 int used_pages;
1433
1434 used_pages = kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages;
1435 used_pages = max(0, used_pages);
1436
82ce2c96
IE
1437 /*
1438 * If we set the number of mmu pages to be smaller be than the
1439 * number of actived pages , we must to free some mmu pages before we
1440 * change the value
1441 */
1442
025dbbf3
MT
1443 if (used_pages > kvm_nr_mmu_pages) {
1444 while (used_pages > kvm_nr_mmu_pages) {
82ce2c96
IE
1445 struct kvm_mmu_page *page;
1446
f05e70ac 1447 page = container_of(kvm->arch.active_mmu_pages.prev,
82ce2c96
IE
1448 struct kvm_mmu_page, link);
1449 kvm_mmu_zap_page(kvm, page);
025dbbf3 1450 used_pages--;
82ce2c96 1451 }
f05e70ac 1452 kvm->arch.n_free_mmu_pages = 0;
82ce2c96
IE
1453 }
1454 else
f05e70ac
ZX
1455 kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages
1456 - kvm->arch.n_alloc_mmu_pages;
82ce2c96 1457
f05e70ac 1458 kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
82ce2c96
IE
1459}
1460
f67a46f4 1461static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
a436036b
AK
1462{
1463 unsigned index;
1464 struct hlist_head *bucket;
4db35314 1465 struct kvm_mmu_page *sp;
a436036b
AK
1466 struct hlist_node *node, *n;
1467 int r;
1468
b8688d51 1469 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
a436036b 1470 r = 0;
1ae0a13d 1471 index = kvm_page_table_hashfn(gfn);
f05e70ac 1472 bucket = &kvm->arch.mmu_page_hash[index];
4db35314 1473 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link)
f6e2c02b 1474 if (sp->gfn == gfn && !sp->role.direct) {
b8688d51 1475 pgprintk("%s: gfn %lx role %x\n", __func__, gfn,
4db35314 1476 sp->role.word);
a436036b 1477 r = 1;
07385413
MT
1478 if (kvm_mmu_zap_page(kvm, sp))
1479 n = bucket->first;
a436036b
AK
1480 }
1481 return r;
cea0f0e7
AK
1482}
1483
f67a46f4 1484static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
97a0a01e 1485{
4677a3b6
AK
1486 unsigned index;
1487 struct hlist_head *bucket;
4db35314 1488 struct kvm_mmu_page *sp;
4677a3b6 1489 struct hlist_node *node, *nn;
97a0a01e 1490
4677a3b6
AK
1491 index = kvm_page_table_hashfn(gfn);
1492 bucket = &kvm->arch.mmu_page_hash[index];
1493 hlist_for_each_entry_safe(sp, node, nn, bucket, hash_link) {
f6e2c02b 1494 if (sp->gfn == gfn && !sp->role.direct
4677a3b6
AK
1495 && !sp->role.invalid) {
1496 pgprintk("%s: zap %lx %x\n",
1497 __func__, gfn, sp->role.word);
1498 kvm_mmu_zap_page(kvm, sp);
1499 }
97a0a01e
AK
1500 }
1501}
1502
38c335f1 1503static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
6aa8b732 1504{
38c335f1 1505 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gfn));
4db35314 1506 struct kvm_mmu_page *sp = page_header(__pa(pte));
6aa8b732 1507
291f26bc 1508 __set_bit(slot, sp->slot_bitmap);
6aa8b732
AK
1509}
1510
6844dec6
MT
1511static void mmu_convert_notrap(struct kvm_mmu_page *sp)
1512{
1513 int i;
1514 u64 *pt = sp->spt;
1515
1516 if (shadow_trap_nonpresent_pte == shadow_notrap_nonpresent_pte)
1517 return;
1518
1519 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1520 if (pt[i] == shadow_notrap_nonpresent_pte)
d555c333 1521 __set_spte(&pt[i], shadow_trap_nonpresent_pte);
6844dec6
MT
1522 }
1523}
1524
039576c0
AK
1525struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
1526{
72dc67a6
IE
1527 struct page *page;
1528
ad312c7c 1529 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
039576c0
AK
1530
1531 if (gpa == UNMAPPED_GVA)
1532 return NULL;
72dc67a6 1533
72dc67a6 1534 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
72dc67a6
IE
1535
1536 return page;
039576c0
AK
1537}
1538
74be52e3
SY
1539/*
1540 * The function is based on mtrr_type_lookup() in
1541 * arch/x86/kernel/cpu/mtrr/generic.c
1542 */
1543static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
1544 u64 start, u64 end)
1545{
1546 int i;
1547 u64 base, mask;
1548 u8 prev_match, curr_match;
1549 int num_var_ranges = KVM_NR_VAR_MTRR;
1550
1551 if (!mtrr_state->enabled)
1552 return 0xFF;
1553
1554 /* Make end inclusive end, instead of exclusive */
1555 end--;
1556
1557 /* Look in fixed ranges. Just return the type as per start */
1558 if (mtrr_state->have_fixed && (start < 0x100000)) {
1559 int idx;
1560
1561 if (start < 0x80000) {
1562 idx = 0;
1563 idx += (start >> 16);
1564 return mtrr_state->fixed_ranges[idx];
1565 } else if (start < 0xC0000) {
1566 idx = 1 * 8;
1567 idx += ((start - 0x80000) >> 14);
1568 return mtrr_state->fixed_ranges[idx];
1569 } else if (start < 0x1000000) {
1570 idx = 3 * 8;
1571 idx += ((start - 0xC0000) >> 12);
1572 return mtrr_state->fixed_ranges[idx];
1573 }
1574 }
1575
1576 /*
1577 * Look in variable ranges
1578 * Look of multiple ranges matching this address and pick type
1579 * as per MTRR precedence
1580 */
1581 if (!(mtrr_state->enabled & 2))
1582 return mtrr_state->def_type;
1583
1584 prev_match = 0xFF;
1585 for (i = 0; i < num_var_ranges; ++i) {
1586 unsigned short start_state, end_state;
1587
1588 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
1589 continue;
1590
1591 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
1592 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
1593 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
1594 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
1595
1596 start_state = ((start & mask) == (base & mask));
1597 end_state = ((end & mask) == (base & mask));
1598 if (start_state != end_state)
1599 return 0xFE;
1600
1601 if ((start & mask) != (base & mask))
1602 continue;
1603
1604 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
1605 if (prev_match == 0xFF) {
1606 prev_match = curr_match;
1607 continue;
1608 }
1609
1610 if (prev_match == MTRR_TYPE_UNCACHABLE ||
1611 curr_match == MTRR_TYPE_UNCACHABLE)
1612 return MTRR_TYPE_UNCACHABLE;
1613
1614 if ((prev_match == MTRR_TYPE_WRBACK &&
1615 curr_match == MTRR_TYPE_WRTHROUGH) ||
1616 (prev_match == MTRR_TYPE_WRTHROUGH &&
1617 curr_match == MTRR_TYPE_WRBACK)) {
1618 prev_match = MTRR_TYPE_WRTHROUGH;
1619 curr_match = MTRR_TYPE_WRTHROUGH;
1620 }
1621
1622 if (prev_match != curr_match)
1623 return MTRR_TYPE_UNCACHABLE;
1624 }
1625
1626 if (prev_match != 0xFF)
1627 return prev_match;
1628
1629 return mtrr_state->def_type;
1630}
1631
4b12f0de 1632u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
74be52e3
SY
1633{
1634 u8 mtrr;
1635
1636 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
1637 (gfn << PAGE_SHIFT) + PAGE_SIZE);
1638 if (mtrr == 0xfe || mtrr == 0xff)
1639 mtrr = MTRR_TYPE_WRBACK;
1640 return mtrr;
1641}
4b12f0de 1642EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
74be52e3 1643
4731d4c7
MT
1644static int kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1645{
1646 unsigned index;
1647 struct hlist_head *bucket;
1648 struct kvm_mmu_page *s;
1649 struct hlist_node *node, *n;
1650
1651 index = kvm_page_table_hashfn(sp->gfn);
1652 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
1653 /* don't unsync if pagetable is shadowed with multiple roles */
1654 hlist_for_each_entry_safe(s, node, n, bucket, hash_link) {
f6e2c02b 1655 if (s->gfn != sp->gfn || s->role.direct)
4731d4c7
MT
1656 continue;
1657 if (s->role.word != sp->role.word)
1658 return 1;
1659 }
4731d4c7
MT
1660 ++vcpu->kvm->stat.mmu_unsync;
1661 sp->unsync = 1;
6cffe8ca 1662
c2d0ee46 1663 kvm_mmu_mark_parents_unsync(vcpu, sp);
6cffe8ca 1664
4731d4c7
MT
1665 mmu_convert_notrap(sp);
1666 return 0;
1667}
1668
1669static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1670 bool can_unsync)
1671{
1672 struct kvm_mmu_page *shadow;
1673
1674 shadow = kvm_mmu_lookup_page(vcpu->kvm, gfn);
1675 if (shadow) {
1676 if (shadow->role.level != PT_PAGE_TABLE_LEVEL)
1677 return 1;
1678 if (shadow->unsync)
1679 return 0;
582801a9 1680 if (can_unsync && oos_shadow)
4731d4c7
MT
1681 return kvm_unsync_page(vcpu, shadow);
1682 return 1;
1683 }
1684 return 0;
1685}
1686
d555c333 1687static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1e73f9dd
MT
1688 unsigned pte_access, int user_fault,
1689 int write_fault, int dirty, int largepage,
c2d0ee46 1690 gfn_t gfn, pfn_t pfn, bool speculative,
4731d4c7 1691 bool can_unsync)
1c4f1fd6
AK
1692{
1693 u64 spte;
1e73f9dd 1694 int ret = 0;
64d4d521 1695
1c4f1fd6
AK
1696 /*
1697 * We don't set the accessed bit, since we sometimes want to see
1698 * whether the guest actually used the pte (in order to detect
1699 * demand paging).
1700 */
7b52345e 1701 spte = shadow_base_present_pte | shadow_dirty_mask;
947da538 1702 if (!speculative)
3201b5d9 1703 spte |= shadow_accessed_mask;
1c4f1fd6
AK
1704 if (!dirty)
1705 pte_access &= ~ACC_WRITE_MASK;
7b52345e
SY
1706 if (pte_access & ACC_EXEC_MASK)
1707 spte |= shadow_x_mask;
1708 else
1709 spte |= shadow_nx_mask;
1c4f1fd6 1710 if (pte_access & ACC_USER_MASK)
7b52345e 1711 spte |= shadow_user_mask;
05da4558
MT
1712 if (largepage)
1713 spte |= PT_PAGE_SIZE_MASK;
4b12f0de
SY
1714 if (tdp_enabled)
1715 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
1716 kvm_is_mmio_pfn(pfn));
1c4f1fd6 1717
35149e21 1718 spte |= (u64)pfn << PAGE_SHIFT;
1c4f1fd6
AK
1719
1720 if ((pte_access & ACC_WRITE_MASK)
1721 || (write_fault && !is_write_protection(vcpu) && !user_fault)) {
1c4f1fd6 1722
38187c83
MT
1723 if (largepage && has_wrprotected_page(vcpu->kvm, gfn)) {
1724 ret = 1;
1725 spte = shadow_trap_nonpresent_pte;
1726 goto set_pte;
1727 }
1728
1c4f1fd6 1729 spte |= PT_WRITABLE_MASK;
1c4f1fd6 1730
ecc5589f
MT
1731 /*
1732 * Optimization: for pte sync, if spte was writable the hash
1733 * lookup is unnecessary (and expensive). Write protection
1734 * is responsibility of mmu_get_page / kvm_sync_page.
1735 * Same reasoning can be applied to dirty page accounting.
1736 */
d555c333 1737 if (!can_unsync && is_writeble_pte(*sptep))
ecc5589f
MT
1738 goto set_pte;
1739
4731d4c7 1740 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
1c4f1fd6 1741 pgprintk("%s: found shadow page for %lx, marking ro\n",
b8688d51 1742 __func__, gfn);
1e73f9dd 1743 ret = 1;
1c4f1fd6 1744 pte_access &= ~ACC_WRITE_MASK;
a378b4e6 1745 if (is_writeble_pte(spte))
1c4f1fd6 1746 spte &= ~PT_WRITABLE_MASK;
1c4f1fd6
AK
1747 }
1748 }
1749
1c4f1fd6
AK
1750 if (pte_access & ACC_WRITE_MASK)
1751 mark_page_dirty(vcpu->kvm, gfn);
1752
38187c83 1753set_pte:
d555c333 1754 __set_spte(sptep, spte);
1e73f9dd
MT
1755 return ret;
1756}
1757
d555c333 1758static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1e73f9dd
MT
1759 unsigned pt_access, unsigned pte_access,
1760 int user_fault, int write_fault, int dirty,
c2d0ee46
MT
1761 int *ptwrite, int largepage, gfn_t gfn,
1762 pfn_t pfn, bool speculative)
1e73f9dd
MT
1763{
1764 int was_rmapped = 0;
d555c333 1765 int was_writeble = is_writeble_pte(*sptep);
53a27b39 1766 int rmap_count;
1e73f9dd
MT
1767
1768 pgprintk("%s: spte %llx access %x write_fault %d"
1769 " user_fault %d gfn %lx\n",
d555c333 1770 __func__, *sptep, pt_access,
1e73f9dd
MT
1771 write_fault, user_fault, gfn);
1772
d555c333 1773 if (is_rmap_spte(*sptep)) {
1e73f9dd
MT
1774 /*
1775 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
1776 * the parent of the now unreachable PTE.
1777 */
d555c333 1778 if (largepage && !is_large_pte(*sptep)) {
1e73f9dd 1779 struct kvm_mmu_page *child;
d555c333 1780 u64 pte = *sptep;
1e73f9dd
MT
1781
1782 child = page_header(pte & PT64_BASE_ADDR_MASK);
d555c333
AK
1783 mmu_page_remove_parent_pte(child, sptep);
1784 } else if (pfn != spte_to_pfn(*sptep)) {
1e73f9dd 1785 pgprintk("hfn old %lx new %lx\n",
d555c333
AK
1786 spte_to_pfn(*sptep), pfn);
1787 rmap_remove(vcpu->kvm, sptep);
6bed6b9e
JR
1788 } else
1789 was_rmapped = 1;
1e73f9dd 1790 }
d555c333 1791 if (set_spte(vcpu, sptep, pte_access, user_fault, write_fault,
c2d0ee46 1792 dirty, largepage, gfn, pfn, speculative, true)) {
1e73f9dd
MT
1793 if (write_fault)
1794 *ptwrite = 1;
a378b4e6
MT
1795 kvm_x86_ops->tlb_flush(vcpu);
1796 }
1e73f9dd 1797
d555c333 1798 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
1e73f9dd 1799 pgprintk("instantiating %s PTE (%s) at %ld (%llx) addr %p\n",
d555c333
AK
1800 is_large_pte(*sptep)? "2MB" : "4kB",
1801 is_present_pte(*sptep)?"RW":"R", gfn,
1802 *shadow_pte, sptep);
1803 if (!was_rmapped && is_large_pte(*sptep))
05da4558
MT
1804 ++vcpu->kvm->stat.lpages;
1805
d555c333 1806 page_header_update_slot(vcpu->kvm, sptep, gfn);
1c4f1fd6 1807 if (!was_rmapped) {
d555c333
AK
1808 rmap_count = rmap_add(vcpu, sptep, gfn, largepage);
1809 if (!is_rmap_spte(*sptep))
35149e21 1810 kvm_release_pfn_clean(pfn);
53a27b39
MT
1811 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
1812 rmap_recycle(vcpu, gfn, largepage);
75e68e60
IE
1813 } else {
1814 if (was_writeble)
35149e21 1815 kvm_release_pfn_dirty(pfn);
75e68e60 1816 else
35149e21 1817 kvm_release_pfn_clean(pfn);
1c4f1fd6 1818 }
1b7fcd32 1819 if (speculative) {
d555c333 1820 vcpu->arch.last_pte_updated = sptep;
1b7fcd32
AK
1821 vcpu->arch.last_pte_gfn = gfn;
1822 }
1c4f1fd6
AK
1823}
1824
6aa8b732
AK
1825static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
1826{
1827}
1828
9f652d21
AK
1829static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
1830 int largepage, gfn_t gfn, pfn_t pfn)
140754bc 1831{
9f652d21 1832 struct kvm_shadow_walk_iterator iterator;
140754bc 1833 struct kvm_mmu_page *sp;
9f652d21 1834 int pt_write = 0;
140754bc 1835 gfn_t pseudo_gfn;
6aa8b732 1836
9f652d21
AK
1837 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
1838 if (iterator.level == PT_PAGE_TABLE_LEVEL
1839 || (largepage && iterator.level == PT_DIRECTORY_LEVEL)) {
1840 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, ACC_ALL,
1841 0, write, 1, &pt_write,
c2d0ee46 1842 largepage, gfn, pfn, false);
9f652d21
AK
1843 ++vcpu->stat.pf_fixed;
1844 break;
6aa8b732
AK
1845 }
1846
9f652d21
AK
1847 if (*iterator.sptep == shadow_trap_nonpresent_pte) {
1848 pseudo_gfn = (iterator.addr & PT64_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
1849 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
1850 iterator.level - 1,
1851 1, ACC_ALL, iterator.sptep);
1852 if (!sp) {
1853 pgprintk("nonpaging_map: ENOMEM\n");
1854 kvm_release_pfn_clean(pfn);
1855 return -ENOMEM;
1856 }
140754bc 1857
d555c333
AK
1858 __set_spte(iterator.sptep,
1859 __pa(sp->spt)
1860 | PT_PRESENT_MASK | PT_WRITABLE_MASK
1861 | shadow_user_mask | shadow_x_mask);
9f652d21
AK
1862 }
1863 }
1864 return pt_write;
6aa8b732
AK
1865}
1866
10589a46
MT
1867static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
1868{
1869 int r;
05da4558 1870 int largepage = 0;
35149e21 1871 pfn_t pfn;
e930bffe 1872 unsigned long mmu_seq;
aaee2c94 1873
05da4558
MT
1874 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1875 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1876 largepage = 1;
1877 }
1878
e930bffe 1879 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 1880 smp_rmb();
35149e21 1881 pfn = gfn_to_pfn(vcpu->kvm, gfn);
aaee2c94 1882
d196e343 1883 /* mmio */
35149e21
AL
1884 if (is_error_pfn(pfn)) {
1885 kvm_release_pfn_clean(pfn);
d196e343
AK
1886 return 1;
1887 }
1888
aaee2c94 1889 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
1890 if (mmu_notifier_retry(vcpu, mmu_seq))
1891 goto out_unlock;
eb787d10 1892 kvm_mmu_free_some_pages(vcpu);
6c41f428 1893 r = __direct_map(vcpu, v, write, largepage, gfn, pfn);
aaee2c94
MT
1894 spin_unlock(&vcpu->kvm->mmu_lock);
1895
aaee2c94 1896
10589a46 1897 return r;
e930bffe
AA
1898
1899out_unlock:
1900 spin_unlock(&vcpu->kvm->mmu_lock);
1901 kvm_release_pfn_clean(pfn);
1902 return 0;
10589a46
MT
1903}
1904
1905
17ac10ad
AK
1906static void mmu_free_roots(struct kvm_vcpu *vcpu)
1907{
1908 int i;
4db35314 1909 struct kvm_mmu_page *sp;
17ac10ad 1910
ad312c7c 1911 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
7b53aa56 1912 return;
aaee2c94 1913 spin_lock(&vcpu->kvm->mmu_lock);
ad312c7c
ZX
1914 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1915 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad 1916
4db35314
AK
1917 sp = page_header(root);
1918 --sp->root_count;
2e53d63a
MT
1919 if (!sp->root_count && sp->role.invalid)
1920 kvm_mmu_zap_page(vcpu->kvm, sp);
ad312c7c 1921 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
aaee2c94 1922 spin_unlock(&vcpu->kvm->mmu_lock);
17ac10ad
AK
1923 return;
1924 }
17ac10ad 1925 for (i = 0; i < 4; ++i) {
ad312c7c 1926 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad 1927
417726a3 1928 if (root) {
417726a3 1929 root &= PT64_BASE_ADDR_MASK;
4db35314
AK
1930 sp = page_header(root);
1931 --sp->root_count;
2e53d63a
MT
1932 if (!sp->root_count && sp->role.invalid)
1933 kvm_mmu_zap_page(vcpu->kvm, sp);
417726a3 1934 }
ad312c7c 1935 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 1936 }
aaee2c94 1937 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 1938 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
1939}
1940
8986ecc0
MT
1941static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
1942{
1943 int ret = 0;
1944
1945 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
1946 set_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests);
1947 ret = 1;
1948 }
1949
1950 return ret;
1951}
1952
1953static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
17ac10ad
AK
1954{
1955 int i;
cea0f0e7 1956 gfn_t root_gfn;
4db35314 1957 struct kvm_mmu_page *sp;
f6e2c02b 1958 int direct = 0;
6de4f3ad 1959 u64 pdptr;
3bb65a22 1960
ad312c7c 1961 root_gfn = vcpu->arch.cr3 >> PAGE_SHIFT;
17ac10ad 1962
ad312c7c
ZX
1963 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1964 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad
AK
1965
1966 ASSERT(!VALID_PAGE(root));
fb72d167 1967 if (tdp_enabled)
f6e2c02b 1968 direct = 1;
8986ecc0
MT
1969 if (mmu_check_root(vcpu, root_gfn))
1970 return 1;
4db35314 1971 sp = kvm_mmu_get_page(vcpu, root_gfn, 0,
f6e2c02b 1972 PT64_ROOT_LEVEL, direct,
fb72d167 1973 ACC_ALL, NULL);
4db35314
AK
1974 root = __pa(sp->spt);
1975 ++sp->root_count;
ad312c7c 1976 vcpu->arch.mmu.root_hpa = root;
8986ecc0 1977 return 0;
17ac10ad 1978 }
f6e2c02b 1979 direct = !is_paging(vcpu);
fb72d167 1980 if (tdp_enabled)
f6e2c02b 1981 direct = 1;
17ac10ad 1982 for (i = 0; i < 4; ++i) {
ad312c7c 1983 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad
AK
1984
1985 ASSERT(!VALID_PAGE(root));
ad312c7c 1986 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
6de4f3ad 1987 pdptr = kvm_pdptr_read(vcpu, i);
43a3795a 1988 if (!is_present_gpte(pdptr)) {
ad312c7c 1989 vcpu->arch.mmu.pae_root[i] = 0;
417726a3
AK
1990 continue;
1991 }
6de4f3ad 1992 root_gfn = pdptr >> PAGE_SHIFT;
ad312c7c 1993 } else if (vcpu->arch.mmu.root_level == 0)
cea0f0e7 1994 root_gfn = 0;
8986ecc0
MT
1995 if (mmu_check_root(vcpu, root_gfn))
1996 return 1;
4db35314 1997 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
f6e2c02b 1998 PT32_ROOT_LEVEL, direct,
f7d9c7b7 1999 ACC_ALL, NULL);
4db35314
AK
2000 root = __pa(sp->spt);
2001 ++sp->root_count;
ad312c7c 2002 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
17ac10ad 2003 }
ad312c7c 2004 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
8986ecc0 2005 return 0;
17ac10ad
AK
2006}
2007
0ba73cda
MT
2008static void mmu_sync_roots(struct kvm_vcpu *vcpu)
2009{
2010 int i;
2011 struct kvm_mmu_page *sp;
2012
2013 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2014 return;
2015 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2016 hpa_t root = vcpu->arch.mmu.root_hpa;
2017 sp = page_header(root);
2018 mmu_sync_children(vcpu, sp);
2019 return;
2020 }
2021 for (i = 0; i < 4; ++i) {
2022 hpa_t root = vcpu->arch.mmu.pae_root[i];
2023
8986ecc0 2024 if (root && VALID_PAGE(root)) {
0ba73cda
MT
2025 root &= PT64_BASE_ADDR_MASK;
2026 sp = page_header(root);
2027 mmu_sync_children(vcpu, sp);
2028 }
2029 }
2030}
2031
2032void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2033{
2034 spin_lock(&vcpu->kvm->mmu_lock);
2035 mmu_sync_roots(vcpu);
6cffe8ca 2036 spin_unlock(&vcpu->kvm->mmu_lock);
0ba73cda
MT
2037}
2038
6aa8b732
AK
2039static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
2040{
2041 return vaddr;
2042}
2043
2044static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
3f3e7124 2045 u32 error_code)
6aa8b732 2046{
e833240f 2047 gfn_t gfn;
e2dec939 2048 int r;
6aa8b732 2049
b8688d51 2050 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
e2dec939
AK
2051 r = mmu_topup_memory_caches(vcpu);
2052 if (r)
2053 return r;
714b93da 2054
6aa8b732 2055 ASSERT(vcpu);
ad312c7c 2056 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2057
e833240f 2058 gfn = gva >> PAGE_SHIFT;
6aa8b732 2059
e833240f
AK
2060 return nonpaging_map(vcpu, gva & PAGE_MASK,
2061 error_code & PFERR_WRITE_MASK, gfn);
6aa8b732
AK
2062}
2063
fb72d167
JR
2064static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
2065 u32 error_code)
2066{
35149e21 2067 pfn_t pfn;
fb72d167 2068 int r;
05da4558
MT
2069 int largepage = 0;
2070 gfn_t gfn = gpa >> PAGE_SHIFT;
e930bffe 2071 unsigned long mmu_seq;
fb72d167
JR
2072
2073 ASSERT(vcpu);
2074 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2075
2076 r = mmu_topup_memory_caches(vcpu);
2077 if (r)
2078 return r;
2079
05da4558
MT
2080 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
2081 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2082 largepage = 1;
2083 }
e930bffe 2084 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2085 smp_rmb();
35149e21 2086 pfn = gfn_to_pfn(vcpu->kvm, gfn);
35149e21
AL
2087 if (is_error_pfn(pfn)) {
2088 kvm_release_pfn_clean(pfn);
fb72d167
JR
2089 return 1;
2090 }
2091 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
2092 if (mmu_notifier_retry(vcpu, mmu_seq))
2093 goto out_unlock;
fb72d167
JR
2094 kvm_mmu_free_some_pages(vcpu);
2095 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
6c41f428 2096 largepage, gfn, pfn);
fb72d167 2097 spin_unlock(&vcpu->kvm->mmu_lock);
fb72d167
JR
2098
2099 return r;
e930bffe
AA
2100
2101out_unlock:
2102 spin_unlock(&vcpu->kvm->mmu_lock);
2103 kvm_release_pfn_clean(pfn);
2104 return 0;
fb72d167
JR
2105}
2106
6aa8b732
AK
2107static void nonpaging_free(struct kvm_vcpu *vcpu)
2108{
17ac10ad 2109 mmu_free_roots(vcpu);
6aa8b732
AK
2110}
2111
2112static int nonpaging_init_context(struct kvm_vcpu *vcpu)
2113{
ad312c7c 2114 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
2115
2116 context->new_cr3 = nonpaging_new_cr3;
2117 context->page_fault = nonpaging_page_fault;
6aa8b732
AK
2118 context->gva_to_gpa = nonpaging_gva_to_gpa;
2119 context->free = nonpaging_free;
c7addb90 2120 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2121 context->sync_page = nonpaging_sync_page;
a7052897 2122 context->invlpg = nonpaging_invlpg;
cea0f0e7 2123 context->root_level = 0;
6aa8b732 2124 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2125 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2126 return 0;
2127}
2128
d835dfec 2129void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
6aa8b732 2130{
1165f5fe 2131 ++vcpu->stat.tlb_flush;
cbdd1bea 2132 kvm_x86_ops->tlb_flush(vcpu);
6aa8b732
AK
2133}
2134
2135static void paging_new_cr3(struct kvm_vcpu *vcpu)
2136{
b8688d51 2137 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
cea0f0e7 2138 mmu_free_roots(vcpu);
6aa8b732
AK
2139}
2140
6aa8b732
AK
2141static void inject_page_fault(struct kvm_vcpu *vcpu,
2142 u64 addr,
2143 u32 err_code)
2144{
c3c91fee 2145 kvm_inject_page_fault(vcpu, addr, err_code);
6aa8b732
AK
2146}
2147
6aa8b732
AK
2148static void paging_free(struct kvm_vcpu *vcpu)
2149{
2150 nonpaging_free(vcpu);
2151}
2152
82725b20
DE
2153static bool is_rsvd_bits_set(struct kvm_vcpu *vcpu, u64 gpte, int level)
2154{
2155 int bit7;
2156
2157 bit7 = (gpte >> 7) & 1;
2158 return (gpte & vcpu->arch.mmu.rsvd_bits_mask[bit7][level-1]) != 0;
2159}
2160
6aa8b732
AK
2161#define PTTYPE 64
2162#include "paging_tmpl.h"
2163#undef PTTYPE
2164
2165#define PTTYPE 32
2166#include "paging_tmpl.h"
2167#undef PTTYPE
2168
82725b20
DE
2169static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, int level)
2170{
2171 struct kvm_mmu *context = &vcpu->arch.mmu;
2172 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2173 u64 exb_bit_rsvd = 0;
2174
2175 if (!is_nx(vcpu))
2176 exb_bit_rsvd = rsvd_bits(63, 63);
2177 switch (level) {
2178 case PT32_ROOT_LEVEL:
2179 /* no rsvd bits for 2 level 4K page table entries */
2180 context->rsvd_bits_mask[0][1] = 0;
2181 context->rsvd_bits_mask[0][0] = 0;
2182 if (is_cpuid_PSE36())
2183 /* 36bits PSE 4MB page */
2184 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
2185 else
2186 /* 32 bits PSE 4MB page */
2187 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
29a4b933 2188 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2189 break;
2190 case PT32E_ROOT_LEVEL:
20c466b5
DE
2191 context->rsvd_bits_mask[0][2] =
2192 rsvd_bits(maxphyaddr, 63) |
2193 rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
82725b20 2194 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2195 rsvd_bits(maxphyaddr, 62); /* PDE */
82725b20
DE
2196 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2197 rsvd_bits(maxphyaddr, 62); /* PTE */
2198 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2199 rsvd_bits(maxphyaddr, 62) |
2200 rsvd_bits(13, 20); /* large page */
29a4b933 2201 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2202 break;
2203 case PT64_ROOT_LEVEL:
2204 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
2205 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2206 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
2207 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2208 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2209 rsvd_bits(maxphyaddr, 51);
82725b20
DE
2210 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2211 rsvd_bits(maxphyaddr, 51);
2212 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
2213 context->rsvd_bits_mask[1][2] = context->rsvd_bits_mask[0][2];
2214 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
4c26b4cd
SY
2215 rsvd_bits(maxphyaddr, 51) |
2216 rsvd_bits(13, 20); /* large page */
29a4b933 2217 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2218 break;
2219 }
2220}
2221
17ac10ad 2222static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
6aa8b732 2223{
ad312c7c 2224 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
2225
2226 ASSERT(is_pae(vcpu));
2227 context->new_cr3 = paging_new_cr3;
2228 context->page_fault = paging64_page_fault;
6aa8b732 2229 context->gva_to_gpa = paging64_gva_to_gpa;
c7addb90 2230 context->prefetch_page = paging64_prefetch_page;
e8bc217a 2231 context->sync_page = paging64_sync_page;
a7052897 2232 context->invlpg = paging64_invlpg;
6aa8b732 2233 context->free = paging_free;
17ac10ad
AK
2234 context->root_level = level;
2235 context->shadow_root_level = level;
17c3ba9d 2236 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2237 return 0;
2238}
2239
17ac10ad
AK
2240static int paging64_init_context(struct kvm_vcpu *vcpu)
2241{
82725b20 2242 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
17ac10ad
AK
2243 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
2244}
2245
6aa8b732
AK
2246static int paging32_init_context(struct kvm_vcpu *vcpu)
2247{
ad312c7c 2248 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732 2249
82725b20 2250 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
6aa8b732
AK
2251 context->new_cr3 = paging_new_cr3;
2252 context->page_fault = paging32_page_fault;
6aa8b732
AK
2253 context->gva_to_gpa = paging32_gva_to_gpa;
2254 context->free = paging_free;
c7addb90 2255 context->prefetch_page = paging32_prefetch_page;
e8bc217a 2256 context->sync_page = paging32_sync_page;
a7052897 2257 context->invlpg = paging32_invlpg;
6aa8b732
AK
2258 context->root_level = PT32_ROOT_LEVEL;
2259 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2260 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2261 return 0;
2262}
2263
2264static int paging32E_init_context(struct kvm_vcpu *vcpu)
2265{
82725b20 2266 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
17ac10ad 2267 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
6aa8b732
AK
2268}
2269
fb72d167
JR
2270static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2271{
2272 struct kvm_mmu *context = &vcpu->arch.mmu;
2273
2274 context->new_cr3 = nonpaging_new_cr3;
2275 context->page_fault = tdp_page_fault;
2276 context->free = nonpaging_free;
2277 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2278 context->sync_page = nonpaging_sync_page;
a7052897 2279 context->invlpg = nonpaging_invlpg;
67253af5 2280 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
fb72d167
JR
2281 context->root_hpa = INVALID_PAGE;
2282
2283 if (!is_paging(vcpu)) {
2284 context->gva_to_gpa = nonpaging_gva_to_gpa;
2285 context->root_level = 0;
2286 } else if (is_long_mode(vcpu)) {
82725b20 2287 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
fb72d167
JR
2288 context->gva_to_gpa = paging64_gva_to_gpa;
2289 context->root_level = PT64_ROOT_LEVEL;
2290 } else if (is_pae(vcpu)) {
82725b20 2291 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
fb72d167
JR
2292 context->gva_to_gpa = paging64_gva_to_gpa;
2293 context->root_level = PT32E_ROOT_LEVEL;
2294 } else {
82725b20 2295 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
fb72d167
JR
2296 context->gva_to_gpa = paging32_gva_to_gpa;
2297 context->root_level = PT32_ROOT_LEVEL;
2298 }
2299
2300 return 0;
2301}
2302
2303static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
6aa8b732 2304{
a770f6f2
AK
2305 int r;
2306
6aa8b732 2307 ASSERT(vcpu);
ad312c7c 2308 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732
AK
2309
2310 if (!is_paging(vcpu))
a770f6f2 2311 r = nonpaging_init_context(vcpu);
a9058ecd 2312 else if (is_long_mode(vcpu))
a770f6f2 2313 r = paging64_init_context(vcpu);
6aa8b732 2314 else if (is_pae(vcpu))
a770f6f2 2315 r = paging32E_init_context(vcpu);
6aa8b732 2316 else
a770f6f2
AK
2317 r = paging32_init_context(vcpu);
2318
2319 vcpu->arch.mmu.base_role.glevels = vcpu->arch.mmu.root_level;
2320
2321 return r;
6aa8b732
AK
2322}
2323
fb72d167
JR
2324static int init_kvm_mmu(struct kvm_vcpu *vcpu)
2325{
35149e21
AL
2326 vcpu->arch.update_pte.pfn = bad_pfn;
2327
fb72d167
JR
2328 if (tdp_enabled)
2329 return init_kvm_tdp_mmu(vcpu);
2330 else
2331 return init_kvm_softmmu(vcpu);
2332}
2333
6aa8b732
AK
2334static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
2335{
2336 ASSERT(vcpu);
ad312c7c
ZX
2337 if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
2338 vcpu->arch.mmu.free(vcpu);
2339 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
6aa8b732
AK
2340 }
2341}
2342
2343int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
17c3ba9d
AK
2344{
2345 destroy_kvm_mmu(vcpu);
2346 return init_kvm_mmu(vcpu);
2347}
8668a3c4 2348EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
17c3ba9d
AK
2349
2350int kvm_mmu_load(struct kvm_vcpu *vcpu)
6aa8b732 2351{
714b93da
AK
2352 int r;
2353
e2dec939 2354 r = mmu_topup_memory_caches(vcpu);
17c3ba9d
AK
2355 if (r)
2356 goto out;
aaee2c94 2357 spin_lock(&vcpu->kvm->mmu_lock);
eb787d10 2358 kvm_mmu_free_some_pages(vcpu);
8986ecc0 2359 r = mmu_alloc_roots(vcpu);
0ba73cda 2360 mmu_sync_roots(vcpu);
aaee2c94 2361 spin_unlock(&vcpu->kvm->mmu_lock);
8986ecc0
MT
2362 if (r)
2363 goto out;
ad312c7c 2364 kvm_x86_ops->set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
17c3ba9d 2365 kvm_mmu_flush_tlb(vcpu);
714b93da
AK
2366out:
2367 return r;
6aa8b732 2368}
17c3ba9d
AK
2369EXPORT_SYMBOL_GPL(kvm_mmu_load);
2370
2371void kvm_mmu_unload(struct kvm_vcpu *vcpu)
2372{
2373 mmu_free_roots(vcpu);
2374}
6aa8b732 2375
09072daf 2376static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
4db35314 2377 struct kvm_mmu_page *sp,
ac1b714e
AK
2378 u64 *spte)
2379{
2380 u64 pte;
2381 struct kvm_mmu_page *child;
2382
2383 pte = *spte;
c7addb90 2384 if (is_shadow_present_pte(pte)) {
776e6633 2385 if (is_last_spte(pte, sp->role.level))
290fc38d 2386 rmap_remove(vcpu->kvm, spte);
ac1b714e
AK
2387 else {
2388 child = page_header(pte & PT64_BASE_ADDR_MASK);
90cb0529 2389 mmu_page_remove_parent_pte(child, spte);
ac1b714e
AK
2390 }
2391 }
d555c333 2392 __set_spte(spte, shadow_trap_nonpresent_pte);
05da4558
MT
2393 if (is_large_pte(pte))
2394 --vcpu->kvm->stat.lpages;
ac1b714e
AK
2395}
2396
0028425f 2397static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
4db35314 2398 struct kvm_mmu_page *sp,
0028425f 2399 u64 *spte,
489f1d65 2400 const void *new)
0028425f 2401{
30945387
MT
2402 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
2403 if (!vcpu->arch.update_pte.largepage ||
2404 sp->role.glevels == PT32_ROOT_LEVEL) {
2405 ++vcpu->kvm->stat.mmu_pde_zapped;
2406 return;
2407 }
2408 }
0028425f 2409
4cee5764 2410 ++vcpu->kvm->stat.mmu_pte_updated;
4db35314 2411 if (sp->role.glevels == PT32_ROOT_LEVEL)
489f1d65 2412 paging32_update_pte(vcpu, sp, spte, new);
0028425f 2413 else
489f1d65 2414 paging64_update_pte(vcpu, sp, spte, new);
0028425f
AK
2415}
2416
79539cec
AK
2417static bool need_remote_flush(u64 old, u64 new)
2418{
2419 if (!is_shadow_present_pte(old))
2420 return false;
2421 if (!is_shadow_present_pte(new))
2422 return true;
2423 if ((old ^ new) & PT64_BASE_ADDR_MASK)
2424 return true;
2425 old ^= PT64_NX_MASK;
2426 new ^= PT64_NX_MASK;
2427 return (old & ~new & PT64_PERM_MASK) != 0;
2428}
2429
2430static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, u64 old, u64 new)
2431{
2432 if (need_remote_flush(old, new))
2433 kvm_flush_remote_tlbs(vcpu->kvm);
2434 else
2435 kvm_mmu_flush_tlb(vcpu);
2436}
2437
12b7d28f
AK
2438static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
2439{
ad312c7c 2440 u64 *spte = vcpu->arch.last_pte_updated;
12b7d28f 2441
7b52345e 2442 return !!(spte && (*spte & shadow_accessed_mask));
12b7d28f
AK
2443}
2444
d7824fff
AK
2445static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
2446 const u8 *new, int bytes)
2447{
2448 gfn_t gfn;
2449 int r;
2450 u64 gpte = 0;
35149e21 2451 pfn_t pfn;
d7824fff 2452
05da4558
MT
2453 vcpu->arch.update_pte.largepage = 0;
2454
d7824fff
AK
2455 if (bytes != 4 && bytes != 8)
2456 return;
2457
2458 /*
2459 * Assume that the pte write on a page table of the same type
2460 * as the current vcpu paging mode. This is nearly always true
2461 * (might be false while changing modes). Note it is verified later
2462 * by update_pte().
2463 */
2464 if (is_pae(vcpu)) {
2465 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
2466 if ((bytes == 4) && (gpa % 4 == 0)) {
2467 r = kvm_read_guest(vcpu->kvm, gpa & ~(u64)7, &gpte, 8);
2468 if (r)
2469 return;
2470 memcpy((void *)&gpte + (gpa % 8), new, 4);
2471 } else if ((bytes == 8) && (gpa % 8 == 0)) {
2472 memcpy((void *)&gpte, new, 8);
2473 }
2474 } else {
2475 if ((bytes == 4) && (gpa % 4 == 0))
2476 memcpy((void *)&gpte, new, 4);
2477 }
43a3795a 2478 if (!is_present_gpte(gpte))
d7824fff
AK
2479 return;
2480 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
72dc67a6 2481
05da4558
MT
2482 if (is_large_pte(gpte) && is_largepage_backed(vcpu, gfn)) {
2483 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2484 vcpu->arch.update_pte.largepage = 1;
2485 }
e930bffe 2486 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2487 smp_rmb();
35149e21 2488 pfn = gfn_to_pfn(vcpu->kvm, gfn);
72dc67a6 2489
35149e21
AL
2490 if (is_error_pfn(pfn)) {
2491 kvm_release_pfn_clean(pfn);
d196e343
AK
2492 return;
2493 }
d7824fff 2494 vcpu->arch.update_pte.gfn = gfn;
35149e21 2495 vcpu->arch.update_pte.pfn = pfn;
d7824fff
AK
2496}
2497
1b7fcd32
AK
2498static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
2499{
2500 u64 *spte = vcpu->arch.last_pte_updated;
2501
2502 if (spte
2503 && vcpu->arch.last_pte_gfn == gfn
2504 && shadow_accessed_mask
2505 && !(*spte & shadow_accessed_mask)
2506 && is_shadow_present_pte(*spte))
2507 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
2508}
2509
09072daf 2510void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
ad218f85
MT
2511 const u8 *new, int bytes,
2512 bool guest_initiated)
da4a00f0 2513{
9b7a0325 2514 gfn_t gfn = gpa >> PAGE_SHIFT;
4db35314 2515 struct kvm_mmu_page *sp;
0e7bc4b9 2516 struct hlist_node *node, *n;
9b7a0325
AK
2517 struct hlist_head *bucket;
2518 unsigned index;
489f1d65 2519 u64 entry, gentry;
9b7a0325 2520 u64 *spte;
9b7a0325 2521 unsigned offset = offset_in_page(gpa);
0e7bc4b9 2522 unsigned pte_size;
9b7a0325 2523 unsigned page_offset;
0e7bc4b9 2524 unsigned misaligned;
fce0657f 2525 unsigned quadrant;
9b7a0325 2526 int level;
86a5ba02 2527 int flooded = 0;
ac1b714e 2528 int npte;
489f1d65 2529 int r;
9b7a0325 2530
b8688d51 2531 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
d7824fff 2532 mmu_guess_page_from_pte_write(vcpu, gpa, new, bytes);
aaee2c94 2533 spin_lock(&vcpu->kvm->mmu_lock);
1b7fcd32 2534 kvm_mmu_access_page(vcpu, gfn);
eb787d10 2535 kvm_mmu_free_some_pages(vcpu);
4cee5764 2536 ++vcpu->kvm->stat.mmu_pte_write;
c7addb90 2537 kvm_mmu_audit(vcpu, "pre pte write");
ad218f85
MT
2538 if (guest_initiated) {
2539 if (gfn == vcpu->arch.last_pt_write_gfn
2540 && !last_updated_pte_accessed(vcpu)) {
2541 ++vcpu->arch.last_pt_write_count;
2542 if (vcpu->arch.last_pt_write_count >= 3)
2543 flooded = 1;
2544 } else {
2545 vcpu->arch.last_pt_write_gfn = gfn;
2546 vcpu->arch.last_pt_write_count = 1;
2547 vcpu->arch.last_pte_updated = NULL;
2548 }
86a5ba02 2549 }
1ae0a13d 2550 index = kvm_page_table_hashfn(gfn);
f05e70ac 2551 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
4db35314 2552 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link) {
f6e2c02b 2553 if (sp->gfn != gfn || sp->role.direct || sp->role.invalid)
9b7a0325 2554 continue;
4db35314 2555 pte_size = sp->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
0e7bc4b9 2556 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
e925c5ba 2557 misaligned |= bytes < 4;
86a5ba02 2558 if (misaligned || flooded) {
0e7bc4b9
AK
2559 /*
2560 * Misaligned accesses are too much trouble to fix
2561 * up; also, they usually indicate a page is not used
2562 * as a page table.
86a5ba02
AK
2563 *
2564 * If we're seeing too many writes to a page,
2565 * it may no longer be a page table, or we may be
2566 * forking, in which case it is better to unmap the
2567 * page.
0e7bc4b9
AK
2568 */
2569 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4db35314 2570 gpa, bytes, sp->role.word);
07385413
MT
2571 if (kvm_mmu_zap_page(vcpu->kvm, sp))
2572 n = bucket->first;
4cee5764 2573 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
2574 continue;
2575 }
9b7a0325 2576 page_offset = offset;
4db35314 2577 level = sp->role.level;
ac1b714e 2578 npte = 1;
4db35314 2579 if (sp->role.glevels == PT32_ROOT_LEVEL) {
ac1b714e
AK
2580 page_offset <<= 1; /* 32->64 */
2581 /*
2582 * A 32-bit pde maps 4MB while the shadow pdes map
2583 * only 2MB. So we need to double the offset again
2584 * and zap two pdes instead of one.
2585 */
2586 if (level == PT32_ROOT_LEVEL) {
6b8d0f9b 2587 page_offset &= ~7; /* kill rounding error */
ac1b714e
AK
2588 page_offset <<= 1;
2589 npte = 2;
2590 }
fce0657f 2591 quadrant = page_offset >> PAGE_SHIFT;
9b7a0325 2592 page_offset &= ~PAGE_MASK;
4db35314 2593 if (quadrant != sp->role.quadrant)
fce0657f 2594 continue;
9b7a0325 2595 }
4db35314 2596 spte = &sp->spt[page_offset / sizeof(*spte)];
489f1d65
DE
2597 if ((gpa & (pte_size - 1)) || (bytes < pte_size)) {
2598 gentry = 0;
2599 r = kvm_read_guest_atomic(vcpu->kvm,
2600 gpa & ~(u64)(pte_size - 1),
2601 &gentry, pte_size);
2602 new = (const void *)&gentry;
2603 if (r < 0)
2604 new = NULL;
2605 }
ac1b714e 2606 while (npte--) {
79539cec 2607 entry = *spte;
4db35314 2608 mmu_pte_write_zap_pte(vcpu, sp, spte);
489f1d65
DE
2609 if (new)
2610 mmu_pte_write_new_pte(vcpu, sp, spte, new);
79539cec 2611 mmu_pte_write_flush_tlb(vcpu, entry, *spte);
ac1b714e 2612 ++spte;
9b7a0325 2613 }
9b7a0325 2614 }
c7addb90 2615 kvm_mmu_audit(vcpu, "post pte write");
aaee2c94 2616 spin_unlock(&vcpu->kvm->mmu_lock);
35149e21
AL
2617 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
2618 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
2619 vcpu->arch.update_pte.pfn = bad_pfn;
d7824fff 2620 }
da4a00f0
AK
2621}
2622
a436036b
AK
2623int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
2624{
10589a46
MT
2625 gpa_t gpa;
2626 int r;
a436036b 2627
10589a46 2628 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
10589a46 2629
aaee2c94 2630 spin_lock(&vcpu->kvm->mmu_lock);
10589a46 2631 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
aaee2c94 2632 spin_unlock(&vcpu->kvm->mmu_lock);
10589a46 2633 return r;
a436036b 2634}
577bdc49 2635EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
a436036b 2636
22d95b12 2637void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
ebeace86 2638{
f05e70ac 2639 while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
4db35314 2640 struct kvm_mmu_page *sp;
ebeace86 2641
f05e70ac 2642 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
4db35314
AK
2643 struct kvm_mmu_page, link);
2644 kvm_mmu_zap_page(vcpu->kvm, sp);
4cee5764 2645 ++vcpu->kvm->stat.mmu_recycled;
ebeace86
AK
2646 }
2647}
ebeace86 2648
3067714c
AK
2649int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
2650{
2651 int r;
2652 enum emulation_result er;
2653
ad312c7c 2654 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
3067714c
AK
2655 if (r < 0)
2656 goto out;
2657
2658 if (!r) {
2659 r = 1;
2660 goto out;
2661 }
2662
b733bfb5
AK
2663 r = mmu_topup_memory_caches(vcpu);
2664 if (r)
2665 goto out;
2666
3067714c 2667 er = emulate_instruction(vcpu, vcpu->run, cr2, error_code, 0);
3067714c
AK
2668
2669 switch (er) {
2670 case EMULATE_DONE:
2671 return 1;
2672 case EMULATE_DO_MMIO:
2673 ++vcpu->stat.mmio_exits;
2674 return 0;
2675 case EMULATE_FAIL:
3f5d18a9
AK
2676 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2677 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
2678 return 0;
3067714c
AK
2679 default:
2680 BUG();
2681 }
2682out:
3067714c
AK
2683 return r;
2684}
2685EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
2686
a7052897
MT
2687void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
2688{
a7052897 2689 vcpu->arch.mmu.invlpg(vcpu, gva);
a7052897
MT
2690 kvm_mmu_flush_tlb(vcpu);
2691 ++vcpu->stat.invlpg;
2692}
2693EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
2694
18552672
JR
2695void kvm_enable_tdp(void)
2696{
2697 tdp_enabled = true;
2698}
2699EXPORT_SYMBOL_GPL(kvm_enable_tdp);
2700
5f4cb662
JR
2701void kvm_disable_tdp(void)
2702{
2703 tdp_enabled = false;
2704}
2705EXPORT_SYMBOL_GPL(kvm_disable_tdp);
2706
6aa8b732
AK
2707static void free_mmu_pages(struct kvm_vcpu *vcpu)
2708{
ad312c7c 2709 free_page((unsigned long)vcpu->arch.mmu.pae_root);
6aa8b732
AK
2710}
2711
2712static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
2713{
17ac10ad 2714 struct page *page;
6aa8b732
AK
2715 int i;
2716
2717 ASSERT(vcpu);
2718
f05e70ac
ZX
2719 if (vcpu->kvm->arch.n_requested_mmu_pages)
2720 vcpu->kvm->arch.n_free_mmu_pages =
2721 vcpu->kvm->arch.n_requested_mmu_pages;
82ce2c96 2722 else
f05e70ac
ZX
2723 vcpu->kvm->arch.n_free_mmu_pages =
2724 vcpu->kvm->arch.n_alloc_mmu_pages;
17ac10ad
AK
2725 /*
2726 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
2727 * Therefore we need to allocate shadow page tables in the first
2728 * 4GB of memory, which happens to fit the DMA32 zone.
2729 */
2730 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
2731 if (!page)
2732 goto error_1;
ad312c7c 2733 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 2734 for (i = 0; i < 4; ++i)
ad312c7c 2735 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 2736
6aa8b732
AK
2737 return 0;
2738
2739error_1:
2740 free_mmu_pages(vcpu);
2741 return -ENOMEM;
2742}
2743
8018c27b 2744int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 2745{
6aa8b732 2746 ASSERT(vcpu);
ad312c7c 2747 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2748
8018c27b
IM
2749 return alloc_mmu_pages(vcpu);
2750}
6aa8b732 2751
8018c27b
IM
2752int kvm_mmu_setup(struct kvm_vcpu *vcpu)
2753{
2754 ASSERT(vcpu);
ad312c7c 2755 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 2756
8018c27b 2757 return init_kvm_mmu(vcpu);
6aa8b732
AK
2758}
2759
2760void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
2761{
2762 ASSERT(vcpu);
2763
2764 destroy_kvm_mmu(vcpu);
2765 free_mmu_pages(vcpu);
714b93da 2766 mmu_free_memory_caches(vcpu);
6aa8b732
AK
2767}
2768
90cb0529 2769void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 2770{
4db35314 2771 struct kvm_mmu_page *sp;
6aa8b732 2772
f05e70ac 2773 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
6aa8b732
AK
2774 int i;
2775 u64 *pt;
2776
291f26bc 2777 if (!test_bit(slot, sp->slot_bitmap))
6aa8b732
AK
2778 continue;
2779
4db35314 2780 pt = sp->spt;
6aa8b732
AK
2781 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2782 /* avoid RMW */
9647c14c 2783 if (pt[i] & PT_WRITABLE_MASK)
6aa8b732 2784 pt[i] &= ~PT_WRITABLE_MASK;
6aa8b732 2785 }
171d595d 2786 kvm_flush_remote_tlbs(kvm);
6aa8b732 2787}
37a7d8b0 2788
90cb0529 2789void kvm_mmu_zap_all(struct kvm *kvm)
e0fa826f 2790{
4db35314 2791 struct kvm_mmu_page *sp, *node;
e0fa826f 2792
aaee2c94 2793 spin_lock(&kvm->mmu_lock);
f05e70ac 2794 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
07385413
MT
2795 if (kvm_mmu_zap_page(kvm, sp))
2796 node = container_of(kvm->arch.active_mmu_pages.next,
2797 struct kvm_mmu_page, link);
aaee2c94 2798 spin_unlock(&kvm->mmu_lock);
e0fa826f 2799
90cb0529 2800 kvm_flush_remote_tlbs(kvm);
e0fa826f
DL
2801}
2802
8b2cf73c 2803static void kvm_mmu_remove_one_alloc_mmu_page(struct kvm *kvm)
3ee16c81
IE
2804{
2805 struct kvm_mmu_page *page;
2806
2807 page = container_of(kvm->arch.active_mmu_pages.prev,
2808 struct kvm_mmu_page, link);
2809 kvm_mmu_zap_page(kvm, page);
2810}
2811
2812static int mmu_shrink(int nr_to_scan, gfp_t gfp_mask)
2813{
2814 struct kvm *kvm;
2815 struct kvm *kvm_freed = NULL;
2816 int cache_count = 0;
2817
2818 spin_lock(&kvm_lock);
2819
2820 list_for_each_entry(kvm, &vm_list, vm_list) {
2821 int npages;
2822
5a4c9288
MT
2823 if (!down_read_trylock(&kvm->slots_lock))
2824 continue;
3ee16c81
IE
2825 spin_lock(&kvm->mmu_lock);
2826 npages = kvm->arch.n_alloc_mmu_pages -
2827 kvm->arch.n_free_mmu_pages;
2828 cache_count += npages;
2829 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
2830 kvm_mmu_remove_one_alloc_mmu_page(kvm);
2831 cache_count--;
2832 kvm_freed = kvm;
2833 }
2834 nr_to_scan--;
2835
2836 spin_unlock(&kvm->mmu_lock);
5a4c9288 2837 up_read(&kvm->slots_lock);
3ee16c81
IE
2838 }
2839 if (kvm_freed)
2840 list_move_tail(&kvm_freed->vm_list, &vm_list);
2841
2842 spin_unlock(&kvm_lock);
2843
2844 return cache_count;
2845}
2846
2847static struct shrinker mmu_shrinker = {
2848 .shrink = mmu_shrink,
2849 .seeks = DEFAULT_SEEKS * 10,
2850};
2851
2ddfd20e 2852static void mmu_destroy_caches(void)
b5a33a75
AK
2853{
2854 if (pte_chain_cache)
2855 kmem_cache_destroy(pte_chain_cache);
2856 if (rmap_desc_cache)
2857 kmem_cache_destroy(rmap_desc_cache);
d3d25b04
AK
2858 if (mmu_page_header_cache)
2859 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
2860}
2861
3ee16c81
IE
2862void kvm_mmu_module_exit(void)
2863{
2864 mmu_destroy_caches();
2865 unregister_shrinker(&mmu_shrinker);
2866}
2867
b5a33a75
AK
2868int kvm_mmu_module_init(void)
2869{
2870 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
2871 sizeof(struct kvm_pte_chain),
20c2df83 2872 0, 0, NULL);
b5a33a75
AK
2873 if (!pte_chain_cache)
2874 goto nomem;
2875 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
2876 sizeof(struct kvm_rmap_desc),
20c2df83 2877 0, 0, NULL);
b5a33a75
AK
2878 if (!rmap_desc_cache)
2879 goto nomem;
2880
d3d25b04
AK
2881 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
2882 sizeof(struct kvm_mmu_page),
20c2df83 2883 0, 0, NULL);
d3d25b04
AK
2884 if (!mmu_page_header_cache)
2885 goto nomem;
2886
3ee16c81
IE
2887 register_shrinker(&mmu_shrinker);
2888
b5a33a75
AK
2889 return 0;
2890
2891nomem:
3ee16c81 2892 mmu_destroy_caches();
b5a33a75
AK
2893 return -ENOMEM;
2894}
2895
3ad82a7e
ZX
2896/*
2897 * Caculate mmu pages needed for kvm.
2898 */
2899unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
2900{
2901 int i;
2902 unsigned int nr_mmu_pages;
2903 unsigned int nr_pages = 0;
2904
2905 for (i = 0; i < kvm->nmemslots; i++)
2906 nr_pages += kvm->memslots[i].npages;
2907
2908 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
2909 nr_mmu_pages = max(nr_mmu_pages,
2910 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
2911
2912 return nr_mmu_pages;
2913}
2914
2f333bcb
MT
2915static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2916 unsigned len)
2917{
2918 if (len > buffer->len)
2919 return NULL;
2920 return buffer->ptr;
2921}
2922
2923static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2924 unsigned len)
2925{
2926 void *ret;
2927
2928 ret = pv_mmu_peek_buffer(buffer, len);
2929 if (!ret)
2930 return ret;
2931 buffer->ptr += len;
2932 buffer->len -= len;
2933 buffer->processed += len;
2934 return ret;
2935}
2936
2937static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
2938 gpa_t addr, gpa_t value)
2939{
2940 int bytes = 8;
2941 int r;
2942
2943 if (!is_long_mode(vcpu) && !is_pae(vcpu))
2944 bytes = 4;
2945
2946 r = mmu_topup_memory_caches(vcpu);
2947 if (r)
2948 return r;
2949
3200f405 2950 if (!emulator_write_phys(vcpu, addr, &value, bytes))
2f333bcb
MT
2951 return -EFAULT;
2952
2953 return 1;
2954}
2955
2956static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2957{
a8cd0244 2958 kvm_set_cr3(vcpu, vcpu->arch.cr3);
2f333bcb
MT
2959 return 1;
2960}
2961
2962static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
2963{
2964 spin_lock(&vcpu->kvm->mmu_lock);
2965 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
2966 spin_unlock(&vcpu->kvm->mmu_lock);
2967 return 1;
2968}
2969
2970static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
2971 struct kvm_pv_mmu_op_buffer *buffer)
2972{
2973 struct kvm_mmu_op_header *header;
2974
2975 header = pv_mmu_peek_buffer(buffer, sizeof *header);
2976 if (!header)
2977 return 0;
2978 switch (header->op) {
2979 case KVM_MMU_OP_WRITE_PTE: {
2980 struct kvm_mmu_op_write_pte *wpte;
2981
2982 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
2983 if (!wpte)
2984 return 0;
2985 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
2986 wpte->pte_val);
2987 }
2988 case KVM_MMU_OP_FLUSH_TLB: {
2989 struct kvm_mmu_op_flush_tlb *ftlb;
2990
2991 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
2992 if (!ftlb)
2993 return 0;
2994 return kvm_pv_mmu_flush_tlb(vcpu);
2995 }
2996 case KVM_MMU_OP_RELEASE_PT: {
2997 struct kvm_mmu_op_release_pt *rpt;
2998
2999 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
3000 if (!rpt)
3001 return 0;
3002 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
3003 }
3004 default: return 0;
3005 }
3006}
3007
3008int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
3009 gpa_t addr, unsigned long *ret)
3010{
3011 int r;
6ad18fba 3012 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
2f333bcb 3013
6ad18fba
DH
3014 buffer->ptr = buffer->buf;
3015 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
3016 buffer->processed = 0;
2f333bcb 3017
6ad18fba 3018 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
2f333bcb
MT
3019 if (r)
3020 goto out;
3021
6ad18fba
DH
3022 while (buffer->len) {
3023 r = kvm_pv_mmu_op_one(vcpu, buffer);
2f333bcb
MT
3024 if (r < 0)
3025 goto out;
3026 if (r == 0)
3027 break;
3028 }
3029
3030 r = 1;
3031out:
6ad18fba 3032 *ret = buffer->processed;
2f333bcb
MT
3033 return r;
3034}
3035
37a7d8b0
AK
3036#ifdef AUDIT
3037
3038static const char *audit_msg;
3039
3040static gva_t canonicalize(gva_t gva)
3041{
3042#ifdef CONFIG_X86_64
3043 gva = (long long)(gva << 16) >> 16;
3044#endif
3045 return gva;
3046}
3047
08a3732b
MT
3048
3049typedef void (*inspect_spte_fn) (struct kvm *kvm, struct kvm_mmu_page *sp,
3050 u64 *sptep);
3051
3052static void __mmu_spte_walk(struct kvm *kvm, struct kvm_mmu_page *sp,
3053 inspect_spte_fn fn)
3054{
3055 int i;
3056
3057 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3058 u64 ent = sp->spt[i];
3059
3060 if (is_shadow_present_pte(ent)) {
3061 if (sp->role.level > 1 && !is_large_pte(ent)) {
3062 struct kvm_mmu_page *child;
3063 child = page_header(ent & PT64_BASE_ADDR_MASK);
3064 __mmu_spte_walk(kvm, child, fn);
3065 }
3066 if (sp->role.level == 1)
3067 fn(kvm, sp, &sp->spt[i]);
3068 }
3069 }
3070}
3071
3072static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn)
3073{
3074 int i;
3075 struct kvm_mmu_page *sp;
3076
3077 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3078 return;
3079 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3080 hpa_t root = vcpu->arch.mmu.root_hpa;
3081 sp = page_header(root);
3082 __mmu_spte_walk(vcpu->kvm, sp, fn);
3083 return;
3084 }
3085 for (i = 0; i < 4; ++i) {
3086 hpa_t root = vcpu->arch.mmu.pae_root[i];
3087
3088 if (root && VALID_PAGE(root)) {
3089 root &= PT64_BASE_ADDR_MASK;
3090 sp = page_header(root);
3091 __mmu_spte_walk(vcpu->kvm, sp, fn);
3092 }
3093 }
3094 return;
3095}
3096
37a7d8b0
AK
3097static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
3098 gva_t va, int level)
3099{
3100 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
3101 int i;
3102 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
3103
3104 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
3105 u64 ent = pt[i];
3106
c7addb90 3107 if (ent == shadow_trap_nonpresent_pte)
37a7d8b0
AK
3108 continue;
3109
3110 va = canonicalize(va);
c7addb90
AK
3111 if (level > 1) {
3112 if (ent == shadow_notrap_nonpresent_pte)
3113 printk(KERN_ERR "audit: (%s) nontrapping pte"
3114 " in nonleaf level: levels %d gva %lx"
3115 " level %d pte %llx\n", audit_msg,
ad312c7c 3116 vcpu->arch.mmu.root_level, va, level, ent);
34382539
JK
3117 else
3118 audit_mappings_page(vcpu, ent, va, level - 1);
c7addb90 3119 } else {
ad312c7c 3120 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, va);
34382539
JK
3121 gfn_t gfn = gpa >> PAGE_SHIFT;
3122 pfn_t pfn = gfn_to_pfn(vcpu->kvm, gfn);
3123 hpa_t hpa = (hpa_t)pfn << PAGE_SHIFT;
37a7d8b0 3124
c7addb90 3125 if (is_shadow_present_pte(ent)
37a7d8b0 3126 && (ent & PT64_BASE_ADDR_MASK) != hpa)
c7addb90
AK
3127 printk(KERN_ERR "xx audit error: (%s) levels %d"
3128 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
ad312c7c 3129 audit_msg, vcpu->arch.mmu.root_level,
d77c26fc
MD
3130 va, gpa, hpa, ent,
3131 is_shadow_present_pte(ent));
c7addb90
AK
3132 else if (ent == shadow_notrap_nonpresent_pte
3133 && !is_error_hpa(hpa))
3134 printk(KERN_ERR "audit: (%s) notrap shadow,"
3135 " valid guest gva %lx\n", audit_msg, va);
35149e21 3136 kvm_release_pfn_clean(pfn);
c7addb90 3137
37a7d8b0
AK
3138 }
3139 }
3140}
3141
3142static void audit_mappings(struct kvm_vcpu *vcpu)
3143{
1ea252af 3144 unsigned i;
37a7d8b0 3145
ad312c7c
ZX
3146 if (vcpu->arch.mmu.root_level == 4)
3147 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
37a7d8b0
AK
3148 else
3149 for (i = 0; i < 4; ++i)
ad312c7c 3150 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
37a7d8b0 3151 audit_mappings_page(vcpu,
ad312c7c 3152 vcpu->arch.mmu.pae_root[i],
37a7d8b0
AK
3153 i << 30,
3154 2);
3155}
3156
3157static int count_rmaps(struct kvm_vcpu *vcpu)
3158{
3159 int nmaps = 0;
3160 int i, j, k;
3161
3162 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
3163 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
3164 struct kvm_rmap_desc *d;
3165
3166 for (j = 0; j < m->npages; ++j) {
290fc38d 3167 unsigned long *rmapp = &m->rmap[j];
37a7d8b0 3168
290fc38d 3169 if (!*rmapp)
37a7d8b0 3170 continue;
290fc38d 3171 if (!(*rmapp & 1)) {
37a7d8b0
AK
3172 ++nmaps;
3173 continue;
3174 }
290fc38d 3175 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
37a7d8b0
AK
3176 while (d) {
3177 for (k = 0; k < RMAP_EXT; ++k)
d555c333 3178 if (d->sptes[k])
37a7d8b0
AK
3179 ++nmaps;
3180 else
3181 break;
3182 d = d->more;
3183 }
3184 }
3185 }
3186 return nmaps;
3187}
3188
08a3732b
MT
3189void inspect_spte_has_rmap(struct kvm *kvm, struct kvm_mmu_page *sp, u64 *sptep)
3190{
3191 unsigned long *rmapp;
3192 struct kvm_mmu_page *rev_sp;
3193 gfn_t gfn;
3194
3195 if (*sptep & PT_WRITABLE_MASK) {
3196 rev_sp = page_header(__pa(sptep));
3197 gfn = rev_sp->gfns[sptep - rev_sp->spt];
3198
3199 if (!gfn_to_memslot(kvm, gfn)) {
3200 if (!printk_ratelimit())
3201 return;
3202 printk(KERN_ERR "%s: no memslot for gfn %ld\n",
3203 audit_msg, gfn);
3204 printk(KERN_ERR "%s: index %ld of sp (gfn=%lx)\n",
3205 audit_msg, sptep - rev_sp->spt,
3206 rev_sp->gfn);
3207 dump_stack();
3208 return;
3209 }
3210
3211 rmapp = gfn_to_rmap(kvm, rev_sp->gfns[sptep - rev_sp->spt], 0);
3212 if (!*rmapp) {
3213 if (!printk_ratelimit())
3214 return;
3215 printk(KERN_ERR "%s: no rmap for writable spte %llx\n",
3216 audit_msg, *sptep);
3217 dump_stack();
3218 }
3219 }
3220
3221}
3222
3223void audit_writable_sptes_have_rmaps(struct kvm_vcpu *vcpu)
3224{
3225 mmu_spte_walk(vcpu, inspect_spte_has_rmap);
3226}
3227
3228static void check_writable_mappings_rmap(struct kvm_vcpu *vcpu)
37a7d8b0 3229{
4db35314 3230 struct kvm_mmu_page *sp;
37a7d8b0
AK
3231 int i;
3232
f05e70ac 3233 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
4db35314 3234 u64 *pt = sp->spt;
37a7d8b0 3235
4db35314 3236 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
37a7d8b0
AK
3237 continue;
3238
3239 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3240 u64 ent = pt[i];
3241
3242 if (!(ent & PT_PRESENT_MASK))
3243 continue;
3244 if (!(ent & PT_WRITABLE_MASK))
3245 continue;
08a3732b 3246 inspect_spte_has_rmap(vcpu->kvm, sp, &pt[i]);
37a7d8b0
AK
3247 }
3248 }
08a3732b 3249 return;
37a7d8b0
AK
3250}
3251
3252static void audit_rmap(struct kvm_vcpu *vcpu)
3253{
08a3732b
MT
3254 check_writable_mappings_rmap(vcpu);
3255 count_rmaps(vcpu);
37a7d8b0
AK
3256}
3257
3258static void audit_write_protection(struct kvm_vcpu *vcpu)
3259{
4db35314 3260 struct kvm_mmu_page *sp;
290fc38d
IE
3261 struct kvm_memory_slot *slot;
3262 unsigned long *rmapp;
3263 gfn_t gfn;
37a7d8b0 3264
f05e70ac 3265 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
f6e2c02b 3266 if (sp->role.direct)
37a7d8b0
AK
3267 continue;
3268
4db35314 3269 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
2843099f 3270 slot = gfn_to_memslot_unaliased(vcpu->kvm, sp->gfn);
290fc38d
IE
3271 rmapp = &slot->rmap[gfn - slot->base_gfn];
3272 if (*rmapp)
37a7d8b0
AK
3273 printk(KERN_ERR "%s: (%s) shadow page has writable"
3274 " mappings: gfn %lx role %x\n",
b8688d51 3275 __func__, audit_msg, sp->gfn,
4db35314 3276 sp->role.word);
37a7d8b0
AK
3277 }
3278}
3279
3280static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
3281{
3282 int olddbg = dbg;
3283
3284 dbg = 0;
3285 audit_msg = msg;
3286 audit_rmap(vcpu);
3287 audit_write_protection(vcpu);
3288 audit_mappings(vcpu);
08a3732b 3289 audit_writable_sptes_have_rmaps(vcpu);
37a7d8b0
AK
3290 dbg = olddbg;
3291}
3292
3293#endif