]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kvm/mmu.c
KVM: x86: use guest maxphyaddr to check MTRR values
[mirror_ubuntu-jammy-kernel.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"
5f7dde7b 25#include "cpuid.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 63#undef MMU_DEBUG
37a7d8b0
AK
64
65#ifdef MMU_DEBUG
66
67#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
68#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
69
70#else
71
72#define pgprintk(x...) do { } while (0)
73#define rmap_printk(x...) do { } while (0)
74
75#endif
76
8b1fe17c 77#ifdef MMU_DEBUG
476bc001 78static bool dbg = 0;
6ada8cca 79module_param(dbg, bool, 0644);
37a7d8b0 80#endif
6aa8b732 81
d6c69ee9
YD
82#ifndef MMU_DEBUG
83#define ASSERT(x) do { } while (0)
84#else
6aa8b732
AK
85#define ASSERT(x) \
86 if (!(x)) { \
87 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
88 __FILE__, __LINE__, #x); \
89 }
d6c69ee9 90#endif
6aa8b732 91
957ed9ef
XG
92#define PTE_PREFETCH_NUM 8
93
00763e41 94#define PT_FIRST_AVAIL_BITS_SHIFT 10
6aa8b732
AK
95#define PT64_SECOND_AVAIL_BITS_SHIFT 52
96
6aa8b732
AK
97#define PT64_LEVEL_BITS 9
98
99#define PT64_LEVEL_SHIFT(level) \
d77c26fc 100 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
6aa8b732 101
6aa8b732
AK
102#define PT64_INDEX(address, level)\
103 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
104
105
106#define PT32_LEVEL_BITS 10
107
108#define PT32_LEVEL_SHIFT(level) \
d77c26fc 109 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
6aa8b732 110
e04da980
JR
111#define PT32_LVL_OFFSET_MASK(level) \
112 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
113 * PT32_LEVEL_BITS))) - 1))
6aa8b732
AK
114
115#define PT32_INDEX(address, level)\
116 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
117
118
27aba766 119#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
6aa8b732
AK
120#define PT64_DIR_BASE_ADDR_MASK \
121 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
e04da980
JR
122#define PT64_LVL_ADDR_MASK(level) \
123 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
124 * PT64_LEVEL_BITS))) - 1))
125#define PT64_LVL_OFFSET_MASK(level) \
126 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
127 * PT64_LEVEL_BITS))) - 1))
6aa8b732
AK
128
129#define PT32_BASE_ADDR_MASK PAGE_MASK
130#define PT32_DIR_BASE_ADDR_MASK \
131 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
e04da980
JR
132#define PT32_LVL_ADDR_MASK(level) \
133 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
134 * PT32_LEVEL_BITS))) - 1))
6aa8b732 135
53166229
GN
136#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
137 | shadow_x_mask | shadow_nx_mask)
6aa8b732 138
fe135d2c
AK
139#define ACC_EXEC_MASK 1
140#define ACC_WRITE_MASK PT_WRITABLE_MASK
141#define ACC_USER_MASK PT_USER_MASK
142#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
143
90bb6fc5
AK
144#include <trace/events/kvm.h>
145
07420171
AK
146#define CREATE_TRACE_POINTS
147#include "mmutrace.h"
148
49fde340
XG
149#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
150#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
1403283a 151
135f8c2b
AK
152#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
153
220f773a
TY
154/* make pte_list_desc fit well in cache line */
155#define PTE_LIST_EXT 3
156
53c07b18
XG
157struct pte_list_desc {
158 u64 *sptes[PTE_LIST_EXT];
159 struct pte_list_desc *more;
cd4a4e53
AK
160};
161
2d11123a
AK
162struct kvm_shadow_walk_iterator {
163 u64 addr;
164 hpa_t shadow_addr;
2d11123a 165 u64 *sptep;
dd3bfd59 166 int level;
2d11123a
AK
167 unsigned index;
168};
169
170#define for_each_shadow_entry(_vcpu, _addr, _walker) \
171 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
172 shadow_walk_okay(&(_walker)); \
173 shadow_walk_next(&(_walker)))
174
c2a2ac2b
XG
175#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
176 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
177 shadow_walk_okay(&(_walker)) && \
178 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
179 __shadow_walk_next(&(_walker), spte))
180
53c07b18 181static struct kmem_cache *pte_list_desc_cache;
d3d25b04 182static struct kmem_cache *mmu_page_header_cache;
45221ab6 183static struct percpu_counter kvm_total_used_mmu_pages;
b5a33a75 184
7b52345e
SY
185static u64 __read_mostly shadow_nx_mask;
186static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
187static u64 __read_mostly shadow_user_mask;
188static u64 __read_mostly shadow_accessed_mask;
189static u64 __read_mostly shadow_dirty_mask;
ce88decf
XG
190static u64 __read_mostly shadow_mmio_mask;
191
192static void mmu_spte_set(u64 *sptep, u64 spte);
e676505a 193static void mmu_free_roots(struct kvm_vcpu *vcpu);
ce88decf
XG
194
195void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
196{
197 shadow_mmio_mask = mmio_mask;
198}
199EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
200
f2fd125d
XG
201/*
202 * spte bits of bit 3 ~ bit 11 are used as low 9 bits of generation number,
203 * the bits of bits 52 ~ bit 61 are used as high 10 bits of generation
204 * number.
205 */
206#define MMIO_SPTE_GEN_LOW_SHIFT 3
207#define MMIO_SPTE_GEN_HIGH_SHIFT 52
208
f8f55942 209#define MMIO_GEN_SHIFT 19
f2fd125d
XG
210#define MMIO_GEN_LOW_SHIFT 9
211#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 1)
f8f55942
XG
212#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
213#define MMIO_MAX_GEN ((1 << MMIO_GEN_SHIFT) - 1)
f2fd125d
XG
214
215static u64 generation_mmio_spte_mask(unsigned int gen)
216{
217 u64 mask;
218
219 WARN_ON(gen > MMIO_MAX_GEN);
220
221 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
222 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
223 return mask;
224}
225
226static unsigned int get_mmio_spte_generation(u64 spte)
227{
228 unsigned int gen;
229
230 spte &= ~shadow_mmio_mask;
231
232 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
233 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
234 return gen;
235}
236
f8f55942
XG
237static unsigned int kvm_current_mmio_generation(struct kvm *kvm)
238{
69c9ea93
XG
239 /*
240 * Init kvm generation close to MMIO_MAX_GEN to easily test the
241 * code of handling generation number wrap-around.
242 */
243 return (kvm_memslots(kvm)->generation +
244 MMIO_MAX_GEN - 150) & MMIO_GEN_MASK;
f8f55942
XG
245}
246
f2fd125d
XG
247static void mark_mmio_spte(struct kvm *kvm, u64 *sptep, u64 gfn,
248 unsigned access)
ce88decf 249{
f8f55942
XG
250 unsigned int gen = kvm_current_mmio_generation(kvm);
251 u64 mask = generation_mmio_spte_mask(gen);
95b0430d 252
ce88decf 253 access &= ACC_WRITE_MASK | ACC_USER_MASK;
f2fd125d 254 mask |= shadow_mmio_mask | access | gfn << PAGE_SHIFT;
f2fd125d 255
f8f55942 256 trace_mark_mmio_spte(sptep, gfn, access, gen);
f2fd125d 257 mmu_spte_set(sptep, mask);
ce88decf
XG
258}
259
260static bool is_mmio_spte(u64 spte)
261{
262 return (spte & shadow_mmio_mask) == shadow_mmio_mask;
263}
264
265static gfn_t get_mmio_spte_gfn(u64 spte)
266{
f2fd125d
XG
267 u64 mask = generation_mmio_spte_mask(MMIO_MAX_GEN) | shadow_mmio_mask;
268 return (spte & ~mask) >> PAGE_SHIFT;
ce88decf
XG
269}
270
271static unsigned get_mmio_spte_access(u64 spte)
272{
f2fd125d
XG
273 u64 mask = generation_mmio_spte_mask(MMIO_MAX_GEN) | shadow_mmio_mask;
274 return (spte & ~mask) & ~PAGE_MASK;
ce88decf
XG
275}
276
f2fd125d
XG
277static bool set_mmio_spte(struct kvm *kvm, u64 *sptep, gfn_t gfn,
278 pfn_t pfn, unsigned access)
ce88decf
XG
279{
280 if (unlikely(is_noslot_pfn(pfn))) {
f2fd125d 281 mark_mmio_spte(kvm, sptep, gfn, access);
ce88decf
XG
282 return true;
283 }
284
285 return false;
286}
c7addb90 287
f8f55942
XG
288static bool check_mmio_spte(struct kvm *kvm, u64 spte)
289{
089504c0
XG
290 unsigned int kvm_gen, spte_gen;
291
292 kvm_gen = kvm_current_mmio_generation(kvm);
293 spte_gen = get_mmio_spte_generation(spte);
294
295 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
296 return likely(kvm_gen == spte_gen);
f8f55942
XG
297}
298
82725b20
DE
299static inline u64 rsvd_bits(int s, int e)
300{
301 return ((1ULL << (e - s + 1)) - 1) << s;
302}
303
7b52345e 304void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
4b12f0de 305 u64 dirty_mask, u64 nx_mask, u64 x_mask)
7b52345e
SY
306{
307 shadow_user_mask = user_mask;
308 shadow_accessed_mask = accessed_mask;
309 shadow_dirty_mask = dirty_mask;
310 shadow_nx_mask = nx_mask;
311 shadow_x_mask = x_mask;
312}
313EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
314
6aa8b732
AK
315static int is_cpuid_PSE36(void)
316{
317 return 1;
318}
319
73b1087e
AK
320static int is_nx(struct kvm_vcpu *vcpu)
321{
f6801dff 322 return vcpu->arch.efer & EFER_NX;
73b1087e
AK
323}
324
c7addb90
AK
325static int is_shadow_present_pte(u64 pte)
326{
ce88decf 327 return pte & PT_PRESENT_MASK && !is_mmio_spte(pte);
c7addb90
AK
328}
329
05da4558
MT
330static int is_large_pte(u64 pte)
331{
332 return pte & PT_PAGE_SIZE_MASK;
333}
334
43a3795a 335static int is_rmap_spte(u64 pte)
cd4a4e53 336{
4b1a80fa 337 return is_shadow_present_pte(pte);
cd4a4e53
AK
338}
339
776e6633
MT
340static int is_last_spte(u64 pte, int level)
341{
342 if (level == PT_PAGE_TABLE_LEVEL)
343 return 1;
852e3c19 344 if (is_large_pte(pte))
776e6633
MT
345 return 1;
346 return 0;
347}
348
35149e21 349static pfn_t spte_to_pfn(u64 pte)
0b49ea86 350{
35149e21 351 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
0b49ea86
AK
352}
353
da928521
AK
354static gfn_t pse36_gfn_delta(u32 gpte)
355{
356 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
357
358 return (gpte & PT32_DIR_PSE36_MASK) << shift;
359}
360
603e0651 361#ifdef CONFIG_X86_64
d555c333 362static void __set_spte(u64 *sptep, u64 spte)
e663ee64 363{
603e0651 364 *sptep = spte;
e663ee64
AK
365}
366
603e0651 367static void __update_clear_spte_fast(u64 *sptep, u64 spte)
a9221dd5 368{
603e0651
XG
369 *sptep = spte;
370}
371
372static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
373{
374 return xchg(sptep, spte);
375}
c2a2ac2b
XG
376
377static u64 __get_spte_lockless(u64 *sptep)
378{
379 return ACCESS_ONCE(*sptep);
380}
ce88decf
XG
381
382static bool __check_direct_spte_mmio_pf(u64 spte)
383{
384 /* It is valid if the spte is zapped. */
385 return spte == 0ull;
386}
a9221dd5 387#else
603e0651
XG
388union split_spte {
389 struct {
390 u32 spte_low;
391 u32 spte_high;
392 };
393 u64 spte;
394};
a9221dd5 395
c2a2ac2b
XG
396static void count_spte_clear(u64 *sptep, u64 spte)
397{
398 struct kvm_mmu_page *sp = page_header(__pa(sptep));
399
400 if (is_shadow_present_pte(spte))
401 return;
402
403 /* Ensure the spte is completely set before we increase the count */
404 smp_wmb();
405 sp->clear_spte_count++;
406}
407
603e0651
XG
408static void __set_spte(u64 *sptep, u64 spte)
409{
410 union split_spte *ssptep, sspte;
a9221dd5 411
603e0651
XG
412 ssptep = (union split_spte *)sptep;
413 sspte = (union split_spte)spte;
414
415 ssptep->spte_high = sspte.spte_high;
416
417 /*
418 * If we map the spte from nonpresent to present, We should store
419 * the high bits firstly, then set present bit, so cpu can not
420 * fetch this spte while we are setting the spte.
421 */
422 smp_wmb();
423
424 ssptep->spte_low = sspte.spte_low;
a9221dd5
AK
425}
426
603e0651
XG
427static void __update_clear_spte_fast(u64 *sptep, u64 spte)
428{
429 union split_spte *ssptep, sspte;
430
431 ssptep = (union split_spte *)sptep;
432 sspte = (union split_spte)spte;
433
434 ssptep->spte_low = sspte.spte_low;
435
436 /*
437 * If we map the spte from present to nonpresent, we should clear
438 * present bit firstly to avoid vcpu fetch the old high bits.
439 */
440 smp_wmb();
441
442 ssptep->spte_high = sspte.spte_high;
c2a2ac2b 443 count_spte_clear(sptep, spte);
603e0651
XG
444}
445
446static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
447{
448 union split_spte *ssptep, sspte, orig;
449
450 ssptep = (union split_spte *)sptep;
451 sspte = (union split_spte)spte;
452
453 /* xchg acts as a barrier before the setting of the high bits */
454 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
41bc3186
ZJ
455 orig.spte_high = ssptep->spte_high;
456 ssptep->spte_high = sspte.spte_high;
c2a2ac2b 457 count_spte_clear(sptep, spte);
603e0651
XG
458
459 return orig.spte;
460}
c2a2ac2b
XG
461
462/*
463 * The idea using the light way get the spte on x86_32 guest is from
464 * gup_get_pte(arch/x86/mm/gup.c).
accaefe0
XG
465 *
466 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
467 * coalesces them and we are running out of the MMU lock. Therefore
468 * we need to protect against in-progress updates of the spte.
469 *
470 * Reading the spte while an update is in progress may get the old value
471 * for the high part of the spte. The race is fine for a present->non-present
472 * change (because the high part of the spte is ignored for non-present spte),
473 * but for a present->present change we must reread the spte.
474 *
475 * All such changes are done in two steps (present->non-present and
476 * non-present->present), hence it is enough to count the number of
477 * present->non-present updates: if it changed while reading the spte,
478 * we might have hit the race. This is done using clear_spte_count.
c2a2ac2b
XG
479 */
480static u64 __get_spte_lockless(u64 *sptep)
481{
482 struct kvm_mmu_page *sp = page_header(__pa(sptep));
483 union split_spte spte, *orig = (union split_spte *)sptep;
484 int count;
485
486retry:
487 count = sp->clear_spte_count;
488 smp_rmb();
489
490 spte.spte_low = orig->spte_low;
491 smp_rmb();
492
493 spte.spte_high = orig->spte_high;
494 smp_rmb();
495
496 if (unlikely(spte.spte_low != orig->spte_low ||
497 count != sp->clear_spte_count))
498 goto retry;
499
500 return spte.spte;
501}
ce88decf
XG
502
503static bool __check_direct_spte_mmio_pf(u64 spte)
504{
505 union split_spte sspte = (union split_spte)spte;
506 u32 high_mmio_mask = shadow_mmio_mask >> 32;
507
508 /* It is valid if the spte is zapped. */
509 if (spte == 0ull)
510 return true;
511
512 /* It is valid if the spte is being zapped. */
513 if (sspte.spte_low == 0ull &&
514 (sspte.spte_high & high_mmio_mask) == high_mmio_mask)
515 return true;
516
517 return false;
518}
603e0651
XG
519#endif
520
c7ba5b48
XG
521static bool spte_is_locklessly_modifiable(u64 spte)
522{
feb3eb70
GN
523 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
524 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
c7ba5b48
XG
525}
526
8672b721
XG
527static bool spte_has_volatile_bits(u64 spte)
528{
c7ba5b48
XG
529 /*
530 * Always atomicly update spte if it can be updated
531 * out of mmu-lock, it can ensure dirty bit is not lost,
532 * also, it can help us to get a stable is_writable_pte()
533 * to ensure tlb flush is not missed.
534 */
535 if (spte_is_locklessly_modifiable(spte))
536 return true;
537
8672b721
XG
538 if (!shadow_accessed_mask)
539 return false;
540
541 if (!is_shadow_present_pte(spte))
542 return false;
543
4132779b
XG
544 if ((spte & shadow_accessed_mask) &&
545 (!is_writable_pte(spte) || (spte & shadow_dirty_mask)))
8672b721
XG
546 return false;
547
548 return true;
549}
550
4132779b
XG
551static bool spte_is_bit_cleared(u64 old_spte, u64 new_spte, u64 bit_mask)
552{
553 return (old_spte & bit_mask) && !(new_spte & bit_mask);
554}
555
1df9f2dc
XG
556/* Rules for using mmu_spte_set:
557 * Set the sptep from nonpresent to present.
558 * Note: the sptep being assigned *must* be either not present
559 * or in a state where the hardware will not attempt to update
560 * the spte.
561 */
562static void mmu_spte_set(u64 *sptep, u64 new_spte)
563{
564 WARN_ON(is_shadow_present_pte(*sptep));
565 __set_spte(sptep, new_spte);
566}
567
568/* Rules for using mmu_spte_update:
569 * Update the state bits, it means the mapped pfn is not changged.
6e7d0354
XG
570 *
571 * Whenever we overwrite a writable spte with a read-only one we
572 * should flush remote TLBs. Otherwise rmap_write_protect
573 * will find a read-only spte, even though the writable spte
574 * might be cached on a CPU's TLB, the return value indicates this
575 * case.
1df9f2dc 576 */
6e7d0354 577static bool mmu_spte_update(u64 *sptep, u64 new_spte)
b79b93f9 578{
c7ba5b48 579 u64 old_spte = *sptep;
6e7d0354 580 bool ret = false;
4132779b
XG
581
582 WARN_ON(!is_rmap_spte(new_spte));
b79b93f9 583
6e7d0354
XG
584 if (!is_shadow_present_pte(old_spte)) {
585 mmu_spte_set(sptep, new_spte);
586 return ret;
587 }
4132779b 588
c7ba5b48 589 if (!spte_has_volatile_bits(old_spte))
603e0651 590 __update_clear_spte_fast(sptep, new_spte);
4132779b 591 else
603e0651 592 old_spte = __update_clear_spte_slow(sptep, new_spte);
4132779b 593
c7ba5b48
XG
594 /*
595 * For the spte updated out of mmu-lock is safe, since
596 * we always atomicly update it, see the comments in
597 * spte_has_volatile_bits().
598 */
7f31c959
XG
599 if (spte_is_locklessly_modifiable(old_spte) &&
600 !is_writable_pte(new_spte))
6e7d0354
XG
601 ret = true;
602
4132779b 603 if (!shadow_accessed_mask)
6e7d0354 604 return ret;
4132779b
XG
605
606 if (spte_is_bit_cleared(old_spte, new_spte, shadow_accessed_mask))
607 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
608 if (spte_is_bit_cleared(old_spte, new_spte, shadow_dirty_mask))
609 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
6e7d0354
XG
610
611 return ret;
b79b93f9
AK
612}
613
1df9f2dc
XG
614/*
615 * Rules for using mmu_spte_clear_track_bits:
616 * It sets the sptep from present to nonpresent, and track the
617 * state bits, it is used to clear the last level sptep.
618 */
619static int mmu_spte_clear_track_bits(u64 *sptep)
620{
621 pfn_t pfn;
622 u64 old_spte = *sptep;
623
624 if (!spte_has_volatile_bits(old_spte))
603e0651 625 __update_clear_spte_fast(sptep, 0ull);
1df9f2dc 626 else
603e0651 627 old_spte = __update_clear_spte_slow(sptep, 0ull);
1df9f2dc
XG
628
629 if (!is_rmap_spte(old_spte))
630 return 0;
631
632 pfn = spte_to_pfn(old_spte);
86fde74c
XG
633
634 /*
635 * KVM does not hold the refcount of the page used by
636 * kvm mmu, before reclaiming the page, we should
637 * unmap it from mmu first.
638 */
639 WARN_ON(!kvm_is_mmio_pfn(pfn) && !page_count(pfn_to_page(pfn)));
640
1df9f2dc
XG
641 if (!shadow_accessed_mask || old_spte & shadow_accessed_mask)
642 kvm_set_pfn_accessed(pfn);
643 if (!shadow_dirty_mask || (old_spte & shadow_dirty_mask))
644 kvm_set_pfn_dirty(pfn);
645 return 1;
646}
647
648/*
649 * Rules for using mmu_spte_clear_no_track:
650 * Directly clear spte without caring the state bits of sptep,
651 * it is used to set the upper level spte.
652 */
653static void mmu_spte_clear_no_track(u64 *sptep)
654{
603e0651 655 __update_clear_spte_fast(sptep, 0ull);
1df9f2dc
XG
656}
657
c2a2ac2b
XG
658static u64 mmu_spte_get_lockless(u64 *sptep)
659{
660 return __get_spte_lockless(sptep);
661}
662
663static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
664{
c142786c
AK
665 /*
666 * Prevent page table teardown by making any free-er wait during
667 * kvm_flush_remote_tlbs() IPI to all active vcpus.
668 */
669 local_irq_disable();
670 vcpu->mode = READING_SHADOW_PAGE_TABLES;
671 /*
672 * Make sure a following spte read is not reordered ahead of the write
673 * to vcpu->mode.
674 */
675 smp_mb();
c2a2ac2b
XG
676}
677
678static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
679{
c142786c
AK
680 /*
681 * Make sure the write to vcpu->mode is not reordered in front of
682 * reads to sptes. If it does, kvm_commit_zap_page() can see us
683 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
684 */
685 smp_mb();
686 vcpu->mode = OUTSIDE_GUEST_MODE;
687 local_irq_enable();
c2a2ac2b
XG
688}
689
e2dec939 690static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
2e3e5882 691 struct kmem_cache *base_cache, int min)
714b93da
AK
692{
693 void *obj;
694
695 if (cache->nobjs >= min)
e2dec939 696 return 0;
714b93da 697 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
2e3e5882 698 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
714b93da 699 if (!obj)
e2dec939 700 return -ENOMEM;
714b93da
AK
701 cache->objects[cache->nobjs++] = obj;
702 }
e2dec939 703 return 0;
714b93da
AK
704}
705
f759e2b4
XG
706static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
707{
708 return cache->nobjs;
709}
710
e8ad9a70
XG
711static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
712 struct kmem_cache *cache)
714b93da
AK
713{
714 while (mc->nobjs)
e8ad9a70 715 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
714b93da
AK
716}
717
c1158e63 718static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
2e3e5882 719 int min)
c1158e63 720{
842f22ed 721 void *page;
c1158e63
AK
722
723 if (cache->nobjs >= min)
724 return 0;
725 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
842f22ed 726 page = (void *)__get_free_page(GFP_KERNEL);
c1158e63
AK
727 if (!page)
728 return -ENOMEM;
842f22ed 729 cache->objects[cache->nobjs++] = page;
c1158e63
AK
730 }
731 return 0;
732}
733
734static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
735{
736 while (mc->nobjs)
c4d198d5 737 free_page((unsigned long)mc->objects[--mc->nobjs]);
c1158e63
AK
738}
739
2e3e5882 740static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
714b93da 741{
e2dec939
AK
742 int r;
743
53c07b18 744 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
67052b35 745 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
d3d25b04
AK
746 if (r)
747 goto out;
ad312c7c 748 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
d3d25b04
AK
749 if (r)
750 goto out;
ad312c7c 751 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
2e3e5882 752 mmu_page_header_cache, 4);
e2dec939
AK
753out:
754 return r;
714b93da
AK
755}
756
757static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
758{
53c07b18
XG
759 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
760 pte_list_desc_cache);
ad312c7c 761 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
e8ad9a70
XG
762 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
763 mmu_page_header_cache);
714b93da
AK
764}
765
80feb89a 766static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
714b93da
AK
767{
768 void *p;
769
770 BUG_ON(!mc->nobjs);
771 p = mc->objects[--mc->nobjs];
714b93da
AK
772 return p;
773}
774
53c07b18 775static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
714b93da 776{
80feb89a 777 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
714b93da
AK
778}
779
53c07b18 780static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
714b93da 781{
53c07b18 782 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
714b93da
AK
783}
784
2032a93d
LJ
785static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
786{
787 if (!sp->role.direct)
788 return sp->gfns[index];
789
790 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
791}
792
793static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
794{
795 if (sp->role.direct)
796 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
797 else
798 sp->gfns[index] = gfn;
799}
800
05da4558 801/*
d4dbf470
TY
802 * Return the pointer to the large page information for a given gfn,
803 * handling slots that are not large page aligned.
05da4558 804 */
d4dbf470
TY
805static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
806 struct kvm_memory_slot *slot,
807 int level)
05da4558
MT
808{
809 unsigned long idx;
810
fb03cb6f 811 idx = gfn_to_index(gfn, slot->base_gfn, level);
db3fe4eb 812 return &slot->arch.lpage_info[level - 2][idx];
05da4558
MT
813}
814
815static void account_shadowed(struct kvm *kvm, gfn_t gfn)
816{
d25797b2 817 struct kvm_memory_slot *slot;
d4dbf470 818 struct kvm_lpage_info *linfo;
d25797b2 819 int i;
05da4558 820
a1f4d395 821 slot = gfn_to_memslot(kvm, gfn);
d25797b2
JR
822 for (i = PT_DIRECTORY_LEVEL;
823 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
d4dbf470
TY
824 linfo = lpage_info_slot(gfn, slot, i);
825 linfo->write_count += 1;
d25797b2 826 }
332b207d 827 kvm->arch.indirect_shadow_pages++;
05da4558
MT
828}
829
830static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
831{
d25797b2 832 struct kvm_memory_slot *slot;
d4dbf470 833 struct kvm_lpage_info *linfo;
d25797b2 834 int i;
05da4558 835
a1f4d395 836 slot = gfn_to_memslot(kvm, gfn);
d25797b2
JR
837 for (i = PT_DIRECTORY_LEVEL;
838 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
d4dbf470
TY
839 linfo = lpage_info_slot(gfn, slot, i);
840 linfo->write_count -= 1;
841 WARN_ON(linfo->write_count < 0);
d25797b2 842 }
332b207d 843 kvm->arch.indirect_shadow_pages--;
05da4558
MT
844}
845
d25797b2
JR
846static int has_wrprotected_page(struct kvm *kvm,
847 gfn_t gfn,
848 int level)
05da4558 849{
2843099f 850 struct kvm_memory_slot *slot;
d4dbf470 851 struct kvm_lpage_info *linfo;
05da4558 852
a1f4d395 853 slot = gfn_to_memslot(kvm, gfn);
05da4558 854 if (slot) {
d4dbf470
TY
855 linfo = lpage_info_slot(gfn, slot, level);
856 return linfo->write_count;
05da4558
MT
857 }
858
859 return 1;
860}
861
d25797b2 862static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
05da4558 863{
8f0b1ab6 864 unsigned long page_size;
d25797b2 865 int i, ret = 0;
05da4558 866
8f0b1ab6 867 page_size = kvm_host_page_size(kvm, gfn);
05da4558 868
d25797b2
JR
869 for (i = PT_PAGE_TABLE_LEVEL;
870 i < (PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES); ++i) {
871 if (page_size >= KVM_HPAGE_SIZE(i))
872 ret = i;
873 else
874 break;
875 }
876
4c2155ce 877 return ret;
05da4558
MT
878}
879
5d163b1c
XG
880static struct kvm_memory_slot *
881gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
882 bool no_dirty_log)
05da4558
MT
883{
884 struct kvm_memory_slot *slot;
5d163b1c
XG
885
886 slot = gfn_to_memslot(vcpu->kvm, gfn);
887 if (!slot || slot->flags & KVM_MEMSLOT_INVALID ||
888 (no_dirty_log && slot->dirty_bitmap))
889 slot = NULL;
890
891 return slot;
892}
893
894static bool mapping_level_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t large_gfn)
895{
a0a8eaba 896 return !gfn_to_memslot_dirty_bitmap(vcpu, large_gfn, true);
936a5fe6
AA
897}
898
899static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn)
900{
901 int host_level, level, max_level;
05da4558 902
d25797b2
JR
903 host_level = host_mapping_level(vcpu->kvm, large_gfn);
904
905 if (host_level == PT_PAGE_TABLE_LEVEL)
906 return host_level;
907
55dd98c3 908 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
878403b7
SY
909
910 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
d25797b2
JR
911 if (has_wrprotected_page(vcpu->kvm, large_gfn, level))
912 break;
d25797b2
JR
913
914 return level - 1;
05da4558
MT
915}
916
290fc38d 917/*
53c07b18 918 * Pte mapping structures:
cd4a4e53 919 *
53c07b18 920 * If pte_list bit zero is zero, then pte_list point to the spte.
cd4a4e53 921 *
53c07b18
XG
922 * If pte_list bit zero is one, (then pte_list & ~1) points to a struct
923 * pte_list_desc containing more mappings.
53a27b39 924 *
53c07b18 925 * Returns the number of pte entries before the spte was added or zero if
53a27b39
MT
926 * the spte was not added.
927 *
cd4a4e53 928 */
53c07b18
XG
929static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
930 unsigned long *pte_list)
cd4a4e53 931{
53c07b18 932 struct pte_list_desc *desc;
53a27b39 933 int i, count = 0;
cd4a4e53 934
53c07b18
XG
935 if (!*pte_list) {
936 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
937 *pte_list = (unsigned long)spte;
938 } else if (!(*pte_list & 1)) {
939 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
940 desc = mmu_alloc_pte_list_desc(vcpu);
941 desc->sptes[0] = (u64 *)*pte_list;
d555c333 942 desc->sptes[1] = spte;
53c07b18 943 *pte_list = (unsigned long)desc | 1;
cb16a7b3 944 ++count;
cd4a4e53 945 } else {
53c07b18
XG
946 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
947 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
948 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
cd4a4e53 949 desc = desc->more;
53c07b18 950 count += PTE_LIST_EXT;
53a27b39 951 }
53c07b18
XG
952 if (desc->sptes[PTE_LIST_EXT-1]) {
953 desc->more = mmu_alloc_pte_list_desc(vcpu);
cd4a4e53
AK
954 desc = desc->more;
955 }
d555c333 956 for (i = 0; desc->sptes[i]; ++i)
cb16a7b3 957 ++count;
d555c333 958 desc->sptes[i] = spte;
cd4a4e53 959 }
53a27b39 960 return count;
cd4a4e53
AK
961}
962
53c07b18
XG
963static void
964pte_list_desc_remove_entry(unsigned long *pte_list, struct pte_list_desc *desc,
965 int i, struct pte_list_desc *prev_desc)
cd4a4e53
AK
966{
967 int j;
968
53c07b18 969 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
cd4a4e53 970 ;
d555c333
AK
971 desc->sptes[i] = desc->sptes[j];
972 desc->sptes[j] = NULL;
cd4a4e53
AK
973 if (j != 0)
974 return;
975 if (!prev_desc && !desc->more)
53c07b18 976 *pte_list = (unsigned long)desc->sptes[0];
cd4a4e53
AK
977 else
978 if (prev_desc)
979 prev_desc->more = desc->more;
980 else
53c07b18
XG
981 *pte_list = (unsigned long)desc->more | 1;
982 mmu_free_pte_list_desc(desc);
cd4a4e53
AK
983}
984
53c07b18 985static void pte_list_remove(u64 *spte, unsigned long *pte_list)
cd4a4e53 986{
53c07b18
XG
987 struct pte_list_desc *desc;
988 struct pte_list_desc *prev_desc;
cd4a4e53
AK
989 int i;
990
53c07b18
XG
991 if (!*pte_list) {
992 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
cd4a4e53 993 BUG();
53c07b18
XG
994 } else if (!(*pte_list & 1)) {
995 rmap_printk("pte_list_remove: %p 1->0\n", spte);
996 if ((u64 *)*pte_list != spte) {
997 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
cd4a4e53
AK
998 BUG();
999 }
53c07b18 1000 *pte_list = 0;
cd4a4e53 1001 } else {
53c07b18
XG
1002 rmap_printk("pte_list_remove: %p many->many\n", spte);
1003 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
cd4a4e53
AK
1004 prev_desc = NULL;
1005 while (desc) {
53c07b18 1006 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
d555c333 1007 if (desc->sptes[i] == spte) {
53c07b18 1008 pte_list_desc_remove_entry(pte_list,
714b93da 1009 desc, i,
cd4a4e53
AK
1010 prev_desc);
1011 return;
1012 }
1013 prev_desc = desc;
1014 desc = desc->more;
1015 }
53c07b18 1016 pr_err("pte_list_remove: %p many->many\n", spte);
cd4a4e53
AK
1017 BUG();
1018 }
1019}
1020
67052b35
XG
1021typedef void (*pte_list_walk_fn) (u64 *spte);
1022static void pte_list_walk(unsigned long *pte_list, pte_list_walk_fn fn)
1023{
1024 struct pte_list_desc *desc;
1025 int i;
1026
1027 if (!*pte_list)
1028 return;
1029
1030 if (!(*pte_list & 1))
1031 return fn((u64 *)*pte_list);
1032
1033 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
1034 while (desc) {
1035 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
1036 fn(desc->sptes[i]);
1037 desc = desc->more;
1038 }
1039}
1040
9373e2c0 1041static unsigned long *__gfn_to_rmap(gfn_t gfn, int level,
9b9b1492 1042 struct kvm_memory_slot *slot)
53c07b18 1043{
77d11309 1044 unsigned long idx;
53c07b18 1045
77d11309 1046 idx = gfn_to_index(gfn, slot->base_gfn, level);
d89cc617 1047 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
53c07b18
XG
1048}
1049
9b9b1492
TY
1050/*
1051 * Take gfn and return the reverse mapping to it.
1052 */
1053static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int level)
1054{
1055 struct kvm_memory_slot *slot;
1056
1057 slot = gfn_to_memslot(kvm, gfn);
9373e2c0 1058 return __gfn_to_rmap(gfn, level, slot);
9b9b1492
TY
1059}
1060
f759e2b4
XG
1061static bool rmap_can_add(struct kvm_vcpu *vcpu)
1062{
1063 struct kvm_mmu_memory_cache *cache;
1064
1065 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1066 return mmu_memory_cache_free_objects(cache);
1067}
1068
53c07b18
XG
1069static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
1070{
1071 struct kvm_mmu_page *sp;
1072 unsigned long *rmapp;
1073
53c07b18
XG
1074 sp = page_header(__pa(spte));
1075 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
1076 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
1077 return pte_list_add(vcpu, spte, rmapp);
1078}
1079
53c07b18
XG
1080static void rmap_remove(struct kvm *kvm, u64 *spte)
1081{
1082 struct kvm_mmu_page *sp;
1083 gfn_t gfn;
1084 unsigned long *rmapp;
1085
1086 sp = page_header(__pa(spte));
1087 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
1088 rmapp = gfn_to_rmap(kvm, gfn, sp->role.level);
1089 pte_list_remove(spte, rmapp);
1090}
1091
1e3f42f0
TY
1092/*
1093 * Used by the following functions to iterate through the sptes linked by a
1094 * rmap. All fields are private and not assumed to be used outside.
1095 */
1096struct rmap_iterator {
1097 /* private fields */
1098 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1099 int pos; /* index of the sptep */
1100};
1101
1102/*
1103 * Iteration must be started by this function. This should also be used after
1104 * removing/dropping sptes from the rmap link because in such cases the
1105 * information in the itererator may not be valid.
1106 *
1107 * Returns sptep if found, NULL otherwise.
1108 */
1109static u64 *rmap_get_first(unsigned long rmap, struct rmap_iterator *iter)
1110{
1111 if (!rmap)
1112 return NULL;
1113
1114 if (!(rmap & 1)) {
1115 iter->desc = NULL;
1116 return (u64 *)rmap;
1117 }
1118
1119 iter->desc = (struct pte_list_desc *)(rmap & ~1ul);
1120 iter->pos = 0;
1121 return iter->desc->sptes[iter->pos];
1122}
1123
1124/*
1125 * Must be used with a valid iterator: e.g. after rmap_get_first().
1126 *
1127 * Returns sptep if found, NULL otherwise.
1128 */
1129static u64 *rmap_get_next(struct rmap_iterator *iter)
1130{
1131 if (iter->desc) {
1132 if (iter->pos < PTE_LIST_EXT - 1) {
1133 u64 *sptep;
1134
1135 ++iter->pos;
1136 sptep = iter->desc->sptes[iter->pos];
1137 if (sptep)
1138 return sptep;
1139 }
1140
1141 iter->desc = iter->desc->more;
1142
1143 if (iter->desc) {
1144 iter->pos = 0;
1145 /* desc->sptes[0] cannot be NULL */
1146 return iter->desc->sptes[iter->pos];
1147 }
1148 }
1149
1150 return NULL;
1151}
1152
c3707958 1153static void drop_spte(struct kvm *kvm, u64 *sptep)
e4b502ea 1154{
1df9f2dc 1155 if (mmu_spte_clear_track_bits(sptep))
eb45fda4 1156 rmap_remove(kvm, sptep);
be38d276
AK
1157}
1158
8e22f955
XG
1159
1160static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1161{
1162 if (is_large_pte(*sptep)) {
1163 WARN_ON(page_header(__pa(sptep))->role.level ==
1164 PT_PAGE_TABLE_LEVEL);
1165 drop_spte(kvm, sptep);
1166 --kvm->stat.lpages;
1167 return true;
1168 }
1169
1170 return false;
1171}
1172
1173static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1174{
1175 if (__drop_large_spte(vcpu->kvm, sptep))
1176 kvm_flush_remote_tlbs(vcpu->kvm);
1177}
1178
1179/*
49fde340 1180 * Write-protect on the specified @sptep, @pt_protect indicates whether
c126d94f 1181 * spte write-protection is caused by protecting shadow page table.
49fde340
XG
1182 *
1183 * Note: write protection is difference between drity logging and spte
1184 * protection:
1185 * - for dirty logging, the spte can be set to writable at anytime if
1186 * its dirty bitmap is properly set.
1187 * - for spte protection, the spte can be writable only after unsync-ing
1188 * shadow page.
8e22f955 1189 *
c126d94f 1190 * Return true if tlb need be flushed.
8e22f955 1191 */
c126d94f 1192static bool spte_write_protect(struct kvm *kvm, u64 *sptep, bool pt_protect)
d13bc5b5
XG
1193{
1194 u64 spte = *sptep;
1195
49fde340
XG
1196 if (!is_writable_pte(spte) &&
1197 !(pt_protect && spte_is_locklessly_modifiable(spte)))
d13bc5b5
XG
1198 return false;
1199
1200 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1201
49fde340
XG
1202 if (pt_protect)
1203 spte &= ~SPTE_MMU_WRITEABLE;
d13bc5b5 1204 spte = spte & ~PT_WRITABLE_MASK;
49fde340 1205
c126d94f 1206 return mmu_spte_update(sptep, spte);
d13bc5b5
XG
1207}
1208
49fde340 1209static bool __rmap_write_protect(struct kvm *kvm, unsigned long *rmapp,
245c3912 1210 bool pt_protect)
98348e95 1211{
1e3f42f0
TY
1212 u64 *sptep;
1213 struct rmap_iterator iter;
d13bc5b5 1214 bool flush = false;
374cbac0 1215
1e3f42f0
TY
1216 for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
1217 BUG_ON(!(*sptep & PT_PRESENT_MASK));
a0ed4607 1218
c126d94f 1219 flush |= spte_write_protect(kvm, sptep, pt_protect);
d13bc5b5 1220 sptep = rmap_get_next(&iter);
374cbac0 1221 }
855149aa 1222
d13bc5b5 1223 return flush;
a0ed4607
TY
1224}
1225
5dc99b23
TY
1226/**
1227 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
1228 * @kvm: kvm instance
1229 * @slot: slot to protect
1230 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1231 * @mask: indicates which pages we should protect
1232 *
1233 * Used when we do not need to care about huge page mappings: e.g. during dirty
1234 * logging we do not have any such mappings.
1235 */
1236void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
1237 struct kvm_memory_slot *slot,
1238 gfn_t gfn_offset, unsigned long mask)
a0ed4607
TY
1239{
1240 unsigned long *rmapp;
a0ed4607 1241
5dc99b23 1242 while (mask) {
65fbe37c
TY
1243 rmapp = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1244 PT_PAGE_TABLE_LEVEL, slot);
245c3912 1245 __rmap_write_protect(kvm, rmapp, false);
05da4558 1246
5dc99b23
TY
1247 /* clear the first set bit */
1248 mask &= mask - 1;
1249 }
374cbac0
AK
1250}
1251
2f84569f 1252static bool rmap_write_protect(struct kvm *kvm, u64 gfn)
95d4c16c
TY
1253{
1254 struct kvm_memory_slot *slot;
5dc99b23
TY
1255 unsigned long *rmapp;
1256 int i;
2f84569f 1257 bool write_protected = false;
95d4c16c
TY
1258
1259 slot = gfn_to_memslot(kvm, gfn);
5dc99b23
TY
1260
1261 for (i = PT_PAGE_TABLE_LEVEL;
1262 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
1263 rmapp = __gfn_to_rmap(gfn, i, slot);
245c3912 1264 write_protected |= __rmap_write_protect(kvm, rmapp, true);
5dc99b23
TY
1265 }
1266
1267 return write_protected;
95d4c16c
TY
1268}
1269
8a8365c5 1270static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp,
048212d0 1271 struct kvm_memory_slot *slot, unsigned long data)
e930bffe 1272{
1e3f42f0
TY
1273 u64 *sptep;
1274 struct rmap_iterator iter;
e930bffe
AA
1275 int need_tlb_flush = 0;
1276
1e3f42f0
TY
1277 while ((sptep = rmap_get_first(*rmapp, &iter))) {
1278 BUG_ON(!(*sptep & PT_PRESENT_MASK));
1279 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", sptep, *sptep);
1280
1281 drop_spte(kvm, sptep);
e930bffe
AA
1282 need_tlb_flush = 1;
1283 }
1e3f42f0 1284
e930bffe
AA
1285 return need_tlb_flush;
1286}
1287
8a8365c5 1288static int kvm_set_pte_rmapp(struct kvm *kvm, unsigned long *rmapp,
048212d0 1289 struct kvm_memory_slot *slot, unsigned long data)
3da0dd43 1290{
1e3f42f0
TY
1291 u64 *sptep;
1292 struct rmap_iterator iter;
3da0dd43 1293 int need_flush = 0;
1e3f42f0 1294 u64 new_spte;
3da0dd43
IE
1295 pte_t *ptep = (pte_t *)data;
1296 pfn_t new_pfn;
1297
1298 WARN_ON(pte_huge(*ptep));
1299 new_pfn = pte_pfn(*ptep);
1e3f42f0
TY
1300
1301 for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
1302 BUG_ON(!is_shadow_present_pte(*sptep));
1303 rmap_printk("kvm_set_pte_rmapp: spte %p %llx\n", sptep, *sptep);
1304
3da0dd43 1305 need_flush = 1;
1e3f42f0 1306
3da0dd43 1307 if (pte_write(*ptep)) {
1e3f42f0
TY
1308 drop_spte(kvm, sptep);
1309 sptep = rmap_get_first(*rmapp, &iter);
3da0dd43 1310 } else {
1e3f42f0 1311 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
3da0dd43
IE
1312 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1313
1314 new_spte &= ~PT_WRITABLE_MASK;
1315 new_spte &= ~SPTE_HOST_WRITEABLE;
b79b93f9 1316 new_spte &= ~shadow_accessed_mask;
1e3f42f0
TY
1317
1318 mmu_spte_clear_track_bits(sptep);
1319 mmu_spte_set(sptep, new_spte);
1320 sptep = rmap_get_next(&iter);
3da0dd43
IE
1321 }
1322 }
1e3f42f0 1323
3da0dd43
IE
1324 if (need_flush)
1325 kvm_flush_remote_tlbs(kvm);
1326
1327 return 0;
1328}
1329
84504ef3
TY
1330static int kvm_handle_hva_range(struct kvm *kvm,
1331 unsigned long start,
1332 unsigned long end,
1333 unsigned long data,
1334 int (*handler)(struct kvm *kvm,
1335 unsigned long *rmapp,
048212d0 1336 struct kvm_memory_slot *slot,
84504ef3 1337 unsigned long data))
e930bffe 1338{
be6ba0f0 1339 int j;
f395302e 1340 int ret = 0;
bc6678a3 1341 struct kvm_memslots *slots;
be6ba0f0 1342 struct kvm_memory_slot *memslot;
bc6678a3 1343
90d83dc3 1344 slots = kvm_memslots(kvm);
e930bffe 1345
be6ba0f0 1346 kvm_for_each_memslot(memslot, slots) {
84504ef3 1347 unsigned long hva_start, hva_end;
bcd3ef58 1348 gfn_t gfn_start, gfn_end;
e930bffe 1349
84504ef3
TY
1350 hva_start = max(start, memslot->userspace_addr);
1351 hva_end = min(end, memslot->userspace_addr +
1352 (memslot->npages << PAGE_SHIFT));
1353 if (hva_start >= hva_end)
1354 continue;
1355 /*
1356 * {gfn(page) | page intersects with [hva_start, hva_end)} =
bcd3ef58 1357 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
84504ef3 1358 */
bcd3ef58 1359 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
84504ef3 1360 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
852e3c19 1361
bcd3ef58
TY
1362 for (j = PT_PAGE_TABLE_LEVEL;
1363 j < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++j) {
1364 unsigned long idx, idx_end;
1365 unsigned long *rmapp;
d4dbf470 1366
bcd3ef58
TY
1367 /*
1368 * {idx(page_j) | page_j intersects with
1369 * [hva_start, hva_end)} = {idx, idx+1, ..., idx_end}.
1370 */
1371 idx = gfn_to_index(gfn_start, memslot->base_gfn, j);
1372 idx_end = gfn_to_index(gfn_end - 1, memslot->base_gfn, j);
852e3c19 1373
bcd3ef58 1374 rmapp = __gfn_to_rmap(gfn_start, j, memslot);
d4dbf470 1375
bcd3ef58
TY
1376 for (; idx <= idx_end; ++idx)
1377 ret |= handler(kvm, rmapp++, memslot, data);
e930bffe
AA
1378 }
1379 }
1380
f395302e 1381 return ret;
e930bffe
AA
1382}
1383
84504ef3
TY
1384static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1385 unsigned long data,
1386 int (*handler)(struct kvm *kvm, unsigned long *rmapp,
048212d0 1387 struct kvm_memory_slot *slot,
84504ef3
TY
1388 unsigned long data))
1389{
1390 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
e930bffe
AA
1391}
1392
1393int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1394{
3da0dd43
IE
1395 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
1396}
1397
b3ae2096
TY
1398int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1399{
1400 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1401}
1402
3da0dd43
IE
1403void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1404{
8a8365c5 1405 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
e930bffe
AA
1406}
1407
8a8365c5 1408static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
048212d0 1409 struct kvm_memory_slot *slot, unsigned long data)
e930bffe 1410{
1e3f42f0 1411 u64 *sptep;
79f702a6 1412 struct rmap_iterator uninitialized_var(iter);
e930bffe
AA
1413 int young = 0;
1414
6316e1c8 1415 /*
3f6d8c8a
XH
1416 * In case of absence of EPT Access and Dirty Bits supports,
1417 * emulate the accessed bit for EPT, by checking if this page has
6316e1c8
RR
1418 * an EPT mapping, and clearing it if it does. On the next access,
1419 * a new EPT mapping will be established.
1420 * This has some overhead, but not as much as the cost of swapping
1421 * out actively used pages or breaking up actively used hugepages.
1422 */
f395302e
TY
1423 if (!shadow_accessed_mask) {
1424 young = kvm_unmap_rmapp(kvm, rmapp, slot, data);
1425 goto out;
1426 }
534e38b4 1427
1e3f42f0
TY
1428 for (sptep = rmap_get_first(*rmapp, &iter); sptep;
1429 sptep = rmap_get_next(&iter)) {
3f6d8c8a 1430 BUG_ON(!is_shadow_present_pte(*sptep));
1e3f42f0 1431
3f6d8c8a 1432 if (*sptep & shadow_accessed_mask) {
e930bffe 1433 young = 1;
3f6d8c8a
XH
1434 clear_bit((ffs(shadow_accessed_mask) - 1),
1435 (unsigned long *)sptep);
e930bffe 1436 }
e930bffe 1437 }
f395302e
TY
1438out:
1439 /* @data has hva passed to kvm_age_hva(). */
1440 trace_kvm_age_page(data, slot, young);
e930bffe
AA
1441 return young;
1442}
1443
8ee53820 1444static int kvm_test_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
048212d0 1445 struct kvm_memory_slot *slot, unsigned long data)
8ee53820 1446{
1e3f42f0
TY
1447 u64 *sptep;
1448 struct rmap_iterator iter;
8ee53820
AA
1449 int young = 0;
1450
1451 /*
1452 * If there's no access bit in the secondary pte set by the
1453 * hardware it's up to gup-fast/gup to set the access bit in
1454 * the primary pte or in the page structure.
1455 */
1456 if (!shadow_accessed_mask)
1457 goto out;
1458
1e3f42f0
TY
1459 for (sptep = rmap_get_first(*rmapp, &iter); sptep;
1460 sptep = rmap_get_next(&iter)) {
3f6d8c8a 1461 BUG_ON(!is_shadow_present_pte(*sptep));
1e3f42f0 1462
3f6d8c8a 1463 if (*sptep & shadow_accessed_mask) {
8ee53820
AA
1464 young = 1;
1465 break;
1466 }
8ee53820
AA
1467 }
1468out:
1469 return young;
1470}
1471
53a27b39
MT
1472#define RMAP_RECYCLE_THRESHOLD 1000
1473
852e3c19 1474static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
53a27b39
MT
1475{
1476 unsigned long *rmapp;
852e3c19
JR
1477 struct kvm_mmu_page *sp;
1478
1479 sp = page_header(__pa(spte));
53a27b39 1480
852e3c19 1481 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
53a27b39 1482
048212d0 1483 kvm_unmap_rmapp(vcpu->kvm, rmapp, NULL, 0);
53a27b39
MT
1484 kvm_flush_remote_tlbs(vcpu->kvm);
1485}
1486
e930bffe
AA
1487int kvm_age_hva(struct kvm *kvm, unsigned long hva)
1488{
f395302e 1489 return kvm_handle_hva(kvm, hva, hva, kvm_age_rmapp);
e930bffe
AA
1490}
1491
8ee53820
AA
1492int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1493{
1494 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1495}
1496
d6c69ee9 1497#ifdef MMU_DEBUG
47ad8e68 1498static int is_empty_shadow_page(u64 *spt)
6aa8b732 1499{
139bdb2d
AK
1500 u64 *pos;
1501 u64 *end;
1502
47ad8e68 1503 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
3c915510 1504 if (is_shadow_present_pte(*pos)) {
b8688d51 1505 printk(KERN_ERR "%s: %p %llx\n", __func__,
139bdb2d 1506 pos, *pos);
6aa8b732 1507 return 0;
139bdb2d 1508 }
6aa8b732
AK
1509 return 1;
1510}
d6c69ee9 1511#endif
6aa8b732 1512
45221ab6
DH
1513/*
1514 * This value is the sum of all of the kvm instances's
1515 * kvm->arch.n_used_mmu_pages values. We need a global,
1516 * aggregate version in order to make the slab shrinker
1517 * faster
1518 */
1519static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1520{
1521 kvm->arch.n_used_mmu_pages += nr;
1522 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1523}
1524
834be0d8 1525static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
260746c0 1526{
4db35314 1527 ASSERT(is_empty_shadow_page(sp->spt));
7775834a 1528 hlist_del(&sp->hash_link);
bd4c86ea
XG
1529 list_del(&sp->link);
1530 free_page((unsigned long)sp->spt);
834be0d8
GN
1531 if (!sp->role.direct)
1532 free_page((unsigned long)sp->gfns);
e8ad9a70 1533 kmem_cache_free(mmu_page_header_cache, sp);
260746c0
AK
1534}
1535
cea0f0e7
AK
1536static unsigned kvm_page_table_hashfn(gfn_t gfn)
1537{
1ae0a13d 1538 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
cea0f0e7
AK
1539}
1540
714b93da 1541static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
4db35314 1542 struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7 1543{
cea0f0e7
AK
1544 if (!parent_pte)
1545 return;
cea0f0e7 1546
67052b35 1547 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
cea0f0e7
AK
1548}
1549
4db35314 1550static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
cea0f0e7
AK
1551 u64 *parent_pte)
1552{
67052b35 1553 pte_list_remove(parent_pte, &sp->parent_ptes);
cea0f0e7
AK
1554}
1555
bcdd9a93
XG
1556static void drop_parent_pte(struct kvm_mmu_page *sp,
1557 u64 *parent_pte)
1558{
1559 mmu_page_remove_parent_pte(sp, parent_pte);
1df9f2dc 1560 mmu_spte_clear_no_track(parent_pte);
bcdd9a93
XG
1561}
1562
67052b35
XG
1563static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
1564 u64 *parent_pte, int direct)
ad8cfbe3 1565{
67052b35 1566 struct kvm_mmu_page *sp;
7ddca7e4 1567
80feb89a
TY
1568 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1569 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
67052b35 1570 if (!direct)
80feb89a 1571 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
67052b35 1572 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
5304b8d3
XG
1573
1574 /*
1575 * The active_mmu_pages list is the FIFO list, do not move the
1576 * page until it is zapped. kvm_zap_obsolete_pages depends on
1577 * this feature. See the comments in kvm_zap_obsolete_pages().
1578 */
67052b35 1579 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
67052b35
XG
1580 sp->parent_ptes = 0;
1581 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
1582 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
1583 return sp;
ad8cfbe3
MT
1584}
1585
67052b35 1586static void mark_unsync(u64 *spte);
1047df1f 1587static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
0074ff63 1588{
67052b35 1589 pte_list_walk(&sp->parent_ptes, mark_unsync);
0074ff63
MT
1590}
1591
67052b35 1592static void mark_unsync(u64 *spte)
0074ff63 1593{
67052b35 1594 struct kvm_mmu_page *sp;
1047df1f 1595 unsigned int index;
0074ff63 1596
67052b35 1597 sp = page_header(__pa(spte));
1047df1f
XG
1598 index = spte - sp->spt;
1599 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
0074ff63 1600 return;
1047df1f 1601 if (sp->unsync_children++)
0074ff63 1602 return;
1047df1f 1603 kvm_mmu_mark_parents_unsync(sp);
0074ff63
MT
1604}
1605
e8bc217a 1606static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
a4a8e6f7 1607 struct kvm_mmu_page *sp)
e8bc217a
MT
1608{
1609 return 1;
1610}
1611
a7052897
MT
1612static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1613{
1614}
1615
0f53b5b1
XG
1616static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1617 struct kvm_mmu_page *sp, u64 *spte,
7c562522 1618 const void *pte)
0f53b5b1
XG
1619{
1620 WARN_ON(1);
1621}
1622
60c8aec6
MT
1623#define KVM_PAGE_ARRAY_NR 16
1624
1625struct kvm_mmu_pages {
1626 struct mmu_page_and_offset {
1627 struct kvm_mmu_page *sp;
1628 unsigned int idx;
1629 } page[KVM_PAGE_ARRAY_NR];
1630 unsigned int nr;
1631};
1632
cded19f3
HE
1633static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1634 int idx)
4731d4c7 1635{
60c8aec6 1636 int i;
4731d4c7 1637
60c8aec6
MT
1638 if (sp->unsync)
1639 for (i=0; i < pvec->nr; i++)
1640 if (pvec->page[i].sp == sp)
1641 return 0;
1642
1643 pvec->page[pvec->nr].sp = sp;
1644 pvec->page[pvec->nr].idx = idx;
1645 pvec->nr++;
1646 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1647}
1648
1649static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1650 struct kvm_mmu_pages *pvec)
1651{
1652 int i, ret, nr_unsync_leaf = 0;
4731d4c7 1653
37178b8b 1654 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
7a8f1a74 1655 struct kvm_mmu_page *child;
4731d4c7
MT
1656 u64 ent = sp->spt[i];
1657
7a8f1a74
XG
1658 if (!is_shadow_present_pte(ent) || is_large_pte(ent))
1659 goto clear_child_bitmap;
1660
1661 child = page_header(ent & PT64_BASE_ADDR_MASK);
1662
1663 if (child->unsync_children) {
1664 if (mmu_pages_add(pvec, child, i))
1665 return -ENOSPC;
1666
1667 ret = __mmu_unsync_walk(child, pvec);
1668 if (!ret)
1669 goto clear_child_bitmap;
1670 else if (ret > 0)
1671 nr_unsync_leaf += ret;
1672 else
1673 return ret;
1674 } else if (child->unsync) {
1675 nr_unsync_leaf++;
1676 if (mmu_pages_add(pvec, child, i))
1677 return -ENOSPC;
1678 } else
1679 goto clear_child_bitmap;
1680
1681 continue;
1682
1683clear_child_bitmap:
1684 __clear_bit(i, sp->unsync_child_bitmap);
1685 sp->unsync_children--;
1686 WARN_ON((int)sp->unsync_children < 0);
4731d4c7
MT
1687 }
1688
4731d4c7 1689
60c8aec6
MT
1690 return nr_unsync_leaf;
1691}
1692
1693static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1694 struct kvm_mmu_pages *pvec)
1695{
1696 if (!sp->unsync_children)
1697 return 0;
1698
1699 mmu_pages_add(pvec, sp, 0);
1700 return __mmu_unsync_walk(sp, pvec);
4731d4c7
MT
1701}
1702
4731d4c7
MT
1703static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1704{
1705 WARN_ON(!sp->unsync);
5e1b3ddb 1706 trace_kvm_mmu_sync_page(sp);
4731d4c7
MT
1707 sp->unsync = 0;
1708 --kvm->stat.mmu_unsync;
1709}
1710
7775834a
XG
1711static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1712 struct list_head *invalid_list);
1713static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1714 struct list_head *invalid_list);
4731d4c7 1715
f34d251d
XG
1716/*
1717 * NOTE: we should pay more attention on the zapped-obsolete page
1718 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
1719 * since it has been deleted from active_mmu_pages but still can be found
1720 * at hast list.
1721 *
1722 * for_each_gfn_indirect_valid_sp has skipped that kind of page and
1723 * kvm_mmu_get_page(), the only user of for_each_gfn_sp(), has skipped
1724 * all the obsolete pages.
1725 */
1044b030
TY
1726#define for_each_gfn_sp(_kvm, _sp, _gfn) \
1727 hlist_for_each_entry(_sp, \
1728 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
1729 if ((_sp)->gfn != (_gfn)) {} else
1730
1731#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
1732 for_each_gfn_sp(_kvm, _sp, _gfn) \
1733 if ((_sp)->role.direct || (_sp)->role.invalid) {} else
7ae680eb 1734
f918b443 1735/* @sp->gfn should be write-protected at the call site */
1d9dc7e0 1736static int __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
d98ba053 1737 struct list_head *invalid_list, bool clear_unsync)
4731d4c7 1738{
5b7e0102 1739 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
d98ba053 1740 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
4731d4c7
MT
1741 return 1;
1742 }
1743
f918b443 1744 if (clear_unsync)
1d9dc7e0 1745 kvm_unlink_unsync_page(vcpu->kvm, sp);
1d9dc7e0 1746
a4a8e6f7 1747 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
d98ba053 1748 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
4731d4c7
MT
1749 return 1;
1750 }
1751
1752 kvm_mmu_flush_tlb(vcpu);
4731d4c7
MT
1753 return 0;
1754}
1755
1d9dc7e0
XG
1756static int kvm_sync_page_transient(struct kvm_vcpu *vcpu,
1757 struct kvm_mmu_page *sp)
1758{
d98ba053 1759 LIST_HEAD(invalid_list);
1d9dc7e0
XG
1760 int ret;
1761
d98ba053 1762 ret = __kvm_sync_page(vcpu, sp, &invalid_list, false);
be71e061 1763 if (ret)
d98ba053
XG
1764 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
1765
1d9dc7e0
XG
1766 return ret;
1767}
1768
e37fa785
XG
1769#ifdef CONFIG_KVM_MMU_AUDIT
1770#include "mmu_audit.c"
1771#else
1772static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
1773static void mmu_audit_disable(void) { }
1774#endif
1775
d98ba053
XG
1776static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1777 struct list_head *invalid_list)
1d9dc7e0 1778{
d98ba053 1779 return __kvm_sync_page(vcpu, sp, invalid_list, true);
1d9dc7e0
XG
1780}
1781
9f1a122f
XG
1782/* @gfn should be write-protected at the call site */
1783static void kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
1784{
9f1a122f 1785 struct kvm_mmu_page *s;
d98ba053 1786 LIST_HEAD(invalid_list);
9f1a122f
XG
1787 bool flush = false;
1788
b67bfe0d 1789 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
7ae680eb 1790 if (!s->unsync)
9f1a122f
XG
1791 continue;
1792
1793 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
a4a8e6f7 1794 kvm_unlink_unsync_page(vcpu->kvm, s);
9f1a122f 1795 if ((s->role.cr4_pae != !!is_pae(vcpu)) ||
a4a8e6f7 1796 (vcpu->arch.mmu.sync_page(vcpu, s))) {
d98ba053 1797 kvm_mmu_prepare_zap_page(vcpu->kvm, s, &invalid_list);
9f1a122f
XG
1798 continue;
1799 }
9f1a122f
XG
1800 flush = true;
1801 }
1802
d98ba053 1803 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
9f1a122f
XG
1804 if (flush)
1805 kvm_mmu_flush_tlb(vcpu);
1806}
1807
60c8aec6
MT
1808struct mmu_page_path {
1809 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1810 unsigned int idx[PT64_ROOT_LEVEL-1];
4731d4c7
MT
1811};
1812
60c8aec6
MT
1813#define for_each_sp(pvec, sp, parents, i) \
1814 for (i = mmu_pages_next(&pvec, &parents, -1), \
1815 sp = pvec.page[i].sp; \
1816 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1817 i = mmu_pages_next(&pvec, &parents, i))
1818
cded19f3
HE
1819static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1820 struct mmu_page_path *parents,
1821 int i)
60c8aec6
MT
1822{
1823 int n;
1824
1825 for (n = i+1; n < pvec->nr; n++) {
1826 struct kvm_mmu_page *sp = pvec->page[n].sp;
1827
1828 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1829 parents->idx[0] = pvec->page[n].idx;
1830 return n;
1831 }
1832
1833 parents->parent[sp->role.level-2] = sp;
1834 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1835 }
1836
1837 return n;
1838}
1839
cded19f3 1840static void mmu_pages_clear_parents(struct mmu_page_path *parents)
4731d4c7 1841{
60c8aec6
MT
1842 struct kvm_mmu_page *sp;
1843 unsigned int level = 0;
1844
1845 do {
1846 unsigned int idx = parents->idx[level];
4731d4c7 1847
60c8aec6
MT
1848 sp = parents->parent[level];
1849 if (!sp)
1850 return;
1851
1852 --sp->unsync_children;
1853 WARN_ON((int)sp->unsync_children < 0);
1854 __clear_bit(idx, sp->unsync_child_bitmap);
1855 level++;
1856 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
4731d4c7
MT
1857}
1858
60c8aec6
MT
1859static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1860 struct mmu_page_path *parents,
1861 struct kvm_mmu_pages *pvec)
4731d4c7 1862{
60c8aec6
MT
1863 parents->parent[parent->role.level-1] = NULL;
1864 pvec->nr = 0;
1865}
4731d4c7 1866
60c8aec6
MT
1867static void mmu_sync_children(struct kvm_vcpu *vcpu,
1868 struct kvm_mmu_page *parent)
1869{
1870 int i;
1871 struct kvm_mmu_page *sp;
1872 struct mmu_page_path parents;
1873 struct kvm_mmu_pages pages;
d98ba053 1874 LIST_HEAD(invalid_list);
60c8aec6
MT
1875
1876 kvm_mmu_pages_init(parent, &parents, &pages);
1877 while (mmu_unsync_walk(parent, &pages)) {
2f84569f 1878 bool protected = false;
b1a36821
MT
1879
1880 for_each_sp(pages, sp, parents, i)
1881 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1882
1883 if (protected)
1884 kvm_flush_remote_tlbs(vcpu->kvm);
1885
60c8aec6 1886 for_each_sp(pages, sp, parents, i) {
d98ba053 1887 kvm_sync_page(vcpu, sp, &invalid_list);
60c8aec6
MT
1888 mmu_pages_clear_parents(&parents);
1889 }
d98ba053 1890 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
4731d4c7 1891 cond_resched_lock(&vcpu->kvm->mmu_lock);
60c8aec6
MT
1892 kvm_mmu_pages_init(parent, &parents, &pages);
1893 }
4731d4c7
MT
1894}
1895
c3707958
XG
1896static void init_shadow_page_table(struct kvm_mmu_page *sp)
1897{
1898 int i;
1899
1900 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1901 sp->spt[i] = 0ull;
1902}
1903
a30f47cb
XG
1904static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
1905{
1906 sp->write_flooding_count = 0;
1907}
1908
1909static void clear_sp_write_flooding_count(u64 *spte)
1910{
1911 struct kvm_mmu_page *sp = page_header(__pa(spte));
1912
1913 __clear_sp_write_flooding_count(sp);
1914}
1915
5304b8d3
XG
1916static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
1917{
1918 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
1919}
1920
cea0f0e7
AK
1921static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1922 gfn_t gfn,
1923 gva_t gaddr,
1924 unsigned level,
f6e2c02b 1925 int direct,
41074d07 1926 unsigned access,
f7d9c7b7 1927 u64 *parent_pte)
cea0f0e7
AK
1928{
1929 union kvm_mmu_page_role role;
cea0f0e7 1930 unsigned quadrant;
9f1a122f 1931 struct kvm_mmu_page *sp;
9f1a122f 1932 bool need_sync = false;
cea0f0e7 1933
a770f6f2 1934 role = vcpu->arch.mmu.base_role;
cea0f0e7 1935 role.level = level;
f6e2c02b 1936 role.direct = direct;
84b0c8c6 1937 if (role.direct)
5b7e0102 1938 role.cr4_pae = 0;
41074d07 1939 role.access = access;
c5a78f2b
JR
1940 if (!vcpu->arch.mmu.direct_map
1941 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
cea0f0e7
AK
1942 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1943 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1944 role.quadrant = quadrant;
1945 }
b67bfe0d 1946 for_each_gfn_sp(vcpu->kvm, sp, gfn) {
7f52af74
XG
1947 if (is_obsolete_sp(vcpu->kvm, sp))
1948 continue;
1949
7ae680eb
XG
1950 if (!need_sync && sp->unsync)
1951 need_sync = true;
4731d4c7 1952
7ae680eb
XG
1953 if (sp->role.word != role.word)
1954 continue;
4731d4c7 1955
7ae680eb
XG
1956 if (sp->unsync && kvm_sync_page_transient(vcpu, sp))
1957 break;
e02aa901 1958
7ae680eb
XG
1959 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
1960 if (sp->unsync_children) {
a8eeb04a 1961 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
7ae680eb
XG
1962 kvm_mmu_mark_parents_unsync(sp);
1963 } else if (sp->unsync)
1964 kvm_mmu_mark_parents_unsync(sp);
e02aa901 1965
a30f47cb 1966 __clear_sp_write_flooding_count(sp);
7ae680eb
XG
1967 trace_kvm_mmu_get_page(sp, false);
1968 return sp;
1969 }
dfc5aa00 1970 ++vcpu->kvm->stat.mmu_cache_miss;
2032a93d 1971 sp = kvm_mmu_alloc_page(vcpu, parent_pte, direct);
4db35314
AK
1972 if (!sp)
1973 return sp;
4db35314
AK
1974 sp->gfn = gfn;
1975 sp->role = role;
7ae680eb
XG
1976 hlist_add_head(&sp->hash_link,
1977 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
f6e2c02b 1978 if (!direct) {
b1a36821
MT
1979 if (rmap_write_protect(vcpu->kvm, gfn))
1980 kvm_flush_remote_tlbs(vcpu->kvm);
9f1a122f
XG
1981 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
1982 kvm_sync_pages(vcpu, gfn);
1983
4731d4c7
MT
1984 account_shadowed(vcpu->kvm, gfn);
1985 }
5304b8d3 1986 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
c3707958 1987 init_shadow_page_table(sp);
f691fe1d 1988 trace_kvm_mmu_get_page(sp, true);
4db35314 1989 return sp;
cea0f0e7
AK
1990}
1991
2d11123a
AK
1992static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
1993 struct kvm_vcpu *vcpu, u64 addr)
1994{
1995 iterator->addr = addr;
1996 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
1997 iterator->level = vcpu->arch.mmu.shadow_root_level;
81407ca5
JR
1998
1999 if (iterator->level == PT64_ROOT_LEVEL &&
2000 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2001 !vcpu->arch.mmu.direct_map)
2002 --iterator->level;
2003
2d11123a
AK
2004 if (iterator->level == PT32E_ROOT_LEVEL) {
2005 iterator->shadow_addr
2006 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2007 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2008 --iterator->level;
2009 if (!iterator->shadow_addr)
2010 iterator->level = 0;
2011 }
2012}
2013
2014static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2015{
2016 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2017 return false;
4d88954d 2018
2d11123a
AK
2019 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2020 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2021 return true;
2022}
2023
c2a2ac2b
XG
2024static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2025 u64 spte)
2d11123a 2026{
c2a2ac2b 2027 if (is_last_spte(spte, iterator->level)) {
052331be
XG
2028 iterator->level = 0;
2029 return;
2030 }
2031
c2a2ac2b 2032 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
2d11123a
AK
2033 --iterator->level;
2034}
2035
c2a2ac2b
XG
2036static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2037{
2038 return __shadow_walk_next(iterator, *iterator->sptep);
2039}
2040
7a1638ce 2041static void link_shadow_page(u64 *sptep, struct kvm_mmu_page *sp, bool accessed)
32ef26a3
AK
2042{
2043 u64 spte;
2044
7a1638ce
YZ
2045 BUILD_BUG_ON(VMX_EPT_READABLE_MASK != PT_PRESENT_MASK ||
2046 VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
2047
24db2734 2048 spte = __pa(sp->spt) | PT_PRESENT_MASK | PT_WRITABLE_MASK |
7a1638ce
YZ
2049 shadow_user_mask | shadow_x_mask;
2050
2051 if (accessed)
2052 spte |= shadow_accessed_mask;
24db2734 2053
1df9f2dc 2054 mmu_spte_set(sptep, spte);
32ef26a3
AK
2055}
2056
a357bd22
AK
2057static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2058 unsigned direct_access)
2059{
2060 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2061 struct kvm_mmu_page *child;
2062
2063 /*
2064 * For the direct sp, if the guest pte's dirty bit
2065 * changed form clean to dirty, it will corrupt the
2066 * sp's access: allow writable in the read-only sp,
2067 * so we should update the spte at this point to get
2068 * a new sp with the correct access.
2069 */
2070 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2071 if (child->role.access == direct_access)
2072 return;
2073
bcdd9a93 2074 drop_parent_pte(child, sptep);
a357bd22
AK
2075 kvm_flush_remote_tlbs(vcpu->kvm);
2076 }
2077}
2078
505aef8f 2079static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
38e3b2b2
XG
2080 u64 *spte)
2081{
2082 u64 pte;
2083 struct kvm_mmu_page *child;
2084
2085 pte = *spte;
2086 if (is_shadow_present_pte(pte)) {
505aef8f 2087 if (is_last_spte(pte, sp->role.level)) {
c3707958 2088 drop_spte(kvm, spte);
505aef8f
XG
2089 if (is_large_pte(pte))
2090 --kvm->stat.lpages;
2091 } else {
38e3b2b2 2092 child = page_header(pte & PT64_BASE_ADDR_MASK);
bcdd9a93 2093 drop_parent_pte(child, spte);
38e3b2b2 2094 }
505aef8f
XG
2095 return true;
2096 }
2097
2098 if (is_mmio_spte(pte))
ce88decf 2099 mmu_spte_clear_no_track(spte);
c3707958 2100
505aef8f 2101 return false;
38e3b2b2
XG
2102}
2103
90cb0529 2104static void kvm_mmu_page_unlink_children(struct kvm *kvm,
4db35314 2105 struct kvm_mmu_page *sp)
a436036b 2106{
697fe2e2 2107 unsigned i;
697fe2e2 2108
38e3b2b2
XG
2109 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2110 mmu_page_zap_pte(kvm, sp, sp->spt + i);
a436036b
AK
2111}
2112
4db35314 2113static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7 2114{
4db35314 2115 mmu_page_remove_parent_pte(sp, parent_pte);
a436036b
AK
2116}
2117
31aa2b44 2118static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
a436036b 2119{
1e3f42f0
TY
2120 u64 *sptep;
2121 struct rmap_iterator iter;
a436036b 2122
1e3f42f0
TY
2123 while ((sptep = rmap_get_first(sp->parent_ptes, &iter)))
2124 drop_parent_pte(sp, sptep);
31aa2b44
AK
2125}
2126
60c8aec6 2127static int mmu_zap_unsync_children(struct kvm *kvm,
7775834a
XG
2128 struct kvm_mmu_page *parent,
2129 struct list_head *invalid_list)
4731d4c7 2130{
60c8aec6
MT
2131 int i, zapped = 0;
2132 struct mmu_page_path parents;
2133 struct kvm_mmu_pages pages;
4731d4c7 2134
60c8aec6 2135 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
4731d4c7 2136 return 0;
60c8aec6
MT
2137
2138 kvm_mmu_pages_init(parent, &parents, &pages);
2139 while (mmu_unsync_walk(parent, &pages)) {
2140 struct kvm_mmu_page *sp;
2141
2142 for_each_sp(pages, sp, parents, i) {
7775834a 2143 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
60c8aec6 2144 mmu_pages_clear_parents(&parents);
77662e00 2145 zapped++;
60c8aec6 2146 }
60c8aec6
MT
2147 kvm_mmu_pages_init(parent, &parents, &pages);
2148 }
2149
2150 return zapped;
4731d4c7
MT
2151}
2152
7775834a
XG
2153static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2154 struct list_head *invalid_list)
31aa2b44 2155{
4731d4c7 2156 int ret;
f691fe1d 2157
7775834a 2158 trace_kvm_mmu_prepare_zap_page(sp);
31aa2b44 2159 ++kvm->stat.mmu_shadow_zapped;
7775834a 2160 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
4db35314 2161 kvm_mmu_page_unlink_children(kvm, sp);
31aa2b44 2162 kvm_mmu_unlink_parents(kvm, sp);
5304b8d3 2163
f6e2c02b 2164 if (!sp->role.invalid && !sp->role.direct)
5b5c6a5a 2165 unaccount_shadowed(kvm, sp->gfn);
5304b8d3 2166
4731d4c7
MT
2167 if (sp->unsync)
2168 kvm_unlink_unsync_page(kvm, sp);
4db35314 2169 if (!sp->root_count) {
54a4f023
GJ
2170 /* Count self */
2171 ret++;
7775834a 2172 list_move(&sp->link, invalid_list);
aa6bd187 2173 kvm_mod_used_mmu_pages(kvm, -1);
2e53d63a 2174 } else {
5b5c6a5a 2175 list_move(&sp->link, &kvm->arch.active_mmu_pages);
05988d72
GN
2176
2177 /*
2178 * The obsolete pages can not be used on any vcpus.
2179 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2180 */
2181 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2182 kvm_reload_remote_mmus(kvm);
2e53d63a 2183 }
7775834a
XG
2184
2185 sp->role.invalid = 1;
4731d4c7 2186 return ret;
a436036b
AK
2187}
2188
7775834a
XG
2189static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2190 struct list_head *invalid_list)
2191{
945315b9 2192 struct kvm_mmu_page *sp, *nsp;
7775834a
XG
2193
2194 if (list_empty(invalid_list))
2195 return;
2196
c142786c
AK
2197 /*
2198 * wmb: make sure everyone sees our modifications to the page tables
2199 * rmb: make sure we see changes to vcpu->mode
2200 */
2201 smp_mb();
4f022648 2202
c142786c
AK
2203 /*
2204 * Wait for all vcpus to exit guest mode and/or lockless shadow
2205 * page table walks.
2206 */
2207 kvm_flush_remote_tlbs(kvm);
c2a2ac2b 2208
945315b9 2209 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
7775834a 2210 WARN_ON(!sp->role.invalid || sp->root_count);
aa6bd187 2211 kvm_mmu_free_page(sp);
945315b9 2212 }
7775834a
XG
2213}
2214
5da59607
TY
2215static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2216 struct list_head *invalid_list)
2217{
2218 struct kvm_mmu_page *sp;
2219
2220 if (list_empty(&kvm->arch.active_mmu_pages))
2221 return false;
2222
2223 sp = list_entry(kvm->arch.active_mmu_pages.prev,
2224 struct kvm_mmu_page, link);
2225 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2226
2227 return true;
2228}
2229
82ce2c96
IE
2230/*
2231 * Changing the number of mmu pages allocated to the vm
49d5ca26 2232 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
82ce2c96 2233 */
49d5ca26 2234void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
82ce2c96 2235{
d98ba053 2236 LIST_HEAD(invalid_list);
82ce2c96 2237
b34cb590
TY
2238 spin_lock(&kvm->mmu_lock);
2239
49d5ca26 2240 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
5da59607
TY
2241 /* Need to free some mmu pages to achieve the goal. */
2242 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2243 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2244 break;
82ce2c96 2245
aa6bd187 2246 kvm_mmu_commit_zap_page(kvm, &invalid_list);
49d5ca26 2247 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
82ce2c96 2248 }
82ce2c96 2249
49d5ca26 2250 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
b34cb590
TY
2251
2252 spin_unlock(&kvm->mmu_lock);
82ce2c96
IE
2253}
2254
1cb3f3ae 2255int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
a436036b 2256{
4db35314 2257 struct kvm_mmu_page *sp;
d98ba053 2258 LIST_HEAD(invalid_list);
a436036b
AK
2259 int r;
2260
9ad17b10 2261 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
a436036b 2262 r = 0;
1cb3f3ae 2263 spin_lock(&kvm->mmu_lock);
b67bfe0d 2264 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
9ad17b10 2265 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
7ae680eb
XG
2266 sp->role.word);
2267 r = 1;
f41d335a 2268 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
7ae680eb 2269 }
d98ba053 2270 kvm_mmu_commit_zap_page(kvm, &invalid_list);
1cb3f3ae
XG
2271 spin_unlock(&kvm->mmu_lock);
2272
a436036b 2273 return r;
cea0f0e7 2274}
1cb3f3ae 2275EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
cea0f0e7 2276
74be52e3
SY
2277/*
2278 * The function is based on mtrr_type_lookup() in
2279 * arch/x86/kernel/cpu/mtrr/generic.c
2280 */
2281static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
2282 u64 start, u64 end)
2283{
2284 int i;
2285 u64 base, mask;
2286 u8 prev_match, curr_match;
2287 int num_var_ranges = KVM_NR_VAR_MTRR;
2288
2289 if (!mtrr_state->enabled)
2290 return 0xFF;
2291
2292 /* Make end inclusive end, instead of exclusive */
2293 end--;
2294
2295 /* Look in fixed ranges. Just return the type as per start */
2296 if (mtrr_state->have_fixed && (start < 0x100000)) {
2297 int idx;
2298
2299 if (start < 0x80000) {
2300 idx = 0;
2301 idx += (start >> 16);
2302 return mtrr_state->fixed_ranges[idx];
2303 } else if (start < 0xC0000) {
2304 idx = 1 * 8;
2305 idx += ((start - 0x80000) >> 14);
2306 return mtrr_state->fixed_ranges[idx];
2307 } else if (start < 0x1000000) {
2308 idx = 3 * 8;
2309 idx += ((start - 0xC0000) >> 12);
2310 return mtrr_state->fixed_ranges[idx];
2311 }
2312 }
2313
2314 /*
2315 * Look in variable ranges
2316 * Look of multiple ranges matching this address and pick type
2317 * as per MTRR precedence
2318 */
2319 if (!(mtrr_state->enabled & 2))
2320 return mtrr_state->def_type;
2321
2322 prev_match = 0xFF;
2323 for (i = 0; i < num_var_ranges; ++i) {
2324 unsigned short start_state, end_state;
2325
2326 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
2327 continue;
2328
2329 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
2330 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
2331 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
2332 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
2333
2334 start_state = ((start & mask) == (base & mask));
2335 end_state = ((end & mask) == (base & mask));
2336 if (start_state != end_state)
2337 return 0xFE;
2338
2339 if ((start & mask) != (base & mask))
2340 continue;
2341
2342 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
2343 if (prev_match == 0xFF) {
2344 prev_match = curr_match;
2345 continue;
2346 }
2347
2348 if (prev_match == MTRR_TYPE_UNCACHABLE ||
2349 curr_match == MTRR_TYPE_UNCACHABLE)
2350 return MTRR_TYPE_UNCACHABLE;
2351
2352 if ((prev_match == MTRR_TYPE_WRBACK &&
2353 curr_match == MTRR_TYPE_WRTHROUGH) ||
2354 (prev_match == MTRR_TYPE_WRTHROUGH &&
2355 curr_match == MTRR_TYPE_WRBACK)) {
2356 prev_match = MTRR_TYPE_WRTHROUGH;
2357 curr_match = MTRR_TYPE_WRTHROUGH;
2358 }
2359
2360 if (prev_match != curr_match)
2361 return MTRR_TYPE_UNCACHABLE;
2362 }
2363
2364 if (prev_match != 0xFF)
2365 return prev_match;
2366
2367 return mtrr_state->def_type;
2368}
2369
4b12f0de 2370u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
74be52e3
SY
2371{
2372 u8 mtrr;
2373
2374 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
2375 (gfn << PAGE_SHIFT) + PAGE_SIZE);
2376 if (mtrr == 0xfe || mtrr == 0xff)
2377 mtrr = MTRR_TYPE_WRBACK;
2378 return mtrr;
2379}
4b12f0de 2380EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
74be52e3 2381
9cf5cf5a
XG
2382static void __kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
2383{
2384 trace_kvm_mmu_unsync_page(sp);
2385 ++vcpu->kvm->stat.mmu_unsync;
2386 sp->unsync = 1;
2387
2388 kvm_mmu_mark_parents_unsync(sp);
9cf5cf5a
XG
2389}
2390
2391static void kvm_unsync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
4731d4c7 2392{
4731d4c7 2393 struct kvm_mmu_page *s;
9cf5cf5a 2394
b67bfe0d 2395 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
7ae680eb 2396 if (s->unsync)
4731d4c7 2397 continue;
9cf5cf5a
XG
2398 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
2399 __kvm_unsync_page(vcpu, s);
4731d4c7 2400 }
4731d4c7
MT
2401}
2402
2403static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2404 bool can_unsync)
2405{
9cf5cf5a 2406 struct kvm_mmu_page *s;
9cf5cf5a
XG
2407 bool need_unsync = false;
2408
b67bfe0d 2409 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
36a2e677
XG
2410 if (!can_unsync)
2411 return 1;
2412
9cf5cf5a 2413 if (s->role.level != PT_PAGE_TABLE_LEVEL)
4731d4c7 2414 return 1;
9cf5cf5a 2415
9bb4f6b1 2416 if (!s->unsync)
9cf5cf5a 2417 need_unsync = true;
4731d4c7 2418 }
9cf5cf5a
XG
2419 if (need_unsync)
2420 kvm_unsync_pages(vcpu, gfn);
4731d4c7
MT
2421 return 0;
2422}
2423
d555c333 2424static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
c2288505 2425 unsigned pte_access, int level,
c2d0ee46 2426 gfn_t gfn, pfn_t pfn, bool speculative,
9bdbba13 2427 bool can_unsync, bool host_writable)
1c4f1fd6 2428{
6e7d0354 2429 u64 spte;
1e73f9dd 2430 int ret = 0;
64d4d521 2431
f2fd125d 2432 if (set_mmio_spte(vcpu->kvm, sptep, gfn, pfn, pte_access))
ce88decf
XG
2433 return 0;
2434
982c2565 2435 spte = PT_PRESENT_MASK;
947da538 2436 if (!speculative)
3201b5d9 2437 spte |= shadow_accessed_mask;
640d9b0d 2438
7b52345e
SY
2439 if (pte_access & ACC_EXEC_MASK)
2440 spte |= shadow_x_mask;
2441 else
2442 spte |= shadow_nx_mask;
49fde340 2443
1c4f1fd6 2444 if (pte_access & ACC_USER_MASK)
7b52345e 2445 spte |= shadow_user_mask;
49fde340 2446
852e3c19 2447 if (level > PT_PAGE_TABLE_LEVEL)
05da4558 2448 spte |= PT_PAGE_SIZE_MASK;
b0bc3ee2 2449 if (tdp_enabled)
4b12f0de
SY
2450 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
2451 kvm_is_mmio_pfn(pfn));
1c4f1fd6 2452
9bdbba13 2453 if (host_writable)
1403283a 2454 spte |= SPTE_HOST_WRITEABLE;
f8e453b0
XG
2455 else
2456 pte_access &= ~ACC_WRITE_MASK;
1403283a 2457
35149e21 2458 spte |= (u64)pfn << PAGE_SHIFT;
1c4f1fd6 2459
c2288505 2460 if (pte_access & ACC_WRITE_MASK) {
1c4f1fd6 2461
c2193463 2462 /*
7751babd
XG
2463 * Other vcpu creates new sp in the window between
2464 * mapping_level() and acquiring mmu-lock. We can
2465 * allow guest to retry the access, the mapping can
2466 * be fixed if guest refault.
c2193463 2467 */
852e3c19 2468 if (level > PT_PAGE_TABLE_LEVEL &&
c2193463 2469 has_wrprotected_page(vcpu->kvm, gfn, level))
be38d276 2470 goto done;
38187c83 2471
49fde340 2472 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
1c4f1fd6 2473
ecc5589f
MT
2474 /*
2475 * Optimization: for pte sync, if spte was writable the hash
2476 * lookup is unnecessary (and expensive). Write protection
2477 * is responsibility of mmu_get_page / kvm_sync_page.
2478 * Same reasoning can be applied to dirty page accounting.
2479 */
8dae4445 2480 if (!can_unsync && is_writable_pte(*sptep))
ecc5589f
MT
2481 goto set_pte;
2482
4731d4c7 2483 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
9ad17b10 2484 pgprintk("%s: found shadow page for %llx, marking ro\n",
b8688d51 2485 __func__, gfn);
1e73f9dd 2486 ret = 1;
1c4f1fd6 2487 pte_access &= ~ACC_WRITE_MASK;
49fde340 2488 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
1c4f1fd6
AK
2489 }
2490 }
2491
1c4f1fd6
AK
2492 if (pte_access & ACC_WRITE_MASK)
2493 mark_page_dirty(vcpu->kvm, gfn);
2494
38187c83 2495set_pte:
6e7d0354 2496 if (mmu_spte_update(sptep, spte))
b330aa0c 2497 kvm_flush_remote_tlbs(vcpu->kvm);
be38d276 2498done:
1e73f9dd
MT
2499 return ret;
2500}
2501
d555c333 2502static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
f7616203
XG
2503 unsigned pte_access, int write_fault, int *emulate,
2504 int level, gfn_t gfn, pfn_t pfn, bool speculative,
2505 bool host_writable)
1e73f9dd
MT
2506{
2507 int was_rmapped = 0;
53a27b39 2508 int rmap_count;
1e73f9dd 2509
f7616203
XG
2510 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2511 *sptep, write_fault, gfn);
1e73f9dd 2512
d555c333 2513 if (is_rmap_spte(*sptep)) {
1e73f9dd
MT
2514 /*
2515 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2516 * the parent of the now unreachable PTE.
2517 */
852e3c19
JR
2518 if (level > PT_PAGE_TABLE_LEVEL &&
2519 !is_large_pte(*sptep)) {
1e73f9dd 2520 struct kvm_mmu_page *child;
d555c333 2521 u64 pte = *sptep;
1e73f9dd
MT
2522
2523 child = page_header(pte & PT64_BASE_ADDR_MASK);
bcdd9a93 2524 drop_parent_pte(child, sptep);
3be2264b 2525 kvm_flush_remote_tlbs(vcpu->kvm);
d555c333 2526 } else if (pfn != spte_to_pfn(*sptep)) {
9ad17b10 2527 pgprintk("hfn old %llx new %llx\n",
d555c333 2528 spte_to_pfn(*sptep), pfn);
c3707958 2529 drop_spte(vcpu->kvm, sptep);
91546356 2530 kvm_flush_remote_tlbs(vcpu->kvm);
6bed6b9e
JR
2531 } else
2532 was_rmapped = 1;
1e73f9dd 2533 }
852e3c19 2534
c2288505
XG
2535 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2536 true, host_writable)) {
1e73f9dd 2537 if (write_fault)
b90a0e6c 2538 *emulate = 1;
5304efde 2539 kvm_mmu_flush_tlb(vcpu);
a378b4e6 2540 }
1e73f9dd 2541
ce88decf
XG
2542 if (unlikely(is_mmio_spte(*sptep) && emulate))
2543 *emulate = 1;
2544
d555c333 2545 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
9ad17b10 2546 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
d555c333 2547 is_large_pte(*sptep)? "2MB" : "4kB",
a205bc19
JR
2548 *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
2549 *sptep, sptep);
d555c333 2550 if (!was_rmapped && is_large_pte(*sptep))
05da4558
MT
2551 ++vcpu->kvm->stat.lpages;
2552
ffb61bb3 2553 if (is_shadow_present_pte(*sptep)) {
ffb61bb3
XG
2554 if (!was_rmapped) {
2555 rmap_count = rmap_add(vcpu, sptep, gfn);
2556 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2557 rmap_recycle(vcpu, sptep, gfn);
2558 }
1c4f1fd6 2559 }
cb9aaa30 2560
f3ac1a4b 2561 kvm_release_pfn_clean(pfn);
1c4f1fd6
AK
2562}
2563
957ed9ef
XG
2564static pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
2565 bool no_dirty_log)
2566{
2567 struct kvm_memory_slot *slot;
957ed9ef 2568
5d163b1c 2569 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
903816fa 2570 if (!slot)
6c8ee57b 2571 return KVM_PFN_ERR_FAULT;
957ed9ef 2572
037d92dc 2573 return gfn_to_pfn_memslot_atomic(slot, gfn);
957ed9ef
XG
2574}
2575
2576static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2577 struct kvm_mmu_page *sp,
2578 u64 *start, u64 *end)
2579{
2580 struct page *pages[PTE_PREFETCH_NUM];
2581 unsigned access = sp->role.access;
2582 int i, ret;
2583 gfn_t gfn;
2584
2585 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
5d163b1c 2586 if (!gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK))
957ed9ef
XG
2587 return -1;
2588
2589 ret = gfn_to_page_many_atomic(vcpu->kvm, gfn, pages, end - start);
2590 if (ret <= 0)
2591 return -1;
2592
2593 for (i = 0; i < ret; i++, gfn++, start++)
f7616203 2594 mmu_set_spte(vcpu, start, access, 0, NULL,
c2288505
XG
2595 sp->role.level, gfn, page_to_pfn(pages[i]),
2596 true, true);
957ed9ef
XG
2597
2598 return 0;
2599}
2600
2601static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2602 struct kvm_mmu_page *sp, u64 *sptep)
2603{
2604 u64 *spte, *start = NULL;
2605 int i;
2606
2607 WARN_ON(!sp->role.direct);
2608
2609 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2610 spte = sp->spt + i;
2611
2612 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
c3707958 2613 if (is_shadow_present_pte(*spte) || spte == sptep) {
957ed9ef
XG
2614 if (!start)
2615 continue;
2616 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2617 break;
2618 start = NULL;
2619 } else if (!start)
2620 start = spte;
2621 }
2622}
2623
2624static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2625{
2626 struct kvm_mmu_page *sp;
2627
2628 /*
2629 * Since it's no accessed bit on EPT, it's no way to
2630 * distinguish between actually accessed translations
2631 * and prefetched, so disable pte prefetch if EPT is
2632 * enabled.
2633 */
2634 if (!shadow_accessed_mask)
2635 return;
2636
2637 sp = page_header(__pa(sptep));
2638 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2639 return;
2640
2641 __direct_pte_prefetch(vcpu, sp, sptep);
2642}
2643
9f652d21 2644static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
2ec4739d
XG
2645 int map_writable, int level, gfn_t gfn, pfn_t pfn,
2646 bool prefault)
140754bc 2647{
9f652d21 2648 struct kvm_shadow_walk_iterator iterator;
140754bc 2649 struct kvm_mmu_page *sp;
b90a0e6c 2650 int emulate = 0;
140754bc 2651 gfn_t pseudo_gfn;
6aa8b732 2652
989c6b34
MT
2653 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2654 return 0;
2655
9f652d21 2656 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
852e3c19 2657 if (iterator.level == level) {
f7616203 2658 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
c2288505
XG
2659 write, &emulate, level, gfn, pfn,
2660 prefault, map_writable);
957ed9ef 2661 direct_pte_prefetch(vcpu, iterator.sptep);
9f652d21
AK
2662 ++vcpu->stat.pf_fixed;
2663 break;
6aa8b732
AK
2664 }
2665
404381c5 2666 drop_large_spte(vcpu, iterator.sptep);
c3707958 2667 if (!is_shadow_present_pte(*iterator.sptep)) {
c9fa0b3b
LJ
2668 u64 base_addr = iterator.addr;
2669
2670 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2671 pseudo_gfn = base_addr >> PAGE_SHIFT;
9f652d21
AK
2672 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
2673 iterator.level - 1,
2674 1, ACC_ALL, iterator.sptep);
140754bc 2675
7a1638ce 2676 link_shadow_page(iterator.sptep, sp, true);
9f652d21
AK
2677 }
2678 }
b90a0e6c 2679 return emulate;
6aa8b732
AK
2680}
2681
77db5cbd 2682static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
bf998156 2683{
77db5cbd
HY
2684 siginfo_t info;
2685
2686 info.si_signo = SIGBUS;
2687 info.si_errno = 0;
2688 info.si_code = BUS_MCEERR_AR;
2689 info.si_addr = (void __user *)address;
2690 info.si_addr_lsb = PAGE_SHIFT;
bf998156 2691
77db5cbd 2692 send_sig_info(SIGBUS, &info, tsk);
bf998156
HY
2693}
2694
d7c55201 2695static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, pfn_t pfn)
bf998156 2696{
4d8b81ab
XG
2697 /*
2698 * Do not cache the mmio info caused by writing the readonly gfn
2699 * into the spte otherwise read access on readonly gfn also can
2700 * caused mmio page fault and treat it as mmio access.
2701 * Return 1 to tell kvm to emulate it.
2702 */
2703 if (pfn == KVM_PFN_ERR_RO_FAULT)
2704 return 1;
2705
e6c1502b 2706 if (pfn == KVM_PFN_ERR_HWPOISON) {
bebb106a 2707 kvm_send_hwpoison_signal(gfn_to_hva(vcpu->kvm, gfn), current);
bf998156 2708 return 0;
d7c55201 2709 }
edba23e5 2710
d7c55201 2711 return -EFAULT;
bf998156
HY
2712}
2713
936a5fe6
AA
2714static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
2715 gfn_t *gfnp, pfn_t *pfnp, int *levelp)
2716{
2717 pfn_t pfn = *pfnp;
2718 gfn_t gfn = *gfnp;
2719 int level = *levelp;
2720
2721 /*
2722 * Check if it's a transparent hugepage. If this would be an
2723 * hugetlbfs page, level wouldn't be set to
2724 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2725 * here.
2726 */
81c52c56 2727 if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn) &&
936a5fe6
AA
2728 level == PT_PAGE_TABLE_LEVEL &&
2729 PageTransCompound(pfn_to_page(pfn)) &&
2730 !has_wrprotected_page(vcpu->kvm, gfn, PT_DIRECTORY_LEVEL)) {
2731 unsigned long mask;
2732 /*
2733 * mmu_notifier_retry was successful and we hold the
2734 * mmu_lock here, so the pmd can't become splitting
2735 * from under us, and in turn
2736 * __split_huge_page_refcount() can't run from under
2737 * us and we can safely transfer the refcount from
2738 * PG_tail to PG_head as we switch the pfn to tail to
2739 * head.
2740 */
2741 *levelp = level = PT_DIRECTORY_LEVEL;
2742 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2743 VM_BUG_ON((gfn & mask) != (pfn & mask));
2744 if (pfn & mask) {
2745 gfn &= ~mask;
2746 *gfnp = gfn;
2747 kvm_release_pfn_clean(pfn);
2748 pfn &= ~mask;
c3586667 2749 kvm_get_pfn(pfn);
936a5fe6
AA
2750 *pfnp = pfn;
2751 }
2752 }
2753}
2754
d7c55201
XG
2755static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
2756 pfn_t pfn, unsigned access, int *ret_val)
2757{
2758 bool ret = true;
2759
2760 /* The pfn is invalid, report the error! */
81c52c56 2761 if (unlikely(is_error_pfn(pfn))) {
d7c55201
XG
2762 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
2763 goto exit;
2764 }
2765
ce88decf 2766 if (unlikely(is_noslot_pfn(pfn)))
d7c55201 2767 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
d7c55201
XG
2768
2769 ret = false;
2770exit:
2771 return ret;
2772}
2773
e5552fd2 2774static bool page_fault_can_be_fast(u32 error_code)
c7ba5b48 2775{
1c118b82
XG
2776 /*
2777 * Do not fix the mmio spte with invalid generation number which
2778 * need to be updated by slow page fault path.
2779 */
2780 if (unlikely(error_code & PFERR_RSVD_MASK))
2781 return false;
2782
c7ba5b48
XG
2783 /*
2784 * #PF can be fast only if the shadow page table is present and it
2785 * is caused by write-protect, that means we just need change the
2786 * W bit of the spte which can be done out of mmu-lock.
2787 */
2788 if (!(error_code & PFERR_PRESENT_MASK) ||
2789 !(error_code & PFERR_WRITE_MASK))
2790 return false;
2791
2792 return true;
2793}
2794
2795static bool
92a476cb
XG
2796fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2797 u64 *sptep, u64 spte)
c7ba5b48 2798{
c7ba5b48
XG
2799 gfn_t gfn;
2800
2801 WARN_ON(!sp->role.direct);
2802
2803 /*
2804 * The gfn of direct spte is stable since it is calculated
2805 * by sp->gfn.
2806 */
2807 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
2808
2809 if (cmpxchg64(sptep, spte, spte | PT_WRITABLE_MASK) == spte)
2810 mark_page_dirty(vcpu->kvm, gfn);
2811
2812 return true;
2813}
2814
2815/*
2816 * Return value:
2817 * - true: let the vcpu to access on the same address again.
2818 * - false: let the real page fault path to fix it.
2819 */
2820static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
2821 u32 error_code)
2822{
2823 struct kvm_shadow_walk_iterator iterator;
92a476cb 2824 struct kvm_mmu_page *sp;
c7ba5b48
XG
2825 bool ret = false;
2826 u64 spte = 0ull;
2827
37f6a4e2
MT
2828 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2829 return false;
2830
e5552fd2 2831 if (!page_fault_can_be_fast(error_code))
c7ba5b48
XG
2832 return false;
2833
2834 walk_shadow_page_lockless_begin(vcpu);
2835 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
2836 if (!is_shadow_present_pte(spte) || iterator.level < level)
2837 break;
2838
2839 /*
2840 * If the mapping has been changed, let the vcpu fault on the
2841 * same address again.
2842 */
2843 if (!is_rmap_spte(spte)) {
2844 ret = true;
2845 goto exit;
2846 }
2847
92a476cb
XG
2848 sp = page_header(__pa(iterator.sptep));
2849 if (!is_last_spte(spte, sp->role.level))
c7ba5b48
XG
2850 goto exit;
2851
2852 /*
2853 * Check if it is a spurious fault caused by TLB lazily flushed.
2854 *
2855 * Need not check the access of upper level table entries since
2856 * they are always ACC_ALL.
2857 */
2858 if (is_writable_pte(spte)) {
2859 ret = true;
2860 goto exit;
2861 }
2862
2863 /*
2864 * Currently, to simplify the code, only the spte write-protected
2865 * by dirty-log can be fast fixed.
2866 */
2867 if (!spte_is_locklessly_modifiable(spte))
2868 goto exit;
2869
c126d94f
XG
2870 /*
2871 * Do not fix write-permission on the large spte since we only dirty
2872 * the first page into the dirty-bitmap in fast_pf_fix_direct_spte()
2873 * that means other pages are missed if its slot is dirty-logged.
2874 *
2875 * Instead, we let the slow page fault path create a normal spte to
2876 * fix the access.
2877 *
2878 * See the comments in kvm_arch_commit_memory_region().
2879 */
2880 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2881 goto exit;
2882
c7ba5b48
XG
2883 /*
2884 * Currently, fast page fault only works for direct mapping since
2885 * the gfn is not stable for indirect shadow page.
2886 * See Documentation/virtual/kvm/locking.txt to get more detail.
2887 */
92a476cb 2888 ret = fast_pf_fix_direct_spte(vcpu, sp, iterator.sptep, spte);
c7ba5b48 2889exit:
a72faf25
XG
2890 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
2891 spte, ret);
c7ba5b48
XG
2892 walk_shadow_page_lockless_end(vcpu);
2893
2894 return ret;
2895}
2896
78b2c54a 2897static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
060c2abe 2898 gva_t gva, pfn_t *pfn, bool write, bool *writable);
450e0b41 2899static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
060c2abe 2900
c7ba5b48
XG
2901static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
2902 gfn_t gfn, bool prefault)
10589a46
MT
2903{
2904 int r;
852e3c19 2905 int level;
936a5fe6 2906 int force_pt_level;
35149e21 2907 pfn_t pfn;
e930bffe 2908 unsigned long mmu_seq;
c7ba5b48 2909 bool map_writable, write = error_code & PFERR_WRITE_MASK;
aaee2c94 2910
936a5fe6
AA
2911 force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
2912 if (likely(!force_pt_level)) {
2913 level = mapping_level(vcpu, gfn);
2914 /*
2915 * This path builds a PAE pagetable - so we can map
2916 * 2mb pages at maximum. Therefore check if the level
2917 * is larger than that.
2918 */
2919 if (level > PT_DIRECTORY_LEVEL)
2920 level = PT_DIRECTORY_LEVEL;
852e3c19 2921
936a5fe6
AA
2922 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
2923 } else
2924 level = PT_PAGE_TABLE_LEVEL;
05da4558 2925
c7ba5b48
XG
2926 if (fast_page_fault(vcpu, v, level, error_code))
2927 return 0;
2928
e930bffe 2929 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 2930 smp_rmb();
060c2abe 2931
78b2c54a 2932 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
060c2abe 2933 return 0;
aaee2c94 2934
d7c55201
XG
2935 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
2936 return r;
d196e343 2937
aaee2c94 2938 spin_lock(&vcpu->kvm->mmu_lock);
8ca40a70 2939 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
e930bffe 2940 goto out_unlock;
450e0b41 2941 make_mmu_pages_available(vcpu);
936a5fe6
AA
2942 if (likely(!force_pt_level))
2943 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
2ec4739d
XG
2944 r = __direct_map(vcpu, v, write, map_writable, level, gfn, pfn,
2945 prefault);
aaee2c94
MT
2946 spin_unlock(&vcpu->kvm->mmu_lock);
2947
aaee2c94 2948
10589a46 2949 return r;
e930bffe
AA
2950
2951out_unlock:
2952 spin_unlock(&vcpu->kvm->mmu_lock);
2953 kvm_release_pfn_clean(pfn);
2954 return 0;
10589a46
MT
2955}
2956
2957
17ac10ad
AK
2958static void mmu_free_roots(struct kvm_vcpu *vcpu)
2959{
2960 int i;
4db35314 2961 struct kvm_mmu_page *sp;
d98ba053 2962 LIST_HEAD(invalid_list);
17ac10ad 2963
ad312c7c 2964 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
7b53aa56 2965 return;
35af577a 2966
81407ca5
JR
2967 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
2968 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
2969 vcpu->arch.mmu.direct_map)) {
ad312c7c 2970 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad 2971
35af577a 2972 spin_lock(&vcpu->kvm->mmu_lock);
4db35314
AK
2973 sp = page_header(root);
2974 --sp->root_count;
d98ba053
XG
2975 if (!sp->root_count && sp->role.invalid) {
2976 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
2977 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
2978 }
aaee2c94 2979 spin_unlock(&vcpu->kvm->mmu_lock);
35af577a 2980 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
2981 return;
2982 }
35af577a
GN
2983
2984 spin_lock(&vcpu->kvm->mmu_lock);
17ac10ad 2985 for (i = 0; i < 4; ++i) {
ad312c7c 2986 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad 2987
417726a3 2988 if (root) {
417726a3 2989 root &= PT64_BASE_ADDR_MASK;
4db35314
AK
2990 sp = page_header(root);
2991 --sp->root_count;
2e53d63a 2992 if (!sp->root_count && sp->role.invalid)
d98ba053
XG
2993 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
2994 &invalid_list);
417726a3 2995 }
ad312c7c 2996 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 2997 }
d98ba053 2998 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
aaee2c94 2999 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 3000 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
3001}
3002
8986ecc0
MT
3003static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3004{
3005 int ret = 0;
3006
3007 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
a8eeb04a 3008 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
8986ecc0
MT
3009 ret = 1;
3010 }
3011
3012 return ret;
3013}
3014
651dd37a
JR
3015static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3016{
3017 struct kvm_mmu_page *sp;
7ebaf15e 3018 unsigned i;
651dd37a
JR
3019
3020 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3021 spin_lock(&vcpu->kvm->mmu_lock);
450e0b41 3022 make_mmu_pages_available(vcpu);
651dd37a
JR
3023 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL,
3024 1, ACC_ALL, NULL);
3025 ++sp->root_count;
3026 spin_unlock(&vcpu->kvm->mmu_lock);
3027 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3028 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3029 for (i = 0; i < 4; ++i) {
3030 hpa_t root = vcpu->arch.mmu.pae_root[i];
3031
3032 ASSERT(!VALID_PAGE(root));
3033 spin_lock(&vcpu->kvm->mmu_lock);
450e0b41 3034 make_mmu_pages_available(vcpu);
649497d1
AK
3035 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
3036 i << 30,
651dd37a
JR
3037 PT32_ROOT_LEVEL, 1, ACC_ALL,
3038 NULL);
3039 root = __pa(sp->spt);
3040 ++sp->root_count;
3041 spin_unlock(&vcpu->kvm->mmu_lock);
3042 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
651dd37a 3043 }
6292757f 3044 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
651dd37a
JR
3045 } else
3046 BUG();
3047
3048 return 0;
3049}
3050
3051static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
17ac10ad 3052{
4db35314 3053 struct kvm_mmu_page *sp;
81407ca5
JR
3054 u64 pdptr, pm_mask;
3055 gfn_t root_gfn;
3056 int i;
3bb65a22 3057
5777ed34 3058 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
17ac10ad 3059
651dd37a
JR
3060 if (mmu_check_root(vcpu, root_gfn))
3061 return 1;
3062
3063 /*
3064 * Do we shadow a long mode page table? If so we need to
3065 * write-protect the guests page table root.
3066 */
3067 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
ad312c7c 3068 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad
AK
3069
3070 ASSERT(!VALID_PAGE(root));
651dd37a 3071
8facbbff 3072 spin_lock(&vcpu->kvm->mmu_lock);
450e0b41 3073 make_mmu_pages_available(vcpu);
651dd37a
JR
3074 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
3075 0, ACC_ALL, NULL);
4db35314
AK
3076 root = __pa(sp->spt);
3077 ++sp->root_count;
8facbbff 3078 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 3079 vcpu->arch.mmu.root_hpa = root;
8986ecc0 3080 return 0;
17ac10ad 3081 }
f87f9288 3082
651dd37a
JR
3083 /*
3084 * We shadow a 32 bit page table. This may be a legacy 2-level
81407ca5
JR
3085 * or a PAE 3-level page table. In either case we need to be aware that
3086 * the shadow page table may be a PAE or a long mode page table.
651dd37a 3087 */
81407ca5
JR
3088 pm_mask = PT_PRESENT_MASK;
3089 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3090 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3091
17ac10ad 3092 for (i = 0; i < 4; ++i) {
ad312c7c 3093 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad
AK
3094
3095 ASSERT(!VALID_PAGE(root));
ad312c7c 3096 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
e4e517b4 3097 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
43a3795a 3098 if (!is_present_gpte(pdptr)) {
ad312c7c 3099 vcpu->arch.mmu.pae_root[i] = 0;
417726a3
AK
3100 continue;
3101 }
6de4f3ad 3102 root_gfn = pdptr >> PAGE_SHIFT;
f87f9288
JR
3103 if (mmu_check_root(vcpu, root_gfn))
3104 return 1;
5a7388c2 3105 }
8facbbff 3106 spin_lock(&vcpu->kvm->mmu_lock);
450e0b41 3107 make_mmu_pages_available(vcpu);
4db35314 3108 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
651dd37a 3109 PT32_ROOT_LEVEL, 0,
f7d9c7b7 3110 ACC_ALL, NULL);
4db35314
AK
3111 root = __pa(sp->spt);
3112 ++sp->root_count;
8facbbff
AK
3113 spin_unlock(&vcpu->kvm->mmu_lock);
3114
81407ca5 3115 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
17ac10ad 3116 }
6292757f 3117 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
81407ca5
JR
3118
3119 /*
3120 * If we shadow a 32 bit page table with a long mode page
3121 * table we enter this path.
3122 */
3123 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3124 if (vcpu->arch.mmu.lm_root == NULL) {
3125 /*
3126 * The additional page necessary for this is only
3127 * allocated on demand.
3128 */
3129
3130 u64 *lm_root;
3131
3132 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3133 if (lm_root == NULL)
3134 return 1;
3135
3136 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3137
3138 vcpu->arch.mmu.lm_root = lm_root;
3139 }
3140
3141 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3142 }
3143
8986ecc0 3144 return 0;
17ac10ad
AK
3145}
3146
651dd37a
JR
3147static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3148{
3149 if (vcpu->arch.mmu.direct_map)
3150 return mmu_alloc_direct_roots(vcpu);
3151 else
3152 return mmu_alloc_shadow_roots(vcpu);
3153}
3154
0ba73cda
MT
3155static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3156{
3157 int i;
3158 struct kvm_mmu_page *sp;
3159
81407ca5
JR
3160 if (vcpu->arch.mmu.direct_map)
3161 return;
3162
0ba73cda
MT
3163 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3164 return;
6903074c 3165
bebb106a 3166 vcpu_clear_mmio_info(vcpu, ~0ul);
0375f7fa 3167 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
81407ca5 3168 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
0ba73cda
MT
3169 hpa_t root = vcpu->arch.mmu.root_hpa;
3170 sp = page_header(root);
3171 mmu_sync_children(vcpu, sp);
0375f7fa 3172 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
0ba73cda
MT
3173 return;
3174 }
3175 for (i = 0; i < 4; ++i) {
3176 hpa_t root = vcpu->arch.mmu.pae_root[i];
3177
8986ecc0 3178 if (root && VALID_PAGE(root)) {
0ba73cda
MT
3179 root &= PT64_BASE_ADDR_MASK;
3180 sp = page_header(root);
3181 mmu_sync_children(vcpu, sp);
3182 }
3183 }
0375f7fa 3184 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
0ba73cda
MT
3185}
3186
3187void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3188{
3189 spin_lock(&vcpu->kvm->mmu_lock);
3190 mmu_sync_roots(vcpu);
6cffe8ca 3191 spin_unlock(&vcpu->kvm->mmu_lock);
0ba73cda 3192}
bfd0a56b 3193EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
0ba73cda 3194
1871c602 3195static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
ab9ae313 3196 u32 access, struct x86_exception *exception)
6aa8b732 3197{
ab9ae313
AK
3198 if (exception)
3199 exception->error_code = 0;
6aa8b732
AK
3200 return vaddr;
3201}
3202
6539e738 3203static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
ab9ae313
AK
3204 u32 access,
3205 struct x86_exception *exception)
6539e738 3206{
ab9ae313
AK
3207 if (exception)
3208 exception->error_code = 0;
6539e738
JR
3209 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
3210}
3211
ce88decf
XG
3212static bool quickly_check_mmio_pf(struct kvm_vcpu *vcpu, u64 addr, bool direct)
3213{
3214 if (direct)
3215 return vcpu_match_mmio_gpa(vcpu, addr);
3216
3217 return vcpu_match_mmio_gva(vcpu, addr);
3218}
3219
3220
3221/*
3222 * On direct hosts, the last spte is only allows two states
3223 * for mmio page fault:
3224 * - It is the mmio spte
3225 * - It is zapped or it is being zapped.
3226 *
3227 * This function completely checks the spte when the last spte
3228 * is not the mmio spte.
3229 */
3230static bool check_direct_spte_mmio_pf(u64 spte)
3231{
3232 return __check_direct_spte_mmio_pf(spte);
3233}
3234
3235static u64 walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr)
3236{
3237 struct kvm_shadow_walk_iterator iterator;
3238 u64 spte = 0ull;
3239
37f6a4e2
MT
3240 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3241 return spte;
3242
ce88decf
XG
3243 walk_shadow_page_lockless_begin(vcpu);
3244 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte)
3245 if (!is_shadow_present_pte(spte))
3246 break;
3247 walk_shadow_page_lockless_end(vcpu);
3248
3249 return spte;
3250}
3251
ce88decf
XG
3252int handle_mmio_page_fault_common(struct kvm_vcpu *vcpu, u64 addr, bool direct)
3253{
3254 u64 spte;
3255
3256 if (quickly_check_mmio_pf(vcpu, addr, direct))
b37fbea6 3257 return RET_MMIO_PF_EMULATE;
ce88decf
XG
3258
3259 spte = walk_shadow_page_get_mmio_spte(vcpu, addr);
3260
3261 if (is_mmio_spte(spte)) {
3262 gfn_t gfn = get_mmio_spte_gfn(spte);
3263 unsigned access = get_mmio_spte_access(spte);
3264
f8f55942
XG
3265 if (!check_mmio_spte(vcpu->kvm, spte))
3266 return RET_MMIO_PF_INVALID;
3267
ce88decf
XG
3268 if (direct)
3269 addr = 0;
4f022648
XG
3270
3271 trace_handle_mmio_page_fault(addr, gfn, access);
ce88decf 3272 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
b37fbea6 3273 return RET_MMIO_PF_EMULATE;
ce88decf
XG
3274 }
3275
3276 /*
3277 * It's ok if the gva is remapped by other cpus on shadow guest,
3278 * it's a BUG if the gfn is not a mmio page.
3279 */
3280 if (direct && !check_direct_spte_mmio_pf(spte))
b37fbea6 3281 return RET_MMIO_PF_BUG;
ce88decf
XG
3282
3283 /*
3284 * If the page table is zapped by other cpus, let CPU fault again on
3285 * the address.
3286 */
b37fbea6 3287 return RET_MMIO_PF_RETRY;
ce88decf
XG
3288}
3289EXPORT_SYMBOL_GPL(handle_mmio_page_fault_common);
3290
3291static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr,
3292 u32 error_code, bool direct)
3293{
3294 int ret;
3295
3296 ret = handle_mmio_page_fault_common(vcpu, addr, direct);
b37fbea6 3297 WARN_ON(ret == RET_MMIO_PF_BUG);
ce88decf
XG
3298 return ret;
3299}
3300
6aa8b732 3301static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
78b2c54a 3302 u32 error_code, bool prefault)
6aa8b732 3303{
e833240f 3304 gfn_t gfn;
e2dec939 3305 int r;
6aa8b732 3306
b8688d51 3307 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
ce88decf 3308
f8f55942
XG
3309 if (unlikely(error_code & PFERR_RSVD_MASK)) {
3310 r = handle_mmio_page_fault(vcpu, gva, error_code, true);
3311
3312 if (likely(r != RET_MMIO_PF_INVALID))
3313 return r;
3314 }
ce88decf 3315
e2dec939
AK
3316 r = mmu_topup_memory_caches(vcpu);
3317 if (r)
3318 return r;
714b93da 3319
6aa8b732 3320 ASSERT(vcpu);
ad312c7c 3321 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 3322
e833240f 3323 gfn = gva >> PAGE_SHIFT;
6aa8b732 3324
e833240f 3325 return nonpaging_map(vcpu, gva & PAGE_MASK,
c7ba5b48 3326 error_code, gfn, prefault);
6aa8b732
AK
3327}
3328
7e1fbeac 3329static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
af585b92
GN
3330{
3331 struct kvm_arch_async_pf arch;
fb67e14f 3332
7c90705b 3333 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
af585b92 3334 arch.gfn = gfn;
c4806acd 3335 arch.direct_map = vcpu->arch.mmu.direct_map;
fb67e14f 3336 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
af585b92 3337
e0ead41a 3338 return kvm_setup_async_pf(vcpu, gva, gfn_to_hva(vcpu->kvm, gfn), &arch);
af585b92
GN
3339}
3340
3341static bool can_do_async_pf(struct kvm_vcpu *vcpu)
3342{
3343 if (unlikely(!irqchip_in_kernel(vcpu->kvm) ||
3344 kvm_event_needs_reinjection(vcpu)))
3345 return false;
3346
3347 return kvm_x86_ops->interrupt_allowed(vcpu);
3348}
3349
78b2c54a 3350static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
612819c3 3351 gva_t gva, pfn_t *pfn, bool write, bool *writable)
af585b92
GN
3352{
3353 bool async;
3354
612819c3 3355 *pfn = gfn_to_pfn_async(vcpu->kvm, gfn, &async, write, writable);
af585b92
GN
3356
3357 if (!async)
3358 return false; /* *pfn has correct page already */
3359
78b2c54a 3360 if (!prefault && can_do_async_pf(vcpu)) {
c9b263d2 3361 trace_kvm_try_async_get_page(gva, gfn);
af585b92
GN
3362 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3363 trace_kvm_async_pf_doublefault(gva, gfn);
3364 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3365 return true;
3366 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3367 return true;
3368 }
3369
612819c3 3370 *pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write, writable);
af585b92
GN
3371
3372 return false;
3373}
3374
56028d08 3375static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
78b2c54a 3376 bool prefault)
fb72d167 3377{
35149e21 3378 pfn_t pfn;
fb72d167 3379 int r;
852e3c19 3380 int level;
936a5fe6 3381 int force_pt_level;
05da4558 3382 gfn_t gfn = gpa >> PAGE_SHIFT;
e930bffe 3383 unsigned long mmu_seq;
612819c3
MT
3384 int write = error_code & PFERR_WRITE_MASK;
3385 bool map_writable;
fb72d167
JR
3386
3387 ASSERT(vcpu);
3388 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
3389
f8f55942
XG
3390 if (unlikely(error_code & PFERR_RSVD_MASK)) {
3391 r = handle_mmio_page_fault(vcpu, gpa, error_code, true);
3392
3393 if (likely(r != RET_MMIO_PF_INVALID))
3394 return r;
3395 }
ce88decf 3396
fb72d167
JR
3397 r = mmu_topup_memory_caches(vcpu);
3398 if (r)
3399 return r;
3400
936a5fe6
AA
3401 force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
3402 if (likely(!force_pt_level)) {
3403 level = mapping_level(vcpu, gfn);
3404 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
3405 } else
3406 level = PT_PAGE_TABLE_LEVEL;
852e3c19 3407
c7ba5b48
XG
3408 if (fast_page_fault(vcpu, gpa, level, error_code))
3409 return 0;
3410
e930bffe 3411 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 3412 smp_rmb();
af585b92 3413
78b2c54a 3414 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
af585b92
GN
3415 return 0;
3416
d7c55201
XG
3417 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3418 return r;
3419
fb72d167 3420 spin_lock(&vcpu->kvm->mmu_lock);
8ca40a70 3421 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
e930bffe 3422 goto out_unlock;
450e0b41 3423 make_mmu_pages_available(vcpu);
936a5fe6
AA
3424 if (likely(!force_pt_level))
3425 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
612819c3 3426 r = __direct_map(vcpu, gpa, write, map_writable,
2ec4739d 3427 level, gfn, pfn, prefault);
fb72d167 3428 spin_unlock(&vcpu->kvm->mmu_lock);
fb72d167
JR
3429
3430 return r;
e930bffe
AA
3431
3432out_unlock:
3433 spin_unlock(&vcpu->kvm->mmu_lock);
3434 kvm_release_pfn_clean(pfn);
3435 return 0;
fb72d167
JR
3436}
3437
8a3c1a33
PB
3438static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3439 struct kvm_mmu *context)
6aa8b732 3440{
6aa8b732 3441 context->page_fault = nonpaging_page_fault;
6aa8b732 3442 context->gva_to_gpa = nonpaging_gva_to_gpa;
e8bc217a 3443 context->sync_page = nonpaging_sync_page;
a7052897 3444 context->invlpg = nonpaging_invlpg;
0f53b5b1 3445 context->update_pte = nonpaging_update_pte;
cea0f0e7 3446 context->root_level = 0;
6aa8b732 3447 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 3448 context->root_hpa = INVALID_PAGE;
c5a78f2b 3449 context->direct_map = true;
2d48a985 3450 context->nx = false;
6aa8b732
AK
3451}
3452
d835dfec 3453void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
6aa8b732 3454{
1165f5fe 3455 ++vcpu->stat.tlb_flush;
a8eeb04a 3456 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
6aa8b732 3457}
bfd0a56b 3458EXPORT_SYMBOL_GPL(kvm_mmu_flush_tlb);
6aa8b732 3459
d8d173da 3460void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
6aa8b732 3461{
cea0f0e7 3462 mmu_free_roots(vcpu);
6aa8b732
AK
3463}
3464
5777ed34
JR
3465static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3466{
9f8fe504 3467 return kvm_read_cr3(vcpu);
5777ed34
JR
3468}
3469
6389ee94
AK
3470static void inject_page_fault(struct kvm_vcpu *vcpu,
3471 struct x86_exception *fault)
6aa8b732 3472{
6389ee94 3473 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
6aa8b732
AK
3474}
3475
f2fd125d
XG
3476static bool sync_mmio_spte(struct kvm *kvm, u64 *sptep, gfn_t gfn,
3477 unsigned access, int *nr_present)
ce88decf
XG
3478{
3479 if (unlikely(is_mmio_spte(*sptep))) {
3480 if (gfn != get_mmio_spte_gfn(*sptep)) {
3481 mmu_spte_clear_no_track(sptep);
3482 return true;
3483 }
3484
3485 (*nr_present)++;
f2fd125d 3486 mark_mmio_spte(kvm, sptep, gfn, access);
ce88decf
XG
3487 return true;
3488 }
3489
3490 return false;
3491}
3492
6fd01b71
AK
3493static inline bool is_last_gpte(struct kvm_mmu *mmu, unsigned level, unsigned gpte)
3494{
3495 unsigned index;
3496
3497 index = level - 1;
3498 index |= (gpte & PT_PAGE_SIZE_MASK) >> (PT_PAGE_SIZE_SHIFT - 2);
3499 return mmu->last_pte_bitmap & (1 << index);
3500}
3501
37406aaa
NHE
3502#define PTTYPE_EPT 18 /* arbitrary */
3503#define PTTYPE PTTYPE_EPT
3504#include "paging_tmpl.h"
3505#undef PTTYPE
3506
6aa8b732
AK
3507#define PTTYPE 64
3508#include "paging_tmpl.h"
3509#undef PTTYPE
3510
3511#define PTTYPE 32
3512#include "paging_tmpl.h"
3513#undef PTTYPE
3514
52fde8df 3515static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
4d6931c3 3516 struct kvm_mmu *context)
82725b20 3517{
82725b20
DE
3518 int maxphyaddr = cpuid_maxphyaddr(vcpu);
3519 u64 exb_bit_rsvd = 0;
5f7dde7b 3520 u64 gbpages_bit_rsvd = 0;
82725b20 3521
25d92081
YZ
3522 context->bad_mt_xwr = 0;
3523
2d48a985 3524 if (!context->nx)
82725b20 3525 exb_bit_rsvd = rsvd_bits(63, 63);
5f7dde7b
NA
3526 if (!guest_cpuid_has_gbpages(vcpu))
3527 gbpages_bit_rsvd = rsvd_bits(7, 7);
4d6931c3 3528 switch (context->root_level) {
82725b20
DE
3529 case PT32_ROOT_LEVEL:
3530 /* no rsvd bits for 2 level 4K page table entries */
3531 context->rsvd_bits_mask[0][1] = 0;
3532 context->rsvd_bits_mask[0][0] = 0;
f815bce8
XG
3533 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
3534
3535 if (!is_pse(vcpu)) {
3536 context->rsvd_bits_mask[1][1] = 0;
3537 break;
3538 }
3539
82725b20
DE
3540 if (is_cpuid_PSE36())
3541 /* 36bits PSE 4MB page */
3542 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
3543 else
3544 /* 32 bits PSE 4MB page */
3545 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
82725b20
DE
3546 break;
3547 case PT32E_ROOT_LEVEL:
20c466b5
DE
3548 context->rsvd_bits_mask[0][2] =
3549 rsvd_bits(maxphyaddr, 63) |
cd9ae5fe 3550 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
82725b20 3551 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 3552 rsvd_bits(maxphyaddr, 62); /* PDE */
82725b20
DE
3553 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3554 rsvd_bits(maxphyaddr, 62); /* PTE */
3555 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
3556 rsvd_bits(maxphyaddr, 62) |
3557 rsvd_bits(13, 20); /* large page */
f815bce8 3558 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
82725b20
DE
3559 break;
3560 case PT64_ROOT_LEVEL:
3561 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
cd9ae5fe 3562 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 7);
82725b20 3563 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
5f7dde7b 3564 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51);
82725b20 3565 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4c26b4cd 3566 rsvd_bits(maxphyaddr, 51);
82725b20
DE
3567 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3568 rsvd_bits(maxphyaddr, 51);
3569 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
e04da980 3570 context->rsvd_bits_mask[1][2] = exb_bit_rsvd |
5f7dde7b 3571 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
e04da980 3572 rsvd_bits(13, 29);
82725b20 3573 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
4c26b4cd
SY
3574 rsvd_bits(maxphyaddr, 51) |
3575 rsvd_bits(13, 20); /* large page */
f815bce8 3576 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
82725b20
DE
3577 break;
3578 }
3579}
3580
25d92081
YZ
3581static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
3582 struct kvm_mmu *context, bool execonly)
3583{
3584 int maxphyaddr = cpuid_maxphyaddr(vcpu);
3585 int pte;
3586
3587 context->rsvd_bits_mask[0][3] =
3588 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
3589 context->rsvd_bits_mask[0][2] =
3590 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
3591 context->rsvd_bits_mask[0][1] =
3592 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
3593 context->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
3594
3595 /* large page */
3596 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
3597 context->rsvd_bits_mask[1][2] =
3598 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
3599 context->rsvd_bits_mask[1][1] =
3600 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
3601 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
3602
3603 for (pte = 0; pte < 64; pte++) {
3604 int rwx_bits = pte & 7;
3605 int mt = pte >> 3;
3606 if (mt == 0x2 || mt == 0x3 || mt == 0x7 ||
3607 rwx_bits == 0x2 || rwx_bits == 0x6 ||
3608 (rwx_bits == 0x4 && !execonly))
3609 context->bad_mt_xwr |= (1ull << pte);
3610 }
3611}
3612
97ec8c06 3613void update_permission_bitmask(struct kvm_vcpu *vcpu,
25d92081 3614 struct kvm_mmu *mmu, bool ept)
97d64b78
AK
3615{
3616 unsigned bit, byte, pfec;
3617 u8 map;
66386ade 3618 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
97d64b78 3619
66386ade 3620 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
97ec8c06 3621 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
97d64b78
AK
3622 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
3623 pfec = byte << 1;
3624 map = 0;
3625 wf = pfec & PFERR_WRITE_MASK;
3626 uf = pfec & PFERR_USER_MASK;
3627 ff = pfec & PFERR_FETCH_MASK;
97ec8c06
FW
3628 /*
3629 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
3630 * subject to SMAP restrictions, and cleared otherwise. The
3631 * bit is only meaningful if the SMAP bit is set in CR4.
3632 */
3633 smapf = !(pfec & PFERR_RSVD_MASK);
97d64b78
AK
3634 for (bit = 0; bit < 8; ++bit) {
3635 x = bit & ACC_EXEC_MASK;
3636 w = bit & ACC_WRITE_MASK;
3637 u = bit & ACC_USER_MASK;
3638
25d92081
YZ
3639 if (!ept) {
3640 /* Not really needed: !nx will cause pte.nx to fault */
3641 x |= !mmu->nx;
3642 /* Allow supervisor writes if !cr0.wp */
3643 w |= !is_write_protection(vcpu) && !uf;
3644 /* Disallow supervisor fetches of user code if cr4.smep */
66386ade 3645 x &= !(cr4_smep && u && !uf);
97ec8c06
FW
3646
3647 /*
3648 * SMAP:kernel-mode data accesses from user-mode
3649 * mappings should fault. A fault is considered
3650 * as a SMAP violation if all of the following
3651 * conditions are ture:
3652 * - X86_CR4_SMAP is set in CR4
3653 * - An user page is accessed
3654 * - Page fault in kernel mode
3655 * - if CPL = 3 or X86_EFLAGS_AC is clear
3656 *
3657 * Here, we cover the first three conditions.
3658 * The fourth is computed dynamically in
3659 * permission_fault() and is in smapf.
3660 *
3661 * Also, SMAP does not affect instruction
3662 * fetches, add the !ff check here to make it
3663 * clearer.
3664 */
3665 smap = cr4_smap && u && !uf && !ff;
25d92081
YZ
3666 } else
3667 /* Not really needed: no U/S accesses on ept */
3668 u = 1;
97d64b78 3669
97ec8c06
FW
3670 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
3671 (smapf && smap);
97d64b78
AK
3672 map |= fault << bit;
3673 }
3674 mmu->permissions[byte] = map;
3675 }
3676}
3677
6fd01b71
AK
3678static void update_last_pte_bitmap(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
3679{
3680 u8 map;
3681 unsigned level, root_level = mmu->root_level;
3682 const unsigned ps_set_index = 1 << 2; /* bit 2 of index: ps */
3683
3684 if (root_level == PT32E_ROOT_LEVEL)
3685 --root_level;
3686 /* PT_PAGE_TABLE_LEVEL always terminates */
3687 map = 1 | (1 << ps_set_index);
3688 for (level = PT_DIRECTORY_LEVEL; level <= root_level; ++level) {
3689 if (level <= PT_PDPE_LEVEL
3690 && (mmu->root_level >= PT32E_ROOT_LEVEL || is_pse(vcpu)))
3691 map |= 1 << (ps_set_index | (level - 1));
3692 }
3693 mmu->last_pte_bitmap = map;
3694}
3695
8a3c1a33
PB
3696static void paging64_init_context_common(struct kvm_vcpu *vcpu,
3697 struct kvm_mmu *context,
3698 int level)
6aa8b732 3699{
2d48a985 3700 context->nx = is_nx(vcpu);
4d6931c3 3701 context->root_level = level;
2d48a985 3702
4d6931c3 3703 reset_rsvds_bits_mask(vcpu, context);
25d92081 3704 update_permission_bitmask(vcpu, context, false);
6fd01b71 3705 update_last_pte_bitmap(vcpu, context);
6aa8b732
AK
3706
3707 ASSERT(is_pae(vcpu));
6aa8b732 3708 context->page_fault = paging64_page_fault;
6aa8b732 3709 context->gva_to_gpa = paging64_gva_to_gpa;
e8bc217a 3710 context->sync_page = paging64_sync_page;
a7052897 3711 context->invlpg = paging64_invlpg;
0f53b5b1 3712 context->update_pte = paging64_update_pte;
17ac10ad 3713 context->shadow_root_level = level;
17c3ba9d 3714 context->root_hpa = INVALID_PAGE;
c5a78f2b 3715 context->direct_map = false;
6aa8b732
AK
3716}
3717
8a3c1a33
PB
3718static void paging64_init_context(struct kvm_vcpu *vcpu,
3719 struct kvm_mmu *context)
17ac10ad 3720{
8a3c1a33 3721 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
17ac10ad
AK
3722}
3723
8a3c1a33
PB
3724static void paging32_init_context(struct kvm_vcpu *vcpu,
3725 struct kvm_mmu *context)
6aa8b732 3726{
2d48a985 3727 context->nx = false;
4d6931c3 3728 context->root_level = PT32_ROOT_LEVEL;
2d48a985 3729
4d6931c3 3730 reset_rsvds_bits_mask(vcpu, context);
25d92081 3731 update_permission_bitmask(vcpu, context, false);
6fd01b71 3732 update_last_pte_bitmap(vcpu, context);
6aa8b732 3733
6aa8b732 3734 context->page_fault = paging32_page_fault;
6aa8b732 3735 context->gva_to_gpa = paging32_gva_to_gpa;
e8bc217a 3736 context->sync_page = paging32_sync_page;
a7052897 3737 context->invlpg = paging32_invlpg;
0f53b5b1 3738 context->update_pte = paging32_update_pte;
6aa8b732 3739 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 3740 context->root_hpa = INVALID_PAGE;
c5a78f2b 3741 context->direct_map = false;
6aa8b732
AK
3742}
3743
8a3c1a33
PB
3744static void paging32E_init_context(struct kvm_vcpu *vcpu,
3745 struct kvm_mmu *context)
6aa8b732 3746{
8a3c1a33 3747 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
6aa8b732
AK
3748}
3749
8a3c1a33 3750static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
fb72d167 3751{
14dfe855 3752 struct kvm_mmu *context = vcpu->arch.walk_mmu;
fb72d167 3753
c445f8ef 3754 context->base_role.word = 0;
fb72d167 3755 context->page_fault = tdp_page_fault;
e8bc217a 3756 context->sync_page = nonpaging_sync_page;
a7052897 3757 context->invlpg = nonpaging_invlpg;
0f53b5b1 3758 context->update_pte = nonpaging_update_pte;
67253af5 3759 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
fb72d167 3760 context->root_hpa = INVALID_PAGE;
c5a78f2b 3761 context->direct_map = true;
1c97f0a0 3762 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
5777ed34 3763 context->get_cr3 = get_cr3;
e4e517b4 3764 context->get_pdptr = kvm_pdptr_read;
cb659db8 3765 context->inject_page_fault = kvm_inject_page_fault;
fb72d167
JR
3766
3767 if (!is_paging(vcpu)) {
2d48a985 3768 context->nx = false;
fb72d167
JR
3769 context->gva_to_gpa = nonpaging_gva_to_gpa;
3770 context->root_level = 0;
3771 } else if (is_long_mode(vcpu)) {
2d48a985 3772 context->nx = is_nx(vcpu);
fb72d167 3773 context->root_level = PT64_ROOT_LEVEL;
4d6931c3
DB
3774 reset_rsvds_bits_mask(vcpu, context);
3775 context->gva_to_gpa = paging64_gva_to_gpa;
fb72d167 3776 } else if (is_pae(vcpu)) {
2d48a985 3777 context->nx = is_nx(vcpu);
fb72d167 3778 context->root_level = PT32E_ROOT_LEVEL;
4d6931c3
DB
3779 reset_rsvds_bits_mask(vcpu, context);
3780 context->gva_to_gpa = paging64_gva_to_gpa;
fb72d167 3781 } else {
2d48a985 3782 context->nx = false;
fb72d167 3783 context->root_level = PT32_ROOT_LEVEL;
4d6931c3
DB
3784 reset_rsvds_bits_mask(vcpu, context);
3785 context->gva_to_gpa = paging32_gva_to_gpa;
fb72d167
JR
3786 }
3787
25d92081 3788 update_permission_bitmask(vcpu, context, false);
6fd01b71 3789 update_last_pte_bitmap(vcpu, context);
fb72d167
JR
3790}
3791
8a3c1a33 3792void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
6aa8b732 3793{
411c588d 3794 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
6aa8b732 3795 ASSERT(vcpu);
ad312c7c 3796 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732
AK
3797
3798 if (!is_paging(vcpu))
8a3c1a33 3799 nonpaging_init_context(vcpu, context);
a9058ecd 3800 else if (is_long_mode(vcpu))
8a3c1a33 3801 paging64_init_context(vcpu, context);
6aa8b732 3802 else if (is_pae(vcpu))
8a3c1a33 3803 paging32E_init_context(vcpu, context);
6aa8b732 3804 else
8a3c1a33 3805 paging32_init_context(vcpu, context);
a770f6f2 3806
2c9afa52 3807 vcpu->arch.mmu.base_role.nxe = is_nx(vcpu);
5b7e0102 3808 vcpu->arch.mmu.base_role.cr4_pae = !!is_pae(vcpu);
f43addd4 3809 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
411c588d
AK
3810 vcpu->arch.mmu.base_role.smep_andnot_wp
3811 = smep && !is_write_protection(vcpu);
52fde8df
JR
3812}
3813EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
3814
8a3c1a33 3815void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context,
155a97a3
NHE
3816 bool execonly)
3817{
3818 ASSERT(vcpu);
3819 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
3820
3821 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
3822
3823 context->nx = true;
155a97a3
NHE
3824 context->page_fault = ept_page_fault;
3825 context->gva_to_gpa = ept_gva_to_gpa;
3826 context->sync_page = ept_sync_page;
3827 context->invlpg = ept_invlpg;
3828 context->update_pte = ept_update_pte;
155a97a3
NHE
3829 context->root_level = context->shadow_root_level;
3830 context->root_hpa = INVALID_PAGE;
3831 context->direct_map = false;
3832
3833 update_permission_bitmask(vcpu, context, true);
3834 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
155a97a3
NHE
3835}
3836EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
3837
8a3c1a33 3838static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
52fde8df 3839{
8a3c1a33 3840 kvm_init_shadow_mmu(vcpu, vcpu->arch.walk_mmu);
14dfe855
JR
3841 vcpu->arch.walk_mmu->set_cr3 = kvm_x86_ops->set_cr3;
3842 vcpu->arch.walk_mmu->get_cr3 = get_cr3;
e4e517b4 3843 vcpu->arch.walk_mmu->get_pdptr = kvm_pdptr_read;
14dfe855 3844 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
6aa8b732
AK
3845}
3846
8a3c1a33 3847static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
02f59dc9
JR
3848{
3849 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
3850
3851 g_context->get_cr3 = get_cr3;
e4e517b4 3852 g_context->get_pdptr = kvm_pdptr_read;
02f59dc9
JR
3853 g_context->inject_page_fault = kvm_inject_page_fault;
3854
3855 /*
3856 * Note that arch.mmu.gva_to_gpa translates l2_gva to l1_gpa. The
3857 * translation of l2_gpa to l1_gpa addresses is done using the
3858 * arch.nested_mmu.gva_to_gpa function. Basically the gva_to_gpa
3859 * functions between mmu and nested_mmu are swapped.
3860 */
3861 if (!is_paging(vcpu)) {
2d48a985 3862 g_context->nx = false;
02f59dc9
JR
3863 g_context->root_level = 0;
3864 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
3865 } else if (is_long_mode(vcpu)) {
2d48a985 3866 g_context->nx = is_nx(vcpu);
02f59dc9 3867 g_context->root_level = PT64_ROOT_LEVEL;
4d6931c3 3868 reset_rsvds_bits_mask(vcpu, g_context);
02f59dc9
JR
3869 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
3870 } else if (is_pae(vcpu)) {
2d48a985 3871 g_context->nx = is_nx(vcpu);
02f59dc9 3872 g_context->root_level = PT32E_ROOT_LEVEL;
4d6931c3 3873 reset_rsvds_bits_mask(vcpu, g_context);
02f59dc9
JR
3874 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
3875 } else {
2d48a985 3876 g_context->nx = false;
02f59dc9 3877 g_context->root_level = PT32_ROOT_LEVEL;
4d6931c3 3878 reset_rsvds_bits_mask(vcpu, g_context);
02f59dc9
JR
3879 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
3880 }
3881
25d92081 3882 update_permission_bitmask(vcpu, g_context, false);
6fd01b71 3883 update_last_pte_bitmap(vcpu, g_context);
02f59dc9
JR
3884}
3885
8a3c1a33 3886static void init_kvm_mmu(struct kvm_vcpu *vcpu)
fb72d167 3887{
02f59dc9
JR
3888 if (mmu_is_nested(vcpu))
3889 return init_kvm_nested_mmu(vcpu);
3890 else if (tdp_enabled)
fb72d167
JR
3891 return init_kvm_tdp_mmu(vcpu);
3892 else
3893 return init_kvm_softmmu(vcpu);
3894}
3895
8a3c1a33 3896void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
6aa8b732
AK
3897{
3898 ASSERT(vcpu);
6aa8b732 3899
95f93af4 3900 kvm_mmu_unload(vcpu);
8a3c1a33 3901 init_kvm_mmu(vcpu);
17c3ba9d 3902}
8668a3c4 3903EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
17c3ba9d
AK
3904
3905int kvm_mmu_load(struct kvm_vcpu *vcpu)
6aa8b732 3906{
714b93da
AK
3907 int r;
3908
e2dec939 3909 r = mmu_topup_memory_caches(vcpu);
17c3ba9d
AK
3910 if (r)
3911 goto out;
8986ecc0 3912 r = mmu_alloc_roots(vcpu);
e2858b4a 3913 kvm_mmu_sync_roots(vcpu);
8986ecc0
MT
3914 if (r)
3915 goto out;
3662cb1c 3916 /* set_cr3() should ensure TLB has been flushed */
f43addd4 3917 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
714b93da
AK
3918out:
3919 return r;
6aa8b732 3920}
17c3ba9d
AK
3921EXPORT_SYMBOL_GPL(kvm_mmu_load);
3922
3923void kvm_mmu_unload(struct kvm_vcpu *vcpu)
3924{
3925 mmu_free_roots(vcpu);
95f93af4 3926 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
17c3ba9d 3927}
4b16184c 3928EXPORT_SYMBOL_GPL(kvm_mmu_unload);
6aa8b732 3929
0028425f 3930static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
7c562522
XG
3931 struct kvm_mmu_page *sp, u64 *spte,
3932 const void *new)
0028425f 3933{
30945387 3934 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
7e4e4056
JR
3935 ++vcpu->kvm->stat.mmu_pde_zapped;
3936 return;
30945387 3937 }
0028425f 3938
4cee5764 3939 ++vcpu->kvm->stat.mmu_pte_updated;
7c562522 3940 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
0028425f
AK
3941}
3942
79539cec
AK
3943static bool need_remote_flush(u64 old, u64 new)
3944{
3945 if (!is_shadow_present_pte(old))
3946 return false;
3947 if (!is_shadow_present_pte(new))
3948 return true;
3949 if ((old ^ new) & PT64_BASE_ADDR_MASK)
3950 return true;
53166229
GN
3951 old ^= shadow_nx_mask;
3952 new ^= shadow_nx_mask;
79539cec
AK
3953 return (old & ~new & PT64_PERM_MASK) != 0;
3954}
3955
0671a8e7
XG
3956static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
3957 bool remote_flush, bool local_flush)
79539cec 3958{
0671a8e7
XG
3959 if (zap_page)
3960 return;
3961
3962 if (remote_flush)
79539cec 3963 kvm_flush_remote_tlbs(vcpu->kvm);
0671a8e7 3964 else if (local_flush)
79539cec
AK
3965 kvm_mmu_flush_tlb(vcpu);
3966}
3967
889e5cbc
XG
3968static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
3969 const u8 *new, int *bytes)
da4a00f0 3970{
889e5cbc
XG
3971 u64 gentry;
3972 int r;
72016f3a 3973
72016f3a
AK
3974 /*
3975 * Assume that the pte write on a page table of the same type
49b26e26
XG
3976 * as the current vcpu paging mode since we update the sptes only
3977 * when they have the same mode.
72016f3a 3978 */
889e5cbc 3979 if (is_pae(vcpu) && *bytes == 4) {
72016f3a 3980 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
889e5cbc
XG
3981 *gpa &= ~(gpa_t)7;
3982 *bytes = 8;
116eb3d3 3983 r = kvm_read_guest(vcpu->kvm, *gpa, &gentry, 8);
72016f3a
AK
3984 if (r)
3985 gentry = 0;
08e850c6
AK
3986 new = (const u8 *)&gentry;
3987 }
3988
889e5cbc 3989 switch (*bytes) {
08e850c6
AK
3990 case 4:
3991 gentry = *(const u32 *)new;
3992 break;
3993 case 8:
3994 gentry = *(const u64 *)new;
3995 break;
3996 default:
3997 gentry = 0;
3998 break;
72016f3a
AK
3999 }
4000
889e5cbc
XG
4001 return gentry;
4002}
4003
4004/*
4005 * If we're seeing too many writes to a page, it may no longer be a page table,
4006 * or we may be forking, in which case it is better to unmap the page.
4007 */
a138fe75 4008static bool detect_write_flooding(struct kvm_mmu_page *sp)
889e5cbc 4009{
a30f47cb
XG
4010 /*
4011 * Skip write-flooding detected for the sp whose level is 1, because
4012 * it can become unsync, then the guest page is not write-protected.
4013 */
f71fa31f 4014 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
a30f47cb 4015 return false;
3246af0e 4016
a30f47cb 4017 return ++sp->write_flooding_count >= 3;
889e5cbc
XG
4018}
4019
4020/*
4021 * Misaligned accesses are too much trouble to fix up; also, they usually
4022 * indicate a page is not used as a page table.
4023 */
4024static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4025 int bytes)
4026{
4027 unsigned offset, pte_size, misaligned;
4028
4029 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4030 gpa, bytes, sp->role.word);
4031
4032 offset = offset_in_page(gpa);
4033 pte_size = sp->role.cr4_pae ? 8 : 4;
5d9ca30e
XG
4034
4035 /*
4036 * Sometimes, the OS only writes the last one bytes to update status
4037 * bits, for example, in linux, andb instruction is used in clear_bit().
4038 */
4039 if (!(offset & (pte_size - 1)) && bytes == 1)
4040 return false;
4041
889e5cbc
XG
4042 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4043 misaligned |= bytes < 4;
4044
4045 return misaligned;
4046}
4047
4048static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4049{
4050 unsigned page_offset, quadrant;
4051 u64 *spte;
4052 int level;
4053
4054 page_offset = offset_in_page(gpa);
4055 level = sp->role.level;
4056 *nspte = 1;
4057 if (!sp->role.cr4_pae) {
4058 page_offset <<= 1; /* 32->64 */
4059 /*
4060 * A 32-bit pde maps 4MB while the shadow pdes map
4061 * only 2MB. So we need to double the offset again
4062 * and zap two pdes instead of one.
4063 */
4064 if (level == PT32_ROOT_LEVEL) {
4065 page_offset &= ~7; /* kill rounding error */
4066 page_offset <<= 1;
4067 *nspte = 2;
4068 }
4069 quadrant = page_offset >> PAGE_SHIFT;
4070 page_offset &= ~PAGE_MASK;
4071 if (quadrant != sp->role.quadrant)
4072 return NULL;
4073 }
4074
4075 spte = &sp->spt[page_offset / sizeof(*spte)];
4076 return spte;
4077}
4078
4079void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
4080 const u8 *new, int bytes)
4081{
4082 gfn_t gfn = gpa >> PAGE_SHIFT;
4083 union kvm_mmu_page_role mask = { .word = 0 };
4084 struct kvm_mmu_page *sp;
889e5cbc
XG
4085 LIST_HEAD(invalid_list);
4086 u64 entry, gentry, *spte;
4087 int npte;
a30f47cb 4088 bool remote_flush, local_flush, zap_page;
889e5cbc
XG
4089
4090 /*
4091 * If we don't have indirect shadow pages, it means no page is
4092 * write-protected, so we can exit simply.
4093 */
4094 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4095 return;
4096
4097 zap_page = remote_flush = local_flush = false;
4098
4099 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4100
4101 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4102
4103 /*
4104 * No need to care whether allocation memory is successful
4105 * or not since pte prefetch is skiped if it does not have
4106 * enough objects in the cache.
4107 */
4108 mmu_topup_memory_caches(vcpu);
4109
4110 spin_lock(&vcpu->kvm->mmu_lock);
4111 ++vcpu->kvm->stat.mmu_pte_write;
0375f7fa 4112 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
889e5cbc 4113
fa1de2bf 4114 mask.cr0_wp = mask.cr4_pae = mask.nxe = 1;
b67bfe0d 4115 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
a30f47cb 4116 if (detect_write_misaligned(sp, gpa, bytes) ||
a138fe75 4117 detect_write_flooding(sp)) {
0671a8e7 4118 zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
f41d335a 4119 &invalid_list);
4cee5764 4120 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
4121 continue;
4122 }
889e5cbc
XG
4123
4124 spte = get_written_sptes(sp, gpa, &npte);
4125 if (!spte)
4126 continue;
4127
0671a8e7 4128 local_flush = true;
ac1b714e 4129 while (npte--) {
79539cec 4130 entry = *spte;
38e3b2b2 4131 mmu_page_zap_pte(vcpu->kvm, sp, spte);
fa1de2bf
XG
4132 if (gentry &&
4133 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
f759e2b4 4134 & mask.word) && rmap_can_add(vcpu))
7c562522 4135 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
9bb4f6b1 4136 if (need_remote_flush(entry, *spte))
0671a8e7 4137 remote_flush = true;
ac1b714e 4138 ++spte;
9b7a0325 4139 }
9b7a0325 4140 }
0671a8e7 4141 mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
d98ba053 4142 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
0375f7fa 4143 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
aaee2c94 4144 spin_unlock(&vcpu->kvm->mmu_lock);
da4a00f0
AK
4145}
4146
a436036b
AK
4147int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4148{
10589a46
MT
4149 gpa_t gpa;
4150 int r;
a436036b 4151
c5a78f2b 4152 if (vcpu->arch.mmu.direct_map)
60f24784
AK
4153 return 0;
4154
1871c602 4155 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
10589a46 4156
10589a46 4157 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1cb3f3ae 4158
10589a46 4159 return r;
a436036b 4160}
577bdc49 4161EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
a436036b 4162
81f4f76b 4163static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
ebeace86 4164{
d98ba053 4165 LIST_HEAD(invalid_list);
103ad25a 4166
81f4f76b
TY
4167 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4168 return;
4169
5da59607
TY
4170 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4171 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4172 break;
ebeace86 4173
4cee5764 4174 ++vcpu->kvm->stat.mmu_recycled;
ebeace86 4175 }
aa6bd187 4176 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
ebeace86 4177}
ebeace86 4178
1cb3f3ae
XG
4179static bool is_mmio_page_fault(struct kvm_vcpu *vcpu, gva_t addr)
4180{
4181 if (vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu))
4182 return vcpu_match_mmio_gpa(vcpu, addr);
4183
4184 return vcpu_match_mmio_gva(vcpu, addr);
4185}
4186
dc25e89e
AP
4187int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code,
4188 void *insn, int insn_len)
3067714c 4189{
1cb3f3ae 4190 int r, emulation_type = EMULTYPE_RETRY;
3067714c
AK
4191 enum emulation_result er;
4192
56028d08 4193 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code, false);
3067714c
AK
4194 if (r < 0)
4195 goto out;
4196
4197 if (!r) {
4198 r = 1;
4199 goto out;
4200 }
4201
1cb3f3ae
XG
4202 if (is_mmio_page_fault(vcpu, cr2))
4203 emulation_type = 0;
4204
4205 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
3067714c
AK
4206
4207 switch (er) {
4208 case EMULATE_DONE:
4209 return 1;
ac0a48c3 4210 case EMULATE_USER_EXIT:
3067714c 4211 ++vcpu->stat.mmio_exits;
6d77dbfc 4212 /* fall through */
3067714c 4213 case EMULATE_FAIL:
3f5d18a9 4214 return 0;
3067714c
AK
4215 default:
4216 BUG();
4217 }
4218out:
3067714c
AK
4219 return r;
4220}
4221EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4222
a7052897
MT
4223void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4224{
a7052897 4225 vcpu->arch.mmu.invlpg(vcpu, gva);
a7052897
MT
4226 kvm_mmu_flush_tlb(vcpu);
4227 ++vcpu->stat.invlpg;
4228}
4229EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4230
18552672
JR
4231void kvm_enable_tdp(void)
4232{
4233 tdp_enabled = true;
4234}
4235EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4236
5f4cb662
JR
4237void kvm_disable_tdp(void)
4238{
4239 tdp_enabled = false;
4240}
4241EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4242
6aa8b732
AK
4243static void free_mmu_pages(struct kvm_vcpu *vcpu)
4244{
ad312c7c 4245 free_page((unsigned long)vcpu->arch.mmu.pae_root);
81407ca5
JR
4246 if (vcpu->arch.mmu.lm_root != NULL)
4247 free_page((unsigned long)vcpu->arch.mmu.lm_root);
6aa8b732
AK
4248}
4249
4250static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4251{
17ac10ad 4252 struct page *page;
6aa8b732
AK
4253 int i;
4254
4255 ASSERT(vcpu);
4256
17ac10ad
AK
4257 /*
4258 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4259 * Therefore we need to allocate shadow page tables in the first
4260 * 4GB of memory, which happens to fit the DMA32 zone.
4261 */
4262 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4263 if (!page)
d7fa6ab2
WY
4264 return -ENOMEM;
4265
ad312c7c 4266 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 4267 for (i = 0; i < 4; ++i)
ad312c7c 4268 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 4269
6aa8b732 4270 return 0;
6aa8b732
AK
4271}
4272
8018c27b 4273int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 4274{
6aa8b732 4275 ASSERT(vcpu);
e459e322
XG
4276
4277 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4278 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4279 vcpu->arch.mmu.translate_gpa = translate_gpa;
4280 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
6aa8b732 4281
8018c27b
IM
4282 return alloc_mmu_pages(vcpu);
4283}
6aa8b732 4284
8a3c1a33 4285void kvm_mmu_setup(struct kvm_vcpu *vcpu)
8018c27b
IM
4286{
4287 ASSERT(vcpu);
ad312c7c 4288 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 4289
8a3c1a33 4290 init_kvm_mmu(vcpu);
6aa8b732
AK
4291}
4292
90cb0529 4293void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 4294{
b99db1d3
TY
4295 struct kvm_memory_slot *memslot;
4296 gfn_t last_gfn;
4297 int i;
6aa8b732 4298
b99db1d3
TY
4299 memslot = id_to_memslot(kvm->memslots, slot);
4300 last_gfn = memslot->base_gfn + memslot->npages - 1;
6aa8b732 4301
9d1beefb
TY
4302 spin_lock(&kvm->mmu_lock);
4303
b99db1d3
TY
4304 for (i = PT_PAGE_TABLE_LEVEL;
4305 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
4306 unsigned long *rmapp;
4307 unsigned long last_index, index;
6aa8b732 4308
b99db1d3
TY
4309 rmapp = memslot->arch.rmap[i - PT_PAGE_TABLE_LEVEL];
4310 last_index = gfn_to_index(last_gfn, memslot->base_gfn, i);
da8dc75f 4311
b99db1d3
TY
4312 for (index = 0; index <= last_index; ++index, ++rmapp) {
4313 if (*rmapp)
4314 __rmap_write_protect(kvm, rmapp, false);
6b81b05e 4315
198c74f4 4316 if (need_resched() || spin_needbreak(&kvm->mmu_lock))
6b81b05e 4317 cond_resched_lock(&kvm->mmu_lock);
8234b22e 4318 }
6aa8b732 4319 }
b99db1d3 4320
9d1beefb 4321 spin_unlock(&kvm->mmu_lock);
198c74f4
XG
4322
4323 /*
4324 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4325 * which do tlb flush out of mmu-lock should be serialized by
4326 * kvm->slots_lock otherwise tlb flush would be missed.
4327 */
4328 lockdep_assert_held(&kvm->slots_lock);
4329
4330 /*
4331 * We can flush all the TLBs out of the mmu lock without TLB
4332 * corruption since we just change the spte from writable to
4333 * readonly so that we only need to care the case of changing
4334 * spte from present to present (changing the spte from present
4335 * to nonpresent will flush all the TLBs immediately), in other
4336 * words, the only case we care is mmu_spte_update() where we
4337 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
4338 * instead of PT_WRITABLE_MASK, that means it does not depend
4339 * on PT_WRITABLE_MASK anymore.
4340 */
4341 kvm_flush_remote_tlbs(kvm);
6aa8b732 4342}
37a7d8b0 4343
e7d11c7a 4344#define BATCH_ZAP_PAGES 10
5304b8d3
XG
4345static void kvm_zap_obsolete_pages(struct kvm *kvm)
4346{
4347 struct kvm_mmu_page *sp, *node;
e7d11c7a 4348 int batch = 0;
5304b8d3
XG
4349
4350restart:
4351 list_for_each_entry_safe_reverse(sp, node,
4352 &kvm->arch.active_mmu_pages, link) {
e7d11c7a
XG
4353 int ret;
4354
5304b8d3
XG
4355 /*
4356 * No obsolete page exists before new created page since
4357 * active_mmu_pages is the FIFO list.
4358 */
4359 if (!is_obsolete_sp(kvm, sp))
4360 break;
4361
4362 /*
5304b8d3
XG
4363 * Since we are reversely walking the list and the invalid
4364 * list will be moved to the head, skip the invalid page
4365 * can help us to avoid the infinity list walking.
4366 */
4367 if (sp->role.invalid)
4368 continue;
4369
f34d251d
XG
4370 /*
4371 * Need not flush tlb since we only zap the sp with invalid
4372 * generation number.
4373 */
e7d11c7a 4374 if (batch >= BATCH_ZAP_PAGES &&
f34d251d 4375 cond_resched_lock(&kvm->mmu_lock)) {
e7d11c7a 4376 batch = 0;
5304b8d3
XG
4377 goto restart;
4378 }
4379
365c8868
XG
4380 ret = kvm_mmu_prepare_zap_page(kvm, sp,
4381 &kvm->arch.zapped_obsolete_pages);
e7d11c7a
XG
4382 batch += ret;
4383
4384 if (ret)
5304b8d3
XG
4385 goto restart;
4386 }
4387
f34d251d
XG
4388 /*
4389 * Should flush tlb before free page tables since lockless-walking
4390 * may use the pages.
4391 */
365c8868 4392 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
5304b8d3
XG
4393}
4394
4395/*
4396 * Fast invalidate all shadow pages and use lock-break technique
4397 * to zap obsolete pages.
4398 *
4399 * It's required when memslot is being deleted or VM is being
4400 * destroyed, in these cases, we should ensure that KVM MMU does
4401 * not use any resource of the being-deleted slot or all slots
4402 * after calling the function.
4403 */
4404void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
4405{
4406 spin_lock(&kvm->mmu_lock);
35006126 4407 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
5304b8d3
XG
4408 kvm->arch.mmu_valid_gen++;
4409
f34d251d
XG
4410 /*
4411 * Notify all vcpus to reload its shadow page table
4412 * and flush TLB. Then all vcpus will switch to new
4413 * shadow page table with the new mmu_valid_gen.
4414 *
4415 * Note: we should do this under the protection of
4416 * mmu-lock, otherwise, vcpu would purge shadow page
4417 * but miss tlb flush.
4418 */
4419 kvm_reload_remote_mmus(kvm);
4420
5304b8d3
XG
4421 kvm_zap_obsolete_pages(kvm);
4422 spin_unlock(&kvm->mmu_lock);
4423}
4424
365c8868
XG
4425static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
4426{
4427 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
4428}
4429
f8f55942
XG
4430void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm)
4431{
4432 /*
4433 * The very rare case: if the generation-number is round,
4434 * zap all shadow pages.
f8f55942 4435 */
e6dff7d1 4436 if (unlikely(kvm_current_mmio_generation(kvm) >= MMIO_MAX_GEN)) {
7a2e8aaf 4437 printk_ratelimited(KERN_INFO "kvm: zapping shadow pages for mmio generation wraparound\n");
a8eca9dc 4438 kvm_mmu_invalidate_zap_all_pages(kvm);
7a2e8aaf 4439 }
f8f55942
XG
4440}
4441
70534a73
DC
4442static unsigned long
4443mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
3ee16c81
IE
4444{
4445 struct kvm *kvm;
1495f230 4446 int nr_to_scan = sc->nr_to_scan;
70534a73 4447 unsigned long freed = 0;
3ee16c81 4448
2f303b74 4449 spin_lock(&kvm_lock);
3ee16c81
IE
4450
4451 list_for_each_entry(kvm, &vm_list, vm_list) {
3d56cbdf 4452 int idx;
d98ba053 4453 LIST_HEAD(invalid_list);
3ee16c81 4454
35f2d16b
TY
4455 /*
4456 * Never scan more than sc->nr_to_scan VM instances.
4457 * Will not hit this condition practically since we do not try
4458 * to shrink more than one VM and it is very unlikely to see
4459 * !n_used_mmu_pages so many times.
4460 */
4461 if (!nr_to_scan--)
4462 break;
19526396
GN
4463 /*
4464 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
4465 * here. We may skip a VM instance errorneosly, but we do not
4466 * want to shrink a VM that only started to populate its MMU
4467 * anyway.
4468 */
365c8868
XG
4469 if (!kvm->arch.n_used_mmu_pages &&
4470 !kvm_has_zapped_obsolete_pages(kvm))
19526396 4471 continue;
19526396 4472
f656ce01 4473 idx = srcu_read_lock(&kvm->srcu);
3ee16c81 4474 spin_lock(&kvm->mmu_lock);
3ee16c81 4475
365c8868
XG
4476 if (kvm_has_zapped_obsolete_pages(kvm)) {
4477 kvm_mmu_commit_zap_page(kvm,
4478 &kvm->arch.zapped_obsolete_pages);
4479 goto unlock;
4480 }
4481
70534a73
DC
4482 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
4483 freed++;
d98ba053 4484 kvm_mmu_commit_zap_page(kvm, &invalid_list);
19526396 4485
365c8868 4486unlock:
3ee16c81 4487 spin_unlock(&kvm->mmu_lock);
f656ce01 4488 srcu_read_unlock(&kvm->srcu, idx);
19526396 4489
70534a73
DC
4490 /*
4491 * unfair on small ones
4492 * per-vm shrinkers cry out
4493 * sadness comes quickly
4494 */
19526396
GN
4495 list_move_tail(&kvm->vm_list, &vm_list);
4496 break;
3ee16c81 4497 }
3ee16c81 4498
2f303b74 4499 spin_unlock(&kvm_lock);
70534a73 4500 return freed;
70534a73
DC
4501}
4502
4503static unsigned long
4504mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
4505{
45221ab6 4506 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
3ee16c81
IE
4507}
4508
4509static struct shrinker mmu_shrinker = {
70534a73
DC
4510 .count_objects = mmu_shrink_count,
4511 .scan_objects = mmu_shrink_scan,
3ee16c81
IE
4512 .seeks = DEFAULT_SEEKS * 10,
4513};
4514
2ddfd20e 4515static void mmu_destroy_caches(void)
b5a33a75 4516{
53c07b18
XG
4517 if (pte_list_desc_cache)
4518 kmem_cache_destroy(pte_list_desc_cache);
d3d25b04
AK
4519 if (mmu_page_header_cache)
4520 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
4521}
4522
4523int kvm_mmu_module_init(void)
4524{
53c07b18
XG
4525 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
4526 sizeof(struct pte_list_desc),
20c2df83 4527 0, 0, NULL);
53c07b18 4528 if (!pte_list_desc_cache)
b5a33a75
AK
4529 goto nomem;
4530
d3d25b04
AK
4531 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
4532 sizeof(struct kvm_mmu_page),
20c2df83 4533 0, 0, NULL);
d3d25b04
AK
4534 if (!mmu_page_header_cache)
4535 goto nomem;
4536
45bf21a8
WY
4537 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0))
4538 goto nomem;
4539
3ee16c81
IE
4540 register_shrinker(&mmu_shrinker);
4541
b5a33a75
AK
4542 return 0;
4543
4544nomem:
3ee16c81 4545 mmu_destroy_caches();
b5a33a75
AK
4546 return -ENOMEM;
4547}
4548
3ad82a7e
ZX
4549/*
4550 * Caculate mmu pages needed for kvm.
4551 */
4552unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
4553{
3ad82a7e
ZX
4554 unsigned int nr_mmu_pages;
4555 unsigned int nr_pages = 0;
bc6678a3 4556 struct kvm_memslots *slots;
be6ba0f0 4557 struct kvm_memory_slot *memslot;
3ad82a7e 4558
90d83dc3
LJ
4559 slots = kvm_memslots(kvm);
4560
be6ba0f0
XG
4561 kvm_for_each_memslot(memslot, slots)
4562 nr_pages += memslot->npages;
3ad82a7e
ZX
4563
4564 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
4565 nr_mmu_pages = max(nr_mmu_pages,
4566 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
4567
4568 return nr_mmu_pages;
4569}
4570
94d8b056
MT
4571int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
4572{
4573 struct kvm_shadow_walk_iterator iterator;
c2a2ac2b 4574 u64 spte;
94d8b056
MT
4575 int nr_sptes = 0;
4576
37f6a4e2
MT
4577 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4578 return nr_sptes;
4579
c2a2ac2b
XG
4580 walk_shadow_page_lockless_begin(vcpu);
4581 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
4582 sptes[iterator.level-1] = spte;
94d8b056 4583 nr_sptes++;
c2a2ac2b 4584 if (!is_shadow_present_pte(spte))
94d8b056
MT
4585 break;
4586 }
c2a2ac2b 4587 walk_shadow_page_lockless_end(vcpu);
94d8b056
MT
4588
4589 return nr_sptes;
4590}
4591EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
4592
c42fffe3
XG
4593void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
4594{
4595 ASSERT(vcpu);
4596
95f93af4 4597 kvm_mmu_unload(vcpu);
c42fffe3
XG
4598 free_mmu_pages(vcpu);
4599 mmu_free_memory_caches(vcpu);
b034cf01
XG
4600}
4601
b034cf01
XG
4602void kvm_mmu_module_exit(void)
4603{
4604 mmu_destroy_caches();
4605 percpu_counter_destroy(&kvm_total_used_mmu_pages);
4606 unregister_shrinker(&mmu_shrinker);
c42fffe3
XG
4607 mmu_audit_disable();
4608}