vmx.c 69.3 KB
Newer Older
A
Avi Kivity 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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.
 *
 * Copyright (C) 2006 Qumranet, Inc.
 *
 * Authors:
 *   Avi Kivity   <avi@qumranet.com>
 *   Yaniv Kamay  <yaniv@qumranet.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

18
#include "irq.h"
A
Avi Kivity 已提交
19
#include "vmx.h"
20
#include "mmu.h"
A
Avi Kivity 已提交
21

22
#include <linux/kvm_host.h>
A
Avi Kivity 已提交
23
#include <linux/module.h>
24
#include <linux/kernel.h>
A
Avi Kivity 已提交
25 26
#include <linux/mm.h>
#include <linux/highmem.h>
A
Alexey Dobriyan 已提交
27
#include <linux/sched.h>
28
#include <linux/moduleparam.h>
A
Avi Kivity 已提交
29

A
Avi Kivity 已提交
30
#include <asm/io.h>
A
Anthony Liguori 已提交
31
#include <asm/desc.h>
A
Avi Kivity 已提交
32 33 34 35

MODULE_AUTHOR("Qumranet");
MODULE_LICENSE("GPL");

36 37 38
static int bypass_guest_pf = 1;
module_param(bypass_guest_pf, bool, 0);

39 40 41
static int enable_vpid = 1;
module_param(enable_vpid, bool, 0);

42 43 44 45 46 47 48
struct vmcs {
	u32 revision_id;
	u32 abort;
	char data[0];
};

struct vcpu_vmx {
R
Rusty Russell 已提交
49
	struct kvm_vcpu       vcpu;
50
	int                   launched;
51
	u8                    fail;
52
	u32                   idt_vectoring_info;
53 54 55 56 57 58 59 60 61 62 63 64
	struct kvm_msr_entry *guest_msrs;
	struct kvm_msr_entry *host_msrs;
	int                   nmsrs;
	int                   save_nmsrs;
	int                   msr_offset_efer;
#ifdef CONFIG_X86_64
	int                   msr_offset_kernel_gs_base;
#endif
	struct vmcs          *vmcs;
	struct {
		int           loaded;
		u16           fs_sel, gs_sel, ldt_sel;
65 66
		int           gs_ldt_reload_needed;
		int           fs_reload_needed;
67
		int           guest_efer_loaded;
M
Mike Day 已提交
68
	} host_state;
69 70 71 72 73 74 75
	struct {
		struct {
			bool pending;
			u8 vector;
			unsigned rip;
		} irq;
	} rmode;
76
	int vpid;
77 78 79 80
};

static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
{
R
Rusty Russell 已提交
81
	return container_of(vcpu, struct vcpu_vmx, vcpu);
82 83
}

84 85
static int init_rmode_tss(struct kvm *kvm);

A
Avi Kivity 已提交
86 87 88
static DEFINE_PER_CPU(struct vmcs *, vmxarea);
static DEFINE_PER_CPU(struct vmcs *, current_vmcs);

89 90 91
static struct page *vmx_io_bitmap_a;
static struct page *vmx_io_bitmap_b;

92 93 94
static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
static DEFINE_SPINLOCK(vmx_vpid_lock);

95
static struct vmcs_config {
A
Avi Kivity 已提交
96 97 98
	int size;
	int order;
	u32 revision_id;
99 100
	u32 pin_based_exec_ctrl;
	u32 cpu_based_exec_ctrl;
101
	u32 cpu_based_2nd_exec_ctrl;
102 103 104
	u32 vmexit_ctrl;
	u32 vmentry_ctrl;
} vmcs_config;
A
Avi Kivity 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

#define VMX_SEGMENT_FIELD(seg)					\
	[VCPU_SREG_##seg] = {                                   \
		.selector = GUEST_##seg##_SELECTOR,		\
		.base = GUEST_##seg##_BASE,		   	\
		.limit = GUEST_##seg##_LIMIT,		   	\
		.ar_bytes = GUEST_##seg##_AR_BYTES,	   	\
	}

static struct kvm_vmx_segment_field {
	unsigned selector;
	unsigned base;
	unsigned limit;
	unsigned ar_bytes;
} kvm_vmx_segment_fields[] = {
	VMX_SEGMENT_FIELD(CS),
	VMX_SEGMENT_FIELD(DS),
	VMX_SEGMENT_FIELD(ES),
	VMX_SEGMENT_FIELD(FS),
	VMX_SEGMENT_FIELD(GS),
	VMX_SEGMENT_FIELD(SS),
	VMX_SEGMENT_FIELD(TR),
	VMX_SEGMENT_FIELD(LDTR),
};

130 131 132 133
/*
 * Keep MSR_K6_STAR at the end, as setup_msrs() will try to optimize it
 * away by decrementing the array size.
 */
A
Avi Kivity 已提交
134
static const u32 vmx_msr_index[] = {
135
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
136 137 138 139
	MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, MSR_KERNEL_GS_BASE,
#endif
	MSR_EFER, MSR_K6_STAR,
};
140
#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
A
Avi Kivity 已提交
141

142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
static void load_msrs(struct kvm_msr_entry *e, int n)
{
	int i;

	for (i = 0; i < n; ++i)
		wrmsrl(e[i].index, e[i].data);
}

static void save_msrs(struct kvm_msr_entry *e, int n)
{
	int i;

	for (i = 0; i < n; ++i)
		rdmsrl(e[i].index, e[i].data);
}

A
Avi Kivity 已提交
158 159 160 161 162 163 164
static inline int is_page_fault(u32 intr_info)
{
	return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
			     INTR_INFO_VALID_MASK)) ==
		(INTR_TYPE_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
}

165 166 167 168 169 170 171
static inline int is_no_device(u32 intr_info)
{
	return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
			     INTR_INFO_VALID_MASK)) ==
		(INTR_TYPE_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
}

172 173 174 175 176 177 178
static inline int is_invalid_opcode(u32 intr_info)
{
	return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
			     INTR_INFO_VALID_MASK)) ==
		(INTR_TYPE_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
}

A
Avi Kivity 已提交
179 180 181 182 183 184
static inline int is_external_interrupt(u32 intr_info)
{
	return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
		== (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
}

185 186 187 188 189 190 191 192 193 194
static inline int cpu_has_vmx_tpr_shadow(void)
{
	return (vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW);
}

static inline int vm_need_tpr_shadow(struct kvm *kvm)
{
	return ((cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)));
}

195 196 197 198 199 200
static inline int cpu_has_secondary_exec_ctrls(void)
{
	return (vmcs_config.cpu_based_exec_ctrl &
		CPU_BASED_ACTIVATE_SECONDARY_CONTROLS);
}

201
static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
202 203 204 205 206 207 208 209 210 211 212
{
	return (vmcs_config.cpu_based_2nd_exec_ctrl &
		SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
}

static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm)
{
	return ((cpu_has_vmx_virtualize_apic_accesses()) &&
		(irqchip_in_kernel(kvm)));
}

213 214 215 216 217 218
static inline int cpu_has_vmx_vpid(void)
{
	return (vmcs_config.cpu_based_2nd_exec_ctrl &
		SECONDARY_EXEC_ENABLE_VPID);
}

R
Rusty Russell 已提交
219
static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
220 221 222
{
	int i;

223 224
	for (i = 0; i < vmx->nmsrs; ++i)
		if (vmx->guest_msrs[i].index == msr)
225 226 227 228
			return i;
	return -1;
}

229 230 231 232 233 234 235 236 237 238 239 240 241 242
static inline void __invvpid(int ext, u16 vpid, gva_t gva)
{
    struct {
	u64 vpid : 16;
	u64 rsvd : 48;
	u64 gva;
    } operand = { vpid, 0, gva };

    asm volatile (ASM_VMX_INVVPID
		  /* CF==1 or ZF==1 --> rc = -1 */
		  "; ja 1f ; ud2 ; 1:"
		  : : "a"(&operand), "c"(ext) : "cc", "memory");
}

R
Rusty Russell 已提交
243
static struct kvm_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
244 245 246
{
	int i;

R
Rusty Russell 已提交
247
	i = __find_msr_index(vmx, msr);
248
	if (i >= 0)
249
		return &vmx->guest_msrs[i];
A
Al Viro 已提交
250
	return NULL;
251 252
}

A
Avi Kivity 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
static void vmcs_clear(struct vmcs *vmcs)
{
	u64 phys_addr = __pa(vmcs);
	u8 error;

	asm volatile (ASM_VMX_VMCLEAR_RAX "; setna %0"
		      : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
		      : "cc", "memory");
	if (error)
		printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
		       vmcs, phys_addr);
}

static void __vcpu_clear(void *arg)
{
R
Rusty Russell 已提交
268
	struct vcpu_vmx *vmx = arg;
269
	int cpu = raw_smp_processor_id();
A
Avi Kivity 已提交
270

R
Rusty Russell 已提交
271
	if (vmx->vcpu.cpu == cpu)
272 273
		vmcs_clear(vmx->vmcs);
	if (per_cpu(current_vmcs, cpu) == vmx->vmcs)
A
Avi Kivity 已提交
274
		per_cpu(current_vmcs, cpu) = NULL;
275
	rdtscll(vmx->vcpu.arch.host_tsc);
A
Avi Kivity 已提交
276 277
}

R
Rusty Russell 已提交
278
static void vcpu_clear(struct vcpu_vmx *vmx)
A
Avi Kivity 已提交
279
{
280 281
	if (vmx->vcpu.cpu == -1)
		return;
A
Avi Kivity 已提交
282
	smp_call_function_single(vmx->vcpu.cpu, __vcpu_clear, vmx, 0, 1);
R
Rusty Russell 已提交
283
	vmx->launched = 0;
A
Avi Kivity 已提交
284 285
}

286 287 288 289 290 291 292 293
static inline void vpid_sync_vcpu_all(struct vcpu_vmx *vmx)
{
	if (vmx->vpid == 0)
		return;

	__invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
}

A
Avi Kivity 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
static unsigned long vmcs_readl(unsigned long field)
{
	unsigned long value;

	asm volatile (ASM_VMX_VMREAD_RDX_RAX
		      : "=a"(value) : "d"(field) : "cc");
	return value;
}

static u16 vmcs_read16(unsigned long field)
{
	return vmcs_readl(field);
}

static u32 vmcs_read32(unsigned long field)
{
	return vmcs_readl(field);
}

static u64 vmcs_read64(unsigned long field)
{
315
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
316 317 318 319 320 321
	return vmcs_readl(field);
#else
	return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
#endif
}

322 323 324 325 326 327 328
static noinline void vmwrite_error(unsigned long field, unsigned long value)
{
	printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
	       field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
	dump_stack();
}

A
Avi Kivity 已提交
329 330 331 332 333
static void vmcs_writel(unsigned long field, unsigned long value)
{
	u8 error;

	asm volatile (ASM_VMX_VMWRITE_RAX_RDX "; setna %0"
M
Mike Day 已提交
334
		       : "=q"(error) : "a"(value), "d"(field) : "cc");
335 336
	if (unlikely(error))
		vmwrite_error(field, value);
A
Avi Kivity 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350
}

static void vmcs_write16(unsigned long field, u16 value)
{
	vmcs_writel(field, value);
}

static void vmcs_write32(unsigned long field, u32 value)
{
	vmcs_writel(field, value);
}

static void vmcs_write64(unsigned long field, u64 value)
{
351
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
352 353 354 355 356 357 358 359
	vmcs_writel(field, value);
#else
	vmcs_writel(field, value);
	asm volatile ("");
	vmcs_writel(field+1, value >> 32);
#endif
}

360 361 362 363 364 365 366 367 368 369
static void vmcs_clear_bits(unsigned long field, u32 mask)
{
	vmcs_writel(field, vmcs_readl(field) & ~mask);
}

static void vmcs_set_bits(unsigned long field, u32 mask)
{
	vmcs_writel(field, vmcs_readl(field) | mask);
}

370 371 372 373
static void update_exception_bitmap(struct kvm_vcpu *vcpu)
{
	u32 eb;

374
	eb = (1u << PF_VECTOR) | (1u << UD_VECTOR);
375 376 377 378
	if (!vcpu->fpu_active)
		eb |= 1u << NM_VECTOR;
	if (vcpu->guest_debug.enabled)
		eb |= 1u << 1;
379
	if (vcpu->arch.rmode.active)
380 381 382 383
		eb = ~0;
	vmcs_write32(EXCEPTION_BITMAP, eb);
}

384 385 386 387 388 389
static void reload_tss(void)
{
	/*
	 * VT restores TR but not its size.  Useless.
	 */
	struct descriptor_table gdt;
390
	struct desc_struct *descs;
391 392 393 394 395 396 397

	get_gdt(&gdt);
	descs = (void *)gdt.base;
	descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
	load_TR_desc();
}

