blob: 69c7e3311b8af1650042aa3b6f3d338967b8e666 [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
Avi Kivityabb9e0b2008-08-22 19:11:39 +030028 #define shadow_walker shadow_walker64
Avi Kivity6aa8b732006-12-10 02:21:36 -080029 #define FNAME(name) paging##64_##name
30 #define PT_BASE_ADDR_MASK PT64_BASE_ADDR_MASK
31 #define PT_DIR_BASE_ADDR_MASK PT64_DIR_BASE_ADDR_MASK
32 #define PT_INDEX(addr, level) PT64_INDEX(addr, level)
Avi Kivity6aa8b732006-12-10 02:21:36 -080033 #define PT_LEVEL_MASK(level) PT64_LEVEL_MASK(level)
Avi Kivityc7addb92007-09-16 18:58:32 +020034 #define PT_LEVEL_BITS PT64_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -080035 #ifdef CONFIG_X86_64
36 #define PT_MAX_FULL_LEVELS 4
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050037 #define CMPXCHG cmpxchg
Avi Kivitycea0f0e2007-01-05 16:36:43 -080038 #else
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050039 #define CMPXCHG cmpxchg64
Avi Kivitycea0f0e2007-01-05 16:36:43 -080040 #define PT_MAX_FULL_LEVELS 2
41 #endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080042#elif PTTYPE == 32
43 #define pt_element_t u32
44 #define guest_walker guest_walker32
Avi Kivityabb9e0b2008-08-22 19:11:39 +030045 #define shadow_walker shadow_walker32
Avi Kivity6aa8b732006-12-10 02:21:36 -080046 #define FNAME(name) paging##32_##name
47 #define PT_BASE_ADDR_MASK PT32_BASE_ADDR_MASK
48 #define PT_DIR_BASE_ADDR_MASK PT32_DIR_BASE_ADDR_MASK
49 #define PT_INDEX(addr, level) PT32_INDEX(addr, level)
Avi Kivity6aa8b732006-12-10 02:21:36 -080050 #define PT_LEVEL_MASK(level) PT32_LEVEL_MASK(level)
Avi Kivityc7addb92007-09-16 18:58:32 +020051 #define PT_LEVEL_BITS PT32_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -080052 #define PT_MAX_FULL_LEVELS 2
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050053 #define CMPXCHG cmpxchg
Avi Kivity6aa8b732006-12-10 02:21:36 -080054#else
55 #error Invalid PTTYPE value
56#endif
57
Avi Kivity5fb07dd2007-11-21 12:35:07 +020058#define gpte_to_gfn FNAME(gpte_to_gfn)
59#define gpte_to_gfn_pde FNAME(gpte_to_gfn_pde)
60
Avi Kivity6aa8b732006-12-10 02:21:36 -080061/*
62 * The guest_walker structure emulates the behavior of the hardware page
63 * table walker.
64 */
65struct guest_walker {
66 int level;
Avi Kivitycea0f0e2007-01-05 16:36:43 -080067 gfn_t table_gfn[PT_MAX_FULL_LEVELS];
Marcelo Tosatti78190262007-12-11 19:12:27 -050068 pt_element_t ptes[PT_MAX_FULL_LEVELS];
69 gpa_t pte_gpa[PT_MAX_FULL_LEVELS];
Avi Kivityfe135d22007-12-09 16:15:46 +020070 unsigned pt_access;
71 unsigned pte_access;
Avi Kivity815af8d2007-01-05 16:36:44 -080072 gfn_t gfn;
Avi Kivity7993ba42007-01-26 00:56:41 -080073 u32 error_code;
Avi Kivity6aa8b732006-12-10 02:21:36 -080074};
75
Avi Kivityabb9e0b2008-08-22 19:11:39 +030076struct shadow_walker {
77 struct kvm_shadow_walk walker;
78 struct guest_walker *guest_walker;
79 int user_fault;
80 int write_fault;
81 int largepage;
82 int *ptwrite;
83 pfn_t pfn;
84 u64 *sptep;
Marcelo Tosattiad218f82008-12-01 22:32:05 -020085 gpa_t pte_gpa;
Avi Kivityabb9e0b2008-08-22 19:11:39 +030086};
87
Avi Kivity5fb07dd2007-11-21 12:35:07 +020088static gfn_t gpte_to_gfn(pt_element_t gpte)
89{
90 return (gpte & PT_BASE_ADDR_MASK) >> PAGE_SHIFT;
91}
92
93static gfn_t gpte_to_gfn_pde(pt_element_t gpte)
94{
95 return (gpte & PT_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
96}
97
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050098static bool FNAME(cmpxchg_gpte)(struct kvm *kvm,
99 gfn_t table_gfn, unsigned index,
100 pt_element_t orig_pte, pt_element_t new_pte)
101{
102 pt_element_t ret;
103 pt_element_t *table;
104 struct page *page;
105
106 page = gfn_to_page(kvm, table_gfn);
Izik Eidus72dc67a2008-02-10 18:04:15 +0200107
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500108 table = kmap_atomic(page, KM_USER0);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500109 ret = CMPXCHG(&table[index], orig_pte, new_pte);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500110 kunmap_atomic(table, KM_USER0);
111
112 kvm_release_page_dirty(page);
113
114 return (ret != orig_pte);
115}
116
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200117static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte)
118{
119 unsigned access;
120
121 access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
122#if PTTYPE == 64
123 if (is_nx(vcpu))
124 access &= ~(gpte >> PT64_NX_SHIFT);
125#endif
126 return access;
127}
128
Avi Kivityac79c972007-01-05 16:36:40 -0800129/*
130 * Fetch a guest pte for a guest virtual address
131 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800132static int FNAME(walk_addr)(struct guest_walker *walker,
133 struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivity73b10872007-01-26 00:56:41 -0800134 int write_fault, int user_fault, int fetch_fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800135{
Avi Kivity42bf3f02007-10-17 12:18:47 +0200136 pt_element_t pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800137 gfn_t table_gfn;
Avi Kivityfe135d22007-12-09 16:15:46 +0200138 unsigned index, pt_access, pte_access;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200139 gpa_t pte_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800140
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800141 pgprintk("%s: addr %lx\n", __func__, addr);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500142walk:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800143 walker->level = vcpu->arch.mmu.root_level;
144 pte = vcpu->arch.cr3;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800145#if PTTYPE == 64
146 if (!is_long_mode(vcpu)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800147 pte = vcpu->arch.pdptrs[(addr >> 30) & 3];
Avi Kivity42bf3f02007-10-17 12:18:47 +0200148 if (!is_present_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800149 goto not_present;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800150 --walker->level;
151 }
152#endif
Avi Kivitya9058ec2006-12-29 16:49:37 -0800153 ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
Marcelo Tosatti24993d52008-02-14 21:25:39 -0200154 (vcpu->arch.cr3 & CR3_NONPAE_RESERVED_BITS) == 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800155
Avi Kivityfe135d22007-12-09 16:15:46 +0200156 pt_access = ACC_ALL;
Avi Kivityac79c972007-01-05 16:36:40 -0800157
158 for (;;) {
Avi Kivity42bf3f02007-10-17 12:18:47 +0200159 index = PT_INDEX(addr, walker->level);
Avi Kivityac79c972007-01-05 16:36:40 -0800160
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200161 table_gfn = gpte_to_gfn(pte);
Avi Kivity1755fbc2007-11-21 14:44:45 +0200162 pte_gpa = gfn_to_gpa(table_gfn);
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200163 pte_gpa += index * sizeof(pt_element_t);
Avi Kivity42bf3f02007-10-17 12:18:47 +0200164 walker->table_gfn[walker->level - 1] = table_gfn;
Marcelo Tosatti78190262007-12-11 19:12:27 -0500165 walker->pte_gpa[walker->level - 1] = pte_gpa;
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800166 pgprintk("%s: table_gfn[%d] %lx\n", __func__,
Avi Kivity42bf3f02007-10-17 12:18:47 +0200167 walker->level - 1, table_gfn);
Avi Kivityac79c972007-01-05 16:36:40 -0800168
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200169 kvm_read_guest(vcpu->kvm, pte_gpa, &pte, sizeof(pte));
Avi Kivity42bf3f02007-10-17 12:18:47 +0200170
171 if (!is_present_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800172 goto not_present;
173
Avi Kivity42bf3f02007-10-17 12:18:47 +0200174 if (write_fault && !is_writeble_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800175 if (user_fault || is_write_protection(vcpu))
176 goto access_error;
177
Avi Kivity42bf3f02007-10-17 12:18:47 +0200178 if (user_fault && !(pte & PT_USER_MASK))
Avi Kivity7993ba42007-01-26 00:56:41 -0800179 goto access_error;
180
Avi Kivity73b10872007-01-26 00:56:41 -0800181#if PTTYPE == 64
Avi Kivity42bf3f02007-10-17 12:18:47 +0200182 if (fetch_fault && is_nx(vcpu) && (pte & PT64_NX_MASK))
Avi Kivity73b10872007-01-26 00:56:41 -0800183 goto access_error;
184#endif
185
Avi Kivity42bf3f02007-10-17 12:18:47 +0200186 if (!(pte & PT_ACCESSED_MASK)) {
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200187 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500188 if (FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn,
189 index, pte, pte|PT_ACCESSED_MASK))
190 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200191 pte |= PT_ACCESSED_MASK;
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200192 }
Avi Kivityac79c972007-01-05 16:36:40 -0800193
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200194 pte_access = pt_access & FNAME(gpte_access)(vcpu, pte);
Avi Kivityfe135d22007-12-09 16:15:46 +0200195
Marcelo Tosatti78190262007-12-11 19:12:27 -0500196 walker->ptes[walker->level - 1] = pte;
197
Avi Kivity815af8d2007-01-05 16:36:44 -0800198 if (walker->level == PT_PAGE_TABLE_LEVEL) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200199 walker->gfn = gpte_to_gfn(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800200 break;
201 }
202
203 if (walker->level == PT_DIRECTORY_LEVEL
Avi Kivity42bf3f02007-10-17 12:18:47 +0200204 && (pte & PT_PAGE_SIZE_MASK)
Avi Kivity815af8d2007-01-05 16:36:44 -0800205 && (PTTYPE == 64 || is_pse(vcpu))) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200206 walker->gfn = gpte_to_gfn_pde(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800207 walker->gfn += PT_INDEX(addr, PT_PAGE_TABLE_LEVEL);
Avi Kivityda928522007-11-21 13:54:47 +0200208 if (PTTYPE == 32 && is_cpuid_PSE36())
209 walker->gfn += pse36_gfn_delta(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800210 break;
211 }
212
Avi Kivityfe135d22007-12-09 16:15:46 +0200213 pt_access = pte_access;
Avi Kivityac79c972007-01-05 16:36:40 -0800214 --walker->level;
215 }
Avi Kivity42bf3f02007-10-17 12:18:47 +0200216
217 if (write_fault && !is_dirty_pte(pte)) {
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500218 bool ret;
219
Avi Kivity42bf3f02007-10-17 12:18:47 +0200220 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500221 ret = FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn, index, pte,
222 pte|PT_DIRTY_MASK);
223 if (ret)
224 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200225 pte |= PT_DIRTY_MASK;
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200226 kvm_mmu_pte_write(vcpu, pte_gpa, (u8 *)&pte, sizeof(pte), 0);
Marcelo Tosatti78190262007-12-11 19:12:27 -0500227 walker->ptes[walker->level - 1] = pte;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200228 }
229
Avi Kivityfe135d22007-12-09 16:15:46 +0200230 walker->pt_access = pt_access;
231 walker->pte_access = pte_access;
232 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800233 __func__, (u64)pte, pt_access, pte_access);
Avi Kivity7993ba42007-01-26 00:56:41 -0800234 return 1;
235
236not_present:
237 walker->error_code = 0;
238 goto err;
239
240access_error:
241 walker->error_code = PFERR_PRESENT_MASK;
242
243err:
244 if (write_fault)
245 walker->error_code |= PFERR_WRITE_MASK;
246 if (user_fault)
247 walker->error_code |= PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800248 if (fetch_fault)
249 walker->error_code |= PFERR_FETCH_MASK;
Shaohua Life551882007-07-23 14:51:39 +0800250 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800251}
252
Avi Kivity00284252007-05-01 16:53:31 +0300253static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *page,
Dong, Eddie489f1d62008-01-07 11:14:20 +0200254 u64 *spte, const void *pte)
Avi Kivity00284252007-05-01 16:53:31 +0300255{
256 pt_element_t gpte;
Avi Kivity41074d02007-12-09 17:00:02 +0200257 unsigned pte_access;
Anthony Liguori35149e22008-04-02 14:46:56 -0500258 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300259 int largepage = vcpu->arch.update_pte.largepage;
Avi Kivity00284252007-05-01 16:53:31 +0300260
Avi Kivity00284252007-05-01 16:53:31 +0300261 gpte = *(const pt_element_t *)pte;
Avi Kivityc7addb92007-09-16 18:58:32 +0200262 if (~gpte & (PT_PRESENT_MASK | PT_ACCESSED_MASK)) {
Dong, Eddie489f1d62008-01-07 11:14:20 +0200263 if (!is_present_pte(gpte))
Avi Kivityc7addb92007-09-16 18:58:32 +0200264 set_shadow_pte(spte, shadow_notrap_nonpresent_pte);
265 return;
266 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800267 pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
Avi Kivity41074d02007-12-09 17:00:02 +0200268 pte_access = page->role.access & FNAME(gpte_access)(vcpu, gpte);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200269 if (gpte_to_gfn(gpte) != vcpu->arch.update_pte.gfn)
270 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500271 pfn = vcpu->arch.update_pte.pfn;
272 if (is_error_pfn(pfn))
Avi Kivityd7824ff2007-12-30 12:29:05 +0200273 return;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200274 if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq))
275 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500276 kvm_get_pfn(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +0200277 mmu_set_spte(vcpu, spte, page->role.access, pte_access, 0, 0,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200278 gpte & PT_DIRTY_MASK, NULL, largepage,
279 gpte & PT_GLOBAL_MASK, gpte_to_gfn(gpte),
Anthony Liguori35149e22008-04-02 14:46:56 -0500280 pfn, true);
Avi Kivity00284252007-05-01 16:53:31 +0300281}
282
Avi Kivity6aa8b732006-12-10 02:21:36 -0800283/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800284 * Fetch a shadow pte for a specific level in the paging hierarchy.
285 */
286static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200287 struct guest_walker *gw,
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300288 int user_fault, int write_fault, int largepage,
Anthony Liguori35149e22008-04-02 14:46:56 -0500289 int *ptwrite, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800290{
Avi Kivitye7a04c92008-12-25 15:10:50 +0200291 unsigned access = gw->pt_access;
292 struct kvm_mmu_page *shadow_page;
293 u64 spte, *sptep;
294 int metaphysical;
295 gfn_t table_gfn;
296 int r;
297 int level;
298 pt_element_t curr_pte;
299 struct kvm_shadow_walk_iterator iterator;
Avi Kivityac79c972007-01-05 16:36:40 -0800300
Avi Kivitye7a04c92008-12-25 15:10:50 +0200301 if (!is_present_pte(gw->ptes[gw->level - 1]))
Avi Kivityac79c972007-01-05 16:36:40 -0800302 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800303
Avi Kivitye7a04c92008-12-25 15:10:50 +0200304 for_each_shadow_entry(vcpu, addr, iterator) {
305 level = iterator.level;
306 sptep = iterator.sptep;
307 if (level == PT_PAGE_TABLE_LEVEL
308 || (largepage && level == PT_DIRECTORY_LEVEL)) {
309 mmu_set_spte(vcpu, sptep, access,
310 gw->pte_access & access,
311 user_fault, write_fault,
312 gw->ptes[gw->level-1] & PT_DIRTY_MASK,
313 ptwrite, largepage,
314 gw->ptes[gw->level-1] & PT_GLOBAL_MASK,
315 gw->gfn, pfn, false);
316 break;
317 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800318
Avi Kivitye7a04c92008-12-25 15:10:50 +0200319 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep))
320 continue;
321
322 if (is_large_pte(*sptep)) {
323 set_shadow_pte(sptep, shadow_trap_nonpresent_pte);
324 kvm_flush_remote_tlbs(vcpu->kvm);
325 rmap_remove(vcpu->kvm, sptep);
326 }
327
328 if (level == PT_DIRECTORY_LEVEL
329 && gw->level == PT_DIRECTORY_LEVEL) {
330 metaphysical = 1;
331 if (!is_dirty_pte(gw->ptes[level - 1]))
332 access &= ~ACC_WRITE_MASK;
333 table_gfn = gpte_to_gfn(gw->ptes[level - 1]);
334 } else {
335 metaphysical = 0;
336 table_gfn = gw->table_gfn[level - 2];
337 }
338 shadow_page = kvm_mmu_get_page(vcpu, table_gfn, addr, level-1,
339 metaphysical, access, sptep);
340 if (!metaphysical) {
341 r = kvm_read_guest_atomic(vcpu->kvm,
342 gw->pte_gpa[level - 2],
343 &curr_pte, sizeof(curr_pte));
344 if (r || curr_pte != gw->ptes[level - 2]) {
345 kvm_mmu_put_page(shadow_page, sptep);
346 kvm_release_pfn_clean(pfn);
347 sptep = NULL;
348 break;
349 }
350 }
351
352 spte = __pa(shadow_page->spt)
353 | PT_PRESENT_MASK | PT_ACCESSED_MASK
354 | PT_WRITABLE_MASK | PT_USER_MASK;
355 *sptep = spte;
356 }
357
358 return sptep;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359}
360
361/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800362 * Page fault handler. There are several causes for a page fault:
363 * - there is no shadow pte for the guest pte
364 * - write access through a shadow pte marked read only so that we can set
365 * the dirty bit
366 * - write access to a shadow pte marked read only so we can update the page
367 * dirty bitmap, when userspace requests it
368 * - mmio access; in this case we will never install a present shadow pte
369 * - normal guest page fault due to the guest pte marked not present, not
370 * writable, or not executable
371 *
Avi Kivitye2dec932007-01-05 16:36:54 -0800372 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
373 * a negative value on error.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800374 */
375static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
376 u32 error_code)
377{
378 int write_fault = error_code & PFERR_WRITE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800379 int user_fault = error_code & PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800380 int fetch_fault = error_code & PFERR_FETCH_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800381 struct guest_walker walker;
382 u64 *shadow_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800383 int write_pt = 0;
Avi Kivitye2dec932007-01-05 16:36:54 -0800384 int r;
Anthony Liguori35149e22008-04-02 14:46:56 -0500385 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300386 int largepage = 0;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200387 unsigned long mmu_seq;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800389 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800390 kvm_mmu_audit(vcpu, "pre page fault");
Avi Kivity714b93d2007-01-05 16:36:53 -0800391
Avi Kivitye2dec932007-01-05 16:36:54 -0800392 r = mmu_topup_memory_caches(vcpu);
393 if (r)
394 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800395
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396 /*
397 * Look up the shadow pte for the faulting address.
398 */
Avi Kivity73b10872007-01-26 00:56:41 -0800399 r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
400 fetch_fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800401
402 /*
403 * The page is not mapped by the guest. Let the guest handle it.
404 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800405 if (!r) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800406 pgprintk("%s: guest page fault\n", __func__);
Avi Kivity7993ba42007-01-26 00:56:41 -0800407 inject_page_fault(vcpu, addr, walker.error_code);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800408 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800409 return 0;
410 }
411
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300412 if (walker.level == PT_DIRECTORY_LEVEL) {
413 gfn_t large_gfn;
414 large_gfn = walker.gfn & ~(KVM_PAGES_PER_HPAGE-1);
415 if (is_largepage_backed(vcpu, large_gfn)) {
416 walker.gfn = large_gfn;
417 largepage = 1;
418 }
419 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200420 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300421 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -0500422 pfn = gfn_to_pfn(vcpu->kvm, walker.gfn);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200423
Avi Kivityd196e342008-01-24 11:44:11 +0200424 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -0500425 if (is_error_pfn(pfn)) {
Avi Kivityebb0e622008-05-20 16:21:58 +0300426 pgprintk("gfn %lx is mmio\n", walker.gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500427 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +0200428 return 1;
429 }
430
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500431 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200432 if (mmu_notifier_retry(vcpu, mmu_seq))
433 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +0200434 kvm_mmu_free_some_pages(vcpu);
Avi Kivity97a0a012007-05-31 15:08:29 +0300435 shadow_pte = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
Anthony Liguori35149e22008-04-02 14:46:56 -0500436 largepage, &write_pt, pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300437
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800438 pgprintk("%s: shadow pte %p %llx ptwrite %d\n", __func__,
Avi Kivity97a0a012007-05-31 15:08:29 +0300439 shadow_pte, *shadow_pte, write_pt);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800440
Avi Kivitya25f7e12007-04-30 17:05:38 +0300441 if (!write_pt)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800442 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivitya25f7e12007-04-30 17:05:38 +0300443
Avi Kivity1165f5f2007-04-19 17:27:43 +0300444 ++vcpu->stat.pf_fixed;
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800445 kvm_mmu_audit(vcpu, "post page fault (fixed)");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500446 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800447
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800448 return write_pt;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200449
450out_unlock:
451 spin_unlock(&vcpu->kvm->mmu_lock);
452 kvm_release_pfn_clean(pfn);
453 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454}
455
Marcelo Tosattia7052892008-09-23 13:18:35 -0300456static int FNAME(shadow_invlpg_entry)(struct kvm_shadow_walk *_sw,
457 struct kvm_vcpu *vcpu, u64 addr,
458 u64 *sptep, int level)
459{
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200460 struct shadow_walker *sw =
461 container_of(_sw, struct shadow_walker, walker);
Marcelo Tosattia7052892008-09-23 13:18:35 -0300462
Marcelo Tosatti87917232008-12-22 18:49:30 -0200463 /* FIXME: properly handle invlpg on large guest pages */
464 if (level == PT_PAGE_TABLE_LEVEL ||
465 ((level == PT_DIRECTORY_LEVEL) && is_large_pte(*sptep))) {
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200466 struct kvm_mmu_page *sp = page_header(__pa(sptep));
467
468 sw->pte_gpa = (sp->gfn << PAGE_SHIFT);
469 sw->pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
470
Marcelo Tosatti87917232008-12-22 18:49:30 -0200471 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosattia7052892008-09-23 13:18:35 -0300472 rmap_remove(vcpu->kvm, sptep);
Marcelo Tosatti87917232008-12-22 18:49:30 -0200473 if (is_large_pte(*sptep))
474 --vcpu->kvm->stat.lpages;
475 }
Marcelo Tosattia7052892008-09-23 13:18:35 -0300476 set_shadow_pte(sptep, shadow_trap_nonpresent_pte);
477 return 1;
478 }
479 if (!is_shadow_present_pte(*sptep))
480 return 1;
481 return 0;
482}
483
484static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
485{
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200486 pt_element_t gpte;
Marcelo Tosattia7052892008-09-23 13:18:35 -0300487 struct shadow_walker walker = {
488 .walker = { .entry = FNAME(shadow_invlpg_entry), },
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200489 .pte_gpa = -1,
Marcelo Tosattia7052892008-09-23 13:18:35 -0300490 };
491
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200492 spin_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosattia7052892008-09-23 13:18:35 -0300493 walk_shadow(&walker.walker, vcpu, gva);
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200494 spin_unlock(&vcpu->kvm->mmu_lock);
495 if (walker.pte_gpa == -1)
496 return;
497 if (kvm_read_guest_atomic(vcpu->kvm, walker.pte_gpa, &gpte,
498 sizeof(pt_element_t)))
499 return;
500 if (is_present_pte(gpte) && (gpte & PT_ACCESSED_MASK)) {
501 if (mmu_topup_memory_caches(vcpu))
502 return;
503 kvm_mmu_pte_write(vcpu, walker.pte_gpa, (const u8 *)&gpte,
504 sizeof(pt_element_t), 0);
505 }
Marcelo Tosattia7052892008-09-23 13:18:35 -0300506}
507
Avi Kivity6aa8b732006-12-10 02:21:36 -0800508static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr)
509{
510 struct guest_walker walker;
Avi Kivitye119d112007-02-12 00:54:36 -0800511 gpa_t gpa = UNMAPPED_GVA;
512 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513
Avi Kivitye119d112007-02-12 00:54:36 -0800514 r = FNAME(walk_addr)(&walker, vcpu, vaddr, 0, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800515
Avi Kivitye119d112007-02-12 00:54:36 -0800516 if (r) {
Avi Kivity1755fbc2007-11-21 14:44:45 +0200517 gpa = gfn_to_gpa(walker.gfn);
Avi Kivitye119d112007-02-12 00:54:36 -0800518 gpa |= vaddr & ~PAGE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519 }
520
521 return gpa;
522}
523
Avi Kivityc7addb92007-09-16 18:58:32 +0200524static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
525 struct kvm_mmu_page *sp)
526{
Avi Kivityeab9f712008-05-29 14:20:16 +0300527 int i, j, offset, r;
528 pt_element_t pt[256 / sizeof(pt_element_t)];
529 gpa_t pte_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +0200530
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200531 if (sp->role.metaphysical
532 || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200533 nonpaging_prefetch_page(vcpu, sp);
534 return;
535 }
536
Avi Kivityeab9f712008-05-29 14:20:16 +0300537 pte_gpa = gfn_to_gpa(sp->gfn);
538 if (PTTYPE == 32) {
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200539 offset = sp->role.quadrant << PT64_LEVEL_BITS;
Avi Kivityeab9f712008-05-29 14:20:16 +0300540 pte_gpa += offset * sizeof(pt_element_t);
541 }
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500542
Avi Kivityeab9f712008-05-29 14:20:16 +0300543 for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
544 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
545 pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
546 for (j = 0; j < ARRAY_SIZE(pt); ++j)
547 if (r || is_present_pte(pt[j]))
548 sp->spt[i+j] = shadow_trap_nonpresent_pte;
549 else
550 sp->spt[i+j] = shadow_notrap_nonpresent_pte;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500551 }
Avi Kivityc7addb92007-09-16 18:58:32 +0200552}
553
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300554/*
555 * Using the cached information from sp->gfns is safe because:
556 * - The spte has a reference to the struct page, so the pfn for a given gfn
557 * can't change unless all sptes pointing to it are nuked first.
558 * - Alias changes zap the entire shadow cache.
559 */
560static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
561{
562 int i, offset, nr_present;
563
564 offset = nr_present = 0;
565
566 if (PTTYPE == 32)
567 offset = sp->role.quadrant << PT64_LEVEL_BITS;
568
569 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
570 unsigned pte_access;
571 pt_element_t gpte;
572 gpa_t pte_gpa;
573 gfn_t gfn = sp->gfns[i];
574
575 if (!is_shadow_present_pte(sp->spt[i]))
576 continue;
577
578 pte_gpa = gfn_to_gpa(sp->gfn);
579 pte_gpa += (i+offset) * sizeof(pt_element_t);
580
581 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
582 sizeof(pt_element_t)))
583 return -EINVAL;
584
585 if (gpte_to_gfn(gpte) != gfn || !is_present_pte(gpte) ||
586 !(gpte & PT_ACCESSED_MASK)) {
587 u64 nonpresent;
588
589 rmap_remove(vcpu->kvm, &sp->spt[i]);
590 if (is_present_pte(gpte))
591 nonpresent = shadow_trap_nonpresent_pte;
592 else
593 nonpresent = shadow_notrap_nonpresent_pte;
594 set_shadow_pte(&sp->spt[i], nonpresent);
595 continue;
596 }
597
598 nr_present++;
599 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte);
600 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -0200601 is_dirty_pte(gpte), 0, gpte & PT_GLOBAL_MASK, gfn,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300602 spte_to_pfn(sp->spt[i]), true, false);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300603 }
604
605 return !nr_present;
606}
607
Avi Kivity6aa8b732006-12-10 02:21:36 -0800608#undef pt_element_t
609#undef guest_walker
Avi Kivityabb9e0b2008-08-22 19:11:39 +0300610#undef shadow_walker
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611#undef FNAME
612#undef PT_BASE_ADDR_MASK
613#undef PT_INDEX
Avi Kivity6aa8b732006-12-10 02:21:36 -0800614#undef PT_LEVEL_MASK
Avi Kivity6aa8b732006-12-10 02:21:36 -0800615#undef PT_DIR_BASE_ADDR_MASK
Avi Kivityc7addb92007-09-16 18:58:32 +0200616#undef PT_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800617#undef PT_MAX_FULL_LEVELS
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200618#undef gpte_to_gfn
619#undef gpte_to_gfn_pde
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500620#undef CMPXCHG