blob: d347e895736e1ed3fccd7378773ab1676e85ebea [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 Kivity12b7d282007-09-23 14:10:49 +0200695static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
696{
697 int i;
698
699 for (i = 0; i < KVM_MAX_VCPUS; ++i)
700 if (kvm->vcpus[i])
701 kvm->vcpus[i]->last_pte_updated = NULL;
702}
703
Avi Kivity90cb0522007-07-17 13:04:56 +0300704static void kvm_mmu_zap_page(struct kvm *kvm,
Avi Kivitya4360362007-01-05 16:36:45 -0800705 struct kvm_mmu_page *page)
706{
707 u64 *parent_pte;
708
709 while (page->multimapped || page->parent_pte) {
710 if (!page->multimapped)
711 parent_pte = page->parent_pte;
712 else {
713 struct kvm_pte_chain *chain;
714
715 chain = container_of(page->parent_ptes.first,
716 struct kvm_pte_chain, link);
717 parent_pte = chain->parent_ptes[0];
718 }
Avi Kivity697fe2e2007-01-05 16:36:46 -0800719 BUG_ON(!parent_pte);
Avi Kivity90cb0522007-07-17 13:04:56 +0300720 kvm_mmu_put_page(page, parent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200721 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -0800722 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300723 kvm_mmu_page_unlink_children(kvm, page);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800724 if (!page->root_count) {
725 hlist_del(&page->hash_link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300726 kvm_mmu_free_page(kvm, page);
Avi Kivity36868f72007-03-26 19:31:52 +0200727 } else
Avi Kivity90cb0522007-07-17 13:04:56 +0300728 list_move(&page->link, &kvm->active_mmu_pages);
Avi Kivity12b7d282007-09-23 14:10:49 +0200729 kvm_mmu_reset_last_pte_updated(kvm);
Avi Kivitya4360362007-01-05 16:36:45 -0800730}
731
732static int kvm_mmu_unprotect_page(struct kvm_vcpu *vcpu, gfn_t gfn)
733{
734 unsigned index;
735 struct hlist_head *bucket;
736 struct kvm_mmu_page *page;
737 struct hlist_node *node, *n;
738 int r;
739
740 pgprintk("%s: looking for gfn %lx\n", __FUNCTION__, gfn);
741 r = 0;
742 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
743 bucket = &vcpu->kvm->mmu_page_hash[index];
744 hlist_for_each_entry_safe(page, node, n, bucket, hash_link)
745 if (page->gfn == gfn && !page->role.metaphysical) {
Avi Kivity697fe2e2007-01-05 16:36:46 -0800746 pgprintk("%s: gfn %lx role %x\n", __FUNCTION__, gfn,
747 page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300748 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivitya4360362007-01-05 16:36:45 -0800749 r = 1;
750 }
751 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800752}
753
Avi Kivity97a0a012007-05-31 15:08:29 +0300754static void mmu_unshadow(struct kvm_vcpu *vcpu, gfn_t gfn)
755{
756 struct kvm_mmu_page *page;
757
758 while ((page = kvm_mmu_lookup_page(vcpu, gfn)) != NULL) {
759 pgprintk("%s: zap %lx %x\n",
760 __FUNCTION__, gfn, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300761 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity97a0a012007-05-31 15:08:29 +0300762 }
763}
764
Avi Kivity6aa8b732006-12-10 02:21:36 -0800765static void page_header_update_slot(struct kvm *kvm, void *pte, gpa_t gpa)
766{
767 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gpa >> PAGE_SHIFT));
768 struct kvm_mmu_page *page_head = page_header(__pa(pte));
769
770 __set_bit(slot, &page_head->slot_bitmap);
771}
772
773hpa_t safe_gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
774{
775 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
776
777 return is_error_hpa(hpa) ? bad_page_address | (gpa & ~PAGE_MASK): hpa;
778}
779
780hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
781{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800782 struct page *page;
783
784 ASSERT((gpa & HPA_ERR_MASK) == 0);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300785 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
786 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800787 return gpa | HPA_ERR_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800788 return ((hpa_t)page_to_pfn(page) << PAGE_SHIFT)
789 | (gpa & (PAGE_SIZE-1));
790}
791
792hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva)
793{
794 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
795
796 if (gpa == UNMAPPED_GVA)
797 return UNMAPPED_GVA;
798 return gpa_to_hpa(vcpu, gpa);
799}
800
Avi Kivity039576c2007-03-20 12:46:50 +0200801struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
802{
803 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
804
805 if (gpa == UNMAPPED_GVA)
806 return NULL;
807 return pfn_to_page(gpa_to_hpa(vcpu, gpa) >> PAGE_SHIFT);
808}
809
Avi Kivity6aa8b732006-12-10 02:21:36 -0800810static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
811{
812}
813
814static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, hpa_t p)
815{
816 int level = PT32E_ROOT_LEVEL;
817 hpa_t table_addr = vcpu->mmu.root_hpa;
818
819 for (; ; level--) {
820 u32 index = PT64_INDEX(v, level);
821 u64 *table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800822 u64 pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800823
824 ASSERT(VALID_PAGE(table_addr));
825 table = __va(table_addr);
826
827 if (level == 1) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800828 pte = table[index];
Avi Kivityc7addb92007-09-16 18:58:32 +0200829 if (is_shadow_present_pte(pte) && is_writeble_pte(pte))
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800830 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800831 mark_page_dirty(vcpu->kvm, v >> PAGE_SHIFT);
832 page_header_update_slot(vcpu->kvm, table, v);
833 table[index] = p | PT_PRESENT_MASK | PT_WRITABLE_MASK |
834 PT_USER_MASK;
Avi Kivity714b93d2007-01-05 16:36:53 -0800835 rmap_add(vcpu, &table[index]);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800836 return 0;
837 }
838
Avi Kivityc7addb92007-09-16 18:58:32 +0200839 if (table[index] == shadow_trap_nonpresent_pte) {
Avi Kivity25c0de22007-01-05 16:36:42 -0800840 struct kvm_mmu_page *new_table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800841 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800842
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800843 pseudo_gfn = (v & PT64_DIR_BASE_ADDR_MASK)
844 >> PAGE_SHIFT;
845 new_table = kvm_mmu_get_page(vcpu, pseudo_gfn,
846 v, level - 1,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200847 1, 0, &table[index]);
Avi Kivity25c0de22007-01-05 16:36:42 -0800848 if (!new_table) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 pgprintk("nonpaging_map: ENOMEM\n");
850 return -ENOMEM;
851 }
852
Avi Kivity47ad8e62007-05-06 15:50:58 +0300853 table[index] = __pa(new_table->spt) | PT_PRESENT_MASK
Avi Kivity25c0de22007-01-05 16:36:42 -0800854 | PT_WRITABLE_MASK | PT_USER_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 }
856 table_addr = table[index] & PT64_BASE_ADDR_MASK;
857 }
858}
859
Avi Kivityc7addb92007-09-16 18:58:32 +0200860static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
861 struct kvm_mmu_page *sp)
862{
863 int i;
864
865 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
866 sp->spt[i] = shadow_trap_nonpresent_pte;
867}
868
Avi Kivity17ac10a2007-01-05 16:36:40 -0800869static void mmu_free_roots(struct kvm_vcpu *vcpu)
870{
871 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800872 struct kvm_mmu_page *page;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800873
Avi Kivity7b53aa52007-06-05 12:17:03 +0300874 if (!VALID_PAGE(vcpu->mmu.root_hpa))
875 return;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800876#ifdef CONFIG_X86_64
877 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
878 hpa_t root = vcpu->mmu.root_hpa;
879
Avi Kivity3bb65a22007-01-05 16:36:51 -0800880 page = page_header(root);
881 --page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800882 vcpu->mmu.root_hpa = INVALID_PAGE;
883 return;
884 }
885#endif
886 for (i = 0; i < 4; ++i) {
887 hpa_t root = vcpu->mmu.pae_root[i];
888
Avi Kivity417726a2007-04-12 17:35:58 +0300889 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +0300890 root &= PT64_BASE_ADDR_MASK;
891 page = page_header(root);
892 --page->root_count;
893 }
Avi Kivity17ac10a2007-01-05 16:36:40 -0800894 vcpu->mmu.pae_root[i] = INVALID_PAGE;
895 }
896 vcpu->mmu.root_hpa = INVALID_PAGE;
897}
898
899static void mmu_alloc_roots(struct kvm_vcpu *vcpu)
900{
901 int i;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800902 gfn_t root_gfn;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800903 struct kvm_mmu_page *page;
904
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800905 root_gfn = vcpu->cr3 >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800906
907#ifdef CONFIG_X86_64
908 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
909 hpa_t root = vcpu->mmu.root_hpa;
910
911 ASSERT(!VALID_PAGE(root));
Ingo Molnar68a99f62007-01-05 16:36:59 -0800912 page = kvm_mmu_get_page(vcpu, root_gfn, 0,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200913 PT64_ROOT_LEVEL, 0, 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300914 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800915 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800916 vcpu->mmu.root_hpa = root;
917 return;
918 }
919#endif
920 for (i = 0; i < 4; ++i) {
921 hpa_t root = vcpu->mmu.pae_root[i];
922
923 ASSERT(!VALID_PAGE(root));
Avi Kivity417726a2007-04-12 17:35:58 +0300924 if (vcpu->mmu.root_level == PT32E_ROOT_LEVEL) {
925 if (!is_present_pte(vcpu->pdptrs[i])) {
926 vcpu->mmu.pae_root[i] = 0;
927 continue;
928 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800929 root_gfn = vcpu->pdptrs[i] >> PAGE_SHIFT;
Avi Kivity417726a2007-04-12 17:35:58 +0300930 } else if (vcpu->mmu.root_level == 0)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800931 root_gfn = 0;
Ingo Molnar68a99f62007-01-05 16:36:59 -0800932 page = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800933 PT32_ROOT_LEVEL, !is_paging(vcpu),
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200934 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300935 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800936 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800937 vcpu->mmu.pae_root[i] = root | PT_PRESENT_MASK;
938 }
939 vcpu->mmu.root_hpa = __pa(vcpu->mmu.pae_root);
940}
941
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
943{
944 return vaddr;
945}
946
947static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
948 u32 error_code)
949{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800950 gpa_t addr = gva;
Avi Kivityebeace82007-01-05 16:36:47 -0800951 hpa_t paddr;
Avi Kivitye2dec932007-01-05 16:36:54 -0800952 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800953
Avi Kivitye2dec932007-01-05 16:36:54 -0800954 r = mmu_topup_memory_caches(vcpu);
955 if (r)
956 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800957
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958 ASSERT(vcpu);
959 ASSERT(VALID_PAGE(vcpu->mmu.root_hpa));
960
Avi Kivity6aa8b732006-12-10 02:21:36 -0800961
Avi Kivityebeace82007-01-05 16:36:47 -0800962 paddr = gpa_to_hpa(vcpu , addr & PT64_BASE_ADDR_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963
Avi Kivityebeace82007-01-05 16:36:47 -0800964 if (is_error_hpa(paddr))
965 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800966
Avi Kivityebeace82007-01-05 16:36:47 -0800967 return nonpaging_map(vcpu, addr & PAGE_MASK, paddr);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800968}
969
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970static void nonpaging_free(struct kvm_vcpu *vcpu)
971{
Avi Kivity17ac10a2007-01-05 16:36:40 -0800972 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973}
974
975static int nonpaging_init_context(struct kvm_vcpu *vcpu)
976{
977 struct kvm_mmu *context = &vcpu->mmu;
978
979 context->new_cr3 = nonpaging_new_cr3;
980 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800981 context->gva_to_gpa = nonpaging_gva_to_gpa;
982 context->free = nonpaging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +0200983 context->prefetch_page = nonpaging_prefetch_page;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800984 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +0300986 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 return 0;
988}
989
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990static void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
991{
Avi Kivity1165f5f2007-04-19 17:27:43 +0300992 ++vcpu->stat.tlb_flush;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +0300993 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994}
995
996static void paging_new_cr3(struct kvm_vcpu *vcpu)
997{
Avi Kivity374cbac2007-01-05 16:36:43 -0800998 pgprintk("%s: cr3 %lx\n", __FUNCTION__, vcpu->cr3);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800999 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001000}
1001
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002static void inject_page_fault(struct kvm_vcpu *vcpu,
1003 u64 addr,
1004 u32 err_code)
1005{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001006 kvm_x86_ops->inject_page_fault(vcpu, addr, err_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007}
1008
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009static void paging_free(struct kvm_vcpu *vcpu)
1010{
1011 nonpaging_free(vcpu);
1012}
1013
1014#define PTTYPE 64
1015#include "paging_tmpl.h"
1016#undef PTTYPE
1017
1018#define PTTYPE 32
1019#include "paging_tmpl.h"
1020#undef PTTYPE
1021
Avi Kivity17ac10a2007-01-05 16:36:40 -08001022static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023{
1024 struct kvm_mmu *context = &vcpu->mmu;
1025
1026 ASSERT(is_pae(vcpu));
1027 context->new_cr3 = paging_new_cr3;
1028 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 context->gva_to_gpa = paging64_gva_to_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +02001030 context->prefetch_page = paging64_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031 context->free = paging_free;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001032 context->root_level = level;
1033 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001034 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001035 return 0;
1036}
1037
Avi Kivity17ac10a2007-01-05 16:36:40 -08001038static int paging64_init_context(struct kvm_vcpu *vcpu)
1039{
1040 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
1041}
1042
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043static int paging32_init_context(struct kvm_vcpu *vcpu)
1044{
1045 struct kvm_mmu *context = &vcpu->mmu;
1046
1047 context->new_cr3 = paging_new_cr3;
1048 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001049 context->gva_to_gpa = paging32_gva_to_gpa;
1050 context->free = paging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02001051 context->prefetch_page = paging32_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052 context->root_level = PT32_ROOT_LEVEL;
1053 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001054 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 return 0;
1056}
1057
1058static int paging32E_init_context(struct kvm_vcpu *vcpu)
1059{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001060 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061}
1062
1063static int init_kvm_mmu(struct kvm_vcpu *vcpu)
1064{
1065 ASSERT(vcpu);
1066 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
1067
1068 if (!is_paging(vcpu))
1069 return nonpaging_init_context(vcpu);
Avi Kivitya9058ec2006-12-29 16:49:37 -08001070 else if (is_long_mode(vcpu))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001071 return paging64_init_context(vcpu);
1072 else if (is_pae(vcpu))
1073 return paging32E_init_context(vcpu);
1074 else
1075 return paging32_init_context(vcpu);
1076}
1077
1078static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
1079{
1080 ASSERT(vcpu);
1081 if (VALID_PAGE(vcpu->mmu.root_hpa)) {
1082 vcpu->mmu.free(vcpu);
1083 vcpu->mmu.root_hpa = INVALID_PAGE;
1084 }
1085}
1086
1087int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
1088{
Avi Kivity17c3ba92007-06-04 15:58:30 +03001089 destroy_kvm_mmu(vcpu);
1090 return init_kvm_mmu(vcpu);
1091}
Eddie Dong8668a3c2007-10-10 14:26:45 +08001092EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001093
1094int kvm_mmu_load(struct kvm_vcpu *vcpu)
1095{
Avi Kivity714b93d2007-01-05 16:36:53 -08001096 int r;
1097
Shaohua Li11ec2802007-07-23 14:51:37 +08001098 mutex_lock(&vcpu->kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -08001099 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001100 if (r)
1101 goto out;
1102 mmu_alloc_roots(vcpu);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001103 kvm_x86_ops->set_cr3(vcpu, vcpu->mmu.root_hpa);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001104 kvm_mmu_flush_tlb(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001105out:
Shaohua Li11ec2802007-07-23 14:51:37 +08001106 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity714b93d2007-01-05 16:36:53 -08001107 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001108}
Avi Kivity17c3ba92007-06-04 15:58:30 +03001109EXPORT_SYMBOL_GPL(kvm_mmu_load);
1110
1111void kvm_mmu_unload(struct kvm_vcpu *vcpu)
1112{
1113 mmu_free_roots(vcpu);
1114}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001115
Avi Kivity09072da2007-05-01 14:16:52 +03001116static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
Avi Kivityac1b7142007-03-08 17:13:32 +02001117 struct kvm_mmu_page *page,
1118 u64 *spte)
1119{
1120 u64 pte;
1121 struct kvm_mmu_page *child;
1122
1123 pte = *spte;
Avi Kivityc7addb92007-09-16 18:58:32 +02001124 if (is_shadow_present_pte(pte)) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001125 if (page->role.level == PT_PAGE_TABLE_LEVEL)
Avi Kivity90cb0522007-07-17 13:04:56 +03001126 rmap_remove(spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001127 else {
1128 child = page_header(pte & PT64_BASE_ADDR_MASK);
Avi Kivity90cb0522007-07-17 13:04:56 +03001129 mmu_page_remove_parent_pte(child, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001130 }
1131 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001132 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Avi Kivityd9e368d2007-06-07 19:18:30 +03001133 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityac1b7142007-03-08 17:13:32 +02001134}
1135
Avi Kivity00284252007-05-01 16:53:31 +03001136static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
1137 struct kvm_mmu_page *page,
1138 u64 *spte,
Avi Kivityc7addb92007-09-16 18:58:32 +02001139 const void *new, int bytes,
1140 int offset_in_pte)
Avi Kivity00284252007-05-01 16:53:31 +03001141{
1142 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1143 return;
1144
1145 if (page->role.glevels == PT32_ROOT_LEVEL)
Avi Kivityc7addb92007-09-16 18:58:32 +02001146 paging32_update_pte(vcpu, page, spte, new, bytes,
1147 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001148 else
Avi Kivityc7addb92007-09-16 18:58:32 +02001149 paging64_update_pte(vcpu, page, spte, new, bytes,
1150 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001151}
1152
Avi Kivity12b7d282007-09-23 14:10:49 +02001153static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
1154{
1155 u64 *spte = vcpu->last_pte_updated;
1156
1157 return !!(spte && (*spte & PT_ACCESSED_MASK));
1158}
1159
Avi Kivity09072da2007-05-01 14:16:52 +03001160void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Shaohua Life551882007-07-23 14:51:39 +08001161 const u8 *new, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001162{
Avi Kivity9b7a0322007-01-05 16:36:45 -08001163 gfn_t gfn = gpa >> PAGE_SHIFT;
1164 struct kvm_mmu_page *page;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001165 struct hlist_node *node, *n;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001166 struct hlist_head *bucket;
1167 unsigned index;
1168 u64 *spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001169 unsigned offset = offset_in_page(gpa);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001170 unsigned pte_size;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001171 unsigned page_offset;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001172 unsigned misaligned;
Avi Kivityfce06572007-05-01 16:44:05 +03001173 unsigned quadrant;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001174 int level;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001175 int flooded = 0;
Avi Kivityac1b7142007-03-08 17:13:32 +02001176 int npte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001177
Avi Kivityda4a00f2007-01-05 16:36:44 -08001178 pgprintk("%s: gpa %llx bytes %d\n", __FUNCTION__, gpa, bytes);
Avi Kivityc7addb92007-09-16 18:58:32 +02001179 kvm_mmu_audit(vcpu, "pre pte write");
Avi Kivity12b7d282007-09-23 14:10:49 +02001180 if (gfn == vcpu->last_pt_write_gfn
1181 && !last_updated_pte_accessed(vcpu)) {
Avi Kivity86a5ba02007-01-05 16:36:50 -08001182 ++vcpu->last_pt_write_count;
1183 if (vcpu->last_pt_write_count >= 3)
1184 flooded = 1;
1185 } else {
1186 vcpu->last_pt_write_gfn = gfn;
1187 vcpu->last_pt_write_count = 1;
Avi Kivity12b7d282007-09-23 14:10:49 +02001188 vcpu->last_pte_updated = NULL;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001189 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001190 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
1191 bucket = &vcpu->kvm->mmu_page_hash[index];
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001192 hlist_for_each_entry_safe(page, node, n, bucket, hash_link) {
Avi Kivity9b7a0322007-01-05 16:36:45 -08001193 if (page->gfn != gfn || page->role.metaphysical)
1194 continue;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001195 pte_size = page->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
1196 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
Avi Kivitye925c5b2007-04-30 14:47:02 +03001197 misaligned |= bytes < 4;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001198 if (misaligned || flooded) {
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001199 /*
1200 * Misaligned accesses are too much trouble to fix
1201 * up; also, they usually indicate a page is not used
1202 * as a page table.
Avi Kivity86a5ba02007-01-05 16:36:50 -08001203 *
1204 * If we're seeing too many writes to a page,
1205 * it may no longer be a page table, or we may be
1206 * forking, in which case it is better to unmap the
1207 * page.
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001208 */
1209 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
1210 gpa, bytes, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +03001211 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001212 continue;
1213 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001214 page_offset = offset;
1215 level = page->role.level;
Avi Kivityac1b7142007-03-08 17:13:32 +02001216 npte = 1;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001217 if (page->role.glevels == PT32_ROOT_LEVEL) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001218 page_offset <<= 1; /* 32->64 */
1219 /*
1220 * A 32-bit pde maps 4MB while the shadow pdes map
1221 * only 2MB. So we need to double the offset again
1222 * and zap two pdes instead of one.
1223 */
1224 if (level == PT32_ROOT_LEVEL) {
Avi Kivity6b8d0f92007-04-18 11:18:18 +03001225 page_offset &= ~7; /* kill rounding error */
Avi Kivityac1b7142007-03-08 17:13:32 +02001226 page_offset <<= 1;
1227 npte = 2;
1228 }
Avi Kivityfce06572007-05-01 16:44:05 +03001229 quadrant = page_offset >> PAGE_SHIFT;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001230 page_offset &= ~PAGE_MASK;
Avi Kivityfce06572007-05-01 16:44:05 +03001231 if (quadrant != page->role.quadrant)
1232 continue;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001233 }
Avi Kivity47ad8e62007-05-06 15:50:58 +03001234 spte = &page->spt[page_offset / sizeof(*spte)];
Avi Kivityac1b7142007-03-08 17:13:32 +02001235 while (npte--) {
Avi Kivity09072da2007-05-01 14:16:52 +03001236 mmu_pte_write_zap_pte(vcpu, page, spte);
Avi Kivityc7addb92007-09-16 18:58:32 +02001237 mmu_pte_write_new_pte(vcpu, page, spte, new, bytes,
1238 page_offset & (pte_size - 1));
Avi Kivityac1b7142007-03-08 17:13:32 +02001239 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001240 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001241 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001242 kvm_mmu_audit(vcpu, "post pte write");
Avi Kivityda4a00f2007-01-05 16:36:44 -08001243}
1244
Avi Kivitya4360362007-01-05 16:36:45 -08001245int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
1246{
1247 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
1248
1249 return kvm_mmu_unprotect_page(vcpu, gpa >> PAGE_SHIFT);
1250}
1251
Avi Kivity22d95b12007-09-14 20:26:06 +03001252void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08001253{
1254 while (vcpu->kvm->n_free_mmu_pages < KVM_REFILL_PAGES) {
1255 struct kvm_mmu_page *page;
1256
1257 page = container_of(vcpu->kvm->active_mmu_pages.prev,
1258 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001259 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityebeace82007-01-05 16:36:47 -08001260 }
1261}
Avi Kivityebeace82007-01-05 16:36:47 -08001262
Avi Kivity6aa8b732006-12-10 02:21:36 -08001263static void free_mmu_pages(struct kvm_vcpu *vcpu)
1264{
Avi Kivityf51234c2007-01-05 16:36:52 -08001265 struct kvm_mmu_page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001266
Avi Kivityf51234c2007-01-05 16:36:52 -08001267 while (!list_empty(&vcpu->kvm->active_mmu_pages)) {
1268 page = container_of(vcpu->kvm->active_mmu_pages.next,
1269 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001270 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityf51234c2007-01-05 16:36:52 -08001271 }
Avi Kivity17ac10a2007-01-05 16:36:40 -08001272 free_page((unsigned long)vcpu->mmu.pae_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001273}
1274
1275static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
1276{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001277 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001278 int i;
1279
1280 ASSERT(vcpu);
1281
Avi Kivityd3d25b02007-05-30 12:34:53 +03001282 vcpu->kvm->n_free_mmu_pages = KVM_NUM_MMU_PAGES;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001283
1284 /*
1285 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
1286 * Therefore we need to allocate shadow page tables in the first
1287 * 4GB of memory, which happens to fit the DMA32 zone.
1288 */
1289 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
1290 if (!page)
1291 goto error_1;
1292 vcpu->mmu.pae_root = page_address(page);
1293 for (i = 0; i < 4; ++i)
1294 vcpu->mmu.pae_root[i] = INVALID_PAGE;
1295
Avi Kivity6aa8b732006-12-10 02:21:36 -08001296 return 0;
1297
1298error_1:
1299 free_mmu_pages(vcpu);
1300 return -ENOMEM;
1301}
1302
Ingo Molnar8018c272006-12-29 16:50:01 -08001303int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001304{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001305 ASSERT(vcpu);
1306 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001307
Ingo Molnar8018c272006-12-29 16:50:01 -08001308 return alloc_mmu_pages(vcpu);
1309}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001310
Ingo Molnar8018c272006-12-29 16:50:01 -08001311int kvm_mmu_setup(struct kvm_vcpu *vcpu)
1312{
1313 ASSERT(vcpu);
1314 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08001315
Ingo Molnar8018c272006-12-29 16:50:01 -08001316 return init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001317}
1318
1319void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
1320{
1321 ASSERT(vcpu);
1322
1323 destroy_kvm_mmu(vcpu);
1324 free_mmu_pages(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001325 mmu_free_memory_caches(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001326}
1327
Avi Kivity90cb0522007-07-17 13:04:56 +03001328void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001329{
1330 struct kvm_mmu_page *page;
1331
1332 list_for_each_entry(page, &kvm->active_mmu_pages, link) {
1333 int i;
1334 u64 *pt;
1335
1336 if (!test_bit(slot, &page->slot_bitmap))
1337 continue;
1338
Avi Kivity47ad8e62007-05-06 15:50:58 +03001339 pt = page->spt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1341 /* avoid RMW */
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001342 if (pt[i] & PT_WRITABLE_MASK) {
Avi Kivity90cb0522007-07-17 13:04:56 +03001343 rmap_remove(&pt[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001344 pt[i] &= ~PT_WRITABLE_MASK;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001345 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346 }
1347}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001348
Avi Kivity90cb0522007-07-17 13:04:56 +03001349void kvm_mmu_zap_all(struct kvm *kvm)
Dor Laore0fa8262007-03-30 13:06:33 +03001350{
Avi Kivity90cb0522007-07-17 13:04:56 +03001351 struct kvm_mmu_page *page, *node;
Dor Laore0fa8262007-03-30 13:06:33 +03001352
Avi Kivity90cb0522007-07-17 13:04:56 +03001353 list_for_each_entry_safe(page, node, &kvm->active_mmu_pages, link)
1354 kvm_mmu_zap_page(kvm, page);
Dor Laore0fa8262007-03-30 13:06:33 +03001355
Avi Kivity90cb0522007-07-17 13:04:56 +03001356 kvm_flush_remote_tlbs(kvm);
Dor Laore0fa8262007-03-30 13:06:33 +03001357}
1358
Avi Kivityb5a33a72007-04-15 16:31:09 +03001359void kvm_mmu_module_exit(void)
1360{
1361 if (pte_chain_cache)
1362 kmem_cache_destroy(pte_chain_cache);
1363 if (rmap_desc_cache)
1364 kmem_cache_destroy(rmap_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001365 if (mmu_page_header_cache)
1366 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001367}
1368
1369int kvm_mmu_module_init(void)
1370{
1371 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
1372 sizeof(struct kvm_pte_chain),
Paul Mundt20c2df82007-07-20 10:11:58 +09001373 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001374 if (!pte_chain_cache)
1375 goto nomem;
1376 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
1377 sizeof(struct kvm_rmap_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09001378 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001379 if (!rmap_desc_cache)
1380 goto nomem;
1381
Avi Kivityd3d25b02007-05-30 12:34:53 +03001382 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
1383 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09001384 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001385 if (!mmu_page_header_cache)
1386 goto nomem;
1387
Avi Kivityb5a33a72007-04-15 16:31:09 +03001388 return 0;
1389
1390nomem:
1391 kvm_mmu_module_exit();
1392 return -ENOMEM;
1393}
1394
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001395#ifdef AUDIT
1396
1397static const char *audit_msg;
1398
1399static gva_t canonicalize(gva_t gva)
1400{
1401#ifdef CONFIG_X86_64
1402 gva = (long long)(gva << 16) >> 16;
1403#endif
1404 return gva;
1405}
1406
1407static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
1408 gva_t va, int level)
1409{
1410 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
1411 int i;
1412 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
1413
1414 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
1415 u64 ent = pt[i];
1416
Avi Kivityc7addb92007-09-16 18:58:32 +02001417 if (ent == shadow_trap_nonpresent_pte)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001418 continue;
1419
1420 va = canonicalize(va);
Avi Kivityc7addb92007-09-16 18:58:32 +02001421 if (level > 1) {
1422 if (ent == shadow_notrap_nonpresent_pte)
1423 printk(KERN_ERR "audit: (%s) nontrapping pte"
1424 " in nonleaf level: levels %d gva %lx"
1425 " level %d pte %llx\n", audit_msg,
1426 vcpu->mmu.root_level, va, level, ent);
1427
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001428 audit_mappings_page(vcpu, ent, va, level - 1);
Avi Kivityc7addb92007-09-16 18:58:32 +02001429 } else {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001430 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, va);
1431 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
1432
Avi Kivityc7addb92007-09-16 18:58:32 +02001433 if (is_shadow_present_pte(ent)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001434 && (ent & PT64_BASE_ADDR_MASK) != hpa)
Avi Kivityc7addb92007-09-16 18:58:32 +02001435 printk(KERN_ERR "xx audit error: (%s) levels %d"
1436 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001437 audit_msg, vcpu->mmu.root_level,
Avi Kivityc7addb92007-09-16 18:58:32 +02001438 va, gpa, hpa, ent, is_shadow_present_pte(ent));
1439 else if (ent == shadow_notrap_nonpresent_pte
1440 && !is_error_hpa(hpa))
1441 printk(KERN_ERR "audit: (%s) notrap shadow,"
1442 " valid guest gva %lx\n", audit_msg, va);
1443
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001444 }
1445 }
1446}
1447
1448static void audit_mappings(struct kvm_vcpu *vcpu)
1449{
Avi Kivity1ea252a2007-03-08 11:48:09 +02001450 unsigned i;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001451
1452 if (vcpu->mmu.root_level == 4)
1453 audit_mappings_page(vcpu, vcpu->mmu.root_hpa, 0, 4);
1454 else
1455 for (i = 0; i < 4; ++i)
1456 if (vcpu->mmu.pae_root[i] & PT_PRESENT_MASK)
1457 audit_mappings_page(vcpu,
1458 vcpu->mmu.pae_root[i],
1459 i << 30,
1460 2);
1461}
1462
1463static int count_rmaps(struct kvm_vcpu *vcpu)
1464{
1465 int nmaps = 0;
1466 int i, j, k;
1467
1468 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1469 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
1470 struct kvm_rmap_desc *d;
1471
1472 for (j = 0; j < m->npages; ++j) {
1473 struct page *page = m->phys_mem[j];
1474
1475 if (!page->private)
1476 continue;
1477 if (!(page->private & 1)) {
1478 ++nmaps;
1479 continue;
1480 }
1481 d = (struct kvm_rmap_desc *)(page->private & ~1ul);
1482 while (d) {
1483 for (k = 0; k < RMAP_EXT; ++k)
1484 if (d->shadow_ptes[k])
1485 ++nmaps;
1486 else
1487 break;
1488 d = d->more;
1489 }
1490 }
1491 }
1492 return nmaps;
1493}
1494
1495static int count_writable_mappings(struct kvm_vcpu *vcpu)
1496{
1497 int nmaps = 0;
1498 struct kvm_mmu_page *page;
1499 int i;
1500
1501 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
Avi Kivity47ad8e62007-05-06 15:50:58 +03001502 u64 *pt = page->spt;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001503
1504 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1505 continue;
1506
1507 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1508 u64 ent = pt[i];
1509
1510 if (!(ent & PT_PRESENT_MASK))
1511 continue;
1512 if (!(ent & PT_WRITABLE_MASK))
1513 continue;
1514 ++nmaps;
1515 }
1516 }
1517 return nmaps;
1518}
1519
1520static void audit_rmap(struct kvm_vcpu *vcpu)
1521{
1522 int n_rmap = count_rmaps(vcpu);
1523 int n_actual = count_writable_mappings(vcpu);
1524
1525 if (n_rmap != n_actual)
1526 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
1527 __FUNCTION__, audit_msg, n_rmap, n_actual);
1528}
1529
1530static void audit_write_protection(struct kvm_vcpu *vcpu)
1531{
1532 struct kvm_mmu_page *page;
1533
1534 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
1535 hfn_t hfn;
1536 struct page *pg;
1537
1538 if (page->role.metaphysical)
1539 continue;
1540
1541 hfn = gpa_to_hpa(vcpu, (gpa_t)page->gfn << PAGE_SHIFT)
1542 >> PAGE_SHIFT;
1543 pg = pfn_to_page(hfn);
1544 if (pg->private)
1545 printk(KERN_ERR "%s: (%s) shadow page has writable"
1546 " mappings: gfn %lx role %x\n",
1547 __FUNCTION__, audit_msg, page->gfn,
1548 page->role.word);
1549 }
1550}
1551
1552static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
1553{
1554 int olddbg = dbg;
1555
1556 dbg = 0;
1557 audit_msg = msg;
1558 audit_rmap(vcpu);
1559 audit_write_protection(vcpu);
1560 audit_mappings(vcpu);
1561 dbg = olddbg;
1562}
1563
1564#endif