KVM: MMU: split kvm_mmu_free_page
[deliverable/linux.git] / arch / x86 / kvm / paging_tmpl.h
CommitLineData
6aa8b732
AK
1/*
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.
9611c187 10 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
11 *
12 * Authors:
13 * Yaniv Kamay <yaniv@qumranet.com>
14 * Avi Kivity <avi@qumranet.com>
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 *
19 */
20
21/*
22 * We need the mmu code to access both 32-bit and 64-bit guest ptes,
23 * so the code in this file is compiled twice, once per pte size.
24 */
25
26#if PTTYPE == 64
27 #define pt_element_t u64
28 #define guest_walker guest_walker64
29 #define FNAME(name) paging##64_##name
30 #define PT_BASE_ADDR_MASK PT64_BASE_ADDR_MASK
e04da980
JR
31 #define PT_LVL_ADDR_MASK(lvl) PT64_LVL_ADDR_MASK(lvl)
32 #define PT_LVL_OFFSET_MASK(lvl) PT64_LVL_OFFSET_MASK(lvl)
6aa8b732 33 #define PT_INDEX(addr, level) PT64_INDEX(addr, level)
c7addb90 34 #define PT_LEVEL_BITS PT64_LEVEL_BITS
cea0f0e7
AK
35 #ifdef CONFIG_X86_64
36 #define PT_MAX_FULL_LEVELS 4
b3e4e63f 37 #define CMPXCHG cmpxchg
cea0f0e7 38 #else
b3e4e63f 39 #define CMPXCHG cmpxchg64
cea0f0e7
AK
40 #define PT_MAX_FULL_LEVELS 2
41 #endif
6aa8b732
AK
42#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
e04da980
JR
47 #define PT_LVL_ADDR_MASK(lvl) PT32_LVL_ADDR_MASK(lvl)
48 #define PT_LVL_OFFSET_MASK(lvl) PT32_LVL_OFFSET_MASK(lvl)
6aa8b732 49 #define PT_INDEX(addr, level) PT32_INDEX(addr, level)
c7addb90 50 #define PT_LEVEL_BITS PT32_LEVEL_BITS
cea0f0e7 51 #define PT_MAX_FULL_LEVELS 2
b3e4e63f 52 #define CMPXCHG cmpxchg
6aa8b732
AK
53#else
54 #error Invalid PTTYPE value
55#endif
56
e04da980
JR
57#define gpte_to_gfn_lvl FNAME(gpte_to_gfn_lvl)
58#define gpte_to_gfn(pte) gpte_to_gfn_lvl((pte), PT_PAGE_TABLE_LEVEL)
5fb07ddb 59
6aa8b732
AK
60/*
61 * The guest_walker structure emulates the behavior of the hardware page
62 * table walker.
63 */
64struct guest_walker {
65 int level;
cea0f0e7 66 gfn_t table_gfn[PT_MAX_FULL_LEVELS];
7819026e 67 pt_element_t ptes[PT_MAX_FULL_LEVELS];
189be38d 68 pt_element_t prefetch_ptes[PTE_PREFETCH_NUM];
7819026e 69 gpa_t pte_gpa[PT_MAX_FULL_LEVELS];
fe135d2c
AK
70 unsigned pt_access;
71 unsigned pte_access;
815af8d4 72 gfn_t gfn;
8c28d031 73 struct x86_exception fault;
6aa8b732
AK
74};
75
e04da980 76static gfn_t gpte_to_gfn_lvl(pt_element_t gpte, int lvl)
5fb07ddb 77{
e04da980 78 return (gpte & PT_LVL_ADDR_MASK(lvl)) >> PAGE_SHIFT;
5fb07ddb
AK
79}
80
a78484c6 81static int FNAME(cmpxchg_gpte)(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
c8cfbb55
TY
82 pt_element_t __user *ptep_user, unsigned index,
83 pt_element_t orig_pte, pt_element_t new_pte)
b3e4e63f 84{
c8cfbb55 85 int npages;
b3e4e63f
MT
86 pt_element_t ret;
87 pt_element_t *table;
88 struct page *page;
89
c8cfbb55
TY
90 npages = get_user_pages_fast((unsigned long)ptep_user, 1, 1, &page);
91 /* Check if the user is doing something meaningless. */
92 if (unlikely(npages != 1))
a78484c6
RJ
93 return -EFAULT;
94
b3e4e63f 95 table = kmap_atomic(page, KM_USER0);
b3e4e63f 96 ret = CMPXCHG(&table[index], orig_pte, new_pte);
b3e4e63f
MT
97 kunmap_atomic(table, KM_USER0);
98
99 kvm_release_page_dirty(page);
100
101 return (ret != orig_pte);
102}
103
640d9b0d
XG
104static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte,
105 bool last)
bedbe4ee
AK
106{
107 unsigned access;
108
109 access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
640d9b0d
XG
110 if (last && !is_dirty_gpte(gpte))
111 access &= ~ACC_WRITE_MASK;
112
bedbe4ee 113#if PTTYPE == 64
2d48a985 114 if (vcpu->arch.mmu.nx)
bedbe4ee
AK
115 access &= ~(gpte >> PT64_NX_SHIFT);
116#endif
117 return access;
118}
119
3c8c652a
TY
120static bool FNAME(is_last_gpte)(struct guest_walker *walker,
121 struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
122 pt_element_t gpte)
123{
124 if (walker->level == PT_PAGE_TABLE_LEVEL)
125 return true;
126
127 if ((walker->level == PT_DIRECTORY_LEVEL) && is_large_pte(gpte) &&
128 (PTTYPE == 64 || is_pse(vcpu)))
129 return true;
130
131 if ((walker->level == PT_PDPE_LEVEL) && is_large_pte(gpte) &&
132 (mmu->root_level == PT64_ROOT_LEVEL))
133 return true;
134
135 return false;
136}
137
ac79c978
AK
138/*
139 * Fetch a guest pte for a guest virtual address
140 */
1e301feb
JR
141static int FNAME(walk_addr_generic)(struct guest_walker *walker,
142 struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
33770780 143 gva_t addr, u32 access)
6aa8b732 144{
42bf3f0a 145 pt_element_t pte;
b7233635 146 pt_element_t __user *uninitialized_var(ptep_user);
cea0f0e7 147 gfn_t table_gfn;
f59c1d2d 148 unsigned index, pt_access, uninitialized_var(pte_access);
42bf3f0a 149 gpa_t pte_gpa;
134291bf
TY
150 bool eperm;
151 int offset;
152 const int write_fault = access & PFERR_WRITE_MASK;
153 const int user_fault = access & PFERR_USER_MASK;
154 const int fetch_fault = access & PFERR_FETCH_MASK;
155 u16 errcode = 0;
6aa8b732 156
07420171
AK
157 trace_kvm_mmu_pagetable_walk(addr, write_fault, user_fault,
158 fetch_fault);
92c1c1e8 159retry_walk:
134291bf 160 eperm = false;
1e301feb
JR
161 walker->level = mmu->root_level;
162 pte = mmu->get_cr3(vcpu);
163
1b0973bd 164#if PTTYPE == 64
1e301feb 165 if (walker->level == PT32E_ROOT_LEVEL) {
d41d1895 166 pte = kvm_pdptr_read_mmu(vcpu, mmu, (addr >> 30) & 3);
07420171 167 trace_kvm_mmu_paging_element(pte, walker->level);
134291bf 168 if (!is_present_gpte(pte))
f59c1d2d 169 goto error;
1b0973bd
AK
170 --walker->level;
171 }
172#endif
a9058ecd 173 ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
1e301feb 174 (mmu->get_cr3(vcpu) & CR3_NONPAE_RESERVED_BITS) == 0);
6aa8b732 175
fe135d2c 176 pt_access = ACC_ALL;
ac79c978
AK
177
178 for (;;) {
6e2ca7d1
TY
179 gfn_t real_gfn;
180 unsigned long host_addr;
181
42bf3f0a 182 index = PT_INDEX(addr, walker->level);
ac79c978 183
5fb07ddb 184 table_gfn = gpte_to_gfn(pte);
2329d46d
JR
185 offset = index * sizeof(pt_element_t);
186 pte_gpa = gfn_to_gpa(table_gfn) + offset;
42bf3f0a 187 walker->table_gfn[walker->level - 1] = table_gfn;
7819026e 188 walker->pte_gpa[walker->level - 1] = pte_gpa;
42bf3f0a 189
6e2ca7d1
TY
190 real_gfn = mmu->translate_gpa(vcpu, gfn_to_gpa(table_gfn),
191 PFERR_USER_MASK|PFERR_WRITE_MASK);
134291bf
TY
192 if (unlikely(real_gfn == UNMAPPED_GVA))
193 goto error;
6e2ca7d1
TY
194 real_gfn = gpa_to_gfn(real_gfn);
195
196 host_addr = gfn_to_hva(vcpu->kvm, real_gfn);
134291bf
TY
197 if (unlikely(kvm_is_error_hva(host_addr)))
198 goto error;
6e2ca7d1
TY
199
200 ptep_user = (pt_element_t __user *)((void *)host_addr + offset);
134291bf
TY
201 if (unlikely(__copy_from_user(&pte, ptep_user, sizeof(pte))))
202 goto error;
a6085fba 203
07420171 204 trace_kvm_mmu_paging_element(pte, walker->level);
42bf3f0a 205
134291bf
TY
206 if (unlikely(!is_present_gpte(pte)))
207 goto error;
7993ba43 208
781e0743
AK
209 if (unlikely(is_rsvd_bits_set(&vcpu->arch.mmu, pte,
210 walker->level))) {
134291bf
TY
211 errcode |= PFERR_RSVD_MASK | PFERR_PRESENT_MASK;
212 goto error;
f59c1d2d 213 }
82725b20 214
bebb106a
XG
215 if (!check_write_user_access(vcpu, write_fault, user_fault,
216 pte))
f59c1d2d 217 eperm = true;
7993ba43 218
73b1087e 219#if PTTYPE == 64
781e0743 220 if (unlikely(fetch_fault && (pte & PT64_NX_MASK)))
f59c1d2d 221 eperm = true;
73b1087e
AK
222#endif
223
134291bf 224 if (!eperm && unlikely(!(pte & PT_ACCESSED_MASK))) {
a78484c6 225 int ret;
07420171
AK
226 trace_kvm_mmu_set_accessed_bit(table_gfn, index,
227 sizeof(pte));
c8cfbb55
TY
228 ret = FNAME(cmpxchg_gpte)(vcpu, mmu, ptep_user, index,
229 pte, pte|PT_ACCESSED_MASK);
134291bf
TY
230 if (unlikely(ret < 0))
231 goto error;
232 else if (ret)
92c1c1e8 233 goto retry_walk;
a78484c6 234
f3b8c964 235 mark_page_dirty(vcpu->kvm, table_gfn);
42bf3f0a 236 pte |= PT_ACCESSED_MASK;
bf3f8e86 237 }
815af8d4 238
7819026e
MT
239 walker->ptes[walker->level - 1] = pte;
240
3c8c652a 241 if (FNAME(is_last_gpte)(walker, vcpu, mmu, pte)) {
e04da980 242 int lvl = walker->level;
2329d46d
JR
243 gpa_t real_gpa;
244 gfn_t gfn;
33770780 245 u32 ac;
e04da980 246
e57d4a35
YW
247 /* check if the kernel is fetching from user page */
248 if (unlikely(pte_access & PT_USER_MASK) &&
249 kvm_read_cr4_bits(vcpu, X86_CR4_SMEP))
250 if (fetch_fault && !user_fault)
251 eperm = true;
252
2329d46d
JR
253 gfn = gpte_to_gfn_lvl(pte, lvl);
254 gfn += (addr & PT_LVL_OFFSET_MASK(lvl)) >> PAGE_SHIFT;
e04da980
JR
255
256 if (PTTYPE == 32 &&
257 walker->level == PT_DIRECTORY_LEVEL &&
258 is_cpuid_PSE36())
2329d46d
JR
259 gfn += pse36_gfn_delta(pte);
260
33770780 261 ac = write_fault | fetch_fault | user_fault;
2329d46d
JR
262
263 real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(gfn),
33770780 264 ac);
2329d46d
JR
265 if (real_gpa == UNMAPPED_GVA)
266 return 0;
267
268 walker->gfn = real_gpa >> PAGE_SHIFT;
e04da980 269
ac79c978 270 break;
815af8d4 271 }
ac79c978 272
640d9b0d 273 pt_access &= FNAME(gpte_access)(vcpu, pte, false);
ac79c978
AK
274 --walker->level;
275 }
42bf3f0a 276
134291bf
TY
277 if (unlikely(eperm)) {
278 errcode |= PFERR_PRESENT_MASK;
f59c1d2d 279 goto error;
134291bf 280 }
f59c1d2d 281
781e0743 282 if (write_fault && unlikely(!is_dirty_gpte(pte))) {
a78484c6 283 int ret;
b3e4e63f 284
07420171 285 trace_kvm_mmu_set_dirty_bit(table_gfn, index, sizeof(pte));
c8cfbb55
TY
286 ret = FNAME(cmpxchg_gpte)(vcpu, mmu, ptep_user, index,
287 pte, pte|PT_DIRTY_MASK);
134291bf 288 if (unlikely(ret < 0))
a78484c6 289 goto error;
134291bf 290 else if (ret)
92c1c1e8 291 goto retry_walk;
a78484c6 292
f3b8c964 293 mark_page_dirty(vcpu->kvm, table_gfn);
42bf3f0a 294 pte |= PT_DIRTY_MASK;
7819026e 295 walker->ptes[walker->level - 1] = pte;
42bf3f0a
AK
296 }
297
640d9b0d 298 pte_access = pt_access & FNAME(gpte_access)(vcpu, pte, true);
fe135d2c
AK
299 walker->pt_access = pt_access;
300 walker->pte_access = pte_access;
301 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
518c5a05 302 __func__, (u64)pte, pte_access, pt_access);
7993ba43
AK
303 return 1;
304
f59c1d2d 305error:
134291bf 306 errcode |= write_fault | user_fault;
e57d4a35
YW
307 if (fetch_fault && (mmu->nx ||
308 kvm_read_cr4_bits(vcpu, X86_CR4_SMEP)))
134291bf 309 errcode |= PFERR_FETCH_MASK;
8df25a32 310
134291bf
TY
311 walker->fault.vector = PF_VECTOR;
312 walker->fault.error_code_valid = true;
313 walker->fault.error_code = errcode;
6389ee94
AK
314 walker->fault.address = addr;
315 walker->fault.nested_page_fault = mmu != vcpu->arch.walk_mmu;
8df25a32 316
8c28d031 317 trace_kvm_mmu_walker_error(walker->fault.error_code);
fe551881 318 return 0;
6aa8b732
AK
319}
320
1e301feb 321static int FNAME(walk_addr)(struct guest_walker *walker,
33770780 322 struct kvm_vcpu *vcpu, gva_t addr, u32 access)
1e301feb
JR
323{
324 return FNAME(walk_addr_generic)(walker, vcpu, &vcpu->arch.mmu, addr,
33770780 325 access);
1e301feb
JR
326}
327
6539e738
JR
328static int FNAME(walk_addr_nested)(struct guest_walker *walker,
329 struct kvm_vcpu *vcpu, gva_t addr,
33770780 330 u32 access)
6539e738
JR
331{
332 return FNAME(walk_addr_generic)(walker, vcpu, &vcpu->arch.nested_mmu,
33770780 333 addr, access);
6539e738
JR
334}
335
407c61c6
XG
336static bool FNAME(prefetch_invalid_gpte)(struct kvm_vcpu *vcpu,
337 struct kvm_mmu_page *sp, u64 *spte,
338 pt_element_t gpte)
339{
340 u64 nonpresent = shadow_trap_nonpresent_pte;
341
342 if (is_rsvd_bits_set(&vcpu->arch.mmu, gpte, PT_PAGE_TABLE_LEVEL))
343 goto no_present;
344
345 if (!is_present_gpte(gpte)) {
346 if (!sp->unsync)
347 nonpresent = shadow_notrap_nonpresent_pte;
348 goto no_present;
349 }
350
351 if (!(gpte & PT_ACCESSED_MASK))
352 goto no_present;
353
354 return false;
355
356no_present:
357 drop_spte(vcpu->kvm, spte, nonpresent);
358 return true;
359}
360
ac3cd03c 361static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
7c562522 362 u64 *spte, const void *pte)
0028425f
AK
363{
364 pt_element_t gpte;
41074d07 365 unsigned pte_access;
35149e21 366 pfn_t pfn;
0028425f 367
0028425f 368 gpte = *(const pt_element_t *)pte;
407c61c6 369 if (FNAME(prefetch_invalid_gpte)(vcpu, sp, spte, gpte))
c7addb90 370 return;
407c61c6 371
b8688d51 372 pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
640d9b0d 373 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte, true);
0f53b5b1
XG
374 pfn = gfn_to_pfn_atomic(vcpu->kvm, gpte_to_gfn(gpte));
375 if (is_error_pfn(pfn)) {
376 kvm_release_pfn_clean(pfn);
d7824fff 377 return;
0f53b5b1 378 }
0f53b5b1 379
1403283a 380 /*
0d2eb44f 381 * we call mmu_set_spte() with host_writable = true because that
1403283a
IE
382 * vcpu->arch.update_pte.pfn was fetched from get_user_pages(write = 1).
383 */
ac3cd03c 384 mmu_set_spte(vcpu, spte, sp->role.access, pte_access, 0, 0,
640d9b0d 385 NULL, PT_PAGE_TABLE_LEVEL,
1403283a 386 gpte_to_gfn(gpte), pfn, true, true);
0028425f
AK
387}
388
39c8c672
AK
389static bool FNAME(gpte_changed)(struct kvm_vcpu *vcpu,
390 struct guest_walker *gw, int level)
391{
39c8c672 392 pt_element_t curr_pte;
189be38d
XG
393 gpa_t base_gpa, pte_gpa = gw->pte_gpa[level - 1];
394 u64 mask;
395 int r, index;
396
397 if (level == PT_PAGE_TABLE_LEVEL) {
398 mask = PTE_PREFETCH_NUM * sizeof(pt_element_t) - 1;
399 base_gpa = pte_gpa & ~mask;
400 index = (pte_gpa - base_gpa) / sizeof(pt_element_t);
401
402 r = kvm_read_guest_atomic(vcpu->kvm, base_gpa,
403 gw->prefetch_ptes, sizeof(gw->prefetch_ptes));
404 curr_pte = gw->prefetch_ptes[index];
405 } else
406 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa,
39c8c672 407 &curr_pte, sizeof(curr_pte));
189be38d 408
39c8c672
AK
409 return r || curr_pte != gw->ptes[level - 1];
410}
411
189be38d
XG
412static void FNAME(pte_prefetch)(struct kvm_vcpu *vcpu, struct guest_walker *gw,
413 u64 *sptep)
957ed9ef
XG
414{
415 struct kvm_mmu_page *sp;
189be38d 416 pt_element_t *gptep = gw->prefetch_ptes;
957ed9ef 417 u64 *spte;
189be38d 418 int i;
957ed9ef
XG
419
420 sp = page_header(__pa(sptep));
421
422 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
423 return;
424
425 if (sp->role.direct)
426 return __direct_pte_prefetch(vcpu, sp, sptep);
427
428 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
957ed9ef
XG
429 spte = sp->spt + i;
430
431 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
432 pt_element_t gpte;
433 unsigned pte_access;
434 gfn_t gfn;
435 pfn_t pfn;
957ed9ef
XG
436
437 if (spte == sptep)
438 continue;
439
440 if (*spte != shadow_trap_nonpresent_pte)
441 continue;
442
443 gpte = gptep[i];
444
407c61c6 445 if (FNAME(prefetch_invalid_gpte)(vcpu, sp, spte, gpte))
957ed9ef
XG
446 continue;
447
640d9b0d
XG
448 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte,
449 true);
957ed9ef 450 gfn = gpte_to_gfn(gpte);
957ed9ef 451 pfn = pte_prefetch_gfn_to_pfn(vcpu, gfn,
640d9b0d 452 pte_access & ACC_WRITE_MASK);
957ed9ef
XG
453 if (is_error_pfn(pfn)) {
454 kvm_release_pfn_clean(pfn);
455 break;
456 }
457
458 mmu_set_spte(vcpu, spte, sp->role.access, pte_access, 0, 0,
640d9b0d 459 NULL, PT_PAGE_TABLE_LEVEL, gfn,
957ed9ef
XG
460 pfn, true, true);
461 }
462}
463
6aa8b732
AK
464/*
465 * Fetch a shadow pte for a specific level in the paging hierarchy.
466 */
e7a04c99
AK
467static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
468 struct guest_walker *gw,
7e4e4056 469 int user_fault, int write_fault, int hlevel,
b90a0e6c 470 int *emulate, pfn_t pfn, bool map_writable,
fb67e14f 471 bool prefault)
6aa8b732 472{
abb9e0b8 473 unsigned access = gw->pt_access;
5991b332 474 struct kvm_mmu_page *sp = NULL;
5991b332 475 int top_level;
84754cd8 476 unsigned direct_access;
24157aaf 477 struct kvm_shadow_walk_iterator it;
abb9e0b8 478
43a3795a 479 if (!is_present_gpte(gw->ptes[gw->level - 1]))
e7a04c99 480 return NULL;
6aa8b732 481
b36c7a7c 482 direct_access = gw->pte_access;
84754cd8 483
5991b332
AK
484 top_level = vcpu->arch.mmu.root_level;
485 if (top_level == PT32E_ROOT_LEVEL)
486 top_level = PT32_ROOT_LEVEL;
487 /*
488 * Verify that the top-level gpte is still there. Since the page
489 * is a root page, it is either write protected (and cannot be
490 * changed from now on) or it is invalid (in which case, we don't
491 * really care if it changes underneath us after this point).
492 */
493 if (FNAME(gpte_changed)(vcpu, gw, top_level))
494 goto out_gpte_changed;
495
24157aaf
AK
496 for (shadow_walk_init(&it, vcpu, addr);
497 shadow_walk_okay(&it) && it.level > gw->level;
498 shadow_walk_next(&it)) {
0b3c9333
AK
499 gfn_t table_gfn;
500
24157aaf 501 drop_large_spte(vcpu, it.sptep);
ef0197e8 502
5991b332 503 sp = NULL;
24157aaf
AK
504 if (!is_shadow_present_pte(*it.sptep)) {
505 table_gfn = gw->table_gfn[it.level - 2];
506 sp = kvm_mmu_get_page(vcpu, table_gfn, addr, it.level-1,
507 false, access, it.sptep);
5991b332 508 }
0b3c9333
AK
509
510 /*
511 * Verify that the gpte in the page we've just write
512 * protected is still there.
513 */
24157aaf 514 if (FNAME(gpte_changed)(vcpu, gw, it.level - 1))
0b3c9333 515 goto out_gpte_changed;
abb9e0b8 516
5991b332 517 if (sp)
24157aaf 518 link_shadow_page(it.sptep, sp);
e7a04c99 519 }
050e6499 520
0b3c9333 521 for (;
24157aaf
AK
522 shadow_walk_okay(&it) && it.level > hlevel;
523 shadow_walk_next(&it)) {
0b3c9333
AK
524 gfn_t direct_gfn;
525
24157aaf 526 validate_direct_spte(vcpu, it.sptep, direct_access);
0b3c9333 527
24157aaf 528 drop_large_spte(vcpu, it.sptep);
0b3c9333 529
24157aaf 530 if (is_shadow_present_pte(*it.sptep))
0b3c9333
AK
531 continue;
532
24157aaf 533 direct_gfn = gw->gfn & ~(KVM_PAGES_PER_HPAGE(it.level) - 1);
0b3c9333 534
24157aaf
AK
535 sp = kvm_mmu_get_page(vcpu, direct_gfn, addr, it.level-1,
536 true, direct_access, it.sptep);
537 link_shadow_page(it.sptep, sp);
0b3c9333
AK
538 }
539
b36c7a7c 540 mmu_set_spte(vcpu, it.sptep, access, gw->pte_access,
b90a0e6c 541 user_fault, write_fault, emulate, it.level,
fb67e14f 542 gw->gfn, pfn, prefault, map_writable);
189be38d 543 FNAME(pte_prefetch)(vcpu, gw, it.sptep);
0b3c9333 544
24157aaf 545 return it.sptep;
0b3c9333
AK
546
547out_gpte_changed:
5991b332 548 if (sp)
24157aaf 549 kvm_mmu_put_page(sp, it.sptep);
0b3c9333
AK
550 kvm_release_pfn_clean(pfn);
551 return NULL;
6aa8b732
AK
552}
553
6aa8b732
AK
554/*
555 * Page fault handler. There are several causes for a page fault:
556 * - there is no shadow pte for the guest pte
557 * - write access through a shadow pte marked read only so that we can set
558 * the dirty bit
559 * - write access to a shadow pte marked read only so we can update the page
560 * dirty bitmap, when userspace requests it
561 * - mmio access; in this case we will never install a present shadow pte
562 * - normal guest page fault due to the guest pte marked not present, not
563 * writable, or not executable
564 *
e2dec939
AK
565 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
566 * a negative value on error.
6aa8b732 567 */
56028d08 568static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr, u32 error_code,
78b2c54a 569 bool prefault)
6aa8b732
AK
570{
571 int write_fault = error_code & PFERR_WRITE_MASK;
6aa8b732
AK
572 int user_fault = error_code & PFERR_USER_MASK;
573 struct guest_walker walker;
d555c333 574 u64 *sptep;
b90a0e6c 575 int emulate = 0;
e2dec939 576 int r;
35149e21 577 pfn_t pfn;
7e4e4056 578 int level = PT_PAGE_TABLE_LEVEL;
936a5fe6 579 int force_pt_level;
e930bffe 580 unsigned long mmu_seq;
612819c3 581 bool map_writable;
6aa8b732 582
b8688d51 583 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
714b93da 584
e2dec939
AK
585 r = mmu_topup_memory_caches(vcpu);
586 if (r)
587 return r;
714b93da 588
6aa8b732 589 /*
a8b876b1 590 * Look up the guest pte for the faulting address.
6aa8b732 591 */
33770780 592 r = FNAME(walk_addr)(&walker, vcpu, addr, error_code);
6aa8b732
AK
593
594 /*
595 * The page is not mapped by the guest. Let the guest handle it.
596 */
7993ba43 597 if (!r) {
b8688d51 598 pgprintk("%s: guest page fault\n", __func__);
fb67e14f
XG
599 if (!prefault) {
600 inject_page_fault(vcpu, &walker.fault);
601 /* reset fork detector */
602 vcpu->arch.last_pt_write_count = 0;
603 }
6aa8b732
AK
604 return 0;
605 }
606
936a5fe6
AA
607 if (walker.level >= PT_DIRECTORY_LEVEL)
608 force_pt_level = mapping_level_dirty_bitmap(vcpu, walker.gfn);
609 else
610 force_pt_level = 1;
611 if (!force_pt_level) {
7e4e4056
JR
612 level = min(walker.level, mapping_level(vcpu, walker.gfn));
613 walker.gfn = walker.gfn & ~(KVM_PAGES_PER_HPAGE(level) - 1);
05da4558 614 }
7e4e4056 615
e930bffe 616 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 617 smp_rmb();
af585b92 618
78b2c54a 619 if (try_async_pf(vcpu, prefault, walker.gfn, addr, &pfn, write_fault,
612819c3 620 &map_writable))
af585b92 621 return 0;
d7824fff 622
d196e343 623 /* mmio */
640d9b0d 624 if (is_error_pfn(pfn))
bebb106a 625 return kvm_handle_bad_page(vcpu, mmu_is_nested(vcpu) ? 0 :
640d9b0d 626 addr, walker.pte_access, walker.gfn, pfn);
aaee2c94 627 spin_lock(&vcpu->kvm->mmu_lock);
e930bffe
AA
628 if (mmu_notifier_retry(vcpu, mmu_seq))
629 goto out_unlock;
bc32ce21 630
8b1fe17c 631 trace_kvm_mmu_audit(vcpu, AUDIT_PRE_PAGE_FAULT);
eb787d10 632 kvm_mmu_free_some_pages(vcpu);
936a5fe6
AA
633 if (!force_pt_level)
634 transparent_hugepage_adjust(vcpu, &walker.gfn, &pfn, &level);
d555c333 635 sptep = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
b90a0e6c 636 level, &emulate, pfn, map_writable, prefault);
a24e8099 637 (void)sptep;
b90a0e6c
XG
638 pgprintk("%s: shadow pte %p %llx emulate %d\n", __func__,
639 sptep, *sptep, emulate);
cea0f0e7 640
b90a0e6c 641 if (!emulate)
ad312c7c 642 vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
a25f7e1f 643
1165f5fe 644 ++vcpu->stat.pf_fixed;
8b1fe17c 645 trace_kvm_mmu_audit(vcpu, AUDIT_POST_PAGE_FAULT);
aaee2c94 646 spin_unlock(&vcpu->kvm->mmu_lock);
6aa8b732 647
b90a0e6c 648 return emulate;
e930bffe
AA
649
650out_unlock:
651 spin_unlock(&vcpu->kvm->mmu_lock);
652 kvm_release_pfn_clean(pfn);
653 return 0;
6aa8b732
AK
654}
655
a461930b 656static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
a7052897 657{
a461930b 658 struct kvm_shadow_walk_iterator iterator;
f78978aa 659 struct kvm_mmu_page *sp;
08e850c6 660 gpa_t pte_gpa = -1;
a461930b
AK
661 int level;
662 u64 *sptep;
4539b358 663 int need_flush = 0;
a461930b 664
bebb106a
XG
665 vcpu_clear_mmio_info(vcpu, gva);
666
a461930b 667 spin_lock(&vcpu->kvm->mmu_lock);
a7052897 668
a461930b
AK
669 for_each_shadow_entry(vcpu, gva, iterator) {
670 level = iterator.level;
671 sptep = iterator.sptep;
ad218f85 672
f78978aa 673 sp = page_header(__pa(sptep));
884a0ff0 674 if (is_last_spte(*sptep, level)) {
22c9b2d1 675 int offset, shift;
08e850c6 676
f78978aa
XG
677 if (!sp->unsync)
678 break;
679
22c9b2d1
XG
680 shift = PAGE_SHIFT -
681 (PT_LEVEL_BITS - PT64_LEVEL_BITS) * level;
682 offset = sp->role.quadrant << shift;
683
684 pte_gpa = (sp->gfn << PAGE_SHIFT) + offset;
08e850c6 685 pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
a461930b
AK
686
687 if (is_shadow_present_pte(*sptep)) {
a461930b
AK
688 if (is_large_pte(*sptep))
689 --vcpu->kvm->stat.lpages;
be38d276
AK
690 drop_spte(vcpu->kvm, sptep,
691 shadow_trap_nonpresent_pte);
4539b358 692 need_flush = 1;
be38d276
AK
693 } else
694 __set_spte(sptep, shadow_trap_nonpresent_pte);
a461930b 695 break;
87917239 696 }
a7052897 697
f78978aa 698 if (!is_shadow_present_pte(*sptep) || !sp->unsync_children)
a461930b
AK
699 break;
700 }
a7052897 701
4539b358
AA
702 if (need_flush)
703 kvm_flush_remote_tlbs(vcpu->kvm);
08e850c6
AK
704
705 atomic_inc(&vcpu->kvm->arch.invlpg_counter);
706
ad218f85 707 spin_unlock(&vcpu->kvm->mmu_lock);
08e850c6
AK
708
709 if (pte_gpa == -1)
710 return;
711
712 if (mmu_topup_memory_caches(vcpu))
713 return;
714 kvm_mmu_pte_write(vcpu, pte_gpa, NULL, sizeof(pt_element_t), 0);
a7052897
MT
715}
716
1871c602 717static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr, u32 access,
ab9ae313 718 struct x86_exception *exception)
6aa8b732
AK
719{
720 struct guest_walker walker;
e119d117
AK
721 gpa_t gpa = UNMAPPED_GVA;
722 int r;
6aa8b732 723
33770780 724 r = FNAME(walk_addr)(&walker, vcpu, vaddr, access);
6aa8b732 725
e119d117 726 if (r) {
1755fbcc 727 gpa = gfn_to_gpa(walker.gfn);
e119d117 728 gpa |= vaddr & ~PAGE_MASK;
8c28d031
AK
729 } else if (exception)
730 *exception = walker.fault;
6aa8b732
AK
731
732 return gpa;
733}
734
6539e738 735static gpa_t FNAME(gva_to_gpa_nested)(struct kvm_vcpu *vcpu, gva_t vaddr,
ab9ae313
AK
736 u32 access,
737 struct x86_exception *exception)
6539e738
JR
738{
739 struct guest_walker walker;
740 gpa_t gpa = UNMAPPED_GVA;
741 int r;
742
33770780 743 r = FNAME(walk_addr_nested)(&walker, vcpu, vaddr, access);
6539e738
JR
744
745 if (r) {
746 gpa = gfn_to_gpa(walker.gfn);
747 gpa |= vaddr & ~PAGE_MASK;
8c28d031
AK
748 } else if (exception)
749 *exception = walker.fault;
6539e738
JR
750
751 return gpa;
752}
753
c7addb90
AK
754static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
755 struct kvm_mmu_page *sp)
756{
eab9f71f
AK
757 int i, j, offset, r;
758 pt_element_t pt[256 / sizeof(pt_element_t)];
759 gpa_t pte_gpa;
c7addb90 760
f6e2c02b 761 if (sp->role.direct
e5a4c8ca 762 || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
c7addb90
AK
763 nonpaging_prefetch_page(vcpu, sp);
764 return;
765 }
766
eab9f71f
AK
767 pte_gpa = gfn_to_gpa(sp->gfn);
768 if (PTTYPE == 32) {
e5a4c8ca 769 offset = sp->role.quadrant << PT64_LEVEL_BITS;
eab9f71f
AK
770 pte_gpa += offset * sizeof(pt_element_t);
771 }
7ec54588 772
eab9f71f
AK
773 for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
774 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
775 pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
776 for (j = 0; j < ARRAY_SIZE(pt); ++j)
43a3795a 777 if (r || is_present_gpte(pt[j]))
eab9f71f
AK
778 sp->spt[i+j] = shadow_trap_nonpresent_pte;
779 else
780 sp->spt[i+j] = shadow_notrap_nonpresent_pte;
7ec54588 781 }
c7addb90
AK
782}
783
e8bc217a
MT
784/*
785 * Using the cached information from sp->gfns is safe because:
786 * - The spte has a reference to the struct page, so the pfn for a given gfn
787 * can't change unless all sptes pointing to it are nuked first.
a4ee1ca4
XG
788 *
789 * Note:
790 * We should flush all tlbs if spte is dropped even though guest is
791 * responsible for it. Since if we don't, kvm_mmu_notifier_invalidate_page
792 * and kvm_mmu_notifier_invalidate_range_start detect the mapping page isn't
793 * used by guest then tlbs are not flushed, so guest is allowed to access the
794 * freed pages.
795 * And we increase kvm->tlbs_dirty to delay tlbs flush in this case.
e8bc217a 796 */
a4a8e6f7 797static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
e8bc217a
MT
798{
799 int i, offset, nr_present;
9bdbba13 800 bool host_writable;
51fb60d8 801 gpa_t first_pte_gpa;
e8bc217a
MT
802
803 offset = nr_present = 0;
804
2032a93d
LJ
805 /* direct kvm_mmu_page can not be unsync. */
806 BUG_ON(sp->role.direct);
807
e8bc217a
MT
808 if (PTTYPE == 32)
809 offset = sp->role.quadrant << PT64_LEVEL_BITS;
810
51fb60d8
GJ
811 first_pte_gpa = gfn_to_gpa(sp->gfn) + offset * sizeof(pt_element_t);
812
e8bc217a
MT
813 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
814 unsigned pte_access;
815 pt_element_t gpte;
816 gpa_t pte_gpa;
f55c3f41 817 gfn_t gfn;
e8bc217a
MT
818
819 if (!is_shadow_present_pte(sp->spt[i]))
820 continue;
821
51fb60d8 822 pte_gpa = first_pte_gpa + i * sizeof(pt_element_t);
e8bc217a
MT
823
824 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
825 sizeof(pt_element_t)))
826 return -EINVAL;
827
f55c3f41 828 gfn = gpte_to_gfn(gpte);
407c61c6
XG
829
830 if (FNAME(prefetch_invalid_gpte)(vcpu, sp, &sp->spt[i], gpte)) {
a4ee1ca4 831 vcpu->kvm->tlbs_dirty++;
407c61c6
XG
832 continue;
833 }
834
835 if (gfn != sp->gfns[i]) {
836 drop_spte(vcpu->kvm, &sp->spt[i],
837 shadow_trap_nonpresent_pte);
a4ee1ca4 838 vcpu->kvm->tlbs_dirty++;
e8bc217a
MT
839 continue;
840 }
841
842 nr_present++;
640d9b0d
XG
843 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte,
844 true);
f8e453b0
XG
845 host_writable = sp->spt[i] & SPTE_HOST_WRITEABLE;
846
e8bc217a 847 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
640d9b0d 848 PT_PAGE_TABLE_LEVEL, gfn,
1403283a 849 spte_to_pfn(sp->spt[i]), true, false,
9bdbba13 850 host_writable);
e8bc217a
MT
851 }
852
853 return !nr_present;
854}
855
6aa8b732
AK
856#undef pt_element_t
857#undef guest_walker
858#undef FNAME
859#undef PT_BASE_ADDR_MASK
860#undef PT_INDEX
e04da980
JR
861#undef PT_LVL_ADDR_MASK
862#undef PT_LVL_OFFSET_MASK
c7addb90 863#undef PT_LEVEL_BITS
cea0f0e7 864#undef PT_MAX_FULL_LEVELS
5fb07ddb 865#undef gpte_to_gfn
e04da980 866#undef gpte_to_gfn_lvl
b3e4e63f 867#undef CMPXCHG
This page took 0.7147 seconds and 5 git commands to generate.