]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kvm/mmu.c
KVM: MMU: clear unsync_child_bitmap completely
[mirror_ubuntu-bionic-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 1105static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
be71e061 1106 struct kvm_mmu_page *sp, bool clear_unsync)
e8bc217a
MT
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) {
7a8f1a74 1152 struct kvm_mmu_page *child;
4731d4c7
MT
1153 u64 ent = sp->spt[i];
1154
7a8f1a74
XG
1155 if (!is_shadow_present_pte(ent) || is_large_pte(ent))
1156 goto clear_child_bitmap;
1157
1158 child = page_header(ent & PT64_BASE_ADDR_MASK);
1159
1160 if (child->unsync_children) {
1161 if (mmu_pages_add(pvec, child, i))
1162 return -ENOSPC;
1163
1164 ret = __mmu_unsync_walk(child, pvec);
1165 if (!ret)
1166 goto clear_child_bitmap;
1167 else if (ret > 0)
1168 nr_unsync_leaf += ret;
1169 else
1170 return ret;
1171 } else if (child->unsync) {
1172 nr_unsync_leaf++;
1173 if (mmu_pages_add(pvec, child, i))
1174 return -ENOSPC;
1175 } else
1176 goto clear_child_bitmap;
1177
1178 continue;
1179
1180clear_child_bitmap:
1181 __clear_bit(i, sp->unsync_child_bitmap);
1182 sp->unsync_children--;
1183 WARN_ON((int)sp->unsync_children < 0);
4731d4c7
MT
1184 }
1185
4731d4c7 1186
60c8aec6
MT
1187 return nr_unsync_leaf;
1188}
1189
1190static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1191 struct kvm_mmu_pages *pvec)
1192{
1193 if (!sp->unsync_children)
1194 return 0;
1195
1196 mmu_pages_add(pvec, sp, 0);
1197 return __mmu_unsync_walk(sp, pvec);
4731d4c7
MT
1198}
1199
4731d4c7
MT
1200static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1201{
1202 WARN_ON(!sp->unsync);
5e1b3ddb 1203 trace_kvm_mmu_sync_page(sp);
4731d4c7
MT
1204 sp->unsync = 0;
1205 --kvm->stat.mmu_unsync;
1206}
1207
7775834a
XG
1208static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1209 struct list_head *invalid_list);
1210static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1211 struct list_head *invalid_list);
4731d4c7 1212
f41d335a
XG
1213#define for_each_gfn_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)) {} else
1217
f41d335a
XG
1218#define for_each_gfn_indirect_valid_sp(kvm, sp, gfn, pos) \
1219 hlist_for_each_entry(sp, pos, \
7ae680eb
XG
1220 &(kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)], hash_link) \
1221 if ((sp)->gfn != (gfn) || (sp)->role.direct || \
1222 (sp)->role.invalid) {} else
1223
f918b443 1224/* @sp->gfn should be write-protected at the call site */
1d9dc7e0 1225static int __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
d98ba053 1226 struct list_head *invalid_list, bool clear_unsync)
4731d4c7 1227{
5b7e0102 1228 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
d98ba053 1229 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
4731d4c7
MT
1230 return 1;
1231 }
1232
f918b443 1233 if (clear_unsync)
1d9dc7e0 1234 kvm_unlink_unsync_page(vcpu->kvm, sp);
1d9dc7e0 1235
be71e061 1236 if (vcpu->arch.mmu.sync_page(vcpu, sp, clear_unsync)) {
d98ba053 1237 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
4731d4c7
MT
1238 return 1;
1239 }
1240
1241 kvm_mmu_flush_tlb(vcpu);
4731d4c7
MT
1242 return 0;
1243}
1244
1d9dc7e0
XG
1245static int kvm_sync_page_transient(struct kvm_vcpu *vcpu,
1246 struct kvm_mmu_page *sp)
1247{
d98ba053 1248 LIST_HEAD(invalid_list);
1d9dc7e0
XG
1249 int ret;
1250
d98ba053 1251 ret = __kvm_sync_page(vcpu, sp, &invalid_list, false);
be71e061 1252 if (ret)
d98ba053
XG
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)) ||
be71e061 1278 (vcpu->arch.mmu.sync_page(vcpu, s, true))) {
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;
5304efde 1987 kvm_mmu_flush_tlb(vcpu);
a378b4e6 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;
3b5d1321 2367 set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests);
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
0671a8e7
XG
2669static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
2670 bool remote_flush, bool local_flush)
79539cec 2671{
0671a8e7
XG
2672 if (zap_page)
2673 return;
2674
2675 if (remote_flush)
79539cec 2676 kvm_flush_remote_tlbs(vcpu->kvm);
0671a8e7 2677 else if (local_flush)
79539cec
AK
2678 kvm_mmu_flush_tlb(vcpu);
2679}
2680
12b7d28f
AK
2681static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
2682{
ad312c7c 2683 u64 *spte = vcpu->arch.last_pte_updated;
12b7d28f 2684
7b52345e 2685 return !!(spte && (*spte & shadow_accessed_mask));
12b7d28f
AK
2686}
2687
d7824fff 2688static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
72016f3a 2689 u64 gpte)
d7824fff
AK
2690{
2691 gfn_t gfn;
35149e21 2692 pfn_t pfn;
d7824fff 2693
43a3795a 2694 if (!is_present_gpte(gpte))
d7824fff
AK
2695 return;
2696 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
72dc67a6 2697
e930bffe 2698 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2699 smp_rmb();
35149e21 2700 pfn = gfn_to_pfn(vcpu->kvm, gfn);
72dc67a6 2701
35149e21
AL
2702 if (is_error_pfn(pfn)) {
2703 kvm_release_pfn_clean(pfn);
d196e343
AK
2704 return;
2705 }
d7824fff 2706 vcpu->arch.update_pte.gfn = gfn;
35149e21 2707 vcpu->arch.update_pte.pfn = pfn;
d7824fff
AK
2708}
2709
1b7fcd32
AK
2710static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
2711{
2712 u64 *spte = vcpu->arch.last_pte_updated;
2713
2714 if (spte
2715 && vcpu->arch.last_pte_gfn == gfn
2716 && shadow_accessed_mask
2717 && !(*spte & shadow_accessed_mask)
2718 && is_shadow_present_pte(*spte))
2719 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
2720}
2721
09072daf 2722void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
ad218f85
MT
2723 const u8 *new, int bytes,
2724 bool guest_initiated)
da4a00f0 2725{
9b7a0325 2726 gfn_t gfn = gpa >> PAGE_SHIFT;
4db35314 2727 struct kvm_mmu_page *sp;
f41d335a 2728 struct hlist_node *node;
d98ba053 2729 LIST_HEAD(invalid_list);
489f1d65 2730 u64 entry, gentry;
9b7a0325 2731 u64 *spte;
9b7a0325 2732 unsigned offset = offset_in_page(gpa);
0e7bc4b9 2733 unsigned pte_size;
9b7a0325 2734 unsigned page_offset;
0e7bc4b9 2735 unsigned misaligned;
fce0657f 2736 unsigned quadrant;
9b7a0325 2737 int level;
86a5ba02 2738 int flooded = 0;
ac1b714e 2739 int npte;
489f1d65 2740 int r;
08e850c6 2741 int invlpg_counter;
0671a8e7
XG
2742 bool remote_flush, local_flush, zap_page;
2743
2744 zap_page = remote_flush = local_flush = false;
9b7a0325 2745
b8688d51 2746 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
72016f3a 2747
08e850c6 2748 invlpg_counter = atomic_read(&vcpu->kvm->arch.invlpg_counter);
72016f3a
AK
2749
2750 /*
2751 * Assume that the pte write on a page table of the same type
2752 * as the current vcpu paging mode. This is nearly always true
2753 * (might be false while changing modes). Note it is verified later
2754 * by update_pte().
2755 */
08e850c6 2756 if ((is_pae(vcpu) && bytes == 4) || !new) {
72016f3a 2757 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
08e850c6
AK
2758 if (is_pae(vcpu)) {
2759 gpa &= ~(gpa_t)7;
2760 bytes = 8;
2761 }
2762 r = kvm_read_guest(vcpu->kvm, gpa, &gentry, min(bytes, 8));
72016f3a
AK
2763 if (r)
2764 gentry = 0;
08e850c6
AK
2765 new = (const u8 *)&gentry;
2766 }
2767
2768 switch (bytes) {
2769 case 4:
2770 gentry = *(const u32 *)new;
2771 break;
2772 case 8:
2773 gentry = *(const u64 *)new;
2774 break;
2775 default:
2776 gentry = 0;
2777 break;
72016f3a
AK
2778 }
2779
2780 mmu_guess_page_from_pte_write(vcpu, gpa, gentry);
aaee2c94 2781 spin_lock(&vcpu->kvm->mmu_lock);
08e850c6
AK
2782 if (atomic_read(&vcpu->kvm->arch.invlpg_counter) != invlpg_counter)
2783 gentry = 0;
1b7fcd32 2784 kvm_mmu_access_page(vcpu, gfn);
eb787d10 2785 kvm_mmu_free_some_pages(vcpu);
4cee5764 2786 ++vcpu->kvm->stat.mmu_pte_write;
c7addb90 2787 kvm_mmu_audit(vcpu, "pre pte write");
ad218f85
MT
2788 if (guest_initiated) {
2789 if (gfn == vcpu->arch.last_pt_write_gfn
2790 && !last_updated_pte_accessed(vcpu)) {
2791 ++vcpu->arch.last_pt_write_count;
2792 if (vcpu->arch.last_pt_write_count >= 3)
2793 flooded = 1;
2794 } else {
2795 vcpu->arch.last_pt_write_gfn = gfn;
2796 vcpu->arch.last_pt_write_count = 1;
2797 vcpu->arch.last_pte_updated = NULL;
2798 }
86a5ba02 2799 }
3246af0e 2800
f41d335a 2801 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn, node) {
5b7e0102 2802 pte_size = sp->role.cr4_pae ? 8 : 4;
0e7bc4b9 2803 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
e925c5ba 2804 misaligned |= bytes < 4;
86a5ba02 2805 if (misaligned || flooded) {
0e7bc4b9
AK
2806 /*
2807 * Misaligned accesses are too much trouble to fix
2808 * up; also, they usually indicate a page is not used
2809 * as a page table.
86a5ba02
AK
2810 *
2811 * If we're seeing too many writes to a page,
2812 * it may no longer be a page table, or we may be
2813 * forking, in which case it is better to unmap the
2814 * page.
0e7bc4b9
AK
2815 */
2816 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4db35314 2817 gpa, bytes, sp->role.word);
0671a8e7 2818 zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
f41d335a 2819 &invalid_list);
4cee5764 2820 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
2821 continue;
2822 }
9b7a0325 2823 page_offset = offset;
4db35314 2824 level = sp->role.level;
ac1b714e 2825 npte = 1;
5b7e0102 2826 if (!sp->role.cr4_pae) {
ac1b714e
AK
2827 page_offset <<= 1; /* 32->64 */
2828 /*
2829 * A 32-bit pde maps 4MB while the shadow pdes map
2830 * only 2MB. So we need to double the offset again
2831 * and zap two pdes instead of one.
2832 */
2833 if (level == PT32_ROOT_LEVEL) {
6b8d0f9b 2834 page_offset &= ~7; /* kill rounding error */
ac1b714e
AK
2835 page_offset <<= 1;
2836 npte = 2;
2837 }
fce0657f 2838 quadrant = page_offset >> PAGE_SHIFT;
9b7a0325 2839 page_offset &= ~PAGE_MASK;
4db35314 2840 if (quadrant != sp->role.quadrant)
fce0657f 2841 continue;
9b7a0325 2842 }
0671a8e7 2843 local_flush = true;
4db35314 2844 spte = &sp->spt[page_offset / sizeof(*spte)];
ac1b714e 2845 while (npte--) {
79539cec 2846 entry = *spte;
4db35314 2847 mmu_pte_write_zap_pte(vcpu, sp, spte);
72016f3a
AK
2848 if (gentry)
2849 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
0671a8e7
XG
2850 if (!remote_flush && need_remote_flush(entry, *spte))
2851 remote_flush = true;
ac1b714e 2852 ++spte;
9b7a0325 2853 }
9b7a0325 2854 }
0671a8e7 2855 mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
d98ba053 2856 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
c7addb90 2857 kvm_mmu_audit(vcpu, "post pte write");
aaee2c94 2858 spin_unlock(&vcpu->kvm->mmu_lock);
35149e21
AL
2859 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
2860 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
2861 vcpu->arch.update_pte.pfn = bad_pfn;
d7824fff 2862 }
da4a00f0
AK
2863}
2864
a436036b
AK
2865int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
2866{
10589a46
MT
2867 gpa_t gpa;
2868 int r;
a436036b 2869
60f24784
AK
2870 if (tdp_enabled)
2871 return 0;
2872
1871c602 2873 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
10589a46 2874
aaee2c94 2875 spin_lock(&vcpu->kvm->mmu_lock);
10589a46 2876 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
aaee2c94 2877 spin_unlock(&vcpu->kvm->mmu_lock);
10589a46 2878 return r;
a436036b 2879}
577bdc49 2880EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
a436036b 2881
22d95b12 2882void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
ebeace86 2883{
103ad25a 2884 int free_pages;
d98ba053 2885 LIST_HEAD(invalid_list);
103ad25a
XG
2886
2887 free_pages = vcpu->kvm->arch.n_free_mmu_pages;
2888 while (free_pages < KVM_REFILL_PAGES &&
3b80fffe 2889 !list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
4db35314 2890 struct kvm_mmu_page *sp;
ebeace86 2891
f05e70ac 2892 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
4db35314 2893 struct kvm_mmu_page, link);
d98ba053
XG
2894 free_pages += kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
2895 &invalid_list);
4cee5764 2896 ++vcpu->kvm->stat.mmu_recycled;
ebeace86 2897 }
d98ba053 2898 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
ebeace86 2899}
ebeace86 2900
3067714c
AK
2901int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
2902{
2903 int r;
2904 enum emulation_result er;
2905
ad312c7c 2906 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
3067714c
AK
2907 if (r < 0)
2908 goto out;
2909
2910 if (!r) {
2911 r = 1;
2912 goto out;
2913 }
2914
b733bfb5
AK
2915 r = mmu_topup_memory_caches(vcpu);
2916 if (r)
2917 goto out;
2918
851ba692 2919 er = emulate_instruction(vcpu, cr2, error_code, 0);
3067714c
AK
2920
2921 switch (er) {
2922 case EMULATE_DONE:
2923 return 1;
2924 case EMULATE_DO_MMIO:
2925 ++vcpu->stat.mmio_exits;
6d77dbfc 2926 /* fall through */
3067714c 2927 case EMULATE_FAIL:
3f5d18a9 2928 return 0;
3067714c
AK
2929 default:
2930 BUG();
2931 }
2932out:
3067714c
AK
2933 return r;
2934}
2935EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
2936
a7052897
MT
2937void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
2938{
a7052897 2939 vcpu->arch.mmu.invlpg(vcpu, gva);
a7052897
MT
2940 kvm_mmu_flush_tlb(vcpu);
2941 ++vcpu->stat.invlpg;
2942}
2943EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
2944
18552672
JR
2945void kvm_enable_tdp(void)
2946{
2947 tdp_enabled = true;
2948}
2949EXPORT_SYMBOL_GPL(kvm_enable_tdp);
2950
5f4cb662
JR
2951void kvm_disable_tdp(void)
2952{
2953 tdp_enabled = false;
2954}
2955EXPORT_SYMBOL_GPL(kvm_disable_tdp);
2956
6aa8b732
AK
2957static void free_mmu_pages(struct kvm_vcpu *vcpu)
2958{
ad312c7c 2959 free_page((unsigned long)vcpu->arch.mmu.pae_root);
6aa8b732
AK
2960}
2961
2962static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
2963{
17ac10ad 2964 struct page *page;
6aa8b732
AK
2965 int i;
2966
2967 ASSERT(vcpu);
2968
17ac10ad
AK
2969 /*
2970 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
2971 * Therefore we need to allocate shadow page tables in the first
2972 * 4GB of memory, which happens to fit the DMA32 zone.
2973 */
2974 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
2975 if (!page)
d7fa6ab2
WY
2976 return -ENOMEM;
2977
ad312c7c 2978 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 2979 for (i = 0; i < 4; ++i)
ad312c7c 2980 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 2981
6aa8b732 2982 return 0;
6aa8b732
AK
2983}
2984
8018c27b 2985int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 2986{
6aa8b732 2987 ASSERT(vcpu);
ad312c7c 2988 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2989
8018c27b
IM
2990 return alloc_mmu_pages(vcpu);
2991}
6aa8b732 2992
8018c27b
IM
2993int kvm_mmu_setup(struct kvm_vcpu *vcpu)
2994{
2995 ASSERT(vcpu);
ad312c7c 2996 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 2997
8018c27b 2998 return init_kvm_mmu(vcpu);
6aa8b732
AK
2999}
3000
3001void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
3002{
3003 ASSERT(vcpu);
3004
3005 destroy_kvm_mmu(vcpu);
3006 free_mmu_pages(vcpu);
714b93da 3007 mmu_free_memory_caches(vcpu);
6aa8b732
AK
3008}
3009
90cb0529 3010void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 3011{
4db35314 3012 struct kvm_mmu_page *sp;
6aa8b732 3013
f05e70ac 3014 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
6aa8b732
AK
3015 int i;
3016 u64 *pt;
3017
291f26bc 3018 if (!test_bit(slot, sp->slot_bitmap))
6aa8b732
AK
3019 continue;
3020
4db35314 3021 pt = sp->spt;
6aa8b732
AK
3022 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
3023 /* avoid RMW */
01c168ac 3024 if (is_writable_pte(pt[i]))
6aa8b732 3025 pt[i] &= ~PT_WRITABLE_MASK;
6aa8b732 3026 }
171d595d 3027 kvm_flush_remote_tlbs(kvm);
6aa8b732 3028}
37a7d8b0 3029
90cb0529 3030void kvm_mmu_zap_all(struct kvm *kvm)
e0fa826f 3031{
4db35314 3032 struct kvm_mmu_page *sp, *node;
d98ba053 3033 LIST_HEAD(invalid_list);
e0fa826f 3034
aaee2c94 3035 spin_lock(&kvm->mmu_lock);
3246af0e 3036restart:
f05e70ac 3037 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
d98ba053 3038 if (kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list))
3246af0e
XG
3039 goto restart;
3040
d98ba053 3041 kvm_mmu_commit_zap_page(kvm, &invalid_list);
aaee2c94 3042 spin_unlock(&kvm->mmu_lock);
e0fa826f
DL
3043}
3044
d98ba053
XG
3045static int kvm_mmu_remove_some_alloc_mmu_pages(struct kvm *kvm,
3046 struct list_head *invalid_list)
3ee16c81
IE
3047{
3048 struct kvm_mmu_page *page;
3049
3050 page = container_of(kvm->arch.active_mmu_pages.prev,
3051 struct kvm_mmu_page, link);
d98ba053 3052 return kvm_mmu_prepare_zap_page(kvm, page, invalid_list);
3ee16c81
IE
3053}
3054
7f8275d0 3055static int mmu_shrink(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
3ee16c81
IE
3056{
3057 struct kvm *kvm;
3058 struct kvm *kvm_freed = NULL;
3059 int cache_count = 0;
3060
3061 spin_lock(&kvm_lock);
3062
3063 list_for_each_entry(kvm, &vm_list, vm_list) {
d35b8dd9 3064 int npages, idx, freed_pages;
d98ba053 3065 LIST_HEAD(invalid_list);
3ee16c81 3066
f656ce01 3067 idx = srcu_read_lock(&kvm->srcu);
3ee16c81
IE
3068 spin_lock(&kvm->mmu_lock);
3069 npages = kvm->arch.n_alloc_mmu_pages -
3070 kvm->arch.n_free_mmu_pages;
3071 cache_count += npages;
3072 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
d98ba053
XG
3073 freed_pages = kvm_mmu_remove_some_alloc_mmu_pages(kvm,
3074 &invalid_list);
d35b8dd9 3075 cache_count -= freed_pages;
3ee16c81
IE
3076 kvm_freed = kvm;
3077 }
3078 nr_to_scan--;
3079
d98ba053 3080 kvm_mmu_commit_zap_page(kvm, &invalid_list);
3ee16c81 3081 spin_unlock(&kvm->mmu_lock);
f656ce01 3082 srcu_read_unlock(&kvm->srcu, idx);
3ee16c81
IE
3083 }
3084 if (kvm_freed)
3085 list_move_tail(&kvm_freed->vm_list, &vm_list);
3086
3087 spin_unlock(&kvm_lock);
3088
3089 return cache_count;
3090}
3091
3092static struct shrinker mmu_shrinker = {
3093 .shrink = mmu_shrink,
3094 .seeks = DEFAULT_SEEKS * 10,
3095};
3096
2ddfd20e 3097static void mmu_destroy_caches(void)
b5a33a75
AK
3098{
3099 if (pte_chain_cache)
3100 kmem_cache_destroy(pte_chain_cache);
3101 if (rmap_desc_cache)
3102 kmem_cache_destroy(rmap_desc_cache);
d3d25b04
AK
3103 if (mmu_page_header_cache)
3104 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
3105}
3106
3ee16c81
IE
3107void kvm_mmu_module_exit(void)
3108{
3109 mmu_destroy_caches();
3110 unregister_shrinker(&mmu_shrinker);
3111}
3112
b5a33a75
AK
3113int kvm_mmu_module_init(void)
3114{
3115 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
3116 sizeof(struct kvm_pte_chain),
20c2df83 3117 0, 0, NULL);
b5a33a75
AK
3118 if (!pte_chain_cache)
3119 goto nomem;
3120 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
3121 sizeof(struct kvm_rmap_desc),
20c2df83 3122 0, 0, NULL);
b5a33a75
AK
3123 if (!rmap_desc_cache)
3124 goto nomem;
3125
d3d25b04
AK
3126 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
3127 sizeof(struct kvm_mmu_page),
20c2df83 3128 0, 0, NULL);
d3d25b04
AK
3129 if (!mmu_page_header_cache)
3130 goto nomem;
3131
3ee16c81
IE
3132 register_shrinker(&mmu_shrinker);
3133
b5a33a75
AK
3134 return 0;
3135
3136nomem:
3ee16c81 3137 mmu_destroy_caches();
b5a33a75
AK
3138 return -ENOMEM;
3139}
3140
3ad82a7e
ZX
3141/*
3142 * Caculate mmu pages needed for kvm.
3143 */
3144unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
3145{
3146 int i;
3147 unsigned int nr_mmu_pages;
3148 unsigned int nr_pages = 0;
bc6678a3 3149 struct kvm_memslots *slots;
3ad82a7e 3150
90d83dc3
LJ
3151 slots = kvm_memslots(kvm);
3152
bc6678a3
MT
3153 for (i = 0; i < slots->nmemslots; i++)
3154 nr_pages += slots->memslots[i].npages;
3ad82a7e
ZX
3155
3156 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
3157 nr_mmu_pages = max(nr_mmu_pages,
3158 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
3159
3160 return nr_mmu_pages;
3161}
3162
2f333bcb
MT
3163static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3164 unsigned len)
3165{
3166 if (len > buffer->len)
3167 return NULL;
3168 return buffer->ptr;
3169}
3170
3171static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3172 unsigned len)
3173{
3174 void *ret;
3175
3176 ret = pv_mmu_peek_buffer(buffer, len);
3177 if (!ret)
3178 return ret;
3179 buffer->ptr += len;
3180 buffer->len -= len;
3181 buffer->processed += len;
3182 return ret;
3183}
3184
3185static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
3186 gpa_t addr, gpa_t value)
3187{
3188 int bytes = 8;
3189 int r;
3190
3191 if (!is_long_mode(vcpu) && !is_pae(vcpu))
3192 bytes = 4;
3193
3194 r = mmu_topup_memory_caches(vcpu);
3195 if (r)
3196 return r;
3197
3200f405 3198 if (!emulator_write_phys(vcpu, addr, &value, bytes))
2f333bcb
MT
3199 return -EFAULT;
3200
3201 return 1;
3202}
3203
3204static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
3205{
2390218b 3206 (void)kvm_set_cr3(vcpu, vcpu->arch.cr3);
2f333bcb
MT
3207 return 1;
3208}
3209
3210static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
3211{
3212 spin_lock(&vcpu->kvm->mmu_lock);
3213 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
3214 spin_unlock(&vcpu->kvm->mmu_lock);
3215 return 1;
3216}
3217
3218static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
3219 struct kvm_pv_mmu_op_buffer *buffer)
3220{
3221 struct kvm_mmu_op_header *header;
3222
3223 header = pv_mmu_peek_buffer(buffer, sizeof *header);
3224 if (!header)
3225 return 0;
3226 switch (header->op) {
3227 case KVM_MMU_OP_WRITE_PTE: {
3228 struct kvm_mmu_op_write_pte *wpte;
3229
3230 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
3231 if (!wpte)
3232 return 0;
3233 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
3234 wpte->pte_val);
3235 }
3236 case KVM_MMU_OP_FLUSH_TLB: {
3237 struct kvm_mmu_op_flush_tlb *ftlb;
3238
3239 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
3240 if (!ftlb)
3241 return 0;
3242 return kvm_pv_mmu_flush_tlb(vcpu);
3243 }
3244 case KVM_MMU_OP_RELEASE_PT: {
3245 struct kvm_mmu_op_release_pt *rpt;
3246
3247 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
3248 if (!rpt)
3249 return 0;
3250 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
3251 }
3252 default: return 0;
3253 }
3254}
3255
3256int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
3257 gpa_t addr, unsigned long *ret)
3258{
3259 int r;
6ad18fba 3260 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
2f333bcb 3261
6ad18fba
DH
3262 buffer->ptr = buffer->buf;
3263 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
3264 buffer->processed = 0;
2f333bcb 3265
6ad18fba 3266 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
2f333bcb
MT
3267 if (r)
3268 goto out;
3269
6ad18fba
DH
3270 while (buffer->len) {
3271 r = kvm_pv_mmu_op_one(vcpu, buffer);
2f333bcb
MT
3272 if (r < 0)
3273 goto out;
3274 if (r == 0)
3275 break;
3276 }
3277
3278 r = 1;
3279out:
6ad18fba 3280 *ret = buffer->processed;
2f333bcb
MT
3281 return r;
3282}
3283
94d8b056
MT
3284int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
3285{
3286 struct kvm_shadow_walk_iterator iterator;
3287 int nr_sptes = 0;
3288
3289 spin_lock(&vcpu->kvm->mmu_lock);
3290 for_each_shadow_entry(vcpu, addr, iterator) {
3291 sptes[iterator.level-1] = *iterator.sptep;
3292 nr_sptes++;
3293 if (!is_shadow_present_pte(*iterator.sptep))
3294 break;
3295 }
3296 spin_unlock(&vcpu->kvm->mmu_lock);
3297
3298 return nr_sptes;
3299}
3300EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
3301
37a7d8b0
AK
3302#ifdef AUDIT
3303
3304static const char *audit_msg;
3305
3306static gva_t canonicalize(gva_t gva)
3307{
3308#ifdef CONFIG_X86_64
3309 gva = (long long)(gva << 16) >> 16;
3310#endif
3311 return gva;
3312}
3313
08a3732b 3314
805d32de 3315typedef void (*inspect_spte_fn) (struct kvm *kvm, u64 *sptep);
08a3732b
MT
3316
3317static void __mmu_spte_walk(struct kvm *kvm, struct kvm_mmu_page *sp,
3318 inspect_spte_fn fn)
3319{
3320 int i;
3321
3322 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3323 u64 ent = sp->spt[i];
3324
3325 if (is_shadow_present_pte(ent)) {
2920d728 3326 if (!is_last_spte(ent, sp->role.level)) {
08a3732b
MT
3327 struct kvm_mmu_page *child;
3328 child = page_header(ent & PT64_BASE_ADDR_MASK);
3329 __mmu_spte_walk(kvm, child, fn);
2920d728 3330 } else
805d32de 3331 fn(kvm, &sp->spt[i]);
08a3732b
MT
3332 }
3333 }
3334}
3335
3336static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn)
3337{
3338 int i;
3339 struct kvm_mmu_page *sp;
3340
3341 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3342 return;
3343 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3344 hpa_t root = vcpu->arch.mmu.root_hpa;
3345 sp = page_header(root);
3346 __mmu_spte_walk(vcpu->kvm, sp, fn);
3347 return;
3348 }
3349 for (i = 0; i < 4; ++i) {
3350 hpa_t root = vcpu->arch.mmu.pae_root[i];
3351
3352 if (root && VALID_PAGE(root)) {
3353 root &= PT64_BASE_ADDR_MASK;
3354 sp = page_header(root);
3355 __mmu_spte_walk(vcpu->kvm, sp, fn);
3356 }
3357 }
3358 return;
3359}
3360
37a7d8b0
AK
3361static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
3362 gva_t va, int level)
3363{
3364 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
3365 int i;
3366 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
3367
3368 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
3369 u64 ent = pt[i];
3370
c7addb90 3371 if (ent == shadow_trap_nonpresent_pte)
37a7d8b0
AK
3372 continue;
3373
3374 va = canonicalize(va);
2920d728
MT
3375 if (is_shadow_present_pte(ent) && !is_last_spte(ent, level))
3376 audit_mappings_page(vcpu, ent, va, level - 1);
3377 else {
1871c602 3378 gpa_t gpa = kvm_mmu_gva_to_gpa_read(vcpu, va, NULL);
34382539
JK
3379 gfn_t gfn = gpa >> PAGE_SHIFT;
3380 pfn_t pfn = gfn_to_pfn(vcpu->kvm, gfn);
3381 hpa_t hpa = (hpa_t)pfn << PAGE_SHIFT;
37a7d8b0 3382
2aaf65e8
MT
3383 if (is_error_pfn(pfn)) {
3384 kvm_release_pfn_clean(pfn);
3385 continue;
3386 }
3387
c7addb90 3388 if (is_shadow_present_pte(ent)
37a7d8b0 3389 && (ent & PT64_BASE_ADDR_MASK) != hpa)
c7addb90
AK
3390 printk(KERN_ERR "xx audit error: (%s) levels %d"
3391 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
ad312c7c 3392 audit_msg, vcpu->arch.mmu.root_level,
d77c26fc
MD
3393 va, gpa, hpa, ent,
3394 is_shadow_present_pte(ent));
c7addb90
AK
3395 else if (ent == shadow_notrap_nonpresent_pte
3396 && !is_error_hpa(hpa))
3397 printk(KERN_ERR "audit: (%s) notrap shadow,"
3398 " valid guest gva %lx\n", audit_msg, va);
35149e21 3399 kvm_release_pfn_clean(pfn);
c7addb90 3400
37a7d8b0
AK
3401 }
3402 }
3403}
3404
3405static void audit_mappings(struct kvm_vcpu *vcpu)
3406{
1ea252af 3407 unsigned i;
37a7d8b0 3408
ad312c7c
ZX
3409 if (vcpu->arch.mmu.root_level == 4)
3410 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
37a7d8b0
AK
3411 else
3412 for (i = 0; i < 4; ++i)
ad312c7c 3413 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
37a7d8b0 3414 audit_mappings_page(vcpu,
ad312c7c 3415 vcpu->arch.mmu.pae_root[i],
37a7d8b0
AK
3416 i << 30,
3417 2);
3418}
3419
3420static int count_rmaps(struct kvm_vcpu *vcpu)
3421{
805d32de
XG
3422 struct kvm *kvm = vcpu->kvm;
3423 struct kvm_memslots *slots;
37a7d8b0 3424 int nmaps = 0;
bc6678a3 3425 int i, j, k, idx;
37a7d8b0 3426
bc6678a3 3427 idx = srcu_read_lock(&kvm->srcu);
90d83dc3 3428 slots = kvm_memslots(kvm);
37a7d8b0 3429 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
bc6678a3 3430 struct kvm_memory_slot *m = &slots->memslots[i];
37a7d8b0
AK
3431 struct kvm_rmap_desc *d;
3432
3433 for (j = 0; j < m->npages; ++j) {
290fc38d 3434 unsigned long *rmapp = &m->rmap[j];
37a7d8b0 3435
290fc38d 3436 if (!*rmapp)
37a7d8b0 3437 continue;
290fc38d 3438 if (!(*rmapp & 1)) {
37a7d8b0
AK
3439 ++nmaps;
3440 continue;
3441 }
290fc38d 3442 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
37a7d8b0
AK
3443 while (d) {
3444 for (k = 0; k < RMAP_EXT; ++k)
d555c333 3445 if (d->sptes[k])
37a7d8b0
AK
3446 ++nmaps;
3447 else
3448 break;
3449 d = d->more;
3450 }
3451 }
3452 }
bc6678a3 3453 srcu_read_unlock(&kvm->srcu, idx);
37a7d8b0
AK
3454 return nmaps;
3455}
3456
805d32de 3457void inspect_spte_has_rmap(struct kvm *kvm, u64 *sptep)
08a3732b
MT
3458{
3459 unsigned long *rmapp;
3460 struct kvm_mmu_page *rev_sp;
3461 gfn_t gfn;
3462
01c168ac 3463 if (is_writable_pte(*sptep)) {
08a3732b 3464 rev_sp = page_header(__pa(sptep));
2032a93d 3465 gfn = kvm_mmu_page_get_gfn(rev_sp, sptep - rev_sp->spt);
08a3732b
MT
3466
3467 if (!gfn_to_memslot(kvm, gfn)) {
3468 if (!printk_ratelimit())
3469 return;
3470 printk(KERN_ERR "%s: no memslot for gfn %ld\n",
3471 audit_msg, gfn);
3472 printk(KERN_ERR "%s: index %ld of sp (gfn=%lx)\n",
805d32de 3473 audit_msg, (long int)(sptep - rev_sp->spt),
08a3732b
MT
3474 rev_sp->gfn);
3475 dump_stack();
3476 return;
3477 }
3478
2032a93d 3479 rmapp = gfn_to_rmap(kvm, gfn, rev_sp->role.level);
08a3732b
MT
3480 if (!*rmapp) {
3481 if (!printk_ratelimit())
3482 return;
3483 printk(KERN_ERR "%s: no rmap for writable spte %llx\n",
3484 audit_msg, *sptep);
3485 dump_stack();
3486 }
3487 }
3488
3489}
3490
3491void audit_writable_sptes_have_rmaps(struct kvm_vcpu *vcpu)
3492{
3493 mmu_spte_walk(vcpu, inspect_spte_has_rmap);
3494}
3495
3496static void check_writable_mappings_rmap(struct kvm_vcpu *vcpu)
37a7d8b0 3497{
4db35314 3498 struct kvm_mmu_page *sp;
37a7d8b0
AK
3499 int i;
3500
f05e70ac 3501 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
4db35314 3502 u64 *pt = sp->spt;
37a7d8b0 3503
4db35314 3504 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
37a7d8b0
AK
3505 continue;
3506
3507 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3508 u64 ent = pt[i];
3509
3510 if (!(ent & PT_PRESENT_MASK))
3511 continue;
01c168ac 3512 if (!is_writable_pte(ent))
37a7d8b0 3513 continue;
805d32de 3514 inspect_spte_has_rmap(vcpu->kvm, &pt[i]);
37a7d8b0
AK
3515 }
3516 }
08a3732b 3517 return;
37a7d8b0
AK
3518}
3519
3520static void audit_rmap(struct kvm_vcpu *vcpu)
3521{
08a3732b
MT
3522 check_writable_mappings_rmap(vcpu);
3523 count_rmaps(vcpu);
37a7d8b0
AK
3524}
3525
3526static void audit_write_protection(struct kvm_vcpu *vcpu)
3527{
4db35314 3528 struct kvm_mmu_page *sp;
290fc38d
IE
3529 struct kvm_memory_slot *slot;
3530 unsigned long *rmapp;
e58b0f9e 3531 u64 *spte;
290fc38d 3532 gfn_t gfn;
37a7d8b0 3533
f05e70ac 3534 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
f6e2c02b 3535 if (sp->role.direct)
37a7d8b0 3536 continue;
e58b0f9e
MT
3537 if (sp->unsync)
3538 continue;
37a7d8b0 3539
4db35314 3540 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
2843099f 3541 slot = gfn_to_memslot_unaliased(vcpu->kvm, sp->gfn);
290fc38d 3542 rmapp = &slot->rmap[gfn - slot->base_gfn];
e58b0f9e
MT
3543
3544 spte = rmap_next(vcpu->kvm, rmapp, NULL);
3545 while (spte) {
01c168ac 3546 if (is_writable_pte(*spte))
e58b0f9e
MT
3547 printk(KERN_ERR "%s: (%s) shadow page has "
3548 "writable mappings: gfn %lx role %x\n",
b8688d51 3549 __func__, audit_msg, sp->gfn,
4db35314 3550 sp->role.word);
e58b0f9e
MT
3551 spte = rmap_next(vcpu->kvm, rmapp, spte);
3552 }
37a7d8b0
AK
3553 }
3554}
3555
3556static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
3557{
3558 int olddbg = dbg;
3559
3560 dbg = 0;
3561 audit_msg = msg;
3562 audit_rmap(vcpu);
3563 audit_write_protection(vcpu);
2aaf65e8
MT
3564 if (strcmp("pre pte write", audit_msg) != 0)
3565 audit_mappings(vcpu);
08a3732b 3566 audit_writable_sptes_have_rmaps(vcpu);
37a7d8b0
AK
3567 dbg = olddbg;
3568}
3569
3570#endif