Merge branch 'stable/xen-pcifront-0.8.2' of git://git.kernel.org/pub/scm/linux/kernel...
[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
77db5cbd 2254static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
bf998156 2255{
77db5cbd
HY
2256 siginfo_t info;
2257
2258 info.si_signo = SIGBUS;
2259 info.si_errno = 0;
2260 info.si_code = BUS_MCEERR_AR;
2261 info.si_addr = (void __user *)address;
2262 info.si_addr_lsb = PAGE_SHIFT;
bf998156 2263
77db5cbd 2264 send_sig_info(SIGBUS, &info, tsk);
bf998156
HY
2265}
2266
2267static int kvm_handle_bad_page(struct kvm *kvm, gfn_t gfn, pfn_t pfn)
2268{
2269 kvm_release_pfn_clean(pfn);
2270 if (is_hwpoison_pfn(pfn)) {
77db5cbd 2271 kvm_send_hwpoison_signal(gfn_to_hva(kvm, gfn), current);
bf998156 2272 return 0;
edba23e5
GN
2273 } else if (is_fault_pfn(pfn))
2274 return -EFAULT;
2275
bf998156
HY
2276 return 1;
2277}
2278
10589a46
MT
2279static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
2280{
2281 int r;
852e3c19 2282 int level;
35149e21 2283 pfn_t pfn;
e930bffe 2284 unsigned long mmu_seq;
aaee2c94 2285
852e3c19
JR
2286 level = mapping_level(vcpu, gfn);
2287
2288 /*
2289 * This path builds a PAE pagetable - so we can map 2mb pages at
2290 * maximum. Therefore check if the level is larger than that.
2291 */
2292 if (level > PT_DIRECTORY_LEVEL)
2293 level = PT_DIRECTORY_LEVEL;
2294
2295 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
05da4558 2296
e930bffe 2297 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2298 smp_rmb();
35149e21 2299 pfn = gfn_to_pfn(vcpu->kvm, gfn);
aaee2c94 2300
d196e343 2301 /* mmio */
bf998156
HY
2302 if (is_error_pfn(pfn))
2303 return kvm_handle_bad_page(vcpu->kvm, gfn, pfn);
d196e343 2304
aaee2c94 2305 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
2306 if (mmu_notifier_retry(vcpu, mmu_seq))
2307 goto out_unlock;
eb787d10 2308 kvm_mmu_free_some_pages(vcpu);
852e3c19 2309 r = __direct_map(vcpu, v, write, level, gfn, pfn);
aaee2c94
MT
2310 spin_unlock(&vcpu->kvm->mmu_lock);
2311
aaee2c94 2312
10589a46 2313 return r;
e930bffe
AA
2314
2315out_unlock:
2316 spin_unlock(&vcpu->kvm->mmu_lock);
2317 kvm_release_pfn_clean(pfn);
2318 return 0;
10589a46
MT
2319}
2320
2321
17ac10ad
AK
2322static void mmu_free_roots(struct kvm_vcpu *vcpu)
2323{
2324 int i;
4db35314 2325 struct kvm_mmu_page *sp;
d98ba053 2326 LIST_HEAD(invalid_list);
17ac10ad 2327
ad312c7c 2328 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
7b53aa56 2329 return;
aaee2c94 2330 spin_lock(&vcpu->kvm->mmu_lock);
81407ca5
JR
2331 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
2332 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
2333 vcpu->arch.mmu.direct_map)) {
ad312c7c 2334 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad 2335
4db35314
AK
2336 sp = page_header(root);
2337 --sp->root_count;
d98ba053
XG
2338 if (!sp->root_count && sp->role.invalid) {
2339 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
2340 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
2341 }
ad312c7c 2342 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
aaee2c94 2343 spin_unlock(&vcpu->kvm->mmu_lock);
17ac10ad
AK
2344 return;
2345 }
17ac10ad 2346 for (i = 0; i < 4; ++i) {
ad312c7c 2347 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad 2348
417726a3 2349 if (root) {
417726a3 2350 root &= PT64_BASE_ADDR_MASK;
4db35314
AK
2351 sp = page_header(root);
2352 --sp->root_count;
2e53d63a 2353 if (!sp->root_count && sp->role.invalid)
d98ba053
XG
2354 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
2355 &invalid_list);
417726a3 2356 }
ad312c7c 2357 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 2358 }
d98ba053 2359 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
aaee2c94 2360 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 2361 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
2362}
2363
8986ecc0
MT
2364static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
2365{
2366 int ret = 0;
2367
2368 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
a8eeb04a 2369 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
8986ecc0
MT
2370 ret = 1;
2371 }
2372
2373 return ret;
2374}
2375
651dd37a
JR
2376static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
2377{
2378 struct kvm_mmu_page *sp;
7ebaf15e 2379 unsigned i;
651dd37a
JR
2380
2381 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2382 spin_lock(&vcpu->kvm->mmu_lock);
2383 kvm_mmu_free_some_pages(vcpu);
2384 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL,
2385 1, ACC_ALL, NULL);
2386 ++sp->root_count;
2387 spin_unlock(&vcpu->kvm->mmu_lock);
2388 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
2389 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
2390 for (i = 0; i < 4; ++i) {
2391 hpa_t root = vcpu->arch.mmu.pae_root[i];
2392
2393 ASSERT(!VALID_PAGE(root));
2394 spin_lock(&vcpu->kvm->mmu_lock);
2395 kvm_mmu_free_some_pages(vcpu);
2396 sp = kvm_mmu_get_page(vcpu, i << 30, i << 30,
2397 PT32_ROOT_LEVEL, 1, ACC_ALL,
2398 NULL);
2399 root = __pa(sp->spt);
2400 ++sp->root_count;
2401 spin_unlock(&vcpu->kvm->mmu_lock);
2402 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
651dd37a 2403 }
6292757f 2404 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
651dd37a
JR
2405 } else
2406 BUG();
2407
2408 return 0;
2409}
2410
2411static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
17ac10ad 2412{
4db35314 2413 struct kvm_mmu_page *sp;
81407ca5
JR
2414 u64 pdptr, pm_mask;
2415 gfn_t root_gfn;
2416 int i;
3bb65a22 2417
5777ed34 2418 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
17ac10ad 2419
651dd37a
JR
2420 if (mmu_check_root(vcpu, root_gfn))
2421 return 1;
2422
2423 /*
2424 * Do we shadow a long mode page table? If so we need to
2425 * write-protect the guests page table root.
2426 */
2427 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
ad312c7c 2428 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad
AK
2429
2430 ASSERT(!VALID_PAGE(root));
651dd37a 2431
8facbbff 2432 spin_lock(&vcpu->kvm->mmu_lock);
24955b6c 2433 kvm_mmu_free_some_pages(vcpu);
651dd37a
JR
2434 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
2435 0, ACC_ALL, NULL);
4db35314
AK
2436 root = __pa(sp->spt);
2437 ++sp->root_count;
8facbbff 2438 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 2439 vcpu->arch.mmu.root_hpa = root;
8986ecc0 2440 return 0;
17ac10ad 2441 }
f87f9288 2442
651dd37a
JR
2443 /*
2444 * We shadow a 32 bit page table. This may be a legacy 2-level
81407ca5
JR
2445 * or a PAE 3-level page table. In either case we need to be aware that
2446 * the shadow page table may be a PAE or a long mode page table.
651dd37a 2447 */
81407ca5
JR
2448 pm_mask = PT_PRESENT_MASK;
2449 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
2450 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
2451
17ac10ad 2452 for (i = 0; i < 4; ++i) {
ad312c7c 2453 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad
AK
2454
2455 ASSERT(!VALID_PAGE(root));
ad312c7c 2456 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
d41d1895 2457 pdptr = kvm_pdptr_read_mmu(vcpu, &vcpu->arch.mmu, i);
43a3795a 2458 if (!is_present_gpte(pdptr)) {
ad312c7c 2459 vcpu->arch.mmu.pae_root[i] = 0;
417726a3
AK
2460 continue;
2461 }
6de4f3ad 2462 root_gfn = pdptr >> PAGE_SHIFT;
f87f9288
JR
2463 if (mmu_check_root(vcpu, root_gfn))
2464 return 1;
5a7388c2 2465 }
8facbbff 2466 spin_lock(&vcpu->kvm->mmu_lock);
24955b6c 2467 kvm_mmu_free_some_pages(vcpu);
4db35314 2468 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
651dd37a 2469 PT32_ROOT_LEVEL, 0,
f7d9c7b7 2470 ACC_ALL, NULL);
4db35314
AK
2471 root = __pa(sp->spt);
2472 ++sp->root_count;
8facbbff
AK
2473 spin_unlock(&vcpu->kvm->mmu_lock);
2474
81407ca5 2475 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
17ac10ad 2476 }
6292757f 2477 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
81407ca5
JR
2478
2479 /*
2480 * If we shadow a 32 bit page table with a long mode page
2481 * table we enter this path.
2482 */
2483 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2484 if (vcpu->arch.mmu.lm_root == NULL) {
2485 /*
2486 * The additional page necessary for this is only
2487 * allocated on demand.
2488 */
2489
2490 u64 *lm_root;
2491
2492 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
2493 if (lm_root == NULL)
2494 return 1;
2495
2496 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
2497
2498 vcpu->arch.mmu.lm_root = lm_root;
2499 }
2500
2501 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
2502 }
2503
8986ecc0 2504 return 0;
17ac10ad
AK
2505}
2506
651dd37a
JR
2507static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
2508{
2509 if (vcpu->arch.mmu.direct_map)
2510 return mmu_alloc_direct_roots(vcpu);
2511 else
2512 return mmu_alloc_shadow_roots(vcpu);
2513}
2514
0ba73cda
MT
2515static void mmu_sync_roots(struct kvm_vcpu *vcpu)
2516{
2517 int i;
2518 struct kvm_mmu_page *sp;
2519
81407ca5
JR
2520 if (vcpu->arch.mmu.direct_map)
2521 return;
2522
0ba73cda
MT
2523 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2524 return;
6903074c
XG
2525
2526 trace_kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
81407ca5 2527 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
0ba73cda
MT
2528 hpa_t root = vcpu->arch.mmu.root_hpa;
2529 sp = page_header(root);
2530 mmu_sync_children(vcpu, sp);
2531 return;
2532 }
2533 for (i = 0; i < 4; ++i) {
2534 hpa_t root = vcpu->arch.mmu.pae_root[i];
2535
8986ecc0 2536 if (root && VALID_PAGE(root)) {
0ba73cda
MT
2537 root &= PT64_BASE_ADDR_MASK;
2538 sp = page_header(root);
2539 mmu_sync_children(vcpu, sp);
2540 }
2541 }
6903074c 2542 trace_kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
0ba73cda
MT
2543}
2544
2545void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2546{
2547 spin_lock(&vcpu->kvm->mmu_lock);
2548 mmu_sync_roots(vcpu);
6cffe8ca 2549 spin_unlock(&vcpu->kvm->mmu_lock);
0ba73cda
MT
2550}
2551
1871c602
GN
2552static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
2553 u32 access, u32 *error)
6aa8b732 2554{
1871c602
GN
2555 if (error)
2556 *error = 0;
6aa8b732
AK
2557 return vaddr;
2558}
2559
6539e738
JR
2560static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
2561 u32 access, u32 *error)
2562{
2563 if (error)
2564 *error = 0;
2565 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
2566}
2567
6aa8b732 2568static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
3f3e7124 2569 u32 error_code)
6aa8b732 2570{
e833240f 2571 gfn_t gfn;
e2dec939 2572 int r;
6aa8b732 2573
b8688d51 2574 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
e2dec939
AK
2575 r = mmu_topup_memory_caches(vcpu);
2576 if (r)
2577 return r;
714b93da 2578
6aa8b732 2579 ASSERT(vcpu);
ad312c7c 2580 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 2581
e833240f 2582 gfn = gva >> PAGE_SHIFT;
6aa8b732 2583
e833240f
AK
2584 return nonpaging_map(vcpu, gva & PAGE_MASK,
2585 error_code & PFERR_WRITE_MASK, gfn);
6aa8b732
AK
2586}
2587
fb72d167
JR
2588static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
2589 u32 error_code)
2590{
35149e21 2591 pfn_t pfn;
fb72d167 2592 int r;
852e3c19 2593 int level;
05da4558 2594 gfn_t gfn = gpa >> PAGE_SHIFT;
e930bffe 2595 unsigned long mmu_seq;
fb72d167
JR
2596
2597 ASSERT(vcpu);
2598 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2599
2600 r = mmu_topup_memory_caches(vcpu);
2601 if (r)
2602 return r;
2603
852e3c19
JR
2604 level = mapping_level(vcpu, gfn);
2605
2606 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
2607
e930bffe 2608 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2609 smp_rmb();
35149e21 2610 pfn = gfn_to_pfn(vcpu->kvm, gfn);
bf998156
HY
2611 if (is_error_pfn(pfn))
2612 return kvm_handle_bad_page(vcpu->kvm, gfn, pfn);
fb72d167 2613 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
2614 if (mmu_notifier_retry(vcpu, mmu_seq))
2615 goto out_unlock;
fb72d167
JR
2616 kvm_mmu_free_some_pages(vcpu);
2617 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
852e3c19 2618 level, gfn, pfn);
fb72d167 2619 spin_unlock(&vcpu->kvm->mmu_lock);
fb72d167
JR
2620
2621 return r;
e930bffe
AA
2622
2623out_unlock:
2624 spin_unlock(&vcpu->kvm->mmu_lock);
2625 kvm_release_pfn_clean(pfn);
2626 return 0;
fb72d167
JR
2627}
2628
6aa8b732
AK
2629static void nonpaging_free(struct kvm_vcpu *vcpu)
2630{
17ac10ad 2631 mmu_free_roots(vcpu);
6aa8b732
AK
2632}
2633
52fde8df
JR
2634static int nonpaging_init_context(struct kvm_vcpu *vcpu,
2635 struct kvm_mmu *context)
6aa8b732 2636{
6aa8b732
AK
2637 context->new_cr3 = nonpaging_new_cr3;
2638 context->page_fault = nonpaging_page_fault;
6aa8b732
AK
2639 context->gva_to_gpa = nonpaging_gva_to_gpa;
2640 context->free = nonpaging_free;
c7addb90 2641 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2642 context->sync_page = nonpaging_sync_page;
a7052897 2643 context->invlpg = nonpaging_invlpg;
cea0f0e7 2644 context->root_level = 0;
6aa8b732 2645 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2646 context->root_hpa = INVALID_PAGE;
c5a78f2b 2647 context->direct_map = true;
2d48a985 2648 context->nx = false;
6aa8b732
AK
2649 return 0;
2650}
2651
d835dfec 2652void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
6aa8b732 2653{
1165f5fe 2654 ++vcpu->stat.tlb_flush;
a8eeb04a 2655 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
6aa8b732
AK
2656}
2657
2658static void paging_new_cr3(struct kvm_vcpu *vcpu)
2659{
b8688d51 2660 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
cea0f0e7 2661 mmu_free_roots(vcpu);
6aa8b732
AK
2662}
2663
5777ed34
JR
2664static unsigned long get_cr3(struct kvm_vcpu *vcpu)
2665{
2666 return vcpu->arch.cr3;
2667}
2668
8df25a32 2669static void inject_page_fault(struct kvm_vcpu *vcpu)
6aa8b732 2670{
8df25a32 2671 vcpu->arch.mmu.inject_page_fault(vcpu);
6aa8b732
AK
2672}
2673
6aa8b732
AK
2674static void paging_free(struct kvm_vcpu *vcpu)
2675{
2676 nonpaging_free(vcpu);
2677}
2678
3241f22d 2679static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
82725b20
DE
2680{
2681 int bit7;
2682
2683 bit7 = (gpte >> 7) & 1;
3241f22d 2684 return (gpte & mmu->rsvd_bits_mask[bit7][level-1]) != 0;
82725b20
DE
2685}
2686
6aa8b732
AK
2687#define PTTYPE 64
2688#include "paging_tmpl.h"
2689#undef PTTYPE
2690
2691#define PTTYPE 32
2692#include "paging_tmpl.h"
2693#undef PTTYPE
2694
52fde8df
JR
2695static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
2696 struct kvm_mmu *context,
2697 int level)
82725b20 2698{
82725b20
DE
2699 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2700 u64 exb_bit_rsvd = 0;
2701
2d48a985 2702 if (!context->nx)
82725b20
DE
2703 exb_bit_rsvd = rsvd_bits(63, 63);
2704 switch (level) {
2705 case PT32_ROOT_LEVEL:
2706 /* no rsvd bits for 2 level 4K page table entries */
2707 context->rsvd_bits_mask[0][1] = 0;
2708 context->rsvd_bits_mask[0][0] = 0;
f815bce8
XG
2709 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
2710
2711 if (!is_pse(vcpu)) {
2712 context->rsvd_bits_mask[1][1] = 0;
2713 break;
2714 }
2715
82725b20
DE
2716 if (is_cpuid_PSE36())
2717 /* 36bits PSE 4MB page */
2718 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
2719 else
2720 /* 32 bits PSE 4MB page */
2721 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
82725b20
DE
2722 break;
2723 case PT32E_ROOT_LEVEL:
20c466b5
DE
2724 context->rsvd_bits_mask[0][2] =
2725 rsvd_bits(maxphyaddr, 63) |
2726 rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
82725b20 2727 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2728 rsvd_bits(maxphyaddr, 62); /* PDE */
82725b20
DE
2729 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2730 rsvd_bits(maxphyaddr, 62); /* PTE */
2731 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2732 rsvd_bits(maxphyaddr, 62) |
2733 rsvd_bits(13, 20); /* large page */
f815bce8 2734 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
82725b20
DE
2735 break;
2736 case PT64_ROOT_LEVEL:
2737 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
2738 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2739 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
2740 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2741 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 2742 rsvd_bits(maxphyaddr, 51);
82725b20
DE
2743 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2744 rsvd_bits(maxphyaddr, 51);
2745 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
e04da980
JR
2746 context->rsvd_bits_mask[1][2] = exb_bit_rsvd |
2747 rsvd_bits(maxphyaddr, 51) |
2748 rsvd_bits(13, 29);
82725b20 2749 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
4c26b4cd
SY
2750 rsvd_bits(maxphyaddr, 51) |
2751 rsvd_bits(13, 20); /* large page */
f815bce8 2752 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
82725b20
DE
2753 break;
2754 }
2755}
2756
52fde8df
JR
2757static int paging64_init_context_common(struct kvm_vcpu *vcpu,
2758 struct kvm_mmu *context,
2759 int level)
6aa8b732 2760{
2d48a985
JR
2761 context->nx = is_nx(vcpu);
2762
52fde8df 2763 reset_rsvds_bits_mask(vcpu, context, level);
6aa8b732
AK
2764
2765 ASSERT(is_pae(vcpu));
2766 context->new_cr3 = paging_new_cr3;
2767 context->page_fault = paging64_page_fault;
6aa8b732 2768 context->gva_to_gpa = paging64_gva_to_gpa;
c7addb90 2769 context->prefetch_page = paging64_prefetch_page;
e8bc217a 2770 context->sync_page = paging64_sync_page;
a7052897 2771 context->invlpg = paging64_invlpg;
6aa8b732 2772 context->free = paging_free;
17ac10ad
AK
2773 context->root_level = level;
2774 context->shadow_root_level = level;
17c3ba9d 2775 context->root_hpa = INVALID_PAGE;
c5a78f2b 2776 context->direct_map = false;
6aa8b732
AK
2777 return 0;
2778}
2779
52fde8df
JR
2780static int paging64_init_context(struct kvm_vcpu *vcpu,
2781 struct kvm_mmu *context)
17ac10ad 2782{
52fde8df 2783 return paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
17ac10ad
AK
2784}
2785
52fde8df
JR
2786static int paging32_init_context(struct kvm_vcpu *vcpu,
2787 struct kvm_mmu *context)
6aa8b732 2788{
2d48a985
JR
2789 context->nx = false;
2790
52fde8df 2791 reset_rsvds_bits_mask(vcpu, context, PT32_ROOT_LEVEL);
6aa8b732
AK
2792
2793 context->new_cr3 = paging_new_cr3;
2794 context->page_fault = paging32_page_fault;
6aa8b732
AK
2795 context->gva_to_gpa = paging32_gva_to_gpa;
2796 context->free = paging_free;
c7addb90 2797 context->prefetch_page = paging32_prefetch_page;
e8bc217a 2798 context->sync_page = paging32_sync_page;
a7052897 2799 context->invlpg = paging32_invlpg;
6aa8b732
AK
2800 context->root_level = PT32_ROOT_LEVEL;
2801 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 2802 context->root_hpa = INVALID_PAGE;
c5a78f2b 2803 context->direct_map = false;
6aa8b732
AK
2804 return 0;
2805}
2806
52fde8df
JR
2807static int paging32E_init_context(struct kvm_vcpu *vcpu,
2808 struct kvm_mmu *context)
6aa8b732 2809{
52fde8df 2810 return paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
6aa8b732
AK
2811}
2812
fb72d167
JR
2813static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2814{
14dfe855 2815 struct kvm_mmu *context = vcpu->arch.walk_mmu;
fb72d167
JR
2816
2817 context->new_cr3 = nonpaging_new_cr3;
2818 context->page_fault = tdp_page_fault;
2819 context->free = nonpaging_free;
2820 context->prefetch_page = nonpaging_prefetch_page;
e8bc217a 2821 context->sync_page = nonpaging_sync_page;
a7052897 2822 context->invlpg = nonpaging_invlpg;
67253af5 2823 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
fb72d167 2824 context->root_hpa = INVALID_PAGE;
c5a78f2b 2825 context->direct_map = true;
1c97f0a0 2826 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
5777ed34 2827 context->get_cr3 = get_cr3;
cb659db8 2828 context->inject_page_fault = kvm_inject_page_fault;
2d48a985 2829 context->nx = is_nx(vcpu);
fb72d167
JR
2830
2831 if (!is_paging(vcpu)) {
2d48a985 2832 context->nx = false;
fb72d167
JR
2833 context->gva_to_gpa = nonpaging_gva_to_gpa;
2834 context->root_level = 0;
2835 } else if (is_long_mode(vcpu)) {
2d48a985 2836 context->nx = is_nx(vcpu);
52fde8df 2837 reset_rsvds_bits_mask(vcpu, context, PT64_ROOT_LEVEL);
fb72d167
JR
2838 context->gva_to_gpa = paging64_gva_to_gpa;
2839 context->root_level = PT64_ROOT_LEVEL;
2840 } else if (is_pae(vcpu)) {
2d48a985 2841 context->nx = is_nx(vcpu);
52fde8df 2842 reset_rsvds_bits_mask(vcpu, context, PT32E_ROOT_LEVEL);
fb72d167
JR
2843 context->gva_to_gpa = paging64_gva_to_gpa;
2844 context->root_level = PT32E_ROOT_LEVEL;
2845 } else {
2d48a985 2846 context->nx = false;
52fde8df 2847 reset_rsvds_bits_mask(vcpu, context, PT32_ROOT_LEVEL);
fb72d167
JR
2848 context->gva_to_gpa = paging32_gva_to_gpa;
2849 context->root_level = PT32_ROOT_LEVEL;
2850 }
2851
2852 return 0;
2853}
2854
52fde8df 2855int kvm_init_shadow_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
6aa8b732 2856{
a770f6f2 2857 int r;
6aa8b732 2858 ASSERT(vcpu);
ad312c7c 2859 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732
AK
2860
2861 if (!is_paging(vcpu))
52fde8df 2862 r = nonpaging_init_context(vcpu, context);
a9058ecd 2863 else if (is_long_mode(vcpu))
52fde8df 2864 r = paging64_init_context(vcpu, context);
6aa8b732 2865 else if (is_pae(vcpu))
52fde8df 2866 r = paging32E_init_context(vcpu, context);
6aa8b732 2867 else
52fde8df 2868 r = paging32_init_context(vcpu, context);
a770f6f2 2869
5b7e0102 2870 vcpu->arch.mmu.base_role.cr4_pae = !!is_pae(vcpu);
f43addd4 2871 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
52fde8df
JR
2872
2873 return r;
2874}
2875EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
2876
2877static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
2878{
14dfe855 2879 int r = kvm_init_shadow_mmu(vcpu, vcpu->arch.walk_mmu);
52fde8df 2880
14dfe855
JR
2881 vcpu->arch.walk_mmu->set_cr3 = kvm_x86_ops->set_cr3;
2882 vcpu->arch.walk_mmu->get_cr3 = get_cr3;
2883 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
a770f6f2
AK
2884
2885 return r;
6aa8b732
AK
2886}
2887
02f59dc9
JR
2888static int init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
2889{
2890 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
2891
2892 g_context->get_cr3 = get_cr3;
2893 g_context->inject_page_fault = kvm_inject_page_fault;
2894
2895 /*
2896 * Note that arch.mmu.gva_to_gpa translates l2_gva to l1_gpa. The
2897 * translation of l2_gpa to l1_gpa addresses is done using the
2898 * arch.nested_mmu.gva_to_gpa function. Basically the gva_to_gpa
2899 * functions between mmu and nested_mmu are swapped.
2900 */
2901 if (!is_paging(vcpu)) {
2d48a985 2902 g_context->nx = false;
02f59dc9
JR
2903 g_context->root_level = 0;
2904 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
2905 } else if (is_long_mode(vcpu)) {
2d48a985 2906 g_context->nx = is_nx(vcpu);
02f59dc9
JR
2907 reset_rsvds_bits_mask(vcpu, g_context, PT64_ROOT_LEVEL);
2908 g_context->root_level = PT64_ROOT_LEVEL;
2909 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
2910 } else if (is_pae(vcpu)) {
2d48a985 2911 g_context->nx = is_nx(vcpu);
02f59dc9
JR
2912 reset_rsvds_bits_mask(vcpu, g_context, PT32E_ROOT_LEVEL);
2913 g_context->root_level = PT32E_ROOT_LEVEL;
2914 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
2915 } else {
2d48a985 2916 g_context->nx = false;
02f59dc9
JR
2917 reset_rsvds_bits_mask(vcpu, g_context, PT32_ROOT_LEVEL);
2918 g_context->root_level = PT32_ROOT_LEVEL;
2919 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
2920 }
2921
2922 return 0;
2923}
2924
fb72d167
JR
2925static int init_kvm_mmu(struct kvm_vcpu *vcpu)
2926{
35149e21
AL
2927 vcpu->arch.update_pte.pfn = bad_pfn;
2928
02f59dc9
JR
2929 if (mmu_is_nested(vcpu))
2930 return init_kvm_nested_mmu(vcpu);
2931 else if (tdp_enabled)
fb72d167
JR
2932 return init_kvm_tdp_mmu(vcpu);
2933 else
2934 return init_kvm_softmmu(vcpu);
2935}
2936
6aa8b732
AK
2937static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
2938{
2939 ASSERT(vcpu);
62ad0755
SY
2940 if (VALID_PAGE(vcpu->arch.mmu.root_hpa))
2941 /* mmu.free() should set root_hpa = INVALID_PAGE */
ad312c7c 2942 vcpu->arch.mmu.free(vcpu);
6aa8b732
AK
2943}
2944
2945int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
17c3ba9d
AK
2946{
2947 destroy_kvm_mmu(vcpu);
2948 return init_kvm_mmu(vcpu);
2949}
8668a3c4 2950EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
17c3ba9d
AK
2951
2952int kvm_mmu_load(struct kvm_vcpu *vcpu)
6aa8b732 2953{
714b93da
AK
2954 int r;
2955
e2dec939 2956 r = mmu_topup_memory_caches(vcpu);
17c3ba9d
AK
2957 if (r)
2958 goto out;
8986ecc0 2959 r = mmu_alloc_roots(vcpu);
8facbbff 2960 spin_lock(&vcpu->kvm->mmu_lock);
0ba73cda 2961 mmu_sync_roots(vcpu);
aaee2c94 2962 spin_unlock(&vcpu->kvm->mmu_lock);
8986ecc0
MT
2963 if (r)
2964 goto out;
3662cb1c 2965 /* set_cr3() should ensure TLB has been flushed */
f43addd4 2966 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
714b93da
AK
2967out:
2968 return r;
6aa8b732 2969}
17c3ba9d
AK
2970EXPORT_SYMBOL_GPL(kvm_mmu_load);
2971
2972void kvm_mmu_unload(struct kvm_vcpu *vcpu)
2973{
2974 mmu_free_roots(vcpu);
2975}
4b16184c 2976EXPORT_SYMBOL_GPL(kvm_mmu_unload);
6aa8b732 2977
09072daf 2978static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
4db35314 2979 struct kvm_mmu_page *sp,
ac1b714e
AK
2980 u64 *spte)
2981{
2982 u64 pte;
2983 struct kvm_mmu_page *child;
2984
2985 pte = *spte;
c7addb90 2986 if (is_shadow_present_pte(pte)) {
776e6633 2987 if (is_last_spte(pte, sp->role.level))
be38d276 2988 drop_spte(vcpu->kvm, spte, shadow_trap_nonpresent_pte);
ac1b714e
AK
2989 else {
2990 child = page_header(pte & PT64_BASE_ADDR_MASK);
90cb0529 2991 mmu_page_remove_parent_pte(child, spte);
ac1b714e
AK
2992 }
2993 }
d555c333 2994 __set_spte(spte, shadow_trap_nonpresent_pte);
05da4558
MT
2995 if (is_large_pte(pte))
2996 --vcpu->kvm->stat.lpages;
ac1b714e
AK
2997}
2998
0028425f 2999static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
4db35314 3000 struct kvm_mmu_page *sp,
0028425f 3001 u64 *spte,
489f1d65 3002 const void *new)
0028425f 3003{
30945387 3004 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
7e4e4056
JR
3005 ++vcpu->kvm->stat.mmu_pde_zapped;
3006 return;
30945387 3007 }
0028425f 3008
3241f22d 3009 if (is_rsvd_bits_set(&vcpu->arch.mmu, *(u64 *)new, PT_PAGE_TABLE_LEVEL))
fa1de2bf
XG
3010 return;
3011
4cee5764 3012 ++vcpu->kvm->stat.mmu_pte_updated;
5b7e0102 3013 if (!sp->role.cr4_pae)
489f1d65 3014 paging32_update_pte(vcpu, sp, spte, new);
0028425f 3015 else
489f1d65 3016 paging64_update_pte(vcpu, sp, spte, new);
0028425f
AK
3017}
3018
79539cec
AK
3019static bool need_remote_flush(u64 old, u64 new)
3020{
3021 if (!is_shadow_present_pte(old))
3022 return false;
3023 if (!is_shadow_present_pte(new))
3024 return true;
3025 if ((old ^ new) & PT64_BASE_ADDR_MASK)
3026 return true;
3027 old ^= PT64_NX_MASK;
3028 new ^= PT64_NX_MASK;
3029 return (old & ~new & PT64_PERM_MASK) != 0;
3030}
3031
0671a8e7
XG
3032static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
3033 bool remote_flush, bool local_flush)
79539cec 3034{
0671a8e7
XG
3035 if (zap_page)
3036 return;
3037
3038 if (remote_flush)
79539cec 3039 kvm_flush_remote_tlbs(vcpu->kvm);
0671a8e7 3040 else if (local_flush)
79539cec
AK
3041 kvm_mmu_flush_tlb(vcpu);
3042}
3043
12b7d28f
AK
3044static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
3045{
ad312c7c 3046 u64 *spte = vcpu->arch.last_pte_updated;
12b7d28f 3047
7b52345e 3048 return !!(spte && (*spte & shadow_accessed_mask));
12b7d28f
AK
3049}
3050
d7824fff 3051static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
72016f3a 3052 u64 gpte)
d7824fff
AK
3053{
3054 gfn_t gfn;
35149e21 3055 pfn_t pfn;
d7824fff 3056
43a3795a 3057 if (!is_present_gpte(gpte))
d7824fff
AK
3058 return;
3059 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
72dc67a6 3060
e930bffe 3061 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 3062 smp_rmb();
35149e21 3063 pfn = gfn_to_pfn(vcpu->kvm, gfn);
72dc67a6 3064
35149e21
AL
3065 if (is_error_pfn(pfn)) {
3066 kvm_release_pfn_clean(pfn);
d196e343
AK
3067 return;
3068 }
d7824fff 3069 vcpu->arch.update_pte.gfn = gfn;
35149e21 3070 vcpu->arch.update_pte.pfn = pfn;
d7824fff
AK
3071}
3072
1b7fcd32
AK
3073static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
3074{
3075 u64 *spte = vcpu->arch.last_pte_updated;
3076
3077 if (spte
3078 && vcpu->arch.last_pte_gfn == gfn
3079 && shadow_accessed_mask
3080 && !(*spte & shadow_accessed_mask)
3081 && is_shadow_present_pte(*spte))
3082 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
3083}
3084
09072daf 3085void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
ad218f85
MT
3086 const u8 *new, int bytes,
3087 bool guest_initiated)
da4a00f0 3088{
9b7a0325 3089 gfn_t gfn = gpa >> PAGE_SHIFT;
fa1de2bf 3090 union kvm_mmu_page_role mask = { .word = 0 };
4db35314 3091 struct kvm_mmu_page *sp;
f41d335a 3092 struct hlist_node *node;
d98ba053 3093 LIST_HEAD(invalid_list);
489f1d65 3094 u64 entry, gentry;
9b7a0325 3095 u64 *spte;
9b7a0325 3096 unsigned offset = offset_in_page(gpa);
0e7bc4b9 3097 unsigned pte_size;
9b7a0325 3098 unsigned page_offset;
0e7bc4b9 3099 unsigned misaligned;
fce0657f 3100 unsigned quadrant;
9b7a0325 3101 int level;
86a5ba02 3102 int flooded = 0;
ac1b714e 3103 int npte;
489f1d65 3104 int r;
08e850c6 3105 int invlpg_counter;
0671a8e7
XG
3106 bool remote_flush, local_flush, zap_page;
3107
3108 zap_page = remote_flush = local_flush = false;
9b7a0325 3109
b8688d51 3110 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
72016f3a 3111
08e850c6 3112 invlpg_counter = atomic_read(&vcpu->kvm->arch.invlpg_counter);
72016f3a
AK
3113
3114 /*
3115 * Assume that the pte write on a page table of the same type
3116 * as the current vcpu paging mode. This is nearly always true
3117 * (might be false while changing modes). Note it is verified later
3118 * by update_pte().
3119 */
08e850c6 3120 if ((is_pae(vcpu) && bytes == 4) || !new) {
72016f3a 3121 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
08e850c6
AK
3122 if (is_pae(vcpu)) {
3123 gpa &= ~(gpa_t)7;
3124 bytes = 8;
3125 }
3126 r = kvm_read_guest(vcpu->kvm, gpa, &gentry, min(bytes, 8));
72016f3a
AK
3127 if (r)
3128 gentry = 0;
08e850c6
AK
3129 new = (const u8 *)&gentry;
3130 }
3131
3132 switch (bytes) {
3133 case 4:
3134 gentry = *(const u32 *)new;
3135 break;
3136 case 8:
3137 gentry = *(const u64 *)new;
3138 break;
3139 default:
3140 gentry = 0;
3141 break;
72016f3a
AK
3142 }
3143
3144 mmu_guess_page_from_pte_write(vcpu, gpa, gentry);
aaee2c94 3145 spin_lock(&vcpu->kvm->mmu_lock);
08e850c6
AK
3146 if (atomic_read(&vcpu->kvm->arch.invlpg_counter) != invlpg_counter)
3147 gentry = 0;
1b7fcd32 3148 kvm_mmu_access_page(vcpu, gfn);
eb787d10 3149 kvm_mmu_free_some_pages(vcpu);
4cee5764 3150 ++vcpu->kvm->stat.mmu_pte_write;
8b1fe17c 3151 trace_kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
ad218f85
MT
3152 if (guest_initiated) {
3153 if (gfn == vcpu->arch.last_pt_write_gfn
3154 && !last_updated_pte_accessed(vcpu)) {
3155 ++vcpu->arch.last_pt_write_count;
3156 if (vcpu->arch.last_pt_write_count >= 3)
3157 flooded = 1;
3158 } else {
3159 vcpu->arch.last_pt_write_gfn = gfn;
3160 vcpu->arch.last_pt_write_count = 1;
3161 vcpu->arch.last_pte_updated = NULL;
3162 }
86a5ba02 3163 }
3246af0e 3164
fa1de2bf 3165 mask.cr0_wp = mask.cr4_pae = mask.nxe = 1;
f41d335a 3166 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn, node) {
5b7e0102 3167 pte_size = sp->role.cr4_pae ? 8 : 4;
0e7bc4b9 3168 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
e925c5ba 3169 misaligned |= bytes < 4;
86a5ba02 3170 if (misaligned || flooded) {
0e7bc4b9
AK
3171 /*
3172 * Misaligned accesses are too much trouble to fix
3173 * up; also, they usually indicate a page is not used
3174 * as a page table.
86a5ba02
AK
3175 *
3176 * If we're seeing too many writes to a page,
3177 * it may no longer be a page table, or we may be
3178 * forking, in which case it is better to unmap the
3179 * page.
0e7bc4b9
AK
3180 */
3181 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4db35314 3182 gpa, bytes, sp->role.word);
0671a8e7 3183 zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
f41d335a 3184 &invalid_list);
4cee5764 3185 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
3186 continue;
3187 }
9b7a0325 3188 page_offset = offset;
4db35314 3189 level = sp->role.level;
ac1b714e 3190 npte = 1;
5b7e0102 3191 if (!sp->role.cr4_pae) {
ac1b714e
AK
3192 page_offset <<= 1; /* 32->64 */
3193 /*
3194 * A 32-bit pde maps 4MB while the shadow pdes map
3195 * only 2MB. So we need to double the offset again
3196 * and zap two pdes instead of one.
3197 */
3198 if (level == PT32_ROOT_LEVEL) {
6b8d0f9b 3199 page_offset &= ~7; /* kill rounding error */
ac1b714e
AK
3200 page_offset <<= 1;
3201 npte = 2;
3202 }
fce0657f 3203 quadrant = page_offset >> PAGE_SHIFT;
9b7a0325 3204 page_offset &= ~PAGE_MASK;
4db35314 3205 if (quadrant != sp->role.quadrant)
fce0657f 3206 continue;
9b7a0325 3207 }
0671a8e7 3208 local_flush = true;
4db35314 3209 spte = &sp->spt[page_offset / sizeof(*spte)];
ac1b714e 3210 while (npte--) {
79539cec 3211 entry = *spte;
4db35314 3212 mmu_pte_write_zap_pte(vcpu, sp, spte);
fa1de2bf
XG
3213 if (gentry &&
3214 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
3215 & mask.word))
72016f3a 3216 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
0671a8e7
XG
3217 if (!remote_flush && need_remote_flush(entry, *spte))
3218 remote_flush = true;
ac1b714e 3219 ++spte;
9b7a0325 3220 }
9b7a0325 3221 }
0671a8e7 3222 mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
d98ba053 3223 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
8b1fe17c 3224 trace_kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
aaee2c94 3225 spin_unlock(&vcpu->kvm->mmu_lock);
35149e21
AL
3226 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
3227 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
3228 vcpu->arch.update_pte.pfn = bad_pfn;
d7824fff 3229 }
da4a00f0
AK
3230}
3231
a436036b
AK
3232int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
3233{
10589a46
MT
3234 gpa_t gpa;
3235 int r;
a436036b 3236
c5a78f2b 3237 if (vcpu->arch.mmu.direct_map)
60f24784
AK
3238 return 0;
3239
1871c602 3240 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
10589a46 3241
aaee2c94 3242 spin_lock(&vcpu->kvm->mmu_lock);
10589a46 3243 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
aaee2c94 3244 spin_unlock(&vcpu->kvm->mmu_lock);
10589a46 3245 return r;
a436036b 3246}
577bdc49 3247EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
a436036b 3248
22d95b12 3249void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
ebeace86 3250{
d98ba053 3251 LIST_HEAD(invalid_list);
103ad25a 3252
e0df7b9f 3253 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES &&
3b80fffe 3254 !list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
4db35314 3255 struct kvm_mmu_page *sp;
ebeace86 3256
f05e70ac 3257 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
4db35314 3258 struct kvm_mmu_page, link);
e0df7b9f 3259 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
80b63faf 3260 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
4cee5764 3261 ++vcpu->kvm->stat.mmu_recycled;
ebeace86
AK
3262 }
3263}
ebeace86 3264
3067714c
AK
3265int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
3266{
3267 int r;
3268 enum emulation_result er;
3269
ad312c7c 3270 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
3067714c
AK
3271 if (r < 0)
3272 goto out;
3273
3274 if (!r) {
3275 r = 1;
3276 goto out;
3277 }
3278
b733bfb5
AK
3279 r = mmu_topup_memory_caches(vcpu);
3280 if (r)
3281 goto out;
3282
851ba692 3283 er = emulate_instruction(vcpu, cr2, error_code, 0);
3067714c
AK
3284
3285 switch (er) {
3286 case EMULATE_DONE:
3287 return 1;
3288 case EMULATE_DO_MMIO:
3289 ++vcpu->stat.mmio_exits;
6d77dbfc 3290 /* fall through */
3067714c 3291 case EMULATE_FAIL:
3f5d18a9 3292 return 0;
3067714c
AK
3293 default:
3294 BUG();
3295 }
3296out:
3067714c
AK
3297 return r;
3298}
3299EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
3300
a7052897
MT
3301void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
3302{
a7052897 3303 vcpu->arch.mmu.invlpg(vcpu, gva);
a7052897
MT
3304 kvm_mmu_flush_tlb(vcpu);
3305 ++vcpu->stat.invlpg;
3306}
3307EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
3308
18552672
JR
3309void kvm_enable_tdp(void)
3310{
3311 tdp_enabled = true;
3312}
3313EXPORT_SYMBOL_GPL(kvm_enable_tdp);
3314
5f4cb662
JR
3315void kvm_disable_tdp(void)
3316{
3317 tdp_enabled = false;
3318}
3319EXPORT_SYMBOL_GPL(kvm_disable_tdp);
3320
6aa8b732
AK
3321static void free_mmu_pages(struct kvm_vcpu *vcpu)
3322{
ad312c7c 3323 free_page((unsigned long)vcpu->arch.mmu.pae_root);
81407ca5
JR
3324 if (vcpu->arch.mmu.lm_root != NULL)
3325 free_page((unsigned long)vcpu->arch.mmu.lm_root);
6aa8b732
AK
3326}
3327
3328static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
3329{
17ac10ad 3330 struct page *page;
6aa8b732
AK
3331 int i;
3332
3333 ASSERT(vcpu);
3334
17ac10ad
AK
3335 /*
3336 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
3337 * Therefore we need to allocate shadow page tables in the first
3338 * 4GB of memory, which happens to fit the DMA32 zone.
3339 */
3340 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
3341 if (!page)
d7fa6ab2
WY
3342 return -ENOMEM;
3343
ad312c7c 3344 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 3345 for (i = 0; i < 4; ++i)
ad312c7c 3346 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 3347
6aa8b732 3348 return 0;
6aa8b732
AK
3349}
3350
8018c27b 3351int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 3352{
6aa8b732 3353 ASSERT(vcpu);
ad312c7c 3354 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 3355
8018c27b
IM
3356 return alloc_mmu_pages(vcpu);
3357}
6aa8b732 3358
8018c27b
IM
3359int kvm_mmu_setup(struct kvm_vcpu *vcpu)
3360{
3361 ASSERT(vcpu);
ad312c7c 3362 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 3363
8018c27b 3364 return init_kvm_mmu(vcpu);
6aa8b732
AK
3365}
3366
90cb0529 3367void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 3368{
4db35314 3369 struct kvm_mmu_page *sp;
6aa8b732 3370
f05e70ac 3371 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
6aa8b732
AK
3372 int i;
3373 u64 *pt;
3374
291f26bc 3375 if (!test_bit(slot, sp->slot_bitmap))
6aa8b732
AK
3376 continue;
3377
4db35314 3378 pt = sp->spt;
6aa8b732
AK
3379 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
3380 /* avoid RMW */
01c168ac 3381 if (is_writable_pte(pt[i]))
6aa8b732 3382 pt[i] &= ~PT_WRITABLE_MASK;
6aa8b732 3383 }
171d595d 3384 kvm_flush_remote_tlbs(kvm);
6aa8b732 3385}
37a7d8b0 3386
90cb0529 3387void kvm_mmu_zap_all(struct kvm *kvm)
e0fa826f 3388{
4db35314 3389 struct kvm_mmu_page *sp, *node;
d98ba053 3390 LIST_HEAD(invalid_list);
e0fa826f 3391
aaee2c94 3392 spin_lock(&kvm->mmu_lock);
3246af0e 3393restart:
f05e70ac 3394 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
d98ba053 3395 if (kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list))
3246af0e
XG
3396 goto restart;
3397
d98ba053 3398 kvm_mmu_commit_zap_page(kvm, &invalid_list);
aaee2c94 3399 spin_unlock(&kvm->mmu_lock);
e0fa826f
DL
3400}
3401
d98ba053
XG
3402static int kvm_mmu_remove_some_alloc_mmu_pages(struct kvm *kvm,
3403 struct list_head *invalid_list)
3ee16c81
IE
3404{
3405 struct kvm_mmu_page *page;
3406
3407 page = container_of(kvm->arch.active_mmu_pages.prev,
3408 struct kvm_mmu_page, link);
d98ba053 3409 return kvm_mmu_prepare_zap_page(kvm, page, invalid_list);
3ee16c81
IE
3410}
3411
7f8275d0 3412static int mmu_shrink(struct shrinker *shrink, int nr_to_scan, gfp_t gfp_mask)
3ee16c81
IE
3413{
3414 struct kvm *kvm;
3415 struct kvm *kvm_freed = NULL;
45221ab6
DH
3416
3417 if (nr_to_scan == 0)
3418 goto out;
3ee16c81
IE
3419
3420 spin_lock(&kvm_lock);
3421
3422 list_for_each_entry(kvm, &vm_list, vm_list) {
45221ab6 3423 int idx, freed_pages;
d98ba053 3424 LIST_HEAD(invalid_list);
3ee16c81 3425
f656ce01 3426 idx = srcu_read_lock(&kvm->srcu);
3ee16c81 3427 spin_lock(&kvm->mmu_lock);
45221ab6
DH
3428 if (!kvm_freed && nr_to_scan > 0 &&
3429 kvm->arch.n_used_mmu_pages > 0) {
d98ba053
XG
3430 freed_pages = kvm_mmu_remove_some_alloc_mmu_pages(kvm,
3431 &invalid_list);
3ee16c81
IE
3432 kvm_freed = kvm;
3433 }
3434 nr_to_scan--;
3435
d98ba053 3436 kvm_mmu_commit_zap_page(kvm, &invalid_list);
3ee16c81 3437 spin_unlock(&kvm->mmu_lock);
f656ce01 3438 srcu_read_unlock(&kvm->srcu, idx);
3ee16c81
IE
3439 }
3440 if (kvm_freed)
3441 list_move_tail(&kvm_freed->vm_list, &vm_list);
3442
3443 spin_unlock(&kvm_lock);
3444
45221ab6
DH
3445out:
3446 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
3ee16c81
IE
3447}
3448
3449static struct shrinker mmu_shrinker = {
3450 .shrink = mmu_shrink,
3451 .seeks = DEFAULT_SEEKS * 10,
3452};
3453
2ddfd20e 3454static void mmu_destroy_caches(void)
b5a33a75
AK
3455{
3456 if (pte_chain_cache)
3457 kmem_cache_destroy(pte_chain_cache);
3458 if (rmap_desc_cache)
3459 kmem_cache_destroy(rmap_desc_cache);
d3d25b04
AK
3460 if (mmu_page_header_cache)
3461 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
3462}
3463
3ee16c81
IE
3464void kvm_mmu_module_exit(void)
3465{
3466 mmu_destroy_caches();
45bf21a8 3467 percpu_counter_destroy(&kvm_total_used_mmu_pages);
3ee16c81
IE
3468 unregister_shrinker(&mmu_shrinker);
3469}
3470
b5a33a75
AK
3471int kvm_mmu_module_init(void)
3472{
3473 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
3474 sizeof(struct kvm_pte_chain),
20c2df83 3475 0, 0, NULL);
b5a33a75
AK
3476 if (!pte_chain_cache)
3477 goto nomem;
3478 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
3479 sizeof(struct kvm_rmap_desc),
20c2df83 3480 0, 0, NULL);
b5a33a75
AK
3481 if (!rmap_desc_cache)
3482 goto nomem;
3483
d3d25b04
AK
3484 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
3485 sizeof(struct kvm_mmu_page),
20c2df83 3486 0, 0, NULL);
d3d25b04
AK
3487 if (!mmu_page_header_cache)
3488 goto nomem;
3489
45bf21a8
WY
3490 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0))
3491 goto nomem;
3492
3ee16c81
IE
3493 register_shrinker(&mmu_shrinker);
3494
b5a33a75
AK
3495 return 0;
3496
3497nomem:
3ee16c81 3498 mmu_destroy_caches();
b5a33a75
AK
3499 return -ENOMEM;
3500}
3501
3ad82a7e
ZX
3502/*
3503 * Caculate mmu pages needed for kvm.
3504 */
3505unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
3506{
3507 int i;
3508 unsigned int nr_mmu_pages;
3509 unsigned int nr_pages = 0;
bc6678a3 3510 struct kvm_memslots *slots;
3ad82a7e 3511
90d83dc3
LJ
3512 slots = kvm_memslots(kvm);
3513
bc6678a3
MT
3514 for (i = 0; i < slots->nmemslots; i++)
3515 nr_pages += slots->memslots[i].npages;
3ad82a7e
ZX
3516
3517 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
3518 nr_mmu_pages = max(nr_mmu_pages,
3519 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
3520
3521 return nr_mmu_pages;
3522}
3523
2f333bcb
MT
3524static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3525 unsigned len)
3526{
3527 if (len > buffer->len)
3528 return NULL;
3529 return buffer->ptr;
3530}
3531
3532static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
3533 unsigned len)
3534{
3535 void *ret;
3536
3537 ret = pv_mmu_peek_buffer(buffer, len);
3538 if (!ret)
3539 return ret;
3540 buffer->ptr += len;
3541 buffer->len -= len;
3542 buffer->processed += len;
3543 return ret;
3544}
3545
3546static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
3547 gpa_t addr, gpa_t value)
3548{
3549 int bytes = 8;
3550 int r;
3551
3552 if (!is_long_mode(vcpu) && !is_pae(vcpu))
3553 bytes = 4;
3554
3555 r = mmu_topup_memory_caches(vcpu);
3556 if (r)
3557 return r;
3558
3200f405 3559 if (!emulator_write_phys(vcpu, addr, &value, bytes))
2f333bcb
MT
3560 return -EFAULT;
3561
3562 return 1;
3563}
3564
3565static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
3566{
2390218b 3567 (void)kvm_set_cr3(vcpu, vcpu->arch.cr3);
2f333bcb
MT
3568 return 1;
3569}
3570
3571static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
3572{
3573 spin_lock(&vcpu->kvm->mmu_lock);
3574 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
3575 spin_unlock(&vcpu->kvm->mmu_lock);
3576 return 1;
3577}
3578
3579static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
3580 struct kvm_pv_mmu_op_buffer *buffer)
3581{
3582 struct kvm_mmu_op_header *header;
3583
3584 header = pv_mmu_peek_buffer(buffer, sizeof *header);
3585 if (!header)
3586 return 0;
3587 switch (header->op) {
3588 case KVM_MMU_OP_WRITE_PTE: {
3589 struct kvm_mmu_op_write_pte *wpte;
3590
3591 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
3592 if (!wpte)
3593 return 0;
3594 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
3595 wpte->pte_val);
3596 }
3597 case KVM_MMU_OP_FLUSH_TLB: {
3598 struct kvm_mmu_op_flush_tlb *ftlb;
3599
3600 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
3601 if (!ftlb)
3602 return 0;
3603 return kvm_pv_mmu_flush_tlb(vcpu);
3604 }
3605 case KVM_MMU_OP_RELEASE_PT: {
3606 struct kvm_mmu_op_release_pt *rpt;
3607
3608 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
3609 if (!rpt)
3610 return 0;
3611 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
3612 }
3613 default: return 0;
3614 }
3615}
3616
3617int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
3618 gpa_t addr, unsigned long *ret)
3619{
3620 int r;
6ad18fba 3621 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
2f333bcb 3622
6ad18fba
DH
3623 buffer->ptr = buffer->buf;
3624 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
3625 buffer->processed = 0;
2f333bcb 3626
6ad18fba 3627 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
2f333bcb
MT
3628 if (r)
3629 goto out;
3630
6ad18fba
DH
3631 while (buffer->len) {
3632 r = kvm_pv_mmu_op_one(vcpu, buffer);
2f333bcb
MT
3633 if (r < 0)
3634 goto out;
3635 if (r == 0)
3636 break;
3637 }
3638
3639 r = 1;
3640out:
6ad18fba 3641 *ret = buffer->processed;
2f333bcb
MT
3642 return r;
3643}
3644
94d8b056
MT
3645int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
3646{
3647 struct kvm_shadow_walk_iterator iterator;
3648 int nr_sptes = 0;
3649
3650 spin_lock(&vcpu->kvm->mmu_lock);
3651 for_each_shadow_entry(vcpu, addr, iterator) {
3652 sptes[iterator.level-1] = *iterator.sptep;
3653 nr_sptes++;
3654 if (!is_shadow_present_pte(*iterator.sptep))
3655 break;
3656 }
3657 spin_unlock(&vcpu->kvm->mmu_lock);
3658
3659 return nr_sptes;
3660}
3661EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
3662
8b1fe17c 3663#ifdef CONFIG_KVM_MMU_AUDIT
2f4f3372 3664#include "mmu_audit.c"
c42fffe3
XG
3665#else
3666static void mmu_audit_disable(void) { }
37a7d8b0 3667#endif
c42fffe3
XG
3668
3669void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
3670{
3671 ASSERT(vcpu);
3672
3673 destroy_kvm_mmu(vcpu);
3674 free_mmu_pages(vcpu);
3675 mmu_free_memory_caches(vcpu);
3676 mmu_audit_disable();
3677}
This page took 0.913981 seconds and 5 git commands to generate.