R
Rusty Russell 已提交
398
static void load_transition_efer(struct vcpu_vmx *vmx)
399
{
400
	int efer_offset = vmx->msr_offset_efer;
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	u64 host_efer = vmx->host_msrs[efer_offset].data;
	u64 guest_efer = vmx->guest_msrs[efer_offset].data;
	u64 ignore_bits;

	if (efer_offset < 0)
		return;
	/*
	 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
	 * outside long mode
	 */
	ignore_bits = EFER_NX | EFER_SCE;
#ifdef CONFIG_X86_64
	ignore_bits |= EFER_LMA | EFER_LME;
	/* SCE is meaningful only in long mode on Intel */
	if (guest_efer & EFER_LMA)
		ignore_bits &= ~(u64)EFER_SCE;
#endif
	if ((guest_efer & ~ignore_bits) == (host_efer & ~ignore_bits))
		return;
420

421 422 423 424
	vmx->host_state.guest_efer_loaded = 1;
	guest_efer &= ~ignore_bits;
	guest_efer |= host_efer & ignore_bits;
	wrmsrl(MSR_EFER, guest_efer);
R
Rusty Russell 已提交
425
	vmx->vcpu.stat.efer_reload++;
426 427
}

428 429 430 431 432 433 434 435
static void reload_host_efer(struct vcpu_vmx *vmx)
{
	if (vmx->host_state.guest_efer_loaded) {
		vmx->host_state.guest_efer_loaded = 0;
		load_msrs(vmx->host_msrs + vmx->msr_offset_efer, 1);
	}
}

436
static void vmx_save_host_state(struct kvm_vcpu *vcpu)
437
{
438 439
	struct vcpu_vmx *vmx = to_vmx(vcpu);

440
	if (vmx->host_state.loaded)
441 442
		return;

443
	vmx->host_state.loaded = 1;
444 445 446 447
	/*
	 * Set host fs and gs selectors.  Unfortunately, 22.2.3 does not
	 * allow segment selectors with cpl > 0 or ti == 1.
	 */
448
	vmx->host_state.ldt_sel = read_ldt();
449
	vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
450
	vmx->host_state.fs_sel = read_fs();
451
	if (!(vmx->host_state.fs_sel & 7)) {
452
		vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
453 454
		vmx->host_state.fs_reload_needed = 0;
	} else {
455
		vmcs_write16(HOST_FS_SELECTOR, 0);
456
		vmx->host_state.fs_reload_needed = 1;
457
	}
458 459 460
	vmx->host_state.gs_sel = read_gs();
	if (!(vmx->host_state.gs_sel & 7))
		vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
461 462
	else {
		vmcs_write16(HOST_GS_SELECTOR, 0);
463
		vmx->host_state.gs_ldt_reload_needed = 1;
464 465 466 467 468 469
	}

#ifdef CONFIG_X86_64
	vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
	vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
#else
470 471
	vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
	vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
472
#endif
473 474

#ifdef CONFIG_X86_64
M
Mike Day 已提交
475
	if (is_long_mode(&vmx->vcpu))
476 477
		save_msrs(vmx->host_msrs +
			  vmx->msr_offset_kernel_gs_base, 1);
M
Mike Day 已提交
478

479
#endif
480
	load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
481
	load_transition_efer(vmx);
482 483
}

R
Rusty Russell 已提交
484
static void vmx_load_host_state(struct vcpu_vmx *vmx)
485
{
486
	unsigned long flags;
487

488
	if (!vmx->host_state.loaded)
489 490
		return;

491
	++vmx->vcpu.stat.host_state_reload;
492
	vmx->host_state.loaded = 0;
493
	if (vmx->host_state.fs_reload_needed)
494
		load_fs(vmx->host_state.fs_sel);
495 496
	if (vmx->host_state.gs_ldt_reload_needed) {
		load_ldt(vmx->host_state.ldt_sel);
497 498 499 500
		/*
		 * If we have to reload gs, we must take care to
		 * preserve our gs base.
		 */
501
		local_irq_save(flags);
502
		load_gs(vmx->host_state.gs_sel);
503 504 505
#ifdef CONFIG_X86_64
		wrmsrl(MSR_GS_BASE, vmcs_readl(HOST_GS_BASE));
#endif
506
		local_irq_restore(flags);
507
	}
508
	reload_tss();
509 510
	save_msrs(vmx->guest_msrs, vmx->save_nmsrs);
	load_msrs(vmx->host_msrs, vmx->save_nmsrs);
511
	reload_host_efer(vmx);
512 513
}

A
Avi Kivity 已提交
514 515 516 517
/*
 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
 * vcpu mutex is already taken.
 */
518
static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
A
Avi Kivity 已提交
519
{
520 521
	struct vcpu_vmx *vmx = to_vmx(vcpu);
	u64 phys_addr = __pa(vmx->vmcs);
522
	u64 tsc_this, delta, new_offset;
A
Avi Kivity 已提交
523

524
	if (vcpu->cpu != cpu) {
R
Rusty Russell 已提交
525
		vcpu_clear(vmx);
526
		kvm_migrate_apic_timer(vcpu);
527
		vpid_sync_vcpu_all(vmx);
528
	}
A
Avi Kivity 已提交
529

530
	if (per_cpu(current_vmcs, cpu) != vmx->vmcs) {
A
Avi Kivity 已提交
531 532
		u8 error;

533
		per_cpu(current_vmcs, cpu) = vmx->vmcs;
A
Avi Kivity 已提交
534 535 536 537 538
		asm volatile (ASM_VMX_VMPTRLD_RAX "; setna %0"
			      : "=g"(error) : "a"(&phys_addr), "m"(phys_addr)
			      : "cc");
		if (error)
			printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
539
			       vmx->vmcs, phys_addr);
A
Avi Kivity 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
	}

	if (vcpu->cpu != cpu) {
		struct descriptor_table dt;
		unsigned long sysenter_esp;

		vcpu->cpu = cpu;
		/*
		 * Linux uses per-cpu TSS and GDT, so set these when switching
		 * processors.
		 */
		vmcs_writel(HOST_TR_BASE, read_tr_base()); /* 22.2.4 */
		get_gdt(&dt);
		vmcs_writel(HOST_GDTR_BASE, dt.base);   /* 22.2.4 */

		rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
		vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
557 558 559 560 561

		/*
		 * Make sure the time stamp counter is monotonous.
		 */
		rdtscll(tsc_this);
562 563 564 565 566
		if (tsc_this < vcpu->arch.host_tsc) {
			delta = vcpu->arch.host_tsc - tsc_this;
			new_offset = vmcs_read64(TSC_OFFSET) + delta;
			vmcs_write64(TSC_OFFSET, new_offset);
		}
A
Avi Kivity 已提交
567 568 569 570 571
	}
}

static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
{
R
Rusty Russell 已提交
572
	vmx_load_host_state(to_vmx(vcpu));
A
Avi Kivity 已提交
573 574
}

575 576 577 578 579
static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
{
	if (vcpu->fpu_active)
		return;
	vcpu->fpu_active = 1;
580
	vmcs_clear_bits(GUEST_CR0, X86_CR0_TS);
581
	if (vcpu->arch.cr0 & X86_CR0_TS)
582
		vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
583 584 585 586 587 588 589 590
	update_exception_bitmap(vcpu);
}

static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
{
	if (!vcpu->fpu_active)
		return;
	vcpu->fpu_active = 0;
591
	vmcs_set_bits(GUEST_CR0, X86_CR0_TS);
592 593 594
	update_exception_bitmap(vcpu);
}

A
Avi Kivity 已提交
595 596
static void vmx_vcpu_decache(struct kvm_vcpu *vcpu)
{
R
Rusty Russell 已提交
597
	vcpu_clear(to_vmx(vcpu));
A
Avi Kivity 已提交
598 599
}

A
Avi Kivity 已提交
600 601 602 603 604 605 606
static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
{
	return vmcs_readl(GUEST_RFLAGS);
}

static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
{
607
	if (vcpu->arch.rmode.active)
608
		rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
A
Avi Kivity 已提交
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
	vmcs_writel(GUEST_RFLAGS, rflags);
}

static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
{
	unsigned long rip;
	u32 interruptibility;

	rip = vmcs_readl(GUEST_RIP);
	rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
	vmcs_writel(GUEST_RIP, rip);

	/*
	 * We emulated an instruction, so temporary interrupt blocking
	 * should be removed, if set.
	 */
	interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
	if (interruptibility & 3)
		vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
			     interruptibility & ~3);
629
	vcpu->arch.interrupt_window_open = 1;
A
Avi Kivity 已提交
630 631
}

632 633 634 635 636
static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
				bool has_error_code, u32 error_code)
{
	vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
		     nr | INTR_TYPE_EXCEPTION
637
		     | (has_error_code ? INTR_INFO_DELIVER_CODE_MASK : 0)
638 639 640 641 642 643 644 645 646 647 648 649
		     | INTR_INFO_VALID_MASK);
	if (has_error_code)
		vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
}

