paging_tmpl.h 13.1 KB
Newer Older
A
Avi Kivity 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * Kernel-based Virtual Machine driver for Linux
 *
 * This module enables machines with Intel VT-x extensions to run virtual
 * machines without emulation or binary translation.
 *
 * MMU support
 *
 * Copyright (C) 2006 Qumranet, Inc.
 *
 * Authors:
 *   Yaniv Kamay  <yaniv@qumranet.com>
 *   Avi Kivity   <avi@qumranet.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

/*
 * We need the mmu code to access both 32-bit and 64-bit guest ptes,
 * so the code in this file is compiled twice, once per pte size.
 */

#if PTTYPE == 64
	#define pt_element_t u64
	#define guest_walker guest_walker64
	#define FNAME(name) paging##64_##name
	#define PT_BASE_ADDR_MASK PT64_BASE_ADDR_MASK
	#define PT_DIR_BASE_ADDR_MASK PT64_DIR_BASE_ADDR_MASK
	#define PT_INDEX(addr, level) PT64_INDEX(addr, level)
	#define PT_LEVEL_MASK(level) PT64_LEVEL_MASK(level)
33
	#define PT_LEVEL_BITS PT64_LEVEL_BITS
34 35
	#ifdef CONFIG_X86_64
	#define PT_MAX_FULL_LEVELS 4
36
	#define CMPXCHG cmpxchg
37
	#else
38
	#define CMPXCHG cmpxchg64
39 40
	#define PT_MAX_FULL_LEVELS 2
	#endif
A
Avi Kivity 已提交
41 42 43 44 45 46 47 48
#elif PTTYPE == 32
	#define pt_element_t u32
	#define guest_walker guest_walker32
	#define FNAME(name) paging##32_##name
	#define PT_BASE_ADDR_MASK PT32_BASE_ADDR_MASK
	#define PT_DIR_BASE_ADDR_MASK PT32_DIR_BASE_ADDR_MASK
	#define PT_INDEX(addr, level) PT32_INDEX(addr, level)
	#define PT_LEVEL_MASK(level) PT32_LEVEL_MASK(level)
49
	#define PT_LEVEL_BITS PT32_LEVEL_BITS
50
	#define PT_MAX_FULL_LEVELS 2
51
	#define CMPXCHG cmpxchg
A
Avi Kivity 已提交
52 53 54 55
#else
	#error Invalid PTTYPE value
#endif

56 57 58
#define gpte_to_gfn FNAME(gpte_to_gfn)
#define gpte_to_gfn_pde FNAME(gpte_to_gfn_pde)

A
Avi Kivity 已提交
59 60 61 62 63 64
/*
 * The guest_walker structure emulates the behavior of the hardware page
 * table walker.
 */
struct guest_walker {
	int level;
65
	gfn_t table_gfn[PT_MAX_FULL_LEVELS];
66 67
	pt_element_t ptes[PT_MAX_FULL_LEVELS];
	gpa_t pte_gpa[PT_MAX_FULL_LEVELS];
68 69
	unsigned pt_access;
	unsigned pte_access;
70
	gfn_t gfn;
71
	u32 error_code;
A
Avi Kivity 已提交
72 73
};

74 75 76 77 78 79 80 81 82 83
static gfn_t gpte_to_gfn(pt_element_t gpte)
{
	return (gpte & PT_BASE_ADDR_MASK) >> PAGE_SHIFT;
}

static gfn_t gpte_to_gfn_pde(pt_element_t gpte)
{
	return (gpte & PT_DIR_BASE_ADDR_MASK) >> PAGE_SHIFT;
}

84 85 86 87 88 89 90 91
static bool FNAME(cmpxchg_gpte)(struct kvm *kvm,
			 gfn_t table_gfn, unsigned index,
			 pt_element_t orig_pte, pt_element_t new_pte)
{
	pt_element_t ret;
	pt_element_t *table;
	struct page *page;

92
	down_read(&current->mm->mmap_sem);
93
	page = gfn_to_page(kvm, table_gfn);
94 95
	up_read(&current->mm->mmap_sem);

96 97 98 99 100 101 102 103 104 105 106
	table = kmap_atomic(page, KM_USER0);

	ret = CMPXCHG(&table[index], orig_pte, new_pte);

	kunmap_atomic(table, KM_USER0);

	kvm_release_page_dirty(page);

	return (ret != orig_pte);
}

