blob: 49a10d0083004a89b31071c2edea062747ffae6b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
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 */
Avi Kivity6aa8b732006-12-10 02:21:36 -080019
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080021
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Avi Kivitye4956062007-06-28 14:15:57 -040023#include <linux/types.h>
24#include <linux/string.h>
25#include <linux/mm.h>
26#include <linux/highmem.h>
27#include <linux/module.h>
Izik Eidus448353c2007-11-26 14:08:14 +020028#include <linux/swap.h>
Marcelo Tosatti05da4552008-02-23 11:44:30 -030029#include <linux/hugetlb.h>
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050030#include <linux/compiler.h>
Avi Kivitye4956062007-06-28 14:15:57 -040031
32#include <asm/page.h>
33#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020034#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020035#include <asm/vmx.h>
Avi Kivitye4956062007-06-28 14:15:57 -040036
Joerg Roedel18552672008-02-07 13:47:41 +010037/*
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 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050044bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010045
Avi Kivity37a7d8b2007-01-05 16:36:56 -080046#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)
Avi Kivity6ada8cc2008-06-22 16:45:24 +030069static int dbg = 0;
70module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080071#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080072
Marcelo Tosatti582801a2008-09-23 13:18:41 -030073static int oos_shadow = 1;
74module_param(oos_shadow, bool, 0644);
75
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080076#ifndef MMU_DEBUG
77#define ASSERT(x) do { } while (0)
78#else
Avi Kivity6aa8b732006-12-10 02:21:36 -080079#define ASSERT(x) \
80 if (!(x)) { \
81 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
82 __FILE__, __LINE__, #x); \
83 }
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080084#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080085
Avi Kivity6aa8b732006-12-10 02:21:36 -080086#define PT_FIRST_AVAIL_BITS_SHIFT 9
87#define PT64_SECOND_AVAIL_BITS_SHIFT 52
88
Avi Kivity6aa8b732006-12-10 02:21:36 -080089#define VALID_PAGE(x) ((x) != INVALID_PAGE)
90
91#define PT64_LEVEL_BITS 9
92
93#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040094 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080095
96#define PT64_LEVEL_MASK(level) \
97 (((1ULL << PT64_LEVEL_BITS) - 1) << PT64_LEVEL_SHIFT(level))
98
99#define PT64_INDEX(address, level)\
100 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
101
102
103#define PT32_LEVEL_BITS 10
104
105#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400106 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800107
108#define PT32_LEVEL_MASK(level) \
109 (((1ULL << PT32_LEVEL_BITS) - 1) << PT32_LEVEL_SHIFT(level))
110
111#define PT32_INDEX(address, level)\
112 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
113
114
Avi Kivity27aba762007-03-09 13:04:31 +0200115#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800116#define PT64_DIR_BASE_ADDR_MASK \
117 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
118
119#define PT32_BASE_ADDR_MASK PAGE_MASK
120#define PT32_DIR_BASE_ADDR_MASK \
121 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
122
Avi Kivity79539ce2007-11-21 02:06:21 +0200123#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | PT_USER_MASK \
124 | PT64_NX_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800125
126#define PFERR_PRESENT_MASK (1U << 0)
127#define PFERR_WRITE_MASK (1U << 1)
128#define PFERR_USER_MASK (1U << 2)
Dong, Eddie82725b22009-03-30 16:21:08 +0800129#define PFERR_RSVD_MASK (1U << 3)
Avi Kivity73b10872007-01-26 00:56:41 -0800130#define PFERR_FETCH_MASK (1U << 4)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131
Avi Kivity6aa8b732006-12-10 02:21:36 -0800132#define PT_DIRECTORY_LEVEL 2
133#define PT_PAGE_TABLE_LEVEL 1
134
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800135#define RMAP_EXT 4
136
Avi Kivityfe135d22007-12-09 16:15:46 +0200137#define ACC_EXEC_MASK 1
138#define ACC_WRITE_MASK PT_WRITABLE_MASK
139#define ACC_USER_MASK PT_USER_MASK
140#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
141
Avi Kivity135f8c22008-08-21 17:49:56 +0300142#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
143
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800144struct kvm_rmap_desc {
145 u64 *shadow_ptes[RMAP_EXT];
146 struct kvm_rmap_desc *more;
147};
148
Avi Kivity2d111232008-12-25 14:39:47 +0200149struct kvm_shadow_walk_iterator {
150 u64 addr;
151 hpa_t shadow_addr;
152 int level;
153 u64 *sptep;
154 unsigned index;
155};
156
157#define for_each_shadow_entry(_vcpu, _addr, _walker) \
158 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
159 shadow_walk_okay(&(_walker)); \
160 shadow_walk_next(&(_walker)))
161
162
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300163struct kvm_unsync_walk {
164 int (*entry) (struct kvm_mmu_page *sp, struct kvm_unsync_walk *walk);
165};
166
Marcelo Tosattiad8cfbe2008-09-23 13:18:36 -0300167typedef int (*mmu_parent_walk_fn) (struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp);
168
Avi Kivityb5a33a72007-04-15 16:31:09 +0300169static struct kmem_cache *pte_chain_cache;
170static struct kmem_cache *rmap_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300171static struct kmem_cache *mmu_page_header_cache;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300172
Avi Kivityc7addb92007-09-16 18:58:32 +0200173static u64 __read_mostly shadow_trap_nonpresent_pte;
174static u64 __read_mostly shadow_notrap_nonpresent_pte;
Sheng Yang7b523452008-04-25 21:13:50 +0800175static u64 __read_mostly shadow_base_present_pte;
176static u64 __read_mostly shadow_nx_mask;
177static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
178static u64 __read_mostly shadow_user_mask;
179static u64 __read_mostly shadow_accessed_mask;
180static u64 __read_mostly shadow_dirty_mask;
Avi Kivityc7addb92007-09-16 18:58:32 +0200181
Dong, Eddie82725b22009-03-30 16:21:08 +0800182static inline u64 rsvd_bits(int s, int e)
183{
184 return ((1ULL << (e - s + 1)) - 1) << s;
185}
186
Avi Kivityc7addb92007-09-16 18:58:32 +0200187void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
188{
189 shadow_trap_nonpresent_pte = trap_pte;
190 shadow_notrap_nonpresent_pte = notrap_pte;
191}
192EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
193
Sheng Yang7b523452008-04-25 21:13:50 +0800194void kvm_mmu_set_base_ptes(u64 base_pte)
195{
196 shadow_base_present_pte = base_pte;
197}
198EXPORT_SYMBOL_GPL(kvm_mmu_set_base_ptes);
199
200void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Sheng Yang4b12f0d2009-04-27 20:35:42 +0800201 u64 dirty_mask, u64 nx_mask, u64 x_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800202{
203 shadow_user_mask = user_mask;
204 shadow_accessed_mask = accessed_mask;
205 shadow_dirty_mask = dirty_mask;
206 shadow_nx_mask = nx_mask;
207 shadow_x_mask = x_mask;
208}
209EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
210
Avi Kivity6aa8b732006-12-10 02:21:36 -0800211static int is_write_protection(struct kvm_vcpu *vcpu)
212{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800213 return vcpu->arch.cr0 & X86_CR0_WP;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800214}
215
216static int is_cpuid_PSE36(void)
217{
218 return 1;
219}
220
Avi Kivity73b10872007-01-26 00:56:41 -0800221static int is_nx(struct kvm_vcpu *vcpu)
222{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800223 return vcpu->arch.shadow_efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800224}
225
Avi Kivityc7addb92007-09-16 18:58:32 +0200226static int is_shadow_present_pte(u64 pte)
227{
Avi Kivityc7addb92007-09-16 18:58:32 +0200228 return pte != shadow_trap_nonpresent_pte
229 && pte != shadow_notrap_nonpresent_pte;
230}
231
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300232static int is_large_pte(u64 pte)
233{
234 return pte & PT_PAGE_SIZE_MASK;
235}
236
Avi Kivity6aa8b732006-12-10 02:21:36 -0800237static int is_writeble_pte(unsigned long pte)
238{
239 return pte & PT_WRITABLE_MASK;
240}
241
Avi Kivitye3c5e7ec2007-10-11 12:32:30 +0200242static int is_dirty_pte(unsigned long pte)
243{
Sheng Yang7b523452008-04-25 21:13:50 +0800244 return pte & shadow_dirty_mask;
Avi Kivitye3c5e7ec2007-10-11 12:32:30 +0200245}
246
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800247static int is_rmap_pte(u64 pte)
248{
Avi Kivity4b1a80f2008-03-23 12:18:19 +0200249 return is_shadow_present_pte(pte);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800250}
251
Anthony Liguori35149e22008-04-02 14:46:56 -0500252static pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200253{
Anthony Liguori35149e22008-04-02 14:46:56 -0500254 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200255}
256
Avi Kivityda928522007-11-21 13:54:47 +0200257static gfn_t pse36_gfn_delta(u32 gpte)
258{
259 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
260
261 return (gpte & PT32_DIR_PSE36_MASK) << shift;
262}
263
Avi Kivitye663ee62007-05-31 15:46:04 +0300264static void set_shadow_pte(u64 *sptep, u64 spte)
265{
266#ifdef CONFIG_X86_64
267 set_64bit((unsigned long *)sptep, spte);
268#else
269 set_64bit((unsigned long long *)sptep, spte);
270#endif
271}
272
Avi Kivitye2dec932007-01-05 16:36:54 -0800273static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300274 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800275{
276 void *obj;
277
278 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800279 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800280 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300281 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800282 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800283 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800284 cache->objects[cache->nobjs++] = obj;
285 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800286 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800287}
288
289static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
290{
291 while (mc->nobjs)
292 kfree(mc->objects[--mc->nobjs]);
293}
294
Avi Kivityc1158e62007-07-20 08:18:27 +0300295static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300296 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300297{
298 struct page *page;
299
300 if (cache->nobjs >= min)
301 return 0;
302 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300303 page = alloc_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300304 if (!page)
305 return -ENOMEM;
306 set_page_private(page, 0);
307 cache->objects[cache->nobjs++] = page_address(page);
308 }
309 return 0;
310}
311
312static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
313{
314 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300315 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300316}
317
Avi Kivity8c438502007-04-16 11:53:17 +0300318static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
319{
320 int r;
321
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800322 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_chain_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300323 pte_chain_cache, 4);
324 if (r)
325 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800326 r = mmu_topup_memory_cache(&vcpu->arch.mmu_rmap_desc_cache,
Marcelo Tosattic41ef342008-10-28 18:16:58 -0200327 rmap_desc_cache, 4);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300328 if (r)
329 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800330 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300331 if (r)
332 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800333 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300334 mmu_page_header_cache, 4);
335out:
Avi Kivity8c438502007-04-16 11:53:17 +0300336 return r;
337}
338
Avi Kivity714b93d2007-01-05 16:36:53 -0800339static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
340{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800341 mmu_free_memory_cache(&vcpu->arch.mmu_pte_chain_cache);
342 mmu_free_memory_cache(&vcpu->arch.mmu_rmap_desc_cache);
343 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
344 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800345}
346
347static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
348 size_t size)
349{
350 void *p;
351
352 BUG_ON(!mc->nobjs);
353 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800354 return p;
355}
356
Avi Kivity714b93d2007-01-05 16:36:53 -0800357static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
358{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800359 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_chain_cache,
Avi Kivity714b93d2007-01-05 16:36:53 -0800360 sizeof(struct kvm_pte_chain));
361}
362
Avi Kivity90cb0522007-07-17 13:04:56 +0300363static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800364{
Avi Kivity90cb0522007-07-17 13:04:56 +0300365 kfree(pc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800366}
367
368static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
369{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800370 return mmu_memory_cache_alloc(&vcpu->arch.mmu_rmap_desc_cache,
Avi Kivity714b93d2007-01-05 16:36:53 -0800371 sizeof(struct kvm_rmap_desc));
372}
373
Avi Kivity90cb0522007-07-17 13:04:56 +0300374static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
Avi Kivity714b93d2007-01-05 16:36:53 -0800375{
Avi Kivity90cb0522007-07-17 13:04:56 +0300376 kfree(rd);
Avi Kivity714b93d2007-01-05 16:36:53 -0800377}
378
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800379/*
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300380 * Return the pointer to the largepage write count for a given
381 * gfn, handling slots that are not large page aligned.
382 */
383static int *slot_largepage_idx(gfn_t gfn, struct kvm_memory_slot *slot)
384{
385 unsigned long idx;
386
387 idx = (gfn / KVM_PAGES_PER_HPAGE) -
388 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
389 return &slot->lpage_info[idx].write_count;
390}
391
392static void account_shadowed(struct kvm *kvm, gfn_t gfn)
393{
394 int *write_count;
395
Izik Eidus28430992008-10-03 17:40:32 +0300396 gfn = unalias_gfn(kvm, gfn);
397 write_count = slot_largepage_idx(gfn,
398 gfn_to_memslot_unaliased(kvm, gfn));
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300399 *write_count += 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300400}
401
402static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
403{
404 int *write_count;
405
Izik Eidus28430992008-10-03 17:40:32 +0300406 gfn = unalias_gfn(kvm, gfn);
407 write_count = slot_largepage_idx(gfn,
408 gfn_to_memslot_unaliased(kvm, gfn));
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300409 *write_count -= 1;
410 WARN_ON(*write_count < 0);
411}
412
413static int has_wrprotected_page(struct kvm *kvm, gfn_t gfn)
414{
Izik Eidus28430992008-10-03 17:40:32 +0300415 struct kvm_memory_slot *slot;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300416 int *largepage_idx;
417
Izik Eidus28430992008-10-03 17:40:32 +0300418 gfn = unalias_gfn(kvm, gfn);
419 slot = gfn_to_memslot_unaliased(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300420 if (slot) {
421 largepage_idx = slot_largepage_idx(gfn, slot);
422 return *largepage_idx;
423 }
424
425 return 1;
426}
427
428static int host_largepage_backed(struct kvm *kvm, gfn_t gfn)
429{
430 struct vm_area_struct *vma;
431 unsigned long addr;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300432 int ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300433
434 addr = gfn_to_hva(kvm, gfn);
435 if (kvm_is_error_hva(addr))
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300436 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300437
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300438 down_read(&current->mm->mmap_sem);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300439 vma = find_vma(current->mm, addr);
440 if (vma && is_vm_hugetlb_page(vma))
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300441 ret = 1;
442 up_read(&current->mm->mmap_sem);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300443
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300444 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300445}
446
447static int is_largepage_backed(struct kvm_vcpu *vcpu, gfn_t large_gfn)
448{
449 struct kvm_memory_slot *slot;
450
451 if (has_wrprotected_page(vcpu->kvm, large_gfn))
452 return 0;
453
454 if (!host_largepage_backed(vcpu->kvm, large_gfn))
455 return 0;
456
457 slot = gfn_to_memslot(vcpu->kvm, large_gfn);
458 if (slot && slot->dirty_bitmap)
459 return 0;
460
461 return 1;
462}
463
464/*
Izik Eidus290fc382007-09-27 14:11:22 +0200465 * Take gfn and return the reverse mapping to it.
466 * Note: gfn must be unaliased before this function get called
467 */
468
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300469static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int lpage)
Izik Eidus290fc382007-09-27 14:11:22 +0200470{
471 struct kvm_memory_slot *slot;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300472 unsigned long idx;
Izik Eidus290fc382007-09-27 14:11:22 +0200473
474 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300475 if (!lpage)
476 return &slot->rmap[gfn - slot->base_gfn];
477
478 idx = (gfn / KVM_PAGES_PER_HPAGE) -
479 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
480
481 return &slot->lpage_info[idx].rmap_pde;
Izik Eidus290fc382007-09-27 14:11:22 +0200482}
483
484/*
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800485 * Reverse mapping data structures:
486 *
Izik Eidus290fc382007-09-27 14:11:22 +0200487 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
488 * that points to page_address(page).
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800489 *
Izik Eidus290fc382007-09-27 14:11:22 +0200490 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
491 * containing more mappings.
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800492 */
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300493static void rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn, int lpage)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800494{
Avi Kivity4db35312007-11-21 15:28:32 +0200495 struct kvm_mmu_page *sp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800496 struct kvm_rmap_desc *desc;
Izik Eidus290fc382007-09-27 14:11:22 +0200497 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800498 int i;
499
500 if (!is_rmap_pte(*spte))
501 return;
Izik Eidus290fc382007-09-27 14:11:22 +0200502 gfn = unalias_gfn(vcpu->kvm, gfn);
Avi Kivity4db35312007-11-21 15:28:32 +0200503 sp = page_header(__pa(spte));
504 sp->gfns[spte - sp->spt] = gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300505 rmapp = gfn_to_rmap(vcpu->kvm, gfn, lpage);
Izik Eidus290fc382007-09-27 14:11:22 +0200506 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800507 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200508 *rmapp = (unsigned long)spte;
509 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800510 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
Avi Kivity714b93d2007-01-05 16:36:53 -0800511 desc = mmu_alloc_rmap_desc(vcpu);
Izik Eidus290fc382007-09-27 14:11:22 +0200512 desc->shadow_ptes[0] = (u64 *)*rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800513 desc->shadow_ptes[1] = spte;
Izik Eidus290fc382007-09-27 14:11:22 +0200514 *rmapp = (unsigned long)desc | 1;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800515 } else {
516 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200517 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800518 while (desc->shadow_ptes[RMAP_EXT-1] && desc->more)
519 desc = desc->more;
520 if (desc->shadow_ptes[RMAP_EXT-1]) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800521 desc->more = mmu_alloc_rmap_desc(vcpu);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800522 desc = desc->more;
523 }
524 for (i = 0; desc->shadow_ptes[i]; ++i)
525 ;
526 desc->shadow_ptes[i] = spte;
527 }
528}
529
Izik Eidus290fc382007-09-27 14:11:22 +0200530static void rmap_desc_remove_entry(unsigned long *rmapp,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800531 struct kvm_rmap_desc *desc,
532 int i,
533 struct kvm_rmap_desc *prev_desc)
534{
535 int j;
536
537 for (j = RMAP_EXT - 1; !desc->shadow_ptes[j] && j > i; --j)
538 ;
539 desc->shadow_ptes[i] = desc->shadow_ptes[j];
Al Viro11718b4d2007-02-09 16:39:20 +0000540 desc->shadow_ptes[j] = NULL;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800541 if (j != 0)
542 return;
543 if (!prev_desc && !desc->more)
Izik Eidus290fc382007-09-27 14:11:22 +0200544 *rmapp = (unsigned long)desc->shadow_ptes[0];
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800545 else
546 if (prev_desc)
547 prev_desc->more = desc->more;
548 else
Izik Eidus290fc382007-09-27 14:11:22 +0200549 *rmapp = (unsigned long)desc->more | 1;
Avi Kivity90cb0522007-07-17 13:04:56 +0300550 mmu_free_rmap_desc(desc);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800551}
552
Izik Eidus290fc382007-09-27 14:11:22 +0200553static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800554{
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800555 struct kvm_rmap_desc *desc;
556 struct kvm_rmap_desc *prev_desc;
Avi Kivity4db35312007-11-21 15:28:32 +0200557 struct kvm_mmu_page *sp;
Anthony Liguori35149e22008-04-02 14:46:56 -0500558 pfn_t pfn;
Izik Eidus290fc382007-09-27 14:11:22 +0200559 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800560 int i;
561
562 if (!is_rmap_pte(*spte))
563 return;
Avi Kivity4db35312007-11-21 15:28:32 +0200564 sp = page_header(__pa(spte));
Anthony Liguori35149e22008-04-02 14:46:56 -0500565 pfn = spte_to_pfn(*spte);
Sheng Yang7b523452008-04-25 21:13:50 +0800566 if (*spte & shadow_accessed_mask)
Anthony Liguori35149e22008-04-02 14:46:56 -0500567 kvm_set_pfn_accessed(pfn);
Izik Eidusb4231d62007-11-20 11:49:33 +0200568 if (is_writeble_pte(*spte))
Anthony Liguori35149e22008-04-02 14:46:56 -0500569 kvm_release_pfn_dirty(pfn);
Izik Eidusb4231d62007-11-20 11:49:33 +0200570 else
Anthony Liguori35149e22008-04-02 14:46:56 -0500571 kvm_release_pfn_clean(pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300572 rmapp = gfn_to_rmap(kvm, sp->gfns[spte - sp->spt], is_large_pte(*spte));
Izik Eidus290fc382007-09-27 14:11:22 +0200573 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800574 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
575 BUG();
Izik Eidus290fc382007-09-27 14:11:22 +0200576 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800577 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200578 if ((u64 *)*rmapp != spte) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800579 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
580 spte, *spte);
581 BUG();
582 }
Izik Eidus290fc382007-09-27 14:11:22 +0200583 *rmapp = 0;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800584 } else {
585 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200586 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800587 prev_desc = NULL;
588 while (desc) {
589 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i)
590 if (desc->shadow_ptes[i] == spte) {
Izik Eidus290fc382007-09-27 14:11:22 +0200591 rmap_desc_remove_entry(rmapp,
Avi Kivity714b93d2007-01-05 16:36:53 -0800592 desc, i,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800593 prev_desc);
594 return;
595 }
596 prev_desc = desc;
597 desc = desc->more;
598 }
599 BUG();
600 }
601}
602
Izik Eidus98348e92007-10-16 14:42:30 +0200603static u64 *rmap_next(struct kvm *kvm, unsigned long *rmapp, u64 *spte)
Avi Kivity374cbac2007-01-05 16:36:43 -0800604{
Avi Kivity374cbac2007-01-05 16:36:43 -0800605 struct kvm_rmap_desc *desc;
Izik Eidus98348e92007-10-16 14:42:30 +0200606 struct kvm_rmap_desc *prev_desc;
607 u64 *prev_spte;
608 int i;
609
610 if (!*rmapp)
611 return NULL;
612 else if (!(*rmapp & 1)) {
613 if (!spte)
614 return (u64 *)*rmapp;
615 return NULL;
616 }
617 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
618 prev_desc = NULL;
619 prev_spte = NULL;
620 while (desc) {
621 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i) {
622 if (prev_spte == spte)
623 return desc->shadow_ptes[i];
624 prev_spte = desc->shadow_ptes[i];
625 }
626 desc = desc->more;
627 }
628 return NULL;
629}
630
Marcelo Tosattib1a36822008-12-01 22:32:03 -0200631static int rmap_write_protect(struct kvm *kvm, u64 gfn)
Izik Eidus98348e92007-10-16 14:42:30 +0200632{
Izik Eidus290fc382007-09-27 14:11:22 +0200633 unsigned long *rmapp;
Avi Kivity374cbac2007-01-05 16:36:43 -0800634 u64 *spte;
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800635 int write_protected = 0;
Avi Kivity374cbac2007-01-05 16:36:43 -0800636
Anthony Liguori4a4c9922007-10-10 20:08:41 -0500637 gfn = unalias_gfn(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300638 rmapp = gfn_to_rmap(kvm, gfn, 0);
Avi Kivity374cbac2007-01-05 16:36:43 -0800639
Izik Eidus98348e92007-10-16 14:42:30 +0200640 spte = rmap_next(kvm, rmapp, NULL);
641 while (spte) {
Avi Kivity374cbac2007-01-05 16:36:43 -0800642 BUG_ON(!spte);
Avi Kivity374cbac2007-01-05 16:36:43 -0800643 BUG_ON(!(*spte & PT_PRESENT_MASK));
Avi Kivity374cbac2007-01-05 16:36:43 -0800644 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800645 if (is_writeble_pte(*spte)) {
Izik Eidus9647c142007-10-16 14:43:46 +0200646 set_shadow_pte(spte, *spte & ~PT_WRITABLE_MASK);
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800647 write_protected = 1;
648 }
Izik Eidus9647c142007-10-16 14:43:46 +0200649 spte = rmap_next(kvm, rmapp, spte);
Avi Kivity374cbac2007-01-05 16:36:43 -0800650 }
Izik Eidus855149a2008-03-20 18:17:24 +0200651 if (write_protected) {
Anthony Liguori35149e22008-04-02 14:46:56 -0500652 pfn_t pfn;
Izik Eidus855149a2008-03-20 18:17:24 +0200653
654 spte = rmap_next(kvm, rmapp, NULL);
Anthony Liguori35149e22008-04-02 14:46:56 -0500655 pfn = spte_to_pfn(*spte);
656 kvm_set_pfn_dirty(pfn);
Izik Eidus855149a2008-03-20 18:17:24 +0200657 }
658
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300659 /* check for huge page mappings */
660 rmapp = gfn_to_rmap(kvm, gfn, 1);
661 spte = rmap_next(kvm, rmapp, NULL);
662 while (spte) {
663 BUG_ON(!spte);
664 BUG_ON(!(*spte & PT_PRESENT_MASK));
665 BUG_ON((*spte & (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK)) != (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK));
666 pgprintk("rmap_write_protect(large): spte %p %llx %lld\n", spte, *spte, gfn);
667 if (is_writeble_pte(*spte)) {
668 rmap_remove(kvm, spte);
669 --kvm->stat.lpages;
670 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Marcelo Tosatti6597ca02008-06-08 01:48:53 -0300671 spte = NULL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300672 write_protected = 1;
673 }
674 spte = rmap_next(kvm, rmapp, spte);
675 }
676
Marcelo Tosattib1a36822008-12-01 22:32:03 -0200677 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -0800678}
679
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200680static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp)
681{
682 u64 *spte;
683 int need_tlb_flush = 0;
684
685 while ((spte = rmap_next(kvm, rmapp, NULL))) {
686 BUG_ON(!(*spte & PT_PRESENT_MASK));
687 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", spte, *spte);
688 rmap_remove(kvm, spte);
689 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
690 need_tlb_flush = 1;
691 }
692 return need_tlb_flush;
693}
694
695static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
696 int (*handler)(struct kvm *kvm, unsigned long *rmapp))
697{
698 int i;
699 int retval = 0;
700
701 /*
702 * If mmap_sem isn't taken, we can look the memslots with only
703 * the mmu_lock by skipping over the slots with userspace_addr == 0.
704 */
705 for (i = 0; i < kvm->nmemslots; i++) {
706 struct kvm_memory_slot *memslot = &kvm->memslots[i];
707 unsigned long start = memslot->userspace_addr;
708 unsigned long end;
709
710 /* mmu_lock protects userspace_addr */
711 if (!start)
712 continue;
713
714 end = start + (memslot->npages << PAGE_SHIFT);
715 if (hva >= start && hva < end) {
716 gfn_t gfn_offset = (hva - start) >> PAGE_SHIFT;
717 retval |= handler(kvm, &memslot->rmap[gfn_offset]);
718 retval |= handler(kvm,
719 &memslot->lpage_info[
720 gfn_offset /
721 KVM_PAGES_PER_HPAGE].rmap_pde);
722 }
723 }
724
725 return retval;
726}
727
728int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
729{
730 return kvm_handle_hva(kvm, hva, kvm_unmap_rmapp);
731}
732
733static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp)
734{
735 u64 *spte;
736 int young = 0;
737
Sheng Yang534e38b2008-09-08 15:12:30 +0800738 /* always return old for EPT */
739 if (!shadow_accessed_mask)
740 return 0;
741
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200742 spte = rmap_next(kvm, rmapp, NULL);
743 while (spte) {
744 int _young;
745 u64 _spte = *spte;
746 BUG_ON(!(_spte & PT_PRESENT_MASK));
747 _young = _spte & PT_ACCESSED_MASK;
748 if (_young) {
749 young = 1;
750 clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
751 }
752 spte = rmap_next(kvm, rmapp, spte);
753 }
754 return young;
755}
756
757int kvm_age_hva(struct kvm *kvm, unsigned long hva)
758{
759 return kvm_handle_hva(kvm, hva, kvm_age_rmapp);
760}
761
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800762#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +0300763static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800764{
Avi Kivity139bdb22007-01-05 16:36:50 -0800765 u64 *pos;
766 u64 *end;
767
Avi Kivity47ad8e62007-05-06 15:50:58 +0300768 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +0300769 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800770 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -0800771 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -0800773 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800774 return 1;
775}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800776#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777
Avi Kivity4db35312007-11-21 15:28:32 +0200778static void kvm_mmu_free_page(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -0800779{
Avi Kivity4db35312007-11-21 15:28:32 +0200780 ASSERT(is_empty_shadow_page(sp->spt));
781 list_del(&sp->link);
782 __free_page(virt_to_page(sp->spt));
783 __free_page(virt_to_page(sp->gfns));
784 kfree(sp);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800785 ++kvm->arch.n_free_mmu_pages;
Avi Kivity260746c2007-01-05 16:36:49 -0800786}
787
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800788static unsigned kvm_page_table_hashfn(gfn_t gfn)
789{
Dong, Eddie1ae0a132008-01-07 13:20:25 +0200790 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800791}
792
Avi Kivity25c0de22007-01-05 16:36:42 -0800793static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
794 u64 *parent_pte)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800795{
Avi Kivity4db35312007-11-21 15:28:32 +0200796 struct kvm_mmu_page *sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800797
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800798 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache, sizeof *sp);
799 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
800 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
Avi Kivity4db35312007-11-21 15:28:32 +0200801 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800802 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200803 INIT_LIST_HEAD(&sp->oos_link);
Sheng Yang291f26b2008-10-16 17:30:57 +0800804 bitmap_zero(sp->slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
Avi Kivity4db35312007-11-21 15:28:32 +0200805 sp->multimapped = 0;
806 sp->parent_pte = parent_pte;
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800807 --vcpu->kvm->arch.n_free_mmu_pages;
Avi Kivity4db35312007-11-21 15:28:32 +0200808 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800809}
810
Avi Kivity714b93d2007-01-05 16:36:53 -0800811static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +0200812 struct kvm_mmu_page *sp, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800813{
814 struct kvm_pte_chain *pte_chain;
815 struct hlist_node *node;
816 int i;
817
818 if (!parent_pte)
819 return;
Avi Kivity4db35312007-11-21 15:28:32 +0200820 if (!sp->multimapped) {
821 u64 *old = sp->parent_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800822
823 if (!old) {
Avi Kivity4db35312007-11-21 15:28:32 +0200824 sp->parent_pte = parent_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800825 return;
826 }
Avi Kivity4db35312007-11-21 15:28:32 +0200827 sp->multimapped = 1;
Avi Kivity714b93d2007-01-05 16:36:53 -0800828 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivity4db35312007-11-21 15:28:32 +0200829 INIT_HLIST_HEAD(&sp->parent_ptes);
830 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800831 pte_chain->parent_ptes[0] = old;
832 }
Avi Kivity4db35312007-11-21 15:28:32 +0200833 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800834 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
835 continue;
836 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
837 if (!pte_chain->parent_ptes[i]) {
838 pte_chain->parent_ptes[i] = parent_pte;
839 return;
840 }
841 }
Avi Kivity714b93d2007-01-05 16:36:53 -0800842 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800843 BUG_ON(!pte_chain);
Avi Kivity4db35312007-11-21 15:28:32 +0200844 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800845 pte_chain->parent_ptes[0] = parent_pte;
846}
847
Avi Kivity4db35312007-11-21 15:28:32 +0200848static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800849 u64 *parent_pte)
850{
851 struct kvm_pte_chain *pte_chain;
852 struct hlist_node *node;
853 int i;
854
Avi Kivity4db35312007-11-21 15:28:32 +0200855 if (!sp->multimapped) {
856 BUG_ON(sp->parent_pte != parent_pte);
857 sp->parent_pte = NULL;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800858 return;
859 }
Avi Kivity4db35312007-11-21 15:28:32 +0200860 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800861 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
862 if (!pte_chain->parent_ptes[i])
863 break;
864 if (pte_chain->parent_ptes[i] != parent_pte)
865 continue;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800866 while (i + 1 < NR_PTE_CHAIN_ENTRIES
867 && pte_chain->parent_ptes[i + 1]) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800868 pte_chain->parent_ptes[i]
869 = pte_chain->parent_ptes[i + 1];
870 ++i;
871 }
872 pte_chain->parent_ptes[i] = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800873 if (i == 0) {
874 hlist_del(&pte_chain->link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300875 mmu_free_pte_chain(pte_chain);
Avi Kivity4db35312007-11-21 15:28:32 +0200876 if (hlist_empty(&sp->parent_ptes)) {
877 sp->multimapped = 0;
878 sp->parent_pte = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800879 }
880 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800881 return;
882 }
883 BUG();
884}
885
Marcelo Tosattiad8cfbe2008-09-23 13:18:36 -0300886
887static void mmu_parent_walk(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
888 mmu_parent_walk_fn fn)
889{
890 struct kvm_pte_chain *pte_chain;
891 struct hlist_node *node;
892 struct kvm_mmu_page *parent_sp;
893 int i;
894
895 if (!sp->multimapped && sp->parent_pte) {
896 parent_sp = page_header(__pa(sp->parent_pte));
897 fn(vcpu, parent_sp);
898 mmu_parent_walk(vcpu, parent_sp, fn);
899 return;
900 }
901 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
902 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
903 if (!pte_chain->parent_ptes[i])
904 break;
905 parent_sp = page_header(__pa(pte_chain->parent_ptes[i]));
906 fn(vcpu, parent_sp);
907 mmu_parent_walk(vcpu, parent_sp, fn);
908 }
909}
910
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300911static void kvm_mmu_update_unsync_bitmap(u64 *spte)
912{
913 unsigned int index;
914 struct kvm_mmu_page *sp = page_header(__pa(spte));
915
916 index = spte - sp->spt;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200917 if (!__test_and_set_bit(index, sp->unsync_child_bitmap))
918 sp->unsync_children++;
919 WARN_ON(!sp->unsync_children);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300920}
921
922static void kvm_mmu_update_parents_unsync(struct kvm_mmu_page *sp)
923{
924 struct kvm_pte_chain *pte_chain;
925 struct hlist_node *node;
926 int i;
927
928 if (!sp->parent_pte)
929 return;
930
931 if (!sp->multimapped) {
932 kvm_mmu_update_unsync_bitmap(sp->parent_pte);
933 return;
934 }
935
936 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
937 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
938 if (!pte_chain->parent_ptes[i])
939 break;
940 kvm_mmu_update_unsync_bitmap(pte_chain->parent_ptes[i]);
941 }
942}
943
944static int unsync_walk_fn(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
945{
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300946 kvm_mmu_update_parents_unsync(sp);
947 return 1;
948}
949
950static void kvm_mmu_mark_parents_unsync(struct kvm_vcpu *vcpu,
951 struct kvm_mmu_page *sp)
952{
953 mmu_parent_walk(vcpu, sp, unsync_walk_fn);
954 kvm_mmu_update_parents_unsync(sp);
955}
956
Avi Kivityd761a502008-05-29 14:55:03 +0300957static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
958 struct kvm_mmu_page *sp)
959{
960 int i;
961
962 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
963 sp->spt[i] = shadow_trap_nonpresent_pte;
964}
965
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300966static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
967 struct kvm_mmu_page *sp)
968{
969 return 1;
970}
971
Marcelo Tosattia7052892008-09-23 13:18:35 -0300972static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
973{
974}
975
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200976#define KVM_PAGE_ARRAY_NR 16
977
978struct kvm_mmu_pages {
979 struct mmu_page_and_offset {
980 struct kvm_mmu_page *sp;
981 unsigned int idx;
982 } page[KVM_PAGE_ARRAY_NR];
983 unsigned int nr;
984};
985
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300986#define for_each_unsync_children(bitmap, idx) \
987 for (idx = find_first_bit(bitmap, 512); \
988 idx < 512; \
989 idx = find_next_bit(bitmap, 512, idx+1))
990
Hannes Edercded19f2009-02-21 02:19:13 +0100991static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
992 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300993{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200994 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300995
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200996 if (sp->unsync)
997 for (i=0; i < pvec->nr; i++)
998 if (pvec->page[i].sp == sp)
999 return 0;
1000
1001 pvec->page[pvec->nr].sp = sp;
1002 pvec->page[pvec->nr].idx = idx;
1003 pvec->nr++;
1004 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1005}
1006
1007static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1008 struct kvm_mmu_pages *pvec)
1009{
1010 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001011
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001012 for_each_unsync_children(sp->unsync_child_bitmap, i) {
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001013 u64 ent = sp->spt[i];
1014
Marcelo Tosatti87917232008-12-22 18:49:30 -02001015 if (is_shadow_present_pte(ent) && !is_large_pte(ent)) {
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001016 struct kvm_mmu_page *child;
1017 child = page_header(ent & PT64_BASE_ADDR_MASK);
1018
1019 if (child->unsync_children) {
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001020 if (mmu_pages_add(pvec, child, i))
1021 return -ENOSPC;
1022
1023 ret = __mmu_unsync_walk(child, pvec);
1024 if (!ret)
1025 __clear_bit(i, sp->unsync_child_bitmap);
1026 else if (ret > 0)
1027 nr_unsync_leaf += ret;
1028 else
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001029 return ret;
1030 }
1031
1032 if (child->unsync) {
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001033 nr_unsync_leaf++;
1034 if (mmu_pages_add(pvec, child, i))
1035 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001036 }
1037 }
1038 }
1039
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001040 if (find_first_bit(sp->unsync_child_bitmap, 512) == 512)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001041 sp->unsync_children = 0;
1042
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001043 return nr_unsync_leaf;
1044}
1045
1046static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1047 struct kvm_mmu_pages *pvec)
1048{
1049 if (!sp->unsync_children)
1050 return 0;
1051
1052 mmu_pages_add(pvec, sp, 0);
1053 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001054}
1055
Avi Kivity4db35312007-11-21 15:28:32 +02001056static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001057{
1058 unsigned index;
1059 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001060 struct kvm_mmu_page *sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001061 struct hlist_node *node;
1062
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001063 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001064 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001065 bucket = &kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02001066 hlist_for_each_entry(sp, node, bucket, hash_link)
Avi Kivityf6e2c022009-01-11 13:02:10 +02001067 if (sp->gfn == gfn && !sp->role.direct
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001068 && !sp->role.invalid) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001069 pgprintk("%s: found role %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001070 __func__, sp->role.word);
Avi Kivity4db35312007-11-21 15:28:32 +02001071 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001072 }
1073 return NULL;
1074}
1075
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001076static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1077{
1078 WARN_ON(!sp->unsync);
1079 sp->unsync = 0;
1080 --kvm->stat.mmu_unsync;
1081}
1082
1083static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp);
1084
1085static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1086{
1087 if (sp->role.glevels != vcpu->arch.mmu.root_level) {
1088 kvm_mmu_zap_page(vcpu->kvm, sp);
1089 return 1;
1090 }
1091
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001092 if (rmap_write_protect(vcpu->kvm, sp->gfn))
1093 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosatti0c0f40b2008-11-21 19:13:58 +01001094 kvm_unlink_unsync_page(vcpu->kvm, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001095 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
1096 kvm_mmu_zap_page(vcpu->kvm, sp);
1097 return 1;
1098 }
1099
1100 kvm_mmu_flush_tlb(vcpu);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001101 return 0;
1102}
1103
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001104struct mmu_page_path {
1105 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1106 unsigned int idx[PT64_ROOT_LEVEL-1];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001107};
1108
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001109#define for_each_sp(pvec, sp, parents, i) \
1110 for (i = mmu_pages_next(&pvec, &parents, -1), \
1111 sp = pvec.page[i].sp; \
1112 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1113 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001114
Hannes Edercded19f2009-02-21 02:19:13 +01001115static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1116 struct mmu_page_path *parents,
1117 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001118{
1119 int n;
1120
1121 for (n = i+1; n < pvec->nr; n++) {
1122 struct kvm_mmu_page *sp = pvec->page[n].sp;
1123
1124 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1125 parents->idx[0] = pvec->page[n].idx;
1126 return n;
1127 }
1128
1129 parents->parent[sp->role.level-2] = sp;
1130 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1131 }
1132
1133 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001134}
1135
Hannes Edercded19f2009-02-21 02:19:13 +01001136static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001137{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001138 struct kvm_mmu_page *sp;
1139 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001140
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001141 do {
1142 unsigned int idx = parents->idx[level];
1143
1144 sp = parents->parent[level];
1145 if (!sp)
1146 return;
1147
1148 --sp->unsync_children;
1149 WARN_ON((int)sp->unsync_children < 0);
1150 __clear_bit(idx, sp->unsync_child_bitmap);
1151 level++;
1152 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
1153}
1154
1155static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1156 struct mmu_page_path *parents,
1157 struct kvm_mmu_pages *pvec)
1158{
1159 parents->parent[parent->role.level-1] = NULL;
1160 pvec->nr = 0;
1161}
1162
1163static void mmu_sync_children(struct kvm_vcpu *vcpu,
1164 struct kvm_mmu_page *parent)
1165{
1166 int i;
1167 struct kvm_mmu_page *sp;
1168 struct mmu_page_path parents;
1169 struct kvm_mmu_pages pages;
1170
1171 kvm_mmu_pages_init(parent, &parents, &pages);
1172 while (mmu_unsync_walk(parent, &pages)) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001173 int protected = 0;
1174
1175 for_each_sp(pages, sp, parents, i)
1176 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1177
1178 if (protected)
1179 kvm_flush_remote_tlbs(vcpu->kvm);
1180
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001181 for_each_sp(pages, sp, parents, i) {
1182 kvm_sync_page(vcpu, sp);
1183 mmu_pages_clear_parents(&parents);
1184 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001185 cond_resched_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001186 kvm_mmu_pages_init(parent, &parents, &pages);
1187 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001188}
1189
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001190static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1191 gfn_t gfn,
1192 gva_t gaddr,
1193 unsigned level,
Avi Kivityf6e2c022009-01-11 13:02:10 +02001194 int direct,
Avi Kivity41074d02007-12-09 17:00:02 +02001195 unsigned access,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02001196 u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001197{
1198 union kvm_mmu_page_role role;
1199 unsigned index;
1200 unsigned quadrant;
1201 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001202 struct kvm_mmu_page *sp;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001203 struct hlist_node *node, *tmp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001204
Avi Kivitya770f6f2008-12-21 19:20:09 +02001205 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001206 role.level = level;
Avi Kivityf6e2c022009-01-11 13:02:10 +02001207 role.direct = direct;
Avi Kivity41074d02007-12-09 17:00:02 +02001208 role.access = access;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001209 if (vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001210 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1211 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1212 role.quadrant = quadrant;
1213 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001214 pgprintk("%s: looking gfn %lx role %x\n", __func__,
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001215 gfn, role.word);
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001216 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001217 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001218 hlist_for_each_entry_safe(sp, node, tmp, bucket, hash_link)
1219 if (sp->gfn == gfn) {
1220 if (sp->unsync)
1221 if (kvm_sync_page(vcpu, sp))
1222 continue;
1223
1224 if (sp->role.word != role.word)
1225 continue;
1226
Avi Kivity4db35312007-11-21 15:28:32 +02001227 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001228 if (sp->unsync_children) {
1229 set_bit(KVM_REQ_MMU_SYNC, &vcpu->requests);
1230 kvm_mmu_mark_parents_unsync(vcpu, sp);
1231 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001232 pgprintk("%s: found\n", __func__);
Avi Kivity4db35312007-11-21 15:28:32 +02001233 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001234 }
Avi Kivitydfc5aa02007-12-18 19:47:18 +02001235 ++vcpu->kvm->stat.mmu_cache_miss;
Avi Kivity4db35312007-11-21 15:28:32 +02001236 sp = kvm_mmu_alloc_page(vcpu, parent_pte);
1237 if (!sp)
1238 return sp;
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001239 pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word);
Avi Kivity4db35312007-11-21 15:28:32 +02001240 sp->gfn = gfn;
1241 sp->role = role;
1242 hlist_add_head(&sp->hash_link, bucket);
Avi Kivityf6e2c022009-01-11 13:02:10 +02001243 if (!direct) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001244 if (rmap_write_protect(vcpu->kvm, gfn))
1245 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001246 account_shadowed(vcpu->kvm, gfn);
1247 }
Avi Kivity131d8272008-05-29 14:56:28 +03001248 if (shadow_trap_nonpresent_pte != shadow_notrap_nonpresent_pte)
1249 vcpu->arch.mmu.prefetch_page(vcpu, sp);
1250 else
1251 nonpaging_prefetch_page(vcpu, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001252 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001253}
1254
Avi Kivity2d111232008-12-25 14:39:47 +02001255static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
1256 struct kvm_vcpu *vcpu, u64 addr)
1257{
1258 iterator->addr = addr;
1259 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
1260 iterator->level = vcpu->arch.mmu.shadow_root_level;
1261 if (iterator->level == PT32E_ROOT_LEVEL) {
1262 iterator->shadow_addr
1263 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
1264 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
1265 --iterator->level;
1266 if (!iterator->shadow_addr)
1267 iterator->level = 0;
1268 }
1269}
1270
1271static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
1272{
1273 if (iterator->level < PT_PAGE_TABLE_LEVEL)
1274 return false;
1275 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
1276 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
1277 return true;
1278}
1279
1280static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
1281{
1282 iterator->shadow_addr = *iterator->sptep & PT64_BASE_ADDR_MASK;
1283 --iterator->level;
1284}
1285
Avi Kivity90cb0522007-07-17 13:04:56 +03001286static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02001287 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08001288{
Avi Kivity697fe2e2007-01-05 16:36:46 -08001289 unsigned i;
1290 u64 *pt;
1291 u64 ent;
1292
Avi Kivity4db35312007-11-21 15:28:32 +02001293 pt = sp->spt;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001294
Avi Kivity4db35312007-11-21 15:28:32 +02001295 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
Avi Kivity697fe2e2007-01-05 16:36:46 -08001296 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
Avi Kivityc7addb92007-09-16 18:58:32 +02001297 if (is_shadow_present_pte(pt[i]))
Izik Eidus290fc382007-09-27 14:11:22 +02001298 rmap_remove(kvm, &pt[i]);
Avi Kivityc7addb92007-09-16 18:58:32 +02001299 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001300 }
1301 return;
1302 }
1303
1304 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1305 ent = pt[i];
1306
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001307 if (is_shadow_present_pte(ent)) {
1308 if (!is_large_pte(ent)) {
1309 ent &= PT64_BASE_ADDR_MASK;
1310 mmu_page_remove_parent_pte(page_header(ent),
1311 &pt[i]);
1312 } else {
1313 --kvm->stat.lpages;
1314 rmap_remove(kvm, &pt[i]);
1315 }
1316 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001317 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001318 }
Avi Kivitya4360362007-01-05 16:36:45 -08001319}
1320
Avi Kivity4db35312007-11-21 15:28:32 +02001321static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001322{
Avi Kivity4db35312007-11-21 15:28:32 +02001323 mmu_page_remove_parent_pte(sp, parent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -08001324}
1325
Avi Kivity12b7d282007-09-23 14:10:49 +02001326static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
1327{
1328 int i;
1329
1330 for (i = 0; i < KVM_MAX_VCPUS; ++i)
1331 if (kvm->vcpus[i])
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001332 kvm->vcpus[i]->arch.last_pte_updated = NULL;
Avi Kivity12b7d282007-09-23 14:10:49 +02001333}
1334
Avi Kivity31aa2b42008-07-11 17:59:46 +03001335static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08001336{
1337 u64 *parent_pte;
1338
Avi Kivity4db35312007-11-21 15:28:32 +02001339 while (sp->multimapped || sp->parent_pte) {
1340 if (!sp->multimapped)
1341 parent_pte = sp->parent_pte;
Avi Kivitya4360362007-01-05 16:36:45 -08001342 else {
1343 struct kvm_pte_chain *chain;
1344
Avi Kivity4db35312007-11-21 15:28:32 +02001345 chain = container_of(sp->parent_ptes.first,
Avi Kivitya4360362007-01-05 16:36:45 -08001346 struct kvm_pte_chain, link);
1347 parent_pte = chain->parent_ptes[0];
1348 }
Avi Kivity697fe2e2007-01-05 16:36:46 -08001349 BUG_ON(!parent_pte);
Avi Kivity4db35312007-11-21 15:28:32 +02001350 kvm_mmu_put_page(sp, parent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +02001351 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -08001352 }
Avi Kivity31aa2b42008-07-11 17:59:46 +03001353}
1354
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001355static int mmu_zap_unsync_children(struct kvm *kvm,
1356 struct kvm_mmu_page *parent)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001357{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001358 int i, zapped = 0;
1359 struct mmu_page_path parents;
1360 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001361
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001362 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001363 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001364
1365 kvm_mmu_pages_init(parent, &parents, &pages);
1366 while (mmu_unsync_walk(parent, &pages)) {
1367 struct kvm_mmu_page *sp;
1368
1369 for_each_sp(pages, sp, parents, i) {
1370 kvm_mmu_zap_page(kvm, sp);
1371 mmu_pages_clear_parents(&parents);
1372 }
1373 zapped += pages.nr;
1374 kvm_mmu_pages_init(parent, &parents, &pages);
1375 }
1376
1377 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001378}
1379
Marcelo Tosatti07385412008-09-23 13:18:37 -03001380static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivity31aa2b42008-07-11 17:59:46 +03001381{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001382 int ret;
Avi Kivity31aa2b42008-07-11 17:59:46 +03001383 ++kvm->stat.mmu_shadow_zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001384 ret = mmu_zap_unsync_children(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001385 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03001386 kvm_mmu_unlink_parents(kvm, sp);
Avi Kivity5b5c6a52008-07-11 18:07:26 +03001387 kvm_flush_remote_tlbs(kvm);
Avi Kivityf6e2c022009-01-11 13:02:10 +02001388 if (!sp->role.invalid && !sp->role.direct)
Avi Kivity5b5c6a52008-07-11 18:07:26 +03001389 unaccount_shadowed(kvm, sp->gfn);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001390 if (sp->unsync)
1391 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001392 if (!sp->root_count) {
1393 hlist_del(&sp->hash_link);
1394 kvm_mmu_free_page(kvm, sp);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001395 } else {
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001396 sp->role.invalid = 1;
Avi Kivity5b5c6a52008-07-11 18:07:26 +03001397 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001398 kvm_reload_remote_mmus(kvm);
1399 }
Avi Kivity12b7d282007-09-23 14:10:49 +02001400 kvm_mmu_reset_last_pte_updated(kvm);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001401 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08001402}
1403
Izik Eidus82ce2c92007-10-02 18:52:55 +02001404/*
1405 * Changing the number of mmu pages allocated to the vm
1406 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
1407 */
1408void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
1409{
Marcelo Tosatti025dbbf2009-07-22 13:05:49 -03001410 int used_pages;
1411
1412 used_pages = kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages;
1413 used_pages = max(0, used_pages);
1414
Izik Eidus82ce2c92007-10-02 18:52:55 +02001415 /*
1416 * If we set the number of mmu pages to be smaller be than the
1417 * number of actived pages , we must to free some mmu pages before we
1418 * change the value
1419 */
1420
Marcelo Tosatti025dbbf2009-07-22 13:05:49 -03001421 if (used_pages > kvm_nr_mmu_pages) {
1422 while (used_pages > kvm_nr_mmu_pages) {
Izik Eidus82ce2c92007-10-02 18:52:55 +02001423 struct kvm_mmu_page *page;
1424
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001425 page = container_of(kvm->arch.active_mmu_pages.prev,
Izik Eidus82ce2c92007-10-02 18:52:55 +02001426 struct kvm_mmu_page, link);
1427 kvm_mmu_zap_page(kvm, page);
Marcelo Tosatti025dbbf2009-07-22 13:05:49 -03001428 used_pages--;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001429 }
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001430 kvm->arch.n_free_mmu_pages = 0;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001431 }
1432 else
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001433 kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages
1434 - kvm->arch.n_alloc_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001435
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001436 kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001437}
1438
Anthony Liguorif67a46f2007-10-10 19:25:50 -05001439static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08001440{
1441 unsigned index;
1442 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001443 struct kvm_mmu_page *sp;
Avi Kivitya4360362007-01-05 16:36:45 -08001444 struct hlist_node *node, *n;
1445 int r;
1446
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001447 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08001448 r = 0;
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001449 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001450 bucket = &kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02001451 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link)
Avi Kivityf6e2c022009-01-11 13:02:10 +02001452 if (sp->gfn == gfn && !sp->role.direct) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001453 pgprintk("%s: gfn %lx role %x\n", __func__, gfn,
Avi Kivity4db35312007-11-21 15:28:32 +02001454 sp->role.word);
Avi Kivitya4360362007-01-05 16:36:45 -08001455 r = 1;
Marcelo Tosatti07385412008-09-23 13:18:37 -03001456 if (kvm_mmu_zap_page(kvm, sp))
1457 n = bucket->first;
Avi Kivitya4360362007-01-05 16:36:45 -08001458 }
1459 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001460}
1461
Anthony Liguorif67a46f2007-10-10 19:25:50 -05001462static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
Avi Kivity97a0a012007-05-31 15:08:29 +03001463{
Avi Kivity4677a3b2009-01-06 13:00:27 +02001464 unsigned index;
1465 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001466 struct kvm_mmu_page *sp;
Avi Kivity4677a3b2009-01-06 13:00:27 +02001467 struct hlist_node *node, *nn;
Avi Kivity97a0a012007-05-31 15:08:29 +03001468
Avi Kivity4677a3b2009-01-06 13:00:27 +02001469 index = kvm_page_table_hashfn(gfn);
1470 bucket = &kvm->arch.mmu_page_hash[index];
1471 hlist_for_each_entry_safe(sp, node, nn, bucket, hash_link) {
Avi Kivityf6e2c022009-01-11 13:02:10 +02001472 if (sp->gfn == gfn && !sp->role.direct
Avi Kivity4677a3b2009-01-06 13:00:27 +02001473 && !sp->role.invalid) {
1474 pgprintk("%s: zap %lx %x\n",
1475 __func__, gfn, sp->role.word);
1476 kvm_mmu_zap_page(kvm, sp);
1477 }
Avi Kivity97a0a012007-05-31 15:08:29 +03001478 }
1479}
1480
Avi Kivity38c335f2007-11-21 14:20:22 +02001481static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001482{
Avi Kivity38c335f2007-11-21 14:20:22 +02001483 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gfn));
Avi Kivity4db35312007-11-21 15:28:32 +02001484 struct kvm_mmu_page *sp = page_header(__pa(pte));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001485
Sheng Yang291f26b2008-10-16 17:30:57 +08001486 __set_bit(slot, sp->slot_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001487}
1488
Marcelo Tosatti6844dec2008-09-23 13:18:38 -03001489static void mmu_convert_notrap(struct kvm_mmu_page *sp)
1490{
1491 int i;
1492 u64 *pt = sp->spt;
1493
1494 if (shadow_trap_nonpresent_pte == shadow_notrap_nonpresent_pte)
1495 return;
1496
1497 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1498 if (pt[i] == shadow_notrap_nonpresent_pte)
1499 set_shadow_pte(&pt[i], shadow_trap_nonpresent_pte);
1500 }
1501}
1502
Avi Kivity039576c2007-03-20 12:46:50 +02001503struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
1504{
Izik Eidus72dc67a2008-02-10 18:04:15 +02001505 struct page *page;
1506
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001507 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
Avi Kivity039576c2007-03-20 12:46:50 +02001508
1509 if (gpa == UNMAPPED_GVA)
1510 return NULL;
Izik Eidus72dc67a2008-02-10 18:04:15 +02001511
Izik Eidus72dc67a2008-02-10 18:04:15 +02001512 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001513
1514 return page;
Avi Kivity039576c2007-03-20 12:46:50 +02001515}
1516
Sheng Yang74be52e2008-10-09 16:01:56 +08001517/*
1518 * The function is based on mtrr_type_lookup() in
1519 * arch/x86/kernel/cpu/mtrr/generic.c
1520 */
1521static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
1522 u64 start, u64 end)
1523{
1524 int i;
1525 u64 base, mask;
1526 u8 prev_match, curr_match;
1527 int num_var_ranges = KVM_NR_VAR_MTRR;
1528
1529 if (!mtrr_state->enabled)
1530 return 0xFF;
1531
1532 /* Make end inclusive end, instead of exclusive */
1533 end--;
1534
1535 /* Look in fixed ranges. Just return the type as per start */
1536 if (mtrr_state->have_fixed && (start < 0x100000)) {
1537 int idx;
1538
1539 if (start < 0x80000) {
1540 idx = 0;
1541 idx += (start >> 16);
1542 return mtrr_state->fixed_ranges[idx];
1543 } else if (start < 0xC0000) {
1544 idx = 1 * 8;
1545 idx += ((start - 0x80000) >> 14);
1546 return mtrr_state->fixed_ranges[idx];
1547 } else if (start < 0x1000000) {
1548 idx = 3 * 8;
1549 idx += ((start - 0xC0000) >> 12);
1550 return mtrr_state->fixed_ranges[idx];
1551 }
1552 }
1553
1554 /*
1555 * Look in variable ranges
1556 * Look of multiple ranges matching this address and pick type
1557 * as per MTRR precedence
1558 */
1559 if (!(mtrr_state->enabled & 2))
1560 return mtrr_state->def_type;
1561
1562 prev_match = 0xFF;
1563 for (i = 0; i < num_var_ranges; ++i) {
1564 unsigned short start_state, end_state;
1565
1566 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
1567 continue;
1568
1569 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
1570 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
1571 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
1572 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
1573
1574 start_state = ((start & mask) == (base & mask));
1575 end_state = ((end & mask) == (base & mask));
1576 if (start_state != end_state)
1577 return 0xFE;
1578
1579 if ((start & mask) != (base & mask))
1580 continue;
1581
1582 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
1583 if (prev_match == 0xFF) {
1584 prev_match = curr_match;
1585 continue;
1586 }
1587
1588 if (prev_match == MTRR_TYPE_UNCACHABLE ||
1589 curr_match == MTRR_TYPE_UNCACHABLE)
1590 return MTRR_TYPE_UNCACHABLE;
1591
1592 if ((prev_match == MTRR_TYPE_WRBACK &&
1593 curr_match == MTRR_TYPE_WRTHROUGH) ||
1594 (prev_match == MTRR_TYPE_WRTHROUGH &&
1595 curr_match == MTRR_TYPE_WRBACK)) {
1596 prev_match = MTRR_TYPE_WRTHROUGH;
1597 curr_match = MTRR_TYPE_WRTHROUGH;
1598 }
1599
1600 if (prev_match != curr_match)
1601 return MTRR_TYPE_UNCACHABLE;
1602 }
1603
1604 if (prev_match != 0xFF)
1605 return prev_match;
1606
1607 return mtrr_state->def_type;
1608}
1609
Sheng Yang4b12f0d2009-04-27 20:35:42 +08001610u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
Sheng Yang74be52e2008-10-09 16:01:56 +08001611{
1612 u8 mtrr;
1613
1614 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
1615 (gfn << PAGE_SHIFT) + PAGE_SIZE);
1616 if (mtrr == 0xfe || mtrr == 0xff)
1617 mtrr = MTRR_TYPE_WRBACK;
1618 return mtrr;
1619}
Sheng Yang4b12f0d2009-04-27 20:35:42 +08001620EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
Sheng Yang74be52e2008-10-09 16:01:56 +08001621
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001622static int kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1623{
1624 unsigned index;
1625 struct hlist_head *bucket;
1626 struct kvm_mmu_page *s;
1627 struct hlist_node *node, *n;
1628
1629 index = kvm_page_table_hashfn(sp->gfn);
1630 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
1631 /* don't unsync if pagetable is shadowed with multiple roles */
1632 hlist_for_each_entry_safe(s, node, n, bucket, hash_link) {
Avi Kivityf6e2c022009-01-11 13:02:10 +02001633 if (s->gfn != sp->gfn || s->role.direct)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001634 continue;
1635 if (s->role.word != sp->role.word)
1636 return 1;
1637 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001638 ++vcpu->kvm->stat.mmu_unsync;
1639 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001640
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03001641 kvm_mmu_mark_parents_unsync(vcpu, sp);
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001642
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001643 mmu_convert_notrap(sp);
1644 return 0;
1645}
1646
1647static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1648 bool can_unsync)
1649{
1650 struct kvm_mmu_page *shadow;
1651
1652 shadow = kvm_mmu_lookup_page(vcpu->kvm, gfn);
1653 if (shadow) {
1654 if (shadow->role.level != PT_PAGE_TABLE_LEVEL)
1655 return 1;
1656 if (shadow->unsync)
1657 return 0;
Marcelo Tosatti582801a2008-09-23 13:18:41 -03001658 if (can_unsync && oos_shadow)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001659 return kvm_unsync_page(vcpu, shadow);
1660 return 1;
1661 }
1662 return 0;
1663}
1664
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001665static int set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte,
1666 unsigned pte_access, int user_fault,
1667 int write_fault, int dirty, int largepage,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03001668 gfn_t gfn, pfn_t pfn, bool speculative,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001669 bool can_unsync)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001670{
1671 u64 spte;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001672 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08001673
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001674 /*
1675 * We don't set the accessed bit, since we sometimes want to see
1676 * whether the guest actually used the pte (in order to detect
1677 * demand paging).
1678 */
Sheng Yang7b523452008-04-25 21:13:50 +08001679 spte = shadow_base_present_pte | shadow_dirty_mask;
Avi Kivity947da532008-03-18 11:05:52 +02001680 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03001681 spte |= shadow_accessed_mask;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001682 if (!dirty)
1683 pte_access &= ~ACC_WRITE_MASK;
Sheng Yang7b523452008-04-25 21:13:50 +08001684 if (pte_access & ACC_EXEC_MASK)
1685 spte |= shadow_x_mask;
1686 else
1687 spte |= shadow_nx_mask;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001688 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08001689 spte |= shadow_user_mask;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001690 if (largepage)
1691 spte |= PT_PAGE_SIZE_MASK;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08001692 if (tdp_enabled)
1693 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
1694 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001695
Anthony Liguori35149e22008-04-02 14:46:56 -05001696 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001697
1698 if ((pte_access & ACC_WRITE_MASK)
1699 || (write_fault && !is_write_protection(vcpu) && !user_fault)) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001700
Marcelo Tosatti38187c82008-09-23 13:18:32 -03001701 if (largepage && has_wrprotected_page(vcpu->kvm, gfn)) {
1702 ret = 1;
1703 spte = shadow_trap_nonpresent_pte;
1704 goto set_pte;
1705 }
1706
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001707 spte |= PT_WRITABLE_MASK;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001708
Marcelo Tosattiecc55892008-11-25 15:58:07 +01001709 /*
1710 * Optimization: for pte sync, if spte was writable the hash
1711 * lookup is unnecessary (and expensive). Write protection
1712 * is responsibility of mmu_get_page / kvm_sync_page.
1713 * Same reasoning can be applied to dirty page accounting.
1714 */
1715 if (!can_unsync && is_writeble_pte(*shadow_pte))
1716 goto set_pte;
1717
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001718 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001719 pgprintk("%s: found shadow page for %lx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001720 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001721 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001722 pte_access &= ~ACC_WRITE_MASK;
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03001723 if (is_writeble_pte(spte))
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001724 spte &= ~PT_WRITABLE_MASK;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001725 }
1726 }
1727
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001728 if (pte_access & ACC_WRITE_MASK)
1729 mark_page_dirty(vcpu->kvm, gfn);
1730
Marcelo Tosatti38187c82008-09-23 13:18:32 -03001731set_pte:
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001732 set_shadow_pte(shadow_pte, spte);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001733 return ret;
1734}
1735
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001736static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte,
1737 unsigned pt_access, unsigned pte_access,
1738 int user_fault, int write_fault, int dirty,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03001739 int *ptwrite, int largepage, gfn_t gfn,
1740 pfn_t pfn, bool speculative)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001741{
1742 int was_rmapped = 0;
1743 int was_writeble = is_writeble_pte(*shadow_pte);
1744
1745 pgprintk("%s: spte %llx access %x write_fault %d"
1746 " user_fault %d gfn %lx\n",
1747 __func__, *shadow_pte, pt_access,
1748 write_fault, user_fault, gfn);
1749
1750 if (is_rmap_pte(*shadow_pte)) {
1751 /*
1752 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
1753 * the parent of the now unreachable PTE.
1754 */
1755 if (largepage && !is_large_pte(*shadow_pte)) {
1756 struct kvm_mmu_page *child;
1757 u64 pte = *shadow_pte;
1758
1759 child = page_header(pte & PT64_BASE_ADDR_MASK);
1760 mmu_page_remove_parent_pte(child, shadow_pte);
1761 } else if (pfn != spte_to_pfn(*shadow_pte)) {
1762 pgprintk("hfn old %lx new %lx\n",
1763 spte_to_pfn(*shadow_pte), pfn);
1764 rmap_remove(vcpu->kvm, shadow_pte);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01001765 } else
1766 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001767 }
1768 if (set_spte(vcpu, shadow_pte, pte_access, user_fault, write_fault,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03001769 dirty, largepage, gfn, pfn, speculative, true)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001770 if (write_fault)
1771 *ptwrite = 1;
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03001772 kvm_x86_ops->tlb_flush(vcpu);
1773 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001774
1775 pgprintk("%s: setting spte %llx\n", __func__, *shadow_pte);
1776 pgprintk("instantiating %s PTE (%s) at %ld (%llx) addr %p\n",
1777 is_large_pte(*shadow_pte)? "2MB" : "4kB",
1778 is_present_pte(*shadow_pte)?"RW":"R", gfn,
1779 *shadow_pte, shadow_pte);
1780 if (!was_rmapped && is_large_pte(*shadow_pte))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001781 ++vcpu->kvm->stat.lpages;
1782
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001783 page_header_update_slot(vcpu->kvm, shadow_pte, gfn);
1784 if (!was_rmapped) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001785 rmap_add(vcpu, shadow_pte, gfn, largepage);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001786 if (!is_rmap_pte(*shadow_pte))
Anthony Liguori35149e22008-04-02 14:46:56 -05001787 kvm_release_pfn_clean(pfn);
Izik Eidus75e68e62008-01-12 23:49:09 +02001788 } else {
1789 if (was_writeble)
Anthony Liguori35149e22008-04-02 14:46:56 -05001790 kvm_release_pfn_dirty(pfn);
Izik Eidus75e68e62008-01-12 23:49:09 +02001791 else
Anthony Liguori35149e22008-04-02 14:46:56 -05001792 kvm_release_pfn_clean(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001793 }
Avi Kivity1b7fcd32008-05-15 13:51:35 +03001794 if (speculative) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001795 vcpu->arch.last_pte_updated = shadow_pte;
Avi Kivity1b7fcd32008-05-15 13:51:35 +03001796 vcpu->arch.last_pte_gfn = gfn;
1797 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001798}
1799
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
1801{
1802}
1803
Joerg Roedel4d9976b2008-02-07 13:47:42 +01001804static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
Avi Kivity6c41f422008-08-26 16:16:08 +03001805 int largepage, gfn_t gfn, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001806{
Avi Kivity9f652d22008-12-25 14:54:25 +02001807 struct kvm_shadow_walk_iterator iterator;
1808 struct kvm_mmu_page *sp;
1809 int pt_write = 0;
1810 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001811
Avi Kivity9f652d22008-12-25 14:54:25 +02001812 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
1813 if (iterator.level == PT_PAGE_TABLE_LEVEL
1814 || (largepage && iterator.level == PT_DIRECTORY_LEVEL)) {
1815 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, ACC_ALL,
1816 0, write, 1, &pt_write,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03001817 largepage, gfn, pfn, false);
Avi Kivity9f652d22008-12-25 14:54:25 +02001818 ++vcpu->stat.pf_fixed;
1819 break;
1820 }
1821
1822 if (*iterator.sptep == shadow_trap_nonpresent_pte) {
1823 pseudo_gfn = (iterator.addr & PT64_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
1824 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
1825 iterator.level - 1,
1826 1, ACC_ALL, iterator.sptep);
1827 if (!sp) {
1828 pgprintk("nonpaging_map: ENOMEM\n");
1829 kvm_release_pfn_clean(pfn);
1830 return -ENOMEM;
1831 }
1832
1833 set_shadow_pte(iterator.sptep,
1834 __pa(sp->spt)
1835 | PT_PRESENT_MASK | PT_WRITABLE_MASK
1836 | shadow_user_mask | shadow_x_mask);
1837 }
1838 }
1839 return pt_write;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001840}
1841
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001842static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
1843{
1844 int r;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001845 int largepage = 0;
Anthony Liguori35149e22008-04-02 14:46:56 -05001846 pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001847 unsigned long mmu_seq;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001848
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001849 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1850 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1851 largepage = 1;
1852 }
1853
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001854 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001855 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05001856 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001857
Avi Kivityd196e342008-01-24 11:44:11 +02001858 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -05001859 if (is_error_pfn(pfn)) {
1860 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +02001861 return 1;
1862 }
1863
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001864 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001865 if (mmu_notifier_retry(vcpu, mmu_seq))
1866 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +02001867 kvm_mmu_free_some_pages(vcpu);
Avi Kivity6c41f422008-08-26 16:16:08 +03001868 r = __direct_map(vcpu, v, write, largepage, gfn, pfn);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001869 spin_unlock(&vcpu->kvm->mmu_lock);
1870
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001871
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001872 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001873
1874out_unlock:
1875 spin_unlock(&vcpu->kvm->mmu_lock);
1876 kvm_release_pfn_clean(pfn);
1877 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001878}
1879
1880
Avi Kivity17ac10a2007-01-05 16:36:40 -08001881static void mmu_free_roots(struct kvm_vcpu *vcpu)
1882{
1883 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02001884 struct kvm_mmu_page *sp;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001885
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001886 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03001887 return;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001888 spin_lock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001889 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1890 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001891
Avi Kivity4db35312007-11-21 15:28:32 +02001892 sp = page_header(root);
1893 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001894 if (!sp->root_count && sp->role.invalid)
1895 kvm_mmu_zap_page(vcpu->kvm, sp);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001896 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001897 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08001898 return;
1899 }
Avi Kivity17ac10a2007-01-05 16:36:40 -08001900 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001901 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08001902
Avi Kivity417726a2007-04-12 17:35:58 +03001903 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03001904 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02001905 sp = page_header(root);
1906 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001907 if (!sp->root_count && sp->role.invalid)
1908 kvm_mmu_zap_page(vcpu->kvm, sp);
Avi Kivity417726a2007-04-12 17:35:58 +03001909 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001910 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001911 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001912 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001913 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001914}
1915
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001916static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
1917{
1918 int ret = 0;
1919
1920 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
1921 set_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests);
1922 ret = 1;
1923 }
1924
1925 return ret;
1926}
1927
1928static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08001929{
1930 int i;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001931 gfn_t root_gfn;
Avi Kivity4db35312007-11-21 15:28:32 +02001932 struct kvm_mmu_page *sp;
Avi Kivityf6e2c022009-01-11 13:02:10 +02001933 int direct = 0;
Avi Kivity3bb65a22007-01-05 16:36:51 -08001934
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001935 root_gfn = vcpu->arch.cr3 >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001936
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001937 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1938 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001939
1940 ASSERT(!VALID_PAGE(root));
Joerg Roedelfb72d162008-02-07 13:47:44 +01001941 if (tdp_enabled)
Avi Kivityf6e2c022009-01-11 13:02:10 +02001942 direct = 1;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001943 if (mmu_check_root(vcpu, root_gfn))
1944 return 1;
Avi Kivity4db35312007-11-21 15:28:32 +02001945 sp = kvm_mmu_get_page(vcpu, root_gfn, 0,
Avi Kivityf6e2c022009-01-11 13:02:10 +02001946 PT64_ROOT_LEVEL, direct,
Joerg Roedelfb72d162008-02-07 13:47:44 +01001947 ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02001948 root = __pa(sp->spt);
1949 ++sp->root_count;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001950 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001951 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001952 }
Avi Kivityf6e2c022009-01-11 13:02:10 +02001953 direct = !is_paging(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01001954 if (tdp_enabled)
Avi Kivityf6e2c022009-01-11 13:02:10 +02001955 direct = 1;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001956 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001957 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08001958
1959 ASSERT(!VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001960 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
1961 if (!is_present_pte(vcpu->arch.pdptrs[i])) {
1962 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03001963 continue;
1964 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001965 root_gfn = vcpu->arch.pdptrs[i] >> PAGE_SHIFT;
1966 } else if (vcpu->arch.mmu.root_level == 0)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001967 root_gfn = 0;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001968 if (mmu_check_root(vcpu, root_gfn))
1969 return 1;
Avi Kivity4db35312007-11-21 15:28:32 +02001970 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Avi Kivityf6e2c022009-01-11 13:02:10 +02001971 PT32_ROOT_LEVEL, direct,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02001972 ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02001973 root = __pa(sp->spt);
1974 ++sp->root_count;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001975 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001976 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001977 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001978 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001979}
1980
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03001981static void mmu_sync_roots(struct kvm_vcpu *vcpu)
1982{
1983 int i;
1984 struct kvm_mmu_page *sp;
1985
1986 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
1987 return;
1988 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1989 hpa_t root = vcpu->arch.mmu.root_hpa;
1990 sp = page_header(root);
1991 mmu_sync_children(vcpu, sp);
1992 return;
1993 }
1994 for (i = 0; i < 4; ++i) {
1995 hpa_t root = vcpu->arch.mmu.pae_root[i];
1996
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03001997 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03001998 root &= PT64_BASE_ADDR_MASK;
1999 sp = page_header(root);
2000 mmu_sync_children(vcpu, sp);
2001 }
2002 }
2003}
2004
2005void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2006{
2007 spin_lock(&vcpu->kvm->mmu_lock);
2008 mmu_sync_roots(vcpu);
2009 spin_unlock(&vcpu->kvm->mmu_lock);
2010}
2011
Avi Kivity6aa8b732006-12-10 02:21:36 -08002012static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
2013{
2014 return vaddr;
2015}
2016
2017static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Avi Kivity3f3e7122007-11-21 14:54:16 +02002018 u32 error_code)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002019{
Avi Kivitye8332402007-12-09 18:43:00 +02002020 gfn_t gfn;
Avi Kivitye2dec932007-01-05 16:36:54 -08002021 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002022
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002023 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Avi Kivitye2dec932007-01-05 16:36:54 -08002024 r = mmu_topup_memory_caches(vcpu);
2025 if (r)
2026 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08002027
Avi Kivity6aa8b732006-12-10 02:21:36 -08002028 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002029 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002030
Avi Kivitye8332402007-12-09 18:43:00 +02002031 gfn = gva >> PAGE_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032
Avi Kivitye8332402007-12-09 18:43:00 +02002033 return nonpaging_map(vcpu, gva & PAGE_MASK,
2034 error_code & PFERR_WRITE_MASK, gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002035}
2036
Joerg Roedelfb72d162008-02-07 13:47:44 +01002037static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
2038 u32 error_code)
2039{
Anthony Liguori35149e22008-04-02 14:46:56 -05002040 pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002041 int r;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002042 int largepage = 0;
2043 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002044 unsigned long mmu_seq;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002045
2046 ASSERT(vcpu);
2047 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2048
2049 r = mmu_topup_memory_caches(vcpu);
2050 if (r)
2051 return r;
2052
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002053 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
2054 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2055 largepage = 1;
2056 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002057 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03002058 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05002059 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -05002060 if (is_error_pfn(pfn)) {
2061 kvm_release_pfn_clean(pfn);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002062 return 1;
2063 }
2064 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002065 if (mmu_notifier_retry(vcpu, mmu_seq))
2066 goto out_unlock;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002067 kvm_mmu_free_some_pages(vcpu);
2068 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
Avi Kivity6c41f422008-08-26 16:16:08 +03002069 largepage, gfn, pfn);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002070 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002071
2072 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002073
2074out_unlock:
2075 spin_unlock(&vcpu->kvm->mmu_lock);
2076 kvm_release_pfn_clean(pfn);
2077 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002078}
2079
Avi Kivity6aa8b732006-12-10 02:21:36 -08002080static void nonpaging_free(struct kvm_vcpu *vcpu)
2081{
Avi Kivity17ac10a2007-01-05 16:36:40 -08002082 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002083}
2084
2085static int nonpaging_init_context(struct kvm_vcpu *vcpu)
2086{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002087 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002088
2089 context->new_cr3 = nonpaging_new_cr3;
2090 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091 context->gva_to_gpa = nonpaging_gva_to_gpa;
2092 context->free = nonpaging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02002093 context->prefetch_page = nonpaging_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002094 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002095 context->invlpg = nonpaging_invlpg;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002096 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002098 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002099 return 0;
2100}
2101
Avi Kivityd835dfe2007-11-21 02:57:59 +02002102void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002103{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002104 ++vcpu->stat.tlb_flush;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002105 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002106}
2107
2108static void paging_new_cr3(struct kvm_vcpu *vcpu)
2109{
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002110 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002111 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002112}
2113
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114static void inject_page_fault(struct kvm_vcpu *vcpu,
2115 u64 addr,
2116 u32 err_code)
2117{
Avi Kivityc3c91fe2007-11-25 14:04:58 +02002118 kvm_inject_page_fault(vcpu, addr, err_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002119}
2120
Avi Kivity6aa8b732006-12-10 02:21:36 -08002121static void paging_free(struct kvm_vcpu *vcpu)
2122{
2123 nonpaging_free(vcpu);
2124}
2125
Dong, Eddie82725b22009-03-30 16:21:08 +08002126static bool is_rsvd_bits_set(struct kvm_vcpu *vcpu, u64 gpte, int level)
2127{
2128 int bit7;
2129
2130 bit7 = (gpte >> 7) & 1;
2131 return (gpte & vcpu->arch.mmu.rsvd_bits_mask[bit7][level-1]) != 0;
2132}
2133
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134#define PTTYPE 64
2135#include "paging_tmpl.h"
2136#undef PTTYPE
2137
2138#define PTTYPE 32
2139#include "paging_tmpl.h"
2140#undef PTTYPE
2141
Dong, Eddie82725b22009-03-30 16:21:08 +08002142static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, int level)
2143{
2144 struct kvm_mmu *context = &vcpu->arch.mmu;
2145 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2146 u64 exb_bit_rsvd = 0;
2147
2148 if (!is_nx(vcpu))
2149 exb_bit_rsvd = rsvd_bits(63, 63);
2150 switch (level) {
2151 case PT32_ROOT_LEVEL:
2152 /* no rsvd bits for 2 level 4K page table entries */
2153 context->rsvd_bits_mask[0][1] = 0;
2154 context->rsvd_bits_mask[0][0] = 0;
2155 if (is_cpuid_PSE36())
2156 /* 36bits PSE 4MB page */
2157 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
2158 else
2159 /* 32 bits PSE 4MB page */
2160 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Avi Kivity29a4b932009-05-19 13:29:27 +03002161 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08002162 break;
2163 case PT32E_ROOT_LEVEL:
Dong, Eddie20c466b2009-03-31 23:03:45 +08002164 context->rsvd_bits_mask[0][2] =
2165 rsvd_bits(maxphyaddr, 63) |
2166 rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
Dong, Eddie82725b22009-03-30 16:21:08 +08002167 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08002168 rsvd_bits(maxphyaddr, 62); /* PDE */
Dong, Eddie82725b22009-03-30 16:21:08 +08002169 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2170 rsvd_bits(maxphyaddr, 62); /* PTE */
2171 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
2172 rsvd_bits(maxphyaddr, 62) |
2173 rsvd_bits(13, 20); /* large page */
Avi Kivity29a4b932009-05-19 13:29:27 +03002174 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08002175 break;
2176 case PT64_ROOT_LEVEL:
2177 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
2178 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2179 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
2180 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
2181 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08002182 rsvd_bits(maxphyaddr, 51);
Dong, Eddie82725b22009-03-30 16:21:08 +08002183 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
2184 rsvd_bits(maxphyaddr, 51);
2185 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
2186 context->rsvd_bits_mask[1][2] = context->rsvd_bits_mask[0][2];
2187 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08002188 rsvd_bits(maxphyaddr, 51) |
2189 rsvd_bits(13, 20); /* large page */
Avi Kivity29a4b932009-05-19 13:29:27 +03002190 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[1][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08002191 break;
2192 }
2193}
2194
Avi Kivity17ac10a2007-01-05 16:36:40 -08002195static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002196{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002197 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002198
2199 ASSERT(is_pae(vcpu));
2200 context->new_cr3 = paging_new_cr3;
2201 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202 context->gva_to_gpa = paging64_gva_to_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +02002203 context->prefetch_page = paging64_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002204 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002205 context->invlpg = paging64_invlpg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002206 context->free = paging_free;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002207 context->root_level = level;
2208 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002209 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002210 return 0;
2211}
2212
Avi Kivity17ac10a2007-01-05 16:36:40 -08002213static int paging64_init_context(struct kvm_vcpu *vcpu)
2214{
Dong, Eddie82725b22009-03-30 16:21:08 +08002215 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002216 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
2217}
2218
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219static int paging32_init_context(struct kvm_vcpu *vcpu)
2220{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002221 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002222
Dong, Eddie82725b22009-03-30 16:21:08 +08002223 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002224 context->new_cr3 = paging_new_cr3;
2225 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226 context->gva_to_gpa = paging32_gva_to_gpa;
2227 context->free = paging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02002228 context->prefetch_page = paging32_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002229 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002230 context->invlpg = paging32_invlpg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002231 context->root_level = PT32_ROOT_LEVEL;
2232 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002233 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002234 return 0;
2235}
2236
2237static int paging32E_init_context(struct kvm_vcpu *vcpu)
2238{
Dong, Eddie82725b22009-03-30 16:21:08 +08002239 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002240 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002241}
2242
Joerg Roedelfb72d162008-02-07 13:47:44 +01002243static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2244{
2245 struct kvm_mmu *context = &vcpu->arch.mmu;
2246
2247 context->new_cr3 = nonpaging_new_cr3;
2248 context->page_fault = tdp_page_fault;
2249 context->free = nonpaging_free;
2250 context->prefetch_page = nonpaging_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002251 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002252 context->invlpg = nonpaging_invlpg;
Sheng Yang67253af2008-04-25 10:20:22 +08002253 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01002254 context->root_hpa = INVALID_PAGE;
2255
2256 if (!is_paging(vcpu)) {
2257 context->gva_to_gpa = nonpaging_gva_to_gpa;
2258 context->root_level = 0;
2259 } else if (is_long_mode(vcpu)) {
Dong, Eddie82725b22009-03-30 16:21:08 +08002260 reset_rsvds_bits_mask(vcpu, PT64_ROOT_LEVEL);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002261 context->gva_to_gpa = paging64_gva_to_gpa;
2262 context->root_level = PT64_ROOT_LEVEL;
2263 } else if (is_pae(vcpu)) {
Dong, Eddie82725b22009-03-30 16:21:08 +08002264 reset_rsvds_bits_mask(vcpu, PT32E_ROOT_LEVEL);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002265 context->gva_to_gpa = paging64_gva_to_gpa;
2266 context->root_level = PT32E_ROOT_LEVEL;
2267 } else {
Dong, Eddie82725b22009-03-30 16:21:08 +08002268 reset_rsvds_bits_mask(vcpu, PT32_ROOT_LEVEL);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002269 context->gva_to_gpa = paging32_gva_to_gpa;
2270 context->root_level = PT32_ROOT_LEVEL;
2271 }
2272
2273 return 0;
2274}
2275
2276static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002277{
Avi Kivitya770f6f2008-12-21 19:20:09 +02002278 int r;
2279
Avi Kivity6aa8b732006-12-10 02:21:36 -08002280 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002281 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282
2283 if (!is_paging(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002284 r = nonpaging_init_context(vcpu);
Avi Kivitya9058ec2006-12-29 16:49:37 -08002285 else if (is_long_mode(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002286 r = paging64_init_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287 else if (is_pae(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002288 r = paging32E_init_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002289 else
Avi Kivitya770f6f2008-12-21 19:20:09 +02002290 r = paging32_init_context(vcpu);
2291
2292 vcpu->arch.mmu.base_role.glevels = vcpu->arch.mmu.root_level;
2293
2294 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002295}
2296
Joerg Roedelfb72d162008-02-07 13:47:44 +01002297static int init_kvm_mmu(struct kvm_vcpu *vcpu)
2298{
Anthony Liguori35149e22008-04-02 14:46:56 -05002299 vcpu->arch.update_pte.pfn = bad_pfn;
2300
Joerg Roedelfb72d162008-02-07 13:47:44 +01002301 if (tdp_enabled)
2302 return init_kvm_tdp_mmu(vcpu);
2303 else
2304 return init_kvm_softmmu(vcpu);
2305}
2306
Avi Kivity6aa8b732006-12-10 02:21:36 -08002307static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
2308{
2309 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002310 if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
2311 vcpu->arch.mmu.free(vcpu);
2312 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002313 }
2314}
2315
2316int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
2317{
Avi Kivity17c3ba92007-06-04 15:58:30 +03002318 destroy_kvm_mmu(vcpu);
2319 return init_kvm_mmu(vcpu);
2320}
Eddie Dong8668a3c2007-10-10 14:26:45 +08002321EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002322
2323int kvm_mmu_load(struct kvm_vcpu *vcpu)
2324{
Avi Kivity714b93d2007-01-05 16:36:53 -08002325 int r;
2326
Avi Kivitye2dec932007-01-05 16:36:54 -08002327 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002328 if (r)
2329 goto out;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002330 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivityeb787d12007-12-31 15:27:49 +02002331 kvm_mmu_free_some_pages(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03002332 r = mmu_alloc_roots(vcpu);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03002333 mmu_sync_roots(vcpu);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002334 spin_unlock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03002335 if (r)
2336 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002337 kvm_x86_ops->set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002338 kvm_mmu_flush_tlb(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08002339out:
2340 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002341}
Avi Kivity17c3ba92007-06-04 15:58:30 +03002342EXPORT_SYMBOL_GPL(kvm_mmu_load);
2343
2344void kvm_mmu_unload(struct kvm_vcpu *vcpu)
2345{
2346 mmu_free_roots(vcpu);
2347}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348
Avi Kivity09072da2007-05-01 14:16:52 +03002349static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +02002350 struct kvm_mmu_page *sp,
Avi Kivityac1b7142007-03-08 17:13:32 +02002351 u64 *spte)
2352{
2353 u64 pte;
2354 struct kvm_mmu_page *child;
2355
2356 pte = *spte;
Avi Kivityc7addb92007-09-16 18:58:32 +02002357 if (is_shadow_present_pte(pte)) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002358 if (sp->role.level == PT_PAGE_TABLE_LEVEL ||
2359 is_large_pte(pte))
Izik Eidus290fc382007-09-27 14:11:22 +02002360 rmap_remove(vcpu->kvm, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002361 else {
2362 child = page_header(pte & PT64_BASE_ADDR_MASK);
Avi Kivity90cb0522007-07-17 13:04:56 +03002363 mmu_page_remove_parent_pte(child, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002364 }
2365 }
Avi Kivityc7addb92007-09-16 18:58:32 +02002366 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002367 if (is_large_pte(pte))
2368 --vcpu->kvm->stat.lpages;
Avi Kivityac1b7142007-03-08 17:13:32 +02002369}
2370
Avi Kivity00284252007-05-01 16:53:31 +03002371static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +02002372 struct kvm_mmu_page *sp,
Avi Kivity00284252007-05-01 16:53:31 +03002373 u64 *spte,
Dong, Eddie489f1d62008-01-07 11:14:20 +02002374 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03002375{
Marcelo Tosatti30945382008-06-11 20:32:40 -03002376 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
2377 if (!vcpu->arch.update_pte.largepage ||
2378 sp->role.glevels == PT32_ROOT_LEVEL) {
2379 ++vcpu->kvm->stat.mmu_pde_zapped;
2380 return;
2381 }
2382 }
Avi Kivity00284252007-05-01 16:53:31 +03002383
Avi Kivity4cee5762007-11-18 16:37:07 +02002384 ++vcpu->kvm->stat.mmu_pte_updated;
Avi Kivity4db35312007-11-21 15:28:32 +02002385 if (sp->role.glevels == PT32_ROOT_LEVEL)
Dong, Eddie489f1d62008-01-07 11:14:20 +02002386 paging32_update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03002387 else
Dong, Eddie489f1d62008-01-07 11:14:20 +02002388 paging64_update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03002389}
2390
Avi Kivity79539ce2007-11-21 02:06:21 +02002391static bool need_remote_flush(u64 old, u64 new)
2392{
2393 if (!is_shadow_present_pte(old))
2394 return false;
2395 if (!is_shadow_present_pte(new))
2396 return true;
2397 if ((old ^ new) & PT64_BASE_ADDR_MASK)
2398 return true;
2399 old ^= PT64_NX_MASK;
2400 new ^= PT64_NX_MASK;
2401 return (old & ~new & PT64_PERM_MASK) != 0;
2402}
2403
2404static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, u64 old, u64 new)
2405{
2406 if (need_remote_flush(old, new))
2407 kvm_flush_remote_tlbs(vcpu->kvm);
2408 else
2409 kvm_mmu_flush_tlb(vcpu);
2410}
2411
Avi Kivity12b7d282007-09-23 14:10:49 +02002412static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
2413{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002414 u64 *spte = vcpu->arch.last_pte_updated;
Avi Kivity12b7d282007-09-23 14:10:49 +02002415
Sheng Yang7b523452008-04-25 21:13:50 +08002416 return !!(spte && (*spte & shadow_accessed_mask));
Avi Kivity12b7d282007-09-23 14:10:49 +02002417}
2418
Avi Kivityd7824ff2007-12-30 12:29:05 +02002419static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
2420 const u8 *new, int bytes)
2421{
2422 gfn_t gfn;
2423 int r;
2424 u64 gpte = 0;
Anthony Liguori35149e22008-04-02 14:46:56 -05002425 pfn_t pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002426
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002427 vcpu->arch.update_pte.largepage = 0;
2428
Avi Kivityd7824ff2007-12-30 12:29:05 +02002429 if (bytes != 4 && bytes != 8)
2430 return;
2431
2432 /*
2433 * Assume that the pte write on a page table of the same type
2434 * as the current vcpu paging mode. This is nearly always true
2435 * (might be false while changing modes). Note it is verified later
2436 * by update_pte().
2437 */
2438 if (is_pae(vcpu)) {
2439 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
2440 if ((bytes == 4) && (gpa % 4 == 0)) {
2441 r = kvm_read_guest(vcpu->kvm, gpa & ~(u64)7, &gpte, 8);
2442 if (r)
2443 return;
2444 memcpy((void *)&gpte + (gpa % 8), new, 4);
2445 } else if ((bytes == 8) && (gpa % 8 == 0)) {
2446 memcpy((void *)&gpte, new, 8);
2447 }
2448 } else {
2449 if ((bytes == 4) && (gpa % 4 == 0))
2450 memcpy((void *)&gpte, new, 4);
2451 }
2452 if (!is_present_pte(gpte))
2453 return;
2454 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002455
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002456 if (is_large_pte(gpte) && is_largepage_backed(vcpu, gfn)) {
2457 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2458 vcpu->arch.update_pte.largepage = 1;
2459 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002460 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03002461 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05002462 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Izik Eidus72dc67a2008-02-10 18:04:15 +02002463
Anthony Liguori35149e22008-04-02 14:46:56 -05002464 if (is_error_pfn(pfn)) {
2465 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +02002466 return;
2467 }
Avi Kivityd7824ff2007-12-30 12:29:05 +02002468 vcpu->arch.update_pte.gfn = gfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05002469 vcpu->arch.update_pte.pfn = pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002470}
2471
Avi Kivity1b7fcd32008-05-15 13:51:35 +03002472static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
2473{
2474 u64 *spte = vcpu->arch.last_pte_updated;
2475
2476 if (spte
2477 && vcpu->arch.last_pte_gfn == gfn
2478 && shadow_accessed_mask
2479 && !(*spte & shadow_accessed_mask)
2480 && is_shadow_present_pte(*spte))
2481 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
2482}
2483
Avi Kivity09072da2007-05-01 14:16:52 +03002484void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Marcelo Tosattiad218f82008-12-01 22:32:05 -02002485 const u8 *new, int bytes,
2486 bool guest_initiated)
Avi Kivityda4a00f2007-01-05 16:36:44 -08002487{
Avi Kivity9b7a0322007-01-05 16:36:45 -08002488 gfn_t gfn = gpa >> PAGE_SHIFT;
Avi Kivity4db35312007-11-21 15:28:32 +02002489 struct kvm_mmu_page *sp;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002490 struct hlist_node *node, *n;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002491 struct hlist_head *bucket;
2492 unsigned index;
Dong, Eddie489f1d62008-01-07 11:14:20 +02002493 u64 entry, gentry;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002494 u64 *spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002495 unsigned offset = offset_in_page(gpa);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002496 unsigned pte_size;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002497 unsigned page_offset;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002498 unsigned misaligned;
Avi Kivityfce06572007-05-01 16:44:05 +03002499 unsigned quadrant;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002500 int level;
Avi Kivity86a5ba02007-01-05 16:36:50 -08002501 int flooded = 0;
Avi Kivityac1b7142007-03-08 17:13:32 +02002502 int npte;
Dong, Eddie489f1d62008-01-07 11:14:20 +02002503 int r;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002504
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002505 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
Avi Kivityd7824ff2007-12-30 12:29:05 +02002506 mmu_guess_page_from_pte_write(vcpu, gpa, new, bytes);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002507 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity1b7fcd32008-05-15 13:51:35 +03002508 kvm_mmu_access_page(vcpu, gfn);
Avi Kivityeb787d12007-12-31 15:27:49 +02002509 kvm_mmu_free_some_pages(vcpu);
Avi Kivity4cee5762007-11-18 16:37:07 +02002510 ++vcpu->kvm->stat.mmu_pte_write;
Avi Kivityc7addb92007-09-16 18:58:32 +02002511 kvm_mmu_audit(vcpu, "pre pte write");
Marcelo Tosattiad218f82008-12-01 22:32:05 -02002512 if (guest_initiated) {
2513 if (gfn == vcpu->arch.last_pt_write_gfn
2514 && !last_updated_pte_accessed(vcpu)) {
2515 ++vcpu->arch.last_pt_write_count;
2516 if (vcpu->arch.last_pt_write_count >= 3)
2517 flooded = 1;
2518 } else {
2519 vcpu->arch.last_pt_write_gfn = gfn;
2520 vcpu->arch.last_pt_write_count = 1;
2521 vcpu->arch.last_pte_updated = NULL;
2522 }
Avi Kivity86a5ba02007-01-05 16:36:50 -08002523 }
Dong, Eddie1ae0a132008-01-07 13:20:25 +02002524 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002525 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02002526 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link) {
Avi Kivityf6e2c022009-01-11 13:02:10 +02002527 if (sp->gfn != gfn || sp->role.direct || sp->role.invalid)
Avi Kivity9b7a0322007-01-05 16:36:45 -08002528 continue;
Avi Kivity4db35312007-11-21 15:28:32 +02002529 pte_size = sp->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002530 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
Avi Kivitye925c5b2007-04-30 14:47:02 +03002531 misaligned |= bytes < 4;
Avi Kivity86a5ba02007-01-05 16:36:50 -08002532 if (misaligned || flooded) {
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002533 /*
2534 * Misaligned accesses are too much trouble to fix
2535 * up; also, they usually indicate a page is not used
2536 * as a page table.
Avi Kivity86a5ba02007-01-05 16:36:50 -08002537 *
2538 * If we're seeing too many writes to a page,
2539 * it may no longer be a page table, or we may be
2540 * forking, in which case it is better to unmap the
2541 * page.
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002542 */
2543 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
Avi Kivity4db35312007-11-21 15:28:32 +02002544 gpa, bytes, sp->role.word);
Marcelo Tosatti07385412008-09-23 13:18:37 -03002545 if (kvm_mmu_zap_page(vcpu->kvm, sp))
2546 n = bucket->first;
Avi Kivity4cee5762007-11-18 16:37:07 +02002547 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002548 continue;
2549 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08002550 page_offset = offset;
Avi Kivity4db35312007-11-21 15:28:32 +02002551 level = sp->role.level;
Avi Kivityac1b7142007-03-08 17:13:32 +02002552 npte = 1;
Avi Kivity4db35312007-11-21 15:28:32 +02002553 if (sp->role.glevels == PT32_ROOT_LEVEL) {
Avi Kivityac1b7142007-03-08 17:13:32 +02002554 page_offset <<= 1; /* 32->64 */
2555 /*
2556 * A 32-bit pde maps 4MB while the shadow pdes map
2557 * only 2MB. So we need to double the offset again
2558 * and zap two pdes instead of one.
2559 */
2560 if (level == PT32_ROOT_LEVEL) {
Avi Kivity6b8d0f92007-04-18 11:18:18 +03002561 page_offset &= ~7; /* kill rounding error */
Avi Kivityac1b7142007-03-08 17:13:32 +02002562 page_offset <<= 1;
2563 npte = 2;
2564 }
Avi Kivityfce06572007-05-01 16:44:05 +03002565 quadrant = page_offset >> PAGE_SHIFT;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002566 page_offset &= ~PAGE_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02002567 if (quadrant != sp->role.quadrant)
Avi Kivityfce06572007-05-01 16:44:05 +03002568 continue;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002569 }
Avi Kivity4db35312007-11-21 15:28:32 +02002570 spte = &sp->spt[page_offset / sizeof(*spte)];
Dong, Eddie489f1d62008-01-07 11:14:20 +02002571 if ((gpa & (pte_size - 1)) || (bytes < pte_size)) {
2572 gentry = 0;
2573 r = kvm_read_guest_atomic(vcpu->kvm,
2574 gpa & ~(u64)(pte_size - 1),
2575 &gentry, pte_size);
2576 new = (const void *)&gentry;
2577 if (r < 0)
2578 new = NULL;
2579 }
Avi Kivityac1b7142007-03-08 17:13:32 +02002580 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02002581 entry = *spte;
Avi Kivity4db35312007-11-21 15:28:32 +02002582 mmu_pte_write_zap_pte(vcpu, sp, spte);
Dong, Eddie489f1d62008-01-07 11:14:20 +02002583 if (new)
2584 mmu_pte_write_new_pte(vcpu, sp, spte, new);
Avi Kivity79539ce2007-11-21 02:06:21 +02002585 mmu_pte_write_flush_tlb(vcpu, entry, *spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002586 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002587 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08002588 }
Avi Kivityc7addb92007-09-16 18:58:32 +02002589 kvm_mmu_audit(vcpu, "post pte write");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002590 spin_unlock(&vcpu->kvm->mmu_lock);
Anthony Liguori35149e22008-04-02 14:46:56 -05002591 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
2592 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
2593 vcpu->arch.update_pte.pfn = bad_pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002594 }
Avi Kivityda4a00f2007-01-05 16:36:44 -08002595}
2596
Avi Kivitya4360362007-01-05 16:36:45 -08002597int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
2598{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002599 gpa_t gpa;
2600 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08002601
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002602 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002603
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002604 spin_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002605 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002606 spin_unlock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002607 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08002608}
Avi Kivity577bdc42008-07-19 08:57:05 +03002609EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08002610
Avi Kivity22d95b12007-09-14 20:26:06 +03002611void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08002612{
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002613 while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
Avi Kivity4db35312007-11-21 15:28:32 +02002614 struct kvm_mmu_page *sp;
Avi Kivityebeace82007-01-05 16:36:47 -08002615
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002616 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
Avi Kivity4db35312007-11-21 15:28:32 +02002617 struct kvm_mmu_page, link);
2618 kvm_mmu_zap_page(vcpu->kvm, sp);
Avi Kivity4cee5762007-11-18 16:37:07 +02002619 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08002620 }
2621}
Avi Kivityebeace82007-01-05 16:36:47 -08002622
Avi Kivity30677142007-10-28 18:48:59 +02002623int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
2624{
2625 int r;
2626 enum emulation_result er;
2627
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002628 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
Avi Kivity30677142007-10-28 18:48:59 +02002629 if (r < 0)
2630 goto out;
2631
2632 if (!r) {
2633 r = 1;
2634 goto out;
2635 }
2636
Avi Kivityb733bfb2007-10-28 18:52:05 +02002637 r = mmu_topup_memory_caches(vcpu);
2638 if (r)
2639 goto out;
2640
Avi Kivity30677142007-10-28 18:48:59 +02002641 er = emulate_instruction(vcpu, vcpu->run, cr2, error_code, 0);
Avi Kivity30677142007-10-28 18:48:59 +02002642
2643 switch (er) {
2644 case EMULATE_DONE:
2645 return 1;
2646 case EMULATE_DO_MMIO:
2647 ++vcpu->stat.mmio_exits;
2648 return 0;
2649 case EMULATE_FAIL:
2650 kvm_report_emulation_failure(vcpu, "pagetable");
2651 return 1;
2652 default:
2653 BUG();
2654 }
2655out:
Avi Kivity30677142007-10-28 18:48:59 +02002656 return r;
2657}
2658EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
2659
Marcelo Tosattia7052892008-09-23 13:18:35 -03002660void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
2661{
Marcelo Tosattia7052892008-09-23 13:18:35 -03002662 vcpu->arch.mmu.invlpg(vcpu, gva);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002663 kvm_mmu_flush_tlb(vcpu);
2664 ++vcpu->stat.invlpg;
2665}
2666EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
2667
Joerg Roedel18552672008-02-07 13:47:41 +01002668void kvm_enable_tdp(void)
2669{
2670 tdp_enabled = true;
2671}
2672EXPORT_SYMBOL_GPL(kvm_enable_tdp);
2673
Joerg Roedel5f4cb662008-07-14 20:36:36 +02002674void kvm_disable_tdp(void)
2675{
2676 tdp_enabled = false;
2677}
2678EXPORT_SYMBOL_GPL(kvm_disable_tdp);
2679
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680static void free_mmu_pages(struct kvm_vcpu *vcpu)
2681{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002682 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002683}
2684
2685static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
2686{
Avi Kivity17ac10a2007-01-05 16:36:40 -08002687 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688 int i;
2689
2690 ASSERT(vcpu);
2691
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002692 if (vcpu->kvm->arch.n_requested_mmu_pages)
2693 vcpu->kvm->arch.n_free_mmu_pages =
2694 vcpu->kvm->arch.n_requested_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002695 else
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002696 vcpu->kvm->arch.n_free_mmu_pages =
2697 vcpu->kvm->arch.n_alloc_mmu_pages;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002698 /*
2699 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
2700 * Therefore we need to allocate shadow page tables in the first
2701 * 4GB of memory, which happens to fit the DMA32 zone.
2702 */
2703 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
2704 if (!page)
2705 goto error_1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002706 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002707 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002708 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002709
Avi Kivity6aa8b732006-12-10 02:21:36 -08002710 return 0;
2711
2712error_1:
2713 free_mmu_pages(vcpu);
2714 return -ENOMEM;
2715}
2716
Ingo Molnar8018c272006-12-29 16:50:01 -08002717int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002718{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002719 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002720 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721
Ingo Molnar8018c272006-12-29 16:50:01 -08002722 return alloc_mmu_pages(vcpu);
2723}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724
Ingo Molnar8018c272006-12-29 16:50:01 -08002725int kvm_mmu_setup(struct kvm_vcpu *vcpu)
2726{
2727 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002728 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08002729
Ingo Molnar8018c272006-12-29 16:50:01 -08002730 return init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002731}
2732
2733void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
2734{
2735 ASSERT(vcpu);
2736
2737 destroy_kvm_mmu(vcpu);
2738 free_mmu_pages(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08002739 mmu_free_memory_caches(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002740}
2741
Avi Kivity90cb0522007-07-17 13:04:56 +03002742void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743{
Avi Kivity4db35312007-11-21 15:28:32 +02002744 struct kvm_mmu_page *sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002746 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747 int i;
2748 u64 *pt;
2749
Sheng Yang291f26b2008-10-16 17:30:57 +08002750 if (!test_bit(slot, sp->slot_bitmap))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002751 continue;
2752
Avi Kivity4db35312007-11-21 15:28:32 +02002753 pt = sp->spt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2755 /* avoid RMW */
Izik Eidus9647c142007-10-16 14:43:46 +02002756 if (pt[i] & PT_WRITABLE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002757 pt[i] &= ~PT_WRITABLE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002758 }
Avi Kivity171d5952008-08-27 16:40:51 +03002759 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08002761
Avi Kivity90cb0522007-07-17 13:04:56 +03002762void kvm_mmu_zap_all(struct kvm *kvm)
Dor Laore0fa8262007-03-30 13:06:33 +03002763{
Avi Kivity4db35312007-11-21 15:28:32 +02002764 struct kvm_mmu_page *sp, *node;
Dor Laore0fa8262007-03-30 13:06:33 +03002765
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002766 spin_lock(&kvm->mmu_lock);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002767 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
Marcelo Tosatti07385412008-09-23 13:18:37 -03002768 if (kvm_mmu_zap_page(kvm, sp))
2769 node = container_of(kvm->arch.active_mmu_pages.next,
2770 struct kvm_mmu_page, link);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002771 spin_unlock(&kvm->mmu_lock);
Dor Laore0fa8262007-03-30 13:06:33 +03002772
Avi Kivity90cb0522007-07-17 13:04:56 +03002773 kvm_flush_remote_tlbs(kvm);
Dor Laore0fa8262007-03-30 13:06:33 +03002774}
2775
Harvey Harrison8b2cf732008-04-27 12:14:13 -07002776static void kvm_mmu_remove_one_alloc_mmu_page(struct kvm *kvm)
Izik Eidus3ee16c82008-03-30 15:17:21 +03002777{
2778 struct kvm_mmu_page *page;
2779
2780 page = container_of(kvm->arch.active_mmu_pages.prev,
2781 struct kvm_mmu_page, link);
2782 kvm_mmu_zap_page(kvm, page);
2783}
2784
2785static int mmu_shrink(int nr_to_scan, gfp_t gfp_mask)
2786{
2787 struct kvm *kvm;
2788 struct kvm *kvm_freed = NULL;
2789 int cache_count = 0;
2790
2791 spin_lock(&kvm_lock);
2792
2793 list_for_each_entry(kvm, &vm_list, vm_list) {
2794 int npages;
2795
Marcelo Tosatti5a4c9282008-07-03 18:33:02 -03002796 if (!down_read_trylock(&kvm->slots_lock))
2797 continue;
Izik Eidus3ee16c82008-03-30 15:17:21 +03002798 spin_lock(&kvm->mmu_lock);
2799 npages = kvm->arch.n_alloc_mmu_pages -
2800 kvm->arch.n_free_mmu_pages;
2801 cache_count += npages;
2802 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
2803 kvm_mmu_remove_one_alloc_mmu_page(kvm);
2804 cache_count--;
2805 kvm_freed = kvm;
2806 }
2807 nr_to_scan--;
2808
2809 spin_unlock(&kvm->mmu_lock);
Marcelo Tosatti5a4c9282008-07-03 18:33:02 -03002810 up_read(&kvm->slots_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03002811 }
2812 if (kvm_freed)
2813 list_move_tail(&kvm_freed->vm_list, &vm_list);
2814
2815 spin_unlock(&kvm_lock);
2816
2817 return cache_count;
2818}
2819
2820static struct shrinker mmu_shrinker = {
2821 .shrink = mmu_shrink,
2822 .seeks = DEFAULT_SEEKS * 10,
2823};
2824
Ingo Molnar2ddfd202008-05-22 10:37:48 +02002825static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03002826{
2827 if (pte_chain_cache)
2828 kmem_cache_destroy(pte_chain_cache);
2829 if (rmap_desc_cache)
2830 kmem_cache_destroy(rmap_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03002831 if (mmu_page_header_cache)
2832 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002833}
2834
Izik Eidus3ee16c82008-03-30 15:17:21 +03002835void kvm_mmu_module_exit(void)
2836{
2837 mmu_destroy_caches();
2838 unregister_shrinker(&mmu_shrinker);
2839}
2840
Avi Kivityb5a33a72007-04-15 16:31:09 +03002841int kvm_mmu_module_init(void)
2842{
2843 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
2844 sizeof(struct kvm_pte_chain),
Paul Mundt20c2df82007-07-20 10:11:58 +09002845 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002846 if (!pte_chain_cache)
2847 goto nomem;
2848 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
2849 sizeof(struct kvm_rmap_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09002850 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002851 if (!rmap_desc_cache)
2852 goto nomem;
2853
Avi Kivityd3d25b02007-05-30 12:34:53 +03002854 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
2855 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09002856 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03002857 if (!mmu_page_header_cache)
2858 goto nomem;
2859
Izik Eidus3ee16c82008-03-30 15:17:21 +03002860 register_shrinker(&mmu_shrinker);
2861
Avi Kivityb5a33a72007-04-15 16:31:09 +03002862 return 0;
2863
2864nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03002865 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03002866 return -ENOMEM;
2867}
2868
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08002869/*
2870 * Caculate mmu pages needed for kvm.
2871 */
2872unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
2873{
2874 int i;
2875 unsigned int nr_mmu_pages;
2876 unsigned int nr_pages = 0;
2877
2878 for (i = 0; i < kvm->nmemslots; i++)
2879 nr_pages += kvm->memslots[i].npages;
2880
2881 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
2882 nr_mmu_pages = max(nr_mmu_pages,
2883 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
2884
2885 return nr_mmu_pages;
2886}
2887
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002888static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2889 unsigned len)
2890{
2891 if (len > buffer->len)
2892 return NULL;
2893 return buffer->ptr;
2894}
2895
2896static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2897 unsigned len)
2898{
2899 void *ret;
2900
2901 ret = pv_mmu_peek_buffer(buffer, len);
2902 if (!ret)
2903 return ret;
2904 buffer->ptr += len;
2905 buffer->len -= len;
2906 buffer->processed += len;
2907 return ret;
2908}
2909
2910static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
2911 gpa_t addr, gpa_t value)
2912{
2913 int bytes = 8;
2914 int r;
2915
2916 if (!is_long_mode(vcpu) && !is_pae(vcpu))
2917 bytes = 4;
2918
2919 r = mmu_topup_memory_caches(vcpu);
2920 if (r)
2921 return r;
2922
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002923 if (!emulator_write_phys(vcpu, addr, &value, bytes))
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002924 return -EFAULT;
2925
2926 return 1;
2927}
2928
2929static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2930{
Avi Kivitya8cd0242009-05-24 22:15:25 +03002931 kvm_set_cr3(vcpu, vcpu->arch.cr3);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002932 return 1;
2933}
2934
2935static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
2936{
2937 spin_lock(&vcpu->kvm->mmu_lock);
2938 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
2939 spin_unlock(&vcpu->kvm->mmu_lock);
2940 return 1;
2941}
2942
2943static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
2944 struct kvm_pv_mmu_op_buffer *buffer)
2945{
2946 struct kvm_mmu_op_header *header;
2947
2948 header = pv_mmu_peek_buffer(buffer, sizeof *header);
2949 if (!header)
2950 return 0;
2951 switch (header->op) {
2952 case KVM_MMU_OP_WRITE_PTE: {
2953 struct kvm_mmu_op_write_pte *wpte;
2954
2955 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
2956 if (!wpte)
2957 return 0;
2958 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
2959 wpte->pte_val);
2960 }
2961 case KVM_MMU_OP_FLUSH_TLB: {
2962 struct kvm_mmu_op_flush_tlb *ftlb;
2963
2964 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
2965 if (!ftlb)
2966 return 0;
2967 return kvm_pv_mmu_flush_tlb(vcpu);
2968 }
2969 case KVM_MMU_OP_RELEASE_PT: {
2970 struct kvm_mmu_op_release_pt *rpt;
2971
2972 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
2973 if (!rpt)
2974 return 0;
2975 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
2976 }
2977 default: return 0;
2978 }
2979}
2980
2981int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
2982 gpa_t addr, unsigned long *ret)
2983{
2984 int r;
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002985 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002986
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002987 buffer->ptr = buffer->buf;
2988 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
2989 buffer->processed = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002990
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002991 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002992 if (r)
2993 goto out;
2994
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002995 while (buffer->len) {
2996 r = kvm_pv_mmu_op_one(vcpu, buffer);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002997 if (r < 0)
2998 goto out;
2999 if (r == 0)
3000 break;
3001 }
3002
3003 r = 1;
3004out:
Dave Hansen6ad18fb2008-08-11 10:01:49 -07003005 *ret = buffer->processed;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05003006 return r;
3007}
3008
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003009#ifdef AUDIT
3010
3011static const char *audit_msg;
3012
3013static gva_t canonicalize(gva_t gva)
3014{
3015#ifdef CONFIG_X86_64
3016 gva = (long long)(gva << 16) >> 16;
3017#endif
3018 return gva;
3019}
3020
3021static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
3022 gva_t va, int level)
3023{
3024 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
3025 int i;
3026 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
3027
3028 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
3029 u64 ent = pt[i];
3030
Avi Kivityc7addb92007-09-16 18:58:32 +02003031 if (ent == shadow_trap_nonpresent_pte)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003032 continue;
3033
3034 va = canonicalize(va);
Avi Kivityc7addb92007-09-16 18:58:32 +02003035 if (level > 1) {
3036 if (ent == shadow_notrap_nonpresent_pte)
3037 printk(KERN_ERR "audit: (%s) nontrapping pte"
3038 " in nonleaf level: levels %d gva %lx"
3039 " level %d pte %llx\n", audit_msg,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003040 vcpu->arch.mmu.root_level, va, level, ent);
Jan Kiszka34382532009-04-25 12:43:21 +02003041 else
3042 audit_mappings_page(vcpu, ent, va, level - 1);
Avi Kivityc7addb92007-09-16 18:58:32 +02003043 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003044 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, va);
Jan Kiszka34382532009-04-25 12:43:21 +02003045 gfn_t gfn = gpa >> PAGE_SHIFT;
3046 pfn_t pfn = gfn_to_pfn(vcpu->kvm, gfn);
3047 hpa_t hpa = (hpa_t)pfn << PAGE_SHIFT;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003048
Avi Kivityc7addb92007-09-16 18:58:32 +02003049 if (is_shadow_present_pte(ent)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003050 && (ent & PT64_BASE_ADDR_MASK) != hpa)
Avi Kivityc7addb92007-09-16 18:58:32 +02003051 printk(KERN_ERR "xx audit error: (%s) levels %d"
3052 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003053 audit_msg, vcpu->arch.mmu.root_level,
Mike Dayd77c26f2007-10-08 09:02:08 -04003054 va, gpa, hpa, ent,
3055 is_shadow_present_pte(ent));
Avi Kivityc7addb92007-09-16 18:58:32 +02003056 else if (ent == shadow_notrap_nonpresent_pte
3057 && !is_error_hpa(hpa))
3058 printk(KERN_ERR "audit: (%s) notrap shadow,"
3059 " valid guest gva %lx\n", audit_msg, va);
Anthony Liguori35149e22008-04-02 14:46:56 -05003060 kvm_release_pfn_clean(pfn);
Avi Kivityc7addb92007-09-16 18:58:32 +02003061
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003062 }
3063 }
3064}
3065
3066static void audit_mappings(struct kvm_vcpu *vcpu)
3067{
Avi Kivity1ea252a2007-03-08 11:48:09 +02003068 unsigned i;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003069
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003070 if (vcpu->arch.mmu.root_level == 4)
3071 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003072 else
3073 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003074 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003075 audit_mappings_page(vcpu,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003076 vcpu->arch.mmu.pae_root[i],
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003077 i << 30,
3078 2);
3079}
3080
3081static int count_rmaps(struct kvm_vcpu *vcpu)
3082{
3083 int nmaps = 0;
3084 int i, j, k;
3085
3086 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
3087 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
3088 struct kvm_rmap_desc *d;
3089
3090 for (j = 0; j < m->npages; ++j) {
Izik Eidus290fc382007-09-27 14:11:22 +02003091 unsigned long *rmapp = &m->rmap[j];
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003092
Izik Eidus290fc382007-09-27 14:11:22 +02003093 if (!*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003094 continue;
Izik Eidus290fc382007-09-27 14:11:22 +02003095 if (!(*rmapp & 1)) {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003096 ++nmaps;
3097 continue;
3098 }
Izik Eidus290fc382007-09-27 14:11:22 +02003099 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003100 while (d) {
3101 for (k = 0; k < RMAP_EXT; ++k)
3102 if (d->shadow_ptes[k])
3103 ++nmaps;
3104 else
3105 break;
3106 d = d->more;
3107 }
3108 }
3109 }
3110 return nmaps;
3111}
3112
3113static int count_writable_mappings(struct kvm_vcpu *vcpu)
3114{
3115 int nmaps = 0;
Avi Kivity4db35312007-11-21 15:28:32 +02003116 struct kvm_mmu_page *sp;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003117 int i;
3118
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003119 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
Avi Kivity4db35312007-11-21 15:28:32 +02003120 u64 *pt = sp->spt;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003121
Avi Kivity4db35312007-11-21 15:28:32 +02003122 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003123 continue;
3124
3125 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3126 u64 ent = pt[i];
3127
3128 if (!(ent & PT_PRESENT_MASK))
3129 continue;
3130 if (!(ent & PT_WRITABLE_MASK))
3131 continue;
3132 ++nmaps;
3133 }
3134 }
3135 return nmaps;
3136}
3137
3138static void audit_rmap(struct kvm_vcpu *vcpu)
3139{
3140 int n_rmap = count_rmaps(vcpu);
3141 int n_actual = count_writable_mappings(vcpu);
3142
3143 if (n_rmap != n_actual)
3144 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003145 __func__, audit_msg, n_rmap, n_actual);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003146}
3147
3148static void audit_write_protection(struct kvm_vcpu *vcpu)
3149{
Avi Kivity4db35312007-11-21 15:28:32 +02003150 struct kvm_mmu_page *sp;
Izik Eidus290fc382007-09-27 14:11:22 +02003151 struct kvm_memory_slot *slot;
3152 unsigned long *rmapp;
3153 gfn_t gfn;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003154
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003155 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
Avi Kivityf6e2c022009-01-11 13:02:10 +02003156 if (sp->role.direct)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003157 continue;
3158
Avi Kivity4db35312007-11-21 15:28:32 +02003159 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
Izik Eidus28430992008-10-03 17:40:32 +03003160 slot = gfn_to_memslot_unaliased(vcpu->kvm, sp->gfn);
Izik Eidus290fc382007-09-27 14:11:22 +02003161 rmapp = &slot->rmap[gfn - slot->base_gfn];
3162 if (*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003163 printk(KERN_ERR "%s: (%s) shadow page has writable"
3164 " mappings: gfn %lx role %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003165 __func__, audit_msg, sp->gfn,
Avi Kivity4db35312007-11-21 15:28:32 +02003166 sp->role.word);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003167 }
3168}
3169
3170static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
3171{
3172 int olddbg = dbg;
3173
3174 dbg = 0;
3175 audit_msg = msg;
3176 audit_rmap(vcpu);
3177 audit_write_protection(vcpu);
3178 audit_mappings(vcpu);
3179 dbg = olddbg;
3180}
3181
3182#endif