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