static bool vmx_exception_injected(struct kvm_vcpu *vcpu)
{
	struct vcpu_vmx *vmx = to_vmx(vcpu);

	return !(vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
}

650 651 652
/*
 * Swap MSR entry in host/guest MSR entry array.
 */
653
#ifdef CONFIG_X86_64
R
Rusty Russell 已提交
654
static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
655
{
656 657 658 659 660 661 662 663
	struct kvm_msr_entry tmp;

	tmp = vmx->guest_msrs[to];
	vmx->guest_msrs[to] = vmx->guest_msrs[from];
	vmx->guest_msrs[from] = tmp;
	tmp = vmx->host_msrs[to];
	vmx->host_msrs[to] = vmx->host_msrs[from];
	vmx->host_msrs[from] = tmp;
664
}
665
#endif
666

667 668 669 670 671
/*
 * Set up the vmcs to automatically save and restore system
 * msrs.  Don't touch the 64-bit msrs if the guest is in legacy
 * mode, as fiddling with msrs is very expensive.
 */
R
Rusty Russell 已提交
672
static void setup_msrs(struct vcpu_vmx *vmx)
673
{
674
	int save_nmsrs;
675

676
	vmx_load_host_state(vmx);
677 678
	save_nmsrs = 0;
#ifdef CONFIG_X86_64
R
Rusty Russell 已提交
679
	if (is_long_mode(&vmx->vcpu)) {
680 681
		int index;

R
Rusty Russell 已提交
682
		index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
683
		if (index >= 0)
R
Rusty Russell 已提交
684 685
			move_msr_up(vmx, index, save_nmsrs++);
		index = __find_msr_index(vmx, MSR_LSTAR);
686
		if (index >= 0)
R
Rusty Russell 已提交
687 688
			move_msr_up(vmx, index, save_nmsrs++);
		index = __find_msr_index(vmx, MSR_CSTAR);
689
		if (index >= 0)
R
Rusty Russell 已提交
690 691
			move_msr_up(vmx, index, save_nmsrs++);
		index = __find_msr_index(vmx, MSR_KERNEL_GS_BASE);
692
		if (index >= 0)
R
Rusty Russell 已提交
693
			move_msr_up(vmx, index, save_nmsrs++);
694 695 696 697
		/*
		 * MSR_K6_STAR is only needed on long mode guests, and only
		 * if efer.sce is enabled.
		 */
R
Rusty Russell 已提交
698
		index = __find_msr_index(vmx, MSR_K6_STAR);
699
		if ((index >= 0) && (vmx->vcpu.arch.shadow_efer & EFER_SCE))
R
Rusty Russell 已提交
700
			move_msr_up(vmx, index, save_nmsrs++);
701 702
	}
#endif
703
	vmx->save_nmsrs = save_nmsrs;
704

705
#ifdef CONFIG_X86_64
706
	vmx->msr_offset_kernel_gs_base =
R
Rusty Russell 已提交
707
		__find_msr_index(vmx, MSR_KERNEL_GS_BASE);
708
#endif
R
Rusty Russell 已提交
709
	vmx->msr_offset_efer = __find_msr_index(vmx, MSR_EFER);
710 711
}

A
Avi Kivity 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
/*
 * reads and returns guest's timestamp counter "register"
 * guest_tsc = host_tsc + tsc_offset    -- 21.3
 */
static u64 guest_read_tsc(void)
{
	u64 host_tsc, tsc_offset;

	rdtscll(host_tsc);
	tsc_offset = vmcs_read64(TSC_OFFSET);
	return host_tsc + tsc_offset;
}

/*
 * writes 'guest_tsc' into guest's timestamp counter "register"
 * guest_tsc = host_tsc + tsc_offset ==> tsc_offset = guest_tsc - host_tsc
 */
static void guest_write_tsc(u64 guest_tsc)
{
	u64 host_tsc;

	rdtscll(host_tsc);
	vmcs_write64(TSC_OFFSET, guest_tsc - host_tsc);
}

/*
 * Reads an msr value (of 'msr_index') into 'pdata'.
 * Returns 0 on success, non-0 otherwise.
 * Assumes vcpu_load() was already called.
 */
static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
{
	u64 data;
745
	struct kvm_msr_entry *msr;
A
Avi Kivity 已提交
746 747 748 749 750 751 752

	if (!pdata) {
		printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
		return -EINVAL;
	}

	switch (msr_index) {
753
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
754 755 756 757 758 759 760
	case MSR_FS_BASE:
		data = vmcs_readl(GUEST_FS_BASE);
		break;
	case MSR_GS_BASE:
		data = vmcs_readl(GUEST_GS_BASE);
		break;
	case MSR_EFER:
761
		return kvm_get_msr_common(vcpu, msr_index, pdata);
A
Avi Kivity 已提交
762 763 764 765 766 767 768 769
#endif
	case MSR_IA32_TIME_STAMP_COUNTER:
		data = guest_read_tsc();
		break;
	case MSR_IA32_SYSENTER_CS:
		data = vmcs_read32(GUEST_SYSENTER_CS);
		break;
	case MSR_IA32_SYSENTER_EIP:
A
Avi Kivity 已提交
770
		data = vmcs_readl(GUEST_SYSENTER_EIP);
A
Avi Kivity 已提交
771 772
		break;
	case MSR_IA32_SYSENTER_ESP:
A
Avi Kivity 已提交
773
		data = vmcs_readl(GUEST_SYSENTER_ESP);
A
Avi Kivity 已提交
774 775
		break;
	default:
R
Rusty Russell 已提交
776
		msr = find_msr_entry(to_vmx(vcpu), msr_index);
777 778 779
		if (msr) {
			data = msr->data;
			break;
A
Avi Kivity 已提交
780
		}
781
		return kvm_get_msr_common(vcpu, msr_index, pdata);
A
Avi Kivity 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794
	}

	*pdata = data;
	return 0;
}

/*
 * Writes msr value into into the appropriate "register".
 * Returns 0 on success, non-0 otherwise.
 * Assumes vcpu_load() was already called.
 */
static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
{
795 796
	struct vcpu_vmx *vmx = to_vmx(vcpu);
	struct kvm_msr_entry *msr;
797 798
	int ret = 0;

A
Avi Kivity 已提交
799
	switch (msr_index) {
800
#ifdef CONFIG_X86_64
801
	case MSR_EFER:
802
		ret = kvm_set_msr_common(vcpu, msr_index, data);
803 804
		if (vmx->host_state.loaded) {
			reload_host_efer(vmx);
R
Rusty Russell 已提交
805
			load_transition_efer(vmx);
806
		}
807
		break;
A
Avi Kivity 已提交
808 809 810 811 812 813 814 815 816 817 818
	case MSR_FS_BASE:
		vmcs_writel(GUEST_FS_BASE, data);
		break;
	case MSR_GS_BASE:
		vmcs_writel(GUEST_GS_BASE, data);
		break;
#endif
	case MSR_IA32_SYSENTER_CS:
		vmcs_write32(GUEST_SYSENTER_CS, data);
		break;
	case MSR_IA32_SYSENTER_EIP:
A
Avi Kivity 已提交
819
		vmcs_writel(GUEST_SYSENTER_EIP, data);
A
Avi Kivity 已提交
820 821
		break;
	case MSR_IA32_SYSENTER_ESP:
A
Avi Kivity 已提交
822
		vmcs_writel(GUEST_SYSENTER_ESP, data);
A
Avi Kivity 已提交
823
		break;
A
Avi Kivity 已提交
824
	case MSR_IA32_TIME_STAMP_COUNTER:
A
Avi Kivity 已提交
825 826 827
		guest_write_tsc(data);
		break;
	default:
R
Rusty Russell 已提交
828
		msr = find_msr_entry(vmx, msr_index);
829 830
		if (msr) {
			msr->data = data;
831 832
			if (vmx->host_state.loaded)
				load_msrs(vmx->guest_msrs, vmx->save_nmsrs);
833
			break;
A
Avi Kivity 已提交
834
		}
835
		ret = kvm_set_msr_common(vcpu, msr_index, data);
A
Avi Kivity 已提交
836 837
	}

838
	return ret;
A
Avi Kivity 已提交
839 840 841 842
}

/*
 * Sync the rsp and rip registers into the vcpu structure.  This allows
843
 * registers to be accessed by indexing vcpu->arch.regs.
A
Avi Kivity 已提交
844 845 846
 */
static void vcpu_load_rsp_rip(struct kvm_vcpu *vcpu)
{
847 848
	vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
	vcpu->arch.rip = vmcs_readl(GUEST_RIP);
A
Avi Kivity 已提交
849 850 851 852 853 854 855 856
}

/*
 * Syncs rsp and rip back into the vmcs.  Should be called after possible
 * modification.
 */
static void vcpu_put_rsp_rip(struct kvm_vcpu *vcpu)
{
857 858
	vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
	vmcs_writel(GUEST_RIP, vcpu->arch.rip);
A
Avi Kivity 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
}

static int set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_debug_guest *dbg)
{
	unsigned long dr7 = 0x400;
	int old_singlestep;

	old_singlestep = vcpu->guest_debug.singlestep;

	vcpu->guest_debug.enabled = dbg->enabled;
	if (vcpu->guest_debug.enabled) {
		int i;

		dr7 |= 0x200;  /* exact */
		for (i = 0; i < 4; ++i) {
			if (!dbg->breakpoints[i].enabled)
				continue;
			vcpu->guest_debug.bp[i] = dbg->breakpoints[i].address;
			dr7 |= 2 << (i*2);    /* global enable */
			dr7 |= 0 << (i*4+16); /* execution breakpoint */
		}

		vcpu->guest_debug.singlestep = dbg->singlestep;
882
	} else
A
Avi Kivity 已提交
883 884 885 886 887 888 889 890 891 892
		vcpu->guest_debug.singlestep = 0;

	if (old_singlestep && !vcpu->guest_debug.singlestep) {
		unsigned long flags;

		flags = vmcs_readl(GUEST_RFLAGS);
		flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
		vmcs_writel(GUEST_RFLAGS, flags);
	}

893
	update_exception_bitmap(vcpu);
A
Avi Kivity 已提交
894 895 896 897 898
	vmcs_writel(GUEST_DR7, dr7);

	return 0;
}

E
Eddie Dong 已提交
899 900
static int vmx_get_irq(struct kvm_vcpu *vcpu)
{
901
	struct vcpu_vmx *vmx = to_vmx(vcpu);
E
Eddie Dong 已提交
902 903
	u32 idtv_info_field;

904
	idtv_info_field = vmx->idt_vectoring_info;
E
Eddie Dong 已提交
905 906 907 908
	if (idtv_info_field & INTR_INFO_VALID_MASK) {
		if (is_external_interrupt(idtv_info_field))
			return idtv_info_field & VECTORING_INFO_VECTOR_MASK;
		else
M
Mike Day 已提交
909
			printk(KERN_DEBUG "pending exception: not handled yet\n");
E
Eddie Dong 已提交
910 911 912 913
	}
	return -1;
}

A
Avi Kivity 已提交
914 915 916 917 918 919 920 921 922 923 924
static __init int cpu_has_kvm_support(void)
{
	unsigned long ecx = cpuid_ecx(1);
	return test_bit(5, &ecx); /* CPUID.1:ECX.VMX[bit 5] -> VT */
}

static __init int vmx_disabled_by_bios(void)
{
	u64 msr;

	rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
925 926 927 928
	return (msr & (MSR_IA32_FEATURE_CONTROL_LOCKED |
		       MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
	    == MSR_IA32_FEATURE_CONTROL_LOCKED;
	/* locked but not enabled */
A
Avi Kivity 已提交
929 930
}

A
Avi Kivity 已提交
931
static void hardware_enable(void *garbage)
A
Avi Kivity 已提交
932 933 934 935 936 937
{
	int cpu = raw_smp_processor_id();
	u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
	u64 old;

	rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
938 939 940 941
	if ((old & (MSR_IA32_FEATURE_CONTROL_LOCKED |
		    MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
	    != (MSR_IA32_FEATURE_CONTROL_LOCKED |
		MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED))
A
Avi Kivity 已提交
942
		/* enable and lock */
943 944 945
		wrmsrl(MSR_IA32_FEATURE_CONTROL, old |
		       MSR_IA32_FEATURE_CONTROL_LOCKED |
		       MSR_IA32_FEATURE_CONTROL_VMXON_ENABLED);
946
	write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
A
Avi Kivity 已提交
947 948 949 950 951 952 953 954 955
	asm volatile (ASM_VMX_VMXON_RAX : : "a"(&phys_addr), "m"(phys_addr)
		      : "memory", "cc");
}

static void hardware_disable(void *garbage)
{
	asm volatile (ASM_VMX_VMXOFF : : : "cc");
}

956
static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
M
Mike Day 已提交
957
				      u32 msr, u32 *result)
958 959 960 961 962 963 964 965 966 967 968
{
	u32 vmx_msr_low, vmx_msr_high;
	u32 ctl = ctl_min | ctl_opt;

	rdmsr(msr, vmx_msr_low, vmx_msr_high);

	ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
	ctl |= vmx_msr_low;  /* bit == 1 in low word  ==> must be one  */

	/* Ensure minimum (required) set of control bits are supported. */
	if (ctl_min & ~ctl)
Y
Yang, Sheng 已提交
969
		return -EIO;
970 971 972 973 974

	*result = ctl;
	return 0;
}

Y
Yang, Sheng 已提交
975
static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
A
Avi Kivity 已提交
976 977
{
	u32 vmx_msr_low, vmx_msr_high;
978 979 980
	u32 min, opt;
	u32 _pin_based_exec_control = 0;
	u32 _cpu_based_exec_control = 0;
981
	u32 _cpu_based_2nd_exec_control = 0;
982 983 984 985 986 987 988
	u32 _vmexit_control = 0;
	u32 _vmentry_control = 0;

	min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
	opt = 0;
	if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
				&_pin_based_exec_control) < 0)
Y
Yang, Sheng 已提交
989
		return -EIO;
990 991 992 993 994 995 996 997 998

	min = CPU_BASED_HLT_EXITING |
#ifdef CONFIG_X86_64
	      CPU_BASED_CR8_LOAD_EXITING |
	      CPU_BASED_CR8_STORE_EXITING |
#endif
	      CPU_BASED_USE_IO_BITMAPS |
	      CPU_BASED_MOV_DR_EXITING |
	      CPU_BASED_USE_TSC_OFFSETING;
999 1000
	opt = CPU_BASED_TPR_SHADOW |
	      CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1001 1002
	if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
				&_cpu_based_exec_control) < 0)
Y
Yang, Sheng 已提交
1003
		return -EIO;
1004 1005 1006 1007 1008
#ifdef CONFIG_X86_64
	if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
		_cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
					   ~CPU_BASED_CR8_STORE_EXITING;
#endif
1009 1010
	if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
		min = 0;
E
Eddie Dong 已提交
1011
		opt = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
1012 1013
			SECONDARY_EXEC_WBINVD_EXITING |
			SECONDARY_EXEC_ENABLE_VPID;
1014 1015 1016 1017 1018 1019 1020 1021 1022
		if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS2,
					&_cpu_based_2nd_exec_control) < 0)
			return -EIO;
	}
#ifndef CONFIG_X86_64
	if (!(_cpu_based_2nd_exec_control &
				SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
		_cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
#endif
1023 1024 1025 1026 1027 1028 1029 1030

	min = 0;
#ifdef CONFIG_X86_64
	min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
#endif
	opt = 0;
	if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
				&_vmexit_control) < 0)
Y
Yang, Sheng 已提交
1031
		return -EIO;
1032 1033 1034 1035

	min = opt = 0;
	if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
				&_vmentry_control) < 0)
Y
Yang, Sheng 已提交
1036
		return -EIO;
A
Avi Kivity 已提交
1037

N
Nguyen Anh Quynh 已提交
1038
	rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
1039 1040 1041

	/* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
	if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Y
Yang, Sheng 已提交
1042
		return -EIO;
1043 1044 1045 1046

#ifdef CONFIG_X86_64
	/* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
	if (vmx_msr_high & (1u<<16))
Y
Yang, Sheng 已提交
1047
		return -EIO;
1048 1049 1050 1051
#endif

	/* Require Write-Back (WB) memory type for VMCS accesses. */
	if (((vmx_msr_high >> 18) & 15) != 6)
Y
Yang, Sheng 已提交
1052
		return -EIO;
1053

Y
Yang, Sheng 已提交
1054 1055 1056
	vmcs_conf->size = vmx_msr_high & 0x1fff;
	vmcs_conf->order = get_order(vmcs_config.size);
	vmcs_conf->revision_id = vmx_msr_low;
1057

Y
Yang, Sheng 已提交
1058 1059
	vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
	vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
1060
	vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Y
Yang, Sheng 已提交
1061 1062
	vmcs_conf->vmexit_ctrl         = _vmexit_control;
	vmcs_conf->vmentry_ctrl        = _vmentry_control;
1063 1064

	return 0;
N
Nguyen Anh Quynh 已提交
1065
}
A
Avi Kivity 已提交
1066 1067 1068 1069 1070 1071 1072

static struct vmcs *alloc_vmcs_cpu(int cpu)
{
	int node = cpu_to_node(cpu);
	struct page *pages;
	struct vmcs *vmcs;

1073
	pages = alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
A
Avi Kivity 已提交
1074 1075 1076
	if (!pages)
		return NULL;
	vmcs = page_address(pages);
1077 1078
	memset(vmcs, 0, vmcs_config.size);
	vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
A
Avi Kivity 已提交
1079 1080 1081 1082 1083
	return vmcs;
}

static struct vmcs *alloc_vmcs(void)
{
1084
	return alloc_vmcs_cpu(raw_smp_processor_id());
A
Avi Kivity 已提交
1085 1086 1087 1088
}

static void free_vmcs(struct vmcs *vmcs)
{
1089
	free_pages((unsigned long)vmcs, vmcs_config.order);
A
Avi Kivity 已提交
1090 1091
}

1092
static void free_kvm_area(void)
A
Avi Kivity 已提交
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
{
	int cpu;

	for_each_online_cpu(cpu)
		free_vmcs(per_cpu(vmxarea, cpu));
}

