]> git.ipfire.org Git - people/ms/linux.git/blame - arch/x86/kvm/paging_tmpl.h
Merge remote-tracking branch 'master' into queue
[people/ms/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;
8cbc7069 66 unsigned max_level;
cea0f0e7 67 gfn_t table_gfn[PT_MAX_FULL_LEVELS];
7819026e 68 pt_element_t ptes[PT_MAX_FULL_LEVELS];
189be38d 69 pt_element_t prefetch_ptes[PTE_PREFETCH_NUM];
7819026e 70 gpa_t pte_gpa[PT_MAX_FULL_LEVELS];
8cbc7069 71 pt_element_t __user *ptep_user[PT_MAX_FULL_LEVELS];
fe135d2c
AK
72 unsigned pt_access;
73 unsigned pte_access;
815af8d4 74 gfn_t gfn;
8c28d031 75 struct x86_exception fault;
6aa8b732
AK
76};
77
e04da980 78static gfn_t gpte_to_gfn_lvl(pt_element_t gpte, int lvl)
5fb07ddb 79{
e04da980 80 return (gpte & PT_LVL_ADDR_MASK(lvl)) >> PAGE_SHIFT;
5fb07ddb
AK
81}
82
a78484c6 83static int FNAME(cmpxchg_gpte)(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
c8cfbb55
TY
84 pt_element_t __user *ptep_user, unsigned index,
85 pt_element_t orig_pte, pt_element_t new_pte)
b3e4e63f 86{
c8cfbb55 87 int npages;
b3e4e63f
MT
88 pt_element_t ret;
89 pt_element_t *table;
90 struct page *page;
91
c8cfbb55
TY
92 npages = get_user_pages_fast((unsigned long)ptep_user, 1, 1, &page);
93 /* Check if the user is doing something meaningless. */
94 if (unlikely(npages != 1))
a78484c6
RJ
95 return -EFAULT;
96
8fd75e12 97 table = kmap_atomic(page);
b3e4e63f 98 ret = CMPXCHG(&table[index], orig_pte, new_pte);
8fd75e12 99 kunmap_atomic(table);
b3e4e63f
MT
100
101 kvm_release_page_dirty(page);
102
103 return (ret != orig_pte);
104}
105
8cbc7069
AK
106static int FNAME(update_accessed_dirty_bits)(struct kvm_vcpu *vcpu,
107 struct kvm_mmu *mmu,
108 struct guest_walker *walker,
109 int write_fault)
110{
111 unsigned level, index;
112 pt_element_t pte, orig_pte;
113 pt_element_t __user *ptep_user;
114 gfn_t table_gfn;
115 int ret;
116
117 for (level = walker->max_level; level >= walker->level; --level) {
118 pte = orig_pte = walker->ptes[level - 1];
119 table_gfn = walker->table_gfn[level - 1];
120 ptep_user = walker->ptep_user[level - 1];
121 index = offset_in_page(ptep_user) / sizeof(pt_element_t);
122 if (!(pte & PT_ACCESSED_MASK)) {
123 trace_kvm_mmu_set_accessed_bit(table_gfn, index, sizeof(pte));
124 pte |= PT_ACCESSED_MASK;
125 }
126 if (level == walker->level && write_fault && !is_dirty_gpte(pte)) {
127 trace_kvm_mmu_set_dirty_bit(table_gfn, index, sizeof(pte));
128 pte |= PT_DIRTY_MASK;
129 }
130 if (pte == orig_pte)
131 continue;
132
133 ret = FNAME(cmpxchg_gpte)(vcpu, mmu, ptep_user, index, orig_pte, pte);
134 if (ret)
135 return ret;
136
137 mark_page_dirty(vcpu->kvm, table_gfn);
138 walker->ptes[level] = pte;
139 }
140 return 0;
141}
142
ac79c978
AK
143/*
144 * Fetch a guest pte for a guest virtual address
145 */
1e301feb
JR
146static int FNAME(walk_addr_generic)(struct guest_walker *walker,
147 struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
33770780 148 gva_t addr, u32 access)
6aa8b732 149{
8cbc7069 150 int ret;
42bf3f0a 151 pt_element_t pte;
b7233635 152 pt_element_t __user *uninitialized_var(ptep_user);
cea0f0e7 153 gfn_t table_gfn;
b514c30f 154 unsigned index, pt_access, pte_access, accessed_dirty, shift;
42bf3f0a 155 gpa_t pte_gpa;
134291bf
TY
156 int offset;
157 const int write_fault = access & PFERR_WRITE_MASK;
158 const int user_fault = access & PFERR_USER_MASK;
159 const int fetch_fault = access & PFERR_FETCH_MASK;
160 u16 errcode = 0;
13d22b6a
AK
161 gpa_t real_gpa;
162 gfn_t gfn;
6aa8b732 163
6fbc2770 164 trace_kvm_mmu_pagetable_walk(addr, access);
92c1c1e8 165retry_walk:
1e301feb
JR
166 walker->level = mmu->root_level;
167 pte = mmu->get_cr3(vcpu);
168
1b0973bd 169#if PTTYPE == 64
1e301feb 170 if (walker->level == PT32E_ROOT_LEVEL) {
e4e517b4 171 pte = mmu->get_pdptr(vcpu, (addr >> 30) & 3);
07420171 172 trace_kvm_mmu_paging_element(pte, walker->level);
134291bf 173 if (!is_present_gpte(pte))
f59c1d2d 174 goto error;
1b0973bd
AK
175 --walker->level;
176 }
177#endif
8cbc7069 178 walker->max_level = walker->level;
a9058ecd 179 ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
1e301feb 180 (mmu->get_cr3(vcpu) & CR3_NONPAE_RESERVED_BITS) == 0);
6aa8b732 181
b514c30f 182 accessed_dirty = PT_ACCESSED_MASK;
13d22b6a
AK
183 pt_access = pte_access = ACC_ALL;
184 ++walker->level;
ac79c978 185
13d22b6a 186 do {
6e2ca7d1
TY
187 gfn_t real_gfn;
188 unsigned long host_addr;
189
13d22b6a
AK
190 pt_access &= pte_access;
191 --walker->level;
192
42bf3f0a 193 index = PT_INDEX(addr, walker->level);
ac79c978 194
5fb07ddb 195 table_gfn = gpte_to_gfn(pte);
2329d46d
JR
196 offset = index * sizeof(pt_element_t);
197 pte_gpa = gfn_to_gpa(table_gfn) + offset;
42bf3f0a 198 walker->table_gfn[walker->level - 1] = table_gfn;
7819026e 199 walker->pte_gpa[walker->level - 1] = pte_gpa;
42bf3f0a 200
6e2ca7d1
TY
201 real_gfn = mmu->translate_gpa(vcpu, gfn_to_gpa(table_gfn),
202 PFERR_USER_MASK|PFERR_WRITE_MASK);
134291bf
TY
203 if (unlikely(real_gfn == UNMAPPED_GVA))
204 goto error;
6e2ca7d1
TY
205 real_gfn = gpa_to_gfn(real_gfn);
206
207 host_addr = gfn_to_hva(vcpu->kvm, real_gfn);
134291bf
TY
208 if (unlikely(kvm_is_error_hva(host_addr)))
209 goto error;
6e2ca7d1
TY
210
211 ptep_user = (pt_element_t __user *)((void *)host_addr + offset);
134291bf
TY
212 if (unlikely(__copy_from_user(&pte, ptep_user, sizeof(pte))))
213 goto error;
8cbc7069 214 walker->ptep_user[walker->level - 1] = ptep_user;
a6085fba 215
07420171 216 trace_kvm_mmu_paging_element(pte, walker->level);
42bf3f0a 217
134291bf
TY
218 if (unlikely(!is_present_gpte(pte)))
219 goto error;
7993ba43 220
781e0743
AK
221 if (unlikely(is_rsvd_bits_set(&vcpu->arch.mmu, pte,
222 walker->level))) {
134291bf
TY
223 errcode |= PFERR_RSVD_MASK | PFERR_PRESENT_MASK;
224 goto error;
f59c1d2d 225 }
82725b20 226
b514c30f 227 accessed_dirty &= pte;
97d64b78 228 pte_access = pt_access & gpte_access(vcpu, pte);
73b1087e 229
7819026e 230 walker->ptes[walker->level - 1] = pte;
6fd01b71 231 } while (!is_last_gpte(mmu, walker->level, pte));
42bf3f0a 232
71331a1d 233 if (unlikely(permission_fault(mmu, pte_access, access))) {
134291bf 234 errcode |= PFERR_PRESENT_MASK;
f59c1d2d 235 goto error;
134291bf 236 }
f59c1d2d 237
13d22b6a
AK
238 gfn = gpte_to_gfn_lvl(pte, walker->level);
239 gfn += (addr & PT_LVL_OFFSET_MASK(walker->level)) >> PAGE_SHIFT;
240
241 if (PTTYPE == 32 && walker->level == PT_DIRECTORY_LEVEL && is_cpuid_PSE36())
242 gfn += pse36_gfn_delta(pte);
243
c5421519 244 real_gpa = mmu->translate_gpa(vcpu, gfn_to_gpa(gfn), access);
13d22b6a
AK
245 if (real_gpa == UNMAPPED_GVA)
246 return 0;
247
248 walker->gfn = real_gpa >> PAGE_SHIFT;
249
8ea667f2
AK
250 if (!write_fault)
251 protect_clean_gpte(&pte_access, pte);
a78484c6 252
b514c30f
AK
253 /*
254 * On a write fault, fold the dirty bit into accessed_dirty by shifting it one
255 * place right.
256 *
257 * On a read fault, do nothing.
258 */
259 shift = write_fault >> ilog2(PFERR_WRITE_MASK);
260 shift *= PT_DIRTY_SHIFT - PT_ACCESSED_SHIFT;
261 accessed_dirty &= pte >> shift;
262
263 if (unlikely(!accessed_dirty)) {
264 ret = FNAME(update_accessed_dirty_bits)(vcpu, mmu, walker, write_fault);
265 if (unlikely(ret < 0))
266 goto error;
267 else if (ret)
268 goto retry_walk;
269 }
42bf3f0a 270
fe135d2c
AK
271 walker->pt_access = pt_access;
272 walker->pte_access = pte_access;
273 pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
518c5a05 274 __func__, (u64)pte, pte_access, pt_access);
7993ba43
AK
275 return 1;
276
f59c1d2d 277error:
134291bf 278 errcode |= write_fault | user_fault;
e57d4a35
YW
279 if (fetch_fault && (mmu->nx ||
280 kvm_read_cr4_bits(vcpu, X86_CR4_SMEP)))
134291bf 281 errcode |= PFERR_FETCH_MASK;
8df25a32 282
134291bf
TY
283 walker->fault.vector = PF_VECTOR;
284 walker->fault.error_code_valid = true;
285 walker->fault.error_code = errcode;
6389ee94
AK
286 walker->fault.address = addr;
287 walker->fault.nested_page_fault = mmu != vcpu->arch.walk_mmu;
8df25a32 288
8c28d031 289 trace_kvm_mmu_walker_error(walker->fault.error_code);
fe551881 290 return 0;
6aa8b732
AK
291}
292
1e301feb 293static int FNAME(walk_addr)(struct guest_walker *walker,
33770780 294 struct kvm_vcpu *vcpu, gva_t addr, u32 access)
1e301feb
JR
295{
296 return FNAME(walk_addr_generic)(walker, vcpu, &vcpu->arch.mmu, addr,
33770780 297 access);
1e301feb
JR
298}
299
6539e738
JR
300static int FNAME(walk_addr_nested)(struct guest_walker *walker,
301 struct kvm_vcpu *vcpu, gva_t addr,
33770780 302 u32 access)
6539e738
JR
303{
304 return FNAME(walk_addr_generic)(walker, vcpu, &vcpu->arch.nested_mmu,
33770780 305 addr, access);
6539e738
JR
306}
307
bd6360cc
XG
308static bool
309FNAME(prefetch_gpte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
310 u64 *spte, pt_element_t gpte, bool no_dirty_log)
0028425f 311{
41074d07 312 unsigned pte_access;
bd6360cc 313 gfn_t gfn;
35149e21 314 pfn_t pfn;
0028425f 315
a052b42b 316 if (prefetch_invalid_gpte(vcpu, sp, spte, gpte))
bd6360cc 317 return false;
407c61c6 318
b8688d51 319 pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
bd6360cc
XG
320
321 gfn = gpte_to_gfn(gpte);
3d34adec 322 pte_access = sp->role.access & gpte_access(vcpu, gpte);
8ea667f2 323 protect_clean_gpte(&pte_access, gpte);
bd6360cc
XG
324 pfn = pte_prefetch_gfn_to_pfn(vcpu, gfn,
325 no_dirty_log && (pte_access & ACC_WRITE_MASK));
bd660776 326 if (is_invalid_pfn(pfn))
bd6360cc 327 return false;
0f53b5b1 328
1403283a 329 /*
bd6360cc
XG
330 * we call mmu_set_spte() with host_writable = true because
331 * pte_prefetch_gfn_to_pfn always gets a writable pfn.
1403283a 332 */
ac3cd03c 333 mmu_set_spte(vcpu, spte, sp->role.access, pte_access, 0, 0,
bd6360cc
XG
334 NULL, PT_PAGE_TABLE_LEVEL, gfn, pfn, true, true);
335
336 return true;
337}
338
339static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
340 u64 *spte, const void *pte)
341{
342 pt_element_t gpte = *(const pt_element_t *)pte;
343
344 FNAME(prefetch_gpte)(vcpu, sp, spte, gpte, false);
0028425f
AK
345}
346
39c8c672
AK
347static bool FNAME(gpte_changed)(struct kvm_vcpu *vcpu,
348 struct guest_walker *gw, int level)
349{
39c8c672 350 pt_element_t curr_pte;
189be38d
XG
351 gpa_t base_gpa, pte_gpa = gw->pte_gpa[level - 1];
352 u64 mask;
353 int r, index;
354
355 if (level == PT_PAGE_TABLE_LEVEL) {
356 mask = PTE_PREFETCH_NUM * sizeof(pt_element_t) - 1;
357 base_gpa = pte_gpa & ~mask;
358 index = (pte_gpa - base_gpa) / sizeof(pt_element_t);
359
360 r = kvm_read_guest_atomic(vcpu->kvm, base_gpa,
361 gw->prefetch_ptes, sizeof(gw->prefetch_ptes));
362 curr_pte = gw->prefetch_ptes[index];
363 } else
364 r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa,
39c8c672 365 &curr_pte, sizeof(curr_pte));
189be38d 366
39c8c672
AK
367 return r || curr_pte != gw->ptes[level - 1];
368}
369
189be38d
XG
370static void FNAME(pte_prefetch)(struct kvm_vcpu *vcpu, struct guest_walker *gw,
371 u64 *sptep)
957ed9ef
XG
372{
373 struct kvm_mmu_page *sp;
189be38d 374 pt_element_t *gptep = gw->prefetch_ptes;
957ed9ef 375 u64 *spte;
189be38d 376 int i;
957ed9ef
XG
377
378 sp = page_header(__pa(sptep));
379
380 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
381 return;
382
383 if (sp->role.direct)
384 return __direct_pte_prefetch(vcpu, sp, sptep);
385
386 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
957ed9ef
XG
387 spte = sp->spt + i;
388
389 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
957ed9ef
XG
390 if (spte == sptep)
391 continue;
392
c3707958 393 if (is_shadow_present_pte(*spte))
957ed9ef
XG
394 continue;
395
bd6360cc 396 if (!FNAME(prefetch_gpte)(vcpu, sp, spte, gptep[i], true))
957ed9ef 397 break;
957ed9ef
XG
398 }
399}
400
6aa8b732
AK
401/*
402 * Fetch a shadow pte for a specific level in the paging hierarchy.
d4878f24
XG
403 * If the guest tries to write a write-protected page, we need to
404 * emulate this operation, return 1 to indicate this case.
6aa8b732 405 */
d4878f24 406static int FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
e7a04c99 407 struct guest_walker *gw,
7e4e4056 408 int user_fault, int write_fault, int hlevel,
d4878f24 409 pfn_t pfn, bool map_writable, bool prefault)
6aa8b732 410{
5991b332 411 struct kvm_mmu_page *sp = NULL;
24157aaf 412 struct kvm_shadow_walk_iterator it;
d4878f24
XG
413 unsigned direct_access, access = gw->pt_access;
414 int top_level, emulate = 0;
abb9e0b8 415
43a3795a 416 if (!is_present_gpte(gw->ptes[gw->level - 1]))
d4878f24 417 return 0;
6aa8b732 418
b36c7a7c 419 direct_access = gw->pte_access;
84754cd8 420
5991b332
AK
421 top_level = vcpu->arch.mmu.root_level;
422 if (top_level == PT32E_ROOT_LEVEL)
423 top_level = PT32_ROOT_LEVEL;
424 /*
425 * Verify that the top-level gpte is still there. Since the page
426 * is a root page, it is either write protected (and cannot be
427 * changed from now on) or it is invalid (in which case, we don't
428 * really care if it changes underneath us after this point).
429 */
430 if (FNAME(gpte_changed)(vcpu, gw, top_level))
431 goto out_gpte_changed;
432
24157aaf
AK
433 for (shadow_walk_init(&it, vcpu, addr);
434 shadow_walk_okay(&it) && it.level > gw->level;
435 shadow_walk_next(&it)) {
0b3c9333
AK
436 gfn_t table_gfn;
437
a30f47cb 438 clear_sp_write_flooding_count(it.sptep);
24157aaf 439 drop_large_spte(vcpu, it.sptep);
ef0197e8 440
5991b332 441 sp = NULL;
24157aaf
AK
442 if (!is_shadow_present_pte(*it.sptep)) {
443 table_gfn = gw->table_gfn[it.level - 2];
444 sp = kvm_mmu_get_page(vcpu, table_gfn, addr, it.level-1,
445 false, access, it.sptep);
5991b332 446 }
0b3c9333
AK
447
448 /*
449 * Verify that the gpte in the page we've just write
450 * protected is still there.
451 */
24157aaf 452 if (FNAME(gpte_changed)(vcpu, gw, it.level - 1))
0b3c9333 453 goto out_gpte_changed;
abb9e0b8 454
5991b332 455 if (sp)
24157aaf 456 link_shadow_page(it.sptep, sp);
e7a04c99 457 }
050e6499 458
0b3c9333 459 for (;
24157aaf
AK
460 shadow_walk_okay(&it) && it.level > hlevel;
461 shadow_walk_next(&it)) {
0b3c9333
AK
462 gfn_t direct_gfn;
463
a30f47cb 464 clear_sp_write_flooding_count(it.sptep);
24157aaf 465 validate_direct_spte(vcpu, it.sptep, direct_access);
0b3c9333 466
24157aaf 467 drop_large_spte(vcpu, it.sptep);
0b3c9333 468
24157aaf 469 if (is_shadow_present_pte(*it.sptep))
0b3c9333
AK
470 continue;
471
24157aaf 472 direct_gfn = gw->gfn & ~(KVM_PAGES_PER_HPAGE(it.level) - 1);
0b3c9333 473
24157aaf
AK
474 sp = kvm_mmu_get_page(vcpu, direct_gfn, addr, it.level-1,
475 true, direct_access, it.sptep);
476 link_shadow_page(it.sptep, sp);
0b3c9333
AK
477 }
478
a30f47cb 479 clear_sp_write_flooding_count(it.sptep);
b36c7a7c 480 mmu_set_spte(vcpu, it.sptep, access, gw->pte_access,
d4878f24 481 user_fault, write_fault, &emulate, it.level,
fb67e14f 482 gw->gfn, pfn, prefault, map_writable);
189be38d 483 FNAME(pte_prefetch)(vcpu, gw, it.sptep);
0b3c9333 484
d4878f24 485 return emulate;
0b3c9333
AK
486
487out_gpte_changed:
5991b332 488 if (sp)
24157aaf 489 kvm_mmu_put_page(sp, it.sptep);
0b3c9333 490 kvm_release_pfn_clean(pfn);
d4878f24 491 return 0;
6aa8b732
AK
492}
493
6aa8b732
AK
494/*
495 * Page fault handler. There are several causes for a page fault:
496 * - there is no shadow pte for the guest pte
497 * - write access through a shadow pte marked read only so that we can set
498 * the dirty bit
499 * - write access to a shadow pte marked read only so we can update the page
500 * dirty bitmap, when userspace requests it
501 * - mmio access; in this case we will never install a present shadow pte
502 * - normal guest page fault due to the guest pte marked not present, not
503 * writable, or not executable
504 *
e2dec939
AK
505 * Returns: 1 if we need to emulate the instruction, 0 otherwise, or
506 * a negative value on error.
6aa8b732 507 */
56028d08 508static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr, u32 error_code,
78b2c54a 509 bool prefault)
6aa8b732
AK
510{
511 int write_fault = error_code & PFERR_WRITE_MASK;
6aa8b732
AK
512 int user_fault = error_code & PFERR_USER_MASK;
513 struct guest_walker walker;
e2dec939 514 int r;
35149e21 515 pfn_t pfn;
7e4e4056 516 int level = PT_PAGE_TABLE_LEVEL;
936a5fe6 517 int force_pt_level;
e930bffe 518 unsigned long mmu_seq;
612819c3 519 bool map_writable;
6aa8b732 520
b8688d51 521 pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
714b93da 522
ce88decf
XG
523 if (unlikely(error_code & PFERR_RSVD_MASK))
524 return handle_mmio_page_fault(vcpu, addr, error_code,
525 mmu_is_nested(vcpu));
526
e2dec939
AK
527 r = mmu_topup_memory_caches(vcpu);
528 if (r)
529 return r;
714b93da 530
6aa8b732 531 /*
a8b876b1 532 * Look up the guest pte for the faulting address.
6aa8b732 533 */
33770780 534 r = FNAME(walk_addr)(&walker, vcpu, addr, error_code);
6aa8b732
AK
535
536 /*
537 * The page is not mapped by the guest. Let the guest handle it.
538 */
7993ba43 539 if (!r) {
b8688d51 540 pgprintk("%s: guest page fault\n", __func__);
a30f47cb 541 if (!prefault)
fb67e14f 542 inject_page_fault(vcpu, &walker.fault);
a30f47cb 543
6aa8b732
AK
544 return 0;
545 }
546
936a5fe6
AA
547 if (walker.level >= PT_DIRECTORY_LEVEL)
548 force_pt_level = mapping_level_dirty_bitmap(vcpu, walker.gfn);
549 else
550 force_pt_level = 1;
551 if (!force_pt_level) {
7e4e4056
JR
552 level = min(walker.level, mapping_level(vcpu, walker.gfn));
553 walker.gfn = walker.gfn & ~(KVM_PAGES_PER_HPAGE(level) - 1);
05da4558 554 }
7e4e4056 555
e930bffe 556 mmu_seq = vcpu->kvm->mmu_notifier_seq;
4c2155ce 557 smp_rmb();
af585b92 558
78b2c54a 559 if (try_async_pf(vcpu, prefault, walker.gfn, addr, &pfn, write_fault,
612819c3 560 &map_writable))
af585b92 561 return 0;
d7824fff 562
d7c55201
XG
563 if (handle_abnormal_pfn(vcpu, mmu_is_nested(vcpu) ? 0 : addr,
564 walker.gfn, pfn, walker.pte_access, &r))
565 return r;
566
aaee2c94 567 spin_lock(&vcpu->kvm->mmu_lock);
8ca40a70 568 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
e930bffe 569 goto out_unlock;
bc32ce21 570
0375f7fa 571 kvm_mmu_audit(vcpu, AUDIT_PRE_PAGE_FAULT);
eb787d10 572 kvm_mmu_free_some_pages(vcpu);
936a5fe6
AA
573 if (!force_pt_level)
574 transparent_hugepage_adjust(vcpu, &walker.gfn, &pfn, &level);
d4878f24
XG
575 r = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
576 level, pfn, map_writable, prefault);
1165f5fe 577 ++vcpu->stat.pf_fixed;
0375f7fa 578 kvm_mmu_audit(vcpu, AUDIT_POST_PAGE_FAULT);
aaee2c94 579 spin_unlock(&vcpu->kvm->mmu_lock);
6aa8b732 580
d4878f24 581 return r;
e930bffe
AA
582
583out_unlock:
584 spin_unlock(&vcpu->kvm->mmu_lock);
585 kvm_release_pfn_clean(pfn);
586 return 0;
6aa8b732
AK
587}
588
505aef8f
XG
589static gpa_t FNAME(get_level1_sp_gpa)(struct kvm_mmu_page *sp)
590{
591 int offset = 0;
592
f71fa31f 593 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
505aef8f
XG
594
595 if (PTTYPE == 32)
596 offset = sp->role.quadrant << PT64_LEVEL_BITS;
597
598 return gfn_to_gpa(sp->gfn) + offset * sizeof(pt_element_t);
599}
600
a461930b 601static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva)
a7052897 602{
a461930b 603 struct kvm_shadow_walk_iterator iterator;
f78978aa 604 struct kvm_mmu_page *sp;
a461930b
AK
605 int level;
606 u64 *sptep;
607
bebb106a
XG
608 vcpu_clear_mmio_info(vcpu, gva);
609
f57f2ef5
XG
610 /*
611 * No need to check return value here, rmap_can_add() can
612 * help us to skip pte prefetch later.
613 */
614 mmu_topup_memory_caches(vcpu);
a7052897 615
f57f2ef5 616 spin_lock(&vcpu->kvm->mmu_lock);
a461930b
AK
617 for_each_shadow_entry(vcpu, gva, iterator) {
618 level = iterator.level;
619 sptep = iterator.sptep;
ad218f85 620
f78978aa 621 sp = page_header(__pa(sptep));
884a0ff0 622 if (is_last_spte(*sptep, level)) {
f57f2ef5
XG
623 pt_element_t gpte;
624 gpa_t pte_gpa;
625
f78978aa
XG
626 if (!sp->unsync)
627 break;
628
505aef8f 629 pte_gpa = FNAME(get_level1_sp_gpa)(sp);
08e850c6 630 pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t);
a461930b 631
505aef8f
XG
632 if (mmu_page_zap_pte(vcpu->kvm, sp, sptep))
633 kvm_flush_remote_tlbs(vcpu->kvm);
f57f2ef5
XG
634
635 if (!rmap_can_add(vcpu))
636 break;
637
638 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
639 sizeof(pt_element_t)))
640 break;
641
642 FNAME(update_pte)(vcpu, sp, sptep, &gpte);
87917239 643 }
a7052897 644
f78978aa 645 if (!is_shadow_present_pte(*sptep) || !sp->unsync_children)
a461930b
AK
646 break;
647 }
ad218f85 648 spin_unlock(&vcpu->kvm->mmu_lock);
a7052897
MT
649}
650
1871c602 651static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr, u32 access,
ab9ae313 652 struct x86_exception *exception)
6aa8b732
AK
653{
654 struct guest_walker walker;
e119d117
AK
655 gpa_t gpa = UNMAPPED_GVA;
656 int r;
6aa8b732 657
33770780 658 r = FNAME(walk_addr)(&walker, vcpu, vaddr, access);
6aa8b732 659
e119d117 660 if (r) {
1755fbcc 661 gpa = gfn_to_gpa(walker.gfn);
e119d117 662 gpa |= vaddr & ~PAGE_MASK;
8c28d031
AK
663 } else if (exception)
664 *exception = walker.fault;
6aa8b732
AK
665
666 return gpa;
667}
668
6539e738 669static gpa_t FNAME(gva_to_gpa_nested)(struct kvm_vcpu *vcpu, gva_t vaddr,
ab9ae313
AK
670 u32 access,
671 struct x86_exception *exception)
6539e738
JR
672{
673 struct guest_walker walker;
674 gpa_t gpa = UNMAPPED_GVA;
675 int r;
676
33770780 677 r = FNAME(walk_addr_nested)(&walker, vcpu, vaddr, access);
6539e738
JR
678
679 if (r) {
680 gpa = gfn_to_gpa(walker.gfn);
681 gpa |= vaddr & ~PAGE_MASK;
8c28d031
AK
682 } else if (exception)
683 *exception = walker.fault;
6539e738
JR
684
685 return gpa;
686}
687
e8bc217a
MT
688/*
689 * Using the cached information from sp->gfns is safe because:
690 * - The spte has a reference to the struct page, so the pfn for a given gfn
691 * can't change unless all sptes pointing to it are nuked first.
a4ee1ca4
XG
692 *
693 * Note:
694 * We should flush all tlbs if spte is dropped even though guest is
695 * responsible for it. Since if we don't, kvm_mmu_notifier_invalidate_page
696 * and kvm_mmu_notifier_invalidate_range_start detect the mapping page isn't
697 * used by guest then tlbs are not flushed, so guest is allowed to access the
698 * freed pages.
699 * And we increase kvm->tlbs_dirty to delay tlbs flush in this case.
e8bc217a 700 */
a4a8e6f7 701static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
e8bc217a 702{
505aef8f 703 int i, nr_present = 0;
9bdbba13 704 bool host_writable;
51fb60d8 705 gpa_t first_pte_gpa;
e8bc217a 706
2032a93d
LJ
707 /* direct kvm_mmu_page can not be unsync. */
708 BUG_ON(sp->role.direct);
709
505aef8f 710 first_pte_gpa = FNAME(get_level1_sp_gpa)(sp);
51fb60d8 711
e8bc217a
MT
712 for (i = 0; i < PT64_ENT_PER_PAGE; i++) {
713 unsigned pte_access;
714 pt_element_t gpte;
715 gpa_t pte_gpa;
f55c3f41 716 gfn_t gfn;
e8bc217a 717
ce88decf 718 if (!sp->spt[i])
e8bc217a
MT
719 continue;
720
51fb60d8 721 pte_gpa = first_pte_gpa + i * sizeof(pt_element_t);
e8bc217a
MT
722
723 if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte,
724 sizeof(pt_element_t)))
725 return -EINVAL;
726
a052b42b 727 if (prefetch_invalid_gpte(vcpu, sp, &sp->spt[i], gpte)) {
a4ee1ca4 728 vcpu->kvm->tlbs_dirty++;
407c61c6
XG
729 continue;
730 }
731
ce88decf
XG
732 gfn = gpte_to_gfn(gpte);
733 pte_access = sp->role.access;
3d34adec 734 pte_access &= gpte_access(vcpu, gpte);
8ea667f2 735 protect_clean_gpte(&pte_access, gpte);
ce88decf
XG
736
737 if (sync_mmio_spte(&sp->spt[i], gfn, pte_access, &nr_present))
738 continue;
739
407c61c6 740 if (gfn != sp->gfns[i]) {
c3707958 741 drop_spte(vcpu->kvm, &sp->spt[i]);
a4ee1ca4 742 vcpu->kvm->tlbs_dirty++;
e8bc217a
MT
743 continue;
744 }
745
746 nr_present++;
ce88decf 747
f8e453b0
XG
748 host_writable = sp->spt[i] & SPTE_HOST_WRITEABLE;
749
e8bc217a 750 set_spte(vcpu, &sp->spt[i], pte_access, 0, 0,
640d9b0d 751 PT_PAGE_TABLE_LEVEL, gfn,
1403283a 752 spte_to_pfn(sp->spt[i]), true, false,
9bdbba13 753 host_writable);
e8bc217a
MT
754 }
755
756 return !nr_present;
757}
758
6aa8b732
AK
759#undef pt_element_t
760#undef guest_walker
761#undef FNAME
762#undef PT_BASE_ADDR_MASK
763#undef PT_INDEX
e04da980
JR
764#undef PT_LVL_ADDR_MASK
765#undef PT_LVL_OFFSET_MASK
c7addb90 766#undef PT_LEVEL_BITS
cea0f0e7 767#undef PT_MAX_FULL_LEVELS
5fb07ddb 768#undef gpte_to_gfn
e04da980 769#undef gpte_to_gfn_lvl
b3e4e63f 770#undef CMPXCHG