blob: 0f11792fafa6d6ca3899a6fd6c9093587f691644 [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 */
19
20/*
21 * We need the mmu code to access both 32-bit and 64-bit guest ptes,
22 * so the code in this file is compiled twice, once per pte size.
23 */
24
25#if PTTYPE == 64
26 #define pt_element_t u64
27 #define guest_walker guest_walker64
28 #define FNAME(name) paging##64_##name
29 #define PT_BASE_ADDR_MASK PT64_BASE_ADDR_MASK
30 #define PT_DIR_BASE_ADDR_MASK PT64_DIR_BASE_ADDR_MASK
31 #define PT_INDEX(addr, level) PT64_INDEX(addr, level)
Avi Kivity6aa8b732006-12-10 02:21:36 -080032 #define PT_LEVEL_MASK(level) PT64_LEVEL_MASK(level)
Avi Kivityc7addb92007-09-16 18:58:32 +020033 #define PT_LEVEL_BITS PT64_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -080034 #ifdef CONFIG_X86_64
35 #define PT_MAX_FULL_LEVELS 4
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050036 #define CMPXCHG cmpxchg
Avi Kivitycea0f0e2007-01-05 16:36:43 -080037 #else
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050038 #define CMPXCHG cmpxchg64
Avi Kivitycea0f0e2007-01-05 16:36:43 -080039 #define PT_MAX_FULL_LEVELS 2
40 #endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080041#elif PTTYPE == 32
42 #define pt_element_t u32
43 #define guest_walker guest_walker32
44 #define FNAME(name) paging##32_##name
45 #define PT_BASE_ADDR_MASK PT32_BASE_ADDR_MASK
46 #define PT_DIR_BASE_ADDR_MASK PT32_DIR_BASE_ADDR_MASK
47 #define PT_INDEX(addr, level) PT32_INDEX(addr, level)
Avi Kivity6aa8b732006-12-10 02:21:36 -080048 #define PT_LEVEL_MASK(level) PT32_LEVEL_MASK(level)
Avi Kivityc7addb92007-09-16 18:58:32 +020049 #define PT_LEVEL_BITS PT32_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -080050 #define PT_MAX_FULL_LEVELS 2
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050051 #define CMPXCHG cmpxchg
Avi Kivity6aa8b732006-12-10 02:21:36 -080052#else
53 #error Invalid PTTYPE value
54#endif
55
Avi Kivity5fb07dd2007-11-21 12:35:07 +020056#define gpte_to_gfn FNAME(gpte_to_gfn)
57#define gpte_to_gfn_pde FNAME(gpte_to_gfn_pde)
58
Avi Kivity6aa8b732006-12-10 02:21:36 -080059/*
60 * The guest_walker structure emulates the behavior of the hardware page
61 * table walker.
62 */
63struct guest_walker {
64 int level;
Avi Kivitycea0f0e2007-01-05 16:36:43 -080065 gfn_t table_gfn[PT_MAX_FULL_LEVELS];
Marcelo Tosatti78190262007-12-11 19:12:27 -050066 pt_element_t ptes[PT_MAX_FULL_LEVELS];
67 gpa_t pte_gpa[PT_MAX_FULL_LEVELS];
Avi Kivityfe135d22007-12-09 16:15:46 +020068 unsigned pt_access;
69 unsigned pte_access;
Avi Kivity815af8d2007-01-05 16:36:44 -080070 gfn_t gfn;
Avi Kivity7993ba42007-01-26 00:56:41 -080071 u32 error_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -080072};
73
Avi Kivity5fb07dd2007-11-21 12:35:07 +020074static gfn_t gpte_to_gfn(pt_element_t gpte)
75{
76 return (gpte & PT_BASE_ADDR_MASK) >> PAGE_SHIFT;
77}
78
79static gfn_t gpte_to_gfn_pde(pt_element_t gpte)
80{
81 return (gpte & PT_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
82}
83
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050084static bool FNAME(cmpxchg_gpte)(struct kvm *kvm,
85 gfn_t table_gfn, unsigned index,
86 pt_element_t orig_pte, pt_element_t new_pte)
87{
88 pt_element_t ret;
89 pt_element_t *table;
90 struct page *page;
91
92 page = gfn_to_page(kvm, table_gfn);
Izik Eidus72dc67a2008-02-10 18:04:15 +020093
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050094 table = kmap_atomic(page, KM_USER0);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050095 ret = CMPXCHG(&table[index], orig_pte, new_pte);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050096 kunmap_atomic(table, KM_USER0);
97
98 kvm_release_page_dirty(page);
99
100 return (ret != orig_pte);
101}
102
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200103static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte)
104{
105 unsigned access;
106
107 access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
108#if PTTYPE == 64
109 if (is_nx(vcpu))
110 access &= ~(gpte >> PT64_NX_SHIFT);
111#endif
112 return access;
113}
114
Avi Kivityac79c972007-01-05 16:36:40 -0800115/*
116 * Fetch a guest pte for a guest virtual address
117 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800118static int FNAME(walk_addr)(struct guest_walker *walker,
119 struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivity73b10872007-01-26 00:56:41 -0800120 int write_fault, int user_fault, int fetch_fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800121{
Avi Kivity42bf3f02007-10-17 12:18:47 +0200122 pt_element_t pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800123 gfn_t table_gfn;
Avi Kivityfe135d22007-12-09 16:15:46 +0200124 unsigned index, pt_access, pte_access;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200125 gpa_t pte_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800126
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800127 pgprintk("%s: addr %lx\n", __func__, addr);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500128walk:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800129 walker->level = vcpu->arch.mmu.root_level;
130 pte = vcpu->arch.cr3;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800131#if PTTYPE == 64
132 if (!is_long_mode(vcpu)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800133 pte = vcpu->arch.pdptrs[(addr >> 30) & 3];
Avi Kivity42bf3f02007-10-17 12:18:47 +0200134 if (!is_present_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800135 goto not_present;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800136 --walker->level;
137 }
138#endif
Avi Kivitya9058ec2006-12-29 16:49:37 -0800139 ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
Marcelo Tosatti24993d52008-02-14 21:25:39 -0200140 (vcpu->arch.cr3 & CR3_NONPAE_RESERVED_BITS) == 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800141
Avi Kivityfe135d22007-12-09 16:15:46 +0200142 pt_access = ACC_ALL;
Avi Kivityac79c972007-01-05 16:36:40 -0800143
144 for (;;) {
Avi Kivity42bf3f02007-10-17 12:18:47 +0200145 index = PT_INDEX(addr, walker->level);
Avi Kivityac79c972007-01-05 16:36:40 -0800146
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200147 table_gfn = gpte_to_gfn(pte);
Avi Kivity1755fbc2007-11-21 14:44:45 +0200148 pte_gpa = gfn_to_gpa(table_gfn);
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200149 pte_gpa += index * sizeof(pt_element_t);
Avi Kivity42bf3f02007-10-17 12:18:47 +0200150 walker->table_gfn[walker->level - 1] = table_gfn;
Marcelo Tosatti78190262007-12-11 19:12:27 -0500151 walker->pte_gpa[walker->level - 1] = pte_gpa;
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800152 pgprintk("%s: table_gfn[%d] %lx\n", __func__,
Avi Kivity42bf3f02007-10-17 12:18:47 +0200153 walker->level - 1, table_gfn);
Avi Kivityac79c972007-01-05 16:36:40 -0800154
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200155 kvm_read_guest(vcpu->kvm, pte_gpa, &pte, sizeof(pte));
Avi Kivity42bf3f02007-10-17 12:18:47 +0200156
157 if (!is_present_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800158 goto not_present;
159
Avi Kivity42bf3f02007-10-17 12:18:47 +0200160 if (write_fault && !is_writeble_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800161 if (user_fault || is_write_protection(vcpu))
162 goto access_error;
163
Avi Kivity42bf3f02007-10-17 12:18:47 +0200164 if (user_fault && !(pte & PT_USER_MASK))
Avi Kivity7993ba42007-01-26 00:56:41 -0800165 goto access_error;
166
Avi Kivity73b10872007-01-26 00:56:41 -0800167#if PTTYPE == 64
Avi Kivity42bf3f02007-10-17 12:18:47 +0200168 if (fetch_fault && is_nx(vcpu) && (pte & PT64_NX_MASK))
Avi Kivity73b10872007-01-26 00:56:41 -0800169 goto access_error;
170#endif
171
Avi Kivity42bf3f02007-10-17 12:18:47 +0200172 if (!(pte & PT_ACCESSED_MASK)) {
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200173 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500174 if (FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn,
175 index, pte, pte|PT_ACCESSED_MASK))
176 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200177 pte |= PT_ACCESSED_MASK;
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200178 }
Avi Kivityac79c972007-01-05 16:36:40 -0800179
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200180 pte_access = pt_access & FNAME(gpte_access)(vcpu, pte);
Avi Kivityfe135d22007-12-09 16:15:46 +0200181
Marcelo Tosatti78190262007-12-11 19:12:27 -0500182 walker->ptes[walker->level - 1] = pte;
183
Avi Kivity815af8d2007-01-05 16:36:44 -0800184 if (walker->level == PT_PAGE_TABLE_LEVEL) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200185 walker->gfn = gpte_to_gfn(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800186 break;
187 }
188
189 if (walker->level == PT_DIRECTORY_LEVEL
Avi Kivity42bf3f02007-10-17 12:18:47 +0200190 && (pte & PT_PAGE_SIZE_MASK)
Avi Kivity815af8d2007-01-05 16:36:44 -0800191 && (PTTYPE == 64 || is_pse(vcpu))) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200192 walker->gfn = gpte_to_gfn_pde(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800193 walker->gfn += PT_INDEX(addr, PT_PAGE_TABLE_LEVEL);
Avi Kivityda9285212007-11-21 13:54:47 +0200194 if (PTTYPE == 32 && is_cpuid_PSE36())
195 walker->gfn += pse36_gfn_delta(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800196 break;
197 }
198
Avi Kivityfe135d22007-12-09 16:15:46 +0200199 pt_access = pte_access;
Avi Kivityac79c972007-01-05 16:36:40 -0800200 --walker->level;
201 }
Avi Kivity42bf3f02007-10-17 12:18:47 +0200202
203 if (write_fault && !is_dirty_pte(pte)) {
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500204 bool ret;
205
Avi Kivity42bf3f02007-10-17 12:18:47 +0200206 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500207 ret = FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn, index, pte,
208 pte|PT_DIRTY_MASK);
209 if (ret)
210 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200211 pte |= PT_DIRTY_MASK;
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200212 kvm_mmu_pte_write(vcpu, pte_gpa, (u8 *)&pte, sizeof(pte), 0);
Marcelo Tosatti78190262007-12-11 19:12:27 -0500213 walker->ptes[walker->level - 1] = pte;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200214 }
215
Avi Kivityfe135d22007-12-09 16:15:46 +0200216 walker->pt_access = pt_access;
217 walker->pte_access = pte_access;
218 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800219 __func__, (u64)pte, pt_access, pte_access);
Avi Kivity7993ba42007-01-26 00:56:41 -0800220 return 1;
221
222not_present:
223 walker->error_code = 0;
224 goto err;
225
226access_error:
227 walker->error_code = PFERR_PRESENT_MASK;
228
229err:
230 if (write_fault)
231 walker->error_code |= PFERR_WRITE_MASK;
232 if (user_fault)
233 walker->error_code |= PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800234 if (fetch_fault)
235 walker->error_code |= PFERR_FETCH_MASK;
Shaohua Life5518812007-07-23 14:51:39 +0800236 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800237}
238
Avi Kivity00284252007-05-01 16:53:31 +0300239static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *page,
Dong, Eddie489f1d62008-01-07 11:14:20 +0200240 u64 *spte, const void *pte)
Avi Kivity00284252007-05-01 16:53:31 +0300241{
242 pt_element_t gpte;
Avi Kivity41074d02007-12-09 17:00:02 +0200243 unsigned pte_access;
Anthony Liguori35149e22008-04-02 14:46:56 -0500244 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300245 int largepage = vcpu->arch.update_pte.largepage;
Avi Kivity00284252007-05-01 16:53:31 +0300246
Avi Kivity00284252007-05-01 16:53:31 +0300247 gpte = *(const pt_element_t *)pte;
Avi Kivityc7addb92007-09-16 18:58:32 +0200248 if (~gpte & (PT_PRESENT_MASK | PT_ACCESSED_MASK)) {
Dong, Eddie489f1d62008-01-07 11:14:20 +0200249 if (!is_present_pte(gpte))
Avi Kivityc7addb92007-09-16 18:58:32 +0200250 set_shadow_pte(spte, shadow_notrap_nonpresent_pte);
251 return;
252 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800253 pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
Avi Kivity41074d02007-12-09 17:00:02 +0200254 pte_access = page->role.access & FNAME(gpte_access)(vcpu, gpte);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200255 if (gpte_to_gfn(gpte) != vcpu->arch.update_pte.gfn)
256 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500257 pfn = vcpu->arch.update_pte.pfn;
258 if (is_error_pfn(pfn))
Avi Kivityd7824ff2007-12-30 12:29:05 +0200259 return;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200260 if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq))
261 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500262 kvm_get_pfn(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +0200263 mmu_set_spte(vcpu, spte, page->role.access, pte_access, 0, 0,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200264 gpte & PT_DIRTY_MASK, NULL, largepage,
265 gpte & PT_GLOBAL_MASK, gpte_to_gfn(gpte),
Anthony Liguori35149e22008-04-02 14:46:56 -0500266 pfn, true);
Avi Kivity00284252007-05-01 16:53:31 +0300267}
268
Avi Kivity6aa8b732006-12-10 02:21:36 -0800269/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800270 * Fetch a shadow pte for a specific level in the paging hierarchy.
271 */
272static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200273 struct guest_walker *gw,
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300274 int user_fault, int write_fault, int largepage,
Anthony Liguori35149e22008-04-02 14:46:56 -0500275 int *ptwrite, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800276{
Avi Kivitye7a04c92008-12-25 15:10:50 +0200277 unsigned access = gw->pt_access;
278 struct kvm_mmu_page *shadow_page;
279 u64 spte, *sptep;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +0200280 int direct;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200281 gfn_t table_gfn;
282 int r;
283 int level;
284 pt_element_t curr_pte;
285 struct kvm_shadow_walk_iterator iterator;
Avi Kivityac79c972007-01-05 16:36:40 -0800286
Avi Kivitye7a04c92008-12-25 15:10:50 +0200287 if (!is_present_pte(gw->ptes[gw->level - 1]))
Avi Kivityac79c972007-01-05 16:36:40 -0800288 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800289
Avi Kivitye7a04c92008-12-25 15:10:50 +0200290 for_each_shadow_entry(vcpu, addr, iterator) {
291 level = iterator.level;
292 sptep = iterator.sptep;
293 if (level == PT_PAGE_TABLE_LEVEL
294 || (largepage && level == PT_DIRECTORY_LEVEL)) {
295 mmu_set_spte(vcpu, sptep, access,
296 gw->pte_access & access,
297 user_fault, write_fault,
298 gw->ptes[gw->level-1] & PT_DIRTY_MASK,
299 ptwrite, largepage,
300 gw->ptes[gw->level-1] & PT_GLOBAL_MASK,
301 gw->gfn, pfn, false);
302 break;
303 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800304
Avi Kivitye7a04c92008-12-25 15:10:50 +0200305 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep))
306 continue;
307
308 if (is_large_pte(*sptep)) {
Joerg Roedelc5bc2242009-02-19 12:18:56 +0100309 rmap_remove(vcpu->kvm, sptep);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200310 set_shadow_pte(sptep, shadow_trap_nonpresent_pte);
311 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200312 }
313
314 if (level == PT_DIRECTORY_LEVEL
315 && gw->level == PT_DIRECTORY_LEVEL) {
Avi Kivityf6e2c02b2009-01-11 13:02:10 +0200316 direct = 1;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200317 if (!is_dirty_pte(gw->ptes[level - 1]))
318 access &= ~ACC_WRITE_MASK;
319 table_gfn = gpte_to_gfn(gw->ptes[level - 1]);
320 } else {
Avi Kivityf6e2c02b2009-01-11 13:02:10 +0200321 direct = 0;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200322 table_gfn = gw->table_gfn[level - 2];
323 }
324 shadow_page = kvm_mmu_get_page(vcpu, table_gfn, addr, level-1,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +0200325 direct, access, sptep);
326 if (!direct) {
Avi Kivitye7a04c92008-12-25 15:10:50 +0200327 r = kvm_read_guest_atomic(vcpu->kvm,
328 gw->pte_gpa[level - 2],
329 &curr_pte, sizeof(curr_pte));
330 if (r || curr_pte != gw->ptes[level - 2]) {
331 kvm_mmu_put_page(shadow_page, sptep);
332 kvm_release_pfn_clean(pfn);
333 sptep = NULL;
334 break;
335 }
336 }
337
338 spte = __pa(shadow_page->spt)
339 | PT_PRESENT_MASK | PT_ACCESSED_MASK
340 | PT_WRITABLE_MASK | PT_USER_MASK;
341 *sptep = spte;
342 }
343
344 return sptep;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800345}
346
347/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800348 * Page fault handler. There are several causes for a page fault:
349 * - there is no shadow pte for the guest pte
350 * - write access through a shadow pte marked read only so that we can set
351 * the dirty bit
352 * - write access to a shadow pte marked read only so we can update the page
353 * dirty bitmap, when userspace requests it
354 * - mmio access; in this case we will never install a present shadow pte
355 * - normal guest page fault due to the guest pte marked not present, not
356 * writable, or not executable
357 *
Avi Kivitye2dec932007-01-05 16:36:54 -0800358 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
359 * a negative value on error.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800360 */
361static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
362 u32 error_code)
363{
364 int write_fault = error_code & PFERR_WRITE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800365 int user_fault = error_code & PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800366 int fetch_fault = error_code & PFERR_FETCH_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800367 struct guest_walker walker;
368 u64 *shadow_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800369 int write_pt = 0;
Avi Kivitye2dec932007-01-05 16:36:54 -0800370 int r;
Anthony Liguori35149e22008-04-02 14:46:56 -0500371 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300372 int largepage = 0;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200373 unsigned long mmu_seq;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800374
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800375 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800376 kvm_mmu_audit(vcpu, "pre page fault");
Avi Kivity714b93d2007-01-05 16:36:53 -0800377
Avi Kivitye2dec932007-01-05 16:36:54 -0800378 r = mmu_topup_memory_caches(vcpu);
379 if (r)
380 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800381
Avi Kivity6aa8b732006-12-10 02:21:36 -0800382 /*
383 * Look up the shadow pte for the faulting address.
384 */
Avi Kivity73b10872007-01-26 00:56:41 -0800385 r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
386 fetch_fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800387
388 /*
389 * The page is not mapped by the guest. Let the guest handle it.
390 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800391 if (!r) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800392 pgprintk("%s: guest page fault\n", __func__);
Avi Kivity7993ba42007-01-26 00:56:41 -0800393 inject_page_fault(vcpu, addr, walker.error_code);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800394 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800395 return 0;
396 }
397
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300398 if (walker.level == PT_DIRECTORY_LEVEL) {
399 gfn_t large_gfn;
400 large_gfn = walker.gfn & ~(KVM_PAGES_PER_HPAGE-1);
401 if (is_largepage_backed(vcpu, large_gfn)) {
402 walker.gfn = large_gfn;
403 largepage = 1;
404 }
405 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200406 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300407 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -0500408 pfn = gfn_to_pfn(vcpu->kvm, walker.gfn);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200409
Avi Kivityd196e342008-01-24 11:44:11 +0200410 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -0500411 if (is_error_pfn(pfn)) {
Avi Kivityebb0e622008-05-20 16:21:58 +0300412 pgprintk("gfn %lx is mmio\n", walker.gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500413 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +0200414 return 1;
415 }
416
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500417 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200418 if (mmu_notifier_retry(vcpu, mmu_seq))
419 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +0200420 kvm_mmu_free_some_pages(vcpu);
Avi Kivity97a0a012007-05-31 15:08:29 +0300421 shadow_pte = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
Anthony Liguori35149e22008-04-02 14:46:56 -0500422 largepage, &write_pt, pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300423
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800424 pgprintk("%s: shadow pte %p %llx ptwrite %d\n", __func__,
Avi Kivity97a0a012007-05-31 15:08:29 +0300425 shadow_pte, *shadow_pte, write_pt);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800426
Avi Kivitya25f7e12007-04-30 17:05:38 +0300427 if (!write_pt)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800428 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivitya25f7e12007-04-30 17:05:38 +0300429
Avi Kivity1165f5f2007-04-19 17:27:43 +0300430 ++vcpu->stat.pf_fixed;
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800431 kvm_mmu_audit(vcpu, "post page fault (fixed)");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500432 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800433
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800434 return write_pt;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200435
436out_unlock:
437 spin_unlock(&vcpu->kvm->mmu_lock);
438 kvm_release_pfn_clean(pfn);
439 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800440}
441
Marcelo Tosattia7052892008-09-23 13:18:35 -0300442static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
443{
Avi Kivitya4619302008-12-25 15:19:00 +0200444 struct kvm_shadow_walk_iterator iterator;
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200445 pt_element_t gpte;
Avi Kivitya4619302008-12-25 15:19:00 +0200446 gpa_t pte_gpa = -1;
447 int level;
448 u64 *sptep;
Marcelo Tosattia7052892008-09-23 13:18:35 -0300449
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200450 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200451
452 for_each_shadow_entry(vcpu, gva, iterator) {
453 level = iterator.level;
454 sptep = iterator.sptep;
455
456 /* FIXME: properly handle invlpg on large guest pages */
457 if (level == PT_PAGE_TABLE_LEVEL ||
458 ((level == PT_DIRECTORY_LEVEL) && is_large_pte(*sptep))) {
459 struct kvm_mmu_page *sp = page_header(__pa(sptep));
460
461 pte_gpa = (sp->gfn << PAGE_SHIFT);
462 pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
463
464 if (is_shadow_present_pte(*sptep)) {
465 rmap_remove(vcpu->kvm, sptep);
466 if (is_large_pte(*sptep))
467 --vcpu->kvm->stat.lpages;
468 }
469 set_shadow_pte(sptep, shadow_trap_nonpresent_pte);
470 break;
471 }
472
473 if (!is_shadow_present_pte(*sptep))
474 break;
475 }
476
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200477 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200478
479 if (pte_gpa == -1)
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200480 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200481 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200482 sizeof(pt_element_t)))
483 return;
484 if (is_present_pte(gpte) && (gpte & PT_ACCESSED_MASK)) {
485 if (mmu_topup_memory_caches(vcpu))
486 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200487 kvm_mmu_pte_write(vcpu, pte_gpa, (const u8 *)&gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200488 sizeof(pt_element_t), 0);
489 }
Marcelo Tosattia7052892008-09-23 13:18:35 -0300490}
491
Avi Kivity6aa8b732006-12-10 02:21:36 -0800492static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr)
493{
494 struct guest_walker walker;
Avi Kivitye119d112007-02-12 00:54:36 -0800495 gpa_t gpa = UNMAPPED_GVA;
496 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800497
Avi Kivitye119d112007-02-12 00:54:36 -0800498 r = FNAME(walk_addr)(&walker, vcpu, vaddr, 0, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800499
Avi Kivitye119d112007-02-12 00:54:36 -0800500 if (r) {
Avi Kivity1755fbc2007-11-21 14:44:45 +0200501 gpa = gfn_to_gpa(walker.gfn);
Avi Kivitye119d112007-02-12 00:54:36 -0800502 gpa |= vaddr & ~PAGE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503 }
504
505 return gpa;
506}
507
Avi Kivityc7addb92007-09-16 18:58:32 +0200508static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
509 struct kvm_mmu_page *sp)
510{
Avi Kivityeab9f712008-05-29 14:20:16 +0300511 int i, j, offset, r;
512 pt_element_t pt[256 / sizeof(pt_element_t)];
513 gpa_t pte_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +0200514
Avi Kivityf6e2c02b2009-01-11 13:02:10 +0200515 if (sp->role.direct
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200516 || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200517 nonpaging_prefetch_page(vcpu, sp);
518 return;
519 }
520
Avi Kivityeab9f712008-05-29 14:20:16 +0300521 pte_gpa = gfn_to_gpa(sp->gfn);
522 if (PTTYPE == 32) {
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200523 offset = sp->role.quadrant << PT64_LEVEL_BITS;
Avi Kivityeab9f712008-05-29 14:20:16 +0300524 pte_gpa += offset * sizeof(pt_element_t);
525 }
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500526
Avi Kivityeab9f712008-05-29 14:20:16 +0300527 for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
528 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
529 pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
530 for (j = 0; j < ARRAY_SIZE(pt); ++j)
531 if (r || is_present_pte(pt[j]))
532 sp->spt[i+j] = shadow_trap_nonpresent_pte;
533 else
534 sp->spt[i+j] = shadow_notrap_nonpresent_pte;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500535 }
Avi Kivityc7addb92007-09-16 18:58:32 +0200536}
537
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300538/*
539 * Using the cached information from sp->gfns is safe because:
540 * - The spte has a reference to the struct page, so the pfn for a given gfn
541 * can't change unless all sptes pointing to it are nuked first.
542 * - Alias changes zap the entire shadow cache.
543 */
544static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
545{
546 int i, offset, nr_present;
547
548 offset = nr_present = 0;
549
550 if (PTTYPE == 32)
551 offset = sp->role.quadrant << PT64_LEVEL_BITS;
552
553 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
554 unsigned pte_access;
555 pt_element_t gpte;
556 gpa_t pte_gpa;
557 gfn_t gfn = sp->gfns[i];
558
559 if (!is_shadow_present_pte(sp->spt[i]))
560 continue;
561
562 pte_gpa = gfn_to_gpa(sp->gfn);
563 pte_gpa += (i+offset) * sizeof(pt_element_t);
564
565 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
566 sizeof(pt_element_t)))
567 return -EINVAL;
568
569 if (gpte_to_gfn(gpte) != gfn || !is_present_pte(gpte) ||
570 !(gpte & PT_ACCESSED_MASK)) {
571 u64 nonpresent;
572
573 rmap_remove(vcpu->kvm, &sp->spt[i]);
574 if (is_present_pte(gpte))
575 nonpresent = shadow_trap_nonpresent_pte;
576 else
577 nonpresent = shadow_notrap_nonpresent_pte;
578 set_shadow_pte(&sp->spt[i], nonpresent);
579 continue;
580 }
581
582 nr_present++;
583 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte);
584 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200585 is_dirty_pte(gpte), 0, gpte & PT_GLOBAL_MASK, gfn,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300586 spte_to_pfn(sp->spt[i]), true, false);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300587 }
588
589 return !nr_present;
590}
591
Avi Kivity6aa8b732006-12-10 02:21:36 -0800592#undef pt_element_t
593#undef guest_walker
594#undef FNAME
595#undef PT_BASE_ADDR_MASK
596#undef PT_INDEX
Avi Kivity6aa8b732006-12-10 02:21:36 -0800597#undef PT_LEVEL_MASK
Avi Kivity6aa8b732006-12-10 02:21:36 -0800598#undef PT_DIR_BASE_ADDR_MASK
Avi Kivityc7addb92007-09-16 18:58:32 +0200599#undef PT_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800600#undef PT_MAX_FULL_LEVELS
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200601#undef gpte_to_gfn
602#undef gpte_to_gfn_pde
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500603#undef CMPXCHG