static __init int alloc_kvm_area(void)
{
	int cpu;

	for_each_online_cpu(cpu) {
		struct vmcs *vmcs;

		vmcs = alloc_vmcs_cpu(cpu);
		if (!vmcs) {
			free_kvm_area();
			return -ENOMEM;
		}

		per_cpu(vmxarea, cpu) = vmcs;
	}
	return 0;
}

static __init int hardware_setup(void)
{
Y
Yang, Sheng 已提交
1120 1121
	if (setup_vmcs_config(&vmcs_config) < 0)
		return -EIO;
1122 1123 1124 1125

	if (boot_cpu_has(X86_FEATURE_NX))
		kvm_enable_efer_bits(EFER_NX);

A
Avi Kivity 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
	return alloc_kvm_area();
}

static __exit void hardware_unsetup(void)
{
	free_kvm_area();
}

static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];

1138
	if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
A
Avi Kivity 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
		vmcs_write16(sf->selector, save->selector);
		vmcs_writel(sf->base, save->base);
		vmcs_write32(sf->limit, save->limit);
		vmcs_write32(sf->ar_bytes, save->ar);
	} else {
		u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
			<< AR_DPL_SHIFT;
		vmcs_write32(sf->ar_bytes, 0x93 | dpl);
	}
}

static void enter_pmode(struct kvm_vcpu *vcpu)
{
	unsigned long flags;

1154
	vcpu->arch.rmode.active = 0;
A
Avi Kivity 已提交
1155

1156 1157 1158
	vmcs_writel(GUEST_TR_BASE, vcpu->arch.rmode.tr.base);
	vmcs_write32(GUEST_TR_LIMIT, vcpu->arch.rmode.tr.limit);
	vmcs_write32(GUEST_TR_AR_BYTES, vcpu->arch.rmode.tr.ar);
A
Avi Kivity 已提交
1159 1160

	flags = vmcs_readl(GUEST_RFLAGS);
1161
	flags &= ~(X86_EFLAGS_IOPL | X86_EFLAGS_VM);
1162
	flags |= (vcpu->arch.rmode.save_iopl << IOPL_SHIFT);
A
Avi Kivity 已提交
1163 1164
	vmcs_writel(GUEST_RFLAGS, flags);

1165 1166
	vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
			(vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
A
Avi Kivity 已提交
1167 1168 1169

	update_exception_bitmap(vcpu);

1170 1171 1172 1173
	fix_pmode_dataseg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
	fix_pmode_dataseg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
	fix_pmode_dataseg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
	fix_pmode_dataseg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
A
Avi Kivity 已提交
1174 1175 1176 1177 1178 1179 1180 1181 1182

	vmcs_write16(GUEST_SS_SELECTOR, 0);
	vmcs_write32(GUEST_SS_AR_BYTES, 0x93);

	vmcs_write16(GUEST_CS_SELECTOR,
		     vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
	vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
}

M
Mike Day 已提交
1183
static gva_t rmode_tss_base(struct kvm *kvm)
A
Avi Kivity 已提交
1184
{
1185
	if (!kvm->arch.tss_addr) {
1186 1187 1188 1189
		gfn_t base_gfn = kvm->memslots[0].base_gfn +
				 kvm->memslots[0].npages - 3;
		return base_gfn << PAGE_SHIFT;
	}
1190
	return kvm->arch.tss_addr;
A
Avi Kivity 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
}

static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];

	save->selector = vmcs_read16(sf->selector);
	save->base = vmcs_readl(sf->base);
	save->limit = vmcs_read32(sf->limit);
	save->ar = vmcs_read32(sf->ar_bytes);
1201 1202
	vmcs_write16(sf->selector, save->base >> 4);
	vmcs_write32(sf->base, save->base & 0xfffff);
A
Avi Kivity 已提交
1203 1204 1205 1206 1207 1208 1209 1210
	vmcs_write32(sf->limit, 0xffff);
	vmcs_write32(sf->ar_bytes, 0xf3);
}

static void enter_rmode(struct kvm_vcpu *vcpu)
{
	unsigned long flags;

1211
	vcpu->arch.rmode.active = 1;
A
Avi Kivity 已提交
1212

1213
	vcpu->arch.rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
A
Avi Kivity 已提交
1214 1215
	vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));

1216
	vcpu->arch.rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
A
Avi Kivity 已提交
1217 1218
	vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);

1219
	vcpu->arch.rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
A
Avi Kivity 已提交
1220 1221 1222
	vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);

	flags = vmcs_readl(GUEST_RFLAGS);
1223 1224
	vcpu->arch.rmode.save_iopl
		= (flags & X86_EFLAGS_IOPL) >> IOPL_SHIFT;
A
Avi Kivity 已提交
1225

1226
	flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
A
Avi Kivity 已提交
1227 1228

	vmcs_writel(GUEST_RFLAGS, flags);
1229
	vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
A
Avi Kivity 已提交
1230 1231 1232 1233 1234 1235 1236
	update_exception_bitmap(vcpu);

	vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
	vmcs_write32(GUEST_SS_LIMIT, 0xffff);
	vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);

	vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
1237
	vmcs_write32(GUEST_CS_LIMIT, 0xffff);
1238 1239
	if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
		vmcs_writel(GUEST_CS_BASE, 0xf0000);
A
Avi Kivity 已提交
1240 1241
	vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);

1242 1243 1244 1245
	fix_rmode_seg(VCPU_SREG_ES, &vcpu->arch.rmode.es);
	fix_rmode_seg(VCPU_SREG_DS, &vcpu->arch.rmode.ds);
	fix_rmode_seg(VCPU_SREG_GS, &vcpu->arch.rmode.gs);
	fix_rmode_seg(VCPU_SREG_FS, &vcpu->arch.rmode.fs);
1246

1247
	kvm_mmu_reset_context(vcpu);
1248
	init_rmode_tss(vcpu->kvm);
A
Avi Kivity 已提交
1249 1250
}

1251
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
1252 1253 1254 1255 1256 1257 1258 1259

static void enter_lmode(struct kvm_vcpu *vcpu)
{
	u32 guest_tr_ar;

	guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
	if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
		printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
1260
		       __func__);
A
Avi Kivity 已提交
1261 1262 1263 1264 1265
		vmcs_write32(GUEST_TR_AR_BYTES,
			     (guest_tr_ar & ~AR_TYPE_MASK)
			     | AR_TYPE_BUSY_64_TSS);
	}

1266
	vcpu->arch.shadow_efer |= EFER_LMA;
A
Avi Kivity 已提交
1267

R
Rusty Russell 已提交
1268
	find_msr_entry(to_vmx(vcpu), MSR_EFER)->data |= EFER_LMA | EFER_LME;
A
Avi Kivity 已提交
1269 1270
	vmcs_write32(VM_ENTRY_CONTROLS,
		     vmcs_read32(VM_ENTRY_CONTROLS)
1271
		     | VM_ENTRY_IA32E_MODE);
A
Avi Kivity 已提交
1272 1273 1274 1275
}

static void exit_lmode(struct kvm_vcpu *vcpu)
{
1276
	vcpu->arch.shadow_efer &= ~EFER_LMA;
A
Avi Kivity 已提交
1277 1278 1279

	vmcs_write32(VM_ENTRY_CONTROLS,
		     vmcs_read32(VM_ENTRY_CONTROLS)
1280
		     & ~VM_ENTRY_IA32E_MODE);
A
Avi Kivity 已提交
1281 1282 1283 1284
}

#endif

1285 1286 1287 1288 1289
static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
{
	vpid_sync_vcpu_all(to_vmx(vcpu));
}

1290
static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
1291
{
1292 1293
	vcpu->arch.cr4 &= KVM_GUEST_CR4_MASK;
	vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & ~KVM_GUEST_CR4_MASK;
1294 1295
}

A
Avi Kivity 已提交
1296 1297
static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
{
1298 1299
	vmx_fpu_deactivate(vcpu);

1300
	if (vcpu->arch.rmode.active && (cr0 & X86_CR0_PE))
A
Avi Kivity 已提交
1301 1302
		enter_pmode(vcpu);

1303
	if (!vcpu->arch.rmode.active && !(cr0 & X86_CR0_PE))
A
Avi Kivity 已提交
1304 1305
		enter_rmode(vcpu);

1306
#ifdef CONFIG_X86_64
1307
	if (vcpu->arch.shadow_efer & EFER_LME) {
1308
		if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
A
Avi Kivity 已提交
1309
			enter_lmode(vcpu);
1310
		if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
A
Avi Kivity 已提交
1311 1312 1313 1314 1315 1316 1317
			exit_lmode(vcpu);
	}
#endif

	vmcs_writel(CR0_READ_SHADOW, cr0);
	vmcs_writel(GUEST_CR0,
		    (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON);
1318
	vcpu->arch.cr0 = cr0;
1319

1320
	if (!(cr0 & X86_CR0_TS) || !(cr0 & X86_CR0_PE))
1321
		vmx_fpu_activate(vcpu);
A
Avi Kivity 已提交
1322 1323 1324 1325
}

static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
{
1326
	vmx_flush_tlb(vcpu);
A
Avi Kivity 已提交
1327
	vmcs_writel(GUEST_CR3, cr3);
1328
	if (vcpu->arch.cr0 & X86_CR0_PE)
1329
		vmx_fpu_deactivate(vcpu);
A
Avi Kivity 已提交
1330 1331 1332 1333 1334
}

static void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
{
	vmcs_writel(CR4_READ_SHADOW, cr4);
1335
	vmcs_writel(GUEST_CR4, cr4 | (vcpu->arch.rmode.active ?
A
Avi Kivity 已提交
1336
		    KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON));
1337
	vcpu->arch.cr4 = cr4;
A
Avi Kivity 已提交
1338 1339 1340 1341
}

static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
{
R
Rusty Russell 已提交
1342 1343
	struct vcpu_vmx *vmx = to_vmx(vcpu);
	struct kvm_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
A
Avi Kivity 已提交
1344

1345
	vcpu->arch.shadow_efer = efer;
1346 1347
	if (!msr)
		return;
A
Avi Kivity 已提交
1348 1349 1350
	if (efer & EFER_LMA) {
		vmcs_write32(VM_ENTRY_CONTROLS,
				     vmcs_read32(VM_ENTRY_CONTROLS) |
1351
				     VM_ENTRY_IA32E_MODE);
A
Avi Kivity 已提交
1352 1353 1354 1355 1356
		msr->data = efer;

	} else {
		vmcs_write32(VM_ENTRY_CONTROLS,
				     vmcs_read32(VM_ENTRY_CONTROLS) &
1357
				     ~VM_ENTRY_IA32E_MODE);
A
Avi Kivity 已提交
1358 1359 1360

		msr->data = efer & ~EFER_LME;
	}
R
Rusty Russell 已提交
1361
	setup_msrs(vmx);
A
Avi Kivity 已提交
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
}

static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];

	return vmcs_readl(sf->base);
}

static void vmx_get_segment(struct kvm_vcpu *vcpu,
			    struct kvm_segment *var, int seg)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
	u32 ar;

	var->base = vmcs_readl(sf->base);
	var->limit = vmcs_read32(sf->limit);
	var->selector = vmcs_read16(sf->selector);
	ar = vmcs_read32(sf->ar_bytes);
	if (ar & AR_UNUSABLE_MASK)
		ar = 0;
	var->type = ar & 15;
	var->s = (ar >> 4) & 1;
	var->dpl = (ar >> 5) & 3;
	var->present = (ar >> 7) & 1;
	var->avl = (ar >> 12) & 1;
	var->l = (ar >> 13) & 1;
	var->db = (ar >> 14) & 1;
	var->g = (ar >> 15) & 1;
	var->unusable = (ar >> 16) & 1;
}

1394
static u32 vmx_segment_access_rights(struct kvm_segment *var)
A
Avi Kivity 已提交
1395 1396 1397
{
	u32 ar;

1398
	if (var->unusable)
A
Avi Kivity 已提交
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
		ar = 1 << 16;
	else {
		ar = var->type & 15;
		ar |= (var->s & 1) << 4;
		ar |= (var->dpl & 3) << 5;
		ar |= (var->present & 1) << 7;
		ar |= (var->avl & 1) << 12;
		ar |= (var->l & 1) << 13;
		ar |= (var->db & 1) << 14;
		ar |= (var->g & 1) << 15;
	}
1410 1411
	if (ar == 0) /* a 0 value means unusable */
		ar = AR_UNUSABLE_MASK;
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421

	return ar;
}

static void vmx_set_segment(struct kvm_vcpu *vcpu,
			    struct kvm_segment *var, int seg)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
	u32 ar;

1422 1423 1424 1425 1426
	if (vcpu->arch.rmode.active && seg == VCPU_SREG_TR) {
		vcpu->arch.rmode.tr.selector = var->selector;
		vcpu->arch.rmode.tr.base = var->base;
		vcpu->arch.rmode.tr.limit = var->limit;
		vcpu->arch.rmode.tr.ar = vmx_segment_access_rights(var);
1427 1428 1429 1430 1431
		return;
	}
	vmcs_writel(sf->base, var->base);
	vmcs_write32(sf->limit, var->limit);
	vmcs_write16(sf->selector, var->selector);
