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