107 108 109 110 111 112 113 114 115 116 117 118
static unsigned FNAME(gpte_access)(struct kvm_vcpu *vcpu, pt_element_t gpte)
{
	unsigned access;

	access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
#if PTTYPE == 64
	if (is_nx(vcpu))
		access &= ~(gpte >> PT64_NX_SHIFT);
#endif
	return access;
}

119 120 121
/*
 * Fetch a guest pte for a guest virtual address
 */
122 123
static int FNAME(walk_addr)(struct guest_walker *walker,
			    struct kvm_vcpu *vcpu, gva_t addr,
124
			    int write_fault, int user_fault, int fetch_fault)
A
Avi Kivity 已提交
125
{
126
	pt_element_t pte;
127
	gfn_t table_gfn;
128
	unsigned index, pt_access, pte_access;
129
	gpa_t pte_gpa;
A
Avi Kivity 已提交
130

131
	pgprintk("%s: addr %lx\n", __func__, addr);
132
walk:
133 134
	walker->level = vcpu->arch.mmu.root_level;
	pte = vcpu->arch.cr3;
135 136
#if PTTYPE == 64
	if (!is_long_mode(vcpu)) {
137
		pte = vcpu->arch.pdptrs[(addr >> 30) & 3];
138
		if (!is_present_pte(pte))
139
			goto not_present;
140 141 142
		--walker->level;
	}
#endif
A
Avi Kivity 已提交
143
	ASSERT((!is_long_mode(vcpu) && is_pae(vcpu)) ||
144
	       (vcpu->arch.cr3 & CR3_NONPAE_RESERVED_BITS) == 0);
A
Avi Kivity 已提交
145

146
	pt_access = ACC_ALL;
147 148

	for (;;) {
149
		index = PT_INDEX(addr, walker->level);
150

151
		table_gfn = gpte_to_gfn(pte);
A
Avi Kivity 已提交
152
		pte_gpa = gfn_to_gpa(table_gfn);
153
		pte_gpa += index * sizeof(pt_element_t);
154
		walker->table_gfn[walker->level - 1] = table_gfn;
155
		walker->pte_gpa[walker->level - 1] = pte_gpa;
156
		pgprintk("%s: table_gfn[%d] %lx\n", __func__,
157 158
			 walker->level - 1, table_gfn);

159
		kvm_read_guest(vcpu->kvm, pte_gpa, &pte, sizeof(pte));
160 161

		if (!is_present_pte(pte))
162 163
			goto not_present;

164
		if (write_fault && !is_writeble_pte(pte))
165 166 167
			if (user_fault || is_write_protection(vcpu))
				goto access_error;

168
		if (user_fault && !(pte & PT_USER_MASK))
169 170
			goto access_error;

171
#if PTTYPE == 64
172
		if (fetch_fault && is_nx(vcpu) && (pte & PT64_NX_MASK))
173 174 175
			goto access_error;
#endif

176
		if (!(pte & PT_ACCESSED_MASK)) {
177
			mark_page_dirty(vcpu->kvm, table_gfn);
178 179 180
			if (FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn,
			    index, pte, pte|PT_ACCESSED_MASK))
				goto walk;
181
			pte |= PT_ACCESSED_MASK;
182
		}
183

184
		pte_access = pt_access & FNAME(gpte_access)(vcpu, pte);
185

186 187
		walker->ptes[walker->level - 1] = pte;

188
		if (walker->level == PT_PAGE_TABLE_LEVEL) {
189
			walker->gfn = gpte_to_gfn(pte);
190 191 192 193
			break;
		}

		if (walker->level == PT_DIRECTORY_LEVEL
194
		    && (pte & PT_PAGE_SIZE_MASK)
195
		    && (PTTYPE == 64 || is_pse(vcpu))) {
196
			walker->gfn = gpte_to_gfn_pde(pte);
197
			walker->gfn += PT_INDEX(addr, PT_PAGE_TABLE_LEVEL);
198 199
			if (PTTYPE == 32 && is_cpuid_PSE36())
				walker->gfn += pse36_gfn_delta(pte);
200
			break;
201
		}
202

203
		pt_access = pte_access;
204 205
		--walker->level;
	}
206 207

	if (write_fault && !is_dirty_pte(pte)) {
208 209
		bool ret;

210
		mark_page_dirty(vcpu->kvm, table_gfn);
211 212 213 214
		ret = FNAME(cmpxchg_gpte)(vcpu->kvm, table_gfn, index, pte,
			    pte|PT_DIRTY_MASK);
		if (ret)
			goto walk;
215 216
		pte |= PT_DIRTY_MASK;
		kvm_mmu_pte_write(vcpu, pte_gpa, (u8 *)&pte, sizeof(pte));
217
		walker->ptes[walker->level - 1] = pte;
218 219
	}

