blob: f15023c11fea11b1d85c826f650a83275c9ec8fb [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)
Avi Kivity73b10872007-01-26 00:56:41 -0800129#define PFERR_FETCH_MASK (1U << 4)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800130
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131#define PT_DIRECTORY_LEVEL 2
132#define PT_PAGE_TABLE_LEVEL 1
133
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800134#define RMAP_EXT 4
135
Avi Kivityfe135d22007-12-09 16:15:46 +0200136#define ACC_EXEC_MASK 1
137#define ACC_WRITE_MASK PT_WRITABLE_MASK
138#define ACC_USER_MASK PT_USER_MASK
139#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
140
Avi Kivity135f8c22008-08-21 17:49:56 +0300141#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
142
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800143struct kvm_rmap_desc {
144 u64 *shadow_ptes[RMAP_EXT];
145 struct kvm_rmap_desc *more;
146};
147
Avi Kivity3d000db2008-08-22 19:24:38 +0300148struct kvm_shadow_walk {
149 int (*entry)(struct kvm_shadow_walk *walk, struct kvm_vcpu *vcpu,
Sheng Yangd40a1ee2008-09-01 19:41:20 +0800150 u64 addr, u64 *spte, int level);
Avi Kivity3d000db2008-08-22 19:24:38 +0300151};
152
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300153struct kvm_unsync_walk {
154 int (*entry) (struct kvm_mmu_page *sp, struct kvm_unsync_walk *walk);
155};
156
Marcelo Tosattiad8cfbe2008-09-23 13:18:36 -0300157typedef int (*mmu_parent_walk_fn) (struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp);
158
Avi Kivityb5a33a72007-04-15 16:31:09 +0300159static struct kmem_cache *pte_chain_cache;
160static struct kmem_cache *rmap_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300161static struct kmem_cache *mmu_page_header_cache;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300162
Avi Kivityc7addb92007-09-16 18:58:32 +0200163static u64 __read_mostly shadow_trap_nonpresent_pte;
164static u64 __read_mostly shadow_notrap_nonpresent_pte;
Sheng Yang7b523452008-04-25 21:13:50 +0800165static u64 __read_mostly shadow_base_present_pte;
166static u64 __read_mostly shadow_nx_mask;
167static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
168static u64 __read_mostly shadow_user_mask;
169static u64 __read_mostly shadow_accessed_mask;
170static u64 __read_mostly shadow_dirty_mask;
Sheng Yang64d4d522008-10-09 16:01:57 +0800171static u64 __read_mostly shadow_mt_mask;
Avi Kivityc7addb92007-09-16 18:58:32 +0200172
173void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
174{
175 shadow_trap_nonpresent_pte = trap_pte;
176 shadow_notrap_nonpresent_pte = notrap_pte;
177}
178EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
179
Sheng Yang7b523452008-04-25 21:13:50 +0800180void kvm_mmu_set_base_ptes(u64 base_pte)
181{
182 shadow_base_present_pte = base_pte;
183}
184EXPORT_SYMBOL_GPL(kvm_mmu_set_base_ptes);
185
186void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Sheng Yang64d4d522008-10-09 16:01:57 +0800187 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 mt_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800188{
189 shadow_user_mask = user_mask;
190 shadow_accessed_mask = accessed_mask;
191 shadow_dirty_mask = dirty_mask;
192 shadow_nx_mask = nx_mask;
193 shadow_x_mask = x_mask;
Sheng Yang64d4d522008-10-09 16:01:57 +0800194 shadow_mt_mask = mt_mask;
Sheng Yang7b523452008-04-25 21:13:50 +0800195}
196EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
197
Avi Kivity6aa8b732006-12-10 02:21:36 -0800198static int is_write_protection(struct kvm_vcpu *vcpu)
199{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800200 return vcpu->arch.cr0 & X86_CR0_WP;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800201}
202
203static int is_cpuid_PSE36(void)
204{
205 return 1;
206}
207
Avi Kivity73b10872007-01-26 00:56:41 -0800208static int is_nx(struct kvm_vcpu *vcpu)
209{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800210 return vcpu->arch.shadow_efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800211}
212
Avi Kivity6aa8b732006-12-10 02:21:36 -0800213static int is_present_pte(unsigned long pte)
214{
215 return pte & PT_PRESENT_MASK;
216}
217
Avi Kivityc7addb92007-09-16 18:58:32 +0200218static int is_shadow_present_pte(u64 pte)
219{
Avi Kivityc7addb92007-09-16 18:58:32 +0200220 return pte != shadow_trap_nonpresent_pte
221 && pte != shadow_notrap_nonpresent_pte;
222}
223
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300224static int is_large_pte(u64 pte)
225{
226 return pte & PT_PAGE_SIZE_MASK;
227}
228
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229static int is_writeble_pte(unsigned long pte)
230{
231 return pte & PT_WRITABLE_MASK;
232}
233
Avi Kivitye3c5e7ec2007-10-11 12:32:30 +0200234static int is_dirty_pte(unsigned long pte)
235{
Sheng Yang7b523452008-04-25 21:13:50 +0800236 return pte & shadow_dirty_mask;
Avi Kivitye3c5e7ec2007-10-11 12:32:30 +0200237}
238
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800239static int is_rmap_pte(u64 pte)
240{
Avi Kivity4b1a80f2008-03-23 12:18:19 +0200241 return is_shadow_present_pte(pte);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800242}
243
Anthony Liguori35149e22008-04-02 14:46:56 -0500244static pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200245{
Anthony Liguori35149e22008-04-02 14:46:56 -0500246 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200247}
248
Avi Kivityda928522007-11-21 13:54:47 +0200249static gfn_t pse36_gfn_delta(u32 gpte)
250{
251 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
252
253 return (gpte & PT32_DIR_PSE36_MASK) << shift;
254}
255
Avi Kivitye663ee62007-05-31 15:46:04 +0300256static void set_shadow_pte(u64 *sptep, u64 spte)
257{
258#ifdef CONFIG_X86_64
259 set_64bit((unsigned long *)sptep, spte);
260#else
261 set_64bit((unsigned long long *)sptep, spte);
262#endif
263}
264
Avi Kivitye2dec932007-01-05 16:36:54 -0800265static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300266 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800267{
268 void *obj;
269
270 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800271 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800272 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300273 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800274 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800275 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800276 cache->objects[cache->nobjs++] = obj;
277 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800278 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800279}
280
281static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
282{
283 while (mc->nobjs)
284 kfree(mc->objects[--mc->nobjs]);
285}
286
Avi Kivityc1158e62007-07-20 08:18:27 +0300287static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300288 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300289{
290 struct page *page;
291
292 if (cache->nobjs >= min)
293 return 0;
294 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300295 page = alloc_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300296 if (!page)
297 return -ENOMEM;
298 set_page_private(page, 0);
299 cache->objects[cache->nobjs++] = page_address(page);
300 }
301 return 0;
302}
303
304static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
305{
306 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300307 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300308}
309
Avi Kivity8c438502007-04-16 11:53:17 +0300310static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
311{
312 int r;
313
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800314 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_chain_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300315 pte_chain_cache, 4);
316 if (r)
317 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800318 r = mmu_topup_memory_cache(&vcpu->arch.mmu_rmap_desc_cache,
Marcelo Tosattic41ef342008-10-28 18:16:58 -0200319 rmap_desc_cache, 4);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300320 if (r)
321 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800322 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300323 if (r)
324 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800325 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300326 mmu_page_header_cache, 4);
327out:
Avi Kivity8c438502007-04-16 11:53:17 +0300328 return r;
329}
330
Avi Kivity714b93d2007-01-05 16:36:53 -0800331static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
332{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800333 mmu_free_memory_cache(&vcpu->arch.mmu_pte_chain_cache);
334 mmu_free_memory_cache(&vcpu->arch.mmu_rmap_desc_cache);
335 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
336 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800337}
338
339static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
340 size_t size)
341{
342 void *p;
343
344 BUG_ON(!mc->nobjs);
345 p = mc->objects[--mc->nobjs];
346 memset(p, 0, size);
347 return p;
348}
349
Avi Kivity714b93d2007-01-05 16:36:53 -0800350static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
351{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800352 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_chain_cache,
Avi Kivity714b93d2007-01-05 16:36:53 -0800353 sizeof(struct kvm_pte_chain));
354}
355
Avi Kivity90cb0522007-07-17 13:04:56 +0300356static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800357{
Avi Kivity90cb0522007-07-17 13:04:56 +0300358 kfree(pc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800359}
360
361static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
362{
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800363 return mmu_memory_cache_alloc(&vcpu->arch.mmu_rmap_desc_cache,
Avi Kivity714b93d2007-01-05 16:36:53 -0800364 sizeof(struct kvm_rmap_desc));
365}
366
Avi Kivity90cb0522007-07-17 13:04:56 +0300367static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
Avi Kivity714b93d2007-01-05 16:36:53 -0800368{
Avi Kivity90cb0522007-07-17 13:04:56 +0300369 kfree(rd);
Avi Kivity714b93d2007-01-05 16:36:53 -0800370}
371
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800372/*
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300373 * Return the pointer to the largepage write count for a given
374 * gfn, handling slots that are not large page aligned.
375 */
376static int *slot_largepage_idx(gfn_t gfn, struct kvm_memory_slot *slot)
377{
378 unsigned long idx;
379
380 idx = (gfn / KVM_PAGES_PER_HPAGE) -
381 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
382 return &slot->lpage_info[idx].write_count;
383}
384
385static void account_shadowed(struct kvm *kvm, gfn_t gfn)
386{
387 int *write_count;
388
Izik Eidus28430992008-10-03 17:40:32 +0300389 gfn = unalias_gfn(kvm, gfn);
390 write_count = slot_largepage_idx(gfn,
391 gfn_to_memslot_unaliased(kvm, gfn));
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300392 *write_count += 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300393}
394
395static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
396{
397 int *write_count;
398
Izik Eidus28430992008-10-03 17:40:32 +0300399 gfn = unalias_gfn(kvm, gfn);
400 write_count = slot_largepage_idx(gfn,
401 gfn_to_memslot_unaliased(kvm, gfn));
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300402 *write_count -= 1;
403 WARN_ON(*write_count < 0);
404}
405
406static int has_wrprotected_page(struct kvm *kvm, gfn_t gfn)
407{
Izik Eidus28430992008-10-03 17:40:32 +0300408 struct kvm_memory_slot *slot;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300409 int *largepage_idx;
410
Izik Eidus28430992008-10-03 17:40:32 +0300411 gfn = unalias_gfn(kvm, gfn);
412 slot = gfn_to_memslot_unaliased(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300413 if (slot) {
414 largepage_idx = slot_largepage_idx(gfn, slot);
415 return *largepage_idx;
416 }
417
418 return 1;
419}
420
421static int host_largepage_backed(struct kvm *kvm, gfn_t gfn)
422{
423 struct vm_area_struct *vma;
424 unsigned long addr;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300425 int ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300426
427 addr = gfn_to_hva(kvm, gfn);
428 if (kvm_is_error_hva(addr))
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300429 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300430
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300431 down_read(&current->mm->mmap_sem);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300432 vma = find_vma(current->mm, addr);
433 if (vma && is_vm_hugetlb_page(vma))
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300434 ret = 1;
435 up_read(&current->mm->mmap_sem);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300436
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300437 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300438}
439
440static int is_largepage_backed(struct kvm_vcpu *vcpu, gfn_t large_gfn)
441{
442 struct kvm_memory_slot *slot;
443
444 if (has_wrprotected_page(vcpu->kvm, large_gfn))
445 return 0;
446
447 if (!host_largepage_backed(vcpu->kvm, large_gfn))
448 return 0;
449
450 slot = gfn_to_memslot(vcpu->kvm, large_gfn);
451 if (slot && slot->dirty_bitmap)
452 return 0;
453
454 return 1;
455}
456
457/*
Izik Eidus290fc382007-09-27 14:11:22 +0200458 * Take gfn and return the reverse mapping to it.
459 * Note: gfn must be unaliased before this function get called
460 */
461
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300462static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int lpage)
Izik Eidus290fc382007-09-27 14:11:22 +0200463{
464 struct kvm_memory_slot *slot;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300465 unsigned long idx;
Izik Eidus290fc382007-09-27 14:11:22 +0200466
467 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300468 if (!lpage)
469 return &slot->rmap[gfn - slot->base_gfn];
470
471 idx = (gfn / KVM_PAGES_PER_HPAGE) -
472 (slot->base_gfn / KVM_PAGES_PER_HPAGE);
473
474 return &slot->lpage_info[idx].rmap_pde;
Izik Eidus290fc382007-09-27 14:11:22 +0200475}
476
477/*
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800478 * Reverse mapping data structures:
479 *
Izik Eidus290fc382007-09-27 14:11:22 +0200480 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
481 * that points to page_address(page).
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800482 *
Izik Eidus290fc382007-09-27 14:11:22 +0200483 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
484 * containing more mappings.
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800485 */
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300486static void rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn, int lpage)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800487{
Avi Kivity4db35312007-11-21 15:28:32 +0200488 struct kvm_mmu_page *sp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800489 struct kvm_rmap_desc *desc;
Izik Eidus290fc382007-09-27 14:11:22 +0200490 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800491 int i;
492
493 if (!is_rmap_pte(*spte))
494 return;
Izik Eidus290fc382007-09-27 14:11:22 +0200495 gfn = unalias_gfn(vcpu->kvm, gfn);
Avi Kivity4db35312007-11-21 15:28:32 +0200496 sp = page_header(__pa(spte));
497 sp->gfns[spte - sp->spt] = gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300498 rmapp = gfn_to_rmap(vcpu->kvm, gfn, lpage);
Izik Eidus290fc382007-09-27 14:11:22 +0200499 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800500 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200501 *rmapp = (unsigned long)spte;
502 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800503 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
Avi Kivity714b93d2007-01-05 16:36:53 -0800504 desc = mmu_alloc_rmap_desc(vcpu);
Izik Eidus290fc382007-09-27 14:11:22 +0200505 desc->shadow_ptes[0] = (u64 *)*rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800506 desc->shadow_ptes[1] = spte;
Izik Eidus290fc382007-09-27 14:11:22 +0200507 *rmapp = (unsigned long)desc | 1;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800508 } else {
509 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200510 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800511 while (desc->shadow_ptes[RMAP_EXT-1] && desc->more)
512 desc = desc->more;
513 if (desc->shadow_ptes[RMAP_EXT-1]) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800514 desc->more = mmu_alloc_rmap_desc(vcpu);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800515 desc = desc->more;
516 }
517 for (i = 0; desc->shadow_ptes[i]; ++i)
518 ;
519 desc->shadow_ptes[i] = spte;
520 }
521}
522
Izik Eidus290fc382007-09-27 14:11:22 +0200523static void rmap_desc_remove_entry(unsigned long *rmapp,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800524 struct kvm_rmap_desc *desc,
525 int i,
526 struct kvm_rmap_desc *prev_desc)
527{
528 int j;
529
530 for (j = RMAP_EXT - 1; !desc->shadow_ptes[j] && j > i; --j)
531 ;
532 desc->shadow_ptes[i] = desc->shadow_ptes[j];
Al Viro11718b4d2007-02-09 16:39:20 +0000533 desc->shadow_ptes[j] = NULL;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800534 if (j != 0)
535 return;
536 if (!prev_desc && !desc->more)
Izik Eidus290fc382007-09-27 14:11:22 +0200537 *rmapp = (unsigned long)desc->shadow_ptes[0];
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800538 else
539 if (prev_desc)
540 prev_desc->more = desc->more;
541 else
Izik Eidus290fc382007-09-27 14:11:22 +0200542 *rmapp = (unsigned long)desc->more | 1;
Avi Kivity90cb0522007-07-17 13:04:56 +0300543 mmu_free_rmap_desc(desc);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800544}
545
Izik Eidus290fc382007-09-27 14:11:22 +0200546static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800547{
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800548 struct kvm_rmap_desc *desc;
549 struct kvm_rmap_desc *prev_desc;
Avi Kivity4db35312007-11-21 15:28:32 +0200550 struct kvm_mmu_page *sp;
Anthony Liguori35149e22008-04-02 14:46:56 -0500551 pfn_t pfn;
Izik Eidus290fc382007-09-27 14:11:22 +0200552 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800553 int i;
554
555 if (!is_rmap_pte(*spte))
556 return;
Avi Kivity4db35312007-11-21 15:28:32 +0200557 sp = page_header(__pa(spte));
Anthony Liguori35149e22008-04-02 14:46:56 -0500558 pfn = spte_to_pfn(*spte);
Sheng Yang7b523452008-04-25 21:13:50 +0800559 if (*spte & shadow_accessed_mask)
Anthony Liguori35149e22008-04-02 14:46:56 -0500560 kvm_set_pfn_accessed(pfn);
Izik Eidusb4231d62007-11-20 11:49:33 +0200561 if (is_writeble_pte(*spte))
Anthony Liguori35149e22008-04-02 14:46:56 -0500562 kvm_release_pfn_dirty(pfn);
Izik Eidusb4231d62007-11-20 11:49:33 +0200563 else
Anthony Liguori35149e22008-04-02 14:46:56 -0500564 kvm_release_pfn_clean(pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300565 rmapp = gfn_to_rmap(kvm, sp->gfns[spte - sp->spt], is_large_pte(*spte));
Izik Eidus290fc382007-09-27 14:11:22 +0200566 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800567 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
568 BUG();
Izik Eidus290fc382007-09-27 14:11:22 +0200569 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800570 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200571 if ((u64 *)*rmapp != spte) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800572 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
573 spte, *spte);
574 BUG();
575 }
Izik Eidus290fc382007-09-27 14:11:22 +0200576 *rmapp = 0;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800577 } else {
578 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200579 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800580 prev_desc = NULL;
581 while (desc) {
582 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i)
583 if (desc->shadow_ptes[i] == spte) {
Izik Eidus290fc382007-09-27 14:11:22 +0200584 rmap_desc_remove_entry(rmapp,
Avi Kivity714b93d2007-01-05 16:36:53 -0800585 desc, i,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800586 prev_desc);
587 return;
588 }
589 prev_desc = desc;
590 desc = desc->more;
591 }
592 BUG();
593 }
594}
595
Izik Eidus98348e92007-10-16 14:42:30 +0200596static u64 *rmap_next(struct kvm *kvm, unsigned long *rmapp, u64 *spte)
Avi Kivity374cbac2007-01-05 16:36:43 -0800597{
Avi Kivity374cbac2007-01-05 16:36:43 -0800598 struct kvm_rmap_desc *desc;
Izik Eidus98348e92007-10-16 14:42:30 +0200599 struct kvm_rmap_desc *prev_desc;
600 u64 *prev_spte;
601 int i;
602
603 if (!*rmapp)
604 return NULL;
605 else if (!(*rmapp & 1)) {
606 if (!spte)
607 return (u64 *)*rmapp;
608 return NULL;
609 }
610 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
611 prev_desc = NULL;
612 prev_spte = NULL;
613 while (desc) {
614 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i) {
615 if (prev_spte == spte)
616 return desc->shadow_ptes[i];
617 prev_spte = desc->shadow_ptes[i];
618 }
619 desc = desc->more;
620 }
621 return NULL;
622}
623
Marcelo Tosattib1a36822008-12-01 22:32:03 -0200624static int rmap_write_protect(struct kvm *kvm, u64 gfn)
Izik Eidus98348e92007-10-16 14:42:30 +0200625{
Izik Eidus290fc382007-09-27 14:11:22 +0200626 unsigned long *rmapp;
Avi Kivity374cbac2007-01-05 16:36:43 -0800627 u64 *spte;
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800628 int write_protected = 0;
Avi Kivity374cbac2007-01-05 16:36:43 -0800629
Anthony Liguori4a4c9922007-10-10 20:08:41 -0500630 gfn = unalias_gfn(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300631 rmapp = gfn_to_rmap(kvm, gfn, 0);
Avi Kivity374cbac2007-01-05 16:36:43 -0800632
Izik Eidus98348e92007-10-16 14:42:30 +0200633 spte = rmap_next(kvm, rmapp, NULL);
634 while (spte) {
Avi Kivity374cbac2007-01-05 16:36:43 -0800635 BUG_ON(!spte);
Avi Kivity374cbac2007-01-05 16:36:43 -0800636 BUG_ON(!(*spte & PT_PRESENT_MASK));
Avi Kivity374cbac2007-01-05 16:36:43 -0800637 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800638 if (is_writeble_pte(*spte)) {
Izik Eidus9647c142007-10-16 14:43:46 +0200639 set_shadow_pte(spte, *spte & ~PT_WRITABLE_MASK);
Eddie Dongcaa5b8a2007-12-18 06:08:27 +0800640 write_protected = 1;
641 }
Izik Eidus9647c142007-10-16 14:43:46 +0200642 spte = rmap_next(kvm, rmapp, spte);
Avi Kivity374cbac2007-01-05 16:36:43 -0800643 }
Izik Eidus855149a2008-03-20 18:17:24 +0200644 if (write_protected) {
Anthony Liguori35149e22008-04-02 14:46:56 -0500645 pfn_t pfn;
Izik Eidus855149a2008-03-20 18:17:24 +0200646
647 spte = rmap_next(kvm, rmapp, NULL);
Anthony Liguori35149e22008-04-02 14:46:56 -0500648 pfn = spte_to_pfn(*spte);
649 kvm_set_pfn_dirty(pfn);
Izik Eidus855149a2008-03-20 18:17:24 +0200650 }
651
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300652 /* check for huge page mappings */
653 rmapp = gfn_to_rmap(kvm, gfn, 1);
654 spte = rmap_next(kvm, rmapp, NULL);
655 while (spte) {
656 BUG_ON(!spte);
657 BUG_ON(!(*spte & PT_PRESENT_MASK));
658 BUG_ON((*spte & (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK)) != (PT_PAGE_SIZE_MASK|PT_PRESENT_MASK));
659 pgprintk("rmap_write_protect(large): spte %p %llx %lld\n", spte, *spte, gfn);
660 if (is_writeble_pte(*spte)) {
661 rmap_remove(kvm, spte);
662 --kvm->stat.lpages;
663 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Marcelo Tosatti6597ca02008-06-08 01:48:53 -0300664 spte = NULL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300665 write_protected = 1;
666 }
667 spte = rmap_next(kvm, rmapp, spte);
668 }
669
Marcelo Tosattib1a36822008-12-01 22:32:03 -0200670 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -0800671}
672
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200673static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp)
674{
675 u64 *spte;
676 int need_tlb_flush = 0;
677
678 while ((spte = rmap_next(kvm, rmapp, NULL))) {
679 BUG_ON(!(*spte & PT_PRESENT_MASK));
680 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", spte, *spte);
681 rmap_remove(kvm, spte);
682 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
683 need_tlb_flush = 1;
684 }
685 return need_tlb_flush;
686}
687
688static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
689 int (*handler)(struct kvm *kvm, unsigned long *rmapp))
690{
691 int i;
692 int retval = 0;
693
694 /*
695 * If mmap_sem isn't taken, we can look the memslots with only
696 * the mmu_lock by skipping over the slots with userspace_addr == 0.
697 */
698 for (i = 0; i < kvm->nmemslots; i++) {
699 struct kvm_memory_slot *memslot = &kvm->memslots[i];
700 unsigned long start = memslot->userspace_addr;
701 unsigned long end;
702
703 /* mmu_lock protects userspace_addr */
704 if (!start)
705 continue;
706
707 end = start + (memslot->npages << PAGE_SHIFT);
708 if (hva >= start && hva < end) {
709 gfn_t gfn_offset = (hva - start) >> PAGE_SHIFT;
710 retval |= handler(kvm, &memslot->rmap[gfn_offset]);
711 retval |= handler(kvm,
712 &memslot->lpage_info[
713 gfn_offset /
714 KVM_PAGES_PER_HPAGE].rmap_pde);
715 }
716 }
717
718 return retval;
719}
720
721int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
722{
723 return kvm_handle_hva(kvm, hva, kvm_unmap_rmapp);
724}
725
726static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp)
727{
728 u64 *spte;
729 int young = 0;
730
Sheng Yang534e38b2008-09-08 15:12:30 +0800731 /* always return old for EPT */
732 if (!shadow_accessed_mask)
733 return 0;
734
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200735 spte = rmap_next(kvm, rmapp, NULL);
736 while (spte) {
737 int _young;
738 u64 _spte = *spte;
739 BUG_ON(!(_spte & PT_PRESENT_MASK));
740 _young = _spte & PT_ACCESSED_MASK;
741 if (_young) {
742 young = 1;
743 clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
744 }
745 spte = rmap_next(kvm, rmapp, spte);
746 }
747 return young;
748}
749
750int kvm_age_hva(struct kvm *kvm, unsigned long hva)
751{
752 return kvm_handle_hva(kvm, hva, kvm_age_rmapp);
753}
754
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800755#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +0300756static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800757{
Avi Kivity139bdb22007-01-05 16:36:50 -0800758 u64 *pos;
759 u64 *end;
760
Avi Kivity47ad8e62007-05-06 15:50:58 +0300761 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +0300762 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800763 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -0800764 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -0800766 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800767 return 1;
768}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800769#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800770
Avi Kivity4db35312007-11-21 15:28:32 +0200771static void kvm_mmu_free_page(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -0800772{
Avi Kivity4db35312007-11-21 15:28:32 +0200773 ASSERT(is_empty_shadow_page(sp->spt));
774 list_del(&sp->link);
775 __free_page(virt_to_page(sp->spt));
776 __free_page(virt_to_page(sp->gfns));
777 kfree(sp);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800778 ++kvm->arch.n_free_mmu_pages;
Avi Kivity260746c2007-01-05 16:36:49 -0800779}
780
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800781static unsigned kvm_page_table_hashfn(gfn_t gfn)
782{
Dong, Eddie1ae0a132008-01-07 13:20:25 +0200783 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800784}
785
Avi Kivity25c0de22007-01-05 16:36:42 -0800786static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
787 u64 *parent_pte)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788{
Avi Kivity4db35312007-11-21 15:28:32 +0200789 struct kvm_mmu_page *sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800790
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800791 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache, sizeof *sp);
792 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
793 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache, PAGE_SIZE);
Avi Kivity4db35312007-11-21 15:28:32 +0200794 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800795 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200796 INIT_LIST_HEAD(&sp->oos_link);
Avi Kivity4db35312007-11-21 15:28:32 +0200797 ASSERT(is_empty_shadow_page(sp->spt));
Sheng Yang291f26b2008-10-16 17:30:57 +0800798 bitmap_zero(sp->slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS);
Avi Kivity4db35312007-11-21 15:28:32 +0200799 sp->multimapped = 0;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200800 sp->global = 1;
Avi Kivity4db35312007-11-21 15:28:32 +0200801 sp->parent_pte = parent_pte;
Zhang Xiantaof05e70a2007-12-14 10:01:48 +0800802 --vcpu->kvm->arch.n_free_mmu_pages;
Avi Kivity4db35312007-11-21 15:28:32 +0200803 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800804}
805
Avi Kivity714b93d2007-01-05 16:36:53 -0800806static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +0200807 struct kvm_mmu_page *sp, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800808{
809 struct kvm_pte_chain *pte_chain;
810 struct hlist_node *node;
811 int i;
812
813 if (!parent_pte)
814 return;
Avi Kivity4db35312007-11-21 15:28:32 +0200815 if (!sp->multimapped) {
816 u64 *old = sp->parent_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800817
818 if (!old) {
Avi Kivity4db35312007-11-21 15:28:32 +0200819 sp->parent_pte = parent_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800820 return;
821 }
Avi Kivity4db35312007-11-21 15:28:32 +0200822 sp->multimapped = 1;
Avi Kivity714b93d2007-01-05 16:36:53 -0800823 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivity4db35312007-11-21 15:28:32 +0200824 INIT_HLIST_HEAD(&sp->parent_ptes);
825 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800826 pte_chain->parent_ptes[0] = old;
827 }
Avi Kivity4db35312007-11-21 15:28:32 +0200828 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800829 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
830 continue;
831 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
832 if (!pte_chain->parent_ptes[i]) {
833 pte_chain->parent_ptes[i] = parent_pte;
834 return;
835 }
836 }
Avi Kivity714b93d2007-01-05 16:36:53 -0800837 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800838 BUG_ON(!pte_chain);
Avi Kivity4db35312007-11-21 15:28:32 +0200839 hlist_add_head(&pte_chain->link, &sp->parent_ptes);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800840 pte_chain->parent_ptes[0] = parent_pte;
841}
842
Avi Kivity4db35312007-11-21 15:28:32 +0200843static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800844 u64 *parent_pte)
845{
846 struct kvm_pte_chain *pte_chain;
847 struct hlist_node *node;
848 int i;
849
Avi Kivity4db35312007-11-21 15:28:32 +0200850 if (!sp->multimapped) {
851 BUG_ON(sp->parent_pte != parent_pte);
852 sp->parent_pte = NULL;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800853 return;
854 }
Avi Kivity4db35312007-11-21 15:28:32 +0200855 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800856 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
857 if (!pte_chain->parent_ptes[i])
858 break;
859 if (pte_chain->parent_ptes[i] != parent_pte)
860 continue;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800861 while (i + 1 < NR_PTE_CHAIN_ENTRIES
862 && pte_chain->parent_ptes[i + 1]) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800863 pte_chain->parent_ptes[i]
864 = pte_chain->parent_ptes[i + 1];
865 ++i;
866 }
867 pte_chain->parent_ptes[i] = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800868 if (i == 0) {
869 hlist_del(&pte_chain->link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300870 mmu_free_pte_chain(pte_chain);
Avi Kivity4db35312007-11-21 15:28:32 +0200871 if (hlist_empty(&sp->parent_ptes)) {
872 sp->multimapped = 0;
873 sp->parent_pte = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800874 }
875 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800876 return;
877 }
878 BUG();
879}
880
Marcelo Tosattiad8cfbe2008-09-23 13:18:36 -0300881
882static void mmu_parent_walk(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
883 mmu_parent_walk_fn fn)
884{
885 struct kvm_pte_chain *pte_chain;
886 struct hlist_node *node;
887 struct kvm_mmu_page *parent_sp;
888 int i;
889
890 if (!sp->multimapped && sp->parent_pte) {
891 parent_sp = page_header(__pa(sp->parent_pte));
892 fn(vcpu, parent_sp);
893 mmu_parent_walk(vcpu, parent_sp, fn);
894 return;
895 }
896 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
897 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
898 if (!pte_chain->parent_ptes[i])
899 break;
900 parent_sp = page_header(__pa(pte_chain->parent_ptes[i]));
901 fn(vcpu, parent_sp);
902 mmu_parent_walk(vcpu, parent_sp, fn);
903 }
904}
905
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300906static void kvm_mmu_update_unsync_bitmap(u64 *spte)
907{
908 unsigned int index;
909 struct kvm_mmu_page *sp = page_header(__pa(spte));
910
911 index = spte - sp->spt;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200912 if (!__test_and_set_bit(index, sp->unsync_child_bitmap))
913 sp->unsync_children++;
914 WARN_ON(!sp->unsync_children);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300915}
916
917static void kvm_mmu_update_parents_unsync(struct kvm_mmu_page *sp)
918{
919 struct kvm_pte_chain *pte_chain;
920 struct hlist_node *node;
921 int i;
922
923 if (!sp->parent_pte)
924 return;
925
926 if (!sp->multimapped) {
927 kvm_mmu_update_unsync_bitmap(sp->parent_pte);
928 return;
929 }
930
931 hlist_for_each_entry(pte_chain, node, &sp->parent_ptes, link)
932 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
933 if (!pte_chain->parent_ptes[i])
934 break;
935 kvm_mmu_update_unsync_bitmap(pte_chain->parent_ptes[i]);
936 }
937}
938
939static int unsync_walk_fn(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
940{
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300941 kvm_mmu_update_parents_unsync(sp);
942 return 1;
943}
944
945static void kvm_mmu_mark_parents_unsync(struct kvm_vcpu *vcpu,
946 struct kvm_mmu_page *sp)
947{
948 mmu_parent_walk(vcpu, sp, unsync_walk_fn);
949 kvm_mmu_update_parents_unsync(sp);
950}
951
Avi Kivityd761a502008-05-29 14:55:03 +0300952static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
953 struct kvm_mmu_page *sp)
954{
955 int i;
956
957 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
958 sp->spt[i] = shadow_trap_nonpresent_pte;
959}
960
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300961static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
962 struct kvm_mmu_page *sp)
963{
964 return 1;
965}
966
Marcelo Tosattia7052892008-09-23 13:18:35 -0300967static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
968{
969}
970
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200971#define KVM_PAGE_ARRAY_NR 16
972
973struct kvm_mmu_pages {
974 struct mmu_page_and_offset {
975 struct kvm_mmu_page *sp;
976 unsigned int idx;
977 } page[KVM_PAGE_ARRAY_NR];
978 unsigned int nr;
979};
980
Marcelo Tosatti0074ff62008-09-23 13:18:40 -0300981#define for_each_unsync_children(bitmap, idx) \
982 for (idx = find_first_bit(bitmap, 512); \
983 idx < 512; \
984 idx = find_next_bit(bitmap, 512, idx+1))
985
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200986int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
987 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300988{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200989 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300990
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -0200991 if (sp->unsync)
992 for (i=0; i < pvec->nr; i++)
993 if (pvec->page[i].sp == sp)
994 return 0;
995
996 pvec->page[pvec->nr].sp = sp;
997 pvec->page[pvec->nr].idx = idx;
998 pvec->nr++;
999 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1000}
1001
1002static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1003 struct kvm_mmu_pages *pvec)
1004{
1005 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001006
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001007 for_each_unsync_children(sp->unsync_child_bitmap, i) {
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001008 u64 ent = sp->spt[i];
1009
Marcelo Tosatti87917232008-12-22 18:49:30 -02001010 if (is_shadow_present_pte(ent) && !is_large_pte(ent)) {
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001011 struct kvm_mmu_page *child;
1012 child = page_header(ent & PT64_BASE_ADDR_MASK);
1013
1014 if (child->unsync_children) {
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001015 if (mmu_pages_add(pvec, child, i))
1016 return -ENOSPC;
1017
1018 ret = __mmu_unsync_walk(child, pvec);
1019 if (!ret)
1020 __clear_bit(i, sp->unsync_child_bitmap);
1021 else if (ret > 0)
1022 nr_unsync_leaf += ret;
1023 else
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001024 return ret;
1025 }
1026
1027 if (child->unsync) {
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001028 nr_unsync_leaf++;
1029 if (mmu_pages_add(pvec, child, i))
1030 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001031 }
1032 }
1033 }
1034
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001035 if (find_first_bit(sp->unsync_child_bitmap, 512) == 512)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001036 sp->unsync_children = 0;
1037
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001038 return nr_unsync_leaf;
1039}
1040
1041static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1042 struct kvm_mmu_pages *pvec)
1043{
1044 if (!sp->unsync_children)
1045 return 0;
1046
1047 mmu_pages_add(pvec, sp, 0);
1048 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001049}
1050
Avi Kivity4db35312007-11-21 15:28:32 +02001051static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001052{
1053 unsigned index;
1054 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001055 struct kvm_mmu_page *sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001056 struct hlist_node *node;
1057
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001058 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001059 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001060 bucket = &kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02001061 hlist_for_each_entry(sp, node, bucket, hash_link)
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001062 if (sp->gfn == gfn && !sp->role.metaphysical
1063 && !sp->role.invalid) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001064 pgprintk("%s: found role %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001065 __func__, sp->role.word);
Avi Kivity4db35312007-11-21 15:28:32 +02001066 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001067 }
1068 return NULL;
1069}
1070
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001071static void kvm_unlink_unsync_global(struct kvm *kvm, struct kvm_mmu_page *sp)
1072{
1073 list_del(&sp->oos_link);
1074 --kvm->stat.mmu_unsync_global;
1075}
1076
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001077static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1078{
1079 WARN_ON(!sp->unsync);
1080 sp->unsync = 0;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001081 if (sp->global)
1082 kvm_unlink_unsync_global(kvm, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001083 --kvm->stat.mmu_unsync;
1084}
1085
1086static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp);
1087
1088static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1089{
1090 if (sp->role.glevels != vcpu->arch.mmu.root_level) {
1091 kvm_mmu_zap_page(vcpu->kvm, sp);
1092 return 1;
1093 }
1094
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001095 if (rmap_write_protect(vcpu->kvm, sp->gfn))
1096 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosatti0c0f40b2008-11-21 19:13:58 +01001097 kvm_unlink_unsync_page(vcpu->kvm, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001098 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
1099 kvm_mmu_zap_page(vcpu->kvm, sp);
1100 return 1;
1101 }
1102
1103 kvm_mmu_flush_tlb(vcpu);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001104 return 0;
1105}
1106
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001107struct mmu_page_path {
1108 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1109 unsigned int idx[PT64_ROOT_LEVEL-1];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001110};
1111
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001112#define for_each_sp(pvec, sp, parents, i) \
1113 for (i = mmu_pages_next(&pvec, &parents, -1), \
1114 sp = pvec.page[i].sp; \
1115 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1116 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001117
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001118int mmu_pages_next(struct kvm_mmu_pages *pvec, struct mmu_page_path *parents,
1119 int i)
1120{
1121 int n;
1122
1123 for (n = i+1; n < pvec->nr; n++) {
1124 struct kvm_mmu_page *sp = pvec->page[n].sp;
1125
1126 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1127 parents->idx[0] = pvec->page[n].idx;
1128 return n;
1129 }
1130
1131 parents->parent[sp->role.level-2] = sp;
1132 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1133 }
1134
1135 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001136}
1137
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001138void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001139{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001140 struct kvm_mmu_page *sp;
1141 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001142
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001143 do {
1144 unsigned int idx = parents->idx[level];
1145
1146 sp = parents->parent[level];
1147 if (!sp)
1148 return;
1149
1150 --sp->unsync_children;
1151 WARN_ON((int)sp->unsync_children < 0);
1152 __clear_bit(idx, sp->unsync_child_bitmap);
1153 level++;
1154 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
1155}
1156
1157static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1158 struct mmu_page_path *parents,
1159 struct kvm_mmu_pages *pvec)
1160{
1161 parents->parent[parent->role.level-1] = NULL;
1162 pvec->nr = 0;
1163}
1164
1165static void mmu_sync_children(struct kvm_vcpu *vcpu,
1166 struct kvm_mmu_page *parent)
1167{
1168 int i;
1169 struct kvm_mmu_page *sp;
1170 struct mmu_page_path parents;
1171 struct kvm_mmu_pages pages;
1172
1173 kvm_mmu_pages_init(parent, &parents, &pages);
1174 while (mmu_unsync_walk(parent, &pages)) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001175 int protected = 0;
1176
1177 for_each_sp(pages, sp, parents, i)
1178 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1179
1180 if (protected)
1181 kvm_flush_remote_tlbs(vcpu->kvm);
1182
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001183 for_each_sp(pages, sp, parents, i) {
1184 kvm_sync_page(vcpu, sp);
1185 mmu_pages_clear_parents(&parents);
1186 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001187 cond_resched_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001188 kvm_mmu_pages_init(parent, &parents, &pages);
1189 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001190}
1191
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001192static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1193 gfn_t gfn,
1194 gva_t gaddr,
1195 unsigned level,
1196 int metaphysical,
Avi Kivity41074d02007-12-09 17:00:02 +02001197 unsigned access,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02001198 u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001199{
1200 union kvm_mmu_page_role role;
1201 unsigned index;
1202 unsigned quadrant;
1203 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001204 struct kvm_mmu_page *sp;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001205 struct hlist_node *node, *tmp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001206
Avi Kivitya770f6f2008-12-21 19:20:09 +02001207 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001208 role.level = level;
1209 role.metaphysical = metaphysical;
Avi Kivity41074d02007-12-09 17:00:02 +02001210 role.access = access;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001211 if (vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001212 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1213 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1214 role.quadrant = quadrant;
1215 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001216 pgprintk("%s: looking gfn %lx role %x\n", __func__,
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001217 gfn, role.word);
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001218 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001219 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001220 hlist_for_each_entry_safe(sp, node, tmp, bucket, hash_link)
1221 if (sp->gfn == gfn) {
1222 if (sp->unsync)
1223 if (kvm_sync_page(vcpu, sp))
1224 continue;
1225
1226 if (sp->role.word != role.word)
1227 continue;
1228
Avi Kivity4db35312007-11-21 15:28:32 +02001229 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001230 if (sp->unsync_children) {
1231 set_bit(KVM_REQ_MMU_SYNC, &vcpu->requests);
1232 kvm_mmu_mark_parents_unsync(vcpu, sp);
1233 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001234 pgprintk("%s: found\n", __func__);
Avi Kivity4db35312007-11-21 15:28:32 +02001235 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001236 }
Avi Kivitydfc5aa02007-12-18 19:47:18 +02001237 ++vcpu->kvm->stat.mmu_cache_miss;
Avi Kivity4db35312007-11-21 15:28:32 +02001238 sp = kvm_mmu_alloc_page(vcpu, parent_pte);
1239 if (!sp)
1240 return sp;
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001241 pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word);
Avi Kivity4db35312007-11-21 15:28:32 +02001242 sp->gfn = gfn;
1243 sp->role = role;
1244 hlist_add_head(&sp->hash_link, bucket);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001245 if (!metaphysical) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001246 if (rmap_write_protect(vcpu->kvm, gfn))
1247 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001248 account_shadowed(vcpu->kvm, gfn);
1249 }
Avi Kivity131d8272008-05-29 14:56:28 +03001250 if (shadow_trap_nonpresent_pte != shadow_notrap_nonpresent_pte)
1251 vcpu->arch.mmu.prefetch_page(vcpu, sp);
1252 else
1253 nonpaging_prefetch_page(vcpu, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001254 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001255}
1256
Avi Kivity3d000db2008-08-22 19:24:38 +03001257static int walk_shadow(struct kvm_shadow_walk *walker,
Sheng Yangd40a1ee2008-09-01 19:41:20 +08001258 struct kvm_vcpu *vcpu, u64 addr)
Avi Kivity3d000db2008-08-22 19:24:38 +03001259{
1260 hpa_t shadow_addr;
1261 int level;
1262 int r;
1263 u64 *sptep;
1264 unsigned index;
1265
1266 shadow_addr = vcpu->arch.mmu.root_hpa;
1267 level = vcpu->arch.mmu.shadow_root_level;
1268 if (level == PT32E_ROOT_LEVEL) {
1269 shadow_addr = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
1270 shadow_addr &= PT64_BASE_ADDR_MASK;
Marcelo Tosattieb64f1e2008-12-09 16:07:22 +01001271 if (!shadow_addr)
1272 return 1;
Avi Kivity3d000db2008-08-22 19:24:38 +03001273 --level;
1274 }
1275
1276 while (level >= PT_PAGE_TABLE_LEVEL) {
1277 index = SHADOW_PT_INDEX(addr, level);
1278 sptep = ((u64 *)__va(shadow_addr)) + index;
1279 r = walker->entry(walker, vcpu, addr, sptep, level);
1280 if (r)
1281 return r;
1282 shadow_addr = *sptep & PT64_BASE_ADDR_MASK;
1283 --level;
1284 }
1285 return 0;
1286}
1287
Avi Kivity90cb0522007-07-17 13:04:56 +03001288static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02001289 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08001290{
Avi Kivity697fe2e2007-01-05 16:36:46 -08001291 unsigned i;
1292 u64 *pt;
1293 u64 ent;
1294
Avi Kivity4db35312007-11-21 15:28:32 +02001295 pt = sp->spt;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001296
Avi Kivity4db35312007-11-21 15:28:32 +02001297 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
Avi Kivity697fe2e2007-01-05 16:36:46 -08001298 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
Avi Kivityc7addb92007-09-16 18:58:32 +02001299 if (is_shadow_present_pte(pt[i]))
Izik Eidus290fc382007-09-27 14:11:22 +02001300 rmap_remove(kvm, &pt[i]);
Avi Kivityc7addb92007-09-16 18:58:32 +02001301 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001302 }
1303 return;
1304 }
1305
1306 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1307 ent = pt[i];
1308
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001309 if (is_shadow_present_pte(ent)) {
1310 if (!is_large_pte(ent)) {
1311 ent &= PT64_BASE_ADDR_MASK;
1312 mmu_page_remove_parent_pte(page_header(ent),
1313 &pt[i]);
1314 } else {
1315 --kvm->stat.lpages;
1316 rmap_remove(kvm, &pt[i]);
1317 }
1318 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001319 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -08001320 }
Avi Kivitya4360362007-01-05 16:36:45 -08001321}
1322
Avi Kivity4db35312007-11-21 15:28:32 +02001323static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001324{
Avi Kivity4db35312007-11-21 15:28:32 +02001325 mmu_page_remove_parent_pte(sp, parent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -08001326}
1327
Avi Kivity12b7d282007-09-23 14:10:49 +02001328static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
1329{
1330 int i;
1331
1332 for (i = 0; i < KVM_MAX_VCPUS; ++i)
1333 if (kvm->vcpus[i])
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001334 kvm->vcpus[i]->arch.last_pte_updated = NULL;
Avi Kivity12b7d282007-09-23 14:10:49 +02001335}
1336
Avi Kivity31aa2b42008-07-11 17:59:46 +03001337static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08001338{
1339 u64 *parent_pte;
1340
Avi Kivity4db35312007-11-21 15:28:32 +02001341 while (sp->multimapped || sp->parent_pte) {
1342 if (!sp->multimapped)
1343 parent_pte = sp->parent_pte;
Avi Kivitya4360362007-01-05 16:36:45 -08001344 else {
1345 struct kvm_pte_chain *chain;
1346
Avi Kivity4db35312007-11-21 15:28:32 +02001347 chain = container_of(sp->parent_ptes.first,
Avi Kivitya4360362007-01-05 16:36:45 -08001348 struct kvm_pte_chain, link);
1349 parent_pte = chain->parent_ptes[0];
1350 }
Avi Kivity697fe2e2007-01-05 16:36:46 -08001351 BUG_ON(!parent_pte);
Avi Kivity4db35312007-11-21 15:28:32 +02001352 kvm_mmu_put_page(sp, parent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +02001353 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -08001354 }
Avi Kivity31aa2b42008-07-11 17:59:46 +03001355}
1356
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001357static int mmu_zap_unsync_children(struct kvm *kvm,
1358 struct kvm_mmu_page *parent)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001359{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001360 int i, zapped = 0;
1361 struct mmu_page_path parents;
1362 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001363
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001364 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001365 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001366
1367 kvm_mmu_pages_init(parent, &parents, &pages);
1368 while (mmu_unsync_walk(parent, &pages)) {
1369 struct kvm_mmu_page *sp;
1370
1371 for_each_sp(pages, sp, parents, i) {
1372 kvm_mmu_zap_page(kvm, sp);
1373 mmu_pages_clear_parents(&parents);
1374 }
1375 zapped += pages.nr;
1376 kvm_mmu_pages_init(parent, &parents, &pages);
1377 }
1378
1379 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001380}
1381
Marcelo Tosatti07385412008-09-23 13:18:37 -03001382static int kvm_mmu_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivity31aa2b42008-07-11 17:59:46 +03001383{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001384 int ret;
Avi Kivity31aa2b42008-07-11 17:59:46 +03001385 ++kvm->stat.mmu_shadow_zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001386 ret = mmu_zap_unsync_children(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001387 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03001388 kvm_mmu_unlink_parents(kvm, sp);
Avi Kivity5b5c6a52008-07-11 18:07:26 +03001389 kvm_flush_remote_tlbs(kvm);
1390 if (!sp->role.invalid && !sp->role.metaphysical)
1391 unaccount_shadowed(kvm, sp->gfn);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001392 if (sp->unsync)
1393 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02001394 if (!sp->root_count) {
1395 hlist_del(&sp->hash_link);
1396 kvm_mmu_free_page(kvm, sp);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001397 } else {
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001398 sp->role.invalid = 1;
Avi Kivity5b5c6a52008-07-11 18:07:26 +03001399 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001400 kvm_reload_remote_mmus(kvm);
1401 }
Avi Kivity12b7d282007-09-23 14:10:49 +02001402 kvm_mmu_reset_last_pte_updated(kvm);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001403 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08001404}
1405
Izik Eidus82ce2c92007-10-02 18:52:55 +02001406/*
1407 * Changing the number of mmu pages allocated to the vm
1408 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
1409 */
1410void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
1411{
1412 /*
1413 * If we set the number of mmu pages to be smaller be than the
1414 * number of actived pages , we must to free some mmu pages before we
1415 * change the value
1416 */
1417
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001418 if ((kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages) >
Izik Eidus82ce2c92007-10-02 18:52:55 +02001419 kvm_nr_mmu_pages) {
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001420 int n_used_mmu_pages = kvm->arch.n_alloc_mmu_pages
1421 - kvm->arch.n_free_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001422
1423 while (n_used_mmu_pages > kvm_nr_mmu_pages) {
1424 struct kvm_mmu_page *page;
1425
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001426 page = container_of(kvm->arch.active_mmu_pages.prev,
Izik Eidus82ce2c92007-10-02 18:52:55 +02001427 struct kvm_mmu_page, link);
1428 kvm_mmu_zap_page(kvm, page);
1429 n_used_mmu_pages--;
1430 }
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001431 kvm->arch.n_free_mmu_pages = 0;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001432 }
1433 else
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001434 kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages
1435 - kvm->arch.n_alloc_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001436
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001437 kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02001438}
1439
Anthony Liguorif67a46f2007-10-10 19:25:50 -05001440static int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08001441{
1442 unsigned index;
1443 struct hlist_head *bucket;
Avi Kivity4db35312007-11-21 15:28:32 +02001444 struct kvm_mmu_page *sp;
Avi Kivitya4360362007-01-05 16:36:45 -08001445 struct hlist_node *node, *n;
1446 int r;
1447
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001448 pgprintk("%s: looking for gfn %lx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08001449 r = 0;
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001450 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001451 bucket = &kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02001452 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link)
1453 if (sp->gfn == gfn && !sp->role.metaphysical) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001454 pgprintk("%s: gfn %lx role %x\n", __func__, gfn,
Avi Kivity4db35312007-11-21 15:28:32 +02001455 sp->role.word);
Avi Kivitya4360362007-01-05 16:36:45 -08001456 r = 1;
Marcelo Tosatti07385412008-09-23 13:18:37 -03001457 if (kvm_mmu_zap_page(kvm, sp))
1458 n = bucket->first;
Avi Kivitya4360362007-01-05 16:36:45 -08001459 }
1460 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001461}
1462
Anthony Liguorif67a46f2007-10-10 19:25:50 -05001463static void mmu_unshadow(struct kvm *kvm, gfn_t gfn)
Avi Kivity97a0a012007-05-31 15:08:29 +03001464{
Avi Kivity4db35312007-11-21 15:28:32 +02001465 struct kvm_mmu_page *sp;
Avi Kivity97a0a012007-05-31 15:08:29 +03001466
Avi Kivity4db35312007-11-21 15:28:32 +02001467 while ((sp = kvm_mmu_lookup_page(kvm, gfn)) != NULL) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001468 pgprintk("%s: zap %lx %x\n", __func__, gfn, sp->role.word);
Avi Kivity4db35312007-11-21 15:28:32 +02001469 kvm_mmu_zap_page(kvm, sp);
Avi Kivity97a0a012007-05-31 15:08:29 +03001470 }
1471}
1472
Avi Kivity38c335f2007-11-21 14:20:22 +02001473static void page_header_update_slot(struct kvm *kvm, void *pte, gfn_t gfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001474{
Avi Kivity38c335f2007-11-21 14:20:22 +02001475 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gfn));
Avi Kivity4db35312007-11-21 15:28:32 +02001476 struct kvm_mmu_page *sp = page_header(__pa(pte));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477
Sheng Yang291f26b2008-10-16 17:30:57 +08001478 __set_bit(slot, sp->slot_bitmap);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479}
1480
Marcelo Tosatti6844dec2008-09-23 13:18:38 -03001481static void mmu_convert_notrap(struct kvm_mmu_page *sp)
1482{
1483 int i;
1484 u64 *pt = sp->spt;
1485
1486 if (shadow_trap_nonpresent_pte == shadow_notrap_nonpresent_pte)
1487 return;
1488
1489 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1490 if (pt[i] == shadow_notrap_nonpresent_pte)
1491 set_shadow_pte(&pt[i], shadow_trap_nonpresent_pte);
1492 }
1493}
1494
Avi Kivity039576c2007-03-20 12:46:50 +02001495struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
1496{
Izik Eidus72dc67a2008-02-10 18:04:15 +02001497 struct page *page;
1498
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001499 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
Avi Kivity039576c2007-03-20 12:46:50 +02001500
1501 if (gpa == UNMAPPED_GVA)
1502 return NULL;
Izik Eidus72dc67a2008-02-10 18:04:15 +02001503
Izik Eidus72dc67a2008-02-10 18:04:15 +02001504 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Izik Eidus72dc67a2008-02-10 18:04:15 +02001505
1506 return page;
Avi Kivity039576c2007-03-20 12:46:50 +02001507}
1508
Sheng Yang74be52e2008-10-09 16:01:56 +08001509/*
1510 * The function is based on mtrr_type_lookup() in
1511 * arch/x86/kernel/cpu/mtrr/generic.c
1512 */
1513static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
1514 u64 start, u64 end)
1515{
1516 int i;
1517 u64 base, mask;
1518 u8 prev_match, curr_match;
1519 int num_var_ranges = KVM_NR_VAR_MTRR;
1520
1521 if (!mtrr_state->enabled)
1522 return 0xFF;
1523
1524 /* Make end inclusive end, instead of exclusive */
1525 end--;
1526
1527 /* Look in fixed ranges. Just return the type as per start */
1528 if (mtrr_state->have_fixed && (start < 0x100000)) {
1529 int idx;
1530
1531 if (start < 0x80000) {
1532 idx = 0;
1533 idx += (start >> 16);
1534 return mtrr_state->fixed_ranges[idx];
1535 } else if (start < 0xC0000) {
1536 idx = 1 * 8;
1537 idx += ((start - 0x80000) >> 14);
1538 return mtrr_state->fixed_ranges[idx];
1539 } else if (start < 0x1000000) {
1540 idx = 3 * 8;
1541 idx += ((start - 0xC0000) >> 12);
1542 return mtrr_state->fixed_ranges[idx];
1543 }
1544 }
1545
1546 /*
1547 * Look in variable ranges
1548 * Look of multiple ranges matching this address and pick type
1549 * as per MTRR precedence
1550 */
1551 if (!(mtrr_state->enabled & 2))
1552 return mtrr_state->def_type;
1553
1554 prev_match = 0xFF;
1555 for (i = 0; i < num_var_ranges; ++i) {
1556 unsigned short start_state, end_state;
1557
1558 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
1559 continue;
1560
1561 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
1562 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
1563 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
1564 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
1565
1566 start_state = ((start & mask) == (base & mask));
1567 end_state = ((end & mask) == (base & mask));
1568 if (start_state != end_state)
1569 return 0xFE;
1570
1571 if ((start & mask) != (base & mask))
1572 continue;
1573
1574 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
1575 if (prev_match == 0xFF) {
1576 prev_match = curr_match;
1577 continue;
1578 }
1579
1580 if (prev_match == MTRR_TYPE_UNCACHABLE ||
1581 curr_match == MTRR_TYPE_UNCACHABLE)
1582 return MTRR_TYPE_UNCACHABLE;
1583
1584 if ((prev_match == MTRR_TYPE_WRBACK &&
1585 curr_match == MTRR_TYPE_WRTHROUGH) ||
1586 (prev_match == MTRR_TYPE_WRTHROUGH &&
1587 curr_match == MTRR_TYPE_WRBACK)) {
1588 prev_match = MTRR_TYPE_WRTHROUGH;
1589 curr_match = MTRR_TYPE_WRTHROUGH;
1590 }
1591
1592 if (prev_match != curr_match)
1593 return MTRR_TYPE_UNCACHABLE;
1594 }
1595
1596 if (prev_match != 0xFF)
1597 return prev_match;
1598
1599 return mtrr_state->def_type;
1600}
1601
1602static u8 get_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
1603{
1604 u8 mtrr;
1605
1606 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
1607 (gfn << PAGE_SHIFT) + PAGE_SIZE);
1608 if (mtrr == 0xfe || mtrr == 0xff)
1609 mtrr = MTRR_TYPE_WRBACK;
1610 return mtrr;
1611}
1612
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001613static int kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
1614{
1615 unsigned index;
1616 struct hlist_head *bucket;
1617 struct kvm_mmu_page *s;
1618 struct hlist_node *node, *n;
1619
1620 index = kvm_page_table_hashfn(sp->gfn);
1621 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
1622 /* don't unsync if pagetable is shadowed with multiple roles */
1623 hlist_for_each_entry_safe(s, node, n, bucket, hash_link) {
1624 if (s->gfn != sp->gfn || s->role.metaphysical)
1625 continue;
1626 if (s->role.word != sp->role.word)
1627 return 1;
1628 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001629 ++vcpu->kvm->stat.mmu_unsync;
1630 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001631
1632 if (sp->global) {
1633 list_add(&sp->oos_link, &vcpu->kvm->arch.oos_global_pages);
1634 ++vcpu->kvm->stat.mmu_unsync_global;
1635 } else
1636 kvm_mmu_mark_parents_unsync(vcpu, sp);
1637
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001638 mmu_convert_notrap(sp);
1639 return 0;
1640}
1641
1642static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1643 bool can_unsync)
1644{
1645 struct kvm_mmu_page *shadow;
1646
1647 shadow = kvm_mmu_lookup_page(vcpu->kvm, gfn);
1648 if (shadow) {
1649 if (shadow->role.level != PT_PAGE_TABLE_LEVEL)
1650 return 1;
1651 if (shadow->unsync)
1652 return 0;
Marcelo Tosatti582801a2008-09-23 13:18:41 -03001653 if (can_unsync && oos_shadow)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001654 return kvm_unsync_page(vcpu, shadow);
1655 return 1;
1656 }
1657 return 0;
1658}
1659
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001660static int set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte,
1661 unsigned pte_access, int user_fault,
1662 int write_fault, int dirty, int largepage,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001663 int global, gfn_t gfn, pfn_t pfn, bool speculative,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001664 bool can_unsync)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001665{
1666 u64 spte;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001667 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08001668 u64 mt_mask = shadow_mt_mask;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001669 struct kvm_mmu_page *sp = page_header(__pa(shadow_pte));
1670
Avi Kivity25e23432008-12-21 18:31:10 +02001671 if (!(vcpu->arch.cr4 & X86_CR4_PGE))
1672 global = 0;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001673 if (!global && sp->global) {
1674 sp->global = 0;
1675 if (sp->unsync) {
1676 kvm_unlink_unsync_global(vcpu->kvm, sp);
1677 kvm_mmu_mark_parents_unsync(vcpu, sp);
1678 }
1679 }
Sheng Yang64d4d522008-10-09 16:01:57 +08001680
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001681 /*
1682 * We don't set the accessed bit, since we sometimes want to see
1683 * whether the guest actually used the pte (in order to detect
1684 * demand paging).
1685 */
Sheng Yang7b523452008-04-25 21:13:50 +08001686 spte = shadow_base_present_pte | shadow_dirty_mask;
Avi Kivity947da532008-03-18 11:05:52 +02001687 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03001688 spte |= shadow_accessed_mask;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001689 if (!dirty)
1690 pte_access &= ~ACC_WRITE_MASK;
Sheng Yang7b523452008-04-25 21:13:50 +08001691 if (pte_access & ACC_EXEC_MASK)
1692 spte |= shadow_x_mask;
1693 else
1694 spte |= shadow_nx_mask;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001695 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08001696 spte |= shadow_user_mask;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001697 if (largepage)
1698 spte |= PT_PAGE_SIZE_MASK;
Sheng Yang64d4d522008-10-09 16:01:57 +08001699 if (mt_mask) {
Sheng Yang2aaf69d2009-01-21 16:52:16 +08001700 if (!kvm_is_mmio_pfn(pfn)) {
1701 mt_mask = get_memory_type(vcpu, gfn) <<
1702 kvm_x86_ops->get_mt_mask_shift();
1703 mt_mask |= VMX_EPT_IGMT_BIT;
1704 } else
1705 mt_mask = MTRR_TYPE_UNCACHABLE <<
1706 kvm_x86_ops->get_mt_mask_shift();
Sheng Yang64d4d522008-10-09 16:01:57 +08001707 spte |= mt_mask;
1708 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001709
Anthony Liguori35149e22008-04-02 14:46:56 -05001710 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001711
1712 if ((pte_access & ACC_WRITE_MASK)
1713 || (write_fault && !is_write_protection(vcpu) && !user_fault)) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001714
Marcelo Tosatti38187c82008-09-23 13:18:32 -03001715 if (largepage && has_wrprotected_page(vcpu->kvm, gfn)) {
1716 ret = 1;
1717 spte = shadow_trap_nonpresent_pte;
1718 goto set_pte;
1719 }
1720
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001721 spte |= PT_WRITABLE_MASK;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001722
Marcelo Tosattiecc55892008-11-25 15:58:07 +01001723 /*
1724 * Optimization: for pte sync, if spte was writable the hash
1725 * lookup is unnecessary (and expensive). Write protection
1726 * is responsibility of mmu_get_page / kvm_sync_page.
1727 * Same reasoning can be applied to dirty page accounting.
1728 */
1729 if (!can_unsync && is_writeble_pte(*shadow_pte))
1730 goto set_pte;
1731
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001732 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001733 pgprintk("%s: found shadow page for %lx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001734 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001735 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001736 pte_access &= ~ACC_WRITE_MASK;
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03001737 if (is_writeble_pte(spte))
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001738 spte &= ~PT_WRITABLE_MASK;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001739 }
1740 }
1741
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001742 if (pte_access & ACC_WRITE_MASK)
1743 mark_page_dirty(vcpu->kvm, gfn);
1744
Marcelo Tosatti38187c82008-09-23 13:18:32 -03001745set_pte:
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001746 set_shadow_pte(shadow_pte, spte);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001747 return ret;
1748}
1749
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001750static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *shadow_pte,
1751 unsigned pt_access, unsigned pte_access,
1752 int user_fault, int write_fault, int dirty,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001753 int *ptwrite, int largepage, int global,
1754 gfn_t gfn, pfn_t pfn, bool speculative)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001755{
1756 int was_rmapped = 0;
1757 int was_writeble = is_writeble_pte(*shadow_pte);
1758
1759 pgprintk("%s: spte %llx access %x write_fault %d"
1760 " user_fault %d gfn %lx\n",
1761 __func__, *shadow_pte, pt_access,
1762 write_fault, user_fault, gfn);
1763
1764 if (is_rmap_pte(*shadow_pte)) {
1765 /*
1766 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
1767 * the parent of the now unreachable PTE.
1768 */
1769 if (largepage && !is_large_pte(*shadow_pte)) {
1770 struct kvm_mmu_page *child;
1771 u64 pte = *shadow_pte;
1772
1773 child = page_header(pte & PT64_BASE_ADDR_MASK);
1774 mmu_page_remove_parent_pte(child, shadow_pte);
1775 } else if (pfn != spte_to_pfn(*shadow_pte)) {
1776 pgprintk("hfn old %lx new %lx\n",
1777 spte_to_pfn(*shadow_pte), pfn);
1778 rmap_remove(vcpu->kvm, shadow_pte);
1779 } else {
1780 if (largepage)
1781 was_rmapped = is_large_pte(*shadow_pte);
1782 else
1783 was_rmapped = 1;
1784 }
1785 }
1786 if (set_spte(vcpu, shadow_pte, pte_access, user_fault, write_fault,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001787 dirty, largepage, global, gfn, pfn, speculative, true)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001788 if (write_fault)
1789 *ptwrite = 1;
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03001790 kvm_x86_ops->tlb_flush(vcpu);
1791 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03001792
1793 pgprintk("%s: setting spte %llx\n", __func__, *shadow_pte);
1794 pgprintk("instantiating %s PTE (%s) at %ld (%llx) addr %p\n",
1795 is_large_pte(*shadow_pte)? "2MB" : "4kB",
1796 is_present_pte(*shadow_pte)?"RW":"R", gfn,
1797 *shadow_pte, shadow_pte);
1798 if (!was_rmapped && is_large_pte(*shadow_pte))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001799 ++vcpu->kvm->stat.lpages;
1800
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001801 page_header_update_slot(vcpu->kvm, shadow_pte, gfn);
1802 if (!was_rmapped) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001803 rmap_add(vcpu, shadow_pte, gfn, largepage);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001804 if (!is_rmap_pte(*shadow_pte))
Anthony Liguori35149e22008-04-02 14:46:56 -05001805 kvm_release_pfn_clean(pfn);
Izik Eidus75e68e62008-01-12 23:49:09 +02001806 } else {
1807 if (was_writeble)
Anthony Liguori35149e22008-04-02 14:46:56 -05001808 kvm_release_pfn_dirty(pfn);
Izik Eidus75e68e62008-01-12 23:49:09 +02001809 else
Anthony Liguori35149e22008-04-02 14:46:56 -05001810 kvm_release_pfn_clean(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001811 }
Avi Kivity1b7fcd32008-05-15 13:51:35 +03001812 if (speculative) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001813 vcpu->arch.last_pte_updated = shadow_pte;
Avi Kivity1b7fcd32008-05-15 13:51:35 +03001814 vcpu->arch.last_pte_gfn = gfn;
1815 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02001816}
1817
Avi Kivity6aa8b732006-12-10 02:21:36 -08001818static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
1819{
1820}
1821
Avi Kivity140754b2008-08-22 19:28:04 +03001822struct direct_shadow_walk {
1823 struct kvm_shadow_walk walker;
1824 pfn_t pfn;
1825 int write;
1826 int largepage;
1827 int pt_write;
1828};
1829
1830static int direct_map_entry(struct kvm_shadow_walk *_walk,
1831 struct kvm_vcpu *vcpu,
Sheng Yangd40a1ee2008-09-01 19:41:20 +08001832 u64 addr, u64 *sptep, int level)
Avi Kivity140754b2008-08-22 19:28:04 +03001833{
1834 struct direct_shadow_walk *walk =
1835 container_of(_walk, struct direct_shadow_walk, walker);
1836 struct kvm_mmu_page *sp;
1837 gfn_t pseudo_gfn;
1838 gfn_t gfn = addr >> PAGE_SHIFT;
1839
1840 if (level == PT_PAGE_TABLE_LEVEL
1841 || (walk->largepage && level == PT_DIRECTORY_LEVEL)) {
1842 mmu_set_spte(vcpu, sptep, ACC_ALL, ACC_ALL,
1843 0, walk->write, 1, &walk->pt_write,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02001844 walk->largepage, 0, gfn, walk->pfn, false);
Avi Kivitybc2d4292008-08-27 16:30:56 +03001845 ++vcpu->stat.pf_fixed;
Avi Kivity140754b2008-08-22 19:28:04 +03001846 return 1;
1847 }
1848
1849 if (*sptep == shadow_trap_nonpresent_pte) {
1850 pseudo_gfn = (addr & PT64_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
Sheng Yangd40a1ee2008-09-01 19:41:20 +08001851 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, (gva_t)addr, level - 1,
Avi Kivity140754b2008-08-22 19:28:04 +03001852 1, ACC_ALL, sptep);
1853 if (!sp) {
1854 pgprintk("nonpaging_map: ENOMEM\n");
1855 kvm_release_pfn_clean(walk->pfn);
1856 return -ENOMEM;
1857 }
1858
1859 set_shadow_pte(sptep,
1860 __pa(sp->spt)
1861 | PT_PRESENT_MASK | PT_WRITABLE_MASK
1862 | shadow_user_mask | shadow_x_mask);
1863 }
1864 return 0;
1865}
1866
Joerg Roedel4d9976b2008-02-07 13:47:42 +01001867static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
Avi Kivity6c41f422008-08-26 16:16:08 +03001868 int largepage, gfn_t gfn, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001869{
Avi Kivity140754b2008-08-22 19:28:04 +03001870 int r;
1871 struct direct_shadow_walk walker = {
1872 .walker = { .entry = direct_map_entry, },
1873 .pfn = pfn,
1874 .largepage = largepage,
1875 .write = write,
1876 .pt_write = 0,
1877 };
Avi Kivity6aa8b732006-12-10 02:21:36 -08001878
Sheng Yangd40a1ee2008-09-01 19:41:20 +08001879 r = walk_shadow(&walker.walker, vcpu, gfn << PAGE_SHIFT);
Avi Kivity140754b2008-08-22 19:28:04 +03001880 if (r < 0)
1881 return r;
1882 return walker.pt_write;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001883}
1884
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001885static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, int write, gfn_t gfn)
1886{
1887 int r;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001888 int largepage = 0;
Anthony Liguori35149e22008-04-02 14:46:56 -05001889 pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001890 unsigned long mmu_seq;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001891
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001892 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
1893 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
1894 largepage = 1;
1895 }
1896
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001897 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001898 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05001899 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001900
Avi Kivityd196e342008-01-24 11:44:11 +02001901 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -05001902 if (is_error_pfn(pfn)) {
1903 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +02001904 return 1;
1905 }
1906
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001907 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001908 if (mmu_notifier_retry(vcpu, mmu_seq))
1909 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +02001910 kvm_mmu_free_some_pages(vcpu);
Avi Kivity6c41f422008-08-26 16:16:08 +03001911 r = __direct_map(vcpu, v, write, largepage, gfn, pfn);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001912 spin_unlock(&vcpu->kvm->mmu_lock);
1913
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001914
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001915 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001916
1917out_unlock:
1918 spin_unlock(&vcpu->kvm->mmu_lock);
1919 kvm_release_pfn_clean(pfn);
1920 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05001921}
1922
1923
Avi Kivity17ac10a2007-01-05 16:36:40 -08001924static void mmu_free_roots(struct kvm_vcpu *vcpu)
1925{
1926 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02001927 struct kvm_mmu_page *sp;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001928
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001929 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03001930 return;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001931 spin_lock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001932 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1933 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001934
Avi Kivity4db35312007-11-21 15:28:32 +02001935 sp = page_header(root);
1936 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001937 if (!sp->root_count && sp->role.invalid)
1938 kvm_mmu_zap_page(vcpu->kvm, sp);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001939 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001940 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08001941 return;
1942 }
Avi Kivity17ac10a2007-01-05 16:36:40 -08001943 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001944 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08001945
Avi Kivity417726a2007-04-12 17:35:58 +03001946 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03001947 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02001948 sp = page_header(root);
1949 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05001950 if (!sp->root_count && sp->role.invalid)
1951 kvm_mmu_zap_page(vcpu->kvm, sp);
Avi Kivity417726a2007-04-12 17:35:58 +03001952 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001953 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001954 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05001955 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001956 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001957}
1958
1959static void mmu_alloc_roots(struct kvm_vcpu *vcpu)
1960{
1961 int i;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001962 gfn_t root_gfn;
Avi Kivity4db35312007-11-21 15:28:32 +02001963 struct kvm_mmu_page *sp;
Joerg Roedelfb72d162008-02-07 13:47:44 +01001964 int metaphysical = 0;
Avi Kivity3bb65a22007-01-05 16:36:51 -08001965
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001966 root_gfn = vcpu->arch.cr3 >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001967
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001968 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
1969 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001970
1971 ASSERT(!VALID_PAGE(root));
Joerg Roedelfb72d162008-02-07 13:47:44 +01001972 if (tdp_enabled)
1973 metaphysical = 1;
Avi Kivity4db35312007-11-21 15:28:32 +02001974 sp = kvm_mmu_get_page(vcpu, root_gfn, 0,
Joerg Roedelfb72d162008-02-07 13:47:44 +01001975 PT64_ROOT_LEVEL, metaphysical,
1976 ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02001977 root = __pa(sp->spt);
1978 ++sp->root_count;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001979 vcpu->arch.mmu.root_hpa = root;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001980 return;
1981 }
Joerg Roedelfb72d162008-02-07 13:47:44 +01001982 metaphysical = !is_paging(vcpu);
1983 if (tdp_enabled)
1984 metaphysical = 1;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001985 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001986 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08001987
1988 ASSERT(!VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001989 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
1990 if (!is_present_pte(vcpu->arch.pdptrs[i])) {
1991 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03001992 continue;
1993 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001994 root_gfn = vcpu->arch.pdptrs[i] >> PAGE_SHIFT;
1995 } else if (vcpu->arch.mmu.root_level == 0)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001996 root_gfn = 0;
Avi Kivity4db35312007-11-21 15:28:32 +02001997 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Joerg Roedelfb72d162008-02-07 13:47:44 +01001998 PT32_ROOT_LEVEL, metaphysical,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02001999 ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02002000 root = __pa(sp->spt);
2001 ++sp->root_count;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002002 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002003 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002004 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002005}
2006
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03002007static void mmu_sync_roots(struct kvm_vcpu *vcpu)
2008{
2009 int i;
2010 struct kvm_mmu_page *sp;
2011
2012 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2013 return;
2014 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
2015 hpa_t root = vcpu->arch.mmu.root_hpa;
2016 sp = page_header(root);
2017 mmu_sync_children(vcpu, sp);
2018 return;
2019 }
2020 for (i = 0; i < 4; ++i) {
2021 hpa_t root = vcpu->arch.mmu.pae_root[i];
2022
2023 if (root) {
2024 root &= PT64_BASE_ADDR_MASK;
2025 sp = page_header(root);
2026 mmu_sync_children(vcpu, sp);
2027 }
2028 }
2029}
2030
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002031static void mmu_sync_global(struct kvm_vcpu *vcpu)
2032{
2033 struct kvm *kvm = vcpu->kvm;
2034 struct kvm_mmu_page *sp, *n;
2035
2036 list_for_each_entry_safe(sp, n, &kvm->arch.oos_global_pages, oos_link)
2037 kvm_sync_page(vcpu, sp);
2038}
2039
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03002040void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
2041{
2042 spin_lock(&vcpu->kvm->mmu_lock);
2043 mmu_sync_roots(vcpu);
2044 spin_unlock(&vcpu->kvm->mmu_lock);
2045}
2046
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002047void kvm_mmu_sync_global(struct kvm_vcpu *vcpu)
2048{
2049 spin_lock(&vcpu->kvm->mmu_lock);
2050 mmu_sync_global(vcpu);
2051 spin_unlock(&vcpu->kvm->mmu_lock);
2052}
2053
Avi Kivity6aa8b732006-12-10 02:21:36 -08002054static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
2055{
2056 return vaddr;
2057}
2058
2059static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Avi Kivity3f3e7122007-11-21 14:54:16 +02002060 u32 error_code)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002061{
Avi Kivitye8332402007-12-09 18:43:00 +02002062 gfn_t gfn;
Avi Kivitye2dec932007-01-05 16:36:54 -08002063 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002064
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002065 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Avi Kivitye2dec932007-01-05 16:36:54 -08002066 r = mmu_topup_memory_caches(vcpu);
2067 if (r)
2068 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08002069
Avi Kivity6aa8b732006-12-10 02:21:36 -08002070 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002071 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002072
Avi Kivitye8332402007-12-09 18:43:00 +02002073 gfn = gva >> PAGE_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074
Avi Kivitye8332402007-12-09 18:43:00 +02002075 return nonpaging_map(vcpu, gva & PAGE_MASK,
2076 error_code & PFERR_WRITE_MASK, gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077}
2078
Joerg Roedelfb72d162008-02-07 13:47:44 +01002079static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa,
2080 u32 error_code)
2081{
Anthony Liguori35149e22008-04-02 14:46:56 -05002082 pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002083 int r;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002084 int largepage = 0;
2085 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002086 unsigned long mmu_seq;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002087
2088 ASSERT(vcpu);
2089 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
2090
2091 r = mmu_topup_memory_caches(vcpu);
2092 if (r)
2093 return r;
2094
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002095 if (is_largepage_backed(vcpu, gfn & ~(KVM_PAGES_PER_HPAGE-1))) {
2096 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2097 largepage = 1;
2098 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002099 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03002100 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05002101 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -05002102 if (is_error_pfn(pfn)) {
2103 kvm_release_pfn_clean(pfn);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002104 return 1;
2105 }
2106 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002107 if (mmu_notifier_retry(vcpu, mmu_seq))
2108 goto out_unlock;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002109 kvm_mmu_free_some_pages(vcpu);
2110 r = __direct_map(vcpu, gpa, error_code & PFERR_WRITE_MASK,
Avi Kivity6c41f422008-08-26 16:16:08 +03002111 largepage, gfn, pfn);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002112 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01002113
2114 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002115
2116out_unlock:
2117 spin_unlock(&vcpu->kvm->mmu_lock);
2118 kvm_release_pfn_clean(pfn);
2119 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01002120}
2121
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122static void nonpaging_free(struct kvm_vcpu *vcpu)
2123{
Avi Kivity17ac10a2007-01-05 16:36:40 -08002124 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125}
2126
2127static int nonpaging_init_context(struct kvm_vcpu *vcpu)
2128{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002129 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002130
2131 context->new_cr3 = nonpaging_new_cr3;
2132 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002133 context->gva_to_gpa = nonpaging_gva_to_gpa;
2134 context->free = nonpaging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02002135 context->prefetch_page = nonpaging_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002136 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002137 context->invlpg = nonpaging_invlpg;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002138 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002139 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002140 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002141 return 0;
2142}
2143
Avi Kivityd835dfe2007-11-21 02:57:59 +02002144void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002145{
Avi Kivity1165f5f2007-04-19 17:27:43 +03002146 ++vcpu->stat.tlb_flush;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03002147 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002148}
2149
2150static void paging_new_cr3(struct kvm_vcpu *vcpu)
2151{
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002152 pgprintk("%s: cr3 %lx\n", __func__, vcpu->arch.cr3);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002153 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002154}
2155
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156static void inject_page_fault(struct kvm_vcpu *vcpu,
2157 u64 addr,
2158 u32 err_code)
2159{
Avi Kivityc3c91fe2007-11-25 14:04:58 +02002160 kvm_inject_page_fault(vcpu, addr, err_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002161}
2162
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163static void paging_free(struct kvm_vcpu *vcpu)
2164{
2165 nonpaging_free(vcpu);
2166}
2167
2168#define PTTYPE 64
2169#include "paging_tmpl.h"
2170#undef PTTYPE
2171
2172#define PTTYPE 32
2173#include "paging_tmpl.h"
2174#undef PTTYPE
2175
Avi Kivity17ac10a2007-01-05 16:36:40 -08002176static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002177{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002178 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002179
2180 ASSERT(is_pae(vcpu));
2181 context->new_cr3 = paging_new_cr3;
2182 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183 context->gva_to_gpa = paging64_gva_to_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +02002184 context->prefetch_page = paging64_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002185 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002186 context->invlpg = paging64_invlpg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002187 context->free = paging_free;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002188 context->root_level = level;
2189 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002190 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002191 return 0;
2192}
2193
Avi Kivity17ac10a2007-01-05 16:36:40 -08002194static int paging64_init_context(struct kvm_vcpu *vcpu)
2195{
2196 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
2197}
2198
Avi Kivity6aa8b732006-12-10 02:21:36 -08002199static int paging32_init_context(struct kvm_vcpu *vcpu)
2200{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002201 struct kvm_mmu *context = &vcpu->arch.mmu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002202
2203 context->new_cr3 = paging_new_cr3;
2204 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002205 context->gva_to_gpa = paging32_gva_to_gpa;
2206 context->free = paging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02002207 context->prefetch_page = paging32_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002208 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002209 context->invlpg = paging32_invlpg;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002210 context->root_level = PT32_ROOT_LEVEL;
2211 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03002212 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002213 return 0;
2214}
2215
2216static int paging32E_init_context(struct kvm_vcpu *vcpu)
2217{
Avi Kivity17ac10a2007-01-05 16:36:40 -08002218 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002219}
2220
Joerg Roedelfb72d162008-02-07 13:47:44 +01002221static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2222{
2223 struct kvm_mmu *context = &vcpu->arch.mmu;
2224
2225 context->new_cr3 = nonpaging_new_cr3;
2226 context->page_fault = tdp_page_fault;
2227 context->free = nonpaging_free;
2228 context->prefetch_page = nonpaging_prefetch_page;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03002229 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03002230 context->invlpg = nonpaging_invlpg;
Sheng Yang67253af2008-04-25 10:20:22 +08002231 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01002232 context->root_hpa = INVALID_PAGE;
2233
2234 if (!is_paging(vcpu)) {
2235 context->gva_to_gpa = nonpaging_gva_to_gpa;
2236 context->root_level = 0;
2237 } else if (is_long_mode(vcpu)) {
2238 context->gva_to_gpa = paging64_gva_to_gpa;
2239 context->root_level = PT64_ROOT_LEVEL;
2240 } else if (is_pae(vcpu)) {
2241 context->gva_to_gpa = paging64_gva_to_gpa;
2242 context->root_level = PT32E_ROOT_LEVEL;
2243 } else {
2244 context->gva_to_gpa = paging32_gva_to_gpa;
2245 context->root_level = PT32_ROOT_LEVEL;
2246 }
2247
2248 return 0;
2249}
2250
2251static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002252{
Avi Kivitya770f6f2008-12-21 19:20:09 +02002253 int r;
2254
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002256 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257
2258 if (!is_paging(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002259 r = nonpaging_init_context(vcpu);
Avi Kivitya9058ec2006-12-29 16:49:37 -08002260 else if (is_long_mode(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002261 r = paging64_init_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262 else if (is_pae(vcpu))
Avi Kivitya770f6f2008-12-21 19:20:09 +02002263 r = paging32E_init_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002264 else
Avi Kivitya770f6f2008-12-21 19:20:09 +02002265 r = paging32_init_context(vcpu);
2266
2267 vcpu->arch.mmu.base_role.glevels = vcpu->arch.mmu.root_level;
2268
2269 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270}
2271
Joerg Roedelfb72d162008-02-07 13:47:44 +01002272static int init_kvm_mmu(struct kvm_vcpu *vcpu)
2273{
Anthony Liguori35149e22008-04-02 14:46:56 -05002274 vcpu->arch.update_pte.pfn = bad_pfn;
2275
Joerg Roedelfb72d162008-02-07 13:47:44 +01002276 if (tdp_enabled)
2277 return init_kvm_tdp_mmu(vcpu);
2278 else
2279 return init_kvm_softmmu(vcpu);
2280}
2281
Avi Kivity6aa8b732006-12-10 02:21:36 -08002282static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
2283{
2284 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002285 if (VALID_PAGE(vcpu->arch.mmu.root_hpa)) {
2286 vcpu->arch.mmu.free(vcpu);
2287 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002288 }
2289}
2290
2291int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
2292{
Avi Kivity17c3ba92007-06-04 15:58:30 +03002293 destroy_kvm_mmu(vcpu);
2294 return init_kvm_mmu(vcpu);
2295}
Eddie Dong8668a3c2007-10-10 14:26:45 +08002296EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002297
2298int kvm_mmu_load(struct kvm_vcpu *vcpu)
2299{
Avi Kivity714b93d2007-01-05 16:36:53 -08002300 int r;
2301
Avi Kivitye2dec932007-01-05 16:36:54 -08002302 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002303 if (r)
2304 goto out;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002305 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivityeb787d12007-12-31 15:27:49 +02002306 kvm_mmu_free_some_pages(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002307 mmu_alloc_roots(vcpu);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03002308 mmu_sync_roots(vcpu);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002309 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002310 kvm_x86_ops->set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity17c3ba92007-06-04 15:58:30 +03002311 kvm_mmu_flush_tlb(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08002312out:
2313 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314}
Avi Kivity17c3ba92007-06-04 15:58:30 +03002315EXPORT_SYMBOL_GPL(kvm_mmu_load);
2316
2317void kvm_mmu_unload(struct kvm_vcpu *vcpu)
2318{
2319 mmu_free_roots(vcpu);
2320}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002321
Avi Kivity09072da2007-05-01 14:16:52 +03002322static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +02002323 struct kvm_mmu_page *sp,
Avi Kivityac1b7142007-03-08 17:13:32 +02002324 u64 *spte)
2325{
2326 u64 pte;
2327 struct kvm_mmu_page *child;
2328
2329 pte = *spte;
Avi Kivityc7addb92007-09-16 18:58:32 +02002330 if (is_shadow_present_pte(pte)) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002331 if (sp->role.level == PT_PAGE_TABLE_LEVEL ||
2332 is_large_pte(pte))
Izik Eidus290fc382007-09-27 14:11:22 +02002333 rmap_remove(vcpu->kvm, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002334 else {
2335 child = page_header(pte & PT64_BASE_ADDR_MASK);
Avi Kivity90cb0522007-07-17 13:04:56 +03002336 mmu_page_remove_parent_pte(child, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002337 }
2338 }
Avi Kivityc7addb92007-09-16 18:58:32 +02002339 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002340 if (is_large_pte(pte))
2341 --vcpu->kvm->stat.lpages;
Avi Kivityac1b7142007-03-08 17:13:32 +02002342}
2343
Avi Kivity00284252007-05-01 16:53:31 +03002344static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Avi Kivity4db35312007-11-21 15:28:32 +02002345 struct kvm_mmu_page *sp,
Avi Kivity00284252007-05-01 16:53:31 +03002346 u64 *spte,
Dong, Eddie489f1d62008-01-07 11:14:20 +02002347 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03002348{
Marcelo Tosatti30945382008-06-11 20:32:40 -03002349 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
2350 if (!vcpu->arch.update_pte.largepage ||
2351 sp->role.glevels == PT32_ROOT_LEVEL) {
2352 ++vcpu->kvm->stat.mmu_pde_zapped;
2353 return;
2354 }
2355 }
Avi Kivity00284252007-05-01 16:53:31 +03002356
Avi Kivity4cee5762007-11-18 16:37:07 +02002357 ++vcpu->kvm->stat.mmu_pte_updated;
Avi Kivity4db35312007-11-21 15:28:32 +02002358 if (sp->role.glevels == PT32_ROOT_LEVEL)
Dong, Eddie489f1d62008-01-07 11:14:20 +02002359 paging32_update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03002360 else
Dong, Eddie489f1d62008-01-07 11:14:20 +02002361 paging64_update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03002362}
2363
Avi Kivity79539ce2007-11-21 02:06:21 +02002364static bool need_remote_flush(u64 old, u64 new)
2365{
2366 if (!is_shadow_present_pte(old))
2367 return false;
2368 if (!is_shadow_present_pte(new))
2369 return true;
2370 if ((old ^ new) & PT64_BASE_ADDR_MASK)
2371 return true;
2372 old ^= PT64_NX_MASK;
2373 new ^= PT64_NX_MASK;
2374 return (old & ~new & PT64_PERM_MASK) != 0;
2375}
2376
2377static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, u64 old, u64 new)
2378{
2379 if (need_remote_flush(old, new))
2380 kvm_flush_remote_tlbs(vcpu->kvm);
2381 else
2382 kvm_mmu_flush_tlb(vcpu);
2383}
2384
Avi Kivity12b7d282007-09-23 14:10:49 +02002385static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
2386{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002387 u64 *spte = vcpu->arch.last_pte_updated;
Avi Kivity12b7d282007-09-23 14:10:49 +02002388
Sheng Yang7b523452008-04-25 21:13:50 +08002389 return !!(spte && (*spte & shadow_accessed_mask));
Avi Kivity12b7d282007-09-23 14:10:49 +02002390}
2391
Avi Kivityd7824ff2007-12-30 12:29:05 +02002392static void mmu_guess_page_from_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
2393 const u8 *new, int bytes)
2394{
2395 gfn_t gfn;
2396 int r;
2397 u64 gpte = 0;
Anthony Liguori35149e22008-04-02 14:46:56 -05002398 pfn_t pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002399
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002400 vcpu->arch.update_pte.largepage = 0;
2401
Avi Kivityd7824ff2007-12-30 12:29:05 +02002402 if (bytes != 4 && bytes != 8)
2403 return;
2404
2405 /*
2406 * Assume that the pte write on a page table of the same type
2407 * as the current vcpu paging mode. This is nearly always true
2408 * (might be false while changing modes). Note it is verified later
2409 * by update_pte().
2410 */
2411 if (is_pae(vcpu)) {
2412 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
2413 if ((bytes == 4) && (gpa % 4 == 0)) {
2414 r = kvm_read_guest(vcpu->kvm, gpa & ~(u64)7, &gpte, 8);
2415 if (r)
2416 return;
2417 memcpy((void *)&gpte + (gpa % 8), new, 4);
2418 } else if ((bytes == 8) && (gpa % 8 == 0)) {
2419 memcpy((void *)&gpte, new, 8);
2420 }
2421 } else {
2422 if ((bytes == 4) && (gpa % 4 == 0))
2423 memcpy((void *)&gpte, new, 4);
2424 }
2425 if (!is_present_pte(gpte))
2426 return;
2427 gfn = (gpte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Izik Eidus72dc67a2008-02-10 18:04:15 +02002428
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002429 if (is_large_pte(gpte) && is_largepage_backed(vcpu, gfn)) {
2430 gfn &= ~(KVM_PAGES_PER_HPAGE-1);
2431 vcpu->arch.update_pte.largepage = 1;
2432 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002433 vcpu->arch.update_pte.mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03002434 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -05002435 pfn = gfn_to_pfn(vcpu->kvm, gfn);
Izik Eidus72dc67a2008-02-10 18:04:15 +02002436
Anthony Liguori35149e22008-04-02 14:46:56 -05002437 if (is_error_pfn(pfn)) {
2438 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +02002439 return;
2440 }
Avi Kivityd7824ff2007-12-30 12:29:05 +02002441 vcpu->arch.update_pte.gfn = gfn;
Anthony Liguori35149e22008-04-02 14:46:56 -05002442 vcpu->arch.update_pte.pfn = pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002443}
2444
Avi Kivity1b7fcd32008-05-15 13:51:35 +03002445static void kvm_mmu_access_page(struct kvm_vcpu *vcpu, gfn_t gfn)
2446{
2447 u64 *spte = vcpu->arch.last_pte_updated;
2448
2449 if (spte
2450 && vcpu->arch.last_pte_gfn == gfn
2451 && shadow_accessed_mask
2452 && !(*spte & shadow_accessed_mask)
2453 && is_shadow_present_pte(*spte))
2454 set_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
2455}
2456
Avi Kivity09072da2007-05-01 14:16:52 +03002457void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Marcelo Tosattiad218f82008-12-01 22:32:05 -02002458 const u8 *new, int bytes,
2459 bool guest_initiated)
Avi Kivityda4a00f2007-01-05 16:36:44 -08002460{
Avi Kivity9b7a0322007-01-05 16:36:45 -08002461 gfn_t gfn = gpa >> PAGE_SHIFT;
Avi Kivity4db35312007-11-21 15:28:32 +02002462 struct kvm_mmu_page *sp;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002463 struct hlist_node *node, *n;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002464 struct hlist_head *bucket;
2465 unsigned index;
Dong, Eddie489f1d62008-01-07 11:14:20 +02002466 u64 entry, gentry;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002467 u64 *spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002468 unsigned offset = offset_in_page(gpa);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002469 unsigned pte_size;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002470 unsigned page_offset;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002471 unsigned misaligned;
Avi Kivityfce06572007-05-01 16:44:05 +03002472 unsigned quadrant;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002473 int level;
Avi Kivity86a5ba02007-01-05 16:36:50 -08002474 int flooded = 0;
Avi Kivityac1b7142007-03-08 17:13:32 +02002475 int npte;
Dong, Eddie489f1d62008-01-07 11:14:20 +02002476 int r;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002477
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002478 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
Avi Kivityd7824ff2007-12-30 12:29:05 +02002479 mmu_guess_page_from_pte_write(vcpu, gpa, new, bytes);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002480 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity1b7fcd32008-05-15 13:51:35 +03002481 kvm_mmu_access_page(vcpu, gfn);
Avi Kivityeb787d12007-12-31 15:27:49 +02002482 kvm_mmu_free_some_pages(vcpu);
Avi Kivity4cee5762007-11-18 16:37:07 +02002483 ++vcpu->kvm->stat.mmu_pte_write;
Avi Kivityc7addb92007-09-16 18:58:32 +02002484 kvm_mmu_audit(vcpu, "pre pte write");
Marcelo Tosattiad218f82008-12-01 22:32:05 -02002485 if (guest_initiated) {
2486 if (gfn == vcpu->arch.last_pt_write_gfn
2487 && !last_updated_pte_accessed(vcpu)) {
2488 ++vcpu->arch.last_pt_write_count;
2489 if (vcpu->arch.last_pt_write_count >= 3)
2490 flooded = 1;
2491 } else {
2492 vcpu->arch.last_pt_write_gfn = gfn;
2493 vcpu->arch.last_pt_write_count = 1;
2494 vcpu->arch.last_pte_updated = NULL;
2495 }
Avi Kivity86a5ba02007-01-05 16:36:50 -08002496 }
Dong, Eddie1ae0a132008-01-07 13:20:25 +02002497 index = kvm_page_table_hashfn(gfn);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002498 bucket = &vcpu->kvm->arch.mmu_page_hash[index];
Avi Kivity4db35312007-11-21 15:28:32 +02002499 hlist_for_each_entry_safe(sp, node, n, bucket, hash_link) {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002500 if (sp->gfn != gfn || sp->role.metaphysical || sp->role.invalid)
Avi Kivity9b7a0322007-01-05 16:36:45 -08002501 continue;
Avi Kivity4db35312007-11-21 15:28:32 +02002502 pte_size = sp->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002503 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
Avi Kivitye925c5b2007-04-30 14:47:02 +03002504 misaligned |= bytes < 4;
Avi Kivity86a5ba02007-01-05 16:36:50 -08002505 if (misaligned || flooded) {
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002506 /*
2507 * Misaligned accesses are too much trouble to fix
2508 * up; also, they usually indicate a page is not used
2509 * as a page table.
Avi Kivity86a5ba02007-01-05 16:36:50 -08002510 *
2511 * If we're seeing too many writes to a page,
2512 * it may no longer be a page table, or we may be
2513 * forking, in which case it is better to unmap the
2514 * page.
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002515 */
2516 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
Avi Kivity4db35312007-11-21 15:28:32 +02002517 gpa, bytes, sp->role.word);
Marcelo Tosatti07385412008-09-23 13:18:37 -03002518 if (kvm_mmu_zap_page(vcpu->kvm, sp))
2519 n = bucket->first;
Avi Kivity4cee5762007-11-18 16:37:07 +02002520 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08002521 continue;
2522 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08002523 page_offset = offset;
Avi Kivity4db35312007-11-21 15:28:32 +02002524 level = sp->role.level;
Avi Kivityac1b7142007-03-08 17:13:32 +02002525 npte = 1;
Avi Kivity4db35312007-11-21 15:28:32 +02002526 if (sp->role.glevels == PT32_ROOT_LEVEL) {
Avi Kivityac1b7142007-03-08 17:13:32 +02002527 page_offset <<= 1; /* 32->64 */
2528 /*
2529 * A 32-bit pde maps 4MB while the shadow pdes map
2530 * only 2MB. So we need to double the offset again
2531 * and zap two pdes instead of one.
2532 */
2533 if (level == PT32_ROOT_LEVEL) {
Avi Kivity6b8d0f92007-04-18 11:18:18 +03002534 page_offset &= ~7; /* kill rounding error */
Avi Kivityac1b7142007-03-08 17:13:32 +02002535 page_offset <<= 1;
2536 npte = 2;
2537 }
Avi Kivityfce06572007-05-01 16:44:05 +03002538 quadrant = page_offset >> PAGE_SHIFT;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002539 page_offset &= ~PAGE_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02002540 if (quadrant != sp->role.quadrant)
Avi Kivityfce06572007-05-01 16:44:05 +03002541 continue;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002542 }
Avi Kivity4db35312007-11-21 15:28:32 +02002543 spte = &sp->spt[page_offset / sizeof(*spte)];
Dong, Eddie489f1d62008-01-07 11:14:20 +02002544 if ((gpa & (pte_size - 1)) || (bytes < pte_size)) {
2545 gentry = 0;
2546 r = kvm_read_guest_atomic(vcpu->kvm,
2547 gpa & ~(u64)(pte_size - 1),
2548 &gentry, pte_size);
2549 new = (const void *)&gentry;
2550 if (r < 0)
2551 new = NULL;
2552 }
Avi Kivityac1b7142007-03-08 17:13:32 +02002553 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02002554 entry = *spte;
Avi Kivity4db35312007-11-21 15:28:32 +02002555 mmu_pte_write_zap_pte(vcpu, sp, spte);
Dong, Eddie489f1d62008-01-07 11:14:20 +02002556 if (new)
2557 mmu_pte_write_new_pte(vcpu, sp, spte, new);
Avi Kivity79539ce2007-11-21 02:06:21 +02002558 mmu_pte_write_flush_tlb(vcpu, entry, *spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02002559 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08002560 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08002561 }
Avi Kivityc7addb92007-09-16 18:58:32 +02002562 kvm_mmu_audit(vcpu, "post pte write");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002563 spin_unlock(&vcpu->kvm->mmu_lock);
Anthony Liguori35149e22008-04-02 14:46:56 -05002564 if (!is_error_pfn(vcpu->arch.update_pte.pfn)) {
2565 kvm_release_pfn_clean(vcpu->arch.update_pte.pfn);
2566 vcpu->arch.update_pte.pfn = bad_pfn;
Avi Kivityd7824ff2007-12-30 12:29:05 +02002567 }
Avi Kivityda4a00f2007-01-05 16:36:44 -08002568}
2569
Avi Kivitya4360362007-01-05 16:36:45 -08002570int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
2571{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002572 gpa_t gpa;
2573 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08002574
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002575 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gva);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002576
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002577 spin_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002578 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002579 spin_unlock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002580 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08002581}
Avi Kivity577bdc42008-07-19 08:57:05 +03002582EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08002583
Avi Kivity22d95b12007-09-14 20:26:06 +03002584void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08002585{
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002586 while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
Avi Kivity4db35312007-11-21 15:28:32 +02002587 struct kvm_mmu_page *sp;
Avi Kivityebeace82007-01-05 16:36:47 -08002588
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002589 sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
Avi Kivity4db35312007-11-21 15:28:32 +02002590 struct kvm_mmu_page, link);
2591 kvm_mmu_zap_page(vcpu->kvm, sp);
Avi Kivity4cee5762007-11-18 16:37:07 +02002592 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08002593 }
2594}
Avi Kivityebeace82007-01-05 16:36:47 -08002595
Avi Kivity30677142007-10-28 18:48:59 +02002596int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code)
2597{
2598 int r;
2599 enum emulation_result er;
2600
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002601 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code);
Avi Kivity30677142007-10-28 18:48:59 +02002602 if (r < 0)
2603 goto out;
2604
2605 if (!r) {
2606 r = 1;
2607 goto out;
2608 }
2609
Avi Kivityb733bfb2007-10-28 18:52:05 +02002610 r = mmu_topup_memory_caches(vcpu);
2611 if (r)
2612 goto out;
2613
Avi Kivity30677142007-10-28 18:48:59 +02002614 er = emulate_instruction(vcpu, vcpu->run, cr2, error_code, 0);
Avi Kivity30677142007-10-28 18:48:59 +02002615
2616 switch (er) {
2617 case EMULATE_DONE:
2618 return 1;
2619 case EMULATE_DO_MMIO:
2620 ++vcpu->stat.mmio_exits;
2621 return 0;
2622 case EMULATE_FAIL:
2623 kvm_report_emulation_failure(vcpu, "pagetable");
2624 return 1;
2625 default:
2626 BUG();
2627 }
2628out:
Avi Kivity30677142007-10-28 18:48:59 +02002629 return r;
2630}
2631EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
2632
Marcelo Tosattia7052892008-09-23 13:18:35 -03002633void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
2634{
Marcelo Tosattia7052892008-09-23 13:18:35 -03002635 vcpu->arch.mmu.invlpg(vcpu, gva);
Marcelo Tosattia7052892008-09-23 13:18:35 -03002636 kvm_mmu_flush_tlb(vcpu);
2637 ++vcpu->stat.invlpg;
2638}
2639EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
2640
Joerg Roedel18552672008-02-07 13:47:41 +01002641void kvm_enable_tdp(void)
2642{
2643 tdp_enabled = true;
2644}
2645EXPORT_SYMBOL_GPL(kvm_enable_tdp);
2646
Joerg Roedel5f4cb662008-07-14 20:36:36 +02002647void kvm_disable_tdp(void)
2648{
2649 tdp_enabled = false;
2650}
2651EXPORT_SYMBOL_GPL(kvm_disable_tdp);
2652
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653static void free_mmu_pages(struct kvm_vcpu *vcpu)
2654{
Avi Kivity4db35312007-11-21 15:28:32 +02002655 struct kvm_mmu_page *sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002657 while (!list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
2658 sp = container_of(vcpu->kvm->arch.active_mmu_pages.next,
Avi Kivity4db35312007-11-21 15:28:32 +02002659 struct kvm_mmu_page, link);
2660 kvm_mmu_zap_page(vcpu->kvm, sp);
Avi Kivity8d2d73b2008-06-04 18:42:24 +03002661 cond_resched();
Avi Kivityf51234c2007-01-05 16:36:52 -08002662 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002663 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002664}
2665
2666static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
2667{
Avi Kivity17ac10a2007-01-05 16:36:40 -08002668 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002669 int i;
2670
2671 ASSERT(vcpu);
2672
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002673 if (vcpu->kvm->arch.n_requested_mmu_pages)
2674 vcpu->kvm->arch.n_free_mmu_pages =
2675 vcpu->kvm->arch.n_requested_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002676 else
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002677 vcpu->kvm->arch.n_free_mmu_pages =
2678 vcpu->kvm->arch.n_alloc_mmu_pages;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002679 /*
2680 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
2681 * Therefore we need to allocate shadow page tables in the first
2682 * 4GB of memory, which happens to fit the DMA32 zone.
2683 */
2684 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
2685 if (!page)
2686 goto error_1;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002687 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002688 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002689 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002690
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 return 0;
2692
2693error_1:
2694 free_mmu_pages(vcpu);
2695 return -ENOMEM;
2696}
2697
Ingo Molnar8018c272006-12-29 16:50:01 -08002698int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002700 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002701 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702
Ingo Molnar8018c272006-12-29 16:50:01 -08002703 return alloc_mmu_pages(vcpu);
2704}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002705
Ingo Molnar8018c272006-12-29 16:50:01 -08002706int kvm_mmu_setup(struct kvm_vcpu *vcpu)
2707{
2708 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002709 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08002710
Ingo Molnar8018c272006-12-29 16:50:01 -08002711 return init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002712}
2713
2714void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
2715{
2716 ASSERT(vcpu);
2717
2718 destroy_kvm_mmu(vcpu);
2719 free_mmu_pages(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08002720 mmu_free_memory_caches(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002721}
2722
Avi Kivity90cb0522007-07-17 13:04:56 +03002723void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724{
Avi Kivity4db35312007-11-21 15:28:32 +02002725 struct kvm_mmu_page *sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002726
Avi Kivity2245a282008-08-27 16:32:24 +03002727 spin_lock(&kvm->mmu_lock);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002728 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002729 int i;
2730 u64 *pt;
2731
Sheng Yang291f26b2008-10-16 17:30:57 +08002732 if (!test_bit(slot, sp->slot_bitmap))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002733 continue;
2734
Avi Kivity4db35312007-11-21 15:28:32 +02002735 pt = sp->spt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2737 /* avoid RMW */
Izik Eidus9647c142007-10-16 14:43:46 +02002738 if (pt[i] & PT_WRITABLE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002739 pt[i] &= ~PT_WRITABLE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002740 }
Avi Kivity171d5952008-08-27 16:40:51 +03002741 kvm_flush_remote_tlbs(kvm);
Avi Kivity2245a282008-08-27 16:32:24 +03002742 spin_unlock(&kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002743}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08002744
Avi Kivity90cb0522007-07-17 13:04:56 +03002745void kvm_mmu_zap_all(struct kvm *kvm)
Dor Laore0fa8262007-03-30 13:06:33 +03002746{
Avi Kivity4db35312007-11-21 15:28:32 +02002747 struct kvm_mmu_page *sp, *node;
Dor Laore0fa8262007-03-30 13:06:33 +03002748
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002749 spin_lock(&kvm->mmu_lock);
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08002750 list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
Marcelo Tosatti07385412008-09-23 13:18:37 -03002751 if (kvm_mmu_zap_page(kvm, sp))
2752 node = container_of(kvm->arch.active_mmu_pages.next,
2753 struct kvm_mmu_page, link);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002754 spin_unlock(&kvm->mmu_lock);
Dor Laore0fa8262007-03-30 13:06:33 +03002755
Avi Kivity90cb0522007-07-17 13:04:56 +03002756 kvm_flush_remote_tlbs(kvm);
Dor Laore0fa8262007-03-30 13:06:33 +03002757}
2758
Harvey Harrison8b2cf732008-04-27 12:14:13 -07002759static void kvm_mmu_remove_one_alloc_mmu_page(struct kvm *kvm)
Izik Eidus3ee16c82008-03-30 15:17:21 +03002760{
2761 struct kvm_mmu_page *page;
2762
2763 page = container_of(kvm->arch.active_mmu_pages.prev,
2764 struct kvm_mmu_page, link);
2765 kvm_mmu_zap_page(kvm, page);
2766}
2767
2768static int mmu_shrink(int nr_to_scan, gfp_t gfp_mask)
2769{
2770 struct kvm *kvm;
2771 struct kvm *kvm_freed = NULL;
2772 int cache_count = 0;
2773
2774 spin_lock(&kvm_lock);
2775
2776 list_for_each_entry(kvm, &vm_list, vm_list) {
2777 int npages;
2778
Marcelo Tosatti5a4c9282008-07-03 18:33:02 -03002779 if (!down_read_trylock(&kvm->slots_lock))
2780 continue;
Izik Eidus3ee16c82008-03-30 15:17:21 +03002781 spin_lock(&kvm->mmu_lock);
2782 npages = kvm->arch.n_alloc_mmu_pages -
2783 kvm->arch.n_free_mmu_pages;
2784 cache_count += npages;
2785 if (!kvm_freed && nr_to_scan > 0 && npages > 0) {
2786 kvm_mmu_remove_one_alloc_mmu_page(kvm);
2787 cache_count--;
2788 kvm_freed = kvm;
2789 }
2790 nr_to_scan--;
2791
2792 spin_unlock(&kvm->mmu_lock);
Marcelo Tosatti5a4c9282008-07-03 18:33:02 -03002793 up_read(&kvm->slots_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03002794 }
2795 if (kvm_freed)
2796 list_move_tail(&kvm_freed->vm_list, &vm_list);
2797
2798 spin_unlock(&kvm_lock);
2799
2800 return cache_count;
2801}
2802
2803static struct shrinker mmu_shrinker = {
2804 .shrink = mmu_shrink,
2805 .seeks = DEFAULT_SEEKS * 10,
2806};
2807
Ingo Molnar2ddfd202008-05-22 10:37:48 +02002808static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03002809{
2810 if (pte_chain_cache)
2811 kmem_cache_destroy(pte_chain_cache);
2812 if (rmap_desc_cache)
2813 kmem_cache_destroy(rmap_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03002814 if (mmu_page_header_cache)
2815 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002816}
2817
Izik Eidus3ee16c82008-03-30 15:17:21 +03002818void kvm_mmu_module_exit(void)
2819{
2820 mmu_destroy_caches();
2821 unregister_shrinker(&mmu_shrinker);
2822}
2823
Avi Kivityb5a33a72007-04-15 16:31:09 +03002824int kvm_mmu_module_init(void)
2825{
2826 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
2827 sizeof(struct kvm_pte_chain),
Paul Mundt20c2df82007-07-20 10:11:58 +09002828 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002829 if (!pte_chain_cache)
2830 goto nomem;
2831 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
2832 sizeof(struct kvm_rmap_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09002833 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03002834 if (!rmap_desc_cache)
2835 goto nomem;
2836
Avi Kivityd3d25b02007-05-30 12:34:53 +03002837 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
2838 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09002839 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03002840 if (!mmu_page_header_cache)
2841 goto nomem;
2842
Izik Eidus3ee16c82008-03-30 15:17:21 +03002843 register_shrinker(&mmu_shrinker);
2844
Avi Kivityb5a33a72007-04-15 16:31:09 +03002845 return 0;
2846
2847nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03002848 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03002849 return -ENOMEM;
2850}
2851
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08002852/*
2853 * Caculate mmu pages needed for kvm.
2854 */
2855unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
2856{
2857 int i;
2858 unsigned int nr_mmu_pages;
2859 unsigned int nr_pages = 0;
2860
2861 for (i = 0; i < kvm->nmemslots; i++)
2862 nr_pages += kvm->memslots[i].npages;
2863
2864 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
2865 nr_mmu_pages = max(nr_mmu_pages,
2866 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
2867
2868 return nr_mmu_pages;
2869}
2870
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002871static void *pv_mmu_peek_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2872 unsigned len)
2873{
2874 if (len > buffer->len)
2875 return NULL;
2876 return buffer->ptr;
2877}
2878
2879static void *pv_mmu_read_buffer(struct kvm_pv_mmu_op_buffer *buffer,
2880 unsigned len)
2881{
2882 void *ret;
2883
2884 ret = pv_mmu_peek_buffer(buffer, len);
2885 if (!ret)
2886 return ret;
2887 buffer->ptr += len;
2888 buffer->len -= len;
2889 buffer->processed += len;
2890 return ret;
2891}
2892
2893static int kvm_pv_mmu_write(struct kvm_vcpu *vcpu,
2894 gpa_t addr, gpa_t value)
2895{
2896 int bytes = 8;
2897 int r;
2898
2899 if (!is_long_mode(vcpu) && !is_pae(vcpu))
2900 bytes = 4;
2901
2902 r = mmu_topup_memory_caches(vcpu);
2903 if (r)
2904 return r;
2905
Marcelo Tosatti3200f402008-03-29 20:17:59 -03002906 if (!emulator_write_phys(vcpu, addr, &value, bytes))
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002907 return -EFAULT;
2908
2909 return 1;
2910}
2911
2912static int kvm_pv_mmu_flush_tlb(struct kvm_vcpu *vcpu)
2913{
2914 kvm_x86_ops->tlb_flush(vcpu);
Marcelo Tosatti6ad9f152008-10-15 07:45:08 -02002915 set_bit(KVM_REQ_MMU_SYNC, &vcpu->requests);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002916 return 1;
2917}
2918
2919static int kvm_pv_mmu_release_pt(struct kvm_vcpu *vcpu, gpa_t addr)
2920{
2921 spin_lock(&vcpu->kvm->mmu_lock);
2922 mmu_unshadow(vcpu->kvm, addr >> PAGE_SHIFT);
2923 spin_unlock(&vcpu->kvm->mmu_lock);
2924 return 1;
2925}
2926
2927static int kvm_pv_mmu_op_one(struct kvm_vcpu *vcpu,
2928 struct kvm_pv_mmu_op_buffer *buffer)
2929{
2930 struct kvm_mmu_op_header *header;
2931
2932 header = pv_mmu_peek_buffer(buffer, sizeof *header);
2933 if (!header)
2934 return 0;
2935 switch (header->op) {
2936 case KVM_MMU_OP_WRITE_PTE: {
2937 struct kvm_mmu_op_write_pte *wpte;
2938
2939 wpte = pv_mmu_read_buffer(buffer, sizeof *wpte);
2940 if (!wpte)
2941 return 0;
2942 return kvm_pv_mmu_write(vcpu, wpte->pte_phys,
2943 wpte->pte_val);
2944 }
2945 case KVM_MMU_OP_FLUSH_TLB: {
2946 struct kvm_mmu_op_flush_tlb *ftlb;
2947
2948 ftlb = pv_mmu_read_buffer(buffer, sizeof *ftlb);
2949 if (!ftlb)
2950 return 0;
2951 return kvm_pv_mmu_flush_tlb(vcpu);
2952 }
2953 case KVM_MMU_OP_RELEASE_PT: {
2954 struct kvm_mmu_op_release_pt *rpt;
2955
2956 rpt = pv_mmu_read_buffer(buffer, sizeof *rpt);
2957 if (!rpt)
2958 return 0;
2959 return kvm_pv_mmu_release_pt(vcpu, rpt->pt_phys);
2960 }
2961 default: return 0;
2962 }
2963}
2964
2965int kvm_pv_mmu_op(struct kvm_vcpu *vcpu, unsigned long bytes,
2966 gpa_t addr, unsigned long *ret)
2967{
2968 int r;
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002969 struct kvm_pv_mmu_op_buffer *buffer = &vcpu->arch.mmu_op_buffer;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002970
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002971 buffer->ptr = buffer->buf;
2972 buffer->len = min_t(unsigned long, bytes, sizeof buffer->buf);
2973 buffer->processed = 0;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002974
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002975 r = kvm_read_guest(vcpu->kvm, addr, buffer->buf, buffer->len);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002976 if (r)
2977 goto out;
2978
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002979 while (buffer->len) {
2980 r = kvm_pv_mmu_op_one(vcpu, buffer);
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002981 if (r < 0)
2982 goto out;
2983 if (r == 0)
2984 break;
2985 }
2986
2987 r = 1;
2988out:
Dave Hansen6ad18fb2008-08-11 10:01:49 -07002989 *ret = buffer->processed;
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -05002990 return r;
2991}
2992
Avi Kivity37a7d8b2007-01-05 16:36:56 -08002993#ifdef AUDIT
2994
2995static const char *audit_msg;
2996
2997static gva_t canonicalize(gva_t gva)
2998{
2999#ifdef CONFIG_X86_64
3000 gva = (long long)(gva << 16) >> 16;
3001#endif
3002 return gva;
3003}
3004
3005static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
3006 gva_t va, int level)
3007{
3008 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
3009 int i;
3010 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
3011
3012 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
3013 u64 ent = pt[i];
3014
Avi Kivityc7addb92007-09-16 18:58:32 +02003015 if (ent == shadow_trap_nonpresent_pte)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003016 continue;
3017
3018 va = canonicalize(va);
Avi Kivityc7addb92007-09-16 18:58:32 +02003019 if (level > 1) {
3020 if (ent == shadow_notrap_nonpresent_pte)
3021 printk(KERN_ERR "audit: (%s) nontrapping pte"
3022 " in nonleaf level: levels %d gva %lx"
3023 " level %d pte %llx\n", audit_msg,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003024 vcpu->arch.mmu.root_level, va, level, ent);
Avi Kivityc7addb92007-09-16 18:58:32 +02003025
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003026 audit_mappings_page(vcpu, ent, va, level - 1);
Avi Kivityc7addb92007-09-16 18:58:32 +02003027 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003028 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, va);
Anthony Liguori35149e22008-04-02 14:46:56 -05003029 hpa_t hpa = (hpa_t)gpa_to_pfn(vcpu, gpa) << PAGE_SHIFT;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003030
Avi Kivityc7addb92007-09-16 18:58:32 +02003031 if (is_shadow_present_pte(ent)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003032 && (ent & PT64_BASE_ADDR_MASK) != hpa)
Avi Kivityc7addb92007-09-16 18:58:32 +02003033 printk(KERN_ERR "xx audit error: (%s) levels %d"
3034 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003035 audit_msg, vcpu->arch.mmu.root_level,
Mike Dayd77c26f2007-10-08 09:02:08 -04003036 va, gpa, hpa, ent,
3037 is_shadow_present_pte(ent));
Avi Kivityc7addb92007-09-16 18:58:32 +02003038 else if (ent == shadow_notrap_nonpresent_pte
3039 && !is_error_hpa(hpa))
3040 printk(KERN_ERR "audit: (%s) notrap shadow,"
3041 " valid guest gva %lx\n", audit_msg, va);
Anthony Liguori35149e22008-04-02 14:46:56 -05003042 kvm_release_pfn_clean(pfn);
Avi Kivityc7addb92007-09-16 18:58:32 +02003043
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003044 }
3045 }
3046}
3047
3048static void audit_mappings(struct kvm_vcpu *vcpu)
3049{
Avi Kivity1ea252a2007-03-08 11:48:09 +02003050 unsigned i;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003051
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003052 if (vcpu->arch.mmu.root_level == 4)
3053 audit_mappings_page(vcpu, vcpu->arch.mmu.root_hpa, 0, 4);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003054 else
3055 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003056 if (vcpu->arch.mmu.pae_root[i] & PT_PRESENT_MASK)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003057 audit_mappings_page(vcpu,
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003058 vcpu->arch.mmu.pae_root[i],
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003059 i << 30,
3060 2);
3061}
3062
3063static int count_rmaps(struct kvm_vcpu *vcpu)
3064{
3065 int nmaps = 0;
3066 int i, j, k;
3067
3068 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
3069 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
3070 struct kvm_rmap_desc *d;
3071
3072 for (j = 0; j < m->npages; ++j) {
Izik Eidus290fc382007-09-27 14:11:22 +02003073 unsigned long *rmapp = &m->rmap[j];
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003074
Izik Eidus290fc382007-09-27 14:11:22 +02003075 if (!*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003076 continue;
Izik Eidus290fc382007-09-27 14:11:22 +02003077 if (!(*rmapp & 1)) {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003078 ++nmaps;
3079 continue;
3080 }
Izik Eidus290fc382007-09-27 14:11:22 +02003081 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003082 while (d) {
3083 for (k = 0; k < RMAP_EXT; ++k)
3084 if (d->shadow_ptes[k])
3085 ++nmaps;
3086 else
3087 break;
3088 d = d->more;
3089 }
3090 }
3091 }
3092 return nmaps;
3093}
3094
3095static int count_writable_mappings(struct kvm_vcpu *vcpu)
3096{
3097 int nmaps = 0;
Avi Kivity4db35312007-11-21 15:28:32 +02003098 struct kvm_mmu_page *sp;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003099 int i;
3100
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003101 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
Avi Kivity4db35312007-11-21 15:28:32 +02003102 u64 *pt = sp->spt;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003103
Avi Kivity4db35312007-11-21 15:28:32 +02003104 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003105 continue;
3106
3107 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
3108 u64 ent = pt[i];
3109
3110 if (!(ent & PT_PRESENT_MASK))
3111 continue;
3112 if (!(ent & PT_WRITABLE_MASK))
3113 continue;
3114 ++nmaps;
3115 }
3116 }
3117 return nmaps;
3118}
3119
3120static void audit_rmap(struct kvm_vcpu *vcpu)
3121{
3122 int n_rmap = count_rmaps(vcpu);
3123 int n_actual = count_writable_mappings(vcpu);
3124
3125 if (n_rmap != n_actual)
3126 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003127 __func__, audit_msg, n_rmap, n_actual);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003128}
3129
3130static void audit_write_protection(struct kvm_vcpu *vcpu)
3131{
Avi Kivity4db35312007-11-21 15:28:32 +02003132 struct kvm_mmu_page *sp;
Izik Eidus290fc382007-09-27 14:11:22 +02003133 struct kvm_memory_slot *slot;
3134 unsigned long *rmapp;
3135 gfn_t gfn;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003136
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08003137 list_for_each_entry(sp, &vcpu->kvm->arch.active_mmu_pages, link) {
Avi Kivity4db35312007-11-21 15:28:32 +02003138 if (sp->role.metaphysical)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003139 continue;
3140
Avi Kivity4db35312007-11-21 15:28:32 +02003141 gfn = unalias_gfn(vcpu->kvm, sp->gfn);
Izik Eidus28430992008-10-03 17:40:32 +03003142 slot = gfn_to_memslot_unaliased(vcpu->kvm, sp->gfn);
Izik Eidus290fc382007-09-27 14:11:22 +02003143 rmapp = &slot->rmap[gfn - slot->base_gfn];
3144 if (*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003145 printk(KERN_ERR "%s: (%s) shadow page has writable"
3146 " mappings: gfn %lx role %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003147 __func__, audit_msg, sp->gfn,
Avi Kivity4db35312007-11-21 15:28:32 +02003148 sp->role.word);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08003149 }
3150}
3151
3152static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
3153{
3154 int olddbg = dbg;
3155
3156 dbg = 0;
3157 audit_msg = msg;
3158 audit_rmap(vcpu);
3159 audit_write_protection(vcpu);
3160 audit_mappings(vcpu);
3161 dbg = olddbg;
3162}
3163
3164#endif