1432
	if (vcpu->arch.rmode.active && var->s) {
1433 1434 1435 1436 1437 1438 1439 1440
		/*
		 * Hack real-mode segments into vm86 compatibility.
		 */
		if (var->base == 0xffff0000 && var->selector == 0xf000)
			vmcs_writel(sf->base, 0xf0000);
		ar = 0xf3;
	} else
		ar = vmx_segment_access_rights(var);
A
Avi Kivity 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
	vmcs_write32(sf->ar_bytes, ar);
}

static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
{
	u32 ar = vmcs_read32(GUEST_CS_AR_BYTES);

	*db = (ar >> 14) & 1;
	*l = (ar >> 13) & 1;
}

static void vmx_get_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
{
	dt->limit = vmcs_read32(GUEST_IDTR_LIMIT);
	dt->base = vmcs_readl(GUEST_IDTR_BASE);
}

static void vmx_set_idt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
{
	vmcs_write32(GUEST_IDTR_LIMIT, dt->limit);
	vmcs_writel(GUEST_IDTR_BASE, dt->base);
}

static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
{
	dt->limit = vmcs_read32(GUEST_GDTR_LIMIT);
	dt->base = vmcs_readl(GUEST_GDTR_BASE);
}

static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct descriptor_table *dt)
{
	vmcs_write32(GUEST_GDTR_LIMIT, dt->limit);
	vmcs_writel(GUEST_GDTR_BASE, dt->base);
}

M
Mike Day 已提交
1476
static int init_rmode_tss(struct kvm *kvm)
A
Avi Kivity 已提交
1477 1478
{
	gfn_t fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
1479
	u16 data = 0;
1480
	int ret = 0;
1481
	int r;
A
Avi Kivity 已提交
1482

1483
	down_read(&kvm->slots_lock);
1484 1485
	r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
	if (r < 0)
1486
		goto out;
1487 1488 1489
	data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
	r = kvm_write_guest_page(kvm, fn++, &data, 0x66, sizeof(u16));
	if (r < 0)
1490
		goto out;
1491 1492
	r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
	if (r < 0)
1493
		goto out;
1494 1495
	r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
	if (r < 0)
1496
		goto out;
1497
	data = ~0;
1498 1499 1500
	r = kvm_write_guest_page(kvm, fn, &data,
				 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
				 sizeof(u8));
1501
	if (r < 0)
1502 1503 1504 1505
		goto out;

	ret = 1;
out:
1506
	up_read(&kvm->slots_lock);
1507
	return ret;
A
Avi Kivity 已提交
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
}

static void seg_setup(int seg)
{
	struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];

	vmcs_write16(sf->selector, 0);
	vmcs_writel(sf->base, 0);
	vmcs_write32(sf->limit, 0xffff);
	vmcs_write32(sf->ar_bytes, 0x93);
}

1520 1521 1522 1523 1524
static int alloc_apic_access_page(struct kvm *kvm)
{
	struct kvm_userspace_memory_region kvm_userspace_mem;
	int r = 0;

1525
	down_write(&kvm->slots_lock);
1526
	if (kvm->arch.apic_access_page)
1527 1528 1529 1530 1531 1532 1533 1534
		goto out;
	kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
	kvm_userspace_mem.flags = 0;
	kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
	kvm_userspace_mem.memory_size = PAGE_SIZE;
	r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
	if (r)
		goto out;
1535 1536

	down_read(&current->mm->mmap_sem);
1537
	kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
1538
	up_read(&current->mm->mmap_sem);
1539
out:
1540
	up_write(&kvm->slots_lock);
1541 1542 1543
	return r;
}

1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
static void allocate_vpid(struct vcpu_vmx *vmx)
{
	int vpid;

	vmx->vpid = 0;
	if (!enable_vpid || !cpu_has_vmx_vpid())
		return;
	spin_lock(&vmx_vpid_lock);
	vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
	if (vpid < VMX_NR_VPIDS) {
		vmx->vpid = vpid;
		__set_bit(vpid, vmx_vpid_bitmap);
	}
	spin_unlock(&vmx_vpid_lock);
}

A
Avi Kivity 已提交
1560 1561 1562
/*
 * Sets up the vmcs for emulated real mode.
 */
R
Rusty Russell 已提交
1563
static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
A
Avi Kivity 已提交
1564 1565 1566 1567 1568 1569
{
	u32 host_sysenter_cs;
	u32 junk;
	unsigned long a;
	struct descriptor_table dt;
	int i;
1570
	unsigned long kvm_vmx_return;
1571
	u32 exec_control;
A
Avi Kivity 已提交
1572 1573

	/* I/O */
1574 1575
	vmcs_write64(IO_BITMAP_A, page_to_phys(vmx_io_bitmap_a));
	vmcs_write64(IO_BITMAP_B, page_to_phys(vmx_io_bitmap_b));
A
Avi Kivity 已提交
1576 1577 1578 1579

	vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */

	/* Control */
1580 1581
	vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
		vmcs_config.pin_based_exec_ctrl);
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591

	exec_control = vmcs_config.cpu_based_exec_ctrl;
	if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
		exec_control &= ~CPU_BASED_TPR_SHADOW;
#ifdef CONFIG_X86_64
		exec_control |= CPU_BASED_CR8_STORE_EXITING |
				CPU_BASED_CR8_LOAD_EXITING;
#endif
	}
	vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
A
Avi Kivity 已提交
1592

1593 1594 1595 1596 1597
	if (cpu_has_secondary_exec_ctrls()) {
		exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
		if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
			exec_control &=
				~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1598 1599
		if (vmx->vpid == 0)
			exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
1600 1601
		vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
	}
1602

1603 1604
	vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
	vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
A
Avi Kivity 已提交
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
	vmcs_write32(CR3_TARGET_COUNT, 0);           /* 22.2.1 */

	vmcs_writel(HOST_CR0, read_cr0());  /* 22.2.3 */
	vmcs_writel(HOST_CR4, read_cr4());  /* 22.2.3, 22.2.5 */
	vmcs_writel(HOST_CR3, read_cr3());  /* 22.2.3  FIXME: shadow tables */

	vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS);  /* 22.2.4 */
	vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS);  /* 22.2.4 */
	vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS);  /* 22.2.4 */
	vmcs_write16(HOST_FS_SELECTOR, read_fs());    /* 22.2.4 */
	vmcs_write16(HOST_GS_SELECTOR, read_gs());    /* 22.2.4 */
	vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS);  /* 22.2.4 */
1617
#ifdef CONFIG_X86_64
A
Avi Kivity 已提交
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
	rdmsrl(MSR_FS_BASE, a);
	vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
	rdmsrl(MSR_GS_BASE, a);
	vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
#else
	vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
	vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
#endif

	vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8);  /* 22.2.4 */

	get_idt(&dt);
	vmcs_writel(HOST_IDTR_BASE, dt.base);   /* 22.2.4 */

M
Mike Day 已提交
1632
	asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
1633
	vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
1634 1635 1636
	vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
	vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
	vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
A
Avi Kivity 已提交
1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648

	rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
	vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
	rdmsrl(MSR_IA32_SYSENTER_ESP, a);
	vmcs_writel(HOST_IA32_SYSENTER_ESP, a);   /* 22.2.3 */
	rdmsrl(MSR_IA32_SYSENTER_EIP, a);
	vmcs_writel(HOST_IA32_SYSENTER_EIP, a);   /* 22.2.3 */

	for (i = 0; i < NR_VMX_MSR; ++i) {
		u32 index = vmx_msr_index[i];
		u32 data_low, data_high;
		u64 data;
1649
		int j = vmx->nmsrs;
A
Avi Kivity 已提交
1650 1651 1652

		if (rdmsr_safe(index, &data_low, &data_high) < 0)
			continue;
1653 1654
		if (wrmsr_safe(index, data_low, data_high) < 0)
			continue;
A
Avi Kivity 已提交
1655
		data = data_low | ((u64)data_high << 32);
1656 1657 1658 1659 1660
		vmx->host_msrs[j].index = index;
		vmx->host_msrs[j].reserved = 0;
		vmx->host_msrs[j].data = data;
		vmx->guest_msrs[j] = vmx->host_msrs[j];
		++vmx->nmsrs;
A
Avi Kivity 已提交
1661 1662
	}

1663
	vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
A
Avi Kivity 已提交
1664 1665

	/* 22.2.1, 20.8.1 */
1666 1667
	vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);

1668 1669 1670
	vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
	vmcs_writel(CR4_GUEST_HOST_MASK, KVM_GUEST_CR4_MASK);

1671

1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	return 0;
}

static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
{
	struct vcpu_vmx *vmx = to_vmx(vcpu);
	u64 msr;
	int ret;

	if (!init_rmode_tss(vmx->vcpu.kvm)) {
		ret = -ENOMEM;
		goto out;
	}

1686
	vmx->vcpu.arch.rmode.active = 0;
1687

1688
	vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
1689
	kvm_set_cr8(&vmx->vcpu, 0);
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
	msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
	if (vmx->vcpu.vcpu_id == 0)
		msr |= MSR_IA32_APICBASE_BSP;
	kvm_set_apic_base(&vmx->vcpu, msr);

	fx_init(&vmx->vcpu);

	/*
	 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
	 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4.  Sigh.
	 */
	if (vmx->vcpu.vcpu_id == 0) {
		vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
		vmcs_writel(GUEST_CS_BASE, 0x000f0000);
	} else {
1705 1706
		vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
		vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
	}
	vmcs_write32(GUEST_CS_LIMIT, 0xffff);
	vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);

	seg_setup(VCPU_SREG_DS);
	seg_setup(VCPU_SREG_ES);
	seg_setup(VCPU_SREG_FS);
	seg_setup(VCPU_SREG_GS);
	seg_setup(VCPU_SREG_SS);

	vmcs_write16(GUEST_TR_SELECTOR, 0);
	vmcs_writel(GUEST_TR_BASE, 0);
	vmcs_write32(GUEST_TR_LIMIT, 0xffff);
	vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);

	vmcs_write16(GUEST_LDTR_SELECTOR, 0);
	vmcs_writel(GUEST_LDTR_BASE, 0);
	vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
	vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);

	vmcs_write32(GUEST_SYSENTER_CS, 0);
	vmcs_writel(GUEST_SYSENTER_ESP, 0);
	vmcs_writel(GUEST_SYSENTER_EIP, 0);

	vmcs_writel(GUEST_RFLAGS, 0x02);
	if (vmx->vcpu.vcpu_id == 0)
		vmcs_writel(GUEST_RIP, 0xfff0);
	else
		vmcs_writel(GUEST_RIP, 0);
	vmcs_writel(GUEST_RSP, 0);

	/* todo: dr0 = dr1 = dr2 = dr3 = 0; dr6 = 0xffff0ff0 */
	vmcs_writel(GUEST_DR7, 0x400);

	vmcs_writel(GUEST_GDTR_BASE, 0);
	vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);

	vmcs_writel(GUEST_IDTR_BASE, 0);
	vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);

	vmcs_write32(GUEST_ACTIVITY_STATE, 0);
	vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
	vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);

	guest_write_tsc(0);

	/* Special registers */
	vmcs_write64(GUEST_IA32_DEBUGCTL, 0);

	setup_msrs(vmx);

A
Avi Kivity 已提交
1758 1759
	vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);  /* 22.2.1 */

1760 1761 1762 1763
	if (cpu_has_vmx_tpr_shadow()) {
		vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
		if (vm_need_tpr_shadow(vmx->vcpu.kvm))
			vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
1764
				page_to_phys(vmx->vcpu.arch.apic->regs_page));
1765 1766 1767 1768 1769
		vmcs_write32(TPR_THRESHOLD, 0);
	}

	if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
		vmcs_write64(APIC_ACCESS_ADDR,
1770
			     page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
A
Avi Kivity 已提交
1771

1772 1773 1774
	if (vmx->vpid != 0)
		vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);

1775 1776
	vmx->vcpu.arch.cr0 = 0x60000010;
	vmx_set_cr0(&vmx->vcpu, vmx->vcpu.arch.cr0); /* enter rmode */
R
Rusty Russell 已提交
1777 1778 1779 1780
	vmx_set_cr4(&vmx->vcpu, 0);
	vmx_set_efer(&vmx->vcpu, 0);
	vmx_fpu_activate(&vmx->vcpu);
	update_exception_bitmap(&vmx->vcpu);
A
Avi Kivity 已提交
1781

1782 1783
	vpid_sync_vcpu_all(vmx);

A
Avi Kivity 已提交
1784 1785 1786 1787 1788 1789
	return 0;

out:
	return ret;
}

1790 1791
static void vmx_inject_irq(struct kvm_vcpu *vcpu, int irq)
{
1792 1793
	struct vcpu_vmx *vmx = to_vmx(vcpu);

1794
	if (vcpu->arch.rmode.active) {
1795 1796 1797
		vmx->rmode.irq.pending = true;
		vmx->rmode.irq.vector = irq;
		vmx->rmode.irq.rip = vmcs_readl(GUEST_RIP);
1798 1799 1800
		vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
			     irq | INTR_TYPE_SOFT_INTR | INTR_INFO_VALID_MASK);
		vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, 1);
1801
		vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip - 1);
1802 1803 1804 1805 1806 1807
		return;
	}
	vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
			irq | INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
}