220 221 222
	walker->pt_access = pt_access;
	walker->pte_access = pte_access;
	pgprintk("%s: pte %llx pte_access %x pt_access %x\n",
223
		 __func__, (u64)pte, pt_access, pte_access);
224 225 226 227 228 229 230 231 232 233 234 235 236 237
	return 1;

not_present:
	walker->error_code = 0;
	goto err;

access_error:
	walker->error_code = PFERR_PRESENT_MASK;

err:
	if (write_fault)
		walker->error_code |= PFERR_WRITE_MASK;
	if (user_fault)
		walker->error_code |= PFERR_USER_MASK;
238 239
	if (fetch_fault)
		walker->error_code |= PFERR_FETCH_MASK;
240
	return 0;
A
Avi Kivity 已提交
241 242
}

243
static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *page,
244
			      u64 *spte, const void *pte)
245 246
{
	pt_element_t gpte;
247
	unsigned pte_access;
248
	pfn_t pfn;
M
Marcelo Tosatti 已提交
249
	int largepage = vcpu->arch.update_pte.largepage;
250 251

	gpte = *(const pt_element_t *)pte;
252
	if (~gpte & (PT_PRESENT_MASK | PT_ACCESSED_MASK)) {
253
		if (!is_present_pte(gpte))
254 255 256
			set_shadow_pte(spte, shadow_notrap_nonpresent_pte);
		return;
	}
257
	pgprintk("%s: gpte %llx spte %p\n", __func__, (u64)gpte, spte);
258
	pte_access = page->role.access & FNAME(gpte_access)(vcpu, gpte);
259 260
	if (gpte_to_gfn(gpte) != vcpu->arch.update_pte.gfn)
		return;
261 262
	pfn = vcpu->arch.update_pte.pfn;
	if (is_error_pfn(pfn))
263
		return;
264 265
	if (mmu_notifier_retry(vcpu, vcpu->arch.update_pte.mmu_seq))
		return;
266
	kvm_get_pfn(pfn);
267
	mmu_set_spte(vcpu, spte, page->role.access, pte_access, 0, 0,
M
Marcelo Tosatti 已提交
268
		     gpte & PT_DIRTY_MASK, NULL, largepage, gpte_to_gfn(gpte),
269
		     pfn, true);
270 271
}

A
Avi Kivity 已提交
272 273 274 275
/*
 * Fetch a shadow pte for a specific level in the paging hierarchy.
 */
static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
276
			 struct guest_walker *walker,
M
Marcelo Tosatti 已提交
277
			 int user_fault, int write_fault, int largepage,
278
			 int *ptwrite, pfn_t pfn)
A
Avi Kivity 已提交
279 280 281
{
	hpa_t shadow_addr;
	int level;
282
	u64 *shadow_ent;
283
	unsigned access = walker->pt_access;
284

285
	if (!is_present_pte(walker->ptes[walker->level - 1]))
286
		return NULL;
A
Avi Kivity 已提交
287

288 289
	shadow_addr = vcpu->arch.mmu.root_hpa;
	level = vcpu->arch.mmu.shadow_root_level;
290
	if (level == PT32E_ROOT_LEVEL) {
291
		shadow_addr = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
292 293 294
		shadow_addr &= PT64_BASE_ADDR_MASK;
		--level;
	}
A
Avi Kivity 已提交
295 296 297

	for (; ; level--) {
		u32 index = SHADOW_PT_INDEX(addr, level);
298
		struct kvm_mmu_page *shadow_page;
299
		u64 shadow_pte;
300 301
		int metaphysical;
		gfn_t table_gfn;
A
Avi Kivity 已提交
302

303
		shadow_ent = ((u64 *)__va(shadow_addr)) + index;
304 305
		if (level == PT_PAGE_TABLE_LEVEL)
			break;
M
Marcelo Tosatti 已提交
306 307 308 309 310 311

		if (largepage && level == PT_DIRECTORY_LEVEL)
			break;

		if (is_shadow_present_pte(*shadow_ent)
		    && !is_large_pte(*shadow_ent)) {
A
Avi Kivity 已提交
312 313 314 315
			shadow_addr = *shadow_ent & PT64_BASE_ADDR_MASK;
			continue;
		}

M
Marcelo Tosatti 已提交
316 317 318
		if (is_large_pte(*shadow_ent))
			rmap_remove(vcpu->kvm, shadow_ent);

319 320 321
		if (level - 1 == PT_PAGE_TABLE_LEVEL
		    && walker->level == PT_DIRECTORY_LEVEL) {
			metaphysical = 1;
322
			if (!is_dirty_pte(walker->ptes[level - 1]))
323
				access &= ~ACC_WRITE_MASK;
324
			table_gfn = gpte_to_gfn(walker->ptes[level - 1]);
325 326 327 328 329
		} else {
			metaphysical = 0;
			table_gfn = walker->table_gfn[level - 2];
		}
		shadow_page = kvm_mmu_get_page(vcpu, table_gfn, addr, level-1,
330
					       metaphysical, access,
331 332
					       shadow_ent);
		if (!metaphysical) {
333
			int r;
334
			pt_element_t curr_pte;
335 336 337
			r = kvm_read_guest_atomic(vcpu->kvm,
						  walker->pte_gpa[level - 2],
						  &curr_pte, sizeof(curr_pte));
338
			if (r || curr_pte != walker->ptes[level - 2]) {
339
				kvm_release_pfn_clean(pfn);
340
				return NULL;
341
			}
342
		}
343
		shadow_addr = __pa(shadow_page->spt);
344 345
		shadow_pte = shadow_addr | PT_PRESENT_MASK | PT_ACCESSED_MASK
			| PT_WRITABLE_MASK | PT_USER_MASK;
A
Avi Kivity 已提交
346
		set_shadow_pte(shadow_ent, shadow_pte);
A
Avi Kivity 已提交
347
	}
348

349
	mmu_set_spte(vcpu, shadow_ent, access, walker->pte_access & access,
350 351
		     user_fault, write_fault,
		     walker->ptes[walker->level-1] & PT_DIRTY_MASK,
352
		     ptwrite, largepage, walker->gfn, pfn, false);
A
Avi Kivity 已提交
353

354
	return shadow_ent;
A
Avi Kivity 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367
}

