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