blob: 6cda1feb9a95b4dbefb2982719d9be8a1baf0ffe [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;
Izik Eidus290fc382007-09-27 14:11:22 +0200279 r = mmu_topup_memory_cache_page(&vcpu->mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300280 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/*
Izik Eidus290fc382007-09-27 14:11:22 +0200330 * Take gfn and return the reverse mapping to it.
331 * Note: gfn must be unaliased before this function get called
332 */
333
334static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn)
335{
336 struct kvm_memory_slot *slot;
337
338 slot = gfn_to_memslot(kvm, gfn);
339 return &slot->rmap[gfn - slot->base_gfn];
340}
341
342/*
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800343 * Reverse mapping data structures:
344 *
Izik Eidus290fc382007-09-27 14:11:22 +0200345 * If rmapp bit zero is zero, then rmapp point to the shadw page table entry
346 * that points to page_address(page).
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800347 *
Izik Eidus290fc382007-09-27 14:11:22 +0200348 * If rmapp bit zero is one, (then rmap & ~1) points to a struct kvm_rmap_desc
349 * containing more mappings.
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800350 */
Izik Eidus290fc382007-09-27 14:11:22 +0200351static void rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800352{
Izik Eidus290fc382007-09-27 14:11:22 +0200353 struct kvm_mmu_page *page;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800354 struct kvm_rmap_desc *desc;
Izik Eidus290fc382007-09-27 14:11:22 +0200355 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800356 int i;
357
358 if (!is_rmap_pte(*spte))
359 return;
Izik Eidus290fc382007-09-27 14:11:22 +0200360 gfn = unalias_gfn(vcpu->kvm, gfn);
361 page = page_header(__pa(spte));
362 page->gfns[spte - page->spt] = gfn;
363 rmapp = gfn_to_rmap(vcpu->kvm, gfn);
364 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800365 rmap_printk("rmap_add: %p %llx 0->1\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200366 *rmapp = (unsigned long)spte;
367 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800368 rmap_printk("rmap_add: %p %llx 1->many\n", spte, *spte);
Avi Kivity714b93d2007-01-05 16:36:53 -0800369 desc = mmu_alloc_rmap_desc(vcpu);
Izik Eidus290fc382007-09-27 14:11:22 +0200370 desc->shadow_ptes[0] = (u64 *)*rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800371 desc->shadow_ptes[1] = spte;
Izik Eidus290fc382007-09-27 14:11:22 +0200372 *rmapp = (unsigned long)desc | 1;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800373 } else {
374 rmap_printk("rmap_add: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200375 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800376 while (desc->shadow_ptes[RMAP_EXT-1] && desc->more)
377 desc = desc->more;
378 if (desc->shadow_ptes[RMAP_EXT-1]) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800379 desc->more = mmu_alloc_rmap_desc(vcpu);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800380 desc = desc->more;
381 }
382 for (i = 0; desc->shadow_ptes[i]; ++i)
383 ;
384 desc->shadow_ptes[i] = spte;
385 }
386}
387
Izik Eidus290fc382007-09-27 14:11:22 +0200388static void rmap_desc_remove_entry(unsigned long *rmapp,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800389 struct kvm_rmap_desc *desc,
390 int i,
391 struct kvm_rmap_desc *prev_desc)
392{
393 int j;
394
395 for (j = RMAP_EXT - 1; !desc->shadow_ptes[j] && j > i; --j)
396 ;
397 desc->shadow_ptes[i] = desc->shadow_ptes[j];
Al Viro11718b4d2007-02-09 16:39:20 +0000398 desc->shadow_ptes[j] = NULL;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800399 if (j != 0)
400 return;
401 if (!prev_desc && !desc->more)
Izik Eidus290fc382007-09-27 14:11:22 +0200402 *rmapp = (unsigned long)desc->shadow_ptes[0];
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800403 else
404 if (prev_desc)
405 prev_desc->more = desc->more;
406 else
Izik Eidus290fc382007-09-27 14:11:22 +0200407 *rmapp = (unsigned long)desc->more | 1;
Avi Kivity90cb0522007-07-17 13:04:56 +0300408 mmu_free_rmap_desc(desc);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800409}
410
Izik Eidus290fc382007-09-27 14:11:22 +0200411static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800412{
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800413 struct kvm_rmap_desc *desc;
414 struct kvm_rmap_desc *prev_desc;
Izik Eidus290fc382007-09-27 14:11:22 +0200415 struct kvm_mmu_page *page;
416 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800417 int i;
418
419 if (!is_rmap_pte(*spte))
420 return;
Izik Eidus290fc382007-09-27 14:11:22 +0200421 page = page_header(__pa(spte));
422 rmapp = gfn_to_rmap(kvm, page->gfns[spte - page->spt]);
423 if (!*rmapp) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800424 printk(KERN_ERR "rmap_remove: %p %llx 0->BUG\n", spte, *spte);
425 BUG();
Izik Eidus290fc382007-09-27 14:11:22 +0200426 } else if (!(*rmapp & 1)) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800427 rmap_printk("rmap_remove: %p %llx 1->0\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200428 if ((u64 *)*rmapp != spte) {
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800429 printk(KERN_ERR "rmap_remove: %p %llx 1->BUG\n",
430 spte, *spte);
431 BUG();
432 }
Izik Eidus290fc382007-09-27 14:11:22 +0200433 *rmapp = 0;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800434 } else {
435 rmap_printk("rmap_remove: %p %llx many->many\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200436 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800437 prev_desc = NULL;
438 while (desc) {
439 for (i = 0; i < RMAP_EXT && desc->shadow_ptes[i]; ++i)
440 if (desc->shadow_ptes[i] == spte) {
Izik Eidus290fc382007-09-27 14:11:22 +0200441 rmap_desc_remove_entry(rmapp,
Avi Kivity714b93d2007-01-05 16:36:53 -0800442 desc, i,
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800443 prev_desc);
444 return;
445 }
446 prev_desc = desc;
447 desc = desc->more;
448 }
449 BUG();
450 }
451}
452
Avi Kivity714b93d2007-01-05 16:36:53 -0800453static void rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
Avi Kivity374cbac2007-01-05 16:36:43 -0800454{
Avi Kivity374cbac2007-01-05 16:36:43 -0800455 struct kvm_rmap_desc *desc;
Izik Eidus290fc382007-09-27 14:11:22 +0200456 unsigned long *rmapp;
Avi Kivity374cbac2007-01-05 16:36:43 -0800457 u64 *spte;
458
Izik Eidus290fc382007-09-27 14:11:22 +0200459 gfn = unalias_gfn(vcpu->kvm, gfn);
460 rmapp = gfn_to_rmap(vcpu->kvm, gfn);
Avi Kivity374cbac2007-01-05 16:36:43 -0800461
Izik Eidus290fc382007-09-27 14:11:22 +0200462 while (*rmapp) {
463 if (!(*rmapp & 1))
464 spte = (u64 *)*rmapp;
Avi Kivity374cbac2007-01-05 16:36:43 -0800465 else {
Izik Eidus290fc382007-09-27 14:11:22 +0200466 desc = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivity374cbac2007-01-05 16:36:43 -0800467 spte = desc->shadow_ptes[0];
468 }
469 BUG_ON(!spte);
Avi Kivity374cbac2007-01-05 16:36:43 -0800470 BUG_ON(!(*spte & PT_PRESENT_MASK));
471 BUG_ON(!(*spte & PT_WRITABLE_MASK));
472 rmap_printk("rmap_write_protect: spte %p %llx\n", spte, *spte);
Izik Eidus290fc382007-09-27 14:11:22 +0200473 rmap_remove(vcpu->kvm, spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300474 set_shadow_pte(spte, *spte & ~PT_WRITABLE_MASK);
Shaohua Li88a97f02007-06-20 17:13:26 +0800475 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivity374cbac2007-01-05 16:36:43 -0800476 }
477}
478
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800479#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +0300480static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800481{
Avi Kivity139bdb22007-01-05 16:36:50 -0800482 u64 *pos;
483 u64 *end;
484
Avi Kivity47ad8e62007-05-06 15:50:58 +0300485 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivityc7addb92007-09-16 18:58:32 +0200486 if ((*pos & ~PT_SHADOW_IO_MARK) != shadow_trap_nonpresent_pte) {
Avi Kivity139bdb22007-01-05 16:36:50 -0800487 printk(KERN_ERR "%s: %p %llx\n", __FUNCTION__,
488 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800489 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -0800490 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800491 return 1;
492}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +0800493#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -0800494
Avi Kivity90cb0522007-07-17 13:04:56 +0300495static void kvm_mmu_free_page(struct kvm *kvm,
Avi Kivity4b02d6d2007-05-06 15:36:30 +0300496 struct kvm_mmu_page *page_head)
Avi Kivity260746c2007-01-05 16:36:49 -0800497{
Avi Kivity47ad8e62007-05-06 15:50:58 +0300498 ASSERT(is_empty_shadow_page(page_head->spt));
Avi Kivityd3d25b02007-05-30 12:34:53 +0300499 list_del(&page_head->link);
Avi Kivityc1158e62007-07-20 08:18:27 +0300500 __free_page(virt_to_page(page_head->spt));
Izik Eidus290fc382007-09-27 14:11:22 +0200501 __free_page(virt_to_page(page_head->gfns));
Avi Kivity90cb0522007-07-17 13:04:56 +0300502 kfree(page_head);
503 ++kvm->n_free_mmu_pages;
Avi Kivity260746c2007-01-05 16:36:49 -0800504}
505
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800506static unsigned kvm_page_table_hashfn(gfn_t gfn)
507{
508 return gfn;
509}
510
Avi Kivity25c0de22007-01-05 16:36:42 -0800511static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
512 u64 *parent_pte)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513{
514 struct kvm_mmu_page *page;
515
Avi Kivityd3d25b02007-05-30 12:34:53 +0300516 if (!vcpu->kvm->n_free_mmu_pages)
Avi Kivity25c0de22007-01-05 16:36:42 -0800517 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800518
Avi Kivityd3d25b02007-05-30 12:34:53 +0300519 page = mmu_memory_cache_alloc(&vcpu->mmu_page_header_cache,
520 sizeof *page);
521 page->spt = mmu_memory_cache_alloc(&vcpu->mmu_page_cache, PAGE_SIZE);
Izik Eidus290fc382007-09-27 14:11:22 +0200522 page->gfns = mmu_memory_cache_alloc(&vcpu->mmu_page_cache, PAGE_SIZE);
Avi Kivityd3d25b02007-05-30 12:34:53 +0300523 set_page_private(virt_to_page(page->spt), (unsigned long)page);
524 list_add(&page->link, &vcpu->kvm->active_mmu_pages);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300525 ASSERT(is_empty_shadow_page(page->spt));
Avi Kivity6aa8b732006-12-10 02:21:36 -0800526 page->slot_bitmap = 0;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800527 page->multimapped = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800528 page->parent_pte = parent_pte;
Avi Kivityebeace82007-01-05 16:36:47 -0800529 --vcpu->kvm->n_free_mmu_pages;
Avi Kivity25c0de22007-01-05 16:36:42 -0800530 return page;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800531}
532
Avi Kivity714b93d2007-01-05 16:36:53 -0800533static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
534 struct kvm_mmu_page *page, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800535{
536 struct kvm_pte_chain *pte_chain;
537 struct hlist_node *node;
538 int i;
539
540 if (!parent_pte)
541 return;
542 if (!page->multimapped) {
543 u64 *old = page->parent_pte;
544
545 if (!old) {
546 page->parent_pte = parent_pte;
547 return;
548 }
549 page->multimapped = 1;
Avi Kivity714b93d2007-01-05 16:36:53 -0800550 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800551 INIT_HLIST_HEAD(&page->parent_ptes);
552 hlist_add_head(&pte_chain->link, &page->parent_ptes);
553 pte_chain->parent_ptes[0] = old;
554 }
555 hlist_for_each_entry(pte_chain, node, &page->parent_ptes, link) {
556 if (pte_chain->parent_ptes[NR_PTE_CHAIN_ENTRIES-1])
557 continue;
558 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i)
559 if (!pte_chain->parent_ptes[i]) {
560 pte_chain->parent_ptes[i] = parent_pte;
561 return;
562 }
563 }
Avi Kivity714b93d2007-01-05 16:36:53 -0800564 pte_chain = mmu_alloc_pte_chain(vcpu);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800565 BUG_ON(!pte_chain);
566 hlist_add_head(&pte_chain->link, &page->parent_ptes);
567 pte_chain->parent_ptes[0] = parent_pte;
568}
569
Avi Kivity90cb0522007-07-17 13:04:56 +0300570static void mmu_page_remove_parent_pte(struct kvm_mmu_page *page,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800571 u64 *parent_pte)
572{
573 struct kvm_pte_chain *pte_chain;
574 struct hlist_node *node;
575 int i;
576
577 if (!page->multimapped) {
578 BUG_ON(page->parent_pte != parent_pte);
579 page->parent_pte = NULL;
580 return;
581 }
582 hlist_for_each_entry(pte_chain, node, &page->parent_ptes, link)
583 for (i = 0; i < NR_PTE_CHAIN_ENTRIES; ++i) {
584 if (!pte_chain->parent_ptes[i])
585 break;
586 if (pte_chain->parent_ptes[i] != parent_pte)
587 continue;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800588 while (i + 1 < NR_PTE_CHAIN_ENTRIES
589 && pte_chain->parent_ptes[i + 1]) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800590 pte_chain->parent_ptes[i]
591 = pte_chain->parent_ptes[i + 1];
592 ++i;
593 }
594 pte_chain->parent_ptes[i] = NULL;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800595 if (i == 0) {
596 hlist_del(&pte_chain->link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300597 mmu_free_pte_chain(pte_chain);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800598 if (hlist_empty(&page->parent_ptes)) {
599 page->multimapped = 0;
600 page->parent_pte = NULL;
601 }
602 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800603 return;
604 }
605 BUG();
606}
607
608static struct kvm_mmu_page *kvm_mmu_lookup_page(struct kvm_vcpu *vcpu,
609 gfn_t gfn)
610{
611 unsigned index;
612 struct hlist_head *bucket;
613 struct kvm_mmu_page *page;
614 struct hlist_node *node;
615
616 pgprintk("%s: looking for gfn %lx\n", __FUNCTION__, gfn);
617 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
618 bucket = &vcpu->kvm->mmu_page_hash[index];
619 hlist_for_each_entry(page, node, bucket, hash_link)
620 if (page->gfn == gfn && !page->role.metaphysical) {
621 pgprintk("%s: found role %x\n",
622 __FUNCTION__, page->role.word);
623 return page;
624 }
625 return NULL;
626}
627
628static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
629 gfn_t gfn,
630 gva_t gaddr,
631 unsigned level,
632 int metaphysical,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200633 unsigned hugepage_access,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800634 u64 *parent_pte)
635{
636 union kvm_mmu_page_role role;
637 unsigned index;
638 unsigned quadrant;
639 struct hlist_head *bucket;
640 struct kvm_mmu_page *page;
641 struct hlist_node *node;
642
643 role.word = 0;
644 role.glevels = vcpu->mmu.root_level;
645 role.level = level;
646 role.metaphysical = metaphysical;
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200647 role.hugepage_access = hugepage_access;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800648 if (vcpu->mmu.root_level <= PT32_ROOT_LEVEL) {
649 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
650 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
651 role.quadrant = quadrant;
652 }
653 pgprintk("%s: looking gfn %lx role %x\n", __FUNCTION__,
654 gfn, role.word);
655 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
656 bucket = &vcpu->kvm->mmu_page_hash[index];
657 hlist_for_each_entry(page, node, bucket, hash_link)
658 if (page->gfn == gfn && page->role.word == role.word) {
Avi Kivity714b93d2007-01-05 16:36:53 -0800659 mmu_page_add_parent_pte(vcpu, page, parent_pte);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800660 pgprintk("%s: found\n", __FUNCTION__);
661 return page;
662 }
663 page = kvm_mmu_alloc_page(vcpu, parent_pte);
664 if (!page)
665 return page;
666 pgprintk("%s: adding gfn %lx role %x\n", __FUNCTION__, gfn, role.word);
667 page->gfn = gfn;
668 page->role = role;
669 hlist_add_head(&page->hash_link, bucket);
Avi Kivityc7addb92007-09-16 18:58:32 +0200670 vcpu->mmu.prefetch_page(vcpu, page);
Avi Kivity374cbac2007-01-05 16:36:43 -0800671 if (!metaphysical)
Avi Kivity714b93d2007-01-05 16:36:53 -0800672 rmap_write_protect(vcpu, gfn);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800673 return page;
674}
675
Avi Kivity90cb0522007-07-17 13:04:56 +0300676static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivitya4360362007-01-05 16:36:45 -0800677 struct kvm_mmu_page *page)
678{
Avi Kivity697fe2e2007-01-05 16:36:46 -0800679 unsigned i;
680 u64 *pt;
681 u64 ent;
682
Avi Kivity47ad8e62007-05-06 15:50:58 +0300683 pt = page->spt;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800684
685 if (page->role.level == PT_PAGE_TABLE_LEVEL) {
686 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200687 if (is_shadow_present_pte(pt[i]))
Izik Eidus290fc382007-09-27 14:11:22 +0200688 rmap_remove(kvm, &pt[i]);
Avi Kivityc7addb92007-09-16 18:58:32 +0200689 pt[i] = shadow_trap_nonpresent_pte;
Avi Kivity697fe2e2007-01-05 16:36:46 -0800690 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300691 kvm_flush_remote_tlbs(kvm);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800692 return;
693 }
694
695 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
696 ent = pt[i];
697
Avi Kivityc7addb92007-09-16 18:58:32 +0200698 pt[i] = shadow_trap_nonpresent_pte;
699 if (!is_shadow_present_pte(ent))
Avi Kivity697fe2e2007-01-05 16:36:46 -0800700 continue;
701 ent &= PT64_BASE_ADDR_MASK;
Avi Kivity90cb0522007-07-17 13:04:56 +0300702 mmu_page_remove_parent_pte(page_header(ent), &pt[i]);
Avi Kivity697fe2e2007-01-05 16:36:46 -0800703 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300704 kvm_flush_remote_tlbs(kvm);
Avi Kivitya4360362007-01-05 16:36:45 -0800705}
706
Avi Kivity90cb0522007-07-17 13:04:56 +0300707static void kvm_mmu_put_page(struct kvm_mmu_page *page,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800708 u64 *parent_pte)
709{
Avi Kivity90cb0522007-07-17 13:04:56 +0300710 mmu_page_remove_parent_pte(page, parent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -0800711}
712
Avi Kivity12b7d282007-09-23 14:10:49 +0200713static void kvm_mmu_reset_last_pte_updated(struct kvm *kvm)
714{
715 int i;
716
717 for (i = 0; i < KVM_MAX_VCPUS; ++i)
718 if (kvm->vcpus[i])
719 kvm->vcpus[i]->last_pte_updated = NULL;
720}
721
Avi Kivity90cb0522007-07-17 13:04:56 +0300722static void kvm_mmu_zap_page(struct kvm *kvm,
Avi Kivitya4360362007-01-05 16:36:45 -0800723 struct kvm_mmu_page *page)
724{
725 u64 *parent_pte;
726
727 while (page->multimapped || page->parent_pte) {
728 if (!page->multimapped)
729 parent_pte = page->parent_pte;
730 else {
731 struct kvm_pte_chain *chain;
732
733 chain = container_of(page->parent_ptes.first,
734 struct kvm_pte_chain, link);
735 parent_pte = chain->parent_ptes[0];
736 }
Avi Kivity697fe2e2007-01-05 16:36:46 -0800737 BUG_ON(!parent_pte);
Avi Kivity90cb0522007-07-17 13:04:56 +0300738 kvm_mmu_put_page(page, parent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200739 set_shadow_pte(parent_pte, shadow_trap_nonpresent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -0800740 }
Avi Kivity90cb0522007-07-17 13:04:56 +0300741 kvm_mmu_page_unlink_children(kvm, page);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800742 if (!page->root_count) {
743 hlist_del(&page->hash_link);
Avi Kivity90cb0522007-07-17 13:04:56 +0300744 kvm_mmu_free_page(kvm, page);
Avi Kivity36868f72007-03-26 19:31:52 +0200745 } else
Avi Kivity90cb0522007-07-17 13:04:56 +0300746 list_move(&page->link, &kvm->active_mmu_pages);
Avi Kivity12b7d282007-09-23 14:10:49 +0200747 kvm_mmu_reset_last_pte_updated(kvm);
Avi Kivitya4360362007-01-05 16:36:45 -0800748}
749
Izik Eidus82ce2c92007-10-02 18:52:55 +0200750/*
751 * Changing the number of mmu pages allocated to the vm
752 * Note: if kvm_nr_mmu_pages is too small, you will get dead lock
753 */
754void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
755{
756 /*
757 * If we set the number of mmu pages to be smaller be than the
758 * number of actived pages , we must to free some mmu pages before we
759 * change the value
760 */
761
762 if ((kvm->n_alloc_mmu_pages - kvm->n_free_mmu_pages) >
763 kvm_nr_mmu_pages) {
764 int n_used_mmu_pages = kvm->n_alloc_mmu_pages
765 - kvm->n_free_mmu_pages;
766
767 while (n_used_mmu_pages > kvm_nr_mmu_pages) {
768 struct kvm_mmu_page *page;
769
770 page = container_of(kvm->active_mmu_pages.prev,
771 struct kvm_mmu_page, link);
772 kvm_mmu_zap_page(kvm, page);
773 n_used_mmu_pages--;
774 }
775 kvm->n_free_mmu_pages = 0;
776 }
777 else
778 kvm->n_free_mmu_pages += kvm_nr_mmu_pages
779 - kvm->n_alloc_mmu_pages;
780
781 kvm->n_alloc_mmu_pages = kvm_nr_mmu_pages;
782}
783
Avi Kivitya4360362007-01-05 16:36:45 -0800784static int kvm_mmu_unprotect_page(struct kvm_vcpu *vcpu, gfn_t gfn)
785{
786 unsigned index;
787 struct hlist_head *bucket;
788 struct kvm_mmu_page *page;
789 struct hlist_node *node, *n;
790 int r;
791
792 pgprintk("%s: looking for gfn %lx\n", __FUNCTION__, gfn);
793 r = 0;
794 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
795 bucket = &vcpu->kvm->mmu_page_hash[index];
796 hlist_for_each_entry_safe(page, node, n, bucket, hash_link)
797 if (page->gfn == gfn && !page->role.metaphysical) {
Avi Kivity697fe2e2007-01-05 16:36:46 -0800798 pgprintk("%s: gfn %lx role %x\n", __FUNCTION__, gfn,
799 page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300800 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivitya4360362007-01-05 16:36:45 -0800801 r = 1;
802 }
803 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800804}
805
Avi Kivity97a0a012007-05-31 15:08:29 +0300806static void mmu_unshadow(struct kvm_vcpu *vcpu, gfn_t gfn)
807{
808 struct kvm_mmu_page *page;
809
810 while ((page = kvm_mmu_lookup_page(vcpu, gfn)) != NULL) {
811 pgprintk("%s: zap %lx %x\n",
812 __FUNCTION__, gfn, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +0300813 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity97a0a012007-05-31 15:08:29 +0300814 }
815}
816
Avi Kivity6aa8b732006-12-10 02:21:36 -0800817static void page_header_update_slot(struct kvm *kvm, void *pte, gpa_t gpa)
818{
819 int slot = memslot_id(kvm, gfn_to_memslot(kvm, gpa >> PAGE_SHIFT));
820 struct kvm_mmu_page *page_head = page_header(__pa(pte));
821
822 __set_bit(slot, &page_head->slot_bitmap);
823}
824
825hpa_t safe_gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
826{
827 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
828
829 return is_error_hpa(hpa) ? bad_page_address | (gpa & ~PAGE_MASK): hpa;
830}
831
832hpa_t gpa_to_hpa(struct kvm_vcpu *vcpu, gpa_t gpa)
833{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800834 struct page *page;
835
836 ASSERT((gpa & HPA_ERR_MASK) == 0);
Avi Kivity954bbbc2007-03-30 14:02:32 +0300837 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
838 if (!page)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839 return gpa | HPA_ERR_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840 return ((hpa_t)page_to_pfn(page) << PAGE_SHIFT)
841 | (gpa & (PAGE_SIZE-1));
842}
843
844hpa_t gva_to_hpa(struct kvm_vcpu *vcpu, gva_t gva)
845{
846 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
847
848 if (gpa == UNMAPPED_GVA)
849 return UNMAPPED_GVA;
850 return gpa_to_hpa(vcpu, gpa);
851}
852
Avi Kivity039576c2007-03-20 12:46:50 +0200853struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva)
854{
855 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
856
857 if (gpa == UNMAPPED_GVA)
858 return NULL;
859 return pfn_to_page(gpa_to_hpa(vcpu, gpa) >> PAGE_SHIFT);
860}
861
Avi Kivity6aa8b732006-12-10 02:21:36 -0800862static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
863{
864}
865
866static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, hpa_t p)
867{
868 int level = PT32E_ROOT_LEVEL;
869 hpa_t table_addr = vcpu->mmu.root_hpa;
870
871 for (; ; level--) {
872 u32 index = PT64_INDEX(v, level);
873 u64 *table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800874 u64 pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875
876 ASSERT(VALID_PAGE(table_addr));
877 table = __va(table_addr);
878
879 if (level == 1) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800880 pte = table[index];
Avi Kivityc7addb92007-09-16 18:58:32 +0200881 if (is_shadow_present_pte(pte) && is_writeble_pte(pte))
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800882 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800883 mark_page_dirty(vcpu->kvm, v >> PAGE_SHIFT);
884 page_header_update_slot(vcpu->kvm, table, v);
885 table[index] = p | PT_PRESENT_MASK | PT_WRITABLE_MASK |
886 PT_USER_MASK;
Izik Eidus290fc382007-09-27 14:11:22 +0200887 rmap_add(vcpu, &table[index], v >> PAGE_SHIFT);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888 return 0;
889 }
890
Avi Kivityc7addb92007-09-16 18:58:32 +0200891 if (table[index] == shadow_trap_nonpresent_pte) {
Avi Kivity25c0de22007-01-05 16:36:42 -0800892 struct kvm_mmu_page *new_table;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800893 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800895 pseudo_gfn = (v & PT64_DIR_BASE_ADDR_MASK)
896 >> PAGE_SHIFT;
897 new_table = kvm_mmu_get_page(vcpu, pseudo_gfn,
898 v, level - 1,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200899 1, 0, &table[index]);
Avi Kivity25c0de22007-01-05 16:36:42 -0800900 if (!new_table) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800901 pgprintk("nonpaging_map: ENOMEM\n");
902 return -ENOMEM;
903 }
904
Avi Kivity47ad8e62007-05-06 15:50:58 +0300905 table[index] = __pa(new_table->spt) | PT_PRESENT_MASK
Avi Kivity25c0de22007-01-05 16:36:42 -0800906 | PT_WRITABLE_MASK | PT_USER_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 }
908 table_addr = table[index] & PT64_BASE_ADDR_MASK;
909 }
910}
911
Avi Kivityc7addb92007-09-16 18:58:32 +0200912static void nonpaging_prefetch_page(struct kvm_vcpu *vcpu,
913 struct kvm_mmu_page *sp)
914{
915 int i;
916
917 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
918 sp->spt[i] = shadow_trap_nonpresent_pte;
919}
920
Avi Kivity17ac10a2007-01-05 16:36:40 -0800921static void mmu_free_roots(struct kvm_vcpu *vcpu)
922{
923 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800924 struct kvm_mmu_page *page;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800925
Avi Kivity7b53aa52007-06-05 12:17:03 +0300926 if (!VALID_PAGE(vcpu->mmu.root_hpa))
927 return;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800928#ifdef CONFIG_X86_64
929 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
930 hpa_t root = vcpu->mmu.root_hpa;
931
Avi Kivity3bb65a22007-01-05 16:36:51 -0800932 page = page_header(root);
933 --page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800934 vcpu->mmu.root_hpa = INVALID_PAGE;
935 return;
936 }
937#endif
938 for (i = 0; i < 4; ++i) {
939 hpa_t root = vcpu->mmu.pae_root[i];
940
Avi Kivity417726a2007-04-12 17:35:58 +0300941 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +0300942 root &= PT64_BASE_ADDR_MASK;
943 page = page_header(root);
944 --page->root_count;
945 }
Avi Kivity17ac10a2007-01-05 16:36:40 -0800946 vcpu->mmu.pae_root[i] = INVALID_PAGE;
947 }
948 vcpu->mmu.root_hpa = INVALID_PAGE;
949}
950
951static void mmu_alloc_roots(struct kvm_vcpu *vcpu)
952{
953 int i;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800954 gfn_t root_gfn;
Avi Kivity3bb65a22007-01-05 16:36:51 -0800955 struct kvm_mmu_page *page;
956
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800957 root_gfn = vcpu->cr3 >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800958
959#ifdef CONFIG_X86_64
960 if (vcpu->mmu.shadow_root_level == PT64_ROOT_LEVEL) {
961 hpa_t root = vcpu->mmu.root_hpa;
962
963 ASSERT(!VALID_PAGE(root));
Ingo Molnar68a99f6d2007-01-05 16:36:59 -0800964 page = kvm_mmu_get_page(vcpu, root_gfn, 0,
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200965 PT64_ROOT_LEVEL, 0, 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300966 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800967 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800968 vcpu->mmu.root_hpa = root;
969 return;
970 }
971#endif
972 for (i = 0; i < 4; ++i) {
973 hpa_t root = vcpu->mmu.pae_root[i];
974
975 ASSERT(!VALID_PAGE(root));
Avi Kivity417726a2007-04-12 17:35:58 +0300976 if (vcpu->mmu.root_level == PT32E_ROOT_LEVEL) {
977 if (!is_present_pte(vcpu->pdptrs[i])) {
978 vcpu->mmu.pae_root[i] = 0;
979 continue;
980 }
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800981 root_gfn = vcpu->pdptrs[i] >> PAGE_SHIFT;
Avi Kivity417726a2007-04-12 17:35:58 +0300982 } else if (vcpu->mmu.root_level == 0)
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800983 root_gfn = 0;
Ingo Molnar68a99f6d2007-01-05 16:36:59 -0800984 page = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800985 PT32_ROOT_LEVEL, !is_paging(vcpu),
Avi Kivityd28c6cfb2007-03-23 09:55:25 +0200986 0, NULL);
Avi Kivity47ad8e62007-05-06 15:50:58 +0300987 root = __pa(page->spt);
Avi Kivity3bb65a22007-01-05 16:36:51 -0800988 ++page->root_count;
Avi Kivity17ac10a2007-01-05 16:36:40 -0800989 vcpu->mmu.pae_root[i] = root | PT_PRESENT_MASK;
990 }
991 vcpu->mmu.root_hpa = __pa(vcpu->mmu.pae_root);
992}
993
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr)
995{
996 return vaddr;
997}
998
999static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
1000 u32 error_code)
1001{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 gpa_t addr = gva;
Avi Kivityebeace82007-01-05 16:36:47 -08001003 hpa_t paddr;
Avi Kivitye2dec932007-01-05 16:36:54 -08001004 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005
Avi Kivitye2dec932007-01-05 16:36:54 -08001006 r = mmu_topup_memory_caches(vcpu);
1007 if (r)
1008 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08001009
Avi Kivity6aa8b732006-12-10 02:21:36 -08001010 ASSERT(vcpu);
1011 ASSERT(VALID_PAGE(vcpu->mmu.root_hpa));
1012
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013
Avi Kivityebeace82007-01-05 16:36:47 -08001014 paddr = gpa_to_hpa(vcpu , addr & PT64_BASE_ADDR_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015
Avi Kivityebeace82007-01-05 16:36:47 -08001016 if (is_error_hpa(paddr))
1017 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018
Avi Kivityebeace82007-01-05 16:36:47 -08001019 return nonpaging_map(vcpu, addr & PAGE_MASK, paddr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020}
1021
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022static void nonpaging_free(struct kvm_vcpu *vcpu)
1023{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001024 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025}
1026
1027static int nonpaging_init_context(struct kvm_vcpu *vcpu)
1028{
1029 struct kvm_mmu *context = &vcpu->mmu;
1030
1031 context->new_cr3 = nonpaging_new_cr3;
1032 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001033 context->gva_to_gpa = nonpaging_gva_to_gpa;
1034 context->free = nonpaging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02001035 context->prefetch_page = nonpaging_prefetch_page;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001036 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001038 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 return 0;
1040}
1041
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042static void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
1043{
Avi Kivity1165f5f2007-04-19 17:27:43 +03001044 ++vcpu->stat.tlb_flush;
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001045 kvm_x86_ops->tlb_flush(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046}
1047
1048static void paging_new_cr3(struct kvm_vcpu *vcpu)
1049{
Avi Kivity374cbac2007-01-05 16:36:43 -08001050 pgprintk("%s: cr3 %lx\n", __FUNCTION__, vcpu->cr3);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001051 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001052}
1053
Avi Kivity6aa8b732006-12-10 02:21:36 -08001054static void inject_page_fault(struct kvm_vcpu *vcpu,
1055 u64 addr,
1056 u32 err_code)
1057{
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001058 kvm_x86_ops->inject_page_fault(vcpu, addr, err_code);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001059}
1060
Avi Kivity6aa8b732006-12-10 02:21:36 -08001061static void paging_free(struct kvm_vcpu *vcpu)
1062{
1063 nonpaging_free(vcpu);
1064}
1065
1066#define PTTYPE 64
1067#include "paging_tmpl.h"
1068#undef PTTYPE
1069
1070#define PTTYPE 32
1071#include "paging_tmpl.h"
1072#undef PTTYPE
1073
Avi Kivity17ac10a2007-01-05 16:36:40 -08001074static int paging64_init_context_common(struct kvm_vcpu *vcpu, int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001075{
1076 struct kvm_mmu *context = &vcpu->mmu;
1077
1078 ASSERT(is_pae(vcpu));
1079 context->new_cr3 = paging_new_cr3;
1080 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081 context->gva_to_gpa = paging64_gva_to_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +02001082 context->prefetch_page = paging64_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083 context->free = paging_free;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001084 context->root_level = level;
1085 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001086 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001087 return 0;
1088}
1089
Avi Kivity17ac10a2007-01-05 16:36:40 -08001090static int paging64_init_context(struct kvm_vcpu *vcpu)
1091{
1092 return paging64_init_context_common(vcpu, PT64_ROOT_LEVEL);
1093}
1094
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095static int paging32_init_context(struct kvm_vcpu *vcpu)
1096{
1097 struct kvm_mmu *context = &vcpu->mmu;
1098
1099 context->new_cr3 = paging_new_cr3;
1100 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001101 context->gva_to_gpa = paging32_gva_to_gpa;
1102 context->free = paging_free;
Avi Kivityc7addb92007-09-16 18:58:32 +02001103 context->prefetch_page = paging32_prefetch_page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001104 context->root_level = PT32_ROOT_LEVEL;
1105 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03001106 context->root_hpa = INVALID_PAGE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 return 0;
1108}
1109
1110static int paging32E_init_context(struct kvm_vcpu *vcpu)
1111{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001112 return paging64_init_context_common(vcpu, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113}
1114
1115static int init_kvm_mmu(struct kvm_vcpu *vcpu)
1116{
1117 ASSERT(vcpu);
1118 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
1119
1120 if (!is_paging(vcpu))
1121 return nonpaging_init_context(vcpu);
Avi Kivitya9058ec2006-12-29 16:49:37 -08001122 else if (is_long_mode(vcpu))
Avi Kivity6aa8b732006-12-10 02:21:36 -08001123 return paging64_init_context(vcpu);
1124 else if (is_pae(vcpu))
1125 return paging32E_init_context(vcpu);
1126 else
1127 return paging32_init_context(vcpu);
1128}
1129
1130static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
1131{
1132 ASSERT(vcpu);
1133 if (VALID_PAGE(vcpu->mmu.root_hpa)) {
1134 vcpu->mmu.free(vcpu);
1135 vcpu->mmu.root_hpa = INVALID_PAGE;
1136 }
1137}
1138
1139int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
1140{
Avi Kivity17c3ba92007-06-04 15:58:30 +03001141 destroy_kvm_mmu(vcpu);
1142 return init_kvm_mmu(vcpu);
1143}
Eddie Dong8668a3c2007-10-10 14:26:45 +08001144EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001145
1146int kvm_mmu_load(struct kvm_vcpu *vcpu)
1147{
Avi Kivity714b93d2007-01-05 16:36:53 -08001148 int r;
1149
Shaohua Li11ec2802007-07-23 14:51:37 +08001150 mutex_lock(&vcpu->kvm->lock);
Avi Kivitye2dec932007-01-05 16:36:54 -08001151 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001152 if (r)
1153 goto out;
1154 mmu_alloc_roots(vcpu);
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03001155 kvm_x86_ops->set_cr3(vcpu, vcpu->mmu.root_hpa);
Avi Kivity17c3ba92007-06-04 15:58:30 +03001156 kvm_mmu_flush_tlb(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001157out:
Shaohua Li11ec2802007-07-23 14:51:37 +08001158 mutex_unlock(&vcpu->kvm->lock);
Avi Kivity714b93d2007-01-05 16:36:53 -08001159 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001160}
Avi Kivity17c3ba92007-06-04 15:58:30 +03001161EXPORT_SYMBOL_GPL(kvm_mmu_load);
1162
1163void kvm_mmu_unload(struct kvm_vcpu *vcpu)
1164{
1165 mmu_free_roots(vcpu);
1166}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001167
Avi Kivity09072da2007-05-01 14:16:52 +03001168static void mmu_pte_write_zap_pte(struct kvm_vcpu *vcpu,
Avi Kivityac1b7142007-03-08 17:13:32 +02001169 struct kvm_mmu_page *page,
1170 u64 *spte)
1171{
1172 u64 pte;
1173 struct kvm_mmu_page *child;
1174
1175 pte = *spte;
Avi Kivityc7addb92007-09-16 18:58:32 +02001176 if (is_shadow_present_pte(pte)) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001177 if (page->role.level == PT_PAGE_TABLE_LEVEL)
Izik Eidus290fc382007-09-27 14:11:22 +02001178 rmap_remove(vcpu->kvm, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001179 else {
1180 child = page_header(pte & PT64_BASE_ADDR_MASK);
Avi Kivity90cb0522007-07-17 13:04:56 +03001181 mmu_page_remove_parent_pte(child, spte);
Avi Kivityac1b7142007-03-08 17:13:32 +02001182 }
1183 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001184 set_shadow_pte(spte, shadow_trap_nonpresent_pte);
Avi Kivityd9e368d2007-06-07 19:18:30 +03001185 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityac1b7142007-03-08 17:13:32 +02001186}
1187
Avi Kivity00284252007-05-01 16:53:31 +03001188static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
1189 struct kvm_mmu_page *page,
1190 u64 *spte,
Avi Kivityc7addb92007-09-16 18:58:32 +02001191 const void *new, int bytes,
1192 int offset_in_pte)
Avi Kivity00284252007-05-01 16:53:31 +03001193{
1194 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1195 return;
1196
1197 if (page->role.glevels == PT32_ROOT_LEVEL)
Avi Kivityc7addb92007-09-16 18:58:32 +02001198 paging32_update_pte(vcpu, page, spte, new, bytes,
1199 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001200 else
Avi Kivityc7addb92007-09-16 18:58:32 +02001201 paging64_update_pte(vcpu, page, spte, new, bytes,
1202 offset_in_pte);
Avi Kivity00284252007-05-01 16:53:31 +03001203}
1204
Avi Kivity12b7d282007-09-23 14:10:49 +02001205static bool last_updated_pte_accessed(struct kvm_vcpu *vcpu)
1206{
1207 u64 *spte = vcpu->last_pte_updated;
1208
1209 return !!(spte && (*spte & PT_ACCESSED_MASK));
1210}
1211
Avi Kivity09072da2007-05-01 14:16:52 +03001212void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Shaohua Life5518812007-07-23 14:51:39 +08001213 const u8 *new, int bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08001214{
Avi Kivity9b7a0322007-01-05 16:36:45 -08001215 gfn_t gfn = gpa >> PAGE_SHIFT;
1216 struct kvm_mmu_page *page;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001217 struct hlist_node *node, *n;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001218 struct hlist_head *bucket;
1219 unsigned index;
1220 u64 *spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001221 unsigned offset = offset_in_page(gpa);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001222 unsigned pte_size;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001223 unsigned page_offset;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001224 unsigned misaligned;
Avi Kivityfce06572007-05-01 16:44:05 +03001225 unsigned quadrant;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001226 int level;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001227 int flooded = 0;
Avi Kivityac1b7142007-03-08 17:13:32 +02001228 int npte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001229
Avi Kivityda4a00f2007-01-05 16:36:44 -08001230 pgprintk("%s: gpa %llx bytes %d\n", __FUNCTION__, gpa, bytes);
Avi Kivityc7addb92007-09-16 18:58:32 +02001231 kvm_mmu_audit(vcpu, "pre pte write");
Avi Kivity12b7d282007-09-23 14:10:49 +02001232 if (gfn == vcpu->last_pt_write_gfn
1233 && !last_updated_pte_accessed(vcpu)) {
Avi Kivity86a5ba02007-01-05 16:36:50 -08001234 ++vcpu->last_pt_write_count;
1235 if (vcpu->last_pt_write_count >= 3)
1236 flooded = 1;
1237 } else {
1238 vcpu->last_pt_write_gfn = gfn;
1239 vcpu->last_pt_write_count = 1;
Avi Kivity12b7d282007-09-23 14:10:49 +02001240 vcpu->last_pte_updated = NULL;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001241 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001242 index = kvm_page_table_hashfn(gfn) % KVM_NUM_MMU_PAGES;
1243 bucket = &vcpu->kvm->mmu_page_hash[index];
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001244 hlist_for_each_entry_safe(page, node, n, bucket, hash_link) {
Avi Kivity9b7a0322007-01-05 16:36:45 -08001245 if (page->gfn != gfn || page->role.metaphysical)
1246 continue;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001247 pte_size = page->role.glevels == PT32_ROOT_LEVEL ? 4 : 8;
1248 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
Avi Kivitye925c5b2007-04-30 14:47:02 +03001249 misaligned |= bytes < 4;
Avi Kivity86a5ba02007-01-05 16:36:50 -08001250 if (misaligned || flooded) {
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001251 /*
1252 * Misaligned accesses are too much trouble to fix
1253 * up; also, they usually indicate a page is not used
1254 * as a page table.
Avi Kivity86a5ba02007-01-05 16:36:50 -08001255 *
1256 * If we're seeing too many writes to a page,
1257 * it may no longer be a page table, or we may be
1258 * forking, in which case it is better to unmap the
1259 * page.
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001260 */
1261 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
1262 gpa, bytes, page->role.word);
Avi Kivity90cb0522007-07-17 13:04:56 +03001263 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08001264 continue;
1265 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001266 page_offset = offset;
1267 level = page->role.level;
Avi Kivityac1b7142007-03-08 17:13:32 +02001268 npte = 1;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001269 if (page->role.glevels == PT32_ROOT_LEVEL) {
Avi Kivityac1b7142007-03-08 17:13:32 +02001270 page_offset <<= 1; /* 32->64 */
1271 /*
1272 * A 32-bit pde maps 4MB while the shadow pdes map
1273 * only 2MB. So we need to double the offset again
1274 * and zap two pdes instead of one.
1275 */
1276 if (level == PT32_ROOT_LEVEL) {
Avi Kivity6b8d0f92007-04-18 11:18:18 +03001277 page_offset &= ~7; /* kill rounding error */
Avi Kivityac1b7142007-03-08 17:13:32 +02001278 page_offset <<= 1;
1279 npte = 2;
1280 }
Avi Kivityfce06572007-05-01 16:44:05 +03001281 quadrant = page_offset >> PAGE_SHIFT;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001282 page_offset &= ~PAGE_MASK;
Avi Kivityfce06572007-05-01 16:44:05 +03001283 if (quadrant != page->role.quadrant)
1284 continue;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001285 }
Avi Kivity47ad8e62007-05-06 15:50:58 +03001286 spte = &page->spt[page_offset / sizeof(*spte)];
Avi Kivityac1b7142007-03-08 17:13:32 +02001287 while (npte--) {
Avi Kivity09072da2007-05-01 14:16:52 +03001288 mmu_pte_write_zap_pte(vcpu, page, spte);
Avi Kivityc7addb92007-09-16 18:58:32 +02001289 mmu_pte_write_new_pte(vcpu, page, spte, new, bytes,
1290 page_offset & (pte_size - 1));
Avi Kivityac1b7142007-03-08 17:13:32 +02001291 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08001292 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08001293 }
Avi Kivityc7addb92007-09-16 18:58:32 +02001294 kvm_mmu_audit(vcpu, "post pte write");
Avi Kivityda4a00f2007-01-05 16:36:44 -08001295}
1296
Avi Kivitya4360362007-01-05 16:36:45 -08001297int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
1298{
1299 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, gva);
1300
1301 return kvm_mmu_unprotect_page(vcpu, gpa >> PAGE_SHIFT);
1302}
1303
Avi Kivity22d95b12007-09-14 20:26:06 +03001304void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08001305{
1306 while (vcpu->kvm->n_free_mmu_pages < KVM_REFILL_PAGES) {
1307 struct kvm_mmu_page *page;
1308
1309 page = container_of(vcpu->kvm->active_mmu_pages.prev,
1310 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001311 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityebeace82007-01-05 16:36:47 -08001312 }
1313}
Avi Kivityebeace82007-01-05 16:36:47 -08001314
Avi Kivity6aa8b732006-12-10 02:21:36 -08001315static void free_mmu_pages(struct kvm_vcpu *vcpu)
1316{
Avi Kivityf51234c2007-01-05 16:36:52 -08001317 struct kvm_mmu_page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001318
Avi Kivityf51234c2007-01-05 16:36:52 -08001319 while (!list_empty(&vcpu->kvm->active_mmu_pages)) {
1320 page = container_of(vcpu->kvm->active_mmu_pages.next,
1321 struct kvm_mmu_page, link);
Avi Kivity90cb0522007-07-17 13:04:56 +03001322 kvm_mmu_zap_page(vcpu->kvm, page);
Avi Kivityf51234c2007-01-05 16:36:52 -08001323 }
Avi Kivity17ac10a2007-01-05 16:36:40 -08001324 free_page((unsigned long)vcpu->mmu.pae_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001325}
1326
1327static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
1328{
Avi Kivity17ac10a2007-01-05 16:36:40 -08001329 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001330 int i;
1331
1332 ASSERT(vcpu);
1333
Izik Eidus82ce2c92007-10-02 18:52:55 +02001334 if (vcpu->kvm->n_requested_mmu_pages)
1335 vcpu->kvm->n_free_mmu_pages = vcpu->kvm->n_requested_mmu_pages;
1336 else
1337 vcpu->kvm->n_free_mmu_pages = vcpu->kvm->n_alloc_mmu_pages;
Avi Kivity17ac10a2007-01-05 16:36:40 -08001338 /*
1339 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
1340 * Therefore we need to allocate shadow page tables in the first
1341 * 4GB of memory, which happens to fit the DMA32 zone.
1342 */
1343 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
1344 if (!page)
1345 goto error_1;
1346 vcpu->mmu.pae_root = page_address(page);
1347 for (i = 0; i < 4; ++i)
1348 vcpu->mmu.pae_root[i] = INVALID_PAGE;
1349
Avi Kivity6aa8b732006-12-10 02:21:36 -08001350 return 0;
1351
1352error_1:
1353 free_mmu_pages(vcpu);
1354 return -ENOMEM;
1355}
1356
Ingo Molnar8018c272006-12-29 16:50:01 -08001357int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001358{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001359 ASSERT(vcpu);
1360 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361
Ingo Molnar8018c272006-12-29 16:50:01 -08001362 return alloc_mmu_pages(vcpu);
1363}
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364
Ingo Molnar8018c272006-12-29 16:50:01 -08001365int kvm_mmu_setup(struct kvm_vcpu *vcpu)
1366{
1367 ASSERT(vcpu);
1368 ASSERT(!VALID_PAGE(vcpu->mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08001369
Ingo Molnar8018c272006-12-29 16:50:01 -08001370 return init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371}
1372
1373void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
1374{
1375 ASSERT(vcpu);
1376
1377 destroy_kvm_mmu(vcpu);
1378 free_mmu_pages(vcpu);
Avi Kivity714b93d2007-01-05 16:36:53 -08001379 mmu_free_memory_caches(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001380}
1381
Avi Kivity90cb0522007-07-17 13:04:56 +03001382void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001383{
1384 struct kvm_mmu_page *page;
1385
1386 list_for_each_entry(page, &kvm->active_mmu_pages, link) {
1387 int i;
1388 u64 *pt;
1389
1390 if (!test_bit(slot, &page->slot_bitmap))
1391 continue;
1392
Avi Kivity47ad8e62007-05-06 15:50:58 +03001393 pt = page->spt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1395 /* avoid RMW */
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001396 if (pt[i] & PT_WRITABLE_MASK) {
Izik Eidus290fc382007-09-27 14:11:22 +02001397 rmap_remove(kvm, &pt[i]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398 pt[i] &= ~PT_WRITABLE_MASK;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001399 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001400 }
1401}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001402
Avi Kivity90cb0522007-07-17 13:04:56 +03001403void kvm_mmu_zap_all(struct kvm *kvm)
Dor Laore0fa8262007-03-30 13:06:33 +03001404{
Avi Kivity90cb0522007-07-17 13:04:56 +03001405 struct kvm_mmu_page *page, *node;
Dor Laore0fa8262007-03-30 13:06:33 +03001406
Avi Kivity90cb0522007-07-17 13:04:56 +03001407 list_for_each_entry_safe(page, node, &kvm->active_mmu_pages, link)
1408 kvm_mmu_zap_page(kvm, page);
Dor Laore0fa8262007-03-30 13:06:33 +03001409
Avi Kivity90cb0522007-07-17 13:04:56 +03001410 kvm_flush_remote_tlbs(kvm);
Dor Laore0fa8262007-03-30 13:06:33 +03001411}
1412
Avi Kivityb5a33a72007-04-15 16:31:09 +03001413void kvm_mmu_module_exit(void)
1414{
1415 if (pte_chain_cache)
1416 kmem_cache_destroy(pte_chain_cache);
1417 if (rmap_desc_cache)
1418 kmem_cache_destroy(rmap_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001419 if (mmu_page_header_cache)
1420 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001421}
1422
1423int kvm_mmu_module_init(void)
1424{
1425 pte_chain_cache = kmem_cache_create("kvm_pte_chain",
1426 sizeof(struct kvm_pte_chain),
Paul Mundt20c2df82007-07-20 10:11:58 +09001427 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001428 if (!pte_chain_cache)
1429 goto nomem;
1430 rmap_desc_cache = kmem_cache_create("kvm_rmap_desc",
1431 sizeof(struct kvm_rmap_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09001432 0, 0, NULL);
Avi Kivityb5a33a72007-04-15 16:31:09 +03001433 if (!rmap_desc_cache)
1434 goto nomem;
1435
Avi Kivityd3d25b02007-05-30 12:34:53 +03001436 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
1437 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09001438 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03001439 if (!mmu_page_header_cache)
1440 goto nomem;
1441
Avi Kivityb5a33a72007-04-15 16:31:09 +03001442 return 0;
1443
1444nomem:
1445 kvm_mmu_module_exit();
1446 return -ENOMEM;
1447}
1448
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001449#ifdef AUDIT
1450
1451static const char *audit_msg;
1452
1453static gva_t canonicalize(gva_t gva)
1454{
1455#ifdef CONFIG_X86_64
1456 gva = (long long)(gva << 16) >> 16;
1457#endif
1458 return gva;
1459}
1460
1461static void audit_mappings_page(struct kvm_vcpu *vcpu, u64 page_pte,
1462 gva_t va, int level)
1463{
1464 u64 *pt = __va(page_pte & PT64_BASE_ADDR_MASK);
1465 int i;
1466 gva_t va_delta = 1ul << (PAGE_SHIFT + 9 * (level - 1));
1467
1468 for (i = 0; i < PT64_ENT_PER_PAGE; ++i, va += va_delta) {
1469 u64 ent = pt[i];
1470
Avi Kivityc7addb92007-09-16 18:58:32 +02001471 if (ent == shadow_trap_nonpresent_pte)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001472 continue;
1473
1474 va = canonicalize(va);
Avi Kivityc7addb92007-09-16 18:58:32 +02001475 if (level > 1) {
1476 if (ent == shadow_notrap_nonpresent_pte)
1477 printk(KERN_ERR "audit: (%s) nontrapping pte"
1478 " in nonleaf level: levels %d gva %lx"
1479 " level %d pte %llx\n", audit_msg,
1480 vcpu->mmu.root_level, va, level, ent);
1481
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001482 audit_mappings_page(vcpu, ent, va, level - 1);
Avi Kivityc7addb92007-09-16 18:58:32 +02001483 } else {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001484 gpa_t gpa = vcpu->mmu.gva_to_gpa(vcpu, va);
1485 hpa_t hpa = gpa_to_hpa(vcpu, gpa);
1486
Avi Kivityc7addb92007-09-16 18:58:32 +02001487 if (is_shadow_present_pte(ent)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001488 && (ent & PT64_BASE_ADDR_MASK) != hpa)
Avi Kivityc7addb92007-09-16 18:58:32 +02001489 printk(KERN_ERR "xx audit error: (%s) levels %d"
1490 " gva %lx gpa %llx hpa %llx ent %llx %d\n",
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001491 audit_msg, vcpu->mmu.root_level,
Avi Kivityc7addb92007-09-16 18:58:32 +02001492 va, gpa, hpa, ent, is_shadow_present_pte(ent));
1493 else if (ent == shadow_notrap_nonpresent_pte
1494 && !is_error_hpa(hpa))
1495 printk(KERN_ERR "audit: (%s) notrap shadow,"
1496 " valid guest gva %lx\n", audit_msg, va);
1497
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001498 }
1499 }
1500}
1501
1502static void audit_mappings(struct kvm_vcpu *vcpu)
1503{
Avi Kivity1ea252a2007-03-08 11:48:09 +02001504 unsigned i;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001505
1506 if (vcpu->mmu.root_level == 4)
1507 audit_mappings_page(vcpu, vcpu->mmu.root_hpa, 0, 4);
1508 else
1509 for (i = 0; i < 4; ++i)
1510 if (vcpu->mmu.pae_root[i] & PT_PRESENT_MASK)
1511 audit_mappings_page(vcpu,
1512 vcpu->mmu.pae_root[i],
1513 i << 30,
1514 2);
1515}
1516
1517static int count_rmaps(struct kvm_vcpu *vcpu)
1518{
1519 int nmaps = 0;
1520 int i, j, k;
1521
1522 for (i = 0; i < KVM_MEMORY_SLOTS; ++i) {
1523 struct kvm_memory_slot *m = &vcpu->kvm->memslots[i];
1524 struct kvm_rmap_desc *d;
1525
1526 for (j = 0; j < m->npages; ++j) {
Izik Eidus290fc382007-09-27 14:11:22 +02001527 unsigned long *rmapp = &m->rmap[j];
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001528
Izik Eidus290fc382007-09-27 14:11:22 +02001529 if (!*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001530 continue;
Izik Eidus290fc382007-09-27 14:11:22 +02001531 if (!(*rmapp & 1)) {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001532 ++nmaps;
1533 continue;
1534 }
Izik Eidus290fc382007-09-27 14:11:22 +02001535 d = (struct kvm_rmap_desc *)(*rmapp & ~1ul);
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001536 while (d) {
1537 for (k = 0; k < RMAP_EXT; ++k)
1538 if (d->shadow_ptes[k])
1539 ++nmaps;
1540 else
1541 break;
1542 d = d->more;
1543 }
1544 }
1545 }
1546 return nmaps;
1547}
1548
1549static int count_writable_mappings(struct kvm_vcpu *vcpu)
1550{
1551 int nmaps = 0;
1552 struct kvm_mmu_page *page;
1553 int i;
1554
1555 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
Avi Kivity47ad8e62007-05-06 15:50:58 +03001556 u64 *pt = page->spt;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001557
1558 if (page->role.level != PT_PAGE_TABLE_LEVEL)
1559 continue;
1560
1561 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
1562 u64 ent = pt[i];
1563
1564 if (!(ent & PT_PRESENT_MASK))
1565 continue;
1566 if (!(ent & PT_WRITABLE_MASK))
1567 continue;
1568 ++nmaps;
1569 }
1570 }
1571 return nmaps;
1572}
1573
1574static void audit_rmap(struct kvm_vcpu *vcpu)
1575{
1576 int n_rmap = count_rmaps(vcpu);
1577 int n_actual = count_writable_mappings(vcpu);
1578
1579 if (n_rmap != n_actual)
1580 printk(KERN_ERR "%s: (%s) rmap %d actual %d\n",
1581 __FUNCTION__, audit_msg, n_rmap, n_actual);
1582}
1583
1584static void audit_write_protection(struct kvm_vcpu *vcpu)
1585{
1586 struct kvm_mmu_page *page;
Izik Eidus290fc382007-09-27 14:11:22 +02001587 struct kvm_memory_slot *slot;
1588 unsigned long *rmapp;
1589 gfn_t gfn;
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001590
1591 list_for_each_entry(page, &vcpu->kvm->active_mmu_pages, link) {
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001592 if (page->role.metaphysical)
1593 continue;
1594
Izik Eidus290fc382007-09-27 14:11:22 +02001595 slot = gfn_to_memslot(vcpu->kvm, page->gfn);
1596 gfn = unalias_gfn(vcpu->kvm, page->gfn);
1597 rmapp = &slot->rmap[gfn - slot->base_gfn];
1598 if (*rmapp)
Avi Kivity37a7d8b2007-01-05 16:36:56 -08001599 printk(KERN_ERR "%s: (%s) shadow page has writable"
1600 " mappings: gfn %lx role %x\n",
1601 __FUNCTION__, audit_msg, page->gfn,
1602 page->role.word);
1603 }
1604}
1605
1606static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg)
1607{
1608 int olddbg = dbg;
1609
1610 dbg = 0;
1611 audit_msg = msg;
1612 audit_rmap(vcpu);
1613 audit_write_protection(vcpu);
1614 audit_mappings(vcpu);
1615 dbg = olddbg;
1616}
1617
1618#endif