blob: 578276e34bd9e347ff1752b104e73d6cd5c2aee6 [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
Joerg Roedele04da982009-07-27 16:30:45 +020030 #define PT_LVL_ADDR_MASK(lvl) PT64_LVL_ADDR_MASK(lvl)
31 #define PT_LVL_OFFSET_MASK(lvl) PT64_LVL_OFFSET_MASK(lvl)
Avi Kivity6aa8b732006-12-10 02:21:36 -080032 #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
45 #define FNAME(name) paging##32_##name
46 #define PT_BASE_ADDR_MASK PT32_BASE_ADDR_MASK
Joerg Roedele04da982009-07-27 16:30:45 +020047 #define PT_LVL_ADDR_MASK(lvl) PT32_LVL_ADDR_MASK(lvl)
48 #define PT_LVL_OFFSET_MASK(lvl) PT32_LVL_OFFSET_MASK(lvl)
Avi Kivity6aa8b732006-12-10 02:21:36 -080049 #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
Joerg Roedele04da982009-07-27 16:30:45 +020058#define gpte_to_gfn_lvl FNAME(gpte_to_gfn_lvl)
59#define gpte_to_gfn(pte) gpte_to_gfn_lvl((pte), PT_PAGE_TABLE_LEVEL)
Avi Kivity5fb07dd2007-11-21 12:35:07 +020060
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
Joerg Roedele04da982009-07-27 16:30:45 +020076static gfn_t gpte_to_gfn_lvl(pt_element_t gpte, int lvl)
Avi Kivity5fb07dd2007-11-21 12:35:07 +020077{
Joerg Roedele04da982009-07-27 16:30:45 +020078 return (gpte & PT_LVL_ADDR_MASK(lvl)) >> PAGE_SHIFT;
Avi Kivity5fb07dd2007-11-21 12:35:07 +020079}
80
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050081static bool FNAME(cmpxchg_gpte)(struct kvm *kvm,
82 gfn_t table_gfn, unsigned index,
83 pt_element_t orig_pte, pt_element_t new_pte)
84{
85 pt_element_t ret;
86 pt_element_t *table;
87 struct page *page;
88
89 page = gfn_to_page(kvm, table_gfn);
Izik Eidus72dc67a2008-02-10 18:04:15 +020090
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050091 table = kmap_atomic(page, KM_USER0);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050092 ret = CMPXCHG(&table[index], orig_pte, new_pte);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -050093 kunmap_atomic(table, KM_USER0);
94
95 kvm_release_page_dirty(page);
96
97 return (ret != orig_pte);
98}
99
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200100static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte)
101{
102 unsigned access;
103
104 access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
105#if PTTYPE == 64
106 if (is_nx(vcpu))
107 access &= ~(gpte >> PT64_NX_SHIFT);
108#endif
109 return access;
110}
111
Avi Kivityac79c972007-01-05 16:36:40 -0800112/*
113 * Fetch a guest pte for a guest virtual address
114 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800115static int FNAME(walk_addr)(struct guest_walker *walker,
116 struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivity73b10872007-01-26 00:56:41 -0800117 int write_fault, int user_fault, int fetch_fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800118{
Avi Kivity42bf3f02007-10-17 12:18:47 +0200119 pt_element_t pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800120 gfn_t table_gfn;
Avi Kivityfe135d22007-12-09 16:15:46 +0200121 unsigned index, pt_access, pte_access;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200122 gpa_t pte_gpa;
Dong, Eddie82725b22009-03-30 16:21:08 +0800123 int rsvd_fault = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800124
Avi Kivity07420172009-07-06 12:21:32 +0300125 trace_kvm_mmu_pagetable_walk(addr, write_fault, user_fault,
126 fetch_fault);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500127walk:
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800128 walker->level = vcpu->arch.mmu.root_level;
129 pte = vcpu->arch.cr3;
Avi Kivity1b0973b2007-01-05 16:36:41 -0800130#if PTTYPE == 64
131 if (!is_long_mode(vcpu)) {
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300132 pte = kvm_pdptr_read(vcpu, (addr >> 30) & 3);
Avi Kivity07420172009-07-06 12:21:32 +0300133 trace_kvm_mmu_paging_element(pte, walker->level);
Avi Kivity43a37952009-06-10 14:12:05 +0300134 if (!is_present_gpte(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;
Avi Kivityac79c972007-01-05 16:36:40 -0800152
Izik Eidusec8d4ea2007-11-19 11:28:19 +0200153 kvm_read_guest(vcpu->kvm, pte_gpa, &pte, sizeof(pte));
Avi Kivity07420172009-07-06 12:21:32 +0300154 trace_kvm_mmu_paging_element(pte, walker->level);
Avi Kivity42bf3f02007-10-17 12:18:47 +0200155
Avi Kivity43a37952009-06-10 14:12:05 +0300156 if (!is_present_gpte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800157 goto not_present;
158
Dong, Eddie82725b22009-03-30 16:21:08 +0800159 rsvd_fault = is_rsvd_bits_set(vcpu, pte, walker->level);
160 if (rsvd_fault)
161 goto access_error;
162
Avi Kivity42bf3f02007-10-17 12:18:47 +0200163 if (write_fault && !is_writeble_pte(pte))
Avi Kivity7993ba42007-01-26 00:56:41 -0800164 if (user_fault || is_write_protection(vcpu))
165 goto access_error;
166
Avi Kivity42bf3f02007-10-17 12:18:47 +0200167 if (user_fault && !(pte & PT_USER_MASK))
Avi Kivity7993ba42007-01-26 00:56:41 -0800168 goto access_error;
169
Avi Kivity73b10872007-01-26 00:56:41 -0800170#if PTTYPE == 64
Avi Kivity42bf3f02007-10-17 12:18:47 +0200171 if (fetch_fault && is_nx(vcpu) && (pte & PT64_NX_MASK))
Avi Kivity73b10872007-01-26 00:56:41 -0800172 goto access_error;
173#endif
174
Avi Kivity42bf3f02007-10-17 12:18:47 +0200175 if (!(pte & PT_ACCESSED_MASK)) {
Avi Kivity07420172009-07-06 12:21:32 +0300176 trace_kvm_mmu_set_accessed_bit(table_gfn, index,
177 sizeof(pte));
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200178 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500179 if (FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn,
180 index, pte, pte|PT_ACCESSED_MASK))
181 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200182 pte |= PT_ACCESSED_MASK;
Avi Kivitybf3f8e82007-02-19 14:37:46 +0200183 }
Avi Kivityac79c972007-01-05 16:36:40 -0800184
Avi Kivitybedbe4e2007-12-09 16:52:56 +0200185 pte_access = pt_access & FNAME(gpte_access)(vcpu, pte);
Avi Kivityfe135d22007-12-09 16:15:46 +0200186
Marcelo Tosatti78190262007-12-11 19:12:27 -0500187 walker->ptes[walker->level - 1] = pte;
188
Joerg Roedele04da982009-07-27 16:30:45 +0200189 if ((walker->level == PT_PAGE_TABLE_LEVEL) ||
190 ((walker->level == PT_DIRECTORY_LEVEL) &&
191 (pte & PT_PAGE_SIZE_MASK) &&
192 (PTTYPE == 64 || is_pse(vcpu))) ||
193 ((walker->level == PT_PDPE_LEVEL) &&
194 (pte & PT_PAGE_SIZE_MASK) &&
195 is_long_mode(vcpu))) {
196 int lvl = walker->level;
Avi Kivity815af8d2007-01-05 16:36:44 -0800197
Joerg Roedele04da982009-07-27 16:30:45 +0200198 walker->gfn = gpte_to_gfn_lvl(pte, lvl);
199 walker->gfn += (addr & PT_LVL_OFFSET_MASK(lvl))
200 >> PAGE_SHIFT;
201
202 if (PTTYPE == 32 &&
203 walker->level == PT_DIRECTORY_LEVEL &&
204 is_cpuid_PSE36())
Avi Kivityda928522007-11-21 13:54:47 +0200205 walker->gfn += pse36_gfn_delta(pte);
Joerg Roedele04da982009-07-27 16:30:45 +0200206
Avi Kivity815af8d2007-01-05 16:36:44 -0800207 break;
208 }
209
Avi Kivityfe135d22007-12-09 16:15:46 +0200210 pt_access = pte_access;
Avi Kivityac79c972007-01-05 16:36:40 -0800211 --walker->level;
212 }
Avi Kivity42bf3f02007-10-17 12:18:47 +0200213
Avi Kivity43a37952009-06-10 14:12:05 +0300214 if (write_fault && !is_dirty_gpte(pte)) {
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500215 bool ret;
216
Avi Kivity07420172009-07-06 12:21:32 +0300217 trace_kvm_mmu_set_dirty_bit(table_gfn, index, sizeof(pte));
Avi Kivity42bf3f02007-10-17 12:18:47 +0200218 mark_page_dirty(vcpu->kvm, table_gfn);
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500219 ret = FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn, index, pte,
220 pte|PT_DIRTY_MASK);
221 if (ret)
222 goto walk;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200223 pte |= PT_DIRTY_MASK;
Marcelo Tosatti78190262007-12-11 19:12:27 -0500224 walker->ptes[walker->level - 1] = pte;
Avi Kivity42bf3f02007-10-17 12:18:47 +0200225 }
226
Avi Kivityfe135d22007-12-09 16:15:46 +0200227 walker->pt_access = pt_access;
228 walker->pte_access = pte_access;
229 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800230 __func__, (u64)pte, pt_access, pte_access);
Avi Kivity7993ba42007-01-26 00:56:41 -0800231 return 1;
232
233not_present:
234 walker->error_code = 0;
235 goto err;
236
237access_error:
238 walker->error_code = PFERR_PRESENT_MASK;
239
240err:
241 if (write_fault)
242 walker->error_code |= PFERR_WRITE_MASK;
243 if (user_fault)
244 walker->error_code |= PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800245 if (fetch_fault)
246 walker->error_code |= PFERR_FETCH_MASK;
Dong, Eddie82725b22009-03-30 16:21:08 +0800247 if (rsvd_fault)
248 walker->error_code |= PFERR_RSVD_MASK;
Avi Kivity07420172009-07-06 12:21:32 +0300249 trace_kvm_mmu_walker_error(walker->error_code);
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;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200259 int level = vcpu->arch.update_pte.level;
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)) {
Avi Kivity43a37952009-06-10 14:12:05 +0300263 if (!is_present_gpte(gpte))
Avi Kivityd555c332009-06-10 14:24:23 +0300264 __set_spte(spte, shadow_notrap_nonpresent_pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200265 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,
Joerg Roedel852e3c12009-07-27 16:30:44 +0200278 gpte & PT_DIRTY_MASK, NULL, level,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -0300279 gpte_to_gfn(gpte), pfn, true);
Avi Kivity00284252007-05-01 16:53:31 +0300280}
281
Avi Kivity6aa8b732006-12-10 02:21:36 -0800282/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800283 * Fetch a shadow pte for a specific level in the paging hierarchy.
284 */
285static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200286 struct guest_walker *gw,
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300287 int user_fault, int write_fault, int largepage,
Anthony Liguori35149e22008-04-02 14:46:56 -0500288 int *ptwrite, pfn_t pfn)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800289{
Avi Kivitye7a04c92008-12-25 15:10:50 +0200290 unsigned access = gw->pt_access;
291 struct kvm_mmu_page *shadow_page;
Jaswinder Singh Rajputbde89222009-05-20 09:59:35 +0530292 u64 spte, *sptep = NULL;
Avi Kivityf6e2c022009-01-11 13:02:10 +0200293 int direct;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200294 gfn_t table_gfn;
295 int r;
296 int level;
297 pt_element_t curr_pte;
298 struct kvm_shadow_walk_iterator iterator;
Avi Kivityac79c972007-01-05 16:36:40 -0800299
Avi Kivity43a37952009-06-10 14:12:05 +0300300 if (!is_present_gpte(gw->ptes[gw->level - 1]))
Avi Kivityac79c972007-01-05 16:36:40 -0800301 return NULL;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800302
Avi Kivitye7a04c92008-12-25 15:10:50 +0200303 for_each_shadow_entry(vcpu, addr, iterator) {
304 level = iterator.level;
305 sptep = iterator.sptep;
306 if (level == PT_PAGE_TABLE_LEVEL
307 || (largepage && level == PT_DIRECTORY_LEVEL)) {
308 mmu_set_spte(vcpu, sptep, access,
309 gw->pte_access & access,
310 user_fault, write_fault,
311 gw->ptes[gw->level-1] & PT_DIRTY_MASK,
Joerg Roedel852e3c12009-07-27 16:30:44 +0200312 ptwrite, level,
Avi Kivitye7a04c92008-12-25 15:10:50 +0200313 gw->gfn, pfn, false);
314 break;
315 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800316
Avi Kivitye7a04c92008-12-25 15:10:50 +0200317 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep))
318 continue;
319
320 if (is_large_pte(*sptep)) {
Joerg Roedelc5bc2242009-02-19 12:18:56 +0100321 rmap_remove(vcpu->kvm, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +0300322 __set_spte(sptep, shadow_trap_nonpresent_pte);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200323 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitye7a04c92008-12-25 15:10:50 +0200324 }
325
326 if (level == PT_DIRECTORY_LEVEL
327 && gw->level == PT_DIRECTORY_LEVEL) {
Avi Kivityf6e2c022009-01-11 13:02:10 +0200328 direct = 1;
Avi Kivity43a37952009-06-10 14:12:05 +0300329 if (!is_dirty_gpte(gw->ptes[level - 1]))
Avi Kivitye7a04c92008-12-25 15:10:50 +0200330 access &= ~ACC_WRITE_MASK;
331 table_gfn = gpte_to_gfn(gw->ptes[level - 1]);
332 } else {
Avi Kivityf6e2c022009-01-11 13:02:10 +0200333 direct = 0;
Avi Kivitye7a04c92008-12-25 15:10:50 +0200334 table_gfn = gw->table_gfn[level - 2];
335 }
336 shadow_page = kvm_mmu_get_page(vcpu, table_gfn, addr, level-1,
Avi Kivityf6e2c022009-01-11 13:02:10 +0200337 direct, access, sptep);
338 if (!direct) {
Avi Kivitye7a04c92008-12-25 15:10:50 +0200339 r = kvm_read_guest_atomic(vcpu->kvm,
340 gw->pte_gpa[level - 2],
341 &curr_pte, sizeof(curr_pte));
342 if (r || curr_pte != gw->ptes[level - 2]) {
343 kvm_mmu_put_page(shadow_page, sptep);
344 kvm_release_pfn_clean(pfn);
345 sptep = NULL;
346 break;
347 }
348 }
349
350 spte = __pa(shadow_page->spt)
351 | PT_PRESENT_MASK | PT_ACCESSED_MASK
352 | PT_WRITABLE_MASK | PT_USER_MASK;
353 *sptep = spte;
354 }
355
356 return sptep;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357}
358
359/*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800360 * Page fault handler. There are several causes for a page fault:
361 * - there is no shadow pte for the guest pte
362 * - write access through a shadow pte marked read only so that we can set
363 * the dirty bit
364 * - write access to a shadow pte marked read only so we can update the page
365 * dirty bitmap, when userspace requests it
366 * - mmio access; in this case we will never install a present shadow pte
367 * - normal guest page fault due to the guest pte marked not present, not
368 * writable, or not executable
369 *
Avi Kivitye2dec932007-01-05 16:36:54 -0800370 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
371 * a negative value on error.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800372 */
373static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
374 u32 error_code)
375{
376 int write_fault = error_code & PFERR_WRITE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800377 int user_fault = error_code & PFERR_USER_MASK;
Avi Kivity73b10872007-01-26 00:56:41 -0800378 int fetch_fault = error_code & PFERR_FETCH_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800379 struct guest_walker walker;
Avi Kivityd555c332009-06-10 14:24:23 +0300380 u64 *sptep;
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800381 int write_pt = 0;
Avi Kivitye2dec932007-01-05 16:36:54 -0800382 int r;
Anthony Liguori35149e22008-04-02 14:46:56 -0500383 pfn_t pfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300384 int largepage = 0;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200385 unsigned long mmu_seq;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800387 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800388 kvm_mmu_audit(vcpu, "pre page fault");
Avi Kivity714b93d2007-01-05 16:36:53 -0800389
Avi Kivitye2dec932007-01-05 16:36:54 -0800390 r = mmu_topup_memory_caches(vcpu);
391 if (r)
392 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -0800393
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394 /*
Eddie Donga8b876b2009-03-26 15:28:40 +0800395 * Look up the guest pte for the faulting address.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396 */
Avi Kivity73b10872007-01-26 00:56:41 -0800397 r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
398 fetch_fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800399
400 /*
401 * The page is not mapped by the guest. Let the guest handle it.
402 */
Avi Kivity7993ba42007-01-26 00:56:41 -0800403 if (!r) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800404 pgprintk("%s: guest page fault\n", __func__);
Avi Kivity7993ba42007-01-26 00:56:41 -0800405 inject_page_fault(vcpu, addr, walker.error_code);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800406 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800407 return 0;
408 }
409
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300410 if (walker.level == PT_DIRECTORY_LEVEL) {
411 gfn_t large_gfn;
Joerg Roedelec04b262009-06-19 15:16:23 +0200412 large_gfn = walker.gfn &
Joerg Roedeld25797b2009-07-27 16:30:43 +0200413 ~(KVM_PAGES_PER_HPAGE(PT_DIRECTORY_LEVEL) - 1);
414 if (mapping_level(vcpu, large_gfn) == PT_DIRECTORY_LEVEL) {
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300415 walker.gfn = large_gfn;
416 largepage = 1;
417 }
418 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200419 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300420 smp_rmb();
Anthony Liguori35149e22008-04-02 14:46:56 -0500421 pfn = gfn_to_pfn(vcpu->kvm, walker.gfn);
Avi Kivityd7824ff2007-12-30 12:29:05 +0200422
Avi Kivityd196e342008-01-24 11:44:11 +0200423 /* mmio */
Anthony Liguori35149e22008-04-02 14:46:56 -0500424 if (is_error_pfn(pfn)) {
Avi Kivityebb0e622008-05-20 16:21:58 +0300425 pgprintk("gfn %lx is mmio\n", walker.gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500426 kvm_release_pfn_clean(pfn);
Avi Kivityd196e342008-01-24 11:44:11 +0200427 return 1;
428 }
429
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500430 spin_lock(&vcpu->kvm->mmu_lock);
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200431 if (mmu_notifier_retry(vcpu, mmu_seq))
432 goto out_unlock;
Avi Kivityeb787d12007-12-31 15:27:49 +0200433 kvm_mmu_free_some_pages(vcpu);
Avi Kivityd555c332009-06-10 14:24:23 +0300434 sptep = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
435 largepage, &write_pt, pfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300436
Harvey Harrisonb8688d52008-03-03 12:59:56 -0800437 pgprintk("%s: shadow pte %p %llx ptwrite %d\n", __func__,
Avi Kivityd555c332009-06-10 14:24:23 +0300438 sptep, *sptep, write_pt);
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800439
Avi Kivitya25f7e12007-04-30 17:05:38 +0300440 if (!write_pt)
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800441 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
Avi Kivitya25f7e12007-04-30 17:05:38 +0300442
Avi Kivity1165f5f2007-04-19 17:27:43 +0300443 ++vcpu->stat.pf_fixed;
Avi Kivity37a7d8b2007-01-05 16:36:56 -0800444 kvm_mmu_audit(vcpu, "post page fault (fixed)");
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500445 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800447 return write_pt;
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200448
449out_unlock:
450 spin_unlock(&vcpu->kvm->mmu_lock);
451 kvm_release_pfn_clean(pfn);
452 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800453}
454
Marcelo Tosattia7052892008-09-23 13:18:35 -0300455static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
456{
Avi Kivitya4619302008-12-25 15:19:00 +0200457 struct kvm_shadow_walk_iterator iterator;
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200458 pt_element_t gpte;
Avi Kivitya4619302008-12-25 15:19:00 +0200459 gpa_t pte_gpa = -1;
460 int level;
461 u64 *sptep;
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100462 int need_flush = 0;
Marcelo Tosattia7052892008-09-23 13:18:35 -0300463
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200464 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200465
466 for_each_shadow_entry(vcpu, gva, iterator) {
467 level = iterator.level;
468 sptep = iterator.sptep;
469
470 /* FIXME: properly handle invlpg on large guest pages */
471 if (level == PT_PAGE_TABLE_LEVEL ||
472 ((level == PT_DIRECTORY_LEVEL) && is_large_pte(*sptep))) {
473 struct kvm_mmu_page *sp = page_header(__pa(sptep));
474
475 pte_gpa = (sp->gfn << PAGE_SHIFT);
476 pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
477
478 if (is_shadow_present_pte(*sptep)) {
479 rmap_remove(vcpu->kvm, sptep);
480 if (is_large_pte(*sptep))
481 --vcpu->kvm->stat.lpages;
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100482 need_flush = 1;
Avi Kivitya4619302008-12-25 15:19:00 +0200483 }
Avi Kivityd555c332009-06-10 14:24:23 +0300484 __set_spte(sptep, shadow_trap_nonpresent_pte);
Avi Kivitya4619302008-12-25 15:19:00 +0200485 break;
486 }
487
488 if (!is_shadow_present_pte(*sptep))
489 break;
490 }
491
Andrea Arcangeli4539b352009-03-12 18:18:43 +0100492 if (need_flush)
493 kvm_flush_remote_tlbs(vcpu->kvm);
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200494 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivitya4619302008-12-25 15:19:00 +0200495
496 if (pte_gpa == -1)
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200497 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200498 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200499 sizeof(pt_element_t)))
500 return;
Avi Kivity43a37952009-06-10 14:12:05 +0300501 if (is_present_gpte(gpte) && (gpte & PT_ACCESSED_MASK)) {
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200502 if (mmu_topup_memory_caches(vcpu))
503 return;
Avi Kivitya4619302008-12-25 15:19:00 +0200504 kvm_mmu_pte_write(vcpu, pte_gpa, (const u8 *)&gpte,
Marcelo Tosattiad218f82008-12-01 22:32:05 -0200505 sizeof(pt_element_t), 0);
506 }
Marcelo Tosattia7052892008-09-23 13:18:35 -0300507}
508
Avi Kivity6aa8b732006-12-10 02:21:36 -0800509static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr)
510{
511 struct guest_walker walker;
Avi Kivitye119d112007-02-12 00:54:36 -0800512 gpa_t gpa = UNMAPPED_GVA;
513 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800514
Avi Kivitye119d112007-02-12 00:54:36 -0800515 r = FNAME(walk_addr)(&walker, vcpu, vaddr, 0, 0, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800516
Avi Kivitye119d112007-02-12 00:54:36 -0800517 if (r) {
Avi Kivity1755fbc2007-11-21 14:44:45 +0200518 gpa = gfn_to_gpa(walker.gfn);
Avi Kivitye119d112007-02-12 00:54:36 -0800519 gpa |= vaddr & ~PAGE_MASK;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800520 }
521
522 return gpa;
523}
524
Avi Kivityc7addb92007-09-16 18:58:32 +0200525static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
526 struct kvm_mmu_page *sp)
527{
Avi Kivityeab9f712008-05-29 14:20:16 +0300528 int i, j, offset, r;
529 pt_element_t pt[256 / sizeof(pt_element_t)];
530 gpa_t pte_gpa;
Avi Kivityc7addb92007-09-16 18:58:32 +0200531
Avi Kivityf6e2c022009-01-11 13:02:10 +0200532 if (sp->role.direct
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200533 || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
Avi Kivityc7addb92007-09-16 18:58:32 +0200534 nonpaging_prefetch_page(vcpu, sp);
535 return;
536 }
537
Avi Kivityeab9f712008-05-29 14:20:16 +0300538 pte_gpa = gfn_to_gpa(sp->gfn);
539 if (PTTYPE == 32) {
Avi Kivitye5a4c8c2007-11-20 21:39:54 +0200540 offset = sp->role.quadrant << PT64_LEVEL_BITS;
Avi Kivityeab9f712008-05-29 14:20:16 +0300541 pte_gpa += offset * sizeof(pt_element_t);
542 }
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500543
Avi Kivityeab9f712008-05-29 14:20:16 +0300544 for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
545 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
546 pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
547 for (j = 0; j < ARRAY_SIZE(pt); ++j)
Avi Kivity43a37952009-06-10 14:12:05 +0300548 if (r || is_present_gpte(pt[j]))
Avi Kivityeab9f712008-05-29 14:20:16 +0300549 sp->spt[i+j] = shadow_trap_nonpresent_pte;
550 else
551 sp->spt[i+j] = shadow_notrap_nonpresent_pte;
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500552 }
Avi Kivityc7addb92007-09-16 18:58:32 +0200553}
554
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300555/*
556 * Using the cached information from sp->gfns is safe because:
557 * - The spte has a reference to the struct page, so the pfn for a given gfn
558 * can't change unless all sptes pointing to it are nuked first.
559 * - Alias changes zap the entire shadow cache.
560 */
561static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
562{
563 int i, offset, nr_present;
564
565 offset = nr_present = 0;
566
567 if (PTTYPE == 32)
568 offset = sp->role.quadrant << PT64_LEVEL_BITS;
569
570 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
571 unsigned pte_access;
572 pt_element_t gpte;
573 gpa_t pte_gpa;
574 gfn_t gfn = sp->gfns[i];
575
576 if (!is_shadow_present_pte(sp->spt[i]))
577 continue;
578
579 pte_gpa = gfn_to_gpa(sp->gfn);
580 pte_gpa += (i+offset) * sizeof(pt_element_t);
581
582 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
583 sizeof(pt_element_t)))
584 return -EINVAL;
585
Avi Kivity43a37952009-06-10 14:12:05 +0300586 if (gpte_to_gfn(gpte) != gfn || !is_present_gpte(gpte) ||
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300587 !(gpte & PT_ACCESSED_MASK)) {
588 u64 nonpresent;
589
590 rmap_remove(vcpu->kvm, &sp->spt[i]);
Avi Kivity43a37952009-06-10 14:12:05 +0300591 if (is_present_gpte(gpte))
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300592 nonpresent = shadow_trap_nonpresent_pte;
593 else
594 nonpresent = shadow_notrap_nonpresent_pte;
Avi Kivityd555c332009-06-10 14:24:23 +0300595 __set_spte(&sp->spt[i], nonpresent);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300596 continue;
597 }
598
599 nr_present++;
600 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte);
601 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
Avi Kivity43a37952009-06-10 14:12:05 +0300602 is_dirty_gpte(gpte), 0, gfn,
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300603 spte_to_pfn(sp->spt[i]), true, false);
Marcelo Tosattie8bc2172008-09-23 13:18:33 -0300604 }
605
606 return !nr_present;
607}
608
Avi Kivity6aa8b732006-12-10 02:21:36 -0800609#undef pt_element_t
610#undef guest_walker
611#undef FNAME
612#undef PT_BASE_ADDR_MASK
613#undef PT_INDEX
Avi Kivity6aa8b732006-12-10 02:21:36 -0800614#undef PT_LEVEL_MASK
Joerg Roedele04da982009-07-27 16:30:45 +0200615#undef PT_LVL_ADDR_MASK
616#undef PT_LVL_OFFSET_MASK
Avi Kivityc7addb92007-09-16 18:58:32 +0200617#undef PT_LEVEL_BITS
Avi Kivitycea0f0e2007-01-05 16:36:43 -0800618#undef PT_MAX_FULL_LEVELS
Avi Kivity5fb07dd2007-11-21 12:35:07 +0200619#undef gpte_to_gfn
Joerg Roedele04da982009-07-27 16:30:45 +0200620#undef gpte_to_gfn_lvl
Marcelo Tosattib3e4e632007-12-07 07:56:58 -0500621#undef CMPXCHG