blob: 069ce83f018e494b650a431af676c74a41f090cc [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
20#include "vmx.h"
21#include "kvm.h"
22
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>
28
29#include <asm/page.h>
30#include <asm/cmpxchg.h>
31
Avi Kivity37a7d8b2007-01-05 16:36:56 -080032#undef MMU_DEBUG
33
34#undef AUDIT
35
36#ifdef AUDIT
37static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg);
38#else
39static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg) {}
40#endif
41
42#ifdef MMU_DEBUG
43
44#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
45#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
46
47#else
48
49#define pgprintk(x...) do { } while (0)
50#define rmap_printk(x...) do { } while (0)
51
52#endif
53
54#if defined(MMU_DEBUG) || defined(AUDIT)
55static int dbg = 1;
56#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080057
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080058#ifndef MMU_DEBUG
59#define ASSERT(x) do { } while (0)
60#else
Avi Kivity6aa8b732006-12-10 02:21:36 -080061#define ASSERT(x) \
62 if (!(x)) { \
63 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
64 __FILE__, __LINE__, #x); \
65 }
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080066#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080067
Avi Kivitycea0f0e2007-01-05 16:36:43 -080068#define PT64_PT_BITS 9
69#define PT64_ENT_PER_PAGE (1 << PT64_PT_BITS)
70#define PT32_PT_BITS 10
71#define PT32_ENT_PER_PAGE (1 << PT32_PT_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080072
73#define PT_WRITABLE_SHIFT 1
74
75#define PT_PRESENT_MASK (1ULL << 0)
76#define PT_WRITABLE_MASK (1ULL << PT_WRITABLE_SHIFT)
77#define PT_USER_MASK (1ULL << 2)
78#define PT_PWT_MASK (1ULL << 3)
79#define PT_PCD_MASK (1ULL << 4)
80#define PT_ACCESSED_MASK (1ULL << 5)
81#define PT_DIRTY_MASK (1ULL << 6)
82#define PT_PAGE_SIZE_MASK (1ULL << 7)
83#define PT_PAT_MASK (1ULL << 7)
84#define PT_GLOBAL_MASK (1ULL << 8)
85#define PT64_NX_MASK (1ULL << 63)
86
87#define PT_PAT_SHIFT 7
88#define PT_DIR_PAT_SHIFT 12
89#define PT_DIR_PAT_MASK (1ULL << PT_DIR_PAT_SHIFT)
90
91#define PT32_DIR_PSE36_SIZE 4
92#define PT32_DIR_PSE36_SHIFT 13
93#define PT32_DIR_PSE36_MASK (((1ULL << PT32_DIR_PSE36_SIZE) - 1) << PT32_DIR_PSE36_SHIFT)
94
95
Avi Kivity6aa8b732006-12-10 02:21:36 -080096#define PT_FIRST_AVAIL_BITS_SHIFT 9
97#define PT64_SECOND_AVAIL_BITS_SHIFT 52
98
Avi Kivity6aa8b732006-12-10 02:21:36 -080099#define PT_SHADOW_IO_MARK (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
100
Avi Kivity6aa8b732006-12-10 02:21:36 -0800101#define VALID_PAGE(x) ((x) != INVALID_PAGE)
102
103#define PT64_LEVEL_BITS 9
104
105#define PT64_LEVEL_SHIFT(level) \
106 ( PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS )
107
108#define PT64_LEVEL_MASK(level) \
109 (((1ULL << PT64_LEVEL_BITS) - 1) << PT64_LEVEL_SHIFT(level))
110
111#define PT64_INDEX(address, level)\
112 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
113
114
115#define PT32_LEVEL_BITS 10
116
117#define PT32_LEVEL_SHIFT(level) \
118 ( PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS )
119
120#define PT32_LEVEL_MASK(level) \
121 (((1ULL << PT32_LEVEL_BITS) - 1) << PT32_LEVEL_SHIFT(level))
122
123#define PT32_INDEX(address, level)\
124 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
125
126
Avi Kivity27aba762007-03-09 13:04:31 +0200127#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800128#define PT64_DIR_BASE_ADDR_MASK \
129 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
130
131#define PT32_BASE_ADDR_MASK PAGE_MASK
132#define PT32_DIR_BASE_ADDR_MASK \
133 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
134
135
136#define PFERR_PRESENT_MASK (1U << 0)
137#define PFERR_WRITE_MASK (1U << 1)
138#define PFERR_USER_MASK (1U << 2)
Avi Kivity73b10872007-01-26 00:56:41 -0800139#define PFERR_FETCH_MASK (1U << 4)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140
141#define PT64_ROOT_LEVEL 4
142#define PT32_ROOT_LEVEL 2
143#define PT32E_ROOT_LEVEL 3
144
145#define PT_DIRECTORY_LEVEL 2
146#define PT_PAGE_TABLE_LEVEL 1
147
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800148#define RMAP_EXT 4
149
150struct kvm_rmap_desc {
151 u64 *shadow_ptes[RMAP_EXT];
152 struct kvm_rmap_desc *more;
153};
154
Avi Kivityb5a33a72007-04-15 16:31:09 +0300155static struct kmem_cache *pte_chain_cache;
156static struct kmem_cache *rmap_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300157static struct kmem_cache *mmu_page_header_cache;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300158
Avi Kivityc7addb92007-09-16 18:58:32 +0200159static u64 __read_mostly shadow_trap_nonpresent_pte;
160static u64 __read_mostly shadow_notrap_nonpresent_pte;
161
162void kvm_mmu_set_nonpresent_ptes(u64 trap_pte, u64 notrap_pte)
163{
164 shadow_trap_nonpresent_pte = trap_pte;
165 shadow_notrap_nonpresent_pte = notrap_pte;
166}
167EXPORT_SYMBOL_GPL(kvm_mmu_set_nonpresent_ptes);
168
Avi Kivity6aa8b732006-12-10 02:21:36 -0800169static int is_write_protection(struct kvm_vcpu *vcpu)
170{
Rusty Russell707d92fa2007-07-17 23:19:08 +1000171 return vcpu->cr0 & X86_CR0_WP;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800172}
173
174static int is_cpuid_PSE36(void)
175{
176 return 1;
177}
178
Avi Kivity73b10872007-01-26 00:56:41 -0800179static int is_nx(struct kvm_vcpu *vcpu)
180{
181 return vcpu->shadow_efer & EFER_NX;
182}
183
Avi Kivity6aa8b732006-12-10 02:21:36 -0800184static int is_present_pte(unsigned long pte)
185{
186 return pte & PT_PRESENT_MASK;
187}
188
Avi Kivityc7addb92007-09-16 18:58:32 +0200189static int is_shadow_present_pte(u64 pte)
190{
191 pte &= ~PT_SHADOW_IO_MARK;
192 return pte != shadow_trap_nonpresent_pte
193 && pte != shadow_notrap_nonpresent_pte;
194}
195
Avi Kivity6aa8b732006-12-10 02:21:36 -0800196static int is_writeble_pte(unsigned long pte)
197{
198 return pte & PT_WRITABLE_MASK;
199}
200
201static int is_io_pte(unsigned long pte)
202{
203 return pte & PT_SHADOW_IO_MARK;
204}
205
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800206static int is_rmap_pte(u64 pte)
207{
208 return (pte & (PT_WRITABLE_MASK | PT_PRESENT_MASK))
209 == (PT_WRITABLE_MASK | PT_PRESENT_MASK);
210}
211
Avi Kivitye663ee62007-05-31 15:46:04 +0300212static void set_shadow_pte(u64 *sptep, u64 spte)
213{
214#ifdef CONFIG_X86_64
215 set_64bit((unsigned long *)sptep, spte);
216#else
217 set_64bit((unsigned long long *)sptep, spte);
218#endif
219}
220
Avi Kivitye2dec932007-01-05 16:36:54 -0800221static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300222 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800223{
224 void *obj;
225
226 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800227 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800228 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300229 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800230 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800231 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800232 cache->objects[cache->nobjs++] = obj;
233 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800234 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800235}
236
237static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
238{
239 while (mc->nobjs)
240 kfree(mc->objects[--mc->nobjs]);
241}
242
Avi Kivityc1158e62007-07-20 08:18:27 +0300243static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300244 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300245{
246 struct page *page;
247
248 if (cache->nobjs >= min)
249 return 0;
250 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300251 page = alloc_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300252 if (!page)
253 return -ENOMEM;
254 set_page_private(page, 0);
255 cache->objects[cache->nobjs++] = page_address(page);
256 }
257 return 0;
258}
259
260static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
261{
262 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300263 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300264}
265
Avi Kivity8c438502007-04-16 11:53:17 +0300266static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
267{
268 int r;
269
Avi Kivity22d95b12007-09-14 20:26:06 +0300270 kvm_mmu_free_some_pages(vcpu);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300271 r = mmu_topup_memory_cache(&vcpu->mmu_pte_chain_cache,
272 pte_chain_cache, 4);
273 if (r)
274 goto out;
275 r = mmu_topup_memory_cache(&vcpu->mmu_rmap_desc_cache,
276 rmap_desc_cache, 1);
277 if (r)
278 goto out;
279 r = mmu_topup_memory_cache_page(&vcpu->mmu_page_cache, 4);
280 if (r)
281 goto out;
282 r = mmu_topup_memory_cache(&vcpu->mmu_page_header_cache,
283 mmu_page_header_cache, 4);
284out:
Avi Kivity8c438502007-04-16 11:53:17 +0300285 return r;
286}
287
Avi Kivity714b93d2007-01-05 16:36:53 -0800288static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
289{
290 mmu_free_memory_cache(&vcpu->mmu_pte_chain_cache);
291 mmu_free_memory_cache(&vcpu->mmu_rmap_desc_cache);
Avi Kivityc1158e62007-07-20 08:18:27 +0300292 mmu_free_memory_cache_page(&vcpu->mmu_page_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +0300293 mmu_free_memory_cache(&vcpu->mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800294}
295
296static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc,
297 size_t size)
298{
299 void *p;
300
301 BUG_ON(!mc->nobjs);
302 p = mc->objects[--mc->nobjs];
303 memset(p, 0, size);
304 return p;
305}
306
Avi Kivity714b93d2007-01-05 16:36:53 -0800307static struct kvm_pte_chain *mmu_alloc_pte_chain(struct kvm_vcpu *vcpu)
308{
309 return mmu_memory_cache_alloc(&vcpu->mmu_pte_chain_cache,
310 sizeof(struct kvm_pte_chain));
311}
312
Avi Kivity90cb0522007-07-17 13:04:56 +0300313static void mmu_free_pte_chain(struct kvm_pte_chain *pc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800314{
Avi Kivity90cb0522007-07-17 13:04:56 +0300315 kfree(pc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800316}
317
318static struct kvm_rmap_desc *mmu_alloc_rmap_desc(struct kvm_vcpu *vcpu)
319{
320 return mmu_memory_cache_alloc(&vcpu->mmu_rmap_desc_cache,
321 sizeof(struct kvm_rmap_desc));
322}
323
Avi Kivity90cb0522007-07-17 13:04:56 +0300324static void mmu_free_rmap_desc(struct kvm_rmap_desc *rd)
Avi Kivity714b93d2007-01-05 16:36:53 -0800325{
Avi Kivity90cb0522007-07-17 13:04:56 +0300326 kfree(rd);
Avi Kivity714b93d2007-01-05 16:36:53 -0800327}
328
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800329/*
330 * Reverse mapping data structures:
331 *
332 * If page->private bit zero is zero, then page->private points to the
333 * shadow page table entry that points to page_address(page).
334 *
335 * If page->private bit zero is one, (then page->private & ~1) points
336 * to a struct kvm_rmap_desc containing more mappings.
337 */
Avi Kivity714b93d2007-01-05 16:36:53 -0800338static void rmap_add(struct kvm_vcpu *vcpu, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800339{
340 struct page *page;
341 struct kvm_rmap_desc *desc;
342 int i;
343
344 if (!is_rmap_pte(*spte))
345 return;
346 page = pfn_to_page((*spte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT);
Markus Rechberger5972e952007-02-19 14:37:47 +0200347 if (!page_private(page)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800348 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
Markus Rechberger5972e952007-02-19 14:37:47 +0200349 set_page_private(page,(unsigned long)spte);
350 } else if (!(page_private(page) & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800351 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
Avi Kivity714b93d2007-01-05 16:36:53 -0800352 desc = mmu_alloc_rmap_desc(vcpu);
Markus Rechberger5972e952007-02-19 14:37:47 +0200353 desc->shadow_ptes[0] = (u64 *)page_private(page);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800354 desc->shadow_ptes[1] = spte;
Markus Rechberger5972e952007-02-19 14:37:47 +0200355 set_page_private(page,(unsigned long)desc | 1);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800356 } else {
357 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
Markus Rechberger5972e952007-02-19 14:37:47 +0200358 desc = (struct kvm_rmap_desc *)(page_private(page) & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800359 while (desc->shadow_ptes[RMAP_EXT-1] && desc->more)
360 desc = desc->more;
361 if (desc->shadow_ptes[RMAP_EXT-1]) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800362 desc->more = mmu_alloc_rmap_desc(vcpu);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800363 desc = desc->more;
364 }
365 for (i = 0; desc->shadow_ptes[i]; ++i)
366 ;
367 desc->shadow_ptes[i] = spte;
368 }
369}
370
Avi Kivity90cb0522007-07-17 13:04:56 +0300371static void rmap_desc_remove_entry(struct page *page,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800372 struct kvm_rmap_desc *desc,
373 int i,
374 struct kvm_rmap_desc *prev_desc)
375{
376 int j;
377
378 for (j = RMAP_EXT - 1; !desc->shadow_ptes[j] && j > i; --j)
379 ;
380 desc->shadow_ptes[i] = desc->shadow_ptes[j];
Al Viro11718b4d2007-02-09 16:39:20 +0000381 desc->shadow_ptes[j] = NULL;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800382 if (j != 0)
383 return;
384 if (!prev_desc && !desc->more)
Markus Rechberger5972e952007-02-19 14:37:47 +0200385 set_page_private(page,(unsigned long)desc->shadow_ptes[0]);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800386 else
387 if (prev_desc)
388 prev_desc->more = desc->more;
389 else
Markus Rechberger5972e952007-02-19 14:37:47 +0200390 set_page_private(page,(unsigned long)desc->more | 1);
Avi Kivity90cb0522007-07-17 13:04:56 +0300391 mmu_free_rmap_desc(desc);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800392}
393
Avi Kivity90cb0522007-07-17 13:04:56 +0300394static void rmap_remove(u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800395{
396 struct page *page;
397 struct kvm_rmap_desc *desc;
398 struct kvm_rmap_desc *prev_desc;
399 int i;
400
401 if (!is_rmap_pte(*spte))
402 return;
403 page = pfn_to_page((*spte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT);
Markus Rechberger5972e952007-02-19 14:37:47 +0200404 if (!page_private(page)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800405 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
406 BUG();
Markus Rechberger5972e952007-02-19 14:37:47 +0200407 } else if (!(page_private(page) & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800408 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
Markus Rechberger5972e952007-02-19 14:37:47 +0200409 if ((u64 *)page_private(page) != spte) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800410 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
411 spte, *spte);
412 BUG();
413 }
Markus Rechberger5972e952007-02-19 14:37:47 +0200414 set_page_private(page,0);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800415 } else {
416 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
Markus Rechberger5972e952007-02-19 14:37:47 +0200417 desc = (struct kvm_rmap_desc *)(page_private(page) & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800418 prev_desc = NULL;
419 while (desc) {
420 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i)
421 if (desc->shadow_ptes[i] == spte) {
Avi Kivity90cb0522007-07-17 13:04:56 +0300422 rmap_desc_remove_entry(page,
Avi Kivity714b93d2007-01-05 16:36:53 -0800423 desc, i,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800424 prev_desc);
425 return;
426 }
427 prev_desc = desc;
428 desc = desc->more;
429 }
430 BUG();
431 }
432}
433
Avi Kivity714b93d2007-01-05 16:36:53 -0800434static void rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
Avi Kivity374cbac2007-01-05 16:36:43 -0800435{
Avi Kivity714b93d2007-01-05 16:36:53 -0800436 struct kvm *kvm = vcpu->kvm;
Avi Kivity374cbac2007-01-05 16:36:43 -0800437 struct page *page;
Avi Kivity374cbac2007-01-05 16:36:43 -0800438 struct kvm_rmap_desc *desc;
439 u64 *spte;
440
Avi Kivity954bbbc2007-03-30 14:02:32 +0300441 page = gfn_to_page(kvm, gfn);
442 BUG_ON(!page);
Avi Kivity374cbac2007-01-05 16:36:43 -0800443
Markus Rechberger5972e952007-02-19 14:37:47 +0200444 while (page_private(page)) {
445 if (!(page_private(page) & 1))
446 spte = (u64 *)page_private(page);
Avi Kivity374cbac2007-01-05 16:36:43 -0800447 else {
Markus Rechberger5972e952007-02-19 14:37:47 +0200448 desc = (struct kvm_rmap_desc *)(page_private(page) & ~1ul);
Avi Kivity374cbac2007-01-05 16:36:43 -0800449 spte = desc->shadow_ptes[0];
450 }
451 BUG_ON(!spte);
Avi Kivity27aba762007-03-09 13:04:31 +0200452 BUG_ON((*spte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT
453 != page_to_pfn(page));
Avi Kivity374cbac2007-01-05 16:36:43 -0800454 BUG_ON(!(*spte & PT_PRESENT_MASK));
455 BUG_ON(!(*spte & PT_WRITABLE_MASK));
456 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
Avi Kivity90cb0522007-07-17 13:04:56 +0300457 rmap_remove(spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300458 set_shadow_pte(spte, *spte & ~PT_WRITABLE_MASK);
Shaohua Li88a97f02007-06-20 17:13:26 +0800459 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivity374cbac2007-01-05 16:36:43 -0800460 }
461}
462
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800463#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +0300464static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800465{
Avi Kivity139bdb22007-01-05 16:36:50 -0800466 u64 *pos;
467 u64 *end;
468
Avi Kivity47ad8e62007-05-06 15:50:58 +0300469 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivityc7addb92007-09-16 18:58:32 +0200470 if ((*pos & ~PT_SHADOW_IO_MARK) != shadow_trap_nonpresent_pte) {
Avi Kivity139bdb22007-01-05 16:36:50 -0800471 printk(KERN_ERR "%s: %p %llx\n", __FUNCTION__,
472 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800473 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -0800474 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800475 return 1;
476}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800477#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800478
Avi Kivity90cb0522007-07-17 13:04:56 +0300479static void kvm_mmu_free_page(struct kvm *kvm,
Avi Kivity4b02d6d2007-05-06 15:36:30 +0300480 struct kvm_mmu_page *page_head)
Avi Kivity260746c2007-01-05 16:36:49 -0800481{
Avi Kivity47ad8e62007-05-06 15:50:58 +0300482 ASSERT(is_empty_shadow_page(page_head->spt));
Avi Kivityd3d25b02007-05-30 12:34:53 +0300483 list_del(&page_head->link);
Avi Kivityc1158e62007-07-20 08:18:27 +0300484 __free_page(virt_to_page(page_head->spt));
Avi Kivity90cb0522007-07-17 13:04:56 +0300485 kfree(page_head);
486 ++kvm->n_free_mmu_pages;
Avi Kivity260746c2007-01-05 16:36:49 -0800487}
488
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800489static unsigned kvm_page_table_hashfn(gfn_t gfn)
490{
491 return gfn;
492}
493
Avi Kivity25c0de22007-01-05 16:36:42 -0800494static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
495 u64 *parent_pte)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800496{
497 struct kvm_mmu_page *page;
498
Avi Kivityd3d25b02007-05-30 12:34:53 +0300499 if (!vcpu->kvm->n_free_mmu_pages)
Avi Kivity25c0de22007-01-05 16:36:42 -0800500 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800501
Avi Kivityd3d25b02007-05-30 12:34:53 +0300502 page = mmu_memory_cache_alloc(&vcpu->mmu_page_header_cache,
503 sizeof *page);
504 page->spt = mmu_memory_cache_alloc(&vcpu->mmu_page_cache, PAGE_SIZE);
505 set_page_private(virt_to_page(page->spt), (unsigned long)page);
506 list_add(&page->link, &vcpu->kvm->active_mmu_pages);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300507 ASSERT(is_empty_shadow_page(page->spt));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800508 page->slot_bitmap = 0;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800509 page->multimapped = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800510 page->parent_pte = parent_pte;
Avi Kivityebeace82007-01-05 16:36:47 -0800511 --vcpu->kvm->n_free_mmu_pages;
Avi Kivity25c0de22007-01-05 16:36:42 -0800512 return page;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513}
514
Avi Kivity714b93d2007-01-05 16:36:53 -0800515static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
516 struct kvm_mmu_page *page, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800517{
518 struct kvm_pte_chain *pte_chain;
519 struct hlist_node *node;
520 int i;
521
522 if (!parent_pte)
523 return;
524 if (!page->multimapped) {
525 u64 *old = page->parent_pte;
526
527 if (!old) {
528 page->parent_pte = parent_pte;
529 return;
530 }
531 page->multimapped = 1;
Avi Kivity714b93d2007-01-05 16:36:53 -0800532 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800533 INIT_HLIST_HEAD(&page->parent_ptes);
534 hlist_add_head(&pte_chain->link, &page->parent_ptes);
535 pte_chain->parent_ptes[0] = old;
536 }
537 hlist_for_each_entry(pte_chain, node, &page->parent_ptes, link) {
538 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
539 continue;
540 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
541 if (!pte_chain->parent_ptes[i]) {
542 pte_chain->parent_ptes[i] = parent_pte;
543 return;
544 }
545 }
Avi Kivity714b93d2007-01-05 16:36:53 -0800546 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800547 BUG_ON(!pte_chain);
548 hlist_add_head(&pte_chain->link, &page->parent_ptes);
549 pte_chain->parent_ptes[0] = parent_pte;
550}
551
Avi Kivity90cb0522007-07-17 13:04:56 +0300552static void mmu_page_remove_parent_pte(struct kvm_mmu_page *page,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800553 u64 *parent_pte)
554{
555 struct kvm_pte_chain *pte_chain;
556 struct hlist_node *node;
557 int i;
558
559 if (!page->multimapped) {
560 BUG_ON(page->parent_pte != parent_pte);
561 page->parent_pte = NULL;
562 return;
563 }
564 hlist_for_each_entry(pte_chain, node, &page->parent_ptes, link)
565 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
566 if (!pte_chain->parent_ptes[i])
567 break;
568 if (pte_chain->parent_ptes[i] != parent_pte)
569 continue;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800570 while (i + 1 < NR_PTE_CHAIN_ENTRIES
571 && pte_chain->parent_ptes[i + 1]) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800572 pte_chain->parent_ptes[i]
573 = pte_chain->parent_ptes[i + 1];
574 ++i;
575 }
576 pte_chain->parent_ptes[i] = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800577 if (i == 0) {
578 hlist_del(&pte_chain->link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300579 mmu_free_pte_chain(pte_chain);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800580 if (hlist_empty(&page->parent_ptes)) {
581 page->multimapped = 0;
582 page->parent_pte = NULL;
583 }
584 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800585 return;
586 }
587 BUG();
588}
589
590static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm_vcpu *vcpu,
591 gfn_t gfn)
592{
593 unsigned index;
594 struct hlist_head *bucket;
595 struct kvm_mmu_page *page;
596 struct hlist_node *node;
597
598 pgprintk("%s: looking for gfn %lx\n", __FUNCTION__, gfn);
599 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
600 bucket = &vcpu->kvm->mmu_page_hash[index];
601 hlist_for_each_entry(page, node, bucket, hash_link)
602 if (page->gfn == gfn && !page->role.metaphysical) {
603 pgprintk("%s: found role %x\n",
604 __FUNCTION__, page->role.word);
605 return page;
606 }
607 return NULL;
608}
609
610static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
611 gfn_t gfn,
612 gva_t gaddr,
613 unsigned level,
614 int metaphysical,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200615 unsigned hugepage_access,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800616 u64 *parent_pte)
617{
618 union kvm_mmu_page_role role;
619 unsigned index;
620 unsigned quadrant;
621 struct hlist_head *bucket;
622 struct kvm_mmu_page *page;
623 struct hlist_node *node;
624
625 role.word = 0;
626 role.glevels = vcpu->mmu.root_level;
627 role.level = level;
628 role.metaphysical = metaphysical;
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200629 role.hugepage_access = hugepage_access;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800630 if (vcpu->mmu.root_level <= PT32_ROOT_LEVEL) {
631 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
632 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
633 role.quadrant = quadrant;
634 }
635 pgprintk("%s: looking gfn %lx role %x\n", __FUNCTION__,
636 gfn, role.word);
637 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
638 bucket = &vcpu->kvm->mmu_page_hash[index];
639 hlist_for_each_entry(page, node, bucket, hash_link)
640 if (page->gfn == gfn && page->role.word == role.word) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800641 mmu_page_add_parent_pte(vcpu, page, parent_pte);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800642 pgprintk("%s: found\n", __FUNCTION__);
643 return page;
644 }
645 page = kvm_mmu_alloc_page(vcpu, parent_pte);
646 if (!page)
647 return page;
648 pgprintk("%s: adding gfn %lx role %x\n", __FUNCTION__, gfn, role.word);
649 page->gfn = gfn;
650 page->role = role;
651 hlist_add_head(&page->hash_link, bucket);
Avi Kivityc7addb92007-09-16 18:58:32 +0200652 vcpu->mmu.prefetch_page(vcpu, page);
Avi Kivity374cbac2007-01-05 16:36:43 -0800653 if (!metaphysical)
Avi Kivity714b93d2007-01-05 16:36:53 -0800654 rmap_write_protect(vcpu, gfn);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800655 return page;
656}
657
Avi Kivity90cb0522007-07-17 13:04:56 +0300658static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivitya4360362007-01-05 16:36:45 -0800659 struct kvm_mmu_page *page)
660{
Avi Kivity697fe2e2007-01-05 16:36:46 -0800661 unsigned i;
662 u64 *pt;
663 u64 ent;
664
Avi Kivity47ad8e62007-05-06 15:50:58 +0300665 pt = page->spt;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800666
667 if (page->role.level == PT_PAGE_TABLE_LEVEL) {
668 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200669 if (is_shadow_present_pte(pt[i]))
Avi Kivity90cb0522007-07-17 13:04:56 +0300670 rmap_remove(&pt[i]);
Avi Kivityc7addb92007-09-16 18:58:32 +0200671 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800672 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300673 kvm_flush_remote_tlbs(kvm);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800674 return;
675 }
676
677 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
678 ent = pt[i];
679
Avi Kivityc7addb92007-09-16 18:58:32 +0200680 pt[i] = shadow_trap_nonpresent_pte;
681 if (!is_shadow_present_pte(ent))
Avi Kivity697fe2e2007-01-05 16:36:46 -0800682 continue;
683 ent &= PT64_BASE_ADDR_MASK;
Avi Kivity90cb0522007-07-17 13:04:56 +0300684 mmu_page_remove_parent_pte(page_header(ent), &pt[i]);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800685 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300686 kvm_flush_remote_tlbs(kvm);
Avi Kivitya4360362007-01-05 16:36:45 -0800687}
688
Avi Kivity90cb0522007-07-17 13:04:56 +0300689static void kvm_mmu_put_page(struct kvm_mmu_page *page,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800690 u64 *parent_pte)
691{
Avi Kivity90cb0522007-07-17 13:04:56 +0300692 mmu_page_remove_parent_pte(page, parent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -0800693}
694
Avi Kivity90cb0522007-07-17 13:04:56 +0300695static void kvm_mmu_zap_page(struct kvm *kvm,
Avi Kivitya4360362007-01-05 16:36:45 -0800696 struct kvm_mmu_page *page)
697{
698 u64 *parent_pte;
699
700 while (page->multimapped || page->parent_pte) {
701 if (!page->multimapped)
702 parent_pte = page->parent_pte;
703 else {
704 struct kvm_pte_chain *chain;
705
706 chain = container_of(page->parent_ptes.first,
707 struct kvm_pte_chain, link);
708 parent_pte = chain->parent_ptes[0];
709 }
Avi Kivity697fe2e2007-01-05 16:36:46 -0800710 BUG_ON(!parent_pte);
Avi Kivity90cb0522007-07-17 13:04:56 +0300711 kvm_mmu_put_page(page, parent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200712 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -0800713 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300714 kvm_mmu_page_unlink_children(kvm, page);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800715 if (!page->root_count) {
716 hlist_del(&page->hash_link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300717 kvm_mmu_free_page(kvm, page);
Avi Kivity36868f72007-03-26 19:31:52 +0200718 } else
Avi Kivity90cb0522007-07-17 13:04:56 +0300719 list_move(&page->link, &kvm->active_mmu_pages);
Avi Kivitya4360362007-01-05 16:36:45 -0800720}
721
722static int kvm_mmu_unprotect_page(struct kvm_vcpu *vcpu, gfn_t gfn)
723{
724 unsigned index;
725 struct hlist_head *bucket;
726 struct kvm_mmu_page *page;
727 struct hlist_node *node, *n;
728 int r;
729
730 pgprintk("%s: looking for gfn %lx\n", __FUNCTION__, gfn);
731 r = 0;
732 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
733 bucket = &vcpu->kvm->mmu_page_hash[index];
734 hlist_for_each_entry_safe(page, node, n, bucket, hash_link)
735 if (page->gfn == gfn && !page->role.metaphysical) {
Avi Kivity697fe2e2007-01-05 16:36:46 -0800736 pgprintk("%s: gfn %lx role %x\n", __FUNCTION__, gfn,
737 page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300738 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivitya4360362007-01-05 16:36:45 -0800739 r = 1;
740 }
741 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800742}
743
Avi Kivity97a0a012007-05-31 15:08:29 +0300744static void mmu_unshadow(struct kvm_vcpu *vcpu, gfn_t gfn)
745{
746 struct kvm_mmu_page *page;
747
748 while ((page = kvm_mmu_lookup_page(vcpu, gfn)) != NULL) {
749 pgprintk("%s: zap %lx %x\n",
750 __FUNCTION__, gfn, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300751 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity97a0a012007-05-31 15:08:29 +0300752 }
753}
754
Avi Kivity6aa8b732006-12-10 02:21:36 -0800755static void page_header_update_slot(struct kvm *kvm, void *pte, gpa_t gpa)
756{
757 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gpa >> PAGE_SHIFT));
758 struct kvm_mmu_page *page_head = page_header(__pa(pte));
759
760 __set_bit(slot, &page_head->slot_bitmap);
761}
762
763hpa_t safe_gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
764{
765 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
766
767 return is_error_hpa(hpa) ? bad_page_address | (gpa & ~PAGE_MASK): hpa;
768}
769
770hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
771{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800772 struct page *page;
773
774 ASSERT((gpa & HPA_ERR_MASK) == 0);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300775 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
776 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800777 return gpa | HPA_ERR_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800778 return ((hpa_t)page_to_pfn(page) << PAGE_SHIFT)
779 | (gpa & (PAGE_SIZE-1));
780}
781
782hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva)
783{
784 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
785
786 if (gpa == UNMAPPED_GVA)
787 return UNMAPPED_GVA;
788 return gpa_to_hpa(vcpu, gpa);
789}
790
Avi Kivity039576c2007-03-20 12:46:50 +0200791struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
792{
793 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
794
795 if (gpa == UNMAPPED_GVA)
796 return NULL;
797 return pfn_to_page(gpa_to_hpa(vcpu, gpa) >> PAGE_SHIFT);
798}
799
Avi Kivity6aa8b732006-12-10 02:21:36 -0800800static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
801{
802}
803
804static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, hpa_t p)
805{
806 int level = PT32E_ROOT_LEVEL;
807 hpa_t table_addr = vcpu->mmu.root_hpa;
808
809 for (; ; level--) {
810 u32 index = PT64_INDEX(v, level);
811 u64 *table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800812 u64 pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800813
814 ASSERT(VALID_PAGE(table_addr));
815 table = __va(table_addr);
816
817 if (level == 1) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800818 pte = table[index];
Avi Kivityc7addb92007-09-16 18:58:32 +0200819 if (is_shadow_present_pte(pte) && is_writeble_pte(pte))
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800820 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821 mark_page_dirty(vcpu->kvm, v >> PAGE_SHIFT);
822 page_header_update_slot(vcpu->kvm, table, v);
823 table[index] = p | PT_PRESENT_MASK | PT_WRITABLE_MASK |
824 PT_USER_MASK;
Avi Kivity714b93d2007-01-05 16:36:53 -0800825 rmap_add(vcpu, &table[index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800826 return 0;
827 }
828
Avi Kivityc7addb92007-09-16 18:58:32 +0200829 if (table[index] == shadow_trap_nonpresent_pte) {
Avi Kivity25c0de22007-01-05 16:36:42 -0800830 struct kvm_mmu_page *new_table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800831 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800833 pseudo_gfn = (v & PT64_DIR_BASE_ADDR_MASK)
834 >> PAGE_SHIFT;
835 new_table = kvm_mmu_get_page(vcpu, pseudo_gfn,
836 v, level - 1,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200837 1, 0, &table[index]);
Avi Kivity25c0de22007-01-05 16:36:42 -0800838 if (!new_table) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839 pgprintk("nonpaging_map: ENOMEM\n");
840 return -ENOMEM;
841 }
842
Avi Kivity47ad8e62007-05-06 15:50:58 +0300843 table[index] = __pa(new_table->spt) | PT_PRESENT_MASK
Avi Kivity25c0de22007-01-05 16:36:42 -0800844 | PT_WRITABLE_MASK | PT_USER_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800845 }
846 table_addr = table[index] & PT64_BASE_ADDR_MASK;
847 }
848}
849
Avi Kivityc7addb92007-09-16 18:58:32 +0200850static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
851 struct kvm_mmu_page *sp)
852{
853 int i;
854
855 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
856 sp->spt[i] = shadow_trap_nonpresent_pte;
857}
858
Avi Kivity17ac10a2007-01-05 16:36:40 -0800859static void mmu_free_roots(struct kvm_vcpu *vcpu)
860{
861 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800862 struct kvm_mmu_page *page;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800863
Avi Kivity7b53aa52007-06-05 12:17:03 +0300864 if (!VALID_PAGE(vcpu->mmu.root_hpa))
865 return;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800866#ifdef CONFIG_X86_64
867 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
868 hpa_t root = vcpu->mmu.root_hpa;
869
Avi Kivity3bb65a22007-01-05 16:36:51 -0800870 page = page_header(root);
871 --page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800872 vcpu->mmu.root_hpa = INVALID_PAGE;
873 return;
874 }
875#endif
876 for (i = 0; i < 4; ++i) {
877 hpa_t root = vcpu->mmu.pae_root[i];
878
Avi Kivity417726a2007-04-12 17:35:58 +0300879 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +0300880 root &= PT64_BASE_ADDR_MASK;
881 page = page_header(root);
882 --page->root_count;
883 }
Avi Kivity17ac10a2007-01-05 16:36:40 -0800884 vcpu->mmu.pae_root[i] = INVALID_PAGE;
885 }
886 vcpu->mmu.root_hpa = INVALID_PAGE;
887}
888
889static void mmu_alloc_roots(struct kvm_vcpu *vcpu)
890{
891 int i;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800892 gfn_t root_gfn;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800893 struct kvm_mmu_page *page;
894
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800895 root_gfn = vcpu->cr3 >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800896
897#ifdef CONFIG_X86_64
898 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
899 hpa_t root = vcpu->mmu.root_hpa;
900
901 ASSERT(!VALID_PAGE(root));
Ingo Molnar68a99f62007-01-05 16:36:59 -0800902 page = kvm_mmu_get_page(vcpu, root_gfn, 0,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200903 PT64_ROOT_LEVEL, 0, 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300904 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800905 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800906 vcpu->mmu.root_hpa = root;
907 return;
908 }
909#endif
910 for (i = 0; i < 4; ++i) {
911 hpa_t root = vcpu->mmu.pae_root[i];
912
913 ASSERT(!VALID_PAGE(root));
Avi Kivity417726a2007-04-12 17:35:58 +0300914 if (vcpu->mmu.root_level == PT32E_ROOT_LEVEL) {
915 if (!is_present_pte(vcpu->pdptrs[i])) {
916 vcpu->mmu.pae_root[i] = 0;
917 continue;
918 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800919 root_gfn = vcpu->pdptrs[i] >> PAGE_SHIFT;
Avi Kivity417726a2007-04-12 17:35:58 +0300920 } else if (vcpu->mmu.root_level == 0)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800921 root_gfn = 0;
Ingo Molnar68a99f62007-01-05 16:36:59 -0800922 page = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800923 PT32_ROOT_LEVEL, !is_paging(vcpu),
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200924 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300925 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800926 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800927 vcpu->mmu.pae_root[i] = root | PT_PRESENT_MASK;
928 }
929 vcpu->mmu.root_hpa = __pa(vcpu->mmu.pae_root);
930}
931
Avi Kivity6aa8b732006-12-10 02:21:36 -0800932static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
933{
934 return vaddr;
935}
936
937static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
938 u32 error_code)
939{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940 gpa_t addr = gva;
Avi Kivityebeace82007-01-05 16:36:47 -0800941 hpa_t paddr;
Avi Kivitye2dec932007-01-05 16:36:54 -0800942 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800943
Avi Kivitye2dec932007-01-05 16:36:54 -0800944 r = mmu_topup_memory_caches(vcpu);
945 if (r)
946 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800947
Avi Kivity6aa8b732006-12-10 02:21:36 -0800948 ASSERT(vcpu);
949 ASSERT(VALID_PAGE(vcpu->mmu.root_hpa));
950
Avi Kivity6aa8b732006-12-10 02:21:36 -0800951
Avi Kivityebeace82007-01-05 16:36:47 -0800952 paddr = gpa_to_hpa(vcpu , addr & PT64_BASE_ADDR_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800953
Avi Kivityebeace82007-01-05 16:36:47 -0800954 if (is_error_hpa(paddr))
955 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800956
Avi Kivityebeace82007-01-05 16:36:47 -0800957 return nonpaging_map(vcpu, addr & PAGE_MASK, paddr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958}
959
Avi Kivity6aa8b732006-12-10 02:21:36 -0800960static void nonpaging_free(struct kvm_vcpu *vcpu)
961{
Avi Kivity17ac10a2007-01-05 16:36:40 -0800962 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963}
964
965static int nonpaging_init_context(struct kvm_vcpu *vcpu)
966{
967 struct kvm_mmu *context = &vcpu->mmu;
968
969 context->new_cr3 = nonpaging_new_cr3;
970 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 context->gva_to_gpa = nonpaging_gva_to_gpa;
972 context->free = nonpaging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +0200973 context->prefetch_page = nonpaging_prefetch_page;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800974 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800975 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +0300976 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977 return 0;
978}
979
Avi Kivity6aa8b732006-12-10 02:21:36 -0800980static void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
981{
Avi Kivity1165f5f2007-04-19 17:27:43 +0300982 ++vcpu->stat.tlb_flush;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300983 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800984}
985
986static void paging_new_cr3(struct kvm_vcpu *vcpu)
987{
Avi Kivity374cbac2007-01-05 16:36:43 -0800988 pgprintk("%s: cr3 %lx\n", __FUNCTION__, vcpu->cr3);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800989 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990}
991
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992static void inject_page_fault(struct kvm_vcpu *vcpu,
993 u64 addr,
994 u32 err_code)
995{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300996 kvm_x86_ops->inject_page_fault(vcpu, addr, err_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997}
998
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999static void paging_free(struct kvm_vcpu *vcpu)
1000{
1001 nonpaging_free(vcpu);
1002}
1003
1004#define PTTYPE 64
1005#include "paging_tmpl.h"
1006#undef PTTYPE
1007
1008#define PTTYPE 32
1009#include "paging_tmpl.h"
1010#undef PTTYPE
1011
Avi Kivity17ac10a2007-01-05 16:36:40 -08001012static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013{
1014 struct kvm_mmu *context = &vcpu->mmu;
1015
1016 ASSERT(is_pae(vcpu));
1017 context->new_cr3 = paging_new_cr3;
1018 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019 context->gva_to_gpa = paging64_gva_to_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +02001020 context->prefetch_page = paging64_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 context->free = paging_free;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001022 context->root_level = level;
1023 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001024 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025 return 0;
1026}
1027
Avi Kivity17ac10a2007-01-05 16:36:40 -08001028static int paging64_init_context(struct kvm_vcpu *vcpu)
1029{
1030 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
1031}
1032
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033static int paging32_init_context(struct kvm_vcpu *vcpu)
1034{
1035 struct kvm_mmu *context = &vcpu->mmu;
1036
1037 context->new_cr3 = paging_new_cr3;
1038 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 context->gva_to_gpa = paging32_gva_to_gpa;
1040 context->free = paging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02001041 context->prefetch_page = paging32_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 context->root_level = PT32_ROOT_LEVEL;
1043 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001044 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001045 return 0;
1046}
1047
1048static int paging32E_init_context(struct kvm_vcpu *vcpu)
1049{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001050 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051}
1052
1053static int init_kvm_mmu(struct kvm_vcpu *vcpu)
1054{
1055 ASSERT(vcpu);
1056 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
1057
1058 if (!is_paging(vcpu))
1059 return nonpaging_init_context(vcpu);
Avi Kivitya9058ec2006-12-29 16:49:37 -08001060 else if (is_long_mode(vcpu))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061 return paging64_init_context(vcpu);
1062 else if (is_pae(vcpu))
1063 return paging32E_init_context(vcpu);
1064 else
1065 return paging32_init_context(vcpu);
1066}
1067
1068static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
1069{
1070 ASSERT(vcpu);
1071 if (VALID_PAGE(vcpu->mmu.root_hpa)) {
1072 vcpu->mmu.free(vcpu);
1073 vcpu->mmu.root_hpa = INVALID_PAGE;
1074 }
1075}
1076
1077int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
1078{
Avi Kivity17c3ba92007-06-04 15:58:30 +03001079 destroy_kvm_mmu(vcpu);
1080 return init_kvm_mmu(vcpu);
1081}
Eddie Dong8668a3c2007-10-10 14:26:45 +08001082EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001083
1084int kvm_mmu_load(struct kvm_vcpu *vcpu)
1085{
Avi Kivity714b93d2007-01-05 16:36:53 -08001086 int r;
1087
Shaohua Li11ec2802007-07-23 14:51:37 +08001088 mutex_lock(&vcpu->kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -08001089 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001090 if (r)
1091 goto out;
1092 mmu_alloc_roots(vcpu);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001093 kvm_x86_ops->set_cr3(vcpu, vcpu->mmu.root_hpa);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001094 kvm_mmu_flush_tlb(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001095out:
Shaohua Li11ec2802007-07-23 14:51:37 +08001096 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity714b93d2007-01-05 16:36:53 -08001097 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001098}
Avi Kivity17c3ba92007-06-04 15:58:30 +03001099EXPORT_SYMBOL_GPL(kvm_mmu_load);
1100
1101void kvm_mmu_unload(struct kvm_vcpu *vcpu)
1102{
1103 mmu_free_roots(vcpu);
1104}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001105
Avi Kivity09072da2007-05-01 14:16:52 +03001106static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
Avi Kivityac1b7142007-03-08 17:13:32 +02001107 struct kvm_mmu_page *page,
1108 u64 *spte)
1109{
1110 u64 pte;
1111 struct kvm_mmu_page *child;
1112
1113 pte = *spte;
Avi Kivityc7addb92007-09-16 18:58:32 +02001114 if (is_shadow_present_pte(pte)) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001115 if (page->role.level == PT_PAGE_TABLE_LEVEL)
Avi Kivity90cb0522007-07-17 13:04:56 +03001116 rmap_remove(spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001117 else {
1118 child = page_header(pte & PT64_BASE_ADDR_MASK);
Avi Kivity90cb0522007-07-17 13:04:56 +03001119 mmu_page_remove_parent_pte(child, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001120 }
1121 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001122 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Avi Kivityd9e368d2007-06-07 19:18:30 +03001123 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityac1b7142007-03-08 17:13:32 +02001124}
1125
Avi Kivity00284252007-05-01 16:53:31 +03001126static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
1127 struct kvm_mmu_page *page,
1128 u64 *spte,
Avi Kivityc7addb92007-09-16 18:58:32 +02001129 const void *new, int bytes,
1130 int offset_in_pte)
Avi Kivity00284252007-05-01 16:53:31 +03001131{
1132 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1133 return;
1134
1135 if (page->role.glevels == PT32_ROOT_LEVEL)
Avi Kivityc7addb92007-09-16 18:58:32 +02001136 paging32_update_pte(vcpu, page, spte, new, bytes,
1137 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001138 else
Avi Kivityc7addb92007-09-16 18:58:32 +02001139 paging64_update_pte(vcpu, page, spte, new, bytes,
1140 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001141}
1142
Avi Kivity09072da2007-05-01 14:16:52 +03001143void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Shaohua Life551882007-07-23 14:51:39 +08001144 const u8 *new, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001145{
Avi Kivity9b7a0322007-01-05 16:36:45 -08001146 gfn_t gfn = gpa >> PAGE_SHIFT;
1147 struct kvm_mmu_page *page;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001148 struct hlist_node *node, *n;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001149 struct hlist_head *bucket;
1150 unsigned index;
1151 u64 *spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001152 unsigned offset = offset_in_page(gpa);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001153 unsigned pte_size;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001154 unsigned page_offset;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001155 unsigned misaligned;
Avi Kivityfce06572007-05-01 16:44:05 +03001156 unsigned quadrant;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001157 int level;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001158 int flooded = 0;
Avi Kivityac1b7142007-03-08 17:13:32 +02001159 int npte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001160
Avi Kivityda4a00f2007-01-05 16:36:44 -08001161 pgprintk("%s: gpa %llx bytes %d\n", __FUNCTION__, gpa, bytes);
Avi Kivityc7addb92007-09-16 18:58:32 +02001162 kvm_mmu_audit(vcpu, "pre pte write");
Avi Kivity86a5ba02007-01-05 16:36:50 -08001163 if (gfn == vcpu->last_pt_write_gfn) {
1164 ++vcpu->last_pt_write_count;
1165 if (vcpu->last_pt_write_count >= 3)
1166 flooded = 1;
1167 } else {
1168 vcpu->last_pt_write_gfn = gfn;
1169 vcpu->last_pt_write_count = 1;
1170 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001171 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
1172 bucket = &vcpu->kvm->mmu_page_hash[index];
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001173 hlist_for_each_entry_safe(page, node, n, bucket, hash_link) {
Avi Kivity9b7a0322007-01-05 16:36:45 -08001174 if (page->gfn != gfn || page->role.metaphysical)
1175 continue;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001176 pte_size = page->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
1177 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
Avi Kivitye925c5b2007-04-30 14:47:02 +03001178 misaligned |= bytes < 4;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001179 if (misaligned || flooded) {
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001180 /*
1181 * Misaligned accesses are too much trouble to fix
1182 * up; also, they usually indicate a page is not used
1183 * as a page table.
Avi Kivity86a5ba02007-01-05 16:36:50 -08001184 *
1185 * If we're seeing too many writes to a page,
1186 * it may no longer be a page table, or we may be
1187 * forking, in which case it is better to unmap the
1188 * page.
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001189 */
1190 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
1191 gpa, bytes, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +03001192 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001193 continue;
1194 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001195 page_offset = offset;
1196 level = page->role.level;
Avi Kivityac1b7142007-03-08 17:13:32 +02001197 npte = 1;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001198 if (page->role.glevels == PT32_ROOT_LEVEL) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001199 page_offset <<= 1; /* 32->64 */
1200 /*
1201 * A 32-bit pde maps 4MB while the shadow pdes map
1202 * only 2MB. So we need to double the offset again
1203 * and zap two pdes instead of one.
1204 */
1205 if (level == PT32_ROOT_LEVEL) {
Avi Kivity6b8d0f92007-04-18 11:18:18 +03001206 page_offset &= ~7; /* kill rounding error */
Avi Kivityac1b7142007-03-08 17:13:32 +02001207 page_offset <<= 1;
1208 npte = 2;
1209 }
Avi Kivityfce06572007-05-01 16:44:05 +03001210 quadrant = page_offset >> PAGE_SHIFT;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001211 page_offset &= ~PAGE_MASK;
Avi Kivityfce06572007-05-01 16:44:05 +03001212 if (quadrant != page->role.quadrant)
1213 continue;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001214 }
Avi Kivity47ad8e62007-05-06 15:50:58 +03001215 spte = &page->spt[page_offset / sizeof(*spte)];
Avi Kivityac1b7142007-03-08 17:13:32 +02001216 while (npte--) {
Avi Kivity09072da2007-05-01 14:16:52 +03001217 mmu_pte_write_zap_pte(vcpu, page, spte);
Avi Kivityc7addb92007-09-16 18:58:32 +02001218 mmu_pte_write_new_pte(vcpu, page, spte, new, bytes,
1219 page_offset & (pte_size - 1));
Avi Kivityac1b7142007-03-08 17:13:32 +02001220 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001221 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001222 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001223 kvm_mmu_audit(vcpu, "post pte write");
Avi Kivityda4a00f2007-01-05 16:36:44 -08001224}
1225
Avi Kivitya4360362007-01-05 16:36:45 -08001226int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
1227{
1228 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
1229
1230 return kvm_mmu_unprotect_page(vcpu, gpa >> PAGE_SHIFT);
1231}
1232
Avi Kivity22d95b12007-09-14 20:26:06 +03001233void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08001234{
1235 while (vcpu->kvm->n_free_mmu_pages < KVM_REFILL_PAGES) {
1236 struct kvm_mmu_page *page;
1237
1238 page = container_of(vcpu->kvm->active_mmu_pages.prev,
1239 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001240 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityebeace82007-01-05 16:36:47 -08001241 }
1242}
Avi Kivityebeace82007-01-05 16:36:47 -08001243
Avi Kivity6aa8b732006-12-10 02:21:36 -08001244static void free_mmu_pages(struct kvm_vcpu *vcpu)
1245{
Avi Kivityf51234c2007-01-05 16:36:52 -08001246 struct kvm_mmu_page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001247
Avi Kivityf51234c2007-01-05 16:36:52 -08001248 while (!list_empty(&vcpu->kvm->active_mmu_pages)) {
1249 page = container_of(vcpu->kvm->active_mmu_pages.next,
1250 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001251 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityf51234c2007-01-05 16:36:52 -08001252 }
Avi Kivity17ac10a2007-01-05 16:36:40 -08001253 free_page((unsigned long)vcpu->mmu.pae_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001254}
1255
1256static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
1257{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001258 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001259 int i;
1260
1261 ASSERT(vcpu);
1262
Avi Kivityd3d25b02007-05-30 12:34:53 +03001263 vcpu->kvm->n_free_mmu_pages = KVM_NUM_MMU_PAGES;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001264
1265 /*
1266 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
1267 * Therefore we need to allocate shadow page tables in the first
1268 * 4GB of memory, which happens to fit the DMA32 zone.
1269 */
1270 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
1271 if (!page)
1272 goto error_1;
1273 vcpu->mmu.pae_root = page_address(page);
1274 for (i = 0; i < 4; ++i)
1275 vcpu->mmu.pae_root[i] = INVALID_PAGE;
1276
Avi Kivity6aa8b732006-12-10 02:21:36 -08001277 return 0;
1278
1279error_1:
1280 free_mmu_pages(vcpu);
1281 return -ENOMEM;
1282}
1283
Ingo Molnar8018c272006-12-29 16:50:01 -08001284int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001285{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001286 ASSERT(vcpu);
1287 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001288
Ingo Molnar8018c272006-12-29 16:50:01 -08001289 return alloc_mmu_pages(vcpu);
1290}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001291
Ingo Molnar8018c272006-12-29 16:50:01 -08001292int kvm_mmu_setup(struct kvm_vcpu *vcpu)
1293{
1294 ASSERT(vcpu);
1295 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08001296
Ingo Molnar8018c272006-12-29 16:50:01 -08001297 return init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001298}
1299
1300void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
1301{
1302 ASSERT(vcpu);
1303
1304 destroy_kvm_mmu(vcpu);
1305 free_mmu_pages(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001306 mmu_free_memory_caches(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307}
1308
Avi Kivity90cb0522007-07-17 13:04:56 +03001309void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310{
1311 struct kvm_mmu_page *page;
1312
1313 list_for_each_entry(page, &kvm->active_mmu_pages, link) {
1314 int i;
1315 u64 *pt;
1316
1317 if (!test_bit(slot, &page->slot_bitmap))
1318 continue;
1319
Avi Kivity47ad8e62007-05-06 15:50:58 +03001320 pt = page->spt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001321 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1322 /* avoid RMW */
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001323 if (pt[i] & PT_WRITABLE_MASK) {
Avi Kivity90cb0522007-07-17 13:04:56 +03001324 rmap_remove(&pt[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325 pt[i] &= ~PT_WRITABLE_MASK;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001326 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001327 }
1328}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001329
Avi Kivity90cb0522007-07-17 13:04:56 +03001330void kvm_mmu_zap_all(struct kvm *kvm)
Dor Laore0fa8262007-03-30 13:06:33 +03001331{
Avi Kivity90cb0522007-07-17 13:04:56 +03001332 struct kvm_mmu_page *page, *node;
Dor Laore0fa8262007-03-30 13:06:33 +03001333
Avi Kivity90cb0522007-07-17 13:04:56 +03001334 list_for_each_entry_safe(page, node, &kvm->active_mmu_pages, link)
1335 kvm_mmu_zap_page(kvm, page);
Dor Laore0fa8262007-03-30 13:06:33 +03001336
Avi Kivity90cb0522007-07-17 13:04:56 +03001337 kvm_flush_remote_tlbs(kvm);
Dor Laore0fa8262007-03-30 13:06:33 +03001338}
1339
Avi Kivityb5a33a72007-04-15 16:31:09 +03001340void kvm_mmu_module_exit(void)
1341{
1342 if (pte_chain_cache)
1343 kmem_cache_destroy(pte_chain_cache);
1344 if (rmap_desc_cache)
1345 kmem_cache_destroy(rmap_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001346 if (mmu_page_header_cache)
1347 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001348}
1349
1350int kvm_mmu_module_init(void)
1351{
1352 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
1353 sizeof(struct kvm_pte_chain),
Paul Mundt20c2df82007-07-20 10:11:58 +09001354 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001355 if (!pte_chain_cache)
1356 goto nomem;
1357 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
1358 sizeof(struct kvm_rmap_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09001359 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001360 if (!rmap_desc_cache)
1361 goto nomem;
1362
Avi Kivityd3d25b02007-05-30 12:34:53 +03001363 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
1364 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09001365 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001366 if (!mmu_page_header_cache)
1367 goto nomem;
1368
Avi Kivityb5a33a72007-04-15 16:31:09 +03001369 return 0;
1370
1371nomem:
1372 kvm_mmu_module_exit();
1373 return -ENOMEM;
1374}
1375
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001376#ifdef AUDIT
1377
1378static const char *audit_msg;
1379
1380static gva_t canonicalize(gva_t gva)
1381{
1382#ifdef CONFIG_X86_64
1383 gva = (long long)(gva << 16) >> 16;
1384#endif
1385 return gva;
1386}
1387
1388static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
1389 gva_t va, int level)
1390{
1391 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
1392 int i;
1393 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
1394
1395 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
1396 u64 ent = pt[i];
1397
Avi Kivityc7addb92007-09-16 18:58:32 +02001398 if (ent == shadow_trap_nonpresent_pte)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001399 continue;
1400
1401 va = canonicalize(va);
Avi Kivityc7addb92007-09-16 18:58:32 +02001402 if (level > 1) {
1403 if (ent == shadow_notrap_nonpresent_pte)
1404 printk(KERN_ERR "audit: (%s) nontrapping pte"
1405 " in nonleaf level: levels %d gva %lx"
1406 " level %d pte %llx\n", audit_msg,
1407 vcpu->mmu.root_level, va, level, ent);
1408
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001409 audit_mappings_page(vcpu, ent, va, level - 1);
Avi Kivityc7addb92007-09-16 18:58:32 +02001410 } else {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001411 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, va);
1412 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
1413
Avi Kivityc7addb92007-09-16 18:58:32 +02001414 if (is_shadow_present_pte(ent)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001415 && (ent & PT64_BASE_ADDR_MASK) != hpa)
Avi Kivityc7addb92007-09-16 18:58:32 +02001416 printk(KERN_ERR "xx audit error: (%s) levels %d"
1417 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001418 audit_msg, vcpu->mmu.root_level,
Avi Kivityc7addb92007-09-16 18:58:32 +02001419 va, gpa, hpa, ent, is_shadow_present_pte(ent));
1420 else if (ent == shadow_notrap_nonpresent_pte
1421 && !is_error_hpa(hpa))
1422 printk(KERN_ERR "audit: (%s) notrap shadow,"
1423 " valid guest gva %lx\n", audit_msg, va);
1424
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001425 }
1426 }
1427}
1428
1429static void audit_mappings(struct kvm_vcpu *vcpu)
1430{
Avi Kivity1ea252a2007-03-08 11:48:09 +02001431 unsigned i;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001432
1433 if (vcpu->mmu.root_level == 4)
1434 audit_mappings_page(vcpu, vcpu->mmu.root_hpa, 0, 4);
1435 else
1436 for (i = 0; i < 4; ++i)
1437 if (vcpu->mmu.pae_root[i] & PT_PRESENT_MASK)
1438 audit_mappings_page(vcpu,
1439 vcpu->mmu.pae_root[i],
1440 i << 30,
1441 2);
1442}
1443
1444static int count_rmaps(struct kvm_vcpu *vcpu)
1445{
1446 int nmaps = 0;
1447 int i, j, k;
1448
1449 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1450 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
1451 struct kvm_rmap_desc *d;
1452
1453 for (j = 0; j < m->npages; ++j) {
1454 struct page *page = m->phys_mem[j];
1455
1456 if (!page->private)
1457 continue;
1458 if (!(page->private & 1)) {
1459 ++nmaps;
1460 continue;
1461 }
1462 d = (struct kvm_rmap_desc *)(page->private & ~1ul);
1463 while (d) {
1464 for (k = 0; k < RMAP_EXT; ++k)
1465 if (d->shadow_ptes[k])
1466 ++nmaps;
1467 else
1468 break;
1469 d = d->more;
1470 }
1471 }
1472 }
1473 return nmaps;
1474}
1475
1476static int count_writable_mappings(struct kvm_vcpu *vcpu)
1477{
1478 int nmaps = 0;
1479 struct kvm_mmu_page *page;
1480 int i;
1481
1482 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
Avi Kivity47ad8e62007-05-06 15:50:58 +03001483 u64 *pt = page->spt;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001484
1485 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1486 continue;
1487
1488 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1489 u64 ent = pt[i];
1490
1491 if (!(ent & PT_PRESENT_MASK))
1492 continue;
1493 if (!(ent & PT_WRITABLE_MASK))
1494 continue;
1495 ++nmaps;
1496 }
1497 }
1498 return nmaps;
1499}
1500
1501static void audit_rmap(struct kvm_vcpu *vcpu)
1502{
1503 int n_rmap = count_rmaps(vcpu);
1504 int n_actual = count_writable_mappings(vcpu);
1505
1506 if (n_rmap != n_actual)
1507 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
1508 __FUNCTION__, audit_msg, n_rmap, n_actual);
1509}
1510
1511static void audit_write_protection(struct kvm_vcpu *vcpu)
1512{
1513 struct kvm_mmu_page *page;
1514
1515 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
1516 hfn_t hfn;
1517 struct page *pg;
1518
1519 if (page->role.metaphysical)
1520 continue;
1521
1522 hfn = gpa_to_hpa(vcpu, (gpa_t)page->gfn << PAGE_SHIFT)
1523 >> PAGE_SHIFT;
1524 pg = pfn_to_page(hfn);
1525 if (pg->private)
1526 printk(KERN_ERR "%s: (%s) shadow page has writable"
1527 " mappings: gfn %lx role %x\n",
1528 __FUNCTION__, audit_msg, page->gfn,
1529 page->role.word);
1530 }
1531}
1532
1533static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
1534{
1535 int olddbg = dbg;
1536
1537 dbg = 0;
1538 audit_msg = msg;
1539 audit_rmap(vcpu);
1540 audit_write_protection(vcpu);
1541 audit_mappings(vcpu);
1542 dbg = olddbg;
1543}
1544
1545#endif