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