/*
 * Page fault handler.  There are several causes for a page fault:
 *   - there is no shadow pte for the guest pte
 *   - write access through a shadow pte marked read only so that we can set
 *     the dirty bit
 *   - write access to a shadow pte marked read only so we can update the page
 *     dirty bitmap, when userspace requests it
 *   - mmio access; in this case we will never install a present shadow pte
 *   - normal guest page fault due to the guest pte marked not present, not
 *     writable, or not executable
 *
368 369
 *  Returns: 1 if we need to emulate the instruction, 0 otherwise, or
 *           a negative value on error.
A
Avi Kivity 已提交
370 371 372 373 374 375
 */
static int FNAME(page_fault)(struct kvm_vcpu *vcpu, gva_t addr,
			       u32 error_code)
{
	int write_fault = error_code & PFERR_WRITE_MASK;
	int user_fault = error_code & PFERR_USER_MASK;
376
	int fetch_fault = error_code & PFERR_FETCH_MASK;
A
Avi Kivity 已提交
377 378
	struct guest_walker walker;
	u64 *shadow_pte;
379
	int write_pt = 0;
380
	int r;
381
	pfn_t pfn;
M
Marcelo Tosatti 已提交
382
	int largepage = 0;
383
	unsigned long mmu_seq;
A
Avi Kivity 已提交
384

385
	pgprintk("%s: addr %lx err %x\n", __func__, addr, error_code);
386
	kvm_mmu_audit(vcpu, "pre page fault");
387

388 389 390
	r = mmu_topup_memory_caches(vcpu);
	if (r)
		return r;
391

A
Avi Kivity 已提交
392 393 394
	/*
	 * Look up the shadow pte for the faulting address.
	 */
395 396
	r = FNAME(walk_addr)(&walker, vcpu, addr, write_fault, user_fault,
			     fetch_fault);
A
Avi Kivity 已提交
397 398 399 400

	/*
	 * The page is not mapped by the guest.  Let the guest handle it.
	 */
401
	if (!r) {
402
		pgprintk("%s: guest page fault\n", __func__);
403
		inject_page_fault(vcpu, addr, walker.error_code);
404
		vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
A
Avi Kivity 已提交
405 406 407
		return 0;
	}

408
	down_read(&current->mm->mmap_sem);
M
Marcelo Tosatti 已提交
409 410 411 412 413 414 415 416
	if (walker.level == PT_DIRECTORY_LEVEL) {
		gfn_t large_gfn;
		large_gfn = walker.gfn & ~(KVM_PAGES_PER_HPAGE-1);
		if (is_largepage_backed(vcpu, large_gfn)) {
			walker.gfn = large_gfn;
			largepage = 1;
		}
	}
417 418
	mmu_seq = vcpu->kvm->mmu_notifier_seq;
	/* implicit mb(), we'll read before PT lock is unlocked */
419
	pfn = gfn_to_pfn(vcpu->kvm, walker.gfn);
420
	up_read(&current->mm->mmap_sem);
421

422
	/* mmio */
423
	if (is_error_pfn(pfn)) {
424
		pgprintk("gfn %lx is mmio\n", walker.gfn);
425
		kvm_release_pfn_clean(pfn);
426 427 428
		return 1;
	}

429
	spin_lock(&vcpu->kvm->mmu_lock);
430 431
	if (mmu_notifier_retry(vcpu, mmu_seq))
		goto out_unlock;
432
	kvm_mmu_free_some_pages(vcpu);
433
	shadow_pte = FNAME(fetch)(vcpu, addr, &walker, user_fault, write_fault,
434
				  largepage, &write_pt, pfn);
M
Marcelo Tosatti 已提交
435

436
	pgprintk("%s: shadow pte %p %llx ptwrite %d\n", __func__,
437
		 shadow_pte, *shadow_pte, write_pt);
438

439
	if (!write_pt)
440
		vcpu->arch.last_pt_write_count = 0; /* reset fork detector */
441

A
Avi Kivity 已提交
442
	++vcpu->stat.pf_fixed;
443
	kvm_mmu_audit(vcpu, "post page fault (fixed)");
444
	spin_unlock(&vcpu->kvm->mmu_lock);
A
Avi Kivity 已提交
445

446
	return write_pt;
447 448 449 450 451

out_unlock:
	spin_unlock(&vcpu->kvm->mmu_lock);
	kvm_release_pfn_clean(pfn);
	return 0;
A
Avi Kivity 已提交
452 453 454 455 456
}