A
Avi Kivity 已提交
1808 1809
static void kvm_do_inject_irq(struct kvm_vcpu *vcpu)
{
1810 1811
	int word_index = __ffs(vcpu->arch.irq_summary);
	int bit_index = __ffs(vcpu->arch.irq_pending[word_index]);
A
Avi Kivity 已提交
1812 1813
	int irq = word_index * BITS_PER_LONG + bit_index;

1814 1815 1816
	clear_bit(bit_index, &vcpu->arch.irq_pending[word_index]);
	if (!vcpu->arch.irq_pending[word_index])
		clear_bit(word_index, &vcpu->arch.irq_summary);
1817
	vmx_inject_irq(vcpu, irq);
A
Avi Kivity 已提交
1818 1819
}

1820 1821 1822

static void do_interrupt_requests(struct kvm_vcpu *vcpu,
				       struct kvm_run *kvm_run)
A
Avi Kivity 已提交
1823
{
1824 1825
	u32 cpu_based_vm_exec_control;

1826
	vcpu->arch.interrupt_window_open =
1827 1828 1829
		((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
		 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);

1830 1831
	if (vcpu->arch.interrupt_window_open &&
	    vcpu->arch.irq_summary &&
1832
	    !(vmcs_read32(VM_ENTRY_INTR_INFO_FIELD) & INTR_INFO_VALID_MASK))
A
Avi Kivity 已提交
1833
		/*
1834
		 * If interrupts enabled, and not blocked by sti or mov ss. Good.
A
Avi Kivity 已提交
1835 1836
		 */
		kvm_do_inject_irq(vcpu);
1837 1838

	cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
1839 1840
	if (!vcpu->arch.interrupt_window_open &&
	    (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
A
Avi Kivity 已提交
1841 1842 1843
		/*
		 * Interrupts blocked.  Wait for unblock.
		 */
1844 1845 1846 1847
		cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
	else
		cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
	vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
A
Avi Kivity 已提交
1848 1849
}

1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
{
	int ret;
	struct kvm_userspace_memory_region tss_mem = {
		.slot = 8,
		.guest_phys_addr = addr,
		.memory_size = PAGE_SIZE * 3,
		.flags = 0,
	};

	ret = kvm_set_memory_region(kvm, &tss_mem, 0);
	if (ret)
		return ret;
1863
	kvm->arch.tss_addr = addr;
1864 1865 1866
	return 0;
}

A
Avi Kivity 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
static void kvm_guest_debug_pre(struct kvm_vcpu *vcpu)
{
	struct kvm_guest_debug *dbg = &vcpu->guest_debug;

	set_debugreg(dbg->bp[0], 0);
	set_debugreg(dbg->bp[1], 1);
	set_debugreg(dbg->bp[2], 2);
	set_debugreg(dbg->bp[3], 3);

	if (dbg->singlestep) {
		unsigned long flags;

		flags = vmcs_readl(GUEST_RFLAGS);
		flags |= X86_EFLAGS_TF | X86_EFLAGS_RF;
		vmcs_writel(GUEST_RFLAGS, flags);
	}
}

static int handle_rmode_exception(struct kvm_vcpu *vcpu,
				  int vec, u32 err_code)
{
1888
	if (!vcpu->arch.rmode.active)
A
Avi Kivity 已提交
1889 1890
		return 0;

1891 1892 1893 1894 1895
	/*
	 * Instruction with address size override prefix opcode 0x67
	 * Cause the #SS fault with 0 error code in VM86 mode.
	 */
	if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
1896
		if (emulate_instruction(vcpu, NULL, 0, 0, 0) == EMULATE_DONE)
A
Avi Kivity 已提交
1897 1898 1899 1900 1901 1902
			return 1;
	return 0;
}

static int handle_exception(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
1903
	struct vcpu_vmx *vmx = to_vmx(vcpu);
A
Avi Kivity 已提交
1904 1905 1906 1907 1908
	u32 intr_info, error_code;
	unsigned long cr2, rip;
	u32 vect_info;
	enum emulation_result er;

1909
	vect_info = vmx->idt_vectoring_info;
A
Avi Kivity 已提交
1910 1911 1912
	intr_info = vmcs_read32(VM_EXIT_INTR_INFO);

	if ((vect_info & VECTORING_INFO_VALID_MASK) &&
M
Mike Day 已提交
1913
						!is_page_fault(intr_info))
A
Avi Kivity 已提交
1914
		printk(KERN_ERR "%s: unexpected, vectoring info 0x%x "
1915
		       "intr info 0x%x\n", __func__, vect_info, intr_info);
A
Avi Kivity 已提交
1916

1917
	if (!irqchip_in_kernel(vcpu->kvm) && is_external_interrupt(vect_info)) {
A
Avi Kivity 已提交
1918
		int irq = vect_info & VECTORING_INFO_VECTOR_MASK;
1919 1920
		set_bit(irq, vcpu->arch.irq_pending);
		set_bit(irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
A
Avi Kivity 已提交
1921 1922
	}

1923 1924
	if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
		return 1;  /* already handled by vmx_vcpu_run() */
1925 1926

	if (is_no_device(intr_info)) {
1927
		vmx_fpu_activate(vcpu);
1928 1929 1930
		return 1;
	}

1931
	if (is_invalid_opcode(intr_info)) {
1932
		er = emulate_instruction(vcpu, kvm_run, 0, 0, EMULTYPE_TRAP_UD);
1933
		if (er != EMULATE_DONE)
1934
			kvm_queue_exception(vcpu, UD_VECTOR);
1935 1936 1937
		return 1;
	}

A
Avi Kivity 已提交
1938 1939
	error_code = 0;
	rip = vmcs_readl(GUEST_RIP);
1940
	if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
A
Avi Kivity 已提交
1941 1942 1943
		error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
	if (is_page_fault(intr_info)) {
		cr2 = vmcs_readl(EXIT_QUALIFICATION);
1944
		return kvm_mmu_page_fault(vcpu, cr2, error_code);
A
Avi Kivity 已提交
1945 1946
	}

1947
	if (vcpu->arch.rmode.active &&
A
Avi Kivity 已提交
1948
	    handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
1949
								error_code)) {
1950 1951
		if (vcpu->arch.halt_request) {
			vcpu->arch.halt_request = 0;
1952 1953
			return kvm_emulate_halt(vcpu);
		}
A
Avi Kivity 已提交
1954
		return 1;
1955
	}
A
Avi Kivity 已提交
1956

M
Mike Day 已提交
1957 1958
	if ((intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK)) ==
	    (INTR_TYPE_EXCEPTION | 1)) {
A
Avi Kivity 已提交
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
		kvm_run->exit_reason = KVM_EXIT_DEBUG;
		return 0;
	}
	kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
	kvm_run->ex.exception = intr_info & INTR_INFO_VECTOR_MASK;
	kvm_run->ex.error_code = error_code;
	return 0;
}

static int handle_external_interrupt(struct kvm_vcpu *vcpu,
				     struct kvm_run *kvm_run)
{
A
Avi Kivity 已提交
1971
	++vcpu->stat.irq_exits;
A
Avi Kivity 已提交
1972 1973 1974
	return 1;
}

1975 1976 1977 1978 1979
static int handle_triple_fault(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
	kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
	return 0;
}
A
Avi Kivity 已提交
1980 1981 1982

static int handle_io(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
1983
	unsigned long exit_qualification;
1984 1985
	int size, down, in, string, rep;
	unsigned port;
A
Avi Kivity 已提交
1986

A
Avi Kivity 已提交
1987
	++vcpu->stat.io_exits;
1988
	exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
1989
	string = (exit_qualification & 16) != 0;
1990 1991

	if (string) {
1992 1993
		if (emulate_instruction(vcpu,
					kvm_run, 0, 0, 0) == EMULATE_DO_MMIO)
1994 1995 1996 1997 1998 1999
			return 0;
		return 1;
	}

	size = (exit_qualification & 7) + 1;
	in = (exit_qualification & 8) != 0;
2000 2001 2002
	down = (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_DF) != 0;
	rep = (exit_qualification & 32) != 0;
	port = exit_qualification >> 16;
2003

L
Laurent Vivier 已提交
2004
	return kvm_emulate_pio(vcpu, kvm_run, in, size, port);
A
Avi Kivity 已提交
2005 2006
}

I
Ingo Molnar 已提交
2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
static void
vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
{
	/*
	 * Patch in the VMCALL instruction:
	 */
	hypercall[0] = 0x0f;
	hypercall[1] = 0x01;
	hypercall[2] = 0xc1;
}

A
Avi Kivity 已提交
2018 2019
static int handle_cr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2020
	unsigned long exit_qualification;
A
Avi Kivity 已提交
2021 2022 2023
	int cr;
	int reg;

2024
	exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
A
Avi Kivity 已提交
2025 2026 2027 2028 2029 2030 2031
	cr = exit_qualification & 15;
	reg = (exit_qualification >> 8) & 15;
	switch ((exit_qualification >> 4) & 3) {
	case 0: /* mov to cr */
		switch (cr) {
		case 0:
			vcpu_load_rsp_rip(vcpu);
2032
			kvm_set_cr0(vcpu, vcpu->arch.regs[reg]);
A
Avi Kivity 已提交
2033 2034 2035 2036
			skip_emulated_instruction(vcpu);
			return 1;
		case 3:
			vcpu_load_rsp_rip(vcpu);
2037
			kvm_set_cr3(vcpu, vcpu->arch.regs[reg]);
A
Avi Kivity 已提交
2038 2039 2040 2041
			skip_emulated_instruction(vcpu);
			return 1;
		case 4:
			vcpu_load_rsp_rip(vcpu);
2042
			kvm_set_cr4(vcpu, vcpu->arch.regs[reg]);
A
Avi Kivity 已提交
2043 2044 2045 2046
			skip_emulated_instruction(vcpu);
			return 1;
		case 8:
			vcpu_load_rsp_rip(vcpu);
2047
			kvm_set_cr8(vcpu, vcpu->arch.regs[reg]);
A
Avi Kivity 已提交
2048
			skip_emulated_instruction(vcpu);
2049 2050
			if (irqchip_in_kernel(vcpu->kvm))
				return 1;
2051 2052
			kvm_run->exit_reason = KVM_EXIT_SET_TPR;
			return 0;
A
Avi Kivity 已提交
2053 2054
		};
		break;
2055 2056
	case 2: /* clts */
		vcpu_load_rsp_rip(vcpu);
2057
		vmx_fpu_deactivate(vcpu);
2058 2059
		vcpu->arch.cr0 &= ~X86_CR0_TS;
		vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
2060
		vmx_fpu_activate(vcpu);
2061 2062
		skip_emulated_instruction(vcpu);
		return 1;
A
Avi Kivity 已提交
2063 2064 2065 2066
	case 1: /*mov from cr*/
		switch (cr) {
		case 3:
			vcpu_load_rsp_rip(vcpu);
2067
			vcpu->arch.regs[reg] = vcpu->arch.cr3;
A
Avi Kivity 已提交
2068 2069 2070 2071 2072
			vcpu_put_rsp_rip(vcpu);
			skip_emulated_instruction(vcpu);
			return 1;
		case 8:
			vcpu_load_rsp_rip(vcpu);
2073
			vcpu->arch.regs[reg] = kvm_get_cr8(vcpu);
A
Avi Kivity 已提交
2074 2075 2076 2077 2078 2079
			vcpu_put_rsp_rip(vcpu);
			skip_emulated_instruction(vcpu);
			return 1;
		}
		break;
	case 3: /* lmsw */
2080
		kvm_lmsw(vcpu, (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f);
A
Avi Kivity 已提交
2081 2082 2083 2084 2085 2086 2087

		skip_emulated_instruction(vcpu);
		return 1;
	default:
		break;
	}
	kvm_run->exit_reason = 0;
2088
	pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
A
Avi Kivity 已提交
2089 2090 2091 2092 2093 2094
	       (int)(exit_qualification >> 4) & 3, cr);
	return 0;
}

static int handle_dr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2095
	unsigned long exit_qualification;
A
Avi Kivity 已提交
2096 2097 2098 2099 2100 2101 2102
	unsigned long val;
	int dr, reg;

	/*
	 * FIXME: this code assumes the host is debugging the guest.
	 *        need to deal with guest debugging itself too.
	 */
2103
	exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
A
Avi Kivity 已提交
2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
	dr = exit_qualification & 7;
	reg = (exit_qualification >> 8) & 15;
	vcpu_load_rsp_rip(vcpu);
	if (exit_qualification & 16) {
		/* mov from dr */
		switch (dr) {
		case 6:
			val = 0xffff0ff0;
			break;
		case 7:
			val = 0x400;
			break;
		default:
			val = 0;
		}
2119
		vcpu->arch.regs[reg] = val;
A
Avi Kivity 已提交
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129
	} else {
		/* mov to dr */
	}
	vcpu_put_rsp_rip(vcpu);
	skip_emulated_instruction(vcpu);
	return 1;
}

static int handle_cpuid(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2130 2131
	kvm_emulate_cpuid(vcpu);
	return 1;
A
Avi Kivity 已提交
2132 2133 2134 2135
}

static int handle_rdmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2136
	u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
A
Avi Kivity 已提交
2137 2138 2139
	u64 data;

	if (vmx_get_msr(vcpu, ecx, &data)) {
2140
		kvm_inject_gp(vcpu, 0);
A
Avi Kivity 已提交
2141 2142 2143 2144
		return 1;
	}

	/* FIXME: handling of bits 32:63 of rax, rdx */
