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