KVM: MMU: make for_each_shadow_entry aware of largepages
[deliverable/linux.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;
4d88954d
MT
1305
1306 if (iterator->level == PT_PAGE_TABLE_LEVEL)
1307 if (is_large_pte(*iterator->sptep))
1308 return false;
1309
2d11123a
AK
1310 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
1311 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
1312 return true;
1313}
1314
1315static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
1316{
1317 iterator->shadow_addr = *iterator->sptep & PT64_BASE_ADDR_MASK;
1318 --iterator->level;
1319}
1320
90cb0529 1321static void kvm_mmu_page_unlink_children(struct kvm *kvm,
4db35314 1322 struct kvm_mmu_page *sp)
a436036b 1323{
697fe2e2
AK
1324 unsigned i;
1325 u64 *pt;
1326 u64 ent;
1327
4db35314 1328 pt = sp->spt;
697fe2e2 1329
697fe2e2
AK
1330 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1331 ent = pt[i];
1332
05da4558 1333 if (is_shadow_present_pte(ent)) {
776e6633 1334 if (!is_last_spte(ent, sp->role.level)) {
05da4558
MT
1335 ent &= PT64_BASE_ADDR_MASK;
1336 mmu_page_remove_parent_pte(page_header(ent),
1337 &pt[i]);
1338 } else {
776e6633
MT
1339 if (is_large_pte(ent))
1340 --kvm->stat.lpages;
05da4558
MT
1341 rmap_remove(kvm, &pt[i]);
1342 }
1343 }
c7addb90 1344 pt[i] = shadow_trap_nonpresent_pte;
697fe2e2 1345 }
a436036b
AK
1346}
1347
4db35314 1348static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7 1349{
4db35314 1350 mmu_page_remove_parent_pte(sp, parent_pte);
a436036b
AK
1351}
1352
12b7d28f
AK
1353static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
1354{
1355 int i;
988a2cae 1356 struct kvm_vcpu *vcpu;
12b7d28f 1357
988a2cae
GN
1358 kvm_for_each_vcpu(i, vcpu, kvm)
1359 vcpu->arch.last_pte_updated = NULL;
12b7d28f
AK
1360}
1361
31aa2b44 1362static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
a436036b
AK
1363{
1364 u64 *parent_pte;
1365
4db35314
AK
1366 while (sp->multimapped || sp->parent_pte) {
1367 if (!sp->multimapped)
1368 parent_pte = sp->parent_pte;
a436036b
AK
1369 else {
1370 struct kvm_pte_chain *chain;
1371
4db35314 1372 chain = container_of(sp->parent_ptes.first,
a436036b
AK
1373 struct kvm_pte_chain, link);
1374 parent_pte = chain->parent_ptes[0];
1375 }
697fe2e2 1376 BUG_ON(!parent_pte);
4db35314 1377 kvm_mmu_put_page(sp, parent_pte);
d555c333 1378 __set_spte(parent_pte, shadow_trap_nonpresent_pte);
a436036b 1379 }
31aa2b44
AK
1380}
1381
60c8aec6
MT
1382static int mmu_zap_unsync_children(struct kvm *kvm,
1383 struct kvm_mmu_page *parent)
4731d4c7 1384{
60c8aec6
MT
1385 int i, zapped = 0;
1386 struct mmu_page_path parents;
1387 struct kvm_mmu_pages pages;
4731d4c7 1388
60c8aec6 1389 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
4731d4c7 1390 return 0;
60c8aec6
MT
1391
1392 kvm_mmu_pages_init(parent, &parents, &pages);
1393 while (mmu_unsync_walk(parent, &pages)) {
1394 struct kvm_mmu_page *sp;
1395
1396 for_each_sp(pages, sp, parents, i) {
1397 kvm_mmu_zap_page(kvm, sp);
1398 mmu_pages_clear_parents(&parents);
1399 }
1400 zapped += pages.nr;
1401 kvm_mmu_pages_init(parent, &parents, &pages);
1402 }
1403
1404 return zapped;
4731d4c7
MT
1405}
1406
07385413 1407static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp)
31aa2b44 1408{
4731d4c7 1409 int ret;
31aa2b44 1410 ++kvm->stat.mmu_shadow_zapped;
4731d4c7 1411 ret = mmu_zap_unsync_children(kvm, sp);
4db35314 1412 kvm_mmu_page_unlink_children(kvm, sp);
31aa2b44 1413 kvm_mmu_unlink_parents(kvm, sp);
5b5c6a5a 1414 kvm_flush_remote_tlbs(kvm);
f6e2c02b 1415 if (!sp->role.invalid && !sp->role.direct)
5b5c6a5a 1416 unaccount_shadowed(kvm, sp->gfn);
4731d4c7
MT
1417 if (sp->unsync)
1418 kvm_unlink_unsync_page(kvm, sp);
4db35314
AK
1419 if (!sp->root_count) {
1420 hlist_del(&sp->hash_link);
1421 kvm_mmu_free_page(kvm, sp);
2e53d63a 1422 } else {
2e53d63a 1423 sp->role.invalid = 1;
5b5c6a5a 1424 list_move(&sp->link, &kvm->arch.active_mmu_pages);
2e53d63a
MT
1425 kvm_reload_remote_mmus(kvm);
1426 }
12b7d28f 1427 kvm_mmu_reset_last_pte_updated(kvm);
4731d4c7 1428 return ret;
a436036b
AK
1429}
1430
82ce2c96
IE
1431/*
1432 * Changing the number of mmu pages allocated to the vm
1433 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
1434 */
1435void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
1436{
025dbbf3
MT
1437 int used_pages;
1438
1439 used_pages = kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages;
1440 used_pages = max(0, used_pages);
1441
82ce2c96
IE
1442 /*
1443 * If we set the number of mmu pages to be smaller be than the
1444 * number of actived pages , we must to free some mmu pages before we
1445 * change the value
1446 */
1447
025dbbf3
MT
1448 if (used_pages > kvm_nr_mmu_pages) {
1449 while (used_pages > kvm_nr_mmu_pages) {
82ce2c96
IE
1450 struct kvm_mmu_page *page;
1451
f05e70ac 1452 page = container_of(kvm->arch.active_mmu_pages.prev,
82ce2c96
IE
1453 struct kvm_mmu_page, link);
1454 kvm_mmu_zap_page(kvm, page);
025dbbf3 1455 used_pages--;
82ce2c96 1456 }
f05e70ac 1457 kvm->arch.n_free_mmu_pages = 0;
82ce2c96
IE
1458 }
1459 else
f05e70ac
ZX
1460 kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages
1461 - kvm->arch.n_alloc_mmu_pages;
82ce2c96 1462
f05e70ac 1463 kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
82ce2c96
IE
1464}
1465
f67a46f4 1466static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
a436036b
AK
1467{
1468 unsigned index;
1469 struct hlist_head *bucket;
4db35314 1470 struct kvm_mmu_page *sp;
a436036b
AK
1471 struct hlist_node *node, *n;
1472 int r;
1473
b8688d51 1474 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
a436036b 1475 r = 0;
1ae0a13d 1476 index = kvm_page_table_hashfn(gfn);
f05e70ac 1477 bucket = &kvm->arch.mmu_page_hash[index];
4db35314 1478 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link)
f6e2c02b 1479 if (sp->gfn == gfn && !sp->role.direct) {
b8688d51 1480 pgprintk("%s: gfn %lx role %x\n", __func__, gfn,
4db35314 1481 sp->role.word);
a436036b 1482 r = 1;
07385413
MT
1483 if (kvm_mmu_zap_page(kvm, sp))
1484 n = bucket->first;
a436036b
AK
1485 }
1486 return r;
cea0f0e7
AK
1487}
1488
f67a46f4 1489static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
97a0a01e 1490{
4677a3b6
AK
1491 unsigned index;
1492 struct hlist_head *bucket;
4db35314 1493 struct kvm_mmu_page *sp;
4677a3b6 1494 struct hlist_node *node, *nn;
97a0a01e 1495
4677a3b6
AK
1496 index = kvm_page_table_hashfn(gfn);
1497 bucket = &kvm->arch.mmu_page_hash[index];
1498 hlist_for_each_entry_safe(sp, node, nn, bucket, hash_link) {
f6e2c02b 1499 if (sp->gfn == gfn && !sp->role.direct
4677a3b6
AK
1500 && !sp->role.invalid) {
1501 pgprintk("%s: zap %lx %x\n",
1502 __func__, gfn, sp->role.word);
1503 kvm_mmu_zap_page(kvm, sp);
1504 }
97a0a01e
AK
1505 }
1506}
1507
38c335f1 1508static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
6aa8b732 1509{
38c335f1 1510 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gfn));
4db35314 1511 struct kvm_mmu_page *sp = page_header(__pa(pte));
6aa8b732 1512
291f26bc 1513 __set_bit(slot, sp->slot_bitmap);
6aa8b732
AK
1514}
1515
6844dec6
MT
1516static void mmu_convert_notrap(struct kvm_mmu_page *sp)
1517{
1518 int i;
1519 u64 *pt = sp->spt;
1520
1521 if (shadow_trap_nonpresent_pte == shadow_notrap_nonpresent_pte)
1522 return;
1523
1524 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1525 if (pt[i] == shadow_notrap_nonpresent_pte)
d555c333 1526 __set_spte(&pt[i], shadow_trap_nonpresent_pte);
6844dec6
MT
1527 }
1528}
1529
039576c0
AK
1530struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
1531{
72dc67a6
IE
1532 struct page *page;
1533
ad312c7c 1534 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
039576c0
AK
1535
1536 if (gpa == UNMAPPED_GVA)
1537 return NULL;
72dc67a6 1538
72dc67a6 1539 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
72dc67a6
IE
1540
1541 return page;
039576c0
AK
1542}
1543
74be52e3
SY
1544/*
1545 * The function is based on mtrr_type_lookup() in
1546 * arch/x86/kernel/cpu/mtrr/generic.c
1547 */
1548static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
1549 u64 start, u64 end)
1550{
1551 int i;
1552 u64 base, mask;
1553 u8 prev_match, curr_match;
1554 int num_var_ranges = KVM_NR_VAR_MTRR;
1555
1556 if (!mtrr_state->enabled)
1557 return 0xFF;
1558
1559 /* Make end inclusive end, instead of exclusive */
1560 end--;
1561
1562 /* Look in fixed ranges. Just return the type as per start */
1563 if (mtrr_state->have_fixed && (start < 0x100000)) {
1564 int idx;
1565
1566 if (start < 0x80000) {
1567 idx = 0;
1568 idx += (start >> 16);
1569 return mtrr_state->fixed_ranges[idx];
1570 } else if (start < 0xC0000) {
1571 idx = 1 * 8;
1572 idx += ((start - 0x80000) >> 14);
1573 return mtrr_state->fixed_ranges[idx];
1574 } else if (start < 0x1000000) {
1575 idx = 3 * 8;
1576 idx += ((start - 0xC0000) >> 12);
1577 return mtrr_state->fixed_ranges[idx];
1578 }
1579 }
1580
1581 /*
1582 * Look in variable ranges
1583 * Look of multiple ranges matching this address and pick type
1584 * as per MTRR precedence
1585 */
1586 if (!(mtrr_state->enabled & 2))
1587 return mtrr_state->def_type;
1588
1589 prev_match = 0xFF;
1590 for (i = 0; i < num_var_ranges; ++i) {
1591 unsigned short start_state, end_state;
1592
1593 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
1594 continue;
1595
1596 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
1597 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
1598 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
1599 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
1600
1601 start_state = ((start & mask) == (base & mask));
1602 end_state = ((end & mask) == (base & mask));
1603 if (start_state != end_state)
1604 return 0xFE;
1605
1606 if ((start & mask) != (base & mask))
1607 continue;
1608
1609 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
1610 if (prev_match == 0xFF) {
1611 prev_match = curr_match;
1612 continue;
1613 }
1614
1615 if (prev_match == MTRR_TYPE_UNCACHABLE ||
1616 curr_match == MTRR_TYPE_UNCACHABLE)
1617 return MTRR_TYPE_UNCACHABLE;
1618
1619 if ((prev_match == MTRR_TYPE_WRBACK &&
1620 curr_match == MTRR_TYPE_WRTHROUGH) ||
1621 (prev_match == MTRR_TYPE_WRTHROUGH &&
1622 curr_match == MTRR_TYPE_WRBACK)) {
1623 prev_match = MTRR_TYPE_WRTHROUGH;
1624 curr_match = MTRR_TYPE_WRTHROUGH;
1625 }
1626
1627 if (prev_match != curr_match)
1628 return MTRR_TYPE_UNCACHABLE;
1629 }
1630
1631 if (prev_match != 0xFF)
1632 return prev_match;
1633
1634 return mtrr_state->def_type;
1635}
1636
4b12f0de 1637u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
74be52e3
SY
1638{
1639 u8 mtrr;
1640
1641 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
1642 (gfn << PAGE_SHIFT) + PAGE_SIZE);
1643 if (mtrr == 0xfe || mtrr == 0xff)
1644 mtrr = MTRR_TYPE_WRBACK;
1645 return mtrr;
1646}
4b12f0de 1647EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
74be52e3 1648
4731d4c7
MT
1649static int kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1650{
1651 unsigned index;
1652 struct hlist_head *bucket;
1653 struct kvm_mmu_page *s;
1654 struct hlist_node *node, *n;
1655
1656 index = kvm_page_table_hashfn(sp->gfn);
1657 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
1658 /* don't unsync if pagetable is shadowed with multiple roles */
1659 hlist_for_each_entry_safe(s, node, n, bucket, hash_link) {
f6e2c02b 1660 if (s->gfn != sp->gfn || s->role.direct)
4731d4c7
MT
1661 continue;
1662 if (s->role.word != sp->role.word)
1663 return 1;
1664 }
4731d4c7
MT
1665 ++vcpu->kvm->stat.mmu_unsync;
1666 sp->unsync = 1;
6cffe8ca 1667
c2d0ee46 1668 kvm_mmu_mark_parents_unsync(vcpu, sp);
6cffe8ca 1669
4731d4c7
MT
1670 mmu_convert_notrap(sp);
1671 return 0;
1672}
1673
1674static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1675 bool can_unsync)
1676{
1677 struct kvm_mmu_page *shadow;
1678
1679 shadow = kvm_mmu_lookup_page(vcpu->kvm, gfn);
1680 if (shadow) {
1681 if (shadow->role.level != PT_PAGE_TABLE_LEVEL)
1682 return 1;
1683 if (shadow->unsync)
1684 return 0;
582801a9 1685 if (can_unsync && oos_shadow)
4731d4c7
MT
1686 return kvm_unsync_page(vcpu, shadow);
1687 return 1;
1688 }
1689 return 0;
1690}
1691
d555c333 1692static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1e73f9dd
MT
1693 unsigned pte_access, int user_fault,
1694 int write_fault, int dirty, int largepage,
c2d0ee46 1695 gfn_t gfn, pfn_t pfn, bool speculative,
4731d4c7 1696 bool can_unsync)
1c4f1fd6
AK
1697{
1698 u64 spte;
1e73f9dd 1699 int ret = 0;
64d4d521 1700
1c4f1fd6
AK
1701 /*
1702 * We don't set the accessed bit, since we sometimes want to see
1703 * whether the guest actually used the pte (in order to detect
1704 * demand paging).
1705 */
7b52345e 1706 spte = shadow_base_present_pte | shadow_dirty_mask;
947da538 1707 if (!speculative)
3201b5d9 1708 spte |= shadow_accessed_mask;
1c4f1fd6
AK
1709 if (!dirty)
1710 pte_access &= ~ACC_WRITE_MASK;
7b52345e
SY
1711 if (pte_access & ACC_EXEC_MASK)
1712 spte |= shadow_x_mask;
1713 else
1714 spte |= shadow_nx_mask;
1c4f1fd6 1715 if (pte_access & ACC_USER_MASK)
7b52345e 1716 spte |= shadow_user_mask;
05da4558
MT
1717 if (largepage)
1718 spte |= PT_PAGE_SIZE_MASK;
4b12f0de
SY
1719 if (tdp_enabled)
1720 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
1721 kvm_is_mmio_pfn(pfn));
1c4f1fd6 1722
35149e21 1723 spte |= (u64)pfn << PAGE_SHIFT;
1c4f1fd6
AK
1724
1725 if ((pte_access & ACC_WRITE_MASK)
1726 || (write_fault && !is_write_protection(vcpu) && !user_fault)) {
1c4f1fd6 1727
38187c83
MT
1728 if (largepage && has_wrprotected_page(vcpu->kvm, gfn)) {
1729 ret = 1;
1730 spte = shadow_trap_nonpresent_pte;
1731 goto set_pte;
1732 }
1733
1c4f1fd6 1734 spte |= PT_WRITABLE_MASK;
1c4f1fd6 1735
ecc5589f
MT
1736 /*
1737 * Optimization: for pte sync, if spte was writable the hash
1738 * lookup is unnecessary (and expensive). Write protection
1739 * is responsibility of mmu_get_page / kvm_sync_page.
1740 * Same reasoning can be applied to dirty page accounting.
1741 */
d555c333 1742 if (!can_unsync && is_writeble_pte(*sptep))
ecc5589f
MT
1743 goto set_pte;
1744
4731d4c7 1745 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
1c4f1fd6 1746 pgprintk("%s: found shadow page for %lx, marking ro\n",
b8688d51 1747 __func__, gfn);
1e73f9dd 1748 ret = 1;
1c4f1fd6 1749 pte_access &= ~ACC_WRITE_MASK;
a378b4e6 1750 if (is_writeble_pte(spte))
1c4f1fd6 1751 spte &= ~PT_WRITABLE_MASK;
1c4f1fd6
AK
1752 }
1753 }
1754
1c4f1fd6
AK
1755 if (pte_access & ACC_WRITE_MASK)
1756 mark_page_dirty(vcpu->kvm, gfn);
1757
38187c83 1758set_pte:
d555c333 1759 __set_spte(sptep, spte);
1e73f9dd
MT
1760 return ret;
1761}
1762
d555c333 1763static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
1e73f9dd
MT
1764 unsigned pt_access, unsigned pte_access,
1765 int user_fault, int write_fault, int dirty,
c2d0ee46
MT
1766 int *ptwrite, int largepage, gfn_t gfn,
1767 pfn_t pfn, bool speculative)
1e73f9dd
MT
1768{
1769 int was_rmapped = 0;
d555c333 1770 int was_writeble = is_writeble_pte(*sptep);
53a27b39 1771 int rmap_count;
1e73f9dd
MT
1772
1773 pgprintk("%s: spte %llx access %x write_fault %d"
1774 " user_fault %d gfn %lx\n",
d555c333 1775 __func__, *sptep, pt_access,
1e73f9dd
MT
1776 write_fault, user_fault, gfn);
1777
d555c333 1778 if (is_rmap_spte(*sptep)) {
1e73f9dd
MT
1779 /*
1780 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
1781 * the parent of the now unreachable PTE.
1782 */
d555c333 1783 if (largepage && !is_large_pte(*sptep)) {
1e73f9dd 1784 struct kvm_mmu_page *child;
d555c333 1785 u64 pte = *sptep;
1e73f9dd
MT
1786
1787 child = page_header(pte & PT64_BASE_ADDR_MASK);
d555c333
AK
1788 mmu_page_remove_parent_pte(child, sptep);
1789 } else if (pfn != spte_to_pfn(*sptep)) {
1e73f9dd 1790 pgprintk("hfn old %lx new %lx\n",
d555c333
AK
1791 spte_to_pfn(*sptep), pfn);
1792 rmap_remove(vcpu->kvm, sptep);
6bed6b9e
JR
1793 } else
1794 was_rmapped = 1;
1e73f9dd 1795 }
d555c333 1796 if (set_spte(vcpu, sptep, pte_access, user_fault, write_fault,
c2d0ee46 1797 dirty, largepage, gfn, pfn, speculative, true)) {
1e73f9dd
MT
1798 if (write_fault)
1799 *ptwrite = 1;
a378b4e6
MT
1800 kvm_x86_ops->tlb_flush(vcpu);
1801 }
1e73f9dd 1802
d555c333 1803 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
1e73f9dd 1804 pgprintk("instantiating %s PTE (%s) at %ld (%llx) addr %p\n",
d555c333
AK
1805 is_large_pte(*sptep)? "2MB" : "4kB",
1806 is_present_pte(*sptep)?"RW":"R", gfn,
1807 *shadow_pte, sptep);
1808 if (!was_rmapped && is_large_pte(*sptep))
05da4558
MT
1809 ++vcpu->kvm->stat.lpages;
1810
d555c333 1811 page_header_update_slot(vcpu->kvm, sptep, gfn);
1c4f1fd6 1812 if (!was_rmapped) {
d555c333
AK
1813 rmap_count = rmap_add(vcpu, sptep, gfn, largepage);
1814 if (!is_rmap_spte(*sptep))
35149e21 1815 kvm_release_pfn_clean(pfn);
53a27b39
MT
1816 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
1817 rmap_recycle(vcpu, gfn, largepage);
75e68e60
IE
1818 } else {
1819 if (was_writeble)
35149e21 1820 kvm_release_pfn_dirty(pfn);
75e68e60 1821 else
35149e21 1822 kvm_release_pfn_clean(pfn);
1c4f1fd6 1823 }
1b7fcd32 1824 if (speculative) {
d555c333 1825 vcpu->arch.last_pte_updated = sptep;
1b7fcd32
AK
1826 vcpu->arch.last_pte_gfn = gfn;
1827 }
1c4f1fd6
AK
1828}
1829
6aa8b732
AK
1830static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
1831{
1832}
1833
9f652d21
AK
1834static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
1835 int largepage, gfn_t gfn, pfn_t pfn)
140754bc 1836{
9f652d21 1837 struct kvm_shadow_walk_iterator iterator;
140754bc 1838 struct kvm_mmu_page *sp;
9f652d21 1839 int pt_write = 0;
140754bc 1840 gfn_t pseudo_gfn;
6aa8b732 1841
9f652d21
AK
1842 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
1843 if (iterator.level == PT_PAGE_TABLE_LEVEL
1844 || (largepage && iterator.level == PT_DIRECTORY_LEVEL)) {
1845 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, ACC_ALL,
1846 0, write, 1, &pt_write,
c2d0ee46 1847 largepage, gfn, pfn, false);
9f652d21
AK
1848 ++vcpu->stat.pf_fixed;
1849 break;
6aa8b732
AK
1850 }
1851
9f652d21
AK
1852 if (*iterator.sptep == shadow_trap_nonpresent_pte) {
1853 pseudo_gfn = (iterator.addr & PT64_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
1854 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
1855 iterator.level - 1,
1856 1, ACC_ALL, iterator.sptep);
1857 if (!sp) {
1858 pgprintk("nonpaging_map: ENOMEM\n");
1859 kvm_release_pfn_clean(pfn);
1860 return -ENOMEM;
1861 }
140754bc 1862
d555c333
AK
1863 __set_spte(iterator.sptep,
1864 __pa(sp->spt)
1865 | PT_PRESENT_MASK | PT_WRITABLE_MASK
1866 | shadow_user_mask | shadow_x_mask);
9f652d21
AK
1867 }
1868 }
1869 return pt_write;
6aa8b732
AK
1870}
1871
10589a46
MT
1872static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
1873{
1874 int r;
05da4558 1875 int largepage = 0;
35149e21 1876 pfn_t pfn;
e930bffe 1877 unsigned long mmu_seq;
aaee2c94 1878
05da4558
MT
1879 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1880 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1881 largepage = 1;
1882 }
1883
e930bffe 1884 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 1885 smp_rmb();
35149e21 1886 pfn = gfn_to_pfn(vcpu->kvm, gfn);
aaee2c94 1887
d196e343 1888 /* mmio */
35149e21
AL
1889 if (is_error_pfn(pfn)) {
1890 kvm_release_pfn_clean(pfn);
d196e343
AK
1891 return 1;
1892 }
1893
aaee2c94 1894 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
1895 if (mmu_notifier_retry(vcpu, mmu_seq))
1896 goto out_unlock;
eb787d10 1897 kvm_mmu_free_some_pages(vcpu);
6c41f428 1898 r = __direct_map(vcpu, v, write, largepage, gfn, pfn);
aaee2c94
MT
1899 spin_unlock(&vcpu->kvm->mmu_lock);
1900
aaee2c94 1901
10589a46 1902 return r;
e930bffe
AA
1903
1904out_unlock:
1905 spin_unlock(&vcpu->kvm->mmu_lock);
1906 kvm_release_pfn_clean(pfn);
1907 return 0;
10589a46
MT
1908}
1909
1910
17ac10ad
AK
1911static void mmu_free_roots(struct kvm_vcpu *vcpu)
1912{
1913 int i;
4db35314 1914 struct kvm_mmu_page *sp;
17ac10ad 1915
ad312c7c 1916 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
7b53aa56 1917 return;
aaee2c94 1918 spin_lock(&vcpu->kvm->mmu_lock);
ad312c7c
ZX
1919 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1920 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad 1921
4db35314
AK
1922 sp = page_header(root);
1923 --sp->root_count;
2e53d63a
MT
1924 if (!sp->root_count && sp->role.invalid)
1925 kvm_mmu_zap_page(vcpu->kvm, sp);
ad312c7c 1926 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
aaee2c94 1927 spin_unlock(&vcpu->kvm->mmu_lock);
17ac10ad
AK
1928 return;
1929 }
17ac10ad 1930 for (i = 0; i < 4; ++i) {
ad312c7c 1931 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad 1932
417726a3 1933 if (root) {
417726a3 1934 root &= PT64_BASE_ADDR_MASK;
4db35314
AK
1935 sp = page_header(root);
1936 --sp->root_count;
2e53d63a
MT
1937 if (!sp->root_count && sp->role.invalid)
1938 kvm_mmu_zap_page(vcpu->kvm, sp);
417726a3 1939 }
ad312c7c 1940 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 1941 }
aaee2c94 1942 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 1943 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
1944}
1945
8986ecc0
MT
1946static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
1947{
1948 int ret = 0;
1949
1950 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
1951 set_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests);
1952 ret = 1;
1953 }
1954
1955 return ret;
1956}
1957
1958static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
17ac10ad
AK
1959{
1960 int i;
cea0f0e7 1961 gfn_t root_gfn;
4db35314 1962 struct kvm_mmu_page *sp;
f6e2c02b 1963 int direct = 0;
6de4f3ad 1964 u64 pdptr;
3bb65a22 1965
ad312c7c 1966 root_gfn = vcpu->arch.cr3 >> PAGE_SHIFT;
17ac10ad 1967
ad312c7c
ZX
1968 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1969 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad
AK
1970
1971 ASSERT(!VALID_PAGE(root));
fb72d167 1972 if (tdp_enabled)
f6e2c02b 1973 direct = 1;
8986ecc0
MT
1974 if (mmu_check_root(vcpu, root_gfn))
1975 return 1;
4db35314 1976 sp = kvm_mmu_get_page(vcpu, root_gfn, 0,
f6e2c02b 1977 PT64_ROOT_LEVEL, direct,
fb72d167 1978 ACC_ALL, NULL);
4db35314
AK
1979 root = __pa(sp->spt);
1980 ++sp->root_count;
ad312c7c 1981 vcpu->arch.mmu.root_hpa = root;
8986ecc0 1982 return 0;
17ac10ad 1983 }
f6e2c02b 1984 direct = !is_paging(vcpu);
fb72d167 1985 if (tdp_enabled)
f6e2c02b 1986 direct = 1;
17ac10ad 1987 for (i = 0; i < 4; ++i) {
ad312c7c 1988 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad
AK
1989
1990 ASSERT(!VALID_PAGE(root));
ad312c7c 1991 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
6de4f3ad 1992 pdptr = kvm_pdptr_read(vcpu, i);
43a3795a 1993 if (!is_present_gpte(pdptr)) {
ad312c7c 1994 vcpu->arch.mmu.pae_root[i] = 0;
417726a3
AK
1995 continue;
1996 }
6de4f3ad 1997 root_gfn = pdptr >> PAGE_SHIFT;
ad312c7c 1998 } else if (vcpu->arch.mmu.root_level == 0)
cea0f0e7 1999 root_gfn = 0;
8986ecc0
MT
2000 if (mmu_check_root(vcpu, root_gfn))
2001 return 1;
4db35314 2002 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
f6e2c02b 2003 PT32_ROOT_LEVEL, direct,
f7d9c7b7 2004 ACC_ALL, NULL);
4db35314
AK
2005 root = __pa(sp->spt);
2006 ++sp->root_count;
ad312c7c 2007 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
17ac10ad 2008 }
ad312c7c 2009 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
8986ecc0 2010 return 0;
17ac10ad
AK
2011}
2012
0ba73cda
MT
2013static void mmu_sync_roots(struct kvm_vcpu *vcpu)
2014{
2015 int i;
2016 struct kvm_mmu_page *sp;
2017
2018 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2019 return;
2020 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2021 hpa_t root = vcpu->arch.mmu.root_hpa;
2022 sp = page_header(root);
2023 mmu_sync_children(vcpu, sp);
2024 return;
2025 }
2026 for (i = 0; i < 4; ++i) {
2027 hpa_t root = vcpu->arch.mmu.pae_root[i];
2028
8986ecc0 2029 if (root && VALID_PAGE(root)) {
0ba73cda
MT
2030 root &= PT64_BASE_ADDR_MASK;
2031 sp = page_header(root);
2032 mmu_sync_children(vcpu, sp);
2033 }
2034 }
2035}
2036
2037void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2038{
2039 spin_lock(&vcpu->kvm->mmu_lock);
2040 mmu_sync_roots(vcpu);
6cffe8ca 2041 spin_unlock(&vcpu->kvm->mmu_lock);
0ba73cda
MT
2042}
2043
6aa8b732
AK
2044static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
2045{
2046 return vaddr;
2047}
2048
2049static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
3f3e7124 2050 u32 error_code)
6aa8b732 2051{
e833240f 2052 gfn_t gfn;
e2dec939 2053 int r;
6aa8b732 2054
b8688d51 2055 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
e2dec939
AK
2056 r = mmu_topup_memory_caches(vcpu);
2057 if (r)
2058 return r;
714b93da 2059
6aa8b732 2060 ASSERT(vcpu);
ad312c7c 2061 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2062
e833240f 2063 gfn = gva >> PAGE_SHIFT;
6aa8b732 2064
e833240f
AK
2065 return nonpaging_map(vcpu, gva & PAGE_MASK,
2066 error_code & PFERR_WRITE_MASK, gfn);
6aa8b732
AK
2067}
2068
fb72d167
JR
2069static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
2070 u32 error_code)
2071{
35149e21 2072 pfn_t pfn;
fb72d167 2073 int r;
05da4558
MT
2074 int largepage = 0;
2075 gfn_t gfn = gpa >> PAGE_SHIFT;
e930bffe 2076 unsigned long mmu_seq;
fb72d167
JR
2077
2078 ASSERT(vcpu);
2079 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2080
2081 r = mmu_topup_memory_caches(vcpu);
2082 if (r)
2083 return r;
2084
05da4558
MT
2085 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
2086 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2087 largepage = 1;
2088 }
e930bffe 2089 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2090 smp_rmb();
35149e21 2091 pfn = gfn_to_pfn(vcpu->kvm, gfn);
35149e21
AL
2092 if (is_error_pfn(pfn)) {
2093 kvm_release_pfn_clean(pfn);
fb72d167
JR
2094 return 1;
2095 }
2096 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
2097 if (mmu_notifier_retry(vcpu, mmu_seq))
2098 goto out_unlock;
fb72d167
JR
2099 kvm_mmu_free_some_pages(vcpu);
2100 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
6c41f428 2101 largepage, gfn, pfn);
fb72d167 2102 spin_unlock(&vcpu->kvm->mmu_lock);
fb72d167
JR
2103
2104 return r;
e930bffe
AA
2105
2106out_unlock:
2107 spin_unlock(&vcpu->kvm->mmu_lock);
2108 kvm_release_pfn_clean(pfn);
2109 return 0;
fb72d167
JR
2110}
2111
6aa8b732
AK
2112static void nonpaging_free(struct kvm_vcpu *vcpu)
2113{
17ac10ad 2114 mmu_free_roots(vcpu);
6aa8b732
AK
2115}
2116
2117static int nonpaging_init_context(struct kvm_vcpu *vcpu)
2118{
ad312c7c 2119 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
2120
2121 context->new_cr3 = nonpaging_new_cr3;
2122 context->page_fault = nonpaging_page_fault;
6aa8b732
AK
2123 context->gva_to_gpa = nonpaging_gva_to_gpa;
2124 context->free = nonpaging_free;
c7addb90 2125 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2126 context->sync_page = nonpaging_sync_page;
a7052897 2127 context->invlpg = nonpaging_invlpg;
cea0f0e7 2128 context->root_level = 0;
6aa8b732 2129 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2130 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2131 return 0;
2132}
2133
d835dfec 2134void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
6aa8b732 2135{
1165f5fe 2136 ++vcpu->stat.tlb_flush;
cbdd1bea 2137 kvm_x86_ops->tlb_flush(vcpu);
6aa8b732
AK
2138}
2139
2140static void paging_new_cr3(struct kvm_vcpu *vcpu)
2141{
b8688d51 2142 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
cea0f0e7 2143 mmu_free_roots(vcpu);
6aa8b732
AK
2144}
2145
6aa8b732
AK
2146static void inject_page_fault(struct kvm_vcpu *vcpu,
2147 u64 addr,
2148 u32 err_code)
2149{
c3c91fee 2150 kvm_inject_page_fault(vcpu, addr, err_code);
6aa8b732
AK
2151}
2152
6aa8b732
AK
2153static void paging_free(struct kvm_vcpu *vcpu)
2154{
2155 nonpaging_free(vcpu);
2156}
2157
82725b20
DE
2158static bool is_rsvd_bits_set(struct kvm_vcpu *vcpu, u64 gpte, int level)
2159{
2160 int bit7;
2161
2162 bit7 = (gpte >> 7) & 1;
2163 return (gpte & vcpu->arch.mmu.rsvd_bits_mask[bit7][level-1]) != 0;
2164}
2165
6aa8b732
AK
2166#define PTTYPE 64
2167#include "paging_tmpl.h"
2168#undef PTTYPE
2169
2170#define PTTYPE 32
2171#include "paging_tmpl.h"
2172#undef PTTYPE
2173
82725b20
DE
2174static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, int level)
2175{
2176 struct kvm_mmu *context = &vcpu->arch.mmu;
2177 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2178 u64 exb_bit_rsvd = 0;
2179
2180 if (!is_nx(vcpu))
2181 exb_bit_rsvd = rsvd_bits(63, 63);
2182 switch (level) {
2183 case PT32_ROOT_LEVEL:
2184 /* no rsvd bits for 2 level 4K page table entries */
2185 context->rsvd_bits_mask[0][1] = 0;
2186 context->rsvd_bits_mask[0][0] = 0;
2187 if (is_cpuid_PSE36())
2188 /* 36bits PSE 4MB page */
2189 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
2190 else
2191 /* 32 bits PSE 4MB page */
2192 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
29a4b933 2193 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2194 break;
2195 case PT32E_ROOT_LEVEL:
20c466b5
DE
2196 context->rsvd_bits_mask[0][2] =
2197 rsvd_bits(maxphyaddr, 63) |
2198 rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
82725b20 2199 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2200 rsvd_bits(maxphyaddr, 62); /* PDE */
82725b20
DE
2201 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2202 rsvd_bits(maxphyaddr, 62); /* PTE */
2203 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2204 rsvd_bits(maxphyaddr, 62) |
2205 rsvd_bits(13, 20); /* large page */
29a4b933 2206 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2207 break;
2208 case PT64_ROOT_LEVEL:
2209 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
2210 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2211 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
2212 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2213 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2214 rsvd_bits(maxphyaddr, 51);
82725b20
DE
2215 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2216 rsvd_bits(maxphyaddr, 51);
2217 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
2218 context->rsvd_bits_mask[1][2] = context->rsvd_bits_mask[0][2];
2219 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
4c26b4cd
SY
2220 rsvd_bits(maxphyaddr, 51) |
2221 rsvd_bits(13, 20); /* large page */
29a4b933 2222 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
82725b20
DE
2223 break;
2224 }
2225}
2226
17ac10ad 2227static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
6aa8b732 2228{
ad312c7c 2229 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
2230
2231 ASSERT(is_pae(vcpu));
2232 context->new_cr3 = paging_new_cr3;
2233 context->page_fault = paging64_page_fault;
6aa8b732 2234 context->gva_to_gpa = paging64_gva_to_gpa;
c7addb90 2235 context->prefetch_page = paging64_prefetch_page;
e8bc217a 2236 context->sync_page = paging64_sync_page;
a7052897 2237 context->invlpg = paging64_invlpg;
6aa8b732 2238 context->free = paging_free;
17ac10ad
AK
2239 context->root_level = level;
2240 context->shadow_root_level = level;
17c3ba9d 2241 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2242 return 0;
2243}
2244
17ac10ad
AK
2245static int paging64_init_context(struct kvm_vcpu *vcpu)
2246{
82725b20 2247 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
17ac10ad
AK
2248 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
2249}
2250
6aa8b732
AK
2251static int paging32_init_context(struct kvm_vcpu *vcpu)
2252{
ad312c7c 2253 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732 2254
82725b20 2255 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
6aa8b732
AK
2256 context->new_cr3 = paging_new_cr3;
2257 context->page_fault = paging32_page_fault;
6aa8b732
AK
2258 context->gva_to_gpa = paging32_gva_to_gpa;
2259 context->free = paging_free;
c7addb90 2260 context->prefetch_page = paging32_prefetch_page;
e8bc217a 2261 context->sync_page = paging32_sync_page;
a7052897 2262 context->invlpg = paging32_invlpg;
6aa8b732
AK
2263 context->root_level = PT32_ROOT_LEVEL;
2264 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2265 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
2266 return 0;
2267}
2268
2269static int paging32E_init_context(struct kvm_vcpu *vcpu)
2270{
82725b20 2271 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
17ac10ad 2272 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
6aa8b732
AK
2273}
2274
fb72d167
JR
2275static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2276{
2277 struct kvm_mmu *context = &vcpu->arch.mmu;
2278
2279 context->new_cr3 = nonpaging_new_cr3;
2280 context->page_fault = tdp_page_fault;
2281 context->free = nonpaging_free;
2282 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2283 context->sync_page = nonpaging_sync_page;
a7052897 2284 context->invlpg = nonpaging_invlpg;
67253af5 2285 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
fb72d167
JR
2286 context->root_hpa = INVALID_PAGE;
2287
2288 if (!is_paging(vcpu)) {
2289 context->gva_to_gpa = nonpaging_gva_to_gpa;
2290 context->root_level = 0;
2291 } else if (is_long_mode(vcpu)) {
82725b20 2292 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
fb72d167
JR
2293 context->gva_to_gpa = paging64_gva_to_gpa;
2294 context->root_level = PT64_ROOT_LEVEL;
2295 } else if (is_pae(vcpu)) {
82725b20 2296 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
fb72d167
JR
2297 context->gva_to_gpa = paging64_gva_to_gpa;
2298 context->root_level = PT32E_ROOT_LEVEL;
2299 } else {
82725b20 2300 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
fb72d167
JR
2301 context->gva_to_gpa = paging32_gva_to_gpa;
2302 context->root_level = PT32_ROOT_LEVEL;
2303 }
2304
2305 return 0;
2306}
2307
2308static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
6aa8b732 2309{
a770f6f2
AK
2310 int r;
2311
6aa8b732 2312 ASSERT(vcpu);
ad312c7c 2313 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732
AK
2314
2315 if (!is_paging(vcpu))
a770f6f2 2316 r = nonpaging_init_context(vcpu);
a9058ecd 2317 else if (is_long_mode(vcpu))
a770f6f2 2318 r = paging64_init_context(vcpu);
6aa8b732 2319 else if (is_pae(vcpu))
a770f6f2 2320 r = paging32E_init_context(vcpu);
6aa8b732 2321 else
a770f6f2
AK
2322 r = paging32_init_context(vcpu);
2323
2324 vcpu->arch.mmu.base_role.glevels = vcpu->arch.mmu.root_level;
2325
2326 return r;
6aa8b732
AK
2327}
2328
fb72d167
JR
2329static int init_kvm_mmu(struct kvm_vcpu *vcpu)
2330{
35149e21
AL
2331 vcpu->arch.update_pte.pfn = bad_pfn;
2332
fb72d167
JR
2333 if (tdp_enabled)
2334 return init_kvm_tdp_mmu(vcpu);
2335 else
2336 return init_kvm_softmmu(vcpu);
2337}
2338
6aa8b732
AK
2339static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
2340{
2341 ASSERT(vcpu);
ad312c7c
ZX
2342 if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
2343 vcpu->arch.mmu.free(vcpu);
2344 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
6aa8b732
AK
2345 }
2346}
2347
2348int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
17c3ba9d
AK
2349{
2350 destroy_kvm_mmu(vcpu);
2351 return init_kvm_mmu(vcpu);
2352}
8668a3c4 2353EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
17c3ba9d
AK
2354
2355int kvm_mmu_load(struct kvm_vcpu *vcpu)
6aa8b732 2356{
714b93da
AK
2357 int r;
2358
e2dec939 2359 r = mmu_topup_memory_caches(vcpu);
17c3ba9d
AK
2360 if (r)
2361 goto out;
aaee2c94 2362 spin_lock(&vcpu->kvm->mmu_lock);
eb787d10 2363 kvm_mmu_free_some_pages(vcpu);
8986ecc0 2364 r = mmu_alloc_roots(vcpu);
0ba73cda 2365 mmu_sync_roots(vcpu);
aaee2c94 2366 spin_unlock(&vcpu->kvm->mmu_lock);
8986ecc0
MT
2367 if (r)
2368 goto out;
ad312c7c 2369 kvm_x86_ops->set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
17c3ba9d 2370 kvm_mmu_flush_tlb(vcpu);
714b93da
AK
2371out:
2372 return r;
6aa8b732 2373}
17c3ba9d
AK
2374EXPORT_SYMBOL_GPL(kvm_mmu_load);
2375
2376void kvm_mmu_unload(struct kvm_vcpu *vcpu)
2377{
2378 mmu_free_roots(vcpu);
2379}
6aa8b732 2380
09072daf 2381static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
4db35314 2382 struct kvm_mmu_page *sp,
ac1b714e
AK
2383 u64 *spte)
2384{
2385 u64 pte;
2386 struct kvm_mmu_page *child;
2387
2388 pte = *spte;
c7addb90 2389 if (is_shadow_present_pte(pte)) {
776e6633 2390 if (is_last_spte(pte, sp->role.level))
290fc38d 2391 rmap_remove(vcpu->kvm, spte);
ac1b714e
AK
2392 else {
2393 child = page_header(pte & PT64_BASE_ADDR_MASK);
90cb0529 2394 mmu_page_remove_parent_pte(child, spte);
ac1b714e
AK
2395 }
2396 }
d555c333 2397 __set_spte(spte, shadow_trap_nonpresent_pte);
05da4558
MT
2398 if (is_large_pte(pte))
2399 --vcpu->kvm->stat.lpages;
ac1b714e
AK
2400}
2401
0028425f 2402static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
4db35314 2403 struct kvm_mmu_page *sp,
0028425f 2404 u64 *spte,
489f1d65 2405 const void *new)
0028425f 2406{
30945387
MT
2407 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
2408 if (!vcpu->arch.update_pte.largepage ||
2409 sp->role.glevels == PT32_ROOT_LEVEL) {
2410 ++vcpu->kvm->stat.mmu_pde_zapped;
2411 return;
2412 }
2413 }
0028425f 2414
4cee5764 2415 ++vcpu->kvm->stat.mmu_pte_updated;
4db35314 2416 if (sp->role.glevels == PT32_ROOT_LEVEL)
489f1d65 2417 paging32_update_pte(vcpu, sp, spte, new);
0028425f 2418 else
489f1d65 2419 paging64_update_pte(vcpu, sp, spte, new);
0028425f
AK
2420}
2421
79539cec
AK
2422static bool need_remote_flush(u64 old, u64 new)
2423{
2424 if (!is_shadow_present_pte(old))
2425 return false;
2426 if (!is_shadow_present_pte(new))
2427 return true;
2428 if ((old ^ new) & PT64_BASE_ADDR_MASK)
2429 return true;
2430 old ^= PT64_NX_MASK;
2431 new ^= PT64_NX_MASK;
2432 return (old & ~new & PT64_PERM_MASK) != 0;
2433}
2434
2435static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, u64 old, u64 new)
2436{
2437 if (need_remote_flush(old, new))
2438 kvm_flush_remote_tlbs(vcpu->kvm);
2439 else
2440 kvm_mmu_flush_tlb(vcpu);
2441}
2442
12b7d28f
AK
2443static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
2444{
ad312c7c 2445 u64 *spte = vcpu->arch.last_pte_updated;
12b7d28f 2446
7b52345e 2447 return !!(spte && (*spte & shadow_accessed_mask));
12b7d28f
AK
2448}
2449
d7824fff
AK
2450static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
2451 const u8 *new, int bytes)
2452{
2453 gfn_t gfn;
2454 int r;
2455 u64 gpte = 0;
35149e21 2456 pfn_t pfn;
d7824fff 2457
05da4558
MT
2458 vcpu->arch.update_pte.largepage = 0;
2459
d7824fff
AK
2460 if (bytes != 4 && bytes != 8)
2461 return;
2462
2463 /*
2464 * Assume that the pte write on a page table of the same type
2465 * as the current vcpu paging mode. This is nearly always true
2466 * (might be false while changing modes). Note it is verified later
2467 * by update_pte().
2468 */
2469 if (is_pae(vcpu)) {
2470 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
2471 if ((bytes == 4) && (gpa % 4 == 0)) {
2472 r = kvm_read_guest(vcpu->kvm, gpa & ~(u64)7, &gpte, 8);
2473 if (r)
2474 return;
2475 memcpy((void *)&gpte + (gpa % 8), new, 4);
2476 } else if ((bytes == 8) && (gpa % 8 == 0)) {
2477 memcpy((void *)&gpte, new, 8);
2478 }
2479 } else {
2480 if ((bytes == 4) && (gpa % 4 == 0))
2481 memcpy((void *)&gpte, new, 4);
2482 }
43a3795a 2483 if (!is_present_gpte(gpte))
d7824fff
AK
2484 return;
2485 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
72dc67a6 2486
05da4558
MT
2487 if (is_large_pte(gpte) && is_largepage_backed(vcpu, gfn)) {
2488 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2489 vcpu->arch.update_pte.largepage = 1;
2490 }
e930bffe 2491 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2492 smp_rmb();
35149e21 2493 pfn = gfn_to_pfn(vcpu->kvm, gfn);
72dc67a6 2494
35149e21
AL
2495 if (is_error_pfn(pfn)) {
2496 kvm_release_pfn_clean(pfn);
d196e343
AK
2497 return;
2498 }
d7824fff 2499 vcpu->arch.update_pte.gfn = gfn;
35149e21 2500 vcpu->arch.update_pte.pfn = pfn;
d7824fff
AK
2501}
2502
1b7fcd32
AK
2503static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
2504{
2505 u64 *spte = vcpu->arch.last_pte_updated;
2506
2507 if (spte
2508 && vcpu->arch.last_pte_gfn == gfn
2509 && shadow_accessed_mask
2510 && !(*spte & shadow_accessed_mask)
2511 && is_shadow_present_pte(*spte))
2512 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
2513}
2514
09072daf 2515void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
ad218f85
MT
2516 const u8 *new, int bytes,
2517 bool guest_initiated)
da4a00f0 2518{
9b7a0325 2519 gfn_t gfn = gpa >> PAGE_SHIFT;
4db35314 2520 struct kvm_mmu_page *sp;
0e7bc4b9 2521 struct hlist_node *node, *n;
9b7a0325
AK
2522 struct hlist_head *bucket;
2523 unsigned index;
489f1d65 2524 u64 entry, gentry;
9b7a0325 2525 u64 *spte;
9b7a0325 2526 unsigned offset = offset_in_page(gpa);
0e7bc4b9 2527 unsigned pte_size;
9b7a0325 2528 unsigned page_offset;
0e7bc4b9 2529 unsigned misaligned;
fce0657f 2530 unsigned quadrant;
9b7a0325 2531 int level;
86a5ba02 2532 int flooded = 0;
ac1b714e 2533 int npte;
489f1d65 2534 int r;
9b7a0325 2535
b8688d51 2536 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
d7824fff 2537 mmu_guess_page_from_pte_write(vcpu, gpa, new, bytes);
aaee2c94 2538 spin_lock(&vcpu->kvm->mmu_lock);
1b7fcd32 2539 kvm_mmu_access_page(vcpu, gfn);
eb787d10 2540 kvm_mmu_free_some_pages(vcpu);
4cee5764 2541 ++vcpu->kvm->stat.mmu_pte_write;
c7addb90 2542 kvm_mmu_audit(vcpu, "pre pte write");
ad218f85
MT
2543 if (guest_initiated) {
2544 if (gfn == vcpu->arch.last_pt_write_gfn
2545 && !last_updated_pte_accessed(vcpu)) {
2546 ++vcpu->arch.last_pt_write_count;
2547 if (vcpu->arch.last_pt_write_count >= 3)
2548 flooded = 1;
2549 } else {
2550 vcpu->arch.last_pt_write_gfn = gfn;
2551 vcpu->arch.last_pt_write_count = 1;
2552 vcpu->arch.last_pte_updated = NULL;
2553 }
86a5ba02 2554 }
1ae0a13d 2555 index = kvm_page_table_hashfn(gfn);
f05e70ac 2556 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
4db35314 2557 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link) {
f6e2c02b 2558 if (sp->gfn != gfn || sp->role.direct || sp->role.invalid)
9b7a0325 2559 continue;
4db35314 2560 pte_size = sp->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
0e7bc4b9 2561 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
e925c5ba 2562 misaligned |= bytes < 4;
86a5ba02 2563 if (misaligned || flooded) {
0e7bc4b9
AK
2564 /*
2565 * Misaligned accesses are too much trouble to fix
2566 * up; also, they usually indicate a page is not used
2567 * as a page table.
86a5ba02
AK
2568 *
2569 * If we're seeing too many writes to a page,
2570 * it may no longer be a page table, or we may be
2571 * forking, in which case it is better to unmap the
2572 * page.
0e7bc4b9
AK
2573 */
2574 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4db35314 2575 gpa, bytes, sp->role.word);
07385413
MT
2576 if (kvm_mmu_zap_page(vcpu->kvm, sp))
2577 n = bucket->first;
4cee5764 2578 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
2579 continue;
2580 }
9b7a0325 2581 page_offset = offset;
4db35314 2582 level = sp->role.level;
ac1b714e 2583 npte = 1;
4db35314 2584 if (sp->role.glevels == PT32_ROOT_LEVEL) {
ac1b714e
AK
2585 page_offset <<= 1; /* 32->64 */
2586 /*
2587 * A 32-bit pde maps 4MB while the shadow pdes map
2588 * only 2MB. So we need to double the offset again
2589 * and zap two pdes instead of one.
2590 */
2591 if (level == PT32_ROOT_LEVEL) {
6b8d0f9b 2592 page_offset &= ~7; /* kill rounding error */
ac1b714e
AK
2593 page_offset <<= 1;
2594 npte = 2;
2595 }
fce0657f 2596 quadrant = page_offset >> PAGE_SHIFT;
9b7a0325 2597 page_offset &= ~PAGE_MASK;
4db35314 2598 if (quadrant != sp->role.quadrant)
fce0657f 2599 continue;
9b7a0325 2600 }
4db35314 2601 spte = &sp->spt[page_offset / sizeof(*spte)];
489f1d65
DE
2602 if ((gpa & (pte_size - 1)) || (bytes < pte_size)) {
2603 gentry = 0;
2604 r = kvm_read_guest_atomic(vcpu->kvm,
2605 gpa & ~(u64)(pte_size - 1),
2606 &gentry, pte_size);
2607 new = (const void *)&gentry;
2608 if (r < 0)
2609 new = NULL;
2610 }
ac1b714e 2611 while (npte--) {
79539cec 2612 entry = *spte;
4db35314 2613 mmu_pte_write_zap_pte(vcpu, sp, spte);
489f1d65
DE
2614 if (new)
2615 mmu_pte_write_new_pte(vcpu, sp, spte, new);
79539cec 2616 mmu_pte_write_flush_tlb(vcpu, entry, *spte);
ac1b714e 2617 ++spte;
9b7a0325 2618 }
9b7a0325 2619 }
c7addb90 2620 kvm_mmu_audit(vcpu, "post pte write");
aaee2c94 2621 spin_unlock(&vcpu->kvm->mmu_lock);
35149e21
AL
2622 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
2623 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
2624 vcpu->arch.update_pte.pfn = bad_pfn;
d7824fff 2625 }
da4a00f0
AK
2626}
2627
a436036b
AK
2628int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
2629{
10589a46
MT
2630 gpa_t gpa;
2631 int r;
a436036b 2632
10589a46 2633 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
10589a46 2634
aaee2c94 2635 spin_lock(&vcpu->kvm->mmu_lock);
10589a46 2636 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
aaee2c94 2637 spin_unlock(&vcpu->kvm->mmu_lock);
10589a46 2638 return r;
a436036b 2639}
577bdc49 2640EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
a436036b 2641
22d95b12 2642void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
ebeace86 2643{
f05e70ac 2644 while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
4db35314 2645 struct kvm_mmu_page *sp;
ebeace86 2646
f05e70ac 2647 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
4db35314
AK
2648 struct kvm_mmu_page, link);
2649 kvm_mmu_zap_page(vcpu->kvm, sp);
4cee5764 2650 ++vcpu->kvm->stat.mmu_recycled;
ebeace86
AK
2651 }
2652}
ebeace86 2653
3067714c
AK
2654int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
2655{
2656 int r;
2657 enum emulation_result er;
2658
ad312c7c 2659 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
3067714c
AK
2660 if (r < 0)
2661 goto out;
2662
2663 if (!r) {
2664 r = 1;
2665 goto out;
2666 }
2667
b733bfb5
AK
2668 r = mmu_topup_memory_caches(vcpu);
2669 if (r)
2670 goto out;
2671
3067714c 2672 er = emulate_instruction(vcpu, vcpu->run, cr2, error_code, 0);
3067714c
AK
2673
2674 switch (er) {
2675 case EMULATE_DONE:
2676 return 1;
2677 case EMULATE_DO_MMIO:
2678 ++vcpu->stat.mmio_exits;
2679 return 0;
2680 case EMULATE_FAIL:
3f5d18a9
AK
2681 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
2682 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
2683 return 0;
3067714c
AK
2684 default:
2685 BUG();
2686 }
2687out:
3067714c
AK
2688 return r;
2689}
2690EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
2691
a7052897
MT
2692void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
2693{
a7052897 2694 vcpu->arch.mmu.invlpg(vcpu, gva);
a7052897
MT
2695 kvm_mmu_flush_tlb(vcpu);
2696 ++vcpu->stat.invlpg;
2697}
2698EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
2699
18552672
JR
2700void kvm_enable_tdp(void)
2701{
2702 tdp_enabled = true;
2703}
2704EXPORT_SYMBOL_GPL(kvm_enable_tdp);
2705
5f4cb662
JR
2706void kvm_disable_tdp(void)
2707{
2708 tdp_enabled = false;
2709}
2710EXPORT_SYMBOL_GPL(kvm_disable_tdp);
2711
6aa8b732
AK
2712static void free_mmu_pages(struct kvm_vcpu *vcpu)
2713{
ad312c7c 2714 free_page((unsigned long)vcpu->arch.mmu.pae_root);
6aa8b732
AK
2715}
2716
2717static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
2718{
17ac10ad 2719 struct page *page;
6aa8b732
AK
2720 int i;
2721
2722 ASSERT(vcpu);
2723
f05e70ac
ZX
2724 if (vcpu->kvm->arch.n_requested_mmu_pages)
2725 vcpu->kvm->arch.n_free_mmu_pages =
2726 vcpu->kvm->arch.n_requested_mmu_pages;
82ce2c96 2727 else
f05e70ac
ZX
2728 vcpu->kvm->arch.n_free_mmu_pages =
2729 vcpu->kvm->arch.n_alloc_mmu_pages;
17ac10ad
AK
2730 /*
2731 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
2732 * Therefore we need to allocate shadow page tables in the first
2733 * 4GB of memory, which happens to fit the DMA32 zone.
2734 */
2735 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
2736 if (!page)
2737 goto error_1;
ad312c7c 2738 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 2739 for (i = 0; i < 4; ++i)
ad312c7c 2740 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 2741
6aa8b732
AK
2742 return 0;
2743
2744error_1:
2745 free_mmu_pages(vcpu);
2746 return -ENOMEM;
2747}
2748
8018c27b 2749int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 2750{
6aa8b732 2751 ASSERT(vcpu);
ad312c7c 2752 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2753
8018c27b
IM
2754 return alloc_mmu_pages(vcpu);
2755}
6aa8b732 2756
8018c27b
IM
2757int kvm_mmu_setup(struct kvm_vcpu *vcpu)
2758{
2759 ASSERT(vcpu);
ad312c7c 2760 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 2761
8018c27b 2762 return init_kvm_mmu(vcpu);
6aa8b732
AK
2763}
2764
2765void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
2766{
2767 ASSERT(vcpu);
2768
2769 destroy_kvm_mmu(vcpu);
2770 free_mmu_pages(vcpu);
714b93da 2771 mmu_free_memory_caches(vcpu);
6aa8b732
AK
2772}
2773
90cb0529 2774void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 2775{
4db35314 2776 struct kvm_mmu_page *sp;
6aa8b732 2777
f05e70ac 2778 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
6aa8b732
AK
2779 int i;
2780 u64 *pt;
2781
291f26bc 2782 if (!test_bit(slot, sp->slot_bitmap))
6aa8b732
AK
2783 continue;
2784
4db35314 2785 pt = sp->spt;
6aa8b732
AK
2786 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2787 /* avoid RMW */
9647c14c 2788 if (pt[i] & PT_WRITABLE_MASK)
6aa8b732 2789 pt[i] &= ~PT_WRITABLE_MASK;
6aa8b732 2790 }
171d595d 2791 kvm_flush_remote_tlbs(kvm);
6aa8b732 2792}
37a7d8b0 2793
90cb0529 2794void kvm_mmu_zap_all(struct kvm *kvm)
e0fa826f 2795{
4db35314 2796 struct kvm_mmu_page *sp, *node;
e0fa826f 2797
aaee2c94 2798 spin_lock(&kvm->mmu_lock);
f05e70ac 2799 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
07385413
MT
2800 if (kvm_mmu_zap_page(kvm, sp))
2801 node = container_of(kvm->arch.active_mmu_pages.next,
2802 struct kvm_mmu_page, link);
aaee2c94 2803 spin_unlock(&kvm->mmu_lock);
e0fa826f 2804
90cb0529 2805 kvm_flush_remote_tlbs(kvm);
e0fa826f
DL
2806}
2807
8b2cf73c 2808static void kvm_mmu_remove_one_alloc_mmu_page(struct kvm *kvm)
3ee16c81
IE
2809{
2810 struct kvm_mmu_page *page;
2811
2812 page = container_of(kvm->arch.active_mmu_pages.prev,
2813 struct kvm_mmu_page, link);
2814 kvm_mmu_zap_page(kvm, page);
2815}
2816
2817static int mmu_shrink(int nr_to_scan, gfp_t gfp_mask)
2818{
2819 struct kvm *kvm;
2820 struct kvm *kvm_freed = NULL;
2821 int cache_count = 0;
2822
2823 spin_lock(&kvm_lock);
2824
2825 list_for_each_entry(kvm, &vm_list, vm_list) {
2826 int npages;
2827
5a4c9288
MT
2828 if (!down_read_trylock(&kvm->slots_lock))
2829 continue;
3ee16c81
IE
2830 spin_lock(&kvm->mmu_lock);
2831 npages = kvm->arch.n_alloc_mmu_pages -
2832 kvm->arch.n_free_mmu_pages;
2833 cache_count += npages;
2834 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
2835 kvm_mmu_remove_one_alloc_mmu_page(kvm);
2836 cache_count--;
2837 kvm_freed = kvm;
2838 }
2839 nr_to_scan--;
2840
2841 spin_unlock(&kvm->mmu_lock);
5a4c9288 2842 up_read(&kvm->slots_lock);
3ee16c81
IE
2843 }
2844 if (kvm_freed)
2845 list_move_tail(&kvm_freed->vm_list, &vm_list);
2846
2847 spin_unlock(&kvm_lock);
2848
2849 return cache_count;
2850}
2851
2852static struct shrinker mmu_shrinker = {
2853 .shrink = mmu_shrink,
2854 .seeks = DEFAULT_SEEKS * 10,
2855};
2856
2ddfd20e 2857static void mmu_destroy_caches(void)
b5a33a75
AK
2858{
2859 if (pte_chain_cache)
2860 kmem_cache_destroy(pte_chain_cache);
2861 if (rmap_desc_cache)
2862 kmem_cache_destroy(rmap_desc_cache);
d3d25b04
AK
2863 if (mmu_page_header_cache)
2864 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
2865}
2866
3ee16c81
IE
2867void kvm_mmu_module_exit(void)
2868{
2869 mmu_destroy_caches();
2870 unregister_shrinker(&mmu_shrinker);
2871}
2872
b5a33a75
AK
2873int kvm_mmu_module_init(void)
2874{
2875 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
2876 sizeof(struct kvm_pte_chain),
20c2df83 2877 0, 0, NULL);
b5a33a75
AK
2878 if (!pte_chain_cache)
2879 goto nomem;
2880 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
2881 sizeof(struct kvm_rmap_desc),
20c2df83 2882 0, 0, NULL);
b5a33a75
AK
2883 if (!rmap_desc_cache)
2884 goto nomem;
2885
d3d25b04
AK
2886 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
2887 sizeof(struct kvm_mmu_page),
20c2df83 2888 0, 0, NULL);
d3d25b04
AK
2889 if (!mmu_page_header_cache)
2890 goto nomem;
2891
3ee16c81
IE
2892 register_shrinker(&mmu_shrinker);
2893
b5a33a75
AK
2894 return 0;
2895
2896nomem:
3ee16c81 2897 mmu_destroy_caches();
b5a33a75
AK
2898 return -ENOMEM;
2899}
2900
3ad82a7e
ZX
2901/*
2902 * Caculate mmu pages needed for kvm.
2903 */
2904unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
2905{
2906 int i;
2907 unsigned int nr_mmu_pages;
2908 unsigned int nr_pages = 0;
2909
2910 for (i = 0; i < kvm->nmemslots; i++)
2911 nr_pages += kvm->memslots[i].npages;
2912
2913 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
2914 nr_mmu_pages = max(nr_mmu_pages,
2915 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
2916
2917 return nr_mmu_pages;
2918}
2919
2f333bcb
MT
2920static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2921 unsigned len)
2922{
2923 if (len > buffer->len)
2924 return NULL;
2925 return buffer->ptr;
2926}
2927
2928static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2929 unsigned len)
2930{
2931 void *ret;
2932
2933 ret = pv_mmu_peek_buffer(buffer, len);
2934 if (!ret)
2935 return ret;
2936 buffer->ptr += len;
2937 buffer->len -= len;
2938 buffer->processed += len;
2939 return ret;
2940}
2941
2942static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
2943 gpa_t addr, gpa_t value)
2944{
2945 int bytes = 8;
2946 int r;
2947
2948 if (!is_long_mode(vcpu) && !is_pae(vcpu))
2949 bytes = 4;
2950
2951 r = mmu_topup_memory_caches(vcpu);
2952 if (r)
2953 return r;
2954
3200f405 2955 if (!emulator_write_phys(vcpu, addr, &value, bytes))
2f333bcb
MT
2956 return -EFAULT;
2957
2958 return 1;
2959}
2960
2961static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2962{
a8cd0244 2963 kvm_set_cr3(vcpu, vcpu->arch.cr3);
2f333bcb
MT
2964 return 1;
2965}
2966
2967static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
2968{
2969 spin_lock(&vcpu->kvm->mmu_lock);
2970 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
2971 spin_unlock(&vcpu->kvm->mmu_lock);
2972 return 1;
2973}
2974
2975static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
2976 struct kvm_pv_mmu_op_buffer *buffer)
2977{
2978 struct kvm_mmu_op_header *header;
2979
2980 header = pv_mmu_peek_buffer(buffer, sizeof *header);
2981 if (!header)
2982 return 0;
2983 switch (header->op) {
2984 case KVM_MMU_OP_WRITE_PTE: {
2985 struct kvm_mmu_op_write_pte *wpte;
2986
2987 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
2988 if (!wpte)
2989 return 0;
2990 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
2991 wpte->pte_val);
2992 }
2993 case KVM_MMU_OP_FLUSH_TLB: {
2994 struct kvm_mmu_op_flush_tlb *ftlb;
2995
2996 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
2997 if (!ftlb)
2998 return 0;
2999 return kvm_pv_mmu_flush_tlb(vcpu);
3000 }
3001 case KVM_MMU_OP_RELEASE_PT: {
3002 struct kvm_mmu_op_release_pt *rpt;
3003
3004 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
3005 if (!rpt)
3006 return 0;
3007 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
3008 }
3009 default: return 0;
3010 }
3011}
3012
3013int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
3014 gpa_t addr, unsigned long *ret)
3015{
3016 int r;
6ad18fba 3017 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
2f333bcb 3018
6ad18fba
DH
3019 buffer->ptr = buffer->buf;
3020 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
3021 buffer->processed = 0;
2f333bcb 3022
6ad18fba 3023 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
2f333bcb
MT
3024 if (r)
3025 goto out;
3026
6ad18fba
DH
3027 while (buffer->len) {
3028 r = kvm_pv_mmu_op_one(vcpu, buffer);
2f333bcb
MT
3029 if (r < 0)
3030 goto out;
3031 if (r == 0)
3032 break;
3033 }
3034
3035 r = 1;
3036out:
6ad18fba 3037 *ret = buffer->processed;
2f333bcb
MT
3038 return r;
3039}
3040
37a7d8b0
AK
3041#ifdef AUDIT
3042
3043static const char *audit_msg;
3044
3045static gva_t canonicalize(gva_t gva)
3046{
3047#ifdef CONFIG_X86_64
3048 gva = (long long)(gva << 16) >> 16;
3049#endif
3050 return gva;
3051}
3052
08a3732b
MT
3053
3054typedef void (*inspect_spte_fn) (struct kvm *kvm, struct kvm_mmu_page *sp,
3055 u64 *sptep);
3056
3057static void __mmu_spte_walk(struct kvm *kvm, struct kvm_mmu_page *sp,
3058 inspect_spte_fn fn)
3059{
3060 int i;
3061
3062 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3063 u64 ent = sp->spt[i];
3064
3065 if (is_shadow_present_pte(ent)) {
2920d728 3066 if (!is_last_spte(ent, sp->role.level)) {
08a3732b
MT
3067 struct kvm_mmu_page *child;
3068 child = page_header(ent & PT64_BASE_ADDR_MASK);
3069 __mmu_spte_walk(kvm, child, fn);
2920d728 3070 } else
08a3732b
MT
3071 fn(kvm, sp, &sp->spt[i]);
3072 }
3073 }
3074}
3075
3076static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn)
3077{
3078 int i;
3079 struct kvm_mmu_page *sp;
3080
3081 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3082 return;
3083 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3084 hpa_t root = vcpu->arch.mmu.root_hpa;
3085 sp = page_header(root);
3086 __mmu_spte_walk(vcpu->kvm, sp, fn);
3087 return;
3088 }
3089 for (i = 0; i < 4; ++i) {
3090 hpa_t root = vcpu->arch.mmu.pae_root[i];
3091
3092 if (root && VALID_PAGE(root)) {
3093 root &= PT64_BASE_ADDR_MASK;
3094 sp = page_header(root);
3095 __mmu_spte_walk(vcpu->kvm, sp, fn);
3096 }
3097 }
3098 return;
3099}
3100
37a7d8b0
AK
3101static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
3102 gva_t va, int level)
3103{
3104 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
3105 int i;
3106 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
3107
3108 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
3109 u64 ent = pt[i];
3110
c7addb90 3111 if (ent == shadow_trap_nonpresent_pte)
37a7d8b0
AK
3112 continue;
3113
3114 va = canonicalize(va);
2920d728
MT
3115 if (is_shadow_present_pte(ent) && !is_last_spte(ent, level))
3116 audit_mappings_page(vcpu, ent, va, level - 1);
3117 else {
ad312c7c 3118 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, va);
34382539
JK
3119 gfn_t gfn = gpa >> PAGE_SHIFT;
3120 pfn_t pfn = gfn_to_pfn(vcpu->kvm, gfn);
3121 hpa_t hpa = (hpa_t)pfn << PAGE_SHIFT;
37a7d8b0 3122
2aaf65e8
MT
3123 if (is_error_pfn(pfn)) {
3124 kvm_release_pfn_clean(pfn);
3125 continue;
3126 }
3127
c7addb90 3128 if (is_shadow_present_pte(ent)
37a7d8b0 3129 && (ent & PT64_BASE_ADDR_MASK) != hpa)
c7addb90
AK
3130 printk(KERN_ERR "xx audit error: (%s) levels %d"
3131 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
ad312c7c 3132 audit_msg, vcpu->arch.mmu.root_level,
d77c26fc
MD
3133 va, gpa, hpa, ent,
3134 is_shadow_present_pte(ent));
c7addb90
AK
3135 else if (ent == shadow_notrap_nonpresent_pte
3136 && !is_error_hpa(hpa))
3137 printk(KERN_ERR "audit: (%s) notrap shadow,"
3138 " valid guest gva %lx\n", audit_msg, va);
35149e21 3139 kvm_release_pfn_clean(pfn);
c7addb90 3140
37a7d8b0
AK
3141 }
3142 }
3143}
3144
3145static void audit_mappings(struct kvm_vcpu *vcpu)
3146{
1ea252af 3147 unsigned i;
37a7d8b0 3148
ad312c7c
ZX
3149 if (vcpu->arch.mmu.root_level == 4)
3150 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
37a7d8b0
AK
3151 else
3152 for (i = 0; i < 4; ++i)
ad312c7c 3153 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
37a7d8b0 3154 audit_mappings_page(vcpu,
ad312c7c 3155 vcpu->arch.mmu.pae_root[i],
37a7d8b0
AK
3156 i << 30,
3157 2);
3158}
3159
3160static int count_rmaps(struct kvm_vcpu *vcpu)
3161{
3162 int nmaps = 0;
3163 int i, j, k;
3164
3165 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
3166 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
3167 struct kvm_rmap_desc *d;
3168
3169 for (j = 0; j < m->npages; ++j) {
290fc38d 3170 unsigned long *rmapp = &m->rmap[j];
37a7d8b0 3171
290fc38d 3172 if (!*rmapp)
37a7d8b0 3173 continue;
290fc38d 3174 if (!(*rmapp & 1)) {
37a7d8b0
AK
3175 ++nmaps;
3176 continue;
3177 }
290fc38d 3178 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
37a7d8b0
AK
3179 while (d) {
3180 for (k = 0; k < RMAP_EXT; ++k)
d555c333 3181 if (d->sptes[k])
37a7d8b0
AK
3182 ++nmaps;
3183 else
3184 break;
3185 d = d->more;
3186 }
3187 }
3188 }
3189 return nmaps;
3190}
3191
08a3732b
MT
3192void inspect_spte_has_rmap(struct kvm *kvm, struct kvm_mmu_page *sp, u64 *sptep)
3193{
3194 unsigned long *rmapp;
3195 struct kvm_mmu_page *rev_sp;
3196 gfn_t gfn;
3197
3198 if (*sptep & PT_WRITABLE_MASK) {
3199 rev_sp = page_header(__pa(sptep));
3200 gfn = rev_sp->gfns[sptep - rev_sp->spt];
3201
3202 if (!gfn_to_memslot(kvm, gfn)) {
3203 if (!printk_ratelimit())
3204 return;
3205 printk(KERN_ERR "%s: no memslot for gfn %ld\n",
3206 audit_msg, gfn);
3207 printk(KERN_ERR "%s: index %ld of sp (gfn=%lx)\n",
3208 audit_msg, sptep - rev_sp->spt,
3209 rev_sp->gfn);
3210 dump_stack();
3211 return;
3212 }
3213
2920d728
MT
3214 rmapp = gfn_to_rmap(kvm, rev_sp->gfns[sptep - rev_sp->spt],
3215 is_large_pte(*sptep));
08a3732b
MT
3216 if (!*rmapp) {
3217 if (!printk_ratelimit())
3218 return;
3219 printk(KERN_ERR "%s: no rmap for writable spte %llx\n",
3220 audit_msg, *sptep);
3221 dump_stack();
3222 }
3223 }
3224
3225}
3226
3227void audit_writable_sptes_have_rmaps(struct kvm_vcpu *vcpu)
3228{
3229 mmu_spte_walk(vcpu, inspect_spte_has_rmap);
3230}
3231
3232static void check_writable_mappings_rmap(struct kvm_vcpu *vcpu)
37a7d8b0 3233{
4db35314 3234 struct kvm_mmu_page *sp;
37a7d8b0
AK
3235 int i;
3236
f05e70ac 3237 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
4db35314 3238 u64 *pt = sp->spt;
37a7d8b0 3239
4db35314 3240 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
37a7d8b0
AK
3241 continue;
3242
3243 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3244 u64 ent = pt[i];
3245
3246 if (!(ent & PT_PRESENT_MASK))
3247 continue;
3248 if (!(ent & PT_WRITABLE_MASK))
3249 continue;
08a3732b 3250 inspect_spte_has_rmap(vcpu->kvm, sp, &pt[i]);
37a7d8b0
AK
3251 }
3252 }
08a3732b 3253 return;
37a7d8b0
AK
3254}
3255
3256static void audit_rmap(struct kvm_vcpu *vcpu)
3257{
08a3732b
MT
3258 check_writable_mappings_rmap(vcpu);
3259 count_rmaps(vcpu);
37a7d8b0
AK
3260}
3261
3262static void audit_write_protection(struct kvm_vcpu *vcpu)
3263{
4db35314 3264 struct kvm_mmu_page *sp;
290fc38d
IE
3265 struct kvm_memory_slot *slot;
3266 unsigned long *rmapp;
e58b0f9e 3267 u64 *spte;
290fc38d 3268 gfn_t gfn;
37a7d8b0 3269
f05e70ac 3270 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
f6e2c02b 3271 if (sp->role.direct)
37a7d8b0 3272 continue;
e58b0f9e
MT
3273 if (sp->unsync)
3274 continue;
37a7d8b0 3275
4db35314 3276 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
2843099f 3277 slot = gfn_to_memslot_unaliased(vcpu->kvm, sp->gfn);
290fc38d 3278 rmapp = &slot->rmap[gfn - slot->base_gfn];
e58b0f9e
MT
3279
3280 spte = rmap_next(vcpu->kvm, rmapp, NULL);
3281 while (spte) {
3282 if (*spte & PT_WRITABLE_MASK)
3283 printk(KERN_ERR "%s: (%s) shadow page has "
3284 "writable mappings: gfn %lx role %x\n",
b8688d51 3285 __func__, audit_msg, sp->gfn,
4db35314 3286 sp->role.word);
e58b0f9e
MT
3287 spte = rmap_next(vcpu->kvm, rmapp, spte);
3288 }
37a7d8b0
AK
3289 }
3290}
3291
3292static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
3293{
3294 int olddbg = dbg;
3295
3296 dbg = 0;
3297 audit_msg = msg;
3298 audit_rmap(vcpu);
3299 audit_write_protection(vcpu);
2aaf65e8
MT
3300 if (strcmp("pre pte write", audit_msg) != 0)
3301 audit_mappings(vcpu);
08a3732b 3302 audit_writable_sptes_have_rmaps(vcpu);
37a7d8b0
AK
3303 dbg = olddbg;
3304}
3305
3306#endif
This page took 0.568776 seconds and 5 git commands to generate.