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