2145 2146
	vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
	vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
A
Avi Kivity 已提交
2147 2148 2149 2150 2151 2152
	skip_emulated_instruction(vcpu);
	return 1;
}

static int handle_wrmsr(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2153 2154 2155
	u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
	u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
		| ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
A
Avi Kivity 已提交
2156 2157

	if (vmx_set_msr(vcpu, ecx, data) != 0) {
2158
		kvm_inject_gp(vcpu, 0);
A
Avi Kivity 已提交
2159 2160 2161 2162 2163 2164 2165
		return 1;
	}

	skip_emulated_instruction(vcpu);
	return 1;
}

2166 2167 2168 2169 2170 2171
static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu,
				      struct kvm_run *kvm_run)
{
	return 1;
}

A
Avi Kivity 已提交
2172 2173 2174
static int handle_interrupt_window(struct kvm_vcpu *vcpu,
				   struct kvm_run *kvm_run)
{
2175 2176 2177 2178 2179 2180
	u32 cpu_based_vm_exec_control;

	/* clear pending irq */
	cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
	cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
	vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2181 2182 2183 2184 2185
	/*
	 * If the user space waits to inject interrupts, exit as soon as
	 * possible
	 */
	if (kvm_run->request_interrupt_window &&
2186
	    !vcpu->arch.irq_summary) {
2187
		kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
A
Avi Kivity 已提交
2188
		++vcpu->stat.irq_window_exits;
2189 2190
		return 0;
	}
A
Avi Kivity 已提交
2191 2192 2193 2194 2195 2196
	return 1;
}

static int handle_halt(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
	skip_emulated_instruction(vcpu);
2197
	return kvm_emulate_halt(vcpu);
A
Avi Kivity 已提交
2198 2199
}

2200 2201
static int handle_vmcall(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
2202
	skip_emulated_instruction(vcpu);
2203 2204
	kvm_emulate_hypercall(vcpu);
	return 1;
2205 2206
}

E
Eddie Dong 已提交
2207 2208 2209 2210 2211 2212 2213
static int handle_wbinvd(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
	skip_emulated_instruction(vcpu);
	/* TODO: Add support for VT-d/pass-through device */
	return 1;
}

2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
static int handle_apic_access(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
{
	u64 exit_qualification;
	enum emulation_result er;
	unsigned long offset;

	exit_qualification = vmcs_read64(EXIT_QUALIFICATION);
	offset = exit_qualification & 0xffful;

	er = emulate_instruction(vcpu, kvm_run, 0, 0, 0);

	if (er !=  EMULATE_DONE) {
		printk(KERN_ERR
		       "Fail to handle apic access vmexit! Offset is 0x%lx\n",
		       offset);
		return -ENOTSUPP;
	}
	return 1;
}

A
Avi Kivity 已提交
2234 2235 2236 2237 2238 2239 2240 2241 2242
/*
 * The exit handlers return 1 if the exit was handled fully and guest execution
 * may resume.  Otherwise they set the kvm_run parameter to indicate what needs
 * to be done to userspace and return 0.
 */
static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu,
				      struct kvm_run *kvm_run) = {
	[EXIT_REASON_EXCEPTION_NMI]           = handle_exception,
	[EXIT_REASON_EXTERNAL_INTERRUPT]      = handle_external_interrupt,
2243
	[EXIT_REASON_TRIPLE_FAULT]            = handle_triple_fault,
A
Avi Kivity 已提交
2244 2245 2246 2247 2248 2249 2250 2251
	[EXIT_REASON_IO_INSTRUCTION]          = handle_io,
	[EXIT_REASON_CR_ACCESS]               = handle_cr,
	[EXIT_REASON_DR_ACCESS]               = handle_dr,
	[EXIT_REASON_CPUID]                   = handle_cpuid,
	[EXIT_REASON_MSR_READ]                = handle_rdmsr,
	[EXIT_REASON_MSR_WRITE]               = handle_wrmsr,
	[EXIT_REASON_PENDING_INTERRUPT]       = handle_interrupt_window,
	[EXIT_REASON_HLT]                     = handle_halt,
2252
	[EXIT_REASON_VMCALL]                  = handle_vmcall,
2253 2254
	[EXIT_REASON_TPR_BELOW_THRESHOLD]     = handle_tpr_below_threshold,
	[EXIT_REASON_APIC_ACCESS]             = handle_apic_access,
E
Eddie Dong 已提交
2255
	[EXIT_REASON_WBINVD]                  = handle_wbinvd,
A
Avi Kivity 已提交
2256 2257 2258
};

static const int kvm_vmx_max_exit_handlers =
2259
	ARRAY_SIZE(kvm_vmx_exit_handlers);
A
Avi Kivity 已提交
2260 2261 2262 2263 2264 2265 2266 2267

/*
 * The guest has exited.  See if we can fix it or if we need userspace
 * assistance.
 */
static int kvm_handle_exit(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
{
	u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
2268
	struct vcpu_vmx *vmx = to_vmx(vcpu);
2269
	u32 vectoring_info = vmx->idt_vectoring_info;
2270 2271 2272 2273 2274 2275 2276

	if (unlikely(vmx->fail)) {
		kvm_run->exit_reason = KVM_EXIT_FAIL_ENTRY;
		kvm_run->fail_entry.hardware_entry_failure_reason
			= vmcs_read32(VM_INSTRUCTION_ERROR);
		return 0;
	}
A
Avi Kivity 已提交
2277

M
Mike Day 已提交
2278 2279
	if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
				exit_reason != EXIT_REASON_EXCEPTION_NMI)
A
Avi Kivity 已提交
2280
		printk(KERN_WARNING "%s: unexpected, valid vectoring info and "
2281
		       "exit reason is 0x%x\n", __func__, exit_reason);
A
Avi Kivity 已提交
2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
	if (exit_reason < kvm_vmx_max_exit_handlers
	    && kvm_vmx_exit_handlers[exit_reason])
		return kvm_vmx_exit_handlers[exit_reason](vcpu, kvm_run);
	else {
		kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
		kvm_run->hw.hardware_exit_reason = exit_reason;
	}
	return 0;
}

2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308
static void update_tpr_threshold(struct kvm_vcpu *vcpu)
{
	int max_irr, tpr;

	if (!vm_need_tpr_shadow(vcpu->kvm))
		return;

	if (!kvm_lapic_enabled(vcpu) ||
	    ((max_irr = kvm_lapic_find_highest_irr(vcpu)) == -1)) {
		vmcs_write32(TPR_THRESHOLD, 0);
		return;
	}

	tpr = (kvm_lapic_get_cr8(vcpu) & 0x0f) << 4;
	vmcs_write32(TPR_THRESHOLD, (max_irr > tpr) ? tpr >> 4 : max_irr >> 4);
}

2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
static void enable_irq_window(struct kvm_vcpu *vcpu)
{
	u32 cpu_based_vm_exec_control;

	cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
	cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
	vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
}

static void vmx_intr_assist(struct kvm_vcpu *vcpu)
{
2320
	struct vcpu_vmx *vmx = to_vmx(vcpu);
2321 2322
	u32 idtv_info_field, intr_info_field;
	int has_ext_irq, interrupt_window_open;
2323
	int vector;
2324

2325 2326
	update_tpr_threshold(vcpu);

2327 2328
	has_ext_irq = kvm_cpu_has_interrupt(vcpu);
	intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
2329
	idtv_info_field = vmx->idt_vectoring_info;
2330 2331 2332
	if (intr_info_field & INTR_INFO_VALID_MASK) {
		if (idtv_info_field & INTR_INFO_VALID_MASK) {
			/* TODO: fault when IDT_Vectoring */
2333 2334
			if (printk_ratelimit())
				printk(KERN_ERR "Fault when IDT_Vectoring\n");
2335 2336 2337 2338 2339 2340
		}
		if (has_ext_irq)
			enable_irq_window(vcpu);
		return;
	}
	if (unlikely(idtv_info_field & INTR_INFO_VALID_MASK)) {
2341 2342
		if ((idtv_info_field & VECTORING_INFO_TYPE_MASK)
		    == INTR_TYPE_EXT_INTR
2343
		    && vcpu->arch.rmode.active) {
2344 2345 2346 2347 2348 2349 2350 2351
			u8 vect = idtv_info_field & VECTORING_INFO_VECTOR_MASK;

			vmx_inject_irq(vcpu, vect);
			if (unlikely(has_ext_irq))
				enable_irq_window(vcpu);
			return;
		}

2352 2353 2354 2355
		vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, idtv_info_field);
		vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
				vmcs_read32(VM_EXIT_INSTRUCTION_LEN));

2356
		if (unlikely(idtv_info_field & INTR_INFO_DELIVER_CODE_MASK))
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367
			vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
				vmcs_read32(IDT_VECTORING_ERROR_CODE));
		if (unlikely(has_ext_irq))
			enable_irq_window(vcpu);
		return;
	}
	if (!has_ext_irq)
		return;
	interrupt_window_open =
		((vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
		 (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0);
2368 2369 2370 2371 2372
	if (interrupt_window_open) {
		vector = kvm_cpu_get_interrupt(vcpu);
		vmx_inject_irq(vcpu, vector);
		kvm_timer_intr_post(vcpu, vector);
	} else
2373 2374 2375
		enable_irq_window(vcpu);
}

2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398
/*
 * Failure to inject an interrupt should give us the information
 * in IDT_VECTORING_INFO_FIELD.  However, if the failure occurs
 * when fetching the interrupt redirection bitmap in the real-mode
 * tss, this doesn't happen.  So we do it ourselves.
 */
static void fixup_rmode_irq(struct vcpu_vmx *vmx)
{
	vmx->rmode.irq.pending = 0;
	if (vmcs_readl(GUEST_RIP) + 1 != vmx->rmode.irq.rip)
		return;
	vmcs_writel(GUEST_RIP, vmx->rmode.irq.rip);
	if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
		vmx->idt_vectoring_info &= ~VECTORING_INFO_TYPE_MASK;
		vmx->idt_vectoring_info |= INTR_TYPE_EXT_INTR;
		return;
	}
	vmx->idt_vectoring_info =
		VECTORING_INFO_VALID_MASK
		| INTR_TYPE_EXT_INTR
		| vmx->rmode.irq.vector;
}

