x86/xen: fix arbitrary_virt_to_machine()
[deliverable/linux.git] / arch / x86 / kvm / mmu.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * MMU support
8 *
9 * Copyright (C) 2006 Qumranet, Inc.
10 *
11 * Authors:
12 * Yaniv Kamay <yaniv@qumranet.com>
13 * Avi Kivity <avi@qumranet.com>
14 *
15 * This work is licensed under the terms of the GNU GPL, version 2. See
16 * the COPYING file in the top-level directory.
17 *
18 */
e495606d
AK
19
20#include "vmx.h"
1d737c8a 21#include "mmu.h"
e495606d 22
edf88417 23#include <linux/kvm_host.h>
6aa8b732
AK
24#include <linux/types.h>
25#include <linux/string.h>
6aa8b732
AK
26#include <linux/mm.h>
27#include <linux/highmem.h>
28#include <linux/module.h>
448353ca 29#include <linux/swap.h>
05da4558 30#include <linux/hugetlb.h>
2f333bcb 31#include <linux/compiler.h>
6aa8b732 32
e495606d
AK
33#include <asm/page.h>
34#include <asm/cmpxchg.h>
4e542370 35#include <asm/io.h>
6aa8b732 36
18552672
JR
37/*
38 * When setting this variable to true it enables Two-Dimensional-Paging
39 * where the hardware walks 2 page tables:
40 * 1. the guest-virtual to guest-physical
41 * 2. while doing 1. it walks guest-physical to host-physical
42 * If the hardware supports that we don't need to do shadow paging.
43 */
2f333bcb 44bool tdp_enabled = false;
18552672 45
37a7d8b0
AK
46#undef MMU_DEBUG
47
48#undef AUDIT
49
50#ifdef AUDIT
51static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg);
52#else
53static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg) {}
54#endif
55
56#ifdef MMU_DEBUG
57
58#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
59#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
60
61#else
62
63#define pgprintk(x...) do { } while (0)
64#define rmap_printk(x...) do { } while (0)
65
66#endif
67
68#if defined(MMU_DEBUG) || defined(AUDIT)
69static int dbg = 1;
70#endif
6aa8b732 71
d6c69ee9
YD
72#ifndef MMU_DEBUG
73#define ASSERT(x) do { } while (0)
74#else
6aa8b732
AK
75#define ASSERT(x) \
76 if (!(x)) { \
77 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
78 __FILE__, __LINE__, #x); \
79 }
d6c69ee9 80#endif
6aa8b732 81
6aa8b732
AK
82#define PT_FIRST_AVAIL_BITS_SHIFT 9
83#define PT64_SECOND_AVAIL_BITS_SHIFT 52
84
6aa8b732
AK
85#define VALID_PAGE(x) ((x) != INVALID_PAGE)
86
87#define PT64_LEVEL_BITS 9
88
89#define PT64_LEVEL_SHIFT(level) \
d77c26fc 90 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
6aa8b732
AK
91
92#define PT64_LEVEL_MASK(level) \
93 (((1ULL << PT64_LEVEL_BITS) - 1) << PT64_LEVEL_SHIFT(level))
94
95#define PT64_INDEX(address, level)\
96 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
97
98
99#define PT32_LEVEL_BITS 10
100
101#define PT32_LEVEL_SHIFT(level) \
d77c26fc 102 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
6aa8b732
AK
103
104#define PT32_LEVEL_MASK(level) \
105 (((1ULL << PT32_LEVEL_BITS) - 1) << PT32_LEVEL_SHIFT(level))
106
107#define PT32_INDEX(address, level)\
108 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
109
110
27aba766 111#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
6aa8b732
AK
112#define PT64_DIR_BASE_ADDR_MASK \
113 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
114
115#define PT32_BASE_ADDR_MASK PAGE_MASK
116#define PT32_DIR_BASE_ADDR_MASK \
117 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
118
79539cec
AK
119#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | PT_USER_MASK \
120 | PT64_NX_MASK)
6aa8b732
AK
121
122#define PFERR_PRESENT_MASK (1U << 0)
123#define PFERR_WRITE_MASK (1U << 1)
124#define PFERR_USER_MASK (1U << 2)
73b1087e 125#define PFERR_FETCH_MASK (1U << 4)
6aa8b732 126
6aa8b732
AK
127#define PT_DIRECTORY_LEVEL 2
128#define PT_PAGE_TABLE_LEVEL 1
129
cd4a4e53
AK
130#define RMAP_EXT 4
131
fe135d2c
AK
132#define ACC_EXEC_MASK 1
133#define ACC_WRITE_MASK PT_WRITABLE_MASK
134#define ACC_USER_MASK PT_USER_MASK
135#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
136
2f333bcb
MT
137struct kvm_pv_mmu_op_buffer {
138 void *ptr;
139 unsigned len;
140 unsigned processed;
141 char buf[512] __aligned(sizeof(long));
142};
143
cd4a4e53
AK
144struct kvm_rmap_desc {
145 u64 *shadow_ptes[RMAP_EXT];
146 struct kvm_rmap_desc *more;
147};
148
b5a33a75
AK
149static struct kmem_cache *pte_chain_cache;
150static struct kmem_cache *rmap_desc_cache;
d3d25b04 151static struct kmem_cache *mmu_page_header_cache;
b5a33a75 152
c7addb90
AK
153static u64 __read_mostly shadow_trap_nonpresent_pte;
154static u64 __read_mostly shadow_notrap_nonpresent_pte;
7b52345e
SY
155static u64 __read_mostly shadow_base_present_pte;
156static u64 __read_mostly shadow_nx_mask;
157static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
158static u64 __read_mostly shadow_user_mask;
159static u64 __read_mostly shadow_accessed_mask;
160static u64 __read_mostly shadow_dirty_mask;
c7addb90
AK
161
162void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
163{
164 shadow_trap_nonpresent_pte = trap_pte;
165 shadow_notrap_nonpresent_pte = notrap_pte;
166}
167EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
168
7b52345e
SY
169void kvm_mmu_set_base_ptes(u64 base_pte)
170{
171 shadow_base_present_pte = base_pte;
172}
173EXPORT_SYMBOL_GPL(kvm_mmu_set_base_ptes);
174
175void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
176 u64 dirty_mask, u64 nx_mask, u64 x_mask)
177{
178 shadow_user_mask = user_mask;
179 shadow_accessed_mask = accessed_mask;
180 shadow_dirty_mask = dirty_mask;
181 shadow_nx_mask = nx_mask;
182 shadow_x_mask = x_mask;
183}
184EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
185
6aa8b732
AK
186static int is_write_protection(struct kvm_vcpu *vcpu)
187{
ad312c7c 188 return vcpu->arch.cr0 & X86_CR0_WP;
6aa8b732
AK
189}
190
191static int is_cpuid_PSE36(void)
192{
193 return 1;
194}
195
73b1087e
AK
196static int is_nx(struct kvm_vcpu *vcpu)
197{
ad312c7c 198 return vcpu->arch.shadow_efer & EFER_NX;
73b1087e
AK
199}
200
6aa8b732
AK
201static int is_present_pte(unsigned long pte)
202{
203 return pte & PT_PRESENT_MASK;
204}
205
c7addb90
AK
206static int is_shadow_present_pte(u64 pte)
207{
c7addb90
AK
208 return pte != shadow_trap_nonpresent_pte
209 && pte != shadow_notrap_nonpresent_pte;
210}
211
05da4558
MT
212static int is_large_pte(u64 pte)
213{
214 return pte & PT_PAGE_SIZE_MASK;
215}
216
6aa8b732
AK
217static int is_writeble_pte(unsigned long pte)
218{
219 return pte & PT_WRITABLE_MASK;
220}
221
e3c5e7ec
AK
222static int is_dirty_pte(unsigned long pte)
223{
7b52345e 224 return pte & shadow_dirty_mask;
e3c5e7ec
AK
225}
226
cd4a4e53
AK
227static int is_rmap_pte(u64 pte)
228{
4b1a80fa 229 return is_shadow_present_pte(pte);
cd4a4e53
AK
230}
231
35149e21 232static pfn_t spte_to_pfn(u64 pte)
0b49ea86 233{
35149e21 234 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
0b49ea86
AK
235}
236
da928521
AK
237static gfn_t pse36_gfn_delta(u32 gpte)
238{
239 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
240
241 return (gpte & PT32_DIR_PSE36_MASK) << shift;
242}
243
e663ee64
AK
244static void set_shadow_pte(u64 *sptep, u64 spte)
245{
246#ifdef CONFIG_X86_64
247 set_64bit((unsigned long *)sptep, spte);
248#else
249 set_64bit((unsigned long long *)sptep, spte);
250#endif
251}
252
e2dec939 253static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
2e3e5882 254 struct kmem_cache *base_cache, int min)
714b93da
AK
255{
256 void *obj;
257
258 if (cache->nobjs >= min)
e2dec939 259 return 0;
714b93da 260 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
2e3e5882 261 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
714b93da 262 if (!obj)
e2dec939 263 return -ENOMEM;
714b93da
AK
264 cache->objects[cache->nobjs++] = obj;
265 }
e2dec939 266 return 0;
714b93da
AK
267}
268
269static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
270{
271 while (mc->nobjs)
272 kfree(mc->objects[--mc->nobjs]);
273}
274
c1158e63 275static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
2e3e5882 276 int min)
c1158e63
AK
277{
278 struct page *page;
279
280 if (cache->nobjs >= min)
281 return 0;
282 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
2e3e5882 283 page = alloc_page(GFP_KERNEL);
c1158e63
AK
284 if (!page)
285 return -ENOMEM;
286 set_page_private(page, 0);
287 cache->objects[cache->nobjs++] = page_address(page);
288 }
289 return 0;
290}
291
292static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
293{
294 while (mc->nobjs)
c4d198d5 295 free_page((unsigned long)mc->objects[--mc->nobjs]);
c1158e63
AK
296}
297
2e3e5882 298static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
714b93da 299{
e2dec939
AK
300 int r;
301
ad312c7c 302 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_chain_cache,
2e3e5882 303 pte_chain_cache, 4);
e2dec939
AK
304 if (r)
305 goto out;
ad312c7c 306 r = mmu_topup_memory_cache(&vcpu->arch.mmu_rmap_desc_cache,
2e3e5882 307 rmap_desc_cache, 1);
d3d25b04
AK
308 if (r)
309 goto out;
ad312c7c 310 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
d3d25b04
AK
311 if (r)
312 goto out;
ad312c7c 313 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
2e3e5882 314 mmu_page_header_cache, 4);
e2dec939
AK
315out:
316 return r;
714b93da
AK
317}
318
319static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
320{
ad312c7c
ZX
321 mmu_free_memory_cache(&vcpu->arch.mmu_pte_chain_cache);
322 mmu_free_memory_cache(&vcpu->arch.mmu_rmap_desc_cache);
323 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
324 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache);
714b93da
AK
325}
326
327static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
328 size_t size)
329{
330 void *p;
331
332 BUG_ON(!mc->nobjs);
333 p = mc->objects[--mc->nobjs];
334 memset(p, 0, size);
335 return p;
336}
337
714b93da
AK
338static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
339{
ad312c7c 340 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_chain_cache,
714b93da
AK
341 sizeof(struct kvm_pte_chain));
342}
343
90cb0529 344static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
714b93da 345{
90cb0529 346 kfree(pc);
714b93da
AK
347}
348
349static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
350{
ad312c7c 351 return mmu_memory_cache_alloc(&vcpu->arch.mmu_rmap_desc_cache,
714b93da
AK
352 sizeof(struct kvm_rmap_desc));
353}
354
90cb0529 355static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
714b93da 356{
90cb0529 357 kfree(rd);
714b93da
AK
358}
359
05da4558
MT
360/*
361 * Return the pointer to the largepage write count for a given
362 * gfn, handling slots that are not large page aligned.
363 */
364static int *slot_largepage_idx(gfn_t gfn, struct kvm_memory_slot *slot)
365{
366 unsigned long idx;
367
368 idx = (gfn / KVM_PAGES_PER_HPAGE) -
369 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
370 return &slot->lpage_info[idx].write_count;
371}
372
373static void account_shadowed(struct kvm *kvm, gfn_t gfn)
374{
375 int *write_count;
376
377 write_count = slot_largepage_idx(gfn, gfn_to_memslot(kvm, gfn));
378 *write_count += 1;
05da4558
MT
379}
380
381static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
382{
383 int *write_count;
384
385 write_count = slot_largepage_idx(gfn, gfn_to_memslot(kvm, gfn));
386 *write_count -= 1;
387 WARN_ON(*write_count < 0);
388}
389
390static int has_wrprotected_page(struct kvm *kvm, gfn_t gfn)
391{
392 struct kvm_memory_slot *slot = gfn_to_memslot(kvm, gfn);
393 int *largepage_idx;
394
395 if (slot) {
396 largepage_idx = slot_largepage_idx(gfn, slot);
397 return *largepage_idx;
398 }
399
400 return 1;
401}
402
403static int host_largepage_backed(struct kvm *kvm, gfn_t gfn)
404{
405 struct vm_area_struct *vma;
406 unsigned long addr;
407
408 addr = gfn_to_hva(kvm, gfn);
409 if (kvm_is_error_hva(addr))
410 return 0;
411
412 vma = find_vma(current->mm, addr);
413 if (vma && is_vm_hugetlb_page(vma))
414 return 1;
415
416 return 0;
417}
418
419static int is_largepage_backed(struct kvm_vcpu *vcpu, gfn_t large_gfn)
420{
421 struct kvm_memory_slot *slot;
422
423 if (has_wrprotected_page(vcpu->kvm, large_gfn))
424 return 0;
425
426 if (!host_largepage_backed(vcpu->kvm, large_gfn))
427 return 0;
428
429 slot = gfn_to_memslot(vcpu->kvm, large_gfn);
430 if (slot && slot->dirty_bitmap)
431 return 0;
432
433 return 1;
434}
435
290fc38d
IE
436/*
437 * Take gfn and return the reverse mapping to it.
438 * Note: gfn must be unaliased before this function get called
439 */
440
05da4558 441static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int lpage)
290fc38d
IE
442{
443 struct kvm_memory_slot *slot;
05da4558 444 unsigned long idx;
290fc38d
IE
445
446 slot = gfn_to_memslot(kvm, gfn);
05da4558
MT
447 if (!lpage)
448 return &slot->rmap[gfn - slot->base_gfn];
449
450 idx = (gfn / KVM_PAGES_PER_HPAGE) -
451 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
452
453 return &slot->lpage_info[idx].rmap_pde;
290fc38d
IE
454}
455
cd4a4e53
AK
456/*
457 * Reverse mapping data structures:
458 *
290fc38d
IE
459 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
460 * that points to page_address(page).
cd4a4e53 461 *
290fc38d
IE
462 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
463 * containing more mappings.
cd4a4e53 464 */
05da4558 465static void rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn, int lpage)
cd4a4e53 466{
4db35314 467 struct kvm_mmu_page *sp;
cd4a4e53 468 struct kvm_rmap_desc *desc;
290fc38d 469 unsigned long *rmapp;
cd4a4e53
AK
470 int i;
471
472 if (!is_rmap_pte(*spte))
473 return;
290fc38d 474 gfn = unalias_gfn(vcpu->kvm, gfn);
4db35314
AK
475 sp = page_header(__pa(spte));
476 sp->gfns[spte - sp->spt] = gfn;
05da4558 477 rmapp = gfn_to_rmap(vcpu->kvm, gfn, lpage);
290fc38d 478 if (!*rmapp) {
cd4a4e53 479 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
290fc38d
IE
480 *rmapp = (unsigned long)spte;
481 } else if (!(*rmapp & 1)) {
cd4a4e53 482 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
714b93da 483 desc = mmu_alloc_rmap_desc(vcpu);
290fc38d 484 desc->shadow_ptes[0] = (u64 *)*rmapp;
cd4a4e53 485 desc->shadow_ptes[1] = spte;
290fc38d 486 *rmapp = (unsigned long)desc | 1;
cd4a4e53
AK
487 } else {
488 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
290fc38d 489 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
cd4a4e53
AK
490 while (desc->shadow_ptes[RMAP_EXT-1] && desc->more)
491 desc = desc->more;
492 if (desc->shadow_ptes[RMAP_EXT-1]) {
714b93da 493 desc->more = mmu_alloc_rmap_desc(vcpu);
cd4a4e53
AK
494 desc = desc->more;
495 }
496 for (i = 0; desc->shadow_ptes[i]; ++i)
497 ;
498 desc->shadow_ptes[i] = spte;
499 }
500}
501
290fc38d 502static void rmap_desc_remove_entry(unsigned long *rmapp,
cd4a4e53
AK
503 struct kvm_rmap_desc *desc,
504 int i,
505 struct kvm_rmap_desc *prev_desc)
506{
507 int j;
508
509 for (j = RMAP_EXT - 1; !desc->shadow_ptes[j] && j > i; --j)
510 ;
511 desc->shadow_ptes[i] = desc->shadow_ptes[j];
11718b4d 512 desc->shadow_ptes[j] = NULL;
cd4a4e53
AK
513 if (j != 0)
514 return;
515 if (!prev_desc && !desc->more)
290fc38d 516 *rmapp = (unsigned long)desc->shadow_ptes[0];
cd4a4e53
AK
517 else
518 if (prev_desc)
519 prev_desc->more = desc->more;
520 else
290fc38d 521 *rmapp = (unsigned long)desc->more | 1;
90cb0529 522 mmu_free_rmap_desc(desc);
cd4a4e53
AK
523}
524
290fc38d 525static void rmap_remove(struct kvm *kvm, u64 *spte)
cd4a4e53 526{
cd4a4e53
AK
527 struct kvm_rmap_desc *desc;
528 struct kvm_rmap_desc *prev_desc;
4db35314 529 struct kvm_mmu_page *sp;
35149e21 530 pfn_t pfn;
290fc38d 531 unsigned long *rmapp;
cd4a4e53
AK
532 int i;
533
534 if (!is_rmap_pte(*spte))
535 return;
4db35314 536 sp = page_header(__pa(spte));
35149e21 537 pfn = spte_to_pfn(*spte);
7b52345e 538 if (*spte & shadow_accessed_mask)
35149e21 539 kvm_set_pfn_accessed(pfn);
b4231d61 540 if (is_writeble_pte(*spte))
35149e21 541 kvm_release_pfn_dirty(pfn);
b4231d61 542 else
35149e21 543 kvm_release_pfn_clean(pfn);
05da4558 544 rmapp = gfn_to_rmap(kvm, sp->gfns[spte - sp->spt], is_large_pte(*spte));
290fc38d 545 if (!*rmapp) {
cd4a4e53
AK
546 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
547 BUG();
290fc38d 548 } else if (!(*rmapp & 1)) {
cd4a4e53 549 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
290fc38d 550 if ((u64 *)*rmapp != spte) {
cd4a4e53
AK
551 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
552 spte, *spte);
553 BUG();
554 }
290fc38d 555 *rmapp = 0;
cd4a4e53
AK
556 } else {
557 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
290fc38d 558 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
cd4a4e53
AK
559 prev_desc = NULL;
560 while (desc) {
561 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i)
562 if (desc->shadow_ptes[i] == spte) {
290fc38d 563 rmap_desc_remove_entry(rmapp,
714b93da 564 desc, i,
cd4a4e53
AK
565 prev_desc);
566 return;
567 }
568 prev_desc = desc;
569 desc = desc->more;
570 }
571 BUG();
572 }
573}
574
98348e95 575static u64 *rmap_next(struct kvm *kvm, unsigned long *rmapp, u64 *spte)
374cbac0 576{
374cbac0 577 struct kvm_rmap_desc *desc;
98348e95
IE
578 struct kvm_rmap_desc *prev_desc;
579 u64 *prev_spte;
580 int i;
581
582 if (!*rmapp)
583 return NULL;
584 else if (!(*rmapp & 1)) {
585 if (!spte)
586 return (u64 *)*rmapp;
587 return NULL;
588 }
589 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
590 prev_desc = NULL;
591 prev_spte = NULL;
592 while (desc) {
593 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i) {
594 if (prev_spte == spte)
595 return desc->shadow_ptes[i];
596 prev_spte = desc->shadow_ptes[i];
597 }
598 desc = desc->more;
599 }
600 return NULL;
601}
602
603static void rmap_write_protect(struct kvm *kvm, u64 gfn)
604{
290fc38d 605 unsigned long *rmapp;
374cbac0 606 u64 *spte;
caa5b8a5 607 int write_protected = 0;
374cbac0 608
4a4c9924 609 gfn = unalias_gfn(kvm, gfn);
05da4558 610 rmapp = gfn_to_rmap(kvm, gfn, 0);
374cbac0 611
98348e95
IE
612 spte = rmap_next(kvm, rmapp, NULL);
613 while (spte) {
374cbac0 614 BUG_ON(!spte);
374cbac0 615 BUG_ON(!(*spte & PT_PRESENT_MASK));
374cbac0 616 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
caa5b8a5 617 if (is_writeble_pte(*spte)) {
9647c14c 618 set_shadow_pte(spte, *spte & ~PT_WRITABLE_MASK);
caa5b8a5
ED
619 write_protected = 1;
620 }
9647c14c 621 spte = rmap_next(kvm, rmapp, spte);
374cbac0 622 }
855149aa 623 if (write_protected) {
35149e21 624 pfn_t pfn;
855149aa
IE
625
626 spte = rmap_next(kvm, rmapp, NULL);
35149e21
AL
627 pfn = spte_to_pfn(*spte);
628 kvm_set_pfn_dirty(pfn);
855149aa
IE
629 }
630
05da4558
MT
631 /* check for huge page mappings */
632 rmapp = gfn_to_rmap(kvm, gfn, 1);
633 spte = rmap_next(kvm, rmapp, NULL);
634 while (spte) {
635 BUG_ON(!spte);
636 BUG_ON(!(*spte & PT_PRESENT_MASK));
637 BUG_ON((*spte & (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK)) != (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK));
638 pgprintk("rmap_write_protect(large): spte %p %llx %lld\n", spte, *spte, gfn);
639 if (is_writeble_pte(*spte)) {
640 rmap_remove(kvm, spte);
641 --kvm->stat.lpages;
642 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
643 write_protected = 1;
644 }
645 spte = rmap_next(kvm, rmapp, spte);
646 }
647
caa5b8a5
ED
648 if (write_protected)
649 kvm_flush_remote_tlbs(kvm);
05da4558
MT
650
651 account_shadowed(kvm, gfn);
374cbac0
AK
652}
653
d6c69ee9 654#ifdef MMU_DEBUG
47ad8e68 655static int is_empty_shadow_page(u64 *spt)
6aa8b732 656{
139bdb2d
AK
657 u64 *pos;
658 u64 *end;
659
47ad8e68 660 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
d196e343 661 if (*pos != shadow_trap_nonpresent_pte) {
b8688d51 662 printk(KERN_ERR "%s: %p %llx\n", __func__,
139bdb2d 663 pos, *pos);
6aa8b732 664 return 0;
139bdb2d 665 }
6aa8b732
AK
666 return 1;
667}
d6c69ee9 668#endif
6aa8b732 669
4db35314 670static void kvm_mmu_free_page(struct kvm *kvm, struct kvm_mmu_page *sp)
260746c0 671{
4db35314
AK
672 ASSERT(is_empty_shadow_page(sp->spt));
673 list_del(&sp->link);
674 __free_page(virt_to_page(sp->spt));
675 __free_page(virt_to_page(sp->gfns));
676 kfree(sp);
f05e70ac 677 ++kvm->arch.n_free_mmu_pages;
260746c0
AK
678}
679
cea0f0e7
AK
680static unsigned kvm_page_table_hashfn(gfn_t gfn)
681{
1ae0a13d 682 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
cea0f0e7
AK
683}
684
25c0de2c
AK
685static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
686 u64 *parent_pte)
6aa8b732 687{
4db35314 688 struct kvm_mmu_page *sp;
6aa8b732 689
ad312c7c
ZX
690 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache, sizeof *sp);
691 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
692 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
4db35314 693 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
f05e70ac 694 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
4db35314
AK
695 ASSERT(is_empty_shadow_page(sp->spt));
696 sp->slot_bitmap = 0;
697 sp->multimapped = 0;
698 sp->parent_pte = parent_pte;
f05e70ac 699 --vcpu->kvm->arch.n_free_mmu_pages;
4db35314 700 return sp;
6aa8b732
AK
701}
702
714b93da 703static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
4db35314 704 struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7
AK
705{
706 struct kvm_pte_chain *pte_chain;
707 struct hlist_node *node;
708 int i;
709
710 if (!parent_pte)
711 return;
4db35314
AK
712 if (!sp->multimapped) {
713 u64 *old = sp->parent_pte;
cea0f0e7
AK
714
715 if (!old) {
4db35314 716 sp->parent_pte = parent_pte;
cea0f0e7
AK
717 return;
718 }
4db35314 719 sp->multimapped = 1;
714b93da 720 pte_chain = mmu_alloc_pte_chain(vcpu);
4db35314
AK
721 INIT_HLIST_HEAD(&sp->parent_ptes);
722 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
cea0f0e7
AK
723 pte_chain->parent_ptes[0] = old;
724 }
4db35314 725 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link) {
cea0f0e7
AK
726 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
727 continue;
728 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
729 if (!pte_chain->parent_ptes[i]) {
730 pte_chain->parent_ptes[i] = parent_pte;
731 return;
732 }
733 }
714b93da 734 pte_chain = mmu_alloc_pte_chain(vcpu);
cea0f0e7 735 BUG_ON(!pte_chain);
4db35314 736 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
cea0f0e7
AK
737 pte_chain->parent_ptes[0] = parent_pte;
738}
739
4db35314 740static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
cea0f0e7
AK
741 u64 *parent_pte)
742{
743 struct kvm_pte_chain *pte_chain;
744 struct hlist_node *node;
745 int i;
746
4db35314
AK
747 if (!sp->multimapped) {
748 BUG_ON(sp->parent_pte != parent_pte);
749 sp->parent_pte = NULL;
cea0f0e7
AK
750 return;
751 }
4db35314 752 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
cea0f0e7
AK
753 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
754 if (!pte_chain->parent_ptes[i])
755 break;
756 if (pte_chain->parent_ptes[i] != parent_pte)
757 continue;
697fe2e2
AK
758 while (i + 1 < NR_PTE_CHAIN_ENTRIES
759 && pte_chain->parent_ptes[i + 1]) {
cea0f0e7
AK
760 pte_chain->parent_ptes[i]
761 = pte_chain->parent_ptes[i + 1];
762 ++i;
763 }
764 pte_chain->parent_ptes[i] = NULL;
697fe2e2
AK
765 if (i == 0) {
766 hlist_del(&pte_chain->link);
90cb0529 767 mmu_free_pte_chain(pte_chain);
4db35314
AK
768 if (hlist_empty(&sp->parent_ptes)) {
769 sp->multimapped = 0;
770 sp->parent_pte = NULL;
697fe2e2
AK
771 }
772 }
cea0f0e7
AK
773 return;
774 }
775 BUG();
776}
777
4db35314 778static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm *kvm, gfn_t gfn)
cea0f0e7
AK
779{
780 unsigned index;
781 struct hlist_head *bucket;
4db35314 782 struct kvm_mmu_page *sp;
cea0f0e7
AK
783 struct hlist_node *node;
784
b8688d51 785 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
1ae0a13d 786 index = kvm_page_table_hashfn(gfn);
f05e70ac 787 bucket = &kvm->arch.mmu_page_hash[index];
4db35314 788 hlist_for_each_entry(sp, node, bucket, hash_link)
2e53d63a
MT
789 if (sp->gfn == gfn && !sp->role.metaphysical
790 && !sp->role.invalid) {
cea0f0e7 791 pgprintk("%s: found role %x\n",
b8688d51 792 __func__, sp->role.word);
4db35314 793 return sp;
cea0f0e7
AK
794 }
795 return NULL;
796}
797
798static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
799 gfn_t gfn,
800 gva_t gaddr,
801 unsigned level,
802 int metaphysical,
41074d07 803 unsigned access,
f7d9c7b7 804 u64 *parent_pte)
cea0f0e7
AK
805{
806 union kvm_mmu_page_role role;
807 unsigned index;
808 unsigned quadrant;
809 struct hlist_head *bucket;
4db35314 810 struct kvm_mmu_page *sp;
cea0f0e7
AK
811 struct hlist_node *node;
812
813 role.word = 0;
ad312c7c 814 role.glevels = vcpu->arch.mmu.root_level;
cea0f0e7
AK
815 role.level = level;
816 role.metaphysical = metaphysical;
41074d07 817 role.access = access;
ad312c7c 818 if (vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
cea0f0e7
AK
819 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
820 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
821 role.quadrant = quadrant;
822 }
b8688d51 823 pgprintk("%s: looking gfn %lx role %x\n", __func__,
cea0f0e7 824 gfn, role.word);
1ae0a13d 825 index = kvm_page_table_hashfn(gfn);
f05e70ac 826 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
4db35314
AK
827 hlist_for_each_entry(sp, node, bucket, hash_link)
828 if (sp->gfn == gfn && sp->role.word == role.word) {
829 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
b8688d51 830 pgprintk("%s: found\n", __func__);
4db35314 831 return sp;
cea0f0e7 832 }
dfc5aa00 833 ++vcpu->kvm->stat.mmu_cache_miss;
4db35314
AK
834 sp = kvm_mmu_alloc_page(vcpu, parent_pte);
835 if (!sp)
836 return sp;
b8688d51 837 pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word);
4db35314
AK
838 sp->gfn = gfn;
839 sp->role = role;
840 hlist_add_head(&sp->hash_link, bucket);
374cbac0 841 if (!metaphysical)
4a4c9924 842 rmap_write_protect(vcpu->kvm, gfn);
bed1d1df 843 vcpu->arch.mmu.prefetch_page(vcpu, sp);
4db35314 844 return sp;
cea0f0e7
AK
845}
846
90cb0529 847static void kvm_mmu_page_unlink_children(struct kvm *kvm,
4db35314 848 struct kvm_mmu_page *sp)
a436036b 849{
697fe2e2
AK
850 unsigned i;
851 u64 *pt;
852 u64 ent;
853
4db35314 854 pt = sp->spt;
697fe2e2 855
4db35314 856 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
697fe2e2 857 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
c7addb90 858 if (is_shadow_present_pte(pt[i]))
290fc38d 859 rmap_remove(kvm, &pt[i]);
c7addb90 860 pt[i] = shadow_trap_nonpresent_pte;
697fe2e2 861 }
90cb0529 862 kvm_flush_remote_tlbs(kvm);
697fe2e2
AK
863 return;
864 }
865
866 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
867 ent = pt[i];
868
05da4558
MT
869 if (is_shadow_present_pte(ent)) {
870 if (!is_large_pte(ent)) {
871 ent &= PT64_BASE_ADDR_MASK;
872 mmu_page_remove_parent_pte(page_header(ent),
873 &pt[i]);
874 } else {
875 --kvm->stat.lpages;
876 rmap_remove(kvm, &pt[i]);
877 }
878 }
c7addb90 879 pt[i] = shadow_trap_nonpresent_pte;
697fe2e2 880 }
90cb0529 881 kvm_flush_remote_tlbs(kvm);
a436036b
AK
882}
883
4db35314 884static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
cea0f0e7 885{
4db35314 886 mmu_page_remove_parent_pte(sp, parent_pte);
a436036b
AK
887}
888
12b7d28f
AK
889static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
890{
891 int i;
892
893 for (i = 0; i < KVM_MAX_VCPUS; ++i)
894 if (kvm->vcpus[i])
ad312c7c 895 kvm->vcpus[i]->arch.last_pte_updated = NULL;
12b7d28f
AK
896}
897
4db35314 898static void kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp)
a436036b
AK
899{
900 u64 *parent_pte;
901
4cee5764 902 ++kvm->stat.mmu_shadow_zapped;
4db35314
AK
903 while (sp->multimapped || sp->parent_pte) {
904 if (!sp->multimapped)
905 parent_pte = sp->parent_pte;
a436036b
AK
906 else {
907 struct kvm_pte_chain *chain;
908
4db35314 909 chain = container_of(sp->parent_ptes.first,
a436036b
AK
910 struct kvm_pte_chain, link);
911 parent_pte = chain->parent_ptes[0];
912 }
697fe2e2 913 BUG_ON(!parent_pte);
4db35314 914 kvm_mmu_put_page(sp, parent_pte);
c7addb90 915 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
a436036b 916 }
4db35314
AK
917 kvm_mmu_page_unlink_children(kvm, sp);
918 if (!sp->root_count) {
05da4558
MT
919 if (!sp->role.metaphysical)
920 unaccount_shadowed(kvm, sp->gfn);
4db35314
AK
921 hlist_del(&sp->hash_link);
922 kvm_mmu_free_page(kvm, sp);
2e53d63a 923 } else {
f05e70ac 924 list_move(&sp->link, &kvm->arch.active_mmu_pages);
2e53d63a
MT
925 sp->role.invalid = 1;
926 kvm_reload_remote_mmus(kvm);
927 }
12b7d28f 928 kvm_mmu_reset_last_pte_updated(kvm);
a436036b
AK
929}
930
82ce2c96
IE
931/*
932 * Changing the number of mmu pages allocated to the vm
933 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
934 */
935void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
936{
937 /*
938 * If we set the number of mmu pages to be smaller be than the
939 * number of actived pages , we must to free some mmu pages before we
940 * change the value
941 */
942
f05e70ac 943 if ((kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages) >
82ce2c96 944 kvm_nr_mmu_pages) {
f05e70ac
ZX
945 int n_used_mmu_pages = kvm->arch.n_alloc_mmu_pages
946 - kvm->arch.n_free_mmu_pages;
82ce2c96
IE
947
948 while (n_used_mmu_pages > kvm_nr_mmu_pages) {
949 struct kvm_mmu_page *page;
950
f05e70ac 951 page = container_of(kvm->arch.active_mmu_pages.prev,
82ce2c96
IE
952 struct kvm_mmu_page, link);
953 kvm_mmu_zap_page(kvm, page);
954 n_used_mmu_pages--;
955 }
f05e70ac 956 kvm->arch.n_free_mmu_pages = 0;
82ce2c96
IE
957 }
958 else
f05e70ac
ZX
959 kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages
960 - kvm->arch.n_alloc_mmu_pages;
82ce2c96 961
f05e70ac 962 kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
82ce2c96
IE
963}
964
f67a46f4 965static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
a436036b
AK
966{
967 unsigned index;
968 struct hlist_head *bucket;
4db35314 969 struct kvm_mmu_page *sp;
a436036b
AK
970 struct hlist_node *node, *n;
971 int r;
972
b8688d51 973 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
a436036b 974 r = 0;
1ae0a13d 975 index = kvm_page_table_hashfn(gfn);
f05e70ac 976 bucket = &kvm->arch.mmu_page_hash[index];
4db35314
AK
977 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link)
978 if (sp->gfn == gfn && !sp->role.metaphysical) {
b8688d51 979 pgprintk("%s: gfn %lx role %x\n", __func__, gfn,
4db35314
AK
980 sp->role.word);
981 kvm_mmu_zap_page(kvm, sp);
a436036b
AK
982 r = 1;
983 }
984 return r;
cea0f0e7
AK
985}
986
f67a46f4 987static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
97a0a01e 988{
4db35314 989 struct kvm_mmu_page *sp;
97a0a01e 990
4db35314 991 while ((sp = kvm_mmu_lookup_page(kvm, gfn)) != NULL) {
b8688d51 992 pgprintk("%s: zap %lx %x\n", __func__, gfn, sp->role.word);
4db35314 993 kvm_mmu_zap_page(kvm, sp);
97a0a01e
AK
994 }
995}
996
38c335f1 997static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
6aa8b732 998{
38c335f1 999 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gfn));
4db35314 1000 struct kvm_mmu_page *sp = page_header(__pa(pte));
6aa8b732 1001
4db35314 1002 __set_bit(slot, &sp->slot_bitmap);
6aa8b732
AK
1003}
1004
039576c0
AK
1005struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
1006{
72dc67a6
IE
1007 struct page *page;
1008
ad312c7c 1009 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
039576c0
AK
1010
1011 if (gpa == UNMAPPED_GVA)
1012 return NULL;
72dc67a6
IE
1013
1014 down_read(&current->mm->mmap_sem);
1015 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
1016 up_read(&current->mm->mmap_sem);
1017
1018 return page;
039576c0
AK
1019}
1020
1c4f1fd6
AK
1021static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte,
1022 unsigned pt_access, unsigned pte_access,
1023 int user_fault, int write_fault, int dirty,
05da4558 1024 int *ptwrite, int largepage, gfn_t gfn,
35149e21 1025 pfn_t pfn, bool speculative)
1c4f1fd6
AK
1026{
1027 u64 spte;
15aaa819 1028 int was_rmapped = 0;
75e68e60 1029 int was_writeble = is_writeble_pte(*shadow_pte);
1c4f1fd6 1030
bc750ba8 1031 pgprintk("%s: spte %llx access %x write_fault %d"
1c4f1fd6 1032 " user_fault %d gfn %lx\n",
b8688d51 1033 __func__, *shadow_pte, pt_access,
1c4f1fd6
AK
1034 write_fault, user_fault, gfn);
1035
15aaa819 1036 if (is_rmap_pte(*shadow_pte)) {
05da4558
MT
1037 /*
1038 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
1039 * the parent of the now unreachable PTE.
1040 */
1041 if (largepage && !is_large_pte(*shadow_pte)) {
1042 struct kvm_mmu_page *child;
1043 u64 pte = *shadow_pte;
1044
1045 child = page_header(pte & PT64_BASE_ADDR_MASK);
1046 mmu_page_remove_parent_pte(child, shadow_pte);
35149e21 1047 } else if (pfn != spte_to_pfn(*shadow_pte)) {
15aaa819 1048 pgprintk("hfn old %lx new %lx\n",
35149e21 1049 spte_to_pfn(*shadow_pte), pfn);
15aaa819 1050 rmap_remove(vcpu->kvm, shadow_pte);
05da4558
MT
1051 } else {
1052 if (largepage)
1053 was_rmapped = is_large_pte(*shadow_pte);
1054 else
1055 was_rmapped = 1;
15aaa819 1056 }
15aaa819
MT
1057 }
1058
1c4f1fd6
AK
1059 /*
1060 * We don't set the accessed bit, since we sometimes want to see
1061 * whether the guest actually used the pte (in order to detect
1062 * demand paging).
1063 */
7b52345e 1064 spte = shadow_base_present_pte | shadow_dirty_mask;
947da538
AK
1065 if (!speculative)
1066 pte_access |= PT_ACCESSED_MASK;
1c4f1fd6
AK
1067 if (!dirty)
1068 pte_access &= ~ACC_WRITE_MASK;
7b52345e
SY
1069 if (pte_access & ACC_EXEC_MASK)
1070 spte |= shadow_x_mask;
1071 else
1072 spte |= shadow_nx_mask;
1c4f1fd6 1073 if (pte_access & ACC_USER_MASK)
7b52345e 1074 spte |= shadow_user_mask;
05da4558
MT
1075 if (largepage)
1076 spte |= PT_PAGE_SIZE_MASK;
1c4f1fd6 1077
35149e21 1078 spte |= (u64)pfn << PAGE_SHIFT;
1c4f1fd6
AK
1079
1080 if ((pte_access & ACC_WRITE_MASK)
1081 || (write_fault && !is_write_protection(vcpu) && !user_fault)) {
1082 struct kvm_mmu_page *shadow;
1083
1084 spte |= PT_WRITABLE_MASK;
1085 if (user_fault) {
1086 mmu_unshadow(vcpu->kvm, gfn);
1087 goto unshadowed;
1088 }
1089
1090 shadow = kvm_mmu_lookup_page(vcpu->kvm, gfn);
05da4558
MT
1091 if (shadow ||
1092 (largepage && has_wrprotected_page(vcpu->kvm, gfn))) {
1c4f1fd6 1093 pgprintk("%s: found shadow page for %lx, marking ro\n",
b8688d51 1094 __func__, gfn);
1c4f1fd6
AK
1095 pte_access &= ~ACC_WRITE_MASK;
1096 if (is_writeble_pte(spte)) {
1097 spte &= ~PT_WRITABLE_MASK;
1098 kvm_x86_ops->tlb_flush(vcpu);
1099 }
1100 if (write_fault)
1101 *ptwrite = 1;
1102 }
1103 }
1104
1105unshadowed:
1106
1107 if (pte_access & ACC_WRITE_MASK)
1108 mark_page_dirty(vcpu->kvm, gfn);
1109
b8688d51 1110 pgprintk("%s: setting spte %llx\n", __func__, spte);
05da4558
MT
1111 pgprintk("instantiating %s PTE (%s) at %d (%llx) addr %llx\n",
1112 (spte&PT_PAGE_SIZE_MASK)? "2MB" : "4kB",
1113 (spte&PT_WRITABLE_MASK)?"RW":"R", gfn, spte, shadow_pte);
1c4f1fd6 1114 set_shadow_pte(shadow_pte, spte);
05da4558
MT
1115 if (!was_rmapped && (spte & PT_PAGE_SIZE_MASK)
1116 && (spte & PT_PRESENT_MASK))
1117 ++vcpu->kvm->stat.lpages;
1118
1c4f1fd6
AK
1119 page_header_update_slot(vcpu->kvm, shadow_pte, gfn);
1120 if (!was_rmapped) {
05da4558 1121 rmap_add(vcpu, shadow_pte, gfn, largepage);
1c4f1fd6 1122 if (!is_rmap_pte(*shadow_pte))
35149e21 1123 kvm_release_pfn_clean(pfn);
75e68e60
IE
1124 } else {
1125 if (was_writeble)
35149e21 1126 kvm_release_pfn_dirty(pfn);
75e68e60 1127 else
35149e21 1128 kvm_release_pfn_clean(pfn);
1c4f1fd6 1129 }
1c4f1fd6 1130 if (!ptwrite || !*ptwrite)
ad312c7c 1131 vcpu->arch.last_pte_updated = shadow_pte;
1c4f1fd6
AK
1132}
1133
6aa8b732
AK
1134static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
1135{
1136}
1137
4d9976bb 1138static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
35149e21 1139 int largepage, gfn_t gfn, pfn_t pfn,
05da4558 1140 int level)
6aa8b732 1141{
ad312c7c 1142 hpa_t table_addr = vcpu->arch.mmu.root_hpa;
e833240f 1143 int pt_write = 0;
6aa8b732
AK
1144
1145 for (; ; level--) {
1146 u32 index = PT64_INDEX(v, level);
1147 u64 *table;
1148
1149 ASSERT(VALID_PAGE(table_addr));
1150 table = __va(table_addr);
1151
1152 if (level == 1) {
e833240f 1153 mmu_set_spte(vcpu, &table[index], ACC_ALL, ACC_ALL,
35149e21 1154 0, write, 1, &pt_write, 0, gfn, pfn, false);
05da4558
MT
1155 return pt_write;
1156 }
1157
1158 if (largepage && level == 2) {
1159 mmu_set_spte(vcpu, &table[index], ACC_ALL, ACC_ALL,
35149e21 1160 0, write, 1, &pt_write, 1, gfn, pfn, false);
d196e343 1161 return pt_write;
6aa8b732
AK
1162 }
1163
c7addb90 1164 if (table[index] == shadow_trap_nonpresent_pte) {
25c0de2c 1165 struct kvm_mmu_page *new_table;
cea0f0e7 1166 gfn_t pseudo_gfn;
6aa8b732 1167
cea0f0e7
AK
1168 pseudo_gfn = (v & PT64_DIR_BASE_ADDR_MASK)
1169 >> PAGE_SHIFT;
1170 new_table = kvm_mmu_get_page(vcpu, pseudo_gfn,
1171 v, level - 1,
f7d9c7b7 1172 1, ACC_ALL, &table[index]);
25c0de2c 1173 if (!new_table) {
6aa8b732 1174 pgprintk("nonpaging_map: ENOMEM\n");
35149e21 1175 kvm_release_pfn_clean(pfn);
6aa8b732
AK
1176 return -ENOMEM;
1177 }
1178
1439442c
SY
1179 table[index] = __pa(new_table->spt)
1180 | PT_PRESENT_MASK | PT_WRITABLE_MASK
1181 | shadow_user_mask | shadow_x_mask;
6aa8b732
AK
1182 }
1183 table_addr = table[index] & PT64_BASE_ADDR_MASK;
1184 }
1185}
1186
10589a46
MT
1187static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
1188{
1189 int r;
05da4558 1190 int largepage = 0;
35149e21 1191 pfn_t pfn;
aaee2c94
MT
1192
1193 down_read(&current->mm->mmap_sem);
05da4558
MT
1194 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1195 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1196 largepage = 1;
1197 }
1198
35149e21 1199 pfn = gfn_to_pfn(vcpu->kvm, gfn);
72dc67a6 1200 up_read(&current->mm->mmap_sem);
aaee2c94 1201
d196e343 1202 /* mmio */
35149e21
AL
1203 if (is_error_pfn(pfn)) {
1204 kvm_release_pfn_clean(pfn);
d196e343
AK
1205 return 1;
1206 }
1207
aaee2c94 1208 spin_lock(&vcpu->kvm->mmu_lock);
eb787d10 1209 kvm_mmu_free_some_pages(vcpu);
35149e21 1210 r = __direct_map(vcpu, v, write, largepage, gfn, pfn,
05da4558 1211 PT32E_ROOT_LEVEL);
aaee2c94
MT
1212 spin_unlock(&vcpu->kvm->mmu_lock);
1213
aaee2c94 1214
10589a46
MT
1215 return r;
1216}
1217
1218
c7addb90
AK
1219static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
1220 struct kvm_mmu_page *sp)
1221{
1222 int i;
1223
1224 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1225 sp->spt[i] = shadow_trap_nonpresent_pte;
1226}
1227
17ac10ad
AK
1228static void mmu_free_roots(struct kvm_vcpu *vcpu)
1229{
1230 int i;
4db35314 1231 struct kvm_mmu_page *sp;
17ac10ad 1232
ad312c7c 1233 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
7b53aa56 1234 return;
aaee2c94 1235 spin_lock(&vcpu->kvm->mmu_lock);
ad312c7c
ZX
1236 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1237 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad 1238
4db35314
AK
1239 sp = page_header(root);
1240 --sp->root_count;
2e53d63a
MT
1241 if (!sp->root_count && sp->role.invalid)
1242 kvm_mmu_zap_page(vcpu->kvm, sp);
ad312c7c 1243 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
aaee2c94 1244 spin_unlock(&vcpu->kvm->mmu_lock);
17ac10ad
AK
1245 return;
1246 }
17ac10ad 1247 for (i = 0; i < 4; ++i) {
ad312c7c 1248 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad 1249
417726a3 1250 if (root) {
417726a3 1251 root &= PT64_BASE_ADDR_MASK;
4db35314
AK
1252 sp = page_header(root);
1253 --sp->root_count;
2e53d63a
MT
1254 if (!sp->root_count && sp->role.invalid)
1255 kvm_mmu_zap_page(vcpu->kvm, sp);
417726a3 1256 }
ad312c7c 1257 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 1258 }
aaee2c94 1259 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 1260 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
17ac10ad
AK
1261}
1262
1263static void mmu_alloc_roots(struct kvm_vcpu *vcpu)
1264{
1265 int i;
cea0f0e7 1266 gfn_t root_gfn;
4db35314 1267 struct kvm_mmu_page *sp;
fb72d167 1268 int metaphysical = 0;
3bb65a22 1269
ad312c7c 1270 root_gfn = vcpu->arch.cr3 >> PAGE_SHIFT;
17ac10ad 1271
ad312c7c
ZX
1272 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1273 hpa_t root = vcpu->arch.mmu.root_hpa;
17ac10ad
AK
1274
1275 ASSERT(!VALID_PAGE(root));
fb72d167
JR
1276 if (tdp_enabled)
1277 metaphysical = 1;
4db35314 1278 sp = kvm_mmu_get_page(vcpu, root_gfn, 0,
fb72d167
JR
1279 PT64_ROOT_LEVEL, metaphysical,
1280 ACC_ALL, NULL);
4db35314
AK
1281 root = __pa(sp->spt);
1282 ++sp->root_count;
ad312c7c 1283 vcpu->arch.mmu.root_hpa = root;
17ac10ad
AK
1284 return;
1285 }
fb72d167
JR
1286 metaphysical = !is_paging(vcpu);
1287 if (tdp_enabled)
1288 metaphysical = 1;
17ac10ad 1289 for (i = 0; i < 4; ++i) {
ad312c7c 1290 hpa_t root = vcpu->arch.mmu.pae_root[i];
17ac10ad
AK
1291
1292 ASSERT(!VALID_PAGE(root));
ad312c7c
ZX
1293 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
1294 if (!is_present_pte(vcpu->arch.pdptrs[i])) {
1295 vcpu->arch.mmu.pae_root[i] = 0;
417726a3
AK
1296 continue;
1297 }
ad312c7c
ZX
1298 root_gfn = vcpu->arch.pdptrs[i] >> PAGE_SHIFT;
1299 } else if (vcpu->arch.mmu.root_level == 0)
cea0f0e7 1300 root_gfn = 0;
4db35314 1301 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
fb72d167 1302 PT32_ROOT_LEVEL, metaphysical,
f7d9c7b7 1303 ACC_ALL, NULL);
4db35314
AK
1304 root = __pa(sp->spt);
1305 ++sp->root_count;
ad312c7c 1306 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
17ac10ad 1307 }
ad312c7c 1308 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
17ac10ad
AK
1309}
1310
6aa8b732
AK
1311static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
1312{
1313 return vaddr;
1314}
1315
1316static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
3f3e7124 1317 u32 error_code)
6aa8b732 1318{
e833240f 1319 gfn_t gfn;
e2dec939 1320 int r;
6aa8b732 1321
b8688d51 1322 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
e2dec939
AK
1323 r = mmu_topup_memory_caches(vcpu);
1324 if (r)
1325 return r;
714b93da 1326
6aa8b732 1327 ASSERT(vcpu);
ad312c7c 1328 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 1329
e833240f 1330 gfn = gva >> PAGE_SHIFT;
6aa8b732 1331
e833240f
AK
1332 return nonpaging_map(vcpu, gva & PAGE_MASK,
1333 error_code & PFERR_WRITE_MASK, gfn);
6aa8b732
AK
1334}
1335
fb72d167
JR
1336static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
1337 u32 error_code)
1338{
35149e21 1339 pfn_t pfn;
fb72d167 1340 int r;
05da4558
MT
1341 int largepage = 0;
1342 gfn_t gfn = gpa >> PAGE_SHIFT;
fb72d167
JR
1343
1344 ASSERT(vcpu);
1345 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
1346
1347 r = mmu_topup_memory_caches(vcpu);
1348 if (r)
1349 return r;
1350
1351 down_read(&current->mm->mmap_sem);
05da4558
MT
1352 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1353 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1354 largepage = 1;
1355 }
35149e21 1356 pfn = gfn_to_pfn(vcpu->kvm, gfn);
3200f405 1357 up_read(&current->mm->mmap_sem);
35149e21
AL
1358 if (is_error_pfn(pfn)) {
1359 kvm_release_pfn_clean(pfn);
fb72d167
JR
1360 return 1;
1361 }
1362 spin_lock(&vcpu->kvm->mmu_lock);
1363 kvm_mmu_free_some_pages(vcpu);
1364 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
67253af5 1365 largepage, gfn, pfn, kvm_x86_ops->get_tdp_level());
fb72d167 1366 spin_unlock(&vcpu->kvm->mmu_lock);
fb72d167
JR
1367
1368 return r;
1369}
1370
6aa8b732
AK
1371static void nonpaging_free(struct kvm_vcpu *vcpu)
1372{
17ac10ad 1373 mmu_free_roots(vcpu);
6aa8b732
AK
1374}
1375
1376static int nonpaging_init_context(struct kvm_vcpu *vcpu)
1377{
ad312c7c 1378 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
1379
1380 context->new_cr3 = nonpaging_new_cr3;
1381 context->page_fault = nonpaging_page_fault;
6aa8b732
AK
1382 context->gva_to_gpa = nonpaging_gva_to_gpa;
1383 context->free = nonpaging_free;
c7addb90 1384 context->prefetch_page = nonpaging_prefetch_page;
cea0f0e7 1385 context->root_level = 0;
6aa8b732 1386 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 1387 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
1388 return 0;
1389}
1390
d835dfec 1391void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
6aa8b732 1392{
1165f5fe 1393 ++vcpu->stat.tlb_flush;
cbdd1bea 1394 kvm_x86_ops->tlb_flush(vcpu);
6aa8b732
AK
1395}
1396
1397static void paging_new_cr3(struct kvm_vcpu *vcpu)
1398{
b8688d51 1399 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
cea0f0e7 1400 mmu_free_roots(vcpu);
6aa8b732
AK
1401}
1402
6aa8b732
AK
1403static void inject_page_fault(struct kvm_vcpu *vcpu,
1404 u64 addr,
1405 u32 err_code)
1406{
c3c91fee 1407 kvm_inject_page_fault(vcpu, addr, err_code);
6aa8b732
AK
1408}
1409
6aa8b732
AK
1410static void paging_free(struct kvm_vcpu *vcpu)
1411{
1412 nonpaging_free(vcpu);
1413}
1414
1415#define PTTYPE 64
1416#include "paging_tmpl.h"
1417#undef PTTYPE
1418
1419#define PTTYPE 32
1420#include "paging_tmpl.h"
1421#undef PTTYPE
1422
17ac10ad 1423static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
6aa8b732 1424{
ad312c7c 1425 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
1426
1427 ASSERT(is_pae(vcpu));
1428 context->new_cr3 = paging_new_cr3;
1429 context->page_fault = paging64_page_fault;
6aa8b732 1430 context->gva_to_gpa = paging64_gva_to_gpa;
c7addb90 1431 context->prefetch_page = paging64_prefetch_page;
6aa8b732 1432 context->free = paging_free;
17ac10ad
AK
1433 context->root_level = level;
1434 context->shadow_root_level = level;
17c3ba9d 1435 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
1436 return 0;
1437}
1438
17ac10ad
AK
1439static int paging64_init_context(struct kvm_vcpu *vcpu)
1440{
1441 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
1442}
1443
6aa8b732
AK
1444static int paging32_init_context(struct kvm_vcpu *vcpu)
1445{
ad312c7c 1446 struct kvm_mmu *context = &vcpu->arch.mmu;
6aa8b732
AK
1447
1448 context->new_cr3 = paging_new_cr3;
1449 context->page_fault = paging32_page_fault;
6aa8b732
AK
1450 context->gva_to_gpa = paging32_gva_to_gpa;
1451 context->free = paging_free;
c7addb90 1452 context->prefetch_page = paging32_prefetch_page;
6aa8b732
AK
1453 context->root_level = PT32_ROOT_LEVEL;
1454 context->shadow_root_level = PT32E_ROOT_LEVEL;
17c3ba9d 1455 context->root_hpa = INVALID_PAGE;
6aa8b732
AK
1456 return 0;
1457}
1458
1459static int paging32E_init_context(struct kvm_vcpu *vcpu)
1460{
17ac10ad 1461 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
6aa8b732
AK
1462}
1463
fb72d167
JR
1464static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
1465{
1466 struct kvm_mmu *context = &vcpu->arch.mmu;
1467
1468 context->new_cr3 = nonpaging_new_cr3;
1469 context->page_fault = tdp_page_fault;
1470 context->free = nonpaging_free;
1471 context->prefetch_page = nonpaging_prefetch_page;
67253af5 1472 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
fb72d167
JR
1473 context->root_hpa = INVALID_PAGE;
1474
1475 if (!is_paging(vcpu)) {
1476 context->gva_to_gpa = nonpaging_gva_to_gpa;
1477 context->root_level = 0;
1478 } else if (is_long_mode(vcpu)) {
1479 context->gva_to_gpa = paging64_gva_to_gpa;
1480 context->root_level = PT64_ROOT_LEVEL;
1481 } else if (is_pae(vcpu)) {
1482 context->gva_to_gpa = paging64_gva_to_gpa;
1483 context->root_level = PT32E_ROOT_LEVEL;
1484 } else {
1485 context->gva_to_gpa = paging32_gva_to_gpa;
1486 context->root_level = PT32_ROOT_LEVEL;
1487 }
1488
1489 return 0;
1490}
1491
1492static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
6aa8b732
AK
1493{
1494 ASSERT(vcpu);
ad312c7c 1495 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732
AK
1496
1497 if (!is_paging(vcpu))
1498 return nonpaging_init_context(vcpu);
a9058ecd 1499 else if (is_long_mode(vcpu))
6aa8b732
AK
1500 return paging64_init_context(vcpu);
1501 else if (is_pae(vcpu))
1502 return paging32E_init_context(vcpu);
1503 else
1504 return paging32_init_context(vcpu);
1505}
1506
fb72d167
JR
1507static int init_kvm_mmu(struct kvm_vcpu *vcpu)
1508{
35149e21
AL
1509 vcpu->arch.update_pte.pfn = bad_pfn;
1510
fb72d167
JR
1511 if (tdp_enabled)
1512 return init_kvm_tdp_mmu(vcpu);
1513 else
1514 return init_kvm_softmmu(vcpu);
1515}
1516
6aa8b732
AK
1517static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
1518{
1519 ASSERT(vcpu);
ad312c7c
ZX
1520 if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
1521 vcpu->arch.mmu.free(vcpu);
1522 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
6aa8b732
AK
1523 }
1524}
1525
1526int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
17c3ba9d
AK
1527{
1528 destroy_kvm_mmu(vcpu);
1529 return init_kvm_mmu(vcpu);
1530}
8668a3c4 1531EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
17c3ba9d
AK
1532
1533int kvm_mmu_load(struct kvm_vcpu *vcpu)
6aa8b732 1534{
714b93da
AK
1535 int r;
1536
e2dec939 1537 r = mmu_topup_memory_caches(vcpu);
17c3ba9d
AK
1538 if (r)
1539 goto out;
aaee2c94 1540 spin_lock(&vcpu->kvm->mmu_lock);
eb787d10 1541 kvm_mmu_free_some_pages(vcpu);
17c3ba9d 1542 mmu_alloc_roots(vcpu);
aaee2c94 1543 spin_unlock(&vcpu->kvm->mmu_lock);
ad312c7c 1544 kvm_x86_ops->set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
17c3ba9d 1545 kvm_mmu_flush_tlb(vcpu);
714b93da
AK
1546out:
1547 return r;
6aa8b732 1548}
17c3ba9d
AK
1549EXPORT_SYMBOL_GPL(kvm_mmu_load);
1550
1551void kvm_mmu_unload(struct kvm_vcpu *vcpu)
1552{
1553 mmu_free_roots(vcpu);
1554}
6aa8b732 1555
09072daf 1556static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
4db35314 1557 struct kvm_mmu_page *sp,
ac1b714e
AK
1558 u64 *spte)
1559{
1560 u64 pte;
1561 struct kvm_mmu_page *child;
1562
1563 pte = *spte;
c7addb90 1564 if (is_shadow_present_pte(pte)) {
05da4558
MT
1565 if (sp->role.level == PT_PAGE_TABLE_LEVEL ||
1566 is_large_pte(pte))
290fc38d 1567 rmap_remove(vcpu->kvm, spte);
ac1b714e
AK
1568 else {
1569 child = page_header(pte & PT64_BASE_ADDR_MASK);
90cb0529 1570 mmu_page_remove_parent_pte(child, spte);
ac1b714e
AK
1571 }
1572 }
c7addb90 1573 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
05da4558
MT
1574 if (is_large_pte(pte))
1575 --vcpu->kvm->stat.lpages;
ac1b714e
AK
1576}
1577
0028425f 1578static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
4db35314 1579 struct kvm_mmu_page *sp,
0028425f 1580 u64 *spte,
489f1d65 1581 const void *new)
0028425f 1582{
05da4558
MT
1583 if ((sp->role.level != PT_PAGE_TABLE_LEVEL)
1584 && !vcpu->arch.update_pte.largepage) {
4cee5764 1585 ++vcpu->kvm->stat.mmu_pde_zapped;
0028425f 1586 return;
4cee5764 1587 }
0028425f 1588
4cee5764 1589 ++vcpu->kvm->stat.mmu_pte_updated;
4db35314 1590 if (sp->role.glevels == PT32_ROOT_LEVEL)
489f1d65 1591 paging32_update_pte(vcpu, sp, spte, new);
0028425f 1592 else
489f1d65 1593 paging64_update_pte(vcpu, sp, spte, new);
0028425f
AK
1594}
1595
79539cec
AK
1596static bool need_remote_flush(u64 old, u64 new)
1597{
1598 if (!is_shadow_present_pte(old))
1599 return false;
1600 if (!is_shadow_present_pte(new))
1601 return true;
1602 if ((old ^ new) & PT64_BASE_ADDR_MASK)
1603 return true;
1604 old ^= PT64_NX_MASK;
1605 new ^= PT64_NX_MASK;
1606 return (old & ~new & PT64_PERM_MASK) != 0;
1607}
1608
1609static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, u64 old, u64 new)
1610{
1611 if (need_remote_flush(old, new))
1612 kvm_flush_remote_tlbs(vcpu->kvm);
1613 else
1614 kvm_mmu_flush_tlb(vcpu);
1615}
1616
12b7d28f
AK
1617static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
1618{
ad312c7c 1619 u64 *spte = vcpu->arch.last_pte_updated;
12b7d28f 1620
7b52345e 1621 return !!(spte && (*spte & shadow_accessed_mask));
12b7d28f
AK
1622}
1623
d7824fff
AK
1624static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
1625 const u8 *new, int bytes)
1626{
1627 gfn_t gfn;
1628 int r;
1629 u64 gpte = 0;
35149e21 1630 pfn_t pfn;
d7824fff 1631
05da4558
MT
1632 vcpu->arch.update_pte.largepage = 0;
1633
d7824fff
AK
1634 if (bytes != 4 && bytes != 8)
1635 return;
1636
1637 /*
1638 * Assume that the pte write on a page table of the same type
1639 * as the current vcpu paging mode. This is nearly always true
1640 * (might be false while changing modes). Note it is verified later
1641 * by update_pte().
1642 */
1643 if (is_pae(vcpu)) {
1644 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
1645 if ((bytes == 4) && (gpa % 4 == 0)) {
1646 r = kvm_read_guest(vcpu->kvm, gpa & ~(u64)7, &gpte, 8);
1647 if (r)
1648 return;
1649 memcpy((void *)&gpte + (gpa % 8), new, 4);
1650 } else if ((bytes == 8) && (gpa % 8 == 0)) {
1651 memcpy((void *)&gpte, new, 8);
1652 }
1653 } else {
1654 if ((bytes == 4) && (gpa % 4 == 0))
1655 memcpy((void *)&gpte, new, 4);
1656 }
1657 if (!is_present_pte(gpte))
1658 return;
1659 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
72dc67a6 1660
05da4558
MT
1661 down_read(&current->mm->mmap_sem);
1662 if (is_large_pte(gpte) && is_largepage_backed(vcpu, gfn)) {
1663 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1664 vcpu->arch.update_pte.largepage = 1;
1665 }
35149e21 1666 pfn = gfn_to_pfn(vcpu->kvm, gfn);
05da4558 1667 up_read(&current->mm->mmap_sem);
72dc67a6 1668
35149e21
AL
1669 if (is_error_pfn(pfn)) {
1670 kvm_release_pfn_clean(pfn);
d196e343
AK
1671 return;
1672 }
d7824fff 1673 vcpu->arch.update_pte.gfn = gfn;
35149e21 1674 vcpu->arch.update_pte.pfn = pfn;
d7824fff
AK
1675}
1676
09072daf 1677void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
fe551881 1678 const u8 *new, int bytes)
da4a00f0 1679{
9b7a0325 1680 gfn_t gfn = gpa >> PAGE_SHIFT;
4db35314 1681 struct kvm_mmu_page *sp;
0e7bc4b9 1682 struct hlist_node *node, *n;
9b7a0325
AK
1683 struct hlist_head *bucket;
1684 unsigned index;
489f1d65 1685 u64 entry, gentry;
9b7a0325 1686 u64 *spte;
9b7a0325 1687 unsigned offset = offset_in_page(gpa);
0e7bc4b9 1688 unsigned pte_size;
9b7a0325 1689 unsigned page_offset;
0e7bc4b9 1690 unsigned misaligned;
fce0657f 1691 unsigned quadrant;
9b7a0325 1692 int level;
86a5ba02 1693 int flooded = 0;
ac1b714e 1694 int npte;
489f1d65 1695 int r;
9b7a0325 1696
b8688d51 1697 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
d7824fff 1698 mmu_guess_page_from_pte_write(vcpu, gpa, new, bytes);
aaee2c94 1699 spin_lock(&vcpu->kvm->mmu_lock);
eb787d10 1700 kvm_mmu_free_some_pages(vcpu);
4cee5764 1701 ++vcpu->kvm->stat.mmu_pte_write;
c7addb90 1702 kvm_mmu_audit(vcpu, "pre pte write");
ad312c7c 1703 if (gfn == vcpu->arch.last_pt_write_gfn
12b7d28f 1704 && !last_updated_pte_accessed(vcpu)) {
ad312c7c
ZX
1705 ++vcpu->arch.last_pt_write_count;
1706 if (vcpu->arch.last_pt_write_count >= 3)
86a5ba02
AK
1707 flooded = 1;
1708 } else {
ad312c7c
ZX
1709 vcpu->arch.last_pt_write_gfn = gfn;
1710 vcpu->arch.last_pt_write_count = 1;
1711 vcpu->arch.last_pte_updated = NULL;
86a5ba02 1712 }
1ae0a13d 1713 index = kvm_page_table_hashfn(gfn);
f05e70ac 1714 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
4db35314
AK
1715 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link) {
1716 if (sp->gfn != gfn || sp->role.metaphysical)
9b7a0325 1717 continue;
4db35314 1718 pte_size = sp->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
0e7bc4b9 1719 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
e925c5ba 1720 misaligned |= bytes < 4;
86a5ba02 1721 if (misaligned || flooded) {
0e7bc4b9
AK
1722 /*
1723 * Misaligned accesses are too much trouble to fix
1724 * up; also, they usually indicate a page is not used
1725 * as a page table.
86a5ba02
AK
1726 *
1727 * If we're seeing too many writes to a page,
1728 * it may no longer be a page table, or we may be
1729 * forking, in which case it is better to unmap the
1730 * page.
0e7bc4b9
AK
1731 */
1732 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4db35314
AK
1733 gpa, bytes, sp->role.word);
1734 kvm_mmu_zap_page(vcpu->kvm, sp);
4cee5764 1735 ++vcpu->kvm->stat.mmu_flooded;
0e7bc4b9
AK
1736 continue;
1737 }
9b7a0325 1738 page_offset = offset;
4db35314 1739 level = sp->role.level;
ac1b714e 1740 npte = 1;
4db35314 1741 if (sp->role.glevels == PT32_ROOT_LEVEL) {
ac1b714e
AK
1742 page_offset <<= 1; /* 32->64 */
1743 /*
1744 * A 32-bit pde maps 4MB while the shadow pdes map
1745 * only 2MB. So we need to double the offset again
1746 * and zap two pdes instead of one.
1747 */
1748 if (level == PT32_ROOT_LEVEL) {
6b8d0f9b 1749 page_offset &= ~7; /* kill rounding error */
ac1b714e
AK
1750 page_offset <<= 1;
1751 npte = 2;
1752 }
fce0657f 1753 quadrant = page_offset >> PAGE_SHIFT;
9b7a0325 1754 page_offset &= ~PAGE_MASK;
4db35314 1755 if (quadrant != sp->role.quadrant)
fce0657f 1756 continue;
9b7a0325 1757 }
4db35314 1758 spte = &sp->spt[page_offset / sizeof(*spte)];
489f1d65
DE
1759 if ((gpa & (pte_size - 1)) || (bytes < pte_size)) {
1760 gentry = 0;
1761 r = kvm_read_guest_atomic(vcpu->kvm,
1762 gpa & ~(u64)(pte_size - 1),
1763 &gentry, pte_size);
1764 new = (const void *)&gentry;
1765 if (r < 0)
1766 new = NULL;
1767 }
ac1b714e 1768 while (npte--) {
79539cec 1769 entry = *spte;
4db35314 1770 mmu_pte_write_zap_pte(vcpu, sp, spte);
489f1d65
DE
1771 if (new)
1772 mmu_pte_write_new_pte(vcpu, sp, spte, new);
79539cec 1773 mmu_pte_write_flush_tlb(vcpu, entry, *spte);
ac1b714e 1774 ++spte;
9b7a0325 1775 }
9b7a0325 1776 }
c7addb90 1777 kvm_mmu_audit(vcpu, "post pte write");
aaee2c94 1778 spin_unlock(&vcpu->kvm->mmu_lock);
35149e21
AL
1779 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
1780 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
1781 vcpu->arch.update_pte.pfn = bad_pfn;
d7824fff 1782 }
da4a00f0
AK
1783}
1784
a436036b
AK
1785int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
1786{
10589a46
MT
1787 gpa_t gpa;
1788 int r;
a436036b 1789
10589a46 1790 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
10589a46 1791
aaee2c94 1792 spin_lock(&vcpu->kvm->mmu_lock);
10589a46 1793 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
aaee2c94 1794 spin_unlock(&vcpu->kvm->mmu_lock);
10589a46 1795 return r;
a436036b
AK
1796}
1797
22d95b12 1798void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
ebeace86 1799{
f05e70ac 1800 while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
4db35314 1801 struct kvm_mmu_page *sp;
ebeace86 1802
f05e70ac 1803 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
4db35314
AK
1804 struct kvm_mmu_page, link);
1805 kvm_mmu_zap_page(vcpu->kvm, sp);
4cee5764 1806 ++vcpu->kvm->stat.mmu_recycled;
ebeace86
AK
1807 }
1808}
ebeace86 1809
3067714c
AK
1810int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
1811{
1812 int r;
1813 enum emulation_result er;
1814
ad312c7c 1815 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
3067714c
AK
1816 if (r < 0)
1817 goto out;
1818
1819 if (!r) {
1820 r = 1;
1821 goto out;
1822 }
1823
b733bfb5
AK
1824 r = mmu_topup_memory_caches(vcpu);
1825 if (r)
1826 goto out;
1827
3067714c 1828 er = emulate_instruction(vcpu, vcpu->run, cr2, error_code, 0);
3067714c
AK
1829
1830 switch (er) {
1831 case EMULATE_DONE:
1832 return 1;
1833 case EMULATE_DO_MMIO:
1834 ++vcpu->stat.mmio_exits;
1835 return 0;
1836 case EMULATE_FAIL:
1837 kvm_report_emulation_failure(vcpu, "pagetable");
1838 return 1;
1839 default:
1840 BUG();
1841 }
1842out:
3067714c
AK
1843 return r;
1844}
1845EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
1846
18552672
JR
1847void kvm_enable_tdp(void)
1848{
1849 tdp_enabled = true;
1850}
1851EXPORT_SYMBOL_GPL(kvm_enable_tdp);
1852
6aa8b732
AK
1853static void free_mmu_pages(struct kvm_vcpu *vcpu)
1854{
4db35314 1855 struct kvm_mmu_page *sp;
6aa8b732 1856
f05e70ac
ZX
1857 while (!list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
1858 sp = container_of(vcpu->kvm->arch.active_mmu_pages.next,
4db35314
AK
1859 struct kvm_mmu_page, link);
1860 kvm_mmu_zap_page(vcpu->kvm, sp);
f51234c2 1861 }
ad312c7c 1862 free_page((unsigned long)vcpu->arch.mmu.pae_root);
6aa8b732
AK
1863}
1864
1865static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
1866{
17ac10ad 1867 struct page *page;
6aa8b732
AK
1868 int i;
1869
1870 ASSERT(vcpu);
1871
f05e70ac
ZX
1872 if (vcpu->kvm->arch.n_requested_mmu_pages)
1873 vcpu->kvm->arch.n_free_mmu_pages =
1874 vcpu->kvm->arch.n_requested_mmu_pages;
82ce2c96 1875 else
f05e70ac
ZX
1876 vcpu->kvm->arch.n_free_mmu_pages =
1877 vcpu->kvm->arch.n_alloc_mmu_pages;
17ac10ad
AK
1878 /*
1879 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
1880 * Therefore we need to allocate shadow page tables in the first
1881 * 4GB of memory, which happens to fit the DMA32 zone.
1882 */
1883 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
1884 if (!page)
1885 goto error_1;
ad312c7c 1886 vcpu->arch.mmu.pae_root = page_address(page);
17ac10ad 1887 for (i = 0; i < 4; ++i)
ad312c7c 1888 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
17ac10ad 1889
6aa8b732
AK
1890 return 0;
1891
1892error_1:
1893 free_mmu_pages(vcpu);
1894 return -ENOMEM;
1895}
1896
8018c27b 1897int kvm_mmu_create(struct kvm_vcpu *vcpu)
6aa8b732 1898{
6aa8b732 1899 ASSERT(vcpu);
ad312c7c 1900 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
6aa8b732 1901
8018c27b
IM
1902 return alloc_mmu_pages(vcpu);
1903}
6aa8b732 1904
8018c27b
IM
1905int kvm_mmu_setup(struct kvm_vcpu *vcpu)
1906{
1907 ASSERT(vcpu);
ad312c7c 1908 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
2c264957 1909
8018c27b 1910 return init_kvm_mmu(vcpu);
6aa8b732
AK
1911}
1912
1913void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
1914{
1915 ASSERT(vcpu);
1916
1917 destroy_kvm_mmu(vcpu);
1918 free_mmu_pages(vcpu);
714b93da 1919 mmu_free_memory_caches(vcpu);
6aa8b732
AK
1920}
1921
90cb0529 1922void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
6aa8b732 1923{
4db35314 1924 struct kvm_mmu_page *sp;
6aa8b732 1925
f05e70ac 1926 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
6aa8b732
AK
1927 int i;
1928 u64 *pt;
1929
4db35314 1930 if (!test_bit(slot, &sp->slot_bitmap))
6aa8b732
AK
1931 continue;
1932
4db35314 1933 pt = sp->spt;
6aa8b732
AK
1934 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1935 /* avoid RMW */
9647c14c 1936 if (pt[i] & PT_WRITABLE_MASK)
6aa8b732 1937 pt[i] &= ~PT_WRITABLE_MASK;
6aa8b732
AK
1938 }
1939}
37a7d8b0 1940
90cb0529 1941void kvm_mmu_zap_all(struct kvm *kvm)
e0fa826f 1942{
4db35314 1943 struct kvm_mmu_page *sp, *node;
e0fa826f 1944
aaee2c94 1945 spin_lock(&kvm->mmu_lock);
f05e70ac 1946 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
4db35314 1947 kvm_mmu_zap_page(kvm, sp);
aaee2c94 1948 spin_unlock(&kvm->mmu_lock);
e0fa826f 1949
90cb0529 1950 kvm_flush_remote_tlbs(kvm);
e0fa826f
DL
1951}
1952
3ee16c81
IE
1953void kvm_mmu_remove_one_alloc_mmu_page(struct kvm *kvm)
1954{
1955 struct kvm_mmu_page *page;
1956
1957 page = container_of(kvm->arch.active_mmu_pages.prev,
1958 struct kvm_mmu_page, link);
1959 kvm_mmu_zap_page(kvm, page);
1960}
1961
1962static int mmu_shrink(int nr_to_scan, gfp_t gfp_mask)
1963{
1964 struct kvm *kvm;
1965 struct kvm *kvm_freed = NULL;
1966 int cache_count = 0;
1967
1968 spin_lock(&kvm_lock);
1969
1970 list_for_each_entry(kvm, &vm_list, vm_list) {
1971 int npages;
1972
1973 spin_lock(&kvm->mmu_lock);
1974 npages = kvm->arch.n_alloc_mmu_pages -
1975 kvm->arch.n_free_mmu_pages;
1976 cache_count += npages;
1977 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
1978 kvm_mmu_remove_one_alloc_mmu_page(kvm);
1979 cache_count--;
1980 kvm_freed = kvm;
1981 }
1982 nr_to_scan--;
1983
1984 spin_unlock(&kvm->mmu_lock);
1985 }
1986 if (kvm_freed)
1987 list_move_tail(&kvm_freed->vm_list, &vm_list);
1988
1989 spin_unlock(&kvm_lock);
1990
1991 return cache_count;
1992}
1993
1994static struct shrinker mmu_shrinker = {
1995 .shrink = mmu_shrink,
1996 .seeks = DEFAULT_SEEKS * 10,
1997};
1998
1999void mmu_destroy_caches(void)
b5a33a75
AK
2000{
2001 if (pte_chain_cache)
2002 kmem_cache_destroy(pte_chain_cache);
2003 if (rmap_desc_cache)
2004 kmem_cache_destroy(rmap_desc_cache);
d3d25b04
AK
2005 if (mmu_page_header_cache)
2006 kmem_cache_destroy(mmu_page_header_cache);
b5a33a75
AK
2007}
2008
3ee16c81
IE
2009void kvm_mmu_module_exit(void)
2010{
2011 mmu_destroy_caches();
2012 unregister_shrinker(&mmu_shrinker);
2013}
2014
b5a33a75
AK
2015int kvm_mmu_module_init(void)
2016{
2017 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
2018 sizeof(struct kvm_pte_chain),
20c2df83 2019 0, 0, NULL);
b5a33a75
AK
2020 if (!pte_chain_cache)
2021 goto nomem;
2022 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
2023 sizeof(struct kvm_rmap_desc),
20c2df83 2024 0, 0, NULL);
b5a33a75
AK
2025 if (!rmap_desc_cache)
2026 goto nomem;
2027
d3d25b04
AK
2028 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
2029 sizeof(struct kvm_mmu_page),
20c2df83 2030 0, 0, NULL);
d3d25b04
AK
2031 if (!mmu_page_header_cache)
2032 goto nomem;
2033
3ee16c81
IE
2034 register_shrinker(&mmu_shrinker);
2035
b5a33a75
AK
2036 return 0;
2037
2038nomem:
3ee16c81 2039 mmu_destroy_caches();
b5a33a75
AK
2040 return -ENOMEM;
2041}
2042
3ad82a7e
ZX
2043/*
2044 * Caculate mmu pages needed for kvm.
2045 */
2046unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
2047{
2048 int i;
2049 unsigned int nr_mmu_pages;
2050 unsigned int nr_pages = 0;
2051
2052 for (i = 0; i < kvm->nmemslots; i++)
2053 nr_pages += kvm->memslots[i].npages;
2054
2055 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
2056 nr_mmu_pages = max(nr_mmu_pages,
2057 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
2058
2059 return nr_mmu_pages;
2060}
2061
2f333bcb
MT
2062static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2063 unsigned len)
2064{
2065 if (len > buffer->len)
2066 return NULL;
2067 return buffer->ptr;
2068}
2069
2070static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2071 unsigned len)
2072{
2073 void *ret;
2074
2075 ret = pv_mmu_peek_buffer(buffer, len);
2076 if (!ret)
2077 return ret;
2078 buffer->ptr += len;
2079 buffer->len -= len;
2080 buffer->processed += len;
2081 return ret;
2082}
2083
2084static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
2085 gpa_t addr, gpa_t value)
2086{
2087 int bytes = 8;
2088 int r;
2089
2090 if (!is_long_mode(vcpu) && !is_pae(vcpu))
2091 bytes = 4;
2092
2093 r = mmu_topup_memory_caches(vcpu);
2094 if (r)
2095 return r;
2096
3200f405 2097 if (!emulator_write_phys(vcpu, addr, &value, bytes))
2f333bcb
MT
2098 return -EFAULT;
2099
2100 return 1;
2101}
2102
2103static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2104{
2105 kvm_x86_ops->tlb_flush(vcpu);
2106 return 1;
2107}
2108
2109static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
2110{
2111 spin_lock(&vcpu->kvm->mmu_lock);
2112 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
2113 spin_unlock(&vcpu->kvm->mmu_lock);
2114 return 1;
2115}
2116
2117static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
2118 struct kvm_pv_mmu_op_buffer *buffer)
2119{
2120 struct kvm_mmu_op_header *header;
2121
2122 header = pv_mmu_peek_buffer(buffer, sizeof *header);
2123 if (!header)
2124 return 0;
2125 switch (header->op) {
2126 case KVM_MMU_OP_WRITE_PTE: {
2127 struct kvm_mmu_op_write_pte *wpte;
2128
2129 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
2130 if (!wpte)
2131 return 0;
2132 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
2133 wpte->pte_val);
2134 }
2135 case KVM_MMU_OP_FLUSH_TLB: {
2136 struct kvm_mmu_op_flush_tlb *ftlb;
2137
2138 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
2139 if (!ftlb)
2140 return 0;
2141 return kvm_pv_mmu_flush_tlb(vcpu);
2142 }
2143 case KVM_MMU_OP_RELEASE_PT: {
2144 struct kvm_mmu_op_release_pt *rpt;
2145
2146 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
2147 if (!rpt)
2148 return 0;
2149 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
2150 }
2151 default: return 0;
2152 }
2153}
2154
2155int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
2156 gpa_t addr, unsigned long *ret)
2157{
2158 int r;
2159 struct kvm_pv_mmu_op_buffer buffer;
2160
2f333bcb
MT
2161 buffer.ptr = buffer.buf;
2162 buffer.len = min_t(unsigned long, bytes, sizeof buffer.buf);
2163 buffer.processed = 0;
2164
2165 r = kvm_read_guest(vcpu->kvm, addr, buffer.buf, buffer.len);
2166 if (r)
2167 goto out;
2168
2169 while (buffer.len) {
2170 r = kvm_pv_mmu_op_one(vcpu, &buffer);
2171 if (r < 0)
2172 goto out;
2173 if (r == 0)
2174 break;
2175 }
2176
2177 r = 1;
2178out:
2179 *ret = buffer.processed;
2f333bcb
MT
2180 return r;
2181}
2182
37a7d8b0
AK
2183#ifdef AUDIT
2184
2185static const char *audit_msg;
2186
2187static gva_t canonicalize(gva_t gva)
2188{
2189#ifdef CONFIG_X86_64
2190 gva = (long long)(gva << 16) >> 16;
2191#endif
2192 return gva;
2193}
2194
2195static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
2196 gva_t va, int level)
2197{
2198 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
2199 int i;
2200 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
2201
2202 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
2203 u64 ent = pt[i];
2204
c7addb90 2205 if (ent == shadow_trap_nonpresent_pte)
37a7d8b0
AK
2206 continue;
2207
2208 va = canonicalize(va);
c7addb90
AK
2209 if (level > 1) {
2210 if (ent == shadow_notrap_nonpresent_pte)
2211 printk(KERN_ERR "audit: (%s) nontrapping pte"
2212 " in nonleaf level: levels %d gva %lx"
2213 " level %d pte %llx\n", audit_msg,
ad312c7c 2214 vcpu->arch.mmu.root_level, va, level, ent);
c7addb90 2215
37a7d8b0 2216 audit_mappings_page(vcpu, ent, va, level - 1);
c7addb90 2217 } else {
ad312c7c 2218 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, va);
35149e21 2219 hpa_t hpa = (hpa_t)gpa_to_pfn(vcpu, gpa) << PAGE_SHIFT;
37a7d8b0 2220
c7addb90 2221 if (is_shadow_present_pte(ent)
37a7d8b0 2222 && (ent & PT64_BASE_ADDR_MASK) != hpa)
c7addb90
AK
2223 printk(KERN_ERR "xx audit error: (%s) levels %d"
2224 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
ad312c7c 2225 audit_msg, vcpu->arch.mmu.root_level,
d77c26fc
MD
2226 va, gpa, hpa, ent,
2227 is_shadow_present_pte(ent));
c7addb90
AK
2228 else if (ent == shadow_notrap_nonpresent_pte
2229 && !is_error_hpa(hpa))
2230 printk(KERN_ERR "audit: (%s) notrap shadow,"
2231 " valid guest gva %lx\n", audit_msg, va);
35149e21 2232 kvm_release_pfn_clean(pfn);
c7addb90 2233
37a7d8b0
AK
2234 }
2235 }
2236}
2237
2238static void audit_mappings(struct kvm_vcpu *vcpu)
2239{
1ea252af 2240 unsigned i;
37a7d8b0 2241
ad312c7c
ZX
2242 if (vcpu->arch.mmu.root_level == 4)
2243 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
37a7d8b0
AK
2244 else
2245 for (i = 0; i < 4; ++i)
ad312c7c 2246 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
37a7d8b0 2247 audit_mappings_page(vcpu,
ad312c7c 2248 vcpu->arch.mmu.pae_root[i],
37a7d8b0
AK
2249 i << 30,
2250 2);
2251}
2252
2253static int count_rmaps(struct kvm_vcpu *vcpu)
2254{
2255 int nmaps = 0;
2256 int i, j, k;
2257
2258 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
2259 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
2260 struct kvm_rmap_desc *d;
2261
2262 for (j = 0; j < m->npages; ++j) {
290fc38d 2263 unsigned long *rmapp = &m->rmap[j];
37a7d8b0 2264
290fc38d 2265 if (!*rmapp)
37a7d8b0 2266 continue;
290fc38d 2267 if (!(*rmapp & 1)) {
37a7d8b0
AK
2268 ++nmaps;
2269 continue;
2270 }
290fc38d 2271 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
37a7d8b0
AK
2272 while (d) {
2273 for (k = 0; k < RMAP_EXT; ++k)
2274 if (d->shadow_ptes[k])
2275 ++nmaps;
2276 else
2277 break;
2278 d = d->more;
2279 }
2280 }
2281 }
2282 return nmaps;
2283}
2284
2285static int count_writable_mappings(struct kvm_vcpu *vcpu)
2286{
2287 int nmaps = 0;
4db35314 2288 struct kvm_mmu_page *sp;
37a7d8b0
AK
2289 int i;
2290
f05e70ac 2291 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
4db35314 2292 u64 *pt = sp->spt;
37a7d8b0 2293
4db35314 2294 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
37a7d8b0
AK
2295 continue;
2296
2297 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
2298 u64 ent = pt[i];
2299
2300 if (!(ent & PT_PRESENT_MASK))
2301 continue;
2302 if (!(ent & PT_WRITABLE_MASK))
2303 continue;
2304 ++nmaps;
2305 }
2306 }
2307 return nmaps;
2308}
2309
2310static void audit_rmap(struct kvm_vcpu *vcpu)
2311{
2312 int n_rmap = count_rmaps(vcpu);
2313 int n_actual = count_writable_mappings(vcpu);
2314
2315 if (n_rmap != n_actual)
2316 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
b8688d51 2317 __func__, audit_msg, n_rmap, n_actual);
37a7d8b0
AK
2318}
2319
2320static void audit_write_protection(struct kvm_vcpu *vcpu)
2321{
4db35314 2322 struct kvm_mmu_page *sp;
290fc38d
IE
2323 struct kvm_memory_slot *slot;
2324 unsigned long *rmapp;
2325 gfn_t gfn;
37a7d8b0 2326
f05e70ac 2327 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
4db35314 2328 if (sp->role.metaphysical)
37a7d8b0
AK
2329 continue;
2330
4db35314
AK
2331 slot = gfn_to_memslot(vcpu->kvm, sp->gfn);
2332 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
290fc38d
IE
2333 rmapp = &slot->rmap[gfn - slot->base_gfn];
2334 if (*rmapp)
37a7d8b0
AK
2335 printk(KERN_ERR "%s: (%s) shadow page has writable"
2336 " mappings: gfn %lx role %x\n",
b8688d51 2337 __func__, audit_msg, sp->gfn,
4db35314 2338 sp->role.word);
37a7d8b0
AK
2339 }
2340}
2341
2342static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
2343{
2344 int olddbg = dbg;
2345
2346 dbg = 0;
2347 audit_msg = msg;
2348 audit_rmap(vcpu);
2349 audit_write_protection(vcpu);
2350 audit_mappings(vcpu);
2351 dbg = olddbg;
2352}
2353
2354#endif
This page took 0.316629 seconds and 5 git commands to generate.