blob: b167f0d57b5424a0253394f47208602f51b48bd9 [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;
Dong, Eddie82725b22009-03-30 16:21:08 +0800126 int rsvd_fault = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800127
Avi Kivity07420172009-07-06 12:21:32 +0300128 trace_kvm_mmu_pagetable_walk(addr, write_fault, user_fault,
129 fetch_fault);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500130walk:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800131 walker->level = vcpu->arch.mmu.root_level;
132 pte = vcpu->arch.cr3;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800133#if PTTYPE == 64
134 if (!is_long_mode(vcpu)) {
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300135 pte = kvm_pdptr_read(vcpu, (addr >> 30) & 3);
Avi Kivity07420172009-07-06 12:21:32 +0300136 trace_kvm_mmu_paging_element(pte, walker->level);
Avi Kivity43a37952009-06-10 14:12:05 +0300137 if (!is_present_gpte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800138 goto not_present;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800139 --walker->level;
140 }
141#endif
Avi Kivitya9058ec2006-12-29 16:49:37 -0800142 ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
Marcelo Tosatti24993d52008-02-14 21:25:39 -0200143 (vcpu->arch.cr3 & CR3_NONPAE_RESERVED_BITS) == 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800144
Avi Kivityfe135d22007-12-09 16:15:46 +0200145 pt_access = ACC_ALL;
Avi Kivityac79c972007-01-05 16:36:40 -0800146
147 for (;;) {
Avi Kivity42bf3f02007-10-17 12:18:47 +0200148 index = PT_INDEX(addr, walker->level);
Avi Kivityac79c972007-01-05 16:36:40 -0800149
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200150 table_gfn = gpte_to_gfn(pte);
Avi Kivity1755fbc2007-11-21 14:44:45 +0200151 pte_gpa = gfn_to_gpa(table_gfn);
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200152 pte_gpa += index * sizeof(pt_element_t);
Avi Kivity42bf3f02007-10-17 12:18:47 +0200153 walker->table_gfn[walker->level - 1] = table_gfn;
Marcelo Tosatti78190262007-12-11 19:12:27 -0500154 walker->pte_gpa[walker->level - 1] = pte_gpa;
Avi Kivityac79c972007-01-05 16:36:40 -0800155
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200156 kvm_read_guest(vcpu->kvm, pte_gpa, &pte, sizeof(pte));
Avi Kivity07420172009-07-06 12:21:32 +0300157 trace_kvm_mmu_paging_element(pte, walker->level);
Avi Kivity42bf3f02007-10-17 12:18:47 +0200158
Avi Kivity43a37952009-06-10 14:12:05 +0300159 if (!is_present_gpte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800160 goto not_present;
161
Dong, Eddie82725b22009-03-30 16:21:08 +0800162 rsvd_fault = is_rsvd_bits_set(vcpu, pte, walker->level);
163 if (rsvd_fault)
164 goto access_error;
165
Avi Kivity42bf3f02007-10-17 12:18:47 +0200166 if (write_fault && !is_writeble_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800167 if (user_fault || is_write_protection(vcpu))
168 goto access_error;
169
Avi Kivity42bf3f02007-10-17 12:18:47 +0200170 if (user_fault && !(pte & PT_USER_MASK))
Avi Kivity7993ba42007-01-26 00:56:41 -0800171 goto access_error;
172
Avi Kivity73b10872007-01-26 00:56:41 -0800173#if PTTYPE == 64
Avi Kivity42bf3f02007-10-17 12:18:47 +0200174 if (fetch_fault && is_nx(vcpu) && (pte & PT64_NX_MASK))
Avi Kivity73b10872007-01-26 00:56:41 -0800175 goto access_error;
176#endif
177
Avi Kivity42bf3f02007-10-17 12:18:47 +0200178 if (!(pte & PT_ACCESSED_MASK)) {
Avi Kivity07420172009-07-06 12:21:32 +0300179 trace_kvm_mmu_set_accessed_bit(table_gfn, index,
180 sizeof(pte));
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200181 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500182 if (FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn,
183 index, pte, pte|PT_ACCESSED_MASK))
184 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200185 pte |= PT_ACCESSED_MASK;
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200186 }
Avi Kivityac79c972007-01-05 16:36:40 -0800187
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200188 pte_access = pt_access & FNAME(gpte_access)(vcpu, pte);
Avi Kivityfe135d22007-12-09 16:15:46 +0200189
Marcelo Tosatti78190262007-12-11 19:12:27 -0500190 walker->ptes[walker->level - 1] = pte;
191
Avi Kivity815af8d2007-01-05 16:36:44 -0800192 if (walker->level == PT_PAGE_TABLE_LEVEL) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200193 walker->gfn = gpte_to_gfn(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800194 break;
195 }
196
197 if (walker->level == PT_DIRECTORY_LEVEL
Avi Kivity42bf3f02007-10-17 12:18:47 +0200198 && (pte & PT_PAGE_SIZE_MASK)
Avi Kivity815af8d2007-01-05 16:36:44 -0800199 && (PTTYPE == 64 || is_pse(vcpu))) {
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200200 walker->gfn = gpte_to_gfn_pde(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800201 walker->gfn += PT_INDEX(addr, PT_PAGE_TABLE_LEVEL);
Avi Kivityda928522007-11-21 13:54:47 +0200202 if (PTTYPE == 32 && is_cpuid_PSE36())
203 walker->gfn += pse36_gfn_delta(pte);
Avi Kivity815af8d2007-01-05 16:36:44 -0800204 break;
205 }
206
Avi Kivityfe135d22007-12-09 16:15:46 +0200207 pt_access = pte_access;
Avi Kivityac79c972007-01-05 16:36:40 -0800208 --walker->level;
209 }
Avi Kivity42bf3f02007-10-17 12:18:47 +0200210
Avi Kivity43a37952009-06-10 14:12:05 +0300211 if (write_fault && !is_dirty_gpte(pte)) {
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500212 bool ret;
213
Avi Kivity07420172009-07-06 12:21:32 +0300214 trace_kvm_mmu_set_dirty_bit(table_gfn, index, sizeof(pte));
Avi Kivity42bf3f02007-10-17 12:18:47 +0200215 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500216 ret = FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn, index, pte,
217 pte|PT_DIRTY_MASK);
218 if (ret)
219 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200220 pte |= PT_DIRTY_MASK;
Marcelo Tosatti78190262007-12-11 19:12:27 -0500221 walker->ptes[walker->level - 1] = pte;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200222 }
223
Avi Kivityfe135d22007-12-09 16:15:46 +0200224 walker->pt_access = pt_access;
225 walker->pte_access = pte_access;
226 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800227 __func__, (u64)pte, pt_access, pte_access);
Avi Kivity7993ba42007-01-26 00:56:41 -0800228 return 1;
229
230not_present:
231 walker->error_code = 0;
232 goto err;
233
234access_error:
235 walker->error_code = PFERR_PRESENT_MASK;
236
237err:
238 if (write_fault)
239 walker->error_code |= PFERR_WRITE_MASK;
240 if (user_fault)
241 walker->error_code |= PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800242 if (fetch_fault)
243 walker->error_code |= PFERR_FETCH_MASK;
Dong, Eddie82725b22009-03-30 16:21:08 +0800244 if (rsvd_fault)
245 walker->error_code |= PFERR_RSVD_MASK;
Avi Kivity07420172009-07-06 12:21:32 +0300246 trace_kvm_mmu_walker_error(walker->error_code);
Shaohua Life551882007-07-23 14:51:39 +0800247 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800248}
249
Avi Kivity00284252007-05-01 16:53:31 +0300250static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *page,
Dong, Eddie489f1d62008-01-07 11:14:20 +0200251 u64 *spte, const void *pte)
Avi Kivity00284252007-05-01 16:53:31 +0300252{
253 pt_element_t gpte;
Avi Kivity41074d02007-12-09 17:00:02 +0200254 unsigned pte_access;
Anthony Liguori35149e22008-04-02 14:46:56 -0500255 pfn_t pfn;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200256 int level = vcpu->arch.update_pte.level;
Avi Kivity00284252007-05-01 16:53:31 +0300257
Avi Kivity00284252007-05-01 16:53:31 +0300258 gpte = *(const pt_element_t *)pte;
Avi Kivityc7addb92007-09-16 18:58:32 +0200259 if (~gpte & (PT_PRESENT_MASK | PT_ACCESSED_MASK)) {
Avi Kivity43a37952009-06-10 14:12:05 +0300260 if (!is_present_gpte(gpte))
Avi Kivityd555c332009-06-10 14:24:23 +0300261 __set_spte(spte, shadow_notrap_nonpresent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200262 return;
263 }
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800264 pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
Avi Kivity41074d02007-12-09 17:00:02 +0200265 pte_access = page->role.access & FNAME(gpte_access)(vcpu, gpte);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200266 if (gpte_to_gfn(gpte) != vcpu->arch.update_pte.gfn)
267 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500268 pfn = vcpu->arch.update_pte.pfn;
269 if (is_error_pfn(pfn))
Avi Kivityd7824ff2007-12-30 12:29:05 +0200270 return;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200271 if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq))
272 return;
Anthony Liguori35149e22008-04-02 14:46:56 -0500273 kvm_get_pfn(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +0200274 mmu_set_spte(vcpu, spte, page->role.access, pte_access, 0, 0,
Joerg Roedel852e3c12009-07-27 16:30:44 +0200275 gpte & PT_DIRTY_MASK, NULL, level,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -0300276 gpte_to_gfn(gpte), pfn, true);
Avi Kivity00284252007-05-01 16:53:31 +0300277}
278
Avi Kivity6aa8b732006-12-10 02:21:36 -0800279/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800280 * Fetch a shadow pte for a specific level in the paging hierarchy.
281 */
282static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200283 struct guest_walker *gw,
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300284 int user_fault, int write_fault, int largepage,
Anthony Liguori35149e22008-04-02 14:46:56 -0500285 int *ptwrite, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800286{
Avi Kivitye7a04c92008-12-25 15:10:50 +0200287 unsigned access = gw->pt_access;
288 struct kvm_mmu_page *shadow_page;
Jaswinder Singh Rajputbde89222009-05-20 09:59:35 +0530289 u64 spte, *sptep = NULL;
Avi Kivityf6e2c022009-01-11 13:02:10 +0200290 int direct;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200291 gfn_t table_gfn;
292 int r;
293 int level;
294 pt_element_t curr_pte;
295 struct kvm_shadow_walk_iterator iterator;
Avi Kivityac79c972007-01-05 16:36:40 -0800296
Avi Kivity43a37952009-06-10 14:12:05 +0300297 if (!is_present_gpte(gw->ptes[gw->level - 1]))
Avi Kivityac79c972007-01-05 16:36:40 -0800298 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299
Avi Kivitye7a04c92008-12-25 15:10:50 +0200300 for_each_shadow_entry(vcpu, addr, iterator) {
301 level = iterator.level;
302 sptep = iterator.sptep;
303 if (level == PT_PAGE_TABLE_LEVEL
304 || (largepage && level == PT_DIRECTORY_LEVEL)) {
305 mmu_set_spte(vcpu, sptep, access,
306 gw->pte_access & access,
307 user_fault, write_fault,
308 gw->ptes[gw->level-1] & PT_DIRTY_MASK,
Joerg Roedel852e3c12009-07-27 16:30:44 +0200309 ptwrite, level,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200310 gw->gfn, pfn, false);
311 break;
312 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800313
Avi Kivitye7a04c92008-12-25 15:10:50 +0200314 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep))
315 continue;
316
317 if (is_large_pte(*sptep)) {
Joerg Roedelc5bc2242009-02-19 12:18:56 +0100318 rmap_remove(vcpu->kvm, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +0300319 __set_spte(sptep, shadow_trap_nonpresent_pte);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200320 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200321 }
322
323 if (level == PT_DIRECTORY_LEVEL
324 && gw->level == PT_DIRECTORY_LEVEL) {
Avi Kivityf6e2c022009-01-11 13:02:10 +0200325 direct = 1;
Avi Kivity43a37952009-06-10 14:12:05 +0300326 if (!is_dirty_gpte(gw->ptes[level - 1]))
Avi Kivitye7a04c92008-12-25 15:10:50 +0200327 access &= ~ACC_WRITE_MASK;
328 table_gfn = gpte_to_gfn(gw->ptes[level - 1]);
329 } else {
Avi Kivityf6e2c022009-01-11 13:02:10 +0200330 direct = 0;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200331 table_gfn = gw->table_gfn[level - 2];
332 }
333 shadow_page = kvm_mmu_get_page(vcpu, table_gfn, addr, level-1,
Avi Kivityf6e2c022009-01-11 13:02:10 +0200334 direct, access, sptep);
335 if (!direct) {
Avi Kivitye7a04c92008-12-25 15:10:50 +0200336 r = kvm_read_guest_atomic(vcpu->kvm,
337 gw->pte_gpa[level - 2],
338 &curr_pte, sizeof(curr_pte));
339 if (r || curr_pte != gw->ptes[level - 2]) {
340 kvm_mmu_put_page(shadow_page, sptep);
341 kvm_release_pfn_clean(pfn);
342 sptep = NULL;
343 break;
344 }
345 }
346
347 spte = __pa(shadow_page->spt)
348 | PT_PRESENT_MASK | PT_ACCESSED_MASK
349 | PT_WRITABLE_MASK | PT_USER_MASK;
350 *sptep = spte;
351 }
352
353 return sptep;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800354}
355
356/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357 * Page fault handler. There are several causes for a page fault:
358 * - there is no shadow pte for the guest pte
359 * - write access through a shadow pte marked read only so that we can set
360 * the dirty bit
361 * - write access to a shadow pte marked read only so we can update the page
362 * dirty bitmap, when userspace requests it
363 * - mmio access; in this case we will never install a present shadow pte
364 * - normal guest page fault due to the guest pte marked not present, not
365 * writable, or not executable
366 *
Avi Kivitye2dec932007-01-05 16:36:54 -0800367 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
368 * a negative value on error.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800369 */
370static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
371 u32 error_code)
372{
373 int write_fault = error_code & PFERR_WRITE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800374 int user_fault = error_code & PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800375 int fetch_fault = error_code & PFERR_FETCH_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376 struct guest_walker walker;
Avi Kivityd555c332009-06-10 14:24:23 +0300377 u64 *sptep;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800378 int write_pt = 0;
Avi Kivitye2dec932007-01-05 16:36:54 -0800379 int r;
Anthony Liguori35149e22008-04-02 14:46:56 -0500380 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300381 int largepage = 0;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200382 unsigned long mmu_seq;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800383
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800384 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800385 kvm_mmu_audit(vcpu, "pre page fault");
Avi Kivity714b93d2007-01-05 16:36:53 -0800386
Avi Kivitye2dec932007-01-05 16:36:54 -0800387 r = mmu_topup_memory_caches(vcpu);
388 if (r)
389 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800390
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391 /*
Eddie Donga8b876b2009-03-26 15:28:40 +0800392 * Look up the guest pte for the faulting address.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800393 */
Avi Kivity73b10872007-01-26 00:56:41 -0800394 r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
395 fetch_fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396
397 /*
398 * The page is not mapped by the guest. Let the guest handle it.
399 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800400 if (!r) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800401 pgprintk("%s: guest page fault\n", __func__);
Avi Kivity7993ba42007-01-26 00:56:41 -0800402 inject_page_fault(vcpu, addr, walker.error_code);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800403 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800404 return 0;
405 }
406
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300407 if (walker.level == PT_DIRECTORY_LEVEL) {
408 gfn_t large_gfn;
Joerg Roedelec04b262009-06-19 15:16:23 +0200409 large_gfn = walker.gfn &
Joerg Roedeld25797b2009-07-27 16:30:43 +0200410 ~(KVM_PAGES_PER_HPAGE(PT_DIRECTORY_LEVEL) - 1);
411 if (mapping_level(vcpu, large_gfn) == PT_DIRECTORY_LEVEL) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300412 walker.gfn = large_gfn;
413 largepage = 1;
414 }
415 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200416 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300417 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -0500418 pfn = gfn_to_pfn(vcpu->kvm, walker.gfn);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200419
Avi Kivityd196e342008-01-24 11:44:11 +0200420 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -0500421 if (is_error_pfn(pfn)) {
Avi Kivityebb0e622008-05-20 16:21:58 +0300422 pgprintk("gfn %lx is mmio\n", walker.gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500423 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +0200424 return 1;
425 }
426
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500427 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200428 if (mmu_notifier_retry(vcpu, mmu_seq))
429 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +0200430 kvm_mmu_free_some_pages(vcpu);
Avi Kivityd555c332009-06-10 14:24:23 +0300431 sptep = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
432 largepage, &write_pt, pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300433
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800434 pgprintk("%s: shadow pte %p %llx ptwrite %d\n", __func__,
Avi Kivityd555c332009-06-10 14:24:23 +0300435 sptep, *sptep, write_pt);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800436
Avi Kivitya25f7e12007-04-30 17:05:38 +0300437 if (!write_pt)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800438 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivitya25f7e12007-04-30 17:05:38 +0300439
Avi Kivity1165f5f2007-04-19 17:27:43 +0300440 ++vcpu->stat.pf_fixed;
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800441 kvm_mmu_audit(vcpu, "post page fault (fixed)");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500442 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800443
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800444 return write_pt;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200445
446out_unlock:
447 spin_unlock(&vcpu->kvm->mmu_lock);
448 kvm_release_pfn_clean(pfn);
449 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800450}
451
Marcelo Tosattia7052892008-09-23 13:18:35 -0300452static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
453{
Avi Kivitya4619302008-12-25 15:19:00 +0200454 struct kvm_shadow_walk_iterator iterator;
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200455 pt_element_t gpte;
Avi Kivitya4619302008-12-25 15:19:00 +0200456 gpa_t pte_gpa = -1;
457 int level;
458 u64 *sptep;
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100459 int need_flush = 0;
Marcelo Tosattia7052892008-09-23 13:18:35 -0300460
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200461 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200462
463 for_each_shadow_entry(vcpu, gva, iterator) {
464 level = iterator.level;
465 sptep = iterator.sptep;
466
467 /* FIXME: properly handle invlpg on large guest pages */
468 if (level == PT_PAGE_TABLE_LEVEL ||
469 ((level == PT_DIRECTORY_LEVEL) && is_large_pte(*sptep))) {
470 struct kvm_mmu_page *sp = page_header(__pa(sptep));
471
472 pte_gpa = (sp->gfn << PAGE_SHIFT);
473 pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
474
475 if (is_shadow_present_pte(*sptep)) {
476 rmap_remove(vcpu->kvm, sptep);
477 if (is_large_pte(*sptep))
478 --vcpu->kvm->stat.lpages;
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100479 need_flush = 1;
Avi Kivitya4619302008-12-25 15:19:00 +0200480 }
Avi Kivityd555c332009-06-10 14:24:23 +0300481 __set_spte(sptep, shadow_trap_nonpresent_pte);
Avi Kivitya4619302008-12-25 15:19:00 +0200482 break;
483 }
484
485 if (!is_shadow_present_pte(*sptep))
486 break;
487 }
488
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100489 if (need_flush)
490 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200491 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200492
493 if (pte_gpa == -1)
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200494 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200495 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200496 sizeof(pt_element_t)))
497 return;
Avi Kivity43a37952009-06-10 14:12:05 +0300498 if (is_present_gpte(gpte) && (gpte & PT_ACCESSED_MASK)) {
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200499 if (mmu_topup_memory_caches(vcpu))
500 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200501 kvm_mmu_pte_write(vcpu, pte_gpa, (const u8 *)&gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200502 sizeof(pt_element_t), 0);
503 }
Marcelo Tosattia7052892008-09-23 13:18:35 -0300504}
505
Avi Kivity6aa8b732006-12-10 02:21:36 -0800506static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr)
507{
508 struct guest_walker walker;
Avi Kivitye119d112007-02-12 00:54:36 -0800509 gpa_t gpa = UNMAPPED_GVA;
510 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800511
Avi Kivitye119d112007-02-12 00:54:36 -0800512 r = FNAME(walk_addr)(&walker, vcpu, vaddr, 0, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800513
Avi Kivitye119d112007-02-12 00:54:36 -0800514 if (r) {
Avi Kivity1755fbc2007-11-21 14:44:45 +0200515 gpa = gfn_to_gpa(walker.gfn);
Avi Kivitye119d112007-02-12 00:54:36 -0800516 gpa |= vaddr & ~PAGE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800517 }
518
519 return gpa;
520}
521
Avi Kivityc7addb92007-09-16 18:58:32 +0200522static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
523 struct kvm_mmu_page *sp)
524{
Avi Kivityeab9f712008-05-29 14:20:16 +0300525 int i, j, offset, r;
526 pt_element_t pt[256 / sizeof(pt_element_t)];
527 gpa_t pte_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +0200528
Avi Kivityf6e2c022009-01-11 13:02:10 +0200529 if (sp->role.direct
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200530 || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200531 nonpaging_prefetch_page(vcpu, sp);
532 return;
533 }
534
Avi Kivityeab9f712008-05-29 14:20:16 +0300535 pte_gpa = gfn_to_gpa(sp->gfn);
536 if (PTTYPE == 32) {
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200537 offset = sp->role.quadrant << PT64_LEVEL_BITS;
Avi Kivityeab9f712008-05-29 14:20:16 +0300538 pte_gpa += offset * sizeof(pt_element_t);
539 }
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500540
Avi Kivityeab9f712008-05-29 14:20:16 +0300541 for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
542 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
543 pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
544 for (j = 0; j < ARRAY_SIZE(pt); ++j)
Avi Kivity43a37952009-06-10 14:12:05 +0300545 if (r || is_present_gpte(pt[j]))
Avi Kivityeab9f712008-05-29 14:20:16 +0300546 sp->spt[i+j] = shadow_trap_nonpresent_pte;
547 else
548 sp->spt[i+j] = shadow_notrap_nonpresent_pte;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500549 }
Avi Kivityc7addb92007-09-16 18:58:32 +0200550}
551
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300552/*
553 * Using the cached information from sp->gfns is safe because:
554 * - The spte has a reference to the struct page, so the pfn for a given gfn
555 * can't change unless all sptes pointing to it are nuked first.
556 * - Alias changes zap the entire shadow cache.
557 */
558static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
559{
560 int i, offset, nr_present;
561
562 offset = nr_present = 0;
563
564 if (PTTYPE == 32)
565 offset = sp->role.quadrant << PT64_LEVEL_BITS;
566
567 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
568 unsigned pte_access;
569 pt_element_t gpte;
570 gpa_t pte_gpa;
571 gfn_t gfn = sp->gfns[i];
572
573 if (!is_shadow_present_pte(sp->spt[i]))
574 continue;
575
576 pte_gpa = gfn_to_gpa(sp->gfn);
577 pte_gpa += (i+offset) * sizeof(pt_element_t);
578
579 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
580 sizeof(pt_element_t)))
581 return -EINVAL;
582
Avi Kivity43a37952009-06-10 14:12:05 +0300583 if (gpte_to_gfn(gpte) != gfn || !is_present_gpte(gpte) ||
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300584 !(gpte & PT_ACCESSED_MASK)) {
585 u64 nonpresent;
586
587 rmap_remove(vcpu->kvm, &sp->spt[i]);
Avi Kivity43a37952009-06-10 14:12:05 +0300588 if (is_present_gpte(gpte))
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300589 nonpresent = shadow_trap_nonpresent_pte;
590 else
591 nonpresent = shadow_notrap_nonpresent_pte;
Avi Kivityd555c332009-06-10 14:24:23 +0300592 __set_spte(&sp->spt[i], nonpresent);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300593 continue;
594 }
595
596 nr_present++;
597 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte);
598 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
Avi Kivity43a37952009-06-10 14:12:05 +0300599 is_dirty_gpte(gpte), 0, gfn,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300600 spte_to_pfn(sp->spt[i]), true, false);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300601 }
602
603 return !nr_present;
604}
605
Avi Kivity6aa8b732006-12-10 02:21:36 -0800606#undef pt_element_t
607#undef guest_walker
608#undef FNAME
609#undef PT_BASE_ADDR_MASK
610#undef PT_INDEX
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611#undef PT_LEVEL_MASK
Avi Kivity6aa8b732006-12-10 02:21:36 -0800612#undef PT_DIR_BASE_ADDR_MASK
Avi Kivityc7addb92007-09-16 18:58:32 +0200613#undef PT_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800614#undef PT_MAX_FULL_LEVELS
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200615#undef gpte_to_gfn
616#undef gpte_to_gfn_pde
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500617#undef CMPXCHG