2399
static void vmx_vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
A
Avi Kivity 已提交
2400
{
2401
	struct vcpu_vmx *vmx = to_vmx(vcpu);
2402
	u32 intr_info;
2403 2404 2405 2406 2407 2408

	/*
	 * Loading guest fpu may have cleared host cr0.ts
	 */
	vmcs_writel(HOST_CR0, read_cr0());

M
Mike Day 已提交
2409
	asm(
A
Avi Kivity 已提交
2410
		/* Store host registers */
2411
#ifdef CONFIG_X86_64
2412
		"push %%rdx; push %%rbp;"
A
Avi Kivity 已提交
2413 2414
		"push %%rcx \n\t"
#else
2415 2416
		"push %%edx; push %%ebp;"
		"push %%ecx \n\t"
A
Avi Kivity 已提交
2417
#endif
2418
		ASM_VMX_VMWRITE_RSP_RDX "\n\t"
A
Avi Kivity 已提交
2419
		/* Check if vmlaunch of vmresume is needed */
2420
		"cmpl $0, %c[launched](%0) \n\t"
A
Avi Kivity 已提交
2421
		/* Load guest registers.  Don't clobber flags. */
2422
#ifdef CONFIG_X86_64
2423
		"mov %c[cr2](%0), %%rax \n\t"
A
Avi Kivity 已提交
2424
		"mov %%rax, %%cr2 \n\t"
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
		"mov %c[rax](%0), %%rax \n\t"
		"mov %c[rbx](%0), %%rbx \n\t"
		"mov %c[rdx](%0), %%rdx \n\t"
		"mov %c[rsi](%0), %%rsi \n\t"
		"mov %c[rdi](%0), %%rdi \n\t"
		"mov %c[rbp](%0), %%rbp \n\t"
		"mov %c[r8](%0),  %%r8  \n\t"
		"mov %c[r9](%0),  %%r9  \n\t"
		"mov %c[r10](%0), %%r10 \n\t"
		"mov %c[r11](%0), %%r11 \n\t"
		"mov %c[r12](%0), %%r12 \n\t"
		"mov %c[r13](%0), %%r13 \n\t"
		"mov %c[r14](%0), %%r14 \n\t"
		"mov %c[r15](%0), %%r15 \n\t"
		"mov %c[rcx](%0), %%rcx \n\t" /* kills %0 (rcx) */
A
Avi Kivity 已提交
2440
#else
2441
		"mov %c[cr2](%0), %%eax \n\t"
A
Avi Kivity 已提交
2442
		"mov %%eax,   %%cr2 \n\t"
2443 2444 2445 2446 2447 2448 2449
		"mov %c[rax](%0), %%eax \n\t"
		"mov %c[rbx](%0), %%ebx \n\t"
		"mov %c[rdx](%0), %%edx \n\t"
		"mov %c[rsi](%0), %%esi \n\t"
		"mov %c[rdi](%0), %%edi \n\t"
		"mov %c[rbp](%0), %%ebp \n\t"
		"mov %c[rcx](%0), %%ecx \n\t" /* kills %0 (ecx) */
A
Avi Kivity 已提交
2450 2451
#endif
		/* Enter guest mode */
2452
		"jne .Llaunched \n\t"
A
Avi Kivity 已提交
2453
		ASM_VMX_VMLAUNCH "\n\t"
2454 2455 2456
		"jmp .Lkvm_vmx_return \n\t"
		".Llaunched: " ASM_VMX_VMRESUME "\n\t"
		".Lkvm_vmx_return: "
A
Avi Kivity 已提交
2457
		/* Save guest registers, load host registers, keep flags */
2458
#ifdef CONFIG_X86_64
2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
		"xchg %0,     (%%rsp) \n\t"
		"mov %%rax, %c[rax](%0) \n\t"
		"mov %%rbx, %c[rbx](%0) \n\t"
		"pushq (%%rsp); popq %c[rcx](%0) \n\t"
		"mov %%rdx, %c[rdx](%0) \n\t"
		"mov %%rsi, %c[rsi](%0) \n\t"
		"mov %%rdi, %c[rdi](%0) \n\t"
		"mov %%rbp, %c[rbp](%0) \n\t"
		"mov %%r8,  %c[r8](%0) \n\t"
		"mov %%r9,  %c[r9](%0) \n\t"
		"mov %%r10, %c[r10](%0) \n\t"
		"mov %%r11, %c[r11](%0) \n\t"
		"mov %%r12, %c[r12](%0) \n\t"
		"mov %%r13, %c[r13](%0) \n\t"
		"mov %%r14, %c[r14](%0) \n\t"
		"mov %%r15, %c[r15](%0) \n\t"
A
Avi Kivity 已提交
2475
		"mov %%cr2, %%rax   \n\t"
2476
		"mov %%rax, %c[cr2](%0) \n\t"
A
Avi Kivity 已提交
2477

2478
		"pop  %%rbp; pop  %%rbp; pop  %%rdx \n\t"
A
Avi Kivity 已提交
2479
#else
2480 2481 2482 2483 2484 2485 2486 2487
		"xchg %0, (%%esp) \n\t"
		"mov %%eax, %c[rax](%0) \n\t"
		"mov %%ebx, %c[rbx](%0) \n\t"
		"pushl (%%esp); popl %c[rcx](%0) \n\t"
		"mov %%edx, %c[rdx](%0) \n\t"
		"mov %%esi, %c[rsi](%0) \n\t"
		"mov %%edi, %c[rdi](%0) \n\t"
		"mov %%ebp, %c[rbp](%0) \n\t"
A
Avi Kivity 已提交
2488
		"mov %%cr2, %%eax  \n\t"
2489
		"mov %%eax, %c[cr2](%0) \n\t"
A
Avi Kivity 已提交
2490

2491
		"pop %%ebp; pop %%ebp; pop %%edx \n\t"
A
Avi Kivity 已提交
2492
#endif
2493 2494 2495 2496
		"setbe %c[fail](%0) \n\t"
	      : : "c"(vmx), "d"((unsigned long)HOST_RSP),
		[launched]"i"(offsetof(struct vcpu_vmx, launched)),
		[fail]"i"(offsetof(struct vcpu_vmx, fail)),
2497 2498 2499 2500 2501 2502 2503
		[rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
		[rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
		[rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
		[rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
		[rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
		[rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
		[rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
2504
#ifdef CONFIG_X86_64
2505 2506 2507 2508 2509 2510 2511 2512
		[r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
		[r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
		[r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
		[r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
		[r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
		[r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
		[r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
		[r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
A
Avi Kivity 已提交
2513
#endif
2514
		[cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2))
2515 2516 2517 2518
	      : "cc", "memory"
#ifdef CONFIG_X86_64
		, "rbx", "rdi", "rsi"
		, "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
2519 2520
#else
		, "ebx", "edi", "rsi"
2521 2522
#endif
	      );
A
Avi Kivity 已提交
2523

2524
	vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
2525 2526
	if (vmx->rmode.irq.pending)
		fixup_rmode_irq(vmx);
2527

2528
	vcpu->arch.interrupt_window_open =
M
Mike Day 已提交
2529
		(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & 3) == 0;
A
Avi Kivity 已提交
2530

M
Mike Day 已提交
2531
	asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
2532
	vmx->launched = 1;
2533 2534 2535 2536 2537 2538

	intr_info = vmcs_read32(VM_EXIT_INTR_INFO);

	/* We need to handle NMIs before interrupts are enabled */
	if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == 0x200) /* nmi */
		asm("int $2");
A
Avi Kivity 已提交
2539 2540 2541 2542
}

static void vmx_free_vmcs(struct kvm_vcpu *vcpu)
{
2543 2544 2545
	struct vcpu_vmx *vmx = to_vmx(vcpu);

	if (vmx->vmcs) {
R
Rusty Russell 已提交
2546
		on_each_cpu(__vcpu_clear, vmx, 0, 1);
2547 2548
		free_vmcs(vmx->vmcs);
		vmx->vmcs = NULL;
A
Avi Kivity 已提交
2549 2550 2551 2552 2553
	}
}

static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
{
R
Rusty Russell 已提交
2554 2555
	struct vcpu_vmx *vmx = to_vmx(vcpu);

2556 2557 2558 2559
	spin_lock(&vmx_vpid_lock);
	if (vmx->vpid != 0)
		__clear_bit(vmx->vpid, vmx_vpid_bitmap);
	spin_unlock(&vmx_vpid_lock);
A
Avi Kivity 已提交
2560
	vmx_free_vmcs(vcpu);
R
Rusty Russell 已提交
2561 2562 2563
	kfree(vmx->host_msrs);
	kfree(vmx->guest_msrs);
	kvm_vcpu_uninit(vcpu);
2564
	kmem_cache_free(kvm_vcpu_cache, vmx);
A
Avi Kivity 已提交
2565 2566
}

R
Rusty Russell 已提交
2567
static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
A
Avi Kivity 已提交
2568
{
R
Rusty Russell 已提交
2569
	int err;
2570
	struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
2571
	int cpu;
A
Avi Kivity 已提交
2572

2573
	if (!vmx)
R
Rusty Russell 已提交
2574 2575
		return ERR_PTR(-ENOMEM);

2576 2577
	allocate_vpid(vmx);

R
Rusty Russell 已提交
2578 2579 2580
	err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
	if (err)
		goto free_vcpu;
2581

2582
	vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
R
Rusty Russell 已提交
2583 2584 2585 2586
	if (!vmx->guest_msrs) {
		err = -ENOMEM;
		goto uninit_vcpu;
	}
2587

2588 2589
	vmx->host_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
	if (!vmx->host_msrs)
R
Rusty Russell 已提交
2590
		goto free_guest_msrs;
2591

2592 2593
	vmx->vmcs = alloc_vmcs();
	if (!vmx->vmcs)
R
Rusty Russell 已提交
2594
		goto free_msrs;
2595 2596 2597

	vmcs_clear(vmx->vmcs);

2598 2599
	cpu = get_cpu();
	vmx_vcpu_load(&vmx->vcpu, cpu);
R
Rusty Russell 已提交
2600
	err = vmx_vcpu_setup(vmx);
R
Rusty Russell 已提交
2601
	vmx_vcpu_put(&vmx->vcpu);
2602
	put_cpu();
R
Rusty Russell 已提交
2603 2604
	if (err)
		goto free_vmcs;
2605 2606 2607
	if (vm_need_virtualize_apic_accesses(kvm))
		if (alloc_apic_access_page(kvm) != 0)
			goto free_vmcs;
R
Rusty Russell 已提交
2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619

	return &vmx->vcpu;

free_vmcs:
	free_vmcs(vmx->vmcs);
free_msrs:
	kfree(vmx->host_msrs);
free_guest_msrs:
	kfree(vmx->guest_msrs);
uninit_vcpu:
	kvm_vcpu_uninit(&vmx->vcpu);
free_vcpu:
2620
	kmem_cache_free(kvm_vcpu_cache, vmx);
R
Rusty Russell 已提交
2621
	return ERR_PTR(err);
A
Avi Kivity 已提交
2622 2623
}

Y
Yang, Sheng 已提交
2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637
static void __init vmx_check_processor_compat(void *rtn)
{
	struct vmcs_config vmcs_conf;

	*(int *)rtn = 0;
	if (setup_vmcs_config(&vmcs_conf) < 0)
		*(int *)rtn = -EIO;
	if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
		printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
				smp_processor_id());
		*(int *)rtn = -EIO;
	}
}

2638
static struct kvm_x86_ops vmx_x86_ops = {
A
Avi Kivity 已提交
2639 2640 2641 2642
	.cpu_has_kvm_support = cpu_has_kvm_support,
	.disabled_by_bios = vmx_disabled_by_bios,
	.hardware_setup = hardware_setup,
	.hardware_unsetup = hardware_unsetup,
Y
Yang, Sheng 已提交
2643
	.check_processor_compatibility = vmx_check_processor_compat,
A
Avi Kivity 已提交
2644 2645
	.hardware_enable = hardware_enable,
	.hardware_disable = hardware_disable,
2646
	.cpu_has_accelerated_tpr = cpu_has_vmx_virtualize_apic_accesses,
A
Avi Kivity 已提交
2647 2648 2649

	.vcpu_create = vmx_create_vcpu,
	.vcpu_free = vmx_free_vcpu,
2650
	.vcpu_reset = vmx_vcpu_reset,
A
Avi Kivity 已提交
2651

2652
	.prepare_guest_switch = vmx_save_host_state,
A
Avi Kivity 已提交
2653 2654
	.vcpu_load = vmx_vcpu_load,
	.vcpu_put = vmx_vcpu_put,
A
Avi Kivity 已提交
2655
	.vcpu_decache = vmx_vcpu_decache,
A
Avi Kivity 已提交
2656 2657

	.set_guest_debug = set_guest_debug,
2658
	.guest_debug_pre = kvm_guest_debug_pre,
A
Avi Kivity 已提交
2659 2660 2661 2662 2663 2664
	.get_msr = vmx_get_msr,
	.set_msr = vmx_set_msr,
	.get_segment_base = vmx_get_segment_base,
	.get_segment = vmx_get_segment,
	.set_segment = vmx_set_segment,
	.get_cs_db_l_bits = vmx_get_cs_db_l_bits,
2665
	.decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
A
Avi Kivity 已提交
2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681
	.set_cr0 = vmx_set_cr0,
	.set_cr3 = vmx_set_cr3,
	.set_cr4 = vmx_set_cr4,
	.set_efer = vmx_set_efer,
	.get_idt = vmx_get_idt,
	.set_idt = vmx_set_idt,
	.get_gdt = vmx_get_gdt,
	.set_gdt = vmx_set_gdt,
	.cache_regs = vcpu_load_rsp_rip,
	.decache_regs = vcpu_put_rsp_rip,
	.get_rflags = vmx_get_rflags,
	.set_rflags = vmx_set_rflags,

	.tlb_flush = vmx_flush_tlb,

	.run = vmx_vcpu_run,
2682
	.handle_exit = kvm_handle_exit,
A
Avi Kivity 已提交
2683
	.skip_emulated_instruction = skip_emulated_instruction,
I
Ingo Molnar 已提交
2684
	.patch_hypercall = vmx_patch_hypercall,
E
Eddie Dong 已提交
2685 2686
	.get_irq = vmx_get_irq,
	.set_irq = vmx_inject_irq,
2687 2688
	.queue_exception = vmx_queue_exception,
	.exception_injected = vmx_exception_injected,
2689 2690
	.inject_pending_irq = vmx_intr_assist,
	.inject_pending_vectors = do_interrupt_requests,
2691 2692

	.set_tss_addr = vmx_set_tss_addr,
A
Avi Kivity 已提交
2693 2694 2695 2696
};

static int __init vmx_init(void)
{
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716
	void *iova;
	int r;

	vmx_io_bitmap_a = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
	if (!vmx_io_bitmap_a)
		return -ENOMEM;

	vmx_io_bitmap_b = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
	if (!vmx_io_bitmap_b) {
		r = -ENOMEM;
		goto out;
	}

	/*
	 * Allow direct access to the PC debug port (it is often used for I/O
	 * delays, but the vmexits simply slow things down).
	 */
	iova = kmap(vmx_io_bitmap_a);
	memset(iova, 0xff, PAGE_SIZE);
	clear_bit(0x80, iova);
2717
	kunmap(vmx_io_bitmap_a);
2718 2719 2720

	iova = kmap(vmx_io_bitmap_b);
	memset(iova, 0xff, PAGE_SIZE);
2721
	kunmap(vmx_io_bitmap_b);
2722

2723 2724
	set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */

2725
	r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), THIS_MODULE);
2726 2727 2728
	if (r)
		goto out1;

2729 2730 2731
	if (bypass_guest_pf)
		kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);

2732 2733 2734 2735 2736 2737 2738
	return 0;

out1:
	__free_page(vmx_io_bitmap_b);
out:
	__free_page(vmx_io_bitmap_a);
	return r;
A
Avi Kivity 已提交
2739 2740 2741 2742
}

static void __exit vmx_exit(void)
{
2743 2744 2745
	__free_page(vmx_io_bitmap_b);
	__free_page(vmx_io_bitmap_a);

2746
	kvm_exit();
A
Avi Kivity 已提交
2747 2748 2749 2750
}

module_init(vmx_init)
module_exit(vmx_exit)