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