static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr)
{
	struct guest_walker walker;
A
Avi Kivity 已提交
457 458
	gpa_t gpa = UNMAPPED_GVA;
	int r;
A
Avi Kivity 已提交
459

A
Avi Kivity 已提交
460
	r = FNAME(walk_addr)(&walker, vcpu, vaddr, 0, 0, 0);
A
Avi Kivity 已提交
461

A
Avi Kivity 已提交
462
	if (r) {
A
Avi Kivity 已提交
463
		gpa = gfn_to_gpa(walker.gfn);
A
Avi Kivity 已提交
464
		gpa |= vaddr & ~PAGE_MASK;
A
Avi Kivity 已提交
465 466 467 468 469
	}

	return gpa;
}

470 471 472
static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
				 struct kvm_mmu_page *sp)
{
A
Avi Kivity 已提交
473 474 475
	int i, j, offset, r;
	pt_element_t pt[256 / sizeof(pt_element_t)];
	gpa_t pte_gpa;
476

477 478
	if (sp->role.metaphysical
	    || (PTTYPE == 32 && sp->role.level > PT_PAGE_TABLE_LEVEL)) {
479 480 481 482
		nonpaging_prefetch_page(vcpu, sp);
		return;
	}

A
Avi Kivity 已提交
483 484
	pte_gpa = gfn_to_gpa(sp->gfn);
	if (PTTYPE == 32) {
485
		offset = sp->role.quadrant << PT64_LEVEL_BITS;
A
Avi Kivity 已提交
486 487
		pte_gpa += offset * sizeof(pt_element_t);
	}
488

A
Avi Kivity 已提交
489 490 491 492 493 494 495 496
	for (i = 0; i < PT64_ENT_PER_PAGE; i += ARRAY_SIZE(pt)) {
		r = kvm_read_guest_atomic(vcpu->kvm, pte_gpa, pt, sizeof pt);
		pte_gpa += ARRAY_SIZE(pt) * sizeof(pt_element_t);
		for (j = 0; j < ARRAY_SIZE(pt); ++j)
			if (r || is_present_pte(pt[j]))
				sp->spt[i+j] = shadow_trap_nonpresent_pte;
			else
				sp->spt[i+j] = shadow_notrap_nonpresent_pte;
497
	}
498 499
}

A
Avi Kivity 已提交
500 501 502 503 504 505 506
#undef pt_element_t
#undef guest_walker
#undef FNAME
#undef PT_BASE_ADDR_MASK
#undef PT_INDEX
#undef PT_LEVEL_MASK
#undef PT_DIR_BASE_ADDR_MASK
507
#undef PT_LEVEL_BITS
508
#undef PT_MAX_FULL_LEVELS
509 510
#undef gpte_to_gfn
#undef gpte_to_gfn_pde
511
#undef CMPXCHG