blob: 74afd866093049ce7a52de80aec6cae09aafd20c [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040021
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020024#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/mm.h>
26#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020028#include <linux/moduleparam.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030029#include <linux/ftrace_event.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040031#include <linux/tboot.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030032#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030033#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040034
Avi Kivity6aa8b732006-12-10 02:21:36 -080035#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080036#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020037#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020038#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080039#include <asm/mce.h>
Dexuan Cui2acf9232010-06-10 11:27:12 +080040#include <asm/i387.h>
41#include <asm/xcr.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080042
Marcelo Tosatti229456f2009-06-17 09:22:14 -030043#include "trace.h"
44
Avi Kivity4ecac3f2008-05-13 13:23:38 +030045#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040046#define __ex_clear(x, reg) \
47 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030048
Avi Kivity6aa8b732006-12-10 02:21:36 -080049MODULE_AUTHOR("Qumranet");
50MODULE_LICENSE("GPL");
51
Avi Kivity4462d212009-03-23 17:53:37 +020052static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020053module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020054
Avi Kivity4462d212009-03-23 17:53:37 +020055static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020056module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080057
Avi Kivity4462d212009-03-23 17:53:37 +020058static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020059module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020060
Avi Kivity4462d212009-03-23 17:53:37 +020061static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020062module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080063
Nitin A Kamble3a624e22009-06-08 11:34:16 -070064static int __read_mostly enable_unrestricted_guest = 1;
65module_param_named(unrestricted_guest,
66 enable_unrestricted_guest, bool, S_IRUGO);
67
Avi Kivity4462d212009-03-23 17:53:37 +020068static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020069module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030070
Dongxiao Xub923e622010-05-11 18:29:45 +080071static int __read_mostly vmm_exclusive = 1;
72module_param(vmm_exclusive, bool, S_IRUGO);
73
Anthony Liguori443381a2010-12-06 10:53:38 -060074static int __read_mostly yield_on_hlt = 1;
75module_param(yield_on_hlt, bool, S_IRUGO);
76
Nadav Har'El801d3422011-05-25 23:02:23 +030077/*
78 * If nested=1, nested virtualization is supported, i.e., guests may use
79 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
80 * use VMX instructions.
81 */
82static int __read_mostly nested = 0;
83module_param(nested, bool, S_IRUGO);
84
Avi Kivitycdc0e242009-12-06 17:21:14 +020085#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
86 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
87#define KVM_GUEST_CR0_MASK \
88 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
89#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020090 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020091#define KVM_VM_CR0_ALWAYS_ON \
92 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020093#define KVM_CR4_GUEST_OWNED_BITS \
94 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
95 | X86_CR4_OSXMMEXCPT)
96
Avi Kivitycdc0e242009-12-06 17:21:14 +020097#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
98#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
99
Avi Kivity78ac8b42010-04-08 18:19:35 +0300100#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
101
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800102/*
103 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
104 * ple_gap: upper bound on the amount of time between two successive
105 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500106 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800107 * ple_window: upper bound on the amount of time a guest is allowed to execute
108 * in a PAUSE loop. Tests indicate that most spinlocks are held for
109 * less than 2^12 cycles
110 * Time is measured based on a counter that runs at the same rate as the TSC,
111 * refer SDM volume 3b section 21.6.13 & 22.1.3.
112 */
Rik van Riel00c25bc2011-01-04 09:51:33 -0500113#define KVM_VMX_DEFAULT_PLE_GAP 128
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800114#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
115static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
116module_param(ple_gap, int, S_IRUGO);
117
118static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
119module_param(ple_window, int, S_IRUGO);
120
Avi Kivity61d2ef22010-04-28 16:40:38 +0300121#define NR_AUTOLOAD_MSRS 1
122
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400123struct vmcs {
124 u32 revision_id;
125 u32 abort;
126 char data[0];
127};
128
Nadav Har'Eld462b812011-05-24 15:26:10 +0300129/*
130 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
131 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
132 * loaded on this CPU (so we can clear them if the CPU goes down).
133 */
134struct loaded_vmcs {
135 struct vmcs *vmcs;
136 int cpu;
137 int launched;
138 struct list_head loaded_vmcss_on_cpu_link;
139};
140
Avi Kivity26bb0982009-09-07 11:14:12 +0300141struct shared_msr_entry {
142 unsigned index;
143 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200144 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300145};
146
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300147/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300148 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
149 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
150 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
151 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
152 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
153 * More than one of these structures may exist, if L1 runs multiple L2 guests.
154 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
155 * underlying hardware which will be used to run L2.
156 * This structure is packed to ensure that its layout is identical across
157 * machines (necessary for live migration).
158 * If there are changes in this struct, VMCS12_REVISION must be changed.
159 */
160struct __packed vmcs12 {
161 /* According to the Intel spec, a VMCS region must start with the
162 * following two fields. Then follow implementation-specific data.
163 */
164 u32 revision_id;
165 u32 abort;
166};
167
168/*
169 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
170 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
171 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
172 */
173#define VMCS12_REVISION 0x11e57ed0
174
175/*
176 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
177 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
178 * current implementation, 4K are reserved to avoid future complications.
179 */
180#define VMCS12_SIZE 0x1000
181
182/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300183 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
184 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
185 */
186struct nested_vmx {
187 /* Has the level1 guest done vmxon? */
188 bool vmxon;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300189
190 /* The guest-physical address of the current VMCS L1 keeps for L2 */
191 gpa_t current_vmptr;
192 /* The host-usable pointer to the above */
193 struct page *current_vmcs12_page;
194 struct vmcs12 *current_vmcs12;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300195};
196
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400197struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000198 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300199 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300200 u8 fail;
Avi Kivity69c73022011-03-07 15:26:44 +0200201 u8 cpl;
Avi Kivity9d58b932011-03-07 16:52:07 +0200202 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300203 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200204 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200205 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300206 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400207 int nmsrs;
208 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400209#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300210 u64 msr_host_kernel_gs_base;
211 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400212#endif
Nadav Har'Eld462b812011-05-24 15:26:10 +0300213 /*
214 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
215 * non-nested (L1) guest, it always points to vmcs01. For a nested
216 * guest (L2), it points to a different VMCS.
217 */
218 struct loaded_vmcs vmcs01;
219 struct loaded_vmcs *loaded_vmcs;
220 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300221 struct msr_autoload {
222 unsigned nr;
223 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
224 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
225 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400226 struct {
227 int loaded;
228 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200229 int gs_ldt_reload_needed;
230 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400231 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200232 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300233 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300234 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300235 struct kvm_save_segment {
236 u16 selector;
237 unsigned long base;
238 u32 limit;
239 u32 ar;
240 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200241 } rmode;
Avi Kivity2fb92db2011-04-27 19:42:18 +0300242 struct {
243 u32 bitmask; /* 4 bits per segment (1 bit per field) */
244 struct kvm_save_segment seg[8];
245 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800246 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300247 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200248
249 /* Support for vnmi-less CPUs */
250 int soft_vnmi_blocked;
251 ktime_t entry_time;
252 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800253 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800254
255 bool rdtscp_enabled;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300256
257 /* Support for a guest hypervisor (nested VMX) */
258 struct nested_vmx nested;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400259};
260
Avi Kivity2fb92db2011-04-27 19:42:18 +0300261enum segment_cache_field {
262 SEG_FIELD_SEL = 0,
263 SEG_FIELD_BASE = 1,
264 SEG_FIELD_LIMIT = 2,
265 SEG_FIELD_AR = 3,
266
267 SEG_FIELD_NR = 4
268};
269
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400270static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
271{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000272 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400273}
274
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300275static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
276{
277 return to_vmx(vcpu)->nested.current_vmcs12;
278}
279
280static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
281{
282 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
283 if (is_error_page(page)) {
284 kvm_release_page_clean(page);
285 return NULL;
286 }
287 return page;
288}
289
290static void nested_release_page(struct page *page)
291{
292 kvm_release_page_dirty(page);
293}
294
295static void nested_release_page_clean(struct page *page)
296{
297 kvm_release_page_clean(page);
298}
299
Sheng Yang4e1096d2008-07-06 19:16:51 +0800300static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800301static void kvm_cpu_vmxon(u64 addr);
302static void kvm_cpu_vmxoff(void);
Avi Kivityaff48ba2010-12-05 18:56:11 +0200303static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200304static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Avi Kivity75880a02007-06-20 11:20:04 +0300305
Avi Kivity6aa8b732006-12-10 02:21:36 -0800306static DEFINE_PER_CPU(struct vmcs *, vmxarea);
307static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300308/*
309 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
310 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
311 */
312static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300313static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800314
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200315static unsigned long *vmx_io_bitmap_a;
316static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200317static unsigned long *vmx_msr_bitmap_legacy;
318static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300319
Avi Kivity110312c2010-12-21 12:54:20 +0200320static bool cpu_has_load_ia32_efer;
321
Sheng Yang2384d2b2008-01-17 15:14:33 +0800322static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
323static DEFINE_SPINLOCK(vmx_vpid_lock);
324
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300325static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800326 int size;
327 int order;
328 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300329 u32 pin_based_exec_ctrl;
330 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800331 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300332 u32 vmexit_ctrl;
333 u32 vmentry_ctrl;
334} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800335
Hannes Ederefff9e52008-11-28 17:02:06 +0100336static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800337 u32 ept;
338 u32 vpid;
339} vmx_capability;
340
Avi Kivity6aa8b732006-12-10 02:21:36 -0800341#define VMX_SEGMENT_FIELD(seg) \
342 [VCPU_SREG_##seg] = { \
343 .selector = GUEST_##seg##_SELECTOR, \
344 .base = GUEST_##seg##_BASE, \
345 .limit = GUEST_##seg##_LIMIT, \
346 .ar_bytes = GUEST_##seg##_AR_BYTES, \
347 }
348
349static struct kvm_vmx_segment_field {
350 unsigned selector;
351 unsigned base;
352 unsigned limit;
353 unsigned ar_bytes;
354} kvm_vmx_segment_fields[] = {
355 VMX_SEGMENT_FIELD(CS),
356 VMX_SEGMENT_FIELD(DS),
357 VMX_SEGMENT_FIELD(ES),
358 VMX_SEGMENT_FIELD(FS),
359 VMX_SEGMENT_FIELD(GS),
360 VMX_SEGMENT_FIELD(SS),
361 VMX_SEGMENT_FIELD(TR),
362 VMX_SEGMENT_FIELD(LDTR),
363};
364
Avi Kivity26bb0982009-09-07 11:14:12 +0300365static u64 host_efer;
366
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300367static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
368
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300369/*
Brian Gerst8c065852010-07-17 09:03:26 -0400370 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300371 * away by decrementing the array size.
372 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800373static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800374#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300375 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400377 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800378};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200379#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800380
Gui Jianfeng31299942010-03-15 17:29:09 +0800381static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800382{
383 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
384 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100385 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386}
387
Gui Jianfeng31299942010-03-15 17:29:09 +0800388static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300389{
390 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
391 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100392 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300393}
394
Gui Jianfeng31299942010-03-15 17:29:09 +0800395static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500396{
397 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
398 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100399 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500400}
401
Gui Jianfeng31299942010-03-15 17:29:09 +0800402static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800403{
404 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
405 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
406}
407
Gui Jianfeng31299942010-03-15 17:29:09 +0800408static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800409{
410 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
411 INTR_INFO_VALID_MASK)) ==
412 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
413}
414
Gui Jianfeng31299942010-03-15 17:29:09 +0800415static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +0800416{
Sheng Yang04547152009-04-01 15:52:31 +0800417 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800418}
419
Gui Jianfeng31299942010-03-15 17:29:09 +0800420static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800421{
Sheng Yang04547152009-04-01 15:52:31 +0800422 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800423}
424
Gui Jianfeng31299942010-03-15 17:29:09 +0800425static inline bool vm_need_tpr_shadow(struct kvm *kvm)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800426{
Sheng Yang04547152009-04-01 15:52:31 +0800427 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800428}
429
Gui Jianfeng31299942010-03-15 17:29:09 +0800430static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800431{
Sheng Yang04547152009-04-01 15:52:31 +0800432 return vmcs_config.cpu_based_exec_ctrl &
433 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800434}
435
Avi Kivity774ead32007-12-26 13:57:04 +0200436static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800437{
Sheng Yang04547152009-04-01 15:52:31 +0800438 return vmcs_config.cpu_based_2nd_exec_ctrl &
439 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
440}
441
442static inline bool cpu_has_vmx_flexpriority(void)
443{
444 return cpu_has_vmx_tpr_shadow() &&
445 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800446}
447
Marcelo Tosattie7997942009-06-11 12:07:40 -0300448static inline bool cpu_has_vmx_ept_execute_only(void)
449{
Gui Jianfeng31299942010-03-15 17:29:09 +0800450 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300451}
452
453static inline bool cpu_has_vmx_eptp_uncacheable(void)
454{
Gui Jianfeng31299942010-03-15 17:29:09 +0800455 return vmx_capability.ept & VMX_EPTP_UC_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300456}
457
458static inline bool cpu_has_vmx_eptp_writeback(void)
459{
Gui Jianfeng31299942010-03-15 17:29:09 +0800460 return vmx_capability.ept & VMX_EPTP_WB_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300461}
462
463static inline bool cpu_has_vmx_ept_2m_page(void)
464{
Gui Jianfeng31299942010-03-15 17:29:09 +0800465 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300466}
467
Sheng Yang878403b2010-01-05 19:02:29 +0800468static inline bool cpu_has_vmx_ept_1g_page(void)
469{
Gui Jianfeng31299942010-03-15 17:29:09 +0800470 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +0800471}
472
Sheng Yang4bc9b982010-06-02 14:05:24 +0800473static inline bool cpu_has_vmx_ept_4levels(void)
474{
475 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
476}
477
Gui Jianfeng31299942010-03-15 17:29:09 +0800478static inline bool cpu_has_vmx_invept_individual_addr(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800479{
Gui Jianfeng31299942010-03-15 17:29:09 +0800480 return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800481}
482
Gui Jianfeng31299942010-03-15 17:29:09 +0800483static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800484{
Gui Jianfeng31299942010-03-15 17:29:09 +0800485 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800486}
487
Gui Jianfeng31299942010-03-15 17:29:09 +0800488static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800489{
Gui Jianfeng31299942010-03-15 17:29:09 +0800490 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800491}
492
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800493static inline bool cpu_has_vmx_invvpid_single(void)
494{
495 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
496}
497
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800498static inline bool cpu_has_vmx_invvpid_global(void)
499{
500 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
501}
502
Gui Jianfeng31299942010-03-15 17:29:09 +0800503static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800504{
Sheng Yang04547152009-04-01 15:52:31 +0800505 return vmcs_config.cpu_based_2nd_exec_ctrl &
506 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800507}
508
Gui Jianfeng31299942010-03-15 17:29:09 +0800509static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700510{
511 return vmcs_config.cpu_based_2nd_exec_ctrl &
512 SECONDARY_EXEC_UNRESTRICTED_GUEST;
513}
514
Gui Jianfeng31299942010-03-15 17:29:09 +0800515static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800516{
517 return vmcs_config.cpu_based_2nd_exec_ctrl &
518 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
519}
520
Gui Jianfeng31299942010-03-15 17:29:09 +0800521static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800522{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800523 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800524}
525
Gui Jianfeng31299942010-03-15 17:29:09 +0800526static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800527{
Sheng Yang04547152009-04-01 15:52:31 +0800528 return vmcs_config.cpu_based_2nd_exec_ctrl &
529 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800530}
531
Gui Jianfeng31299942010-03-15 17:29:09 +0800532static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800533{
534 return vmcs_config.cpu_based_2nd_exec_ctrl &
535 SECONDARY_EXEC_RDTSCP;
536}
537
Gui Jianfeng31299942010-03-15 17:29:09 +0800538static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +0800539{
540 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
541}
542
Sheng Yangf5f48ee2010-06-30 12:25:15 +0800543static inline bool cpu_has_vmx_wbinvd_exit(void)
544{
545 return vmcs_config.cpu_based_2nd_exec_ctrl &
546 SECONDARY_EXEC_WBINVD_EXITING;
547}
548
Sheng Yang04547152009-04-01 15:52:31 +0800549static inline bool report_flexpriority(void)
550{
551 return flexpriority_enabled;
552}
553
Rusty Russell8b9cf982007-07-30 16:31:43 +1000554static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800555{
556 int i;
557
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400558 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300559 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300560 return i;
561 return -1;
562}
563
Sheng Yang2384d2b2008-01-17 15:14:33 +0800564static inline void __invvpid(int ext, u16 vpid, gva_t gva)
565{
566 struct {
567 u64 vpid : 16;
568 u64 rsvd : 48;
569 u64 gva;
570 } operand = { vpid, 0, gva };
571
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300572 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800573 /* CF==1 or ZF==1 --> rc = -1 */
574 "; ja 1f ; ud2 ; 1:"
575 : : "a"(&operand), "c"(ext) : "cc", "memory");
576}
577
Sheng Yang14394422008-04-28 12:24:45 +0800578static inline void __invept(int ext, u64 eptp, gpa_t gpa)
579{
580 struct {
581 u64 eptp, gpa;
582 } operand = {eptp, gpa};
583
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300584 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800585 /* CF==1 or ZF==1 --> rc = -1 */
586 "; ja 1f ; ud2 ; 1:\n"
587 : : "a" (&operand), "c" (ext) : "cc", "memory");
588}
589
Avi Kivity26bb0982009-09-07 11:14:12 +0300590static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300591{
592 int i;
593
Rusty Russell8b9cf982007-07-30 16:31:43 +1000594 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300595 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400596 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000597 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800598}
599
Avi Kivity6aa8b732006-12-10 02:21:36 -0800600static void vmcs_clear(struct vmcs *vmcs)
601{
602 u64 phys_addr = __pa(vmcs);
603 u8 error;
604
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300605 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200606 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607 : "cc", "memory");
608 if (error)
609 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
610 vmcs, phys_addr);
611}
612
Nadav Har'Eld462b812011-05-24 15:26:10 +0300613static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
614{
615 vmcs_clear(loaded_vmcs->vmcs);
616 loaded_vmcs->cpu = -1;
617 loaded_vmcs->launched = 0;
618}
619
Dongxiao Xu7725b892010-05-11 18:29:38 +0800620static void vmcs_load(struct vmcs *vmcs)
621{
622 u64 phys_addr = __pa(vmcs);
623 u8 error;
624
625 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200626 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +0800627 : "cc", "memory");
628 if (error)
629 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
630 vmcs, phys_addr);
631}
632
Nadav Har'Eld462b812011-05-24 15:26:10 +0300633static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800634{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300635 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800636 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800637
Nadav Har'Eld462b812011-05-24 15:26:10 +0300638 if (loaded_vmcs->cpu != cpu)
639 return; /* vcpu migration can race with cpu offline */
640 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800641 per_cpu(current_vmcs, cpu) = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300642 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
643 loaded_vmcs_init(loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800644}
645
Nadav Har'Eld462b812011-05-24 15:26:10 +0300646static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800647{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300648 if (loaded_vmcs->cpu != -1)
649 smp_call_function_single(
650 loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800651}
652
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800653static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800654{
655 if (vmx->vpid == 0)
656 return;
657
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800658 if (cpu_has_vmx_invvpid_single())
659 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800660}
661
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800662static inline void vpid_sync_vcpu_global(void)
663{
664 if (cpu_has_vmx_invvpid_global())
665 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
666}
667
668static inline void vpid_sync_context(struct vcpu_vmx *vmx)
669{
670 if (cpu_has_vmx_invvpid_single())
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800671 vpid_sync_vcpu_single(vmx);
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800672 else
673 vpid_sync_vcpu_global();
674}
675
Sheng Yang14394422008-04-28 12:24:45 +0800676static inline void ept_sync_global(void)
677{
678 if (cpu_has_vmx_invept_global())
679 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
680}
681
682static inline void ept_sync_context(u64 eptp)
683{
Avi Kivity089d0342009-03-23 18:26:32 +0200684 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800685 if (cpu_has_vmx_invept_context())
686 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
687 else
688 ept_sync_global();
689 }
690}
691
692static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
693{
Avi Kivity089d0342009-03-23 18:26:32 +0200694 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800695 if (cpu_has_vmx_invept_individual_addr())
696 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
697 eptp, gpa);
698 else
699 ept_sync_context(eptp);
700 }
701}
702
Avi Kivity96304212011-05-15 10:13:13 -0400703static __always_inline unsigned long vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800704{
Avi Kivity5e520e62011-05-15 10:13:12 -0400705 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800706
Avi Kivity5e520e62011-05-15 10:13:12 -0400707 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
708 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709 return value;
710}
711
Avi Kivity96304212011-05-15 10:13:13 -0400712static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800713{
714 return vmcs_readl(field);
715}
716
Avi Kivity96304212011-05-15 10:13:13 -0400717static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800718{
719 return vmcs_readl(field);
720}
721
Avi Kivity96304212011-05-15 10:13:13 -0400722static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800723{
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800724#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800725 return vmcs_readl(field);
726#else
727 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
728#endif
729}
730
Avi Kivitye52de1b2007-01-05 16:36:56 -0800731static noinline void vmwrite_error(unsigned long field, unsigned long value)
732{
733 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
734 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
735 dump_stack();
736}
737
Avi Kivity6aa8b732006-12-10 02:21:36 -0800738static void vmcs_writel(unsigned long field, unsigned long value)
739{
740 u8 error;
741
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300742 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -0400743 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -0800744 if (unlikely(error))
745 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800746}
747
748static void vmcs_write16(unsigned long field, u16 value)
749{
750 vmcs_writel(field, value);
751}
752
753static void vmcs_write32(unsigned long field, u32 value)
754{
755 vmcs_writel(field, value);
756}
757
758static void vmcs_write64(unsigned long field, u64 value)
759{
Avi Kivity6aa8b732006-12-10 02:21:36 -0800760 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +0300761#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800762 asm volatile ("");
763 vmcs_writel(field+1, value >> 32);
764#endif
765}
766
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300767static void vmcs_clear_bits(unsigned long field, u32 mask)
768{
769 vmcs_writel(field, vmcs_readl(field) & ~mask);
770}
771
772static void vmcs_set_bits(unsigned long field, u32 mask)
773{
774 vmcs_writel(field, vmcs_readl(field) | mask);
775}
776
Avi Kivity2fb92db2011-04-27 19:42:18 +0300777static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
778{
779 vmx->segment_cache.bitmask = 0;
780}
781
782static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
783 unsigned field)
784{
785 bool ret;
786 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
787
788 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
789 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
790 vmx->segment_cache.bitmask = 0;
791 }
792 ret = vmx->segment_cache.bitmask & mask;
793 vmx->segment_cache.bitmask |= mask;
794 return ret;
795}
796
797static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
798{
799 u16 *p = &vmx->segment_cache.seg[seg].selector;
800
801 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
802 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
803 return *p;
804}
805
806static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
807{
808 ulong *p = &vmx->segment_cache.seg[seg].base;
809
810 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
811 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
812 return *p;
813}
814
815static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
816{
817 u32 *p = &vmx->segment_cache.seg[seg].limit;
818
819 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
820 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
821 return *p;
822}
823
824static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
825{
826 u32 *p = &vmx->segment_cache.seg[seg].ar;
827
828 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
829 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
830 return *p;
831}
832
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300833static void update_exception_bitmap(struct kvm_vcpu *vcpu)
834{
835 u32 eb;
836
Jan Kiszkafd7373c2010-01-20 18:20:20 +0100837 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
838 (1u << NM_VECTOR) | (1u << DB_VECTOR);
839 if ((vcpu->guest_debug &
840 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
841 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
842 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300843 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300844 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +0200845 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +0800846 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +0200847 if (vcpu->fpu_active)
848 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +0300849 vmcs_write32(EXCEPTION_BITMAP, eb);
850}
851
Avi Kivity61d2ef22010-04-28 16:40:38 +0300852static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
853{
854 unsigned i;
855 struct msr_autoload *m = &vmx->msr_autoload;
856
Avi Kivity110312c2010-12-21 12:54:20 +0200857 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
858 vmcs_clear_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
859 vmcs_clear_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
860 return;
861 }
862
Avi Kivity61d2ef22010-04-28 16:40:38 +0300863 for (i = 0; i < m->nr; ++i)
864 if (m->guest[i].index == msr)
865 break;
866
867 if (i == m->nr)
868 return;
869 --m->nr;
870 m->guest[i] = m->guest[m->nr];
871 m->host[i] = m->host[m->nr];
872 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
873 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
874}
875
876static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
877 u64 guest_val, u64 host_val)
878{
879 unsigned i;
880 struct msr_autoload *m = &vmx->msr_autoload;
881
Avi Kivity110312c2010-12-21 12:54:20 +0200882 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
883 vmcs_write64(GUEST_IA32_EFER, guest_val);
884 vmcs_write64(HOST_IA32_EFER, host_val);
885 vmcs_set_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
886 vmcs_set_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
887 return;
888 }
889
Avi Kivity61d2ef22010-04-28 16:40:38 +0300890 for (i = 0; i < m->nr; ++i)
891 if (m->guest[i].index == msr)
892 break;
893
894 if (i == m->nr) {
895 ++m->nr;
896 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
897 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
898 }
899
900 m->guest[i].index = msr;
901 m->guest[i].value = guest_val;
902 m->host[i].index = msr;
903 m->host[i].value = host_val;
904}
905
Avi Kivity33ed6322007-05-02 16:54:03 +0300906static void reload_tss(void)
907{
Avi Kivity33ed6322007-05-02 16:54:03 +0300908 /*
909 * VT restores TR but not its size. Useless.
910 */
Avi Kivityd3591922010-07-26 18:32:39 +0300911 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +0200912 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +0300913
Avi Kivityd3591922010-07-26 18:32:39 +0300914 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +0300915 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
916 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +0300917}
918
Avi Kivity92c0d902009-10-29 11:00:16 +0200919static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +0300920{
Roel Kluin3a34a882009-08-04 02:08:45 -0700921 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300922 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +0300923
Avi Kivityf6801df2010-01-21 15:31:50 +0200924 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -0700925
Avi Kivity51c6cf62007-08-29 03:48:05 +0300926 /*
927 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
928 * outside long mode
929 */
930 ignore_bits = EFER_NX | EFER_SCE;
931#ifdef CONFIG_X86_64
932 ignore_bits |= EFER_LMA | EFER_LME;
933 /* SCE is meaningful only in long mode on Intel */
934 if (guest_efer & EFER_LMA)
935 ignore_bits &= ~(u64)EFER_SCE;
936#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +0300937 guest_efer &= ~ignore_bits;
938 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +0300939 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +0200940 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +0300941
942 clear_atomic_switch_msr(vmx, MSR_EFER);
943 /* On ept, can't emulate nx, and must switch nx atomically */
944 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
945 guest_efer = vmx->vcpu.arch.efer;
946 if (!(guest_efer & EFER_LMA))
947 guest_efer &= ~EFER_LME;
948 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
949 return false;
950 }
951
Avi Kivity26bb0982009-09-07 11:14:12 +0300952 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +0300953}
954
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200955static unsigned long segment_base(u16 selector)
956{
Avi Kivityd3591922010-07-26 18:32:39 +0300957 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200958 struct desc_struct *d;
959 unsigned long table_base;
960 unsigned long v;
961
962 if (!(selector & ~3))
963 return 0;
964
Avi Kivityd3591922010-07-26 18:32:39 +0300965 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +0200966
967 if (selector & 4) { /* from ldt */
968 u16 ldt_selector = kvm_read_ldt();
969
970 if (!(ldt_selector & ~3))
971 return 0;
972
973 table_base = segment_base(ldt_selector);
974 }
975 d = (struct desc_struct *)(table_base + (selector & ~7));
976 v = get_desc_base(d);
977#ifdef CONFIG_X86_64
978 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
979 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
980#endif
981 return v;
982}
983
984static inline unsigned long kvm_read_tr_base(void)
985{
986 u16 tr;
987 asm("str %0" : "=g"(tr));
988 return segment_base(tr);
989}
990
Avi Kivity04d2cc72007-09-10 18:10:54 +0300991static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +0300992{
Avi Kivity04d2cc72007-09-10 18:10:54 +0300993 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +0300994 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +0300995
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400996 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +0300997 return;
998
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400999 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001000 /*
1001 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1002 * allow segment selectors with cpl > 0 or ti == 1.
1003 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001004 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001005 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001006 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001007 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001008 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001009 vmx->host_state.fs_reload_needed = 0;
1010 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001011 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001012 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001013 }
Avi Kivity9581d442010-10-19 16:46:55 +02001014 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001015 if (!(vmx->host_state.gs_sel & 7))
1016 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001017 else {
1018 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001019 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001020 }
1021
1022#ifdef CONFIG_X86_64
1023 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1024 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1025#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001026 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1027 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001028#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001029
1030#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001031 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1032 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001033 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001034#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03001035 for (i = 0; i < vmx->save_nmsrs; ++i)
1036 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001037 vmx->guest_msrs[i].data,
1038 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001039}
1040
Avi Kivitya9b21b62008-06-24 11:48:49 +03001041static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001042{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001043 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001044 return;
1045
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001046 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001047 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001048#ifdef CONFIG_X86_64
1049 if (is_long_mode(&vmx->vcpu))
1050 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1051#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001052 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001053 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001054#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02001055 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001056#else
1057 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001058#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001059 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02001060 if (vmx->host_state.fs_reload_needed)
1061 loadsegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001062 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001063#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001064 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001065#endif
Avi Kivity1c11e712010-05-03 16:05:44 +03001066 if (current_thread_info()->status & TS_USEDFPU)
1067 clts();
Avi Kivity3444d7d2010-07-26 18:32:38 +03001068 load_gdt(&__get_cpu_var(host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03001069}
1070
Avi Kivitya9b21b62008-06-24 11:48:49 +03001071static void vmx_load_host_state(struct vcpu_vmx *vmx)
1072{
1073 preempt_disable();
1074 __vmx_load_host_state(vmx);
1075 preempt_enable();
1076}
1077
Avi Kivity6aa8b732006-12-10 02:21:36 -08001078/*
1079 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1080 * vcpu mutex is already taken.
1081 */
Avi Kivity15ad7142007-07-11 18:17:21 +03001082static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001083{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001084 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001085 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001086
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001087 if (!vmm_exclusive)
1088 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001089 else if (vmx->loaded_vmcs->cpu != cpu)
1090 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001091
Nadav Har'Eld462b812011-05-24 15:26:10 +03001092 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1093 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1094 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 }
1096
Nadav Har'Eld462b812011-05-24 15:26:10 +03001097 if (vmx->loaded_vmcs->cpu != cpu) {
Avi Kivityd3591922010-07-26 18:32:39 +03001098 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001099 unsigned long sysenter_esp;
1100
Avi Kivitya8eeb042010-05-10 12:34:53 +03001101 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001102 local_irq_disable();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001103 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1104 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001105 local_irq_enable();
1106
Avi Kivity6aa8b732006-12-10 02:21:36 -08001107 /*
1108 * Linux uses per-cpu TSS and GDT, so set these when switching
1109 * processors.
1110 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001111 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03001112 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001113
1114 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1115 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Nadav Har'Eld462b812011-05-24 15:26:10 +03001116 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001117 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001118}
1119
1120static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1121{
Avi Kivitya9b21b62008-06-24 11:48:49 +03001122 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001123 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001124 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1125 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001126 kvm_cpu_vmxoff();
1127 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001128}
1129
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001130static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1131{
Avi Kivity81231c62010-01-24 16:26:40 +02001132 ulong cr0;
1133
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001134 if (vcpu->fpu_active)
1135 return;
1136 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02001137 cr0 = vmcs_readl(GUEST_CR0);
1138 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1139 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1140 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001141 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001142 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
1143 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001144}
1145
Avi Kivityedcafe32009-12-30 18:07:40 +02001146static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1147
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001148static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1149{
Avi Kivityedcafe32009-12-30 18:07:40 +02001150 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02001151 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001152 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001153 vcpu->arch.cr0_guest_owned_bits = 0;
1154 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
1155 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001156}
1157
Avi Kivity6aa8b732006-12-10 02:21:36 -08001158static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1159{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001160 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001161
Avi Kivity6de12732011-03-07 12:51:22 +02001162 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1163 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1164 rflags = vmcs_readl(GUEST_RFLAGS);
1165 if (to_vmx(vcpu)->rmode.vm86_active) {
1166 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1167 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1168 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1169 }
1170 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001171 }
Avi Kivity6de12732011-03-07 12:51:22 +02001172 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001173}
1174
1175static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1176{
Avi Kivity6de12732011-03-07 12:51:22 +02001177 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity69c73022011-03-07 15:26:44 +02001178 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6de12732011-03-07 12:51:22 +02001179 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001180 if (to_vmx(vcpu)->rmode.vm86_active) {
1181 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001182 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001183 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001184 vmcs_writel(GUEST_RFLAGS, rflags);
1185}
1186
Glauber Costa2809f5d2009-05-12 16:21:05 -04001187static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1188{
1189 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1190 int ret = 0;
1191
1192 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001193 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001194 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001195 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001196
1197 return ret & mask;
1198}
1199
1200static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1201{
1202 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1203 u32 interruptibility = interruptibility_old;
1204
1205 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1206
Jan Kiszka48005f62010-02-19 19:38:07 +01001207 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001208 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001209 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001210 interruptibility |= GUEST_INTR_STATE_STI;
1211
1212 if ((interruptibility != interruptibility_old))
1213 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1214}
1215
Avi Kivity6aa8b732006-12-10 02:21:36 -08001216static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1217{
1218 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001219
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001220 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001221 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001222 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001223
Glauber Costa2809f5d2009-05-12 16:21:05 -04001224 /* skipping an emulated instruction also counts */
1225 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001226}
1227
Anthony Liguori443381a2010-12-06 10:53:38 -06001228static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1229{
1230 /* Ensure that we clear the HLT state in the VMCS. We don't need to
1231 * explicitly skip the instruction because if the HLT state is set, then
1232 * the instruction is already executing and RIP has already been
1233 * advanced. */
1234 if (!yield_on_hlt &&
1235 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1236 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1237}
1238
Avi Kivity298101d2007-11-25 13:41:11 +02001239static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02001240 bool has_error_code, u32 error_code,
1241 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02001242{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001243 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001244 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001245
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001246 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001247 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001248 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1249 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001250
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001251 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001252 int inc_eip = 0;
1253 if (kvm_exception_is_soft(nr))
1254 inc_eip = vcpu->arch.event_exit_inst_len;
1255 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001256 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001257 return;
1258 }
1259
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001260 if (kvm_exception_is_soft(nr)) {
1261 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1262 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001263 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1264 } else
1265 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1266
1267 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Anthony Liguori443381a2010-12-06 10:53:38 -06001268 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001269}
1270
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001271static bool vmx_rdtscp_supported(void)
1272{
1273 return cpu_has_vmx_rdtscp();
1274}
1275
Avi Kivity6aa8b732006-12-10 02:21:36 -08001276/*
Eddie Donga75beee2007-05-17 18:55:15 +03001277 * Swap MSR entry in host/guest MSR entry array.
1278 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001279static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001280{
Avi Kivity26bb0982009-09-07 11:14:12 +03001281 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001282
1283 tmp = vmx->guest_msrs[to];
1284 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1285 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001286}
1287
1288/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001289 * Set up the vmcs to automatically save and restore system
1290 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1291 * mode, as fiddling with msrs is very expensive.
1292 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001293static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001294{
Avi Kivity26bb0982009-09-07 11:14:12 +03001295 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +02001296 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +03001297
Avi Kivity33f9c502008-02-27 16:06:57 +02001298 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +03001299 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001300#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001301 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10001302 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03001303 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001304 move_msr_up(vmx, index, save_nmsrs++);
1305 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001306 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001307 move_msr_up(vmx, index, save_nmsrs++);
1308 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001309 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001310 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001311 index = __find_msr_index(vmx, MSR_TSC_AUX);
1312 if (index >= 0 && vmx->rdtscp_enabled)
1313 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03001314 /*
Brian Gerst8c065852010-07-17 09:03:26 -04001315 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03001316 * if efer.sce is enabled.
1317 */
Brian Gerst8c065852010-07-17 09:03:26 -04001318 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02001319 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10001320 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001321 }
Eddie Donga75beee2007-05-17 18:55:15 +03001322#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001323 index = __find_msr_index(vmx, MSR_EFER);
1324 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001325 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001326
Avi Kivity26bb0982009-09-07 11:14:12 +03001327 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02001328
1329 if (cpu_has_vmx_msr_bitmap()) {
1330 if (is_long_mode(&vmx->vcpu))
1331 msr_bitmap = vmx_msr_bitmap_longmode;
1332 else
1333 msr_bitmap = vmx_msr_bitmap_legacy;
1334
1335 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
1336 }
Avi Kivitye38aea32007-04-19 13:22:48 +03001337}
1338
1339/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340 * reads and returns guest's timestamp counter "register"
1341 * guest_tsc = host_tsc + tsc_offset -- 21.3
1342 */
1343static u64 guest_read_tsc(void)
1344{
1345 u64 host_tsc, tsc_offset;
1346
1347 rdtscll(host_tsc);
1348 tsc_offset = vmcs_read64(TSC_OFFSET);
1349 return host_tsc + tsc_offset;
1350}
1351
1352/*
Joerg Roedel4051b182011-03-25 09:44:49 +01001353 * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ
1354 * ioctl. In this case the call-back should update internal vmx state to make
1355 * the changes effective.
1356 */
1357static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
1358{
1359 /* Nothing to do here */
1360}
1361
1362/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10001363 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08001364 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10001365static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001366{
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001367 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001368}
1369
Zachary Amsdene48672f2010-08-19 22:07:23 -10001370static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
1371{
1372 u64 offset = vmcs_read64(TSC_OFFSET);
1373 vmcs_write64(TSC_OFFSET, offset + adjustment);
1374}
1375
Joerg Roedel857e4092011-03-25 09:44:50 +01001376static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1377{
1378 return target_tsc - native_read_tsc();
1379}
1380
Nadav Har'El801d3422011-05-25 23:02:23 +03001381static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
1382{
1383 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
1384 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
1385}
1386
1387/*
1388 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1389 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1390 * all guests if the "nested" module option is off, and can also be disabled
1391 * for a single guest by disabling its VMX cpuid bit.
1392 */
1393static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
1394{
1395 return nested && guest_cpuid_has_vmx(vcpu);
1396}
1397
Avi Kivity6aa8b732006-12-10 02:21:36 -08001398/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001399 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
1400 * returned for the various VMX controls MSRs when nested VMX is enabled.
1401 * The same values should also be used to verify that vmcs12 control fields are
1402 * valid during nested entry from L1 to L2.
1403 * Each of these control msrs has a low and high 32-bit half: A low bit is on
1404 * if the corresponding bit in the (32-bit) control field *must* be on, and a
1405 * bit in the high half is on if the corresponding bit in the control field
1406 * may be on. See also vmx_control_verify().
1407 * TODO: allow these variables to be modified (downgraded) by module options
1408 * or other means.
1409 */
1410static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
1411static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
1412static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
1413static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
1414static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
1415static __init void nested_vmx_setup_ctls_msrs(void)
1416{
1417 /*
1418 * Note that as a general rule, the high half of the MSRs (bits in
1419 * the control fields which may be 1) should be initialized by the
1420 * intersection of the underlying hardware's MSR (i.e., features which
1421 * can be supported) and the list of features we want to expose -
1422 * because they are known to be properly supported in our code.
1423 * Also, usually, the low half of the MSRs (bits which must be 1) can
1424 * be set to 0, meaning that L1 may turn off any of these bits. The
1425 * reason is that if one of these bits is necessary, it will appear
1426 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
1427 * fields of vmcs01 and vmcs02, will turn these bits off - and
1428 * nested_vmx_exit_handled() will not pass related exits to L1.
1429 * These rules have exceptions below.
1430 */
1431
1432 /* pin-based controls */
1433 /*
1434 * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is
1435 * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR.
1436 */
1437 nested_vmx_pinbased_ctls_low = 0x16 ;
1438 nested_vmx_pinbased_ctls_high = 0x16 |
1439 PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
1440 PIN_BASED_VIRTUAL_NMIS;
1441
1442 /* exit controls */
1443 nested_vmx_exit_ctls_low = 0;
1444#ifdef CONFIG_X86_64
1445 nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE;
1446#else
1447 nested_vmx_exit_ctls_high = 0;
1448#endif
1449
1450 /* entry controls */
1451 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
1452 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
1453 nested_vmx_entry_ctls_low = 0;
1454 nested_vmx_entry_ctls_high &=
1455 VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE;
1456
1457 /* cpu-based controls */
1458 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
1459 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
1460 nested_vmx_procbased_ctls_low = 0;
1461 nested_vmx_procbased_ctls_high &=
1462 CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING |
1463 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
1464 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
1465 CPU_BASED_CR3_STORE_EXITING |
1466#ifdef CONFIG_X86_64
1467 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
1468#endif
1469 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
1470 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
1471 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1472 /*
1473 * We can allow some features even when not supported by the
1474 * hardware. For example, L1 can specify an MSR bitmap - and we
1475 * can use it to avoid exits to L1 - even when L0 runs L2
1476 * without MSR bitmaps.
1477 */
1478 nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS;
1479
1480 /* secondary cpu-based controls */
1481 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
1482 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
1483 nested_vmx_secondary_ctls_low = 0;
1484 nested_vmx_secondary_ctls_high &=
1485 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1486}
1487
1488static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
1489{
1490 /*
1491 * Bits 0 in high must be 0, and bits 1 in low must be 1.
1492 */
1493 return ((control & high) | low) == control;
1494}
1495
1496static inline u64 vmx_control_msr(u32 low, u32 high)
1497{
1498 return low | ((u64)high << 32);
1499}
1500
1501/*
1502 * If we allow our guest to use VMX instructions (i.e., nested VMX), we should
1503 * also let it use VMX-specific MSRs.
1504 * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a
1505 * VMX-specific MSR, or 0 when we haven't (and the caller should handle it
1506 * like all other MSRs).
1507 */
1508static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1509{
1510 if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC &&
1511 msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) {
1512 /*
1513 * According to the spec, processors which do not support VMX
1514 * should throw a #GP(0) when VMX capability MSRs are read.
1515 */
1516 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
1517 return 1;
1518 }
1519
1520 switch (msr_index) {
1521 case MSR_IA32_FEATURE_CONTROL:
1522 *pdata = 0;
1523 break;
1524 case MSR_IA32_VMX_BASIC:
1525 /*
1526 * This MSR reports some information about VMX support. We
1527 * should return information about the VMX we emulate for the
1528 * guest, and the VMCS structure we give it - not about the
1529 * VMX support of the underlying hardware.
1530 */
1531 *pdata = VMCS12_REVISION |
1532 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
1533 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
1534 break;
1535 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1536 case MSR_IA32_VMX_PINBASED_CTLS:
1537 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
1538 nested_vmx_pinbased_ctls_high);
1539 break;
1540 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1541 case MSR_IA32_VMX_PROCBASED_CTLS:
1542 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
1543 nested_vmx_procbased_ctls_high);
1544 break;
1545 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1546 case MSR_IA32_VMX_EXIT_CTLS:
1547 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
1548 nested_vmx_exit_ctls_high);
1549 break;
1550 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1551 case MSR_IA32_VMX_ENTRY_CTLS:
1552 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
1553 nested_vmx_entry_ctls_high);
1554 break;
1555 case MSR_IA32_VMX_MISC:
1556 *pdata = 0;
1557 break;
1558 /*
1559 * These MSRs specify bits which the guest must keep fixed (on or off)
1560 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
1561 * We picked the standard core2 setting.
1562 */
1563#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
1564#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
1565 case MSR_IA32_VMX_CR0_FIXED0:
1566 *pdata = VMXON_CR0_ALWAYSON;
1567 break;
1568 case MSR_IA32_VMX_CR0_FIXED1:
1569 *pdata = -1ULL;
1570 break;
1571 case MSR_IA32_VMX_CR4_FIXED0:
1572 *pdata = VMXON_CR4_ALWAYSON;
1573 break;
1574 case MSR_IA32_VMX_CR4_FIXED1:
1575 *pdata = -1ULL;
1576 break;
1577 case MSR_IA32_VMX_VMCS_ENUM:
1578 *pdata = 0x1f;
1579 break;
1580 case MSR_IA32_VMX_PROCBASED_CTLS2:
1581 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
1582 nested_vmx_secondary_ctls_high);
1583 break;
1584 case MSR_IA32_VMX_EPT_VPID_CAP:
1585 /* Currently, no nested ept or nested vpid */
1586 *pdata = 0;
1587 break;
1588 default:
1589 return 0;
1590 }
1591
1592 return 1;
1593}
1594
1595static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1596{
1597 if (!nested_vmx_allowed(vcpu))
1598 return 0;
1599
1600 if (msr_index == MSR_IA32_FEATURE_CONTROL)
1601 /* TODO: the right thing. */
1602 return 1;
1603 /*
1604 * No need to treat VMX capability MSRs specially: If we don't handle
1605 * them, handle_wrmsr will #GP(0), which is correct (they are readonly)
1606 */
1607 return 0;
1608}
1609
1610/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001611 * Reads an msr value (of 'msr_index') into 'pdata'.
1612 * Returns 0 on success, non-0 otherwise.
1613 * Assumes vcpu_load() was already called.
1614 */
1615static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1616{
1617 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001618 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001619
1620 if (!pdata) {
1621 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1622 return -EINVAL;
1623 }
1624
1625 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001626#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627 case MSR_FS_BASE:
1628 data = vmcs_readl(GUEST_FS_BASE);
1629 break;
1630 case MSR_GS_BASE:
1631 data = vmcs_readl(GUEST_GS_BASE);
1632 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001633 case MSR_KERNEL_GS_BASE:
1634 vmx_load_host_state(to_vmx(vcpu));
1635 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1636 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001637#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001638 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001639 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301640 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001641 data = guest_read_tsc();
1642 break;
1643 case MSR_IA32_SYSENTER_CS:
1644 data = vmcs_read32(GUEST_SYSENTER_CS);
1645 break;
1646 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001647 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648 break;
1649 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001650 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001652 case MSR_TSC_AUX:
1653 if (!to_vmx(vcpu)->rdtscp_enabled)
1654 return 1;
1655 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001657 vmx_load_host_state(to_vmx(vcpu));
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001658 if (vmx_get_vmx_msr(vcpu, msr_index, pdata))
1659 return 0;
Rusty Russell8b9cf982007-07-30 16:31:43 +10001660 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001661 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001662 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001663 data = msr->data;
1664 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001665 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001666 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667 }
1668
1669 *pdata = data;
1670 return 0;
1671}
1672
1673/*
1674 * Writes msr value into into the appropriate "register".
1675 * Returns 0 on success, non-0 otherwise.
1676 * Assumes vcpu_load() was already called.
1677 */
1678static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1679{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001680 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001681 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001682 int ret = 0;
1683
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001685 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001686 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001687 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001688 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001689#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001690 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001691 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001692 vmcs_writel(GUEST_FS_BASE, data);
1693 break;
1694 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001695 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696 vmcs_writel(GUEST_GS_BASE, data);
1697 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001698 case MSR_KERNEL_GS_BASE:
1699 vmx_load_host_state(vmx);
1700 vmx->msr_guest_kernel_gs_base = data;
1701 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001702#endif
1703 case MSR_IA32_SYSENTER_CS:
1704 vmcs_write32(GUEST_SYSENTER_CS, data);
1705 break;
1706 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001707 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001708 break;
1709 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001710 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001711 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301712 case MSR_IA32_TSC:
Zachary Amsden99e3e302010-08-19 22:07:17 -10001713 kvm_write_tsc(vcpu, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001714 break;
Sheng Yang468d4722008-10-09 16:01:55 +08001715 case MSR_IA32_CR_PAT:
1716 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
1717 vmcs_write64(GUEST_IA32_PAT, data);
1718 vcpu->arch.pat = data;
1719 break;
1720 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001721 ret = kvm_set_msr_common(vcpu, msr_index, data);
1722 break;
1723 case MSR_TSC_AUX:
1724 if (!vmx->rdtscp_enabled)
1725 return 1;
1726 /* Check reserved bit, higher 32 bits should be zero */
1727 if ((data >> 32) != 0)
1728 return 1;
1729 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001730 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001731 if (vmx_set_vmx_msr(vcpu, msr_index, data))
1732 break;
Rusty Russell8b9cf982007-07-30 16:31:43 +10001733 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001734 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001735 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001736 msr->data = data;
1737 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001738 }
Eddie Dong2cc51562007-05-21 07:28:09 +03001739 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001740 }
1741
Eddie Dong2cc51562007-05-21 07:28:09 +03001742 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001743}
1744
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001745static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001746{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001747 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
1748 switch (reg) {
1749 case VCPU_REGS_RSP:
1750 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
1751 break;
1752 case VCPU_REGS_RIP:
1753 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
1754 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001755 case VCPU_EXREG_PDPTR:
1756 if (enable_ept)
1757 ept_save_pdptrs(vcpu);
1758 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001759 default:
1760 break;
1761 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001762}
1763
Jan Kiszka355be0b2009-10-03 00:31:21 +02001764static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001765{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01001766 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
1767 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
1768 else
1769 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
1770
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001771 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001772}
1773
1774static __init int cpu_has_kvm_support(void)
1775{
Eduardo Habkost6210e372008-11-17 19:03:16 -02001776 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777}
1778
1779static __init int vmx_disabled_by_bios(void)
1780{
1781 u64 msr;
1782
1783 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04001784 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08001785 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04001786 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
1787 && tboot_enabled())
1788 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08001789 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04001790 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08001791 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08001792 && !tboot_enabled()) {
1793 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08001794 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04001795 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08001796 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08001797 /* launched w/o TXT and VMX disabled */
1798 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
1799 && !tboot_enabled())
1800 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04001801 }
1802
1803 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001804}
1805
Dongxiao Xu7725b892010-05-11 18:29:38 +08001806static void kvm_cpu_vmxon(u64 addr)
1807{
1808 asm volatile (ASM_VMX_VMXON_RAX
1809 : : "a"(&addr), "m"(addr)
1810 : "memory", "cc");
1811}
1812
Alexander Graf10474ae2009-09-15 11:37:46 +02001813static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001814{
1815 int cpu = raw_smp_processor_id();
1816 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04001817 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001818
Alexander Graf10474ae2009-09-15 11:37:46 +02001819 if (read_cr4() & X86_CR4_VMXE)
1820 return -EBUSY;
1821
Nadav Har'Eld462b812011-05-24 15:26:10 +03001822 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001823 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04001824
1825 test_bits = FEATURE_CONTROL_LOCKED;
1826 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
1827 if (tboot_enabled())
1828 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
1829
1830 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001831 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04001832 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
1833 }
Rusty Russell66aee912007-07-17 23:34:16 +10001834 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Alexander Graf10474ae2009-09-15 11:37:46 +02001835
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001836 if (vmm_exclusive) {
1837 kvm_cpu_vmxon(phys_addr);
1838 ept_sync_global();
1839 }
Alexander Graf10474ae2009-09-15 11:37:46 +02001840
Avi Kivity3444d7d2010-07-26 18:32:38 +03001841 store_gdt(&__get_cpu_var(host_gdt));
1842
Alexander Graf10474ae2009-09-15 11:37:46 +02001843 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001844}
1845
Nadav Har'Eld462b812011-05-24 15:26:10 +03001846static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03001847{
1848 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001849 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03001850
Nadav Har'Eld462b812011-05-24 15:26:10 +03001851 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
1852 loaded_vmcss_on_cpu_link)
1853 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03001854}
1855
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001856
1857/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
1858 * tricks.
1859 */
1860static void kvm_cpu_vmxoff(void)
1861{
1862 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02001863}
1864
Avi Kivity6aa8b732006-12-10 02:21:36 -08001865static void hardware_disable(void *garbage)
1866{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001867 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001868 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001869 kvm_cpu_vmxoff();
1870 }
Dongxiao Xu7725b892010-05-11 18:29:38 +08001871 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001872}
1873
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001874static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04001875 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001876{
1877 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001878 u32 ctl = ctl_min | ctl_opt;
1879
1880 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1881
1882 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
1883 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
1884
1885 /* Ensure minimum (required) set of control bits are supported. */
1886 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001887 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001888
1889 *result = ctl;
1890 return 0;
1891}
1892
Avi Kivity110312c2010-12-21 12:54:20 +02001893static __init bool allow_1_setting(u32 msr, u32 ctl)
1894{
1895 u32 vmx_msr_low, vmx_msr_high;
1896
1897 rdmsr(msr, vmx_msr_low, vmx_msr_high);
1898 return vmx_msr_high & ctl;
1899}
1900
Yang, Sheng002c7f72007-07-31 14:23:01 +03001901static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001902{
1903 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08001904 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001905 u32 _pin_based_exec_control = 0;
1906 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001907 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001908 u32 _vmexit_control = 0;
1909 u32 _vmentry_control = 0;
1910
1911 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08001912 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001913 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
1914 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001915 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001916
Anthony Liguori443381a2010-12-06 10:53:38 -06001917 min =
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001918#ifdef CONFIG_X86_64
1919 CPU_BASED_CR8_LOAD_EXITING |
1920 CPU_BASED_CR8_STORE_EXITING |
1921#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001922 CPU_BASED_CR3_LOAD_EXITING |
1923 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001924 CPU_BASED_USE_IO_BITMAPS |
1925 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001926 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08001927 CPU_BASED_MWAIT_EXITING |
1928 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03001929 CPU_BASED_INVLPG_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06001930
1931 if (yield_on_hlt)
1932 min |= CPU_BASED_HLT_EXITING;
1933
Sheng Yangf78e0e22007-10-29 09:40:42 +08001934 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08001935 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08001936 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001937 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
1938 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001939 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001940#ifdef CONFIG_X86_64
1941 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
1942 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
1943 ~CPU_BASED_CR8_STORE_EXITING;
1944#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08001945 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08001946 min2 = 0;
1947 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08001948 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08001949 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001950 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001951 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001952 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
1953 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08001954 if (adjust_vmx_controls(min2, opt2,
1955 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08001956 &_cpu_based_2nd_exec_control) < 0)
1957 return -EIO;
1958 }
1959#ifndef CONFIG_X86_64
1960 if (!(_cpu_based_2nd_exec_control &
1961 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
1962 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
1963#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08001964 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03001965 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
1966 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03001967 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
1968 CPU_BASED_CR3_STORE_EXITING |
1969 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08001970 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
1971 vmx_capability.ept, vmx_capability.vpid);
1972 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001973
1974 min = 0;
1975#ifdef CONFIG_X86_64
1976 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
1977#endif
Sheng Yang468d4722008-10-09 16:01:55 +08001978 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001979 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
1980 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001981 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001982
Sheng Yang468d4722008-10-09 16:01:55 +08001983 min = 0;
1984 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001985 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
1986 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001987 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001988
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08001989 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001990
1991 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
1992 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03001993 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001994
1995#ifdef CONFIG_X86_64
1996 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
1997 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03001998 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03001999#endif
2000
2001 /* Require Write-Back (WB) memory type for VMCS accesses. */
2002 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002003 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002004
Yang, Sheng002c7f72007-07-31 14:23:01 +03002005 vmcs_conf->size = vmx_msr_high & 0x1fff;
2006 vmcs_conf->order = get_order(vmcs_config.size);
2007 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002008
Yang, Sheng002c7f72007-07-31 14:23:01 +03002009 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2010 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002011 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002012 vmcs_conf->vmexit_ctrl = _vmexit_control;
2013 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002014
Avi Kivity110312c2010-12-21 12:54:20 +02002015 cpu_has_load_ia32_efer =
2016 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2017 VM_ENTRY_LOAD_IA32_EFER)
2018 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2019 VM_EXIT_LOAD_IA32_EFER);
2020
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002021 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002022}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002023
2024static struct vmcs *alloc_vmcs_cpu(int cpu)
2025{
2026 int node = cpu_to_node(cpu);
2027 struct page *pages;
2028 struct vmcs *vmcs;
2029
Mel Gorman6484eb32009-06-16 15:31:54 -07002030 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002031 if (!pages)
2032 return NULL;
2033 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002034 memset(vmcs, 0, vmcs_config.size);
2035 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002036 return vmcs;
2037}
2038
2039static struct vmcs *alloc_vmcs(void)
2040{
Ingo Molnard3b2c332007-01-05 16:36:23 -08002041 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08002042}
2043
2044static void free_vmcs(struct vmcs *vmcs)
2045{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03002046 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002047}
2048
Nadav Har'Eld462b812011-05-24 15:26:10 +03002049/*
2050 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2051 */
2052static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
2053{
2054 if (!loaded_vmcs->vmcs)
2055 return;
2056 loaded_vmcs_clear(loaded_vmcs);
2057 free_vmcs(loaded_vmcs->vmcs);
2058 loaded_vmcs->vmcs = NULL;
2059}
2060
Sam Ravnborg39959582007-06-01 00:47:13 -07002061static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002062{
2063 int cpu;
2064
Zachary Amsden3230bb42009-09-29 11:38:37 -10002065 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002066 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002067 per_cpu(vmxarea, cpu) = NULL;
2068 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002069}
2070
Avi Kivity6aa8b732006-12-10 02:21:36 -08002071static __init int alloc_kvm_area(void)
2072{
2073 int cpu;
2074
Zachary Amsden3230bb42009-09-29 11:38:37 -10002075 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002076 struct vmcs *vmcs;
2077
2078 vmcs = alloc_vmcs_cpu(cpu);
2079 if (!vmcs) {
2080 free_kvm_area();
2081 return -ENOMEM;
2082 }
2083
2084 per_cpu(vmxarea, cpu) = vmcs;
2085 }
2086 return 0;
2087}
2088
2089static __init int hardware_setup(void)
2090{
Yang, Sheng002c7f72007-07-31 14:23:01 +03002091 if (setup_vmcs_config(&vmcs_config) < 0)
2092 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01002093
2094 if (boot_cpu_has(X86_FEATURE_NX))
2095 kvm_enable_efer_bits(EFER_NX);
2096
Sheng Yang93ba03c2009-04-01 15:52:32 +08002097 if (!cpu_has_vmx_vpid())
2098 enable_vpid = 0;
2099
Sheng Yang4bc9b982010-06-02 14:05:24 +08002100 if (!cpu_has_vmx_ept() ||
2101 !cpu_has_vmx_ept_4levels()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08002102 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002103 enable_unrestricted_guest = 0;
2104 }
2105
2106 if (!cpu_has_vmx_unrestricted_guest())
2107 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08002108
2109 if (!cpu_has_vmx_flexpriority())
2110 flexpriority_enabled = 0;
2111
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002112 if (!cpu_has_vmx_tpr_shadow())
2113 kvm_x86_ops->update_cr8_intercept = NULL;
2114
Marcelo Tosatti54dee992009-06-11 12:07:44 -03002115 if (enable_ept && !cpu_has_vmx_ept_2m_page())
2116 kvm_disable_largepages();
2117
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002118 if (!cpu_has_vmx_ple())
2119 ple_gap = 0;
2120
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002121 if (nested)
2122 nested_vmx_setup_ctls_msrs();
2123
Avi Kivity6aa8b732006-12-10 02:21:36 -08002124 return alloc_kvm_area();
2125}
2126
2127static __exit void hardware_unsetup(void)
2128{
2129 free_kvm_area();
2130}
2131
Avi Kivity6aa8b732006-12-10 02:21:36 -08002132static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
2133{
2134 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2135
Avi Kivity6af11b92007-03-19 13:18:10 +02002136 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 vmcs_write16(sf->selector, save->selector);
2138 vmcs_writel(sf->base, save->base);
2139 vmcs_write32(sf->limit, save->limit);
2140 vmcs_write32(sf->ar_bytes, save->ar);
2141 } else {
2142 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
2143 << AR_DPL_SHIFT;
2144 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
2145 }
2146}
2147
2148static void enter_pmode(struct kvm_vcpu *vcpu)
2149{
2150 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002151 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002153 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002154 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002155
Avi Kivity2fb92db2011-04-27 19:42:18 +03002156 vmx_segment_cache_clear(vmx);
2157
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002158 vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002159 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
2160 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
2161 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002162
2163 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002164 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2165 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166 vmcs_writel(GUEST_RFLAGS, flags);
2167
Rusty Russell66aee912007-07-17 23:34:16 +10002168 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2169 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002170
2171 update_exception_bitmap(vcpu);
2172
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002173 if (emulate_invalid_guest_state)
2174 return;
2175
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002176 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
2177 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
2178 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
2179 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180
Avi Kivity2fb92db2011-04-27 19:42:18 +03002181 vmx_segment_cache_clear(vmx);
2182
Avi Kivity6aa8b732006-12-10 02:21:36 -08002183 vmcs_write16(GUEST_SS_SELECTOR, 0);
2184 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
2185
2186 vmcs_write16(GUEST_CS_SELECTOR,
2187 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
2188 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2189}
2190
Mike Dayd77c26f2007-10-08 09:02:08 -04002191static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002192{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002193 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002194 struct kvm_memslots *slots;
2195 gfn_t base_gfn;
2196
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002197 slots = kvm_memslots(kvm);
Avi Kivityf495c6e2010-06-10 17:21:29 +03002198 base_gfn = slots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02002199 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02002200 return base_gfn << PAGE_SHIFT;
2201 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002202 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002203}
2204
2205static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
2206{
2207 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2208
2209 save->selector = vmcs_read16(sf->selector);
2210 save->base = vmcs_readl(sf->base);
2211 save->limit = vmcs_read32(sf->limit);
2212 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01002213 vmcs_write16(sf->selector, save->base >> 4);
Gleb Natapov444e8632010-12-27 17:25:04 +02002214 vmcs_write32(sf->base, save->base & 0xffff0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002215 vmcs_write32(sf->limit, 0xffff);
2216 vmcs_write32(sf->ar_bytes, 0xf3);
Gleb Natapov444e8632010-12-27 17:25:04 +02002217 if (save->base & 0xf)
2218 printk_once(KERN_WARNING "kvm: segment base is not paragraph"
2219 " aligned when entering protected mode (seg=%d)",
2220 seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221}
2222
2223static void enter_rmode(struct kvm_vcpu *vcpu)
2224{
2225 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002226 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002227
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002228 if (enable_unrestricted_guest)
2229 return;
2230
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002231 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002232 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002233
Gleb Natapov776e58e2011-03-13 12:34:27 +02002234 /*
2235 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
2236 * vcpu. Call it here with phys address pointing 16M below 4G.
2237 */
2238 if (!vcpu->kvm->arch.tss_addr) {
2239 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2240 "called before entering vcpu\n");
2241 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
2242 vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
2243 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2244 }
2245
Avi Kivity2fb92db2011-04-27 19:42:18 +03002246 vmx_segment_cache_clear(vmx);
2247
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002248 vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002249 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002250 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
2251
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002252 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002253 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
2254
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002255 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002256 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2257
2258 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002259 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002261 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002262
2263 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002264 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002265 update_exception_bitmap(vcpu);
2266
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002267 if (emulate_invalid_guest_state)
2268 goto continue_rmode;
2269
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
2271 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
2272 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
2273
2274 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08002275 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02002276 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
2277 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002278 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
2279
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002280 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
2281 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
2282 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
2283 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03002284
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002285continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08002286 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287}
2288
Amit Shah401d10d2009-02-20 22:53:37 +05302289static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
2290{
2291 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002292 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2293
2294 if (!msr)
2295 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302296
Avi Kivity44ea2b12009-09-06 15:55:37 +03002297 /*
2298 * Force kernel_gs_base reloading before EFER changes, as control
2299 * of this msr depends on is_long_mode().
2300 */
2301 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02002302 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302303 if (efer & EFER_LMA) {
2304 vmcs_write32(VM_ENTRY_CONTROLS,
2305 vmcs_read32(VM_ENTRY_CONTROLS) |
2306 VM_ENTRY_IA32E_MODE);
2307 msr->data = efer;
2308 } else {
2309 vmcs_write32(VM_ENTRY_CONTROLS,
2310 vmcs_read32(VM_ENTRY_CONTROLS) &
2311 ~VM_ENTRY_IA32E_MODE);
2312
2313 msr->data = efer & ~EFER_LME;
2314 }
2315 setup_msrs(vmx);
2316}
2317
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002318#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002319
2320static void enter_lmode(struct kvm_vcpu *vcpu)
2321{
2322 u32 guest_tr_ar;
2323
Avi Kivity2fb92db2011-04-27 19:42:18 +03002324 vmx_segment_cache_clear(to_vmx(vcpu));
2325
Avi Kivity6aa8b732006-12-10 02:21:36 -08002326 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
2327 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
2328 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002329 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002330 vmcs_write32(GUEST_TR_AR_BYTES,
2331 (guest_tr_ar & ~AR_TYPE_MASK)
2332 | AR_TYPE_BUSY_64_TSS);
2333 }
Avi Kivityda38f432010-07-06 11:30:49 +03002334 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335}
2336
2337static void exit_lmode(struct kvm_vcpu *vcpu)
2338{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002339 vmcs_write32(VM_ENTRY_CONTROLS,
2340 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03002341 & ~VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002342 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343}
2344
2345#endif
2346
Sheng Yang2384d2b2008-01-17 15:14:33 +08002347static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2348{
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002349 vpid_sync_context(to_vmx(vcpu));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002350 if (enable_ept) {
2351 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2352 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08002353 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002354 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08002355}
2356
Avi Kivitye8467fd2009-12-29 18:43:06 +02002357static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2358{
2359 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2360
2361 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2362 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2363}
2364
Avi Kivityaff48ba2010-12-05 18:56:11 +02002365static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2366{
2367 if (enable_ept && is_paging(vcpu))
2368 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2369 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2370}
2371
Anthony Liguori25c4c272007-04-27 09:29:21 +03002372static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002373{
Avi Kivityfc78f512009-12-07 12:16:48 +02002374 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2375
2376 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2377 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002378}
2379
Sheng Yang14394422008-04-28 12:24:45 +08002380static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2381{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002382 if (!test_bit(VCPU_EXREG_PDPTR,
2383 (unsigned long *)&vcpu->arch.regs_dirty))
2384 return;
2385
Sheng Yang14394422008-04-28 12:24:45 +08002386 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002387 vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]);
2388 vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]);
2389 vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]);
2390 vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002391 }
2392}
2393
Avi Kivity8f5d5492009-05-31 18:41:29 +03002394static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
2395{
2396 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002397 vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2398 vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2399 vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2400 vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002401 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002402
2403 __set_bit(VCPU_EXREG_PDPTR,
2404 (unsigned long *)&vcpu->arch.regs_avail);
2405 __set_bit(VCPU_EXREG_PDPTR,
2406 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002407}
2408
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002409static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08002410
2411static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2412 unsigned long cr0,
2413 struct kvm_vcpu *vcpu)
2414{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002415 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2416 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002417 if (!(cr0 & X86_CR0_PG)) {
2418 /* From paging/starting to nonpaging */
2419 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002420 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002421 (CPU_BASED_CR3_LOAD_EXITING |
2422 CPU_BASED_CR3_STORE_EXITING));
2423 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002424 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002425 } else if (!is_paging(vcpu)) {
2426 /* From nonpaging to paging */
2427 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002428 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002429 ~(CPU_BASED_CR3_LOAD_EXITING |
2430 CPU_BASED_CR3_STORE_EXITING));
2431 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002432 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002433 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002434
2435 if (!(cr0 & X86_CR0_WP))
2436 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002437}
2438
Avi Kivity6aa8b732006-12-10 02:21:36 -08002439static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2440{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002441 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002442 unsigned long hw_cr0;
2443
2444 if (enable_unrestricted_guest)
2445 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
2446 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
2447 else
2448 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002449
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002450 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002451 enter_pmode(vcpu);
2452
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002453 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002454 enter_rmode(vcpu);
2455
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002456#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002457 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10002458 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002459 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10002460 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002461 exit_lmode(vcpu);
2462 }
2463#endif
2464
Avi Kivity089d0342009-03-23 18:26:32 +02002465 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002466 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2467
Avi Kivity02daab22009-12-30 12:40:26 +02002468 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02002469 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02002470
Avi Kivity6aa8b732006-12-10 02:21:36 -08002471 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002472 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002473 vcpu->arch.cr0 = cr0;
Avi Kivity69c73022011-03-07 15:26:44 +02002474 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002475}
2476
Sheng Yang14394422008-04-28 12:24:45 +08002477static u64 construct_eptp(unsigned long root_hpa)
2478{
2479 u64 eptp;
2480
2481 /* TODO write the value reading from MSR */
2482 eptp = VMX_EPT_DEFAULT_MT |
2483 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
2484 eptp |= (root_hpa & PAGE_MASK);
2485
2486 return eptp;
2487}
2488
Avi Kivity6aa8b732006-12-10 02:21:36 -08002489static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
2490{
Sheng Yang14394422008-04-28 12:24:45 +08002491 unsigned long guest_cr3;
2492 u64 eptp;
2493
2494 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02002495 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08002496 eptp = construct_eptp(cr3);
2497 vmcs_write64(EPT_POINTER, eptp);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002498 guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) :
Sheng Yangb927a3c2009-07-21 10:42:48 +08002499 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02002500 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002501 }
2502
Sheng Yang2384d2b2008-01-17 15:14:33 +08002503 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002504 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002505}
2506
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002507static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002509 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08002510 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
2511
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002512 if (cr4 & X86_CR4_VMXE) {
2513 /*
2514 * To use VMXON (and later other VMX instructions), a guest
2515 * must first be able to turn on cr4.VMXE (see handle_vmon()).
2516 * So basically the check on whether to allow nested VMX
2517 * is here.
2518 */
2519 if (!nested_vmx_allowed(vcpu))
2520 return 1;
2521 } else if (to_vmx(vcpu)->nested.vmxon)
2522 return 1;
2523
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002524 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02002525 if (enable_ept) {
2526 if (!is_paging(vcpu)) {
2527 hw_cr4 &= ~X86_CR4_PAE;
2528 hw_cr4 |= X86_CR4_PSE;
2529 } else if (!(cr4 & X86_CR4_PAE)) {
2530 hw_cr4 &= ~X86_CR4_PAE;
2531 }
2532 }
Sheng Yang14394422008-04-28 12:24:45 +08002533
2534 vmcs_writel(CR4_READ_SHADOW, cr4);
2535 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002536 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002537}
2538
Avi Kivity6aa8b732006-12-10 02:21:36 -08002539static void vmx_get_segment(struct kvm_vcpu *vcpu,
2540 struct kvm_segment *var, int seg)
2541{
Avi Kivitya9179492011-01-03 14:28:52 +02002542 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitya9179492011-01-03 14:28:52 +02002543 struct kvm_save_segment *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002544 u32 ar;
2545
Avi Kivitya9179492011-01-03 14:28:52 +02002546 if (vmx->rmode.vm86_active
2547 && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES
2548 || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS
2549 || seg == VCPU_SREG_GS)
2550 && !emulate_invalid_guest_state) {
2551 switch (seg) {
2552 case VCPU_SREG_TR: save = &vmx->rmode.tr; break;
2553 case VCPU_SREG_ES: save = &vmx->rmode.es; break;
2554 case VCPU_SREG_DS: save = &vmx->rmode.ds; break;
2555 case VCPU_SREG_FS: save = &vmx->rmode.fs; break;
2556 case VCPU_SREG_GS: save = &vmx->rmode.gs; break;
2557 default: BUG();
2558 }
2559 var->selector = save->selector;
2560 var->base = save->base;
2561 var->limit = save->limit;
2562 ar = save->ar;
2563 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03002564 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivitya9179492011-01-03 14:28:52 +02002565 goto use_saved_rmode_seg;
2566 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002567 var->base = vmx_read_guest_seg_base(vmx, seg);
2568 var->limit = vmx_read_guest_seg_limit(vmx, seg);
2569 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2570 ar = vmx_read_guest_seg_ar(vmx, seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002571use_saved_rmode_seg:
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02002572 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002573 ar = 0;
2574 var->type = ar & 15;
2575 var->s = (ar >> 4) & 1;
2576 var->dpl = (ar >> 5) & 3;
2577 var->present = (ar >> 7) & 1;
2578 var->avl = (ar >> 12) & 1;
2579 var->l = (ar >> 13) & 1;
2580 var->db = (ar >> 14) & 1;
2581 var->g = (ar >> 15) & 1;
2582 var->unusable = (ar >> 16) & 1;
2583}
2584
Avi Kivitya9179492011-01-03 14:28:52 +02002585static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2586{
Avi Kivitya9179492011-01-03 14:28:52 +02002587 struct kvm_segment s;
2588
2589 if (to_vmx(vcpu)->rmode.vm86_active) {
2590 vmx_get_segment(vcpu, &s, seg);
2591 return s.base;
2592 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002593 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002594}
2595
Avi Kivity69c73022011-03-07 15:26:44 +02002596static int __vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02002597{
Avi Kivity3eeb3282010-01-21 15:31:48 +02002598 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02002599 return 0;
2600
Avi Kivityf4c63e52011-03-07 14:54:28 +02002601 if (!is_long_mode(vcpu)
2602 && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */
Izik Eidus2e4d2652008-03-24 19:38:34 +02002603 return 3;
2604
Avi Kivity2fb92db2011-04-27 19:42:18 +03002605 return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02002606}
2607
Avi Kivity69c73022011-03-07 15:26:44 +02002608static int vmx_get_cpl(struct kvm_vcpu *vcpu)
2609{
2610 if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) {
2611 __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
2612 to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu);
2613 }
2614 return to_vmx(vcpu)->cpl;
2615}
2616
2617
Avi Kivity653e3102007-05-07 10:55:37 +03002618static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002620 u32 ar;
2621
Avi Kivity653e3102007-05-07 10:55:37 +03002622 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623 ar = 1 << 16;
2624 else {
2625 ar = var->type & 15;
2626 ar |= (var->s & 1) << 4;
2627 ar |= (var->dpl & 3) << 5;
2628 ar |= (var->present & 1) << 7;
2629 ar |= (var->avl & 1) << 12;
2630 ar |= (var->l & 1) << 13;
2631 ar |= (var->db & 1) << 14;
2632 ar |= (var->g & 1) << 15;
2633 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08002634 if (ar == 0) /* a 0 value means unusable */
2635 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03002636
2637 return ar;
2638}
2639
2640static void vmx_set_segment(struct kvm_vcpu *vcpu,
2641 struct kvm_segment *var, int seg)
2642{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002643 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03002644 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2645 u32 ar;
2646
Avi Kivity2fb92db2011-04-27 19:42:18 +03002647 vmx_segment_cache_clear(vmx);
2648
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002649 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
Gleb Natapova8ba6c22011-02-21 12:07:58 +02002650 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002651 vmx->rmode.tr.selector = var->selector;
2652 vmx->rmode.tr.base = var->base;
2653 vmx->rmode.tr.limit = var->limit;
2654 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03002655 return;
2656 }
2657 vmcs_writel(sf->base, var->base);
2658 vmcs_write32(sf->limit, var->limit);
2659 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002660 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03002661 /*
2662 * Hack real-mode segments into vm86 compatibility.
2663 */
2664 if (var->base == 0xffff0000 && var->selector == 0xf000)
2665 vmcs_writel(sf->base, 0xf0000);
2666 ar = 0xf3;
2667 } else
2668 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002669
2670 /*
2671 * Fix the "Accessed" bit in AR field of segment registers for older
2672 * qemu binaries.
2673 * IA32 arch specifies that at the time of processor reset the
2674 * "Accessed" bit in the AR field of segment registers is 1. And qemu
2675 * is setting it to 0 in the usedland code. This causes invalid guest
2676 * state vmexit when "unrestricted guest" mode is turned on.
2677 * Fix for this setup issue in cpu_reset is being pushed in the qemu
2678 * tree. Newer qemu binaries with that qemu fix would not need this
2679 * kvm hack.
2680 */
2681 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
2682 ar |= 0x1; /* Accessed */
2683
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity69c73022011-03-07 15:26:44 +02002685 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686}
2687
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
2689{
Avi Kivity2fb92db2011-04-27 19:42:18 +03002690 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691
2692 *db = (ar >> 14) & 1;
2693 *l = (ar >> 13) & 1;
2694}
2695
Gleb Natapov89a27f42010-02-16 10:51:48 +02002696static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002697{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002698 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
2699 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002700}
2701
Gleb Natapov89a27f42010-02-16 10:51:48 +02002702static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002703{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002704 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
2705 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002706}
2707
Gleb Natapov89a27f42010-02-16 10:51:48 +02002708static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002709{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002710 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
2711 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002712}
2713
Gleb Natapov89a27f42010-02-16 10:51:48 +02002714static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002715{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002716 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
2717 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002718}
2719
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002720static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
2721{
2722 struct kvm_segment var;
2723 u32 ar;
2724
2725 vmx_get_segment(vcpu, &var, seg);
2726 ar = vmx_segment_access_rights(&var);
2727
2728 if (var.base != (var.selector << 4))
2729 return false;
2730 if (var.limit != 0xffff)
2731 return false;
2732 if (ar != 0xf3)
2733 return false;
2734
2735 return true;
2736}
2737
2738static bool code_segment_valid(struct kvm_vcpu *vcpu)
2739{
2740 struct kvm_segment cs;
2741 unsigned int cs_rpl;
2742
2743 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2744 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
2745
Avi Kivity1872a3f2009-01-04 23:26:52 +02002746 if (cs.unusable)
2747 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002748 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
2749 return false;
2750 if (!cs.s)
2751 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002752 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002753 if (cs.dpl > cs_rpl)
2754 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002755 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002756 if (cs.dpl != cs_rpl)
2757 return false;
2758 }
2759 if (!cs.present)
2760 return false;
2761
2762 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
2763 return true;
2764}
2765
2766static bool stack_segment_valid(struct kvm_vcpu *vcpu)
2767{
2768 struct kvm_segment ss;
2769 unsigned int ss_rpl;
2770
2771 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2772 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
2773
Avi Kivity1872a3f2009-01-04 23:26:52 +02002774 if (ss.unusable)
2775 return true;
2776 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002777 return false;
2778 if (!ss.s)
2779 return false;
2780 if (ss.dpl != ss_rpl) /* DPL != RPL */
2781 return false;
2782 if (!ss.present)
2783 return false;
2784
2785 return true;
2786}
2787
2788static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
2789{
2790 struct kvm_segment var;
2791 unsigned int rpl;
2792
2793 vmx_get_segment(vcpu, &var, seg);
2794 rpl = var.selector & SELECTOR_RPL_MASK;
2795
Avi Kivity1872a3f2009-01-04 23:26:52 +02002796 if (var.unusable)
2797 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002798 if (!var.s)
2799 return false;
2800 if (!var.present)
2801 return false;
2802 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
2803 if (var.dpl < rpl) /* DPL < RPL */
2804 return false;
2805 }
2806
2807 /* TODO: Add other members to kvm_segment_field to allow checking for other access
2808 * rights flags
2809 */
2810 return true;
2811}
2812
2813static bool tr_valid(struct kvm_vcpu *vcpu)
2814{
2815 struct kvm_segment tr;
2816
2817 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
2818
Avi Kivity1872a3f2009-01-04 23:26:52 +02002819 if (tr.unusable)
2820 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002821 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2822 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02002823 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002824 return false;
2825 if (!tr.present)
2826 return false;
2827
2828 return true;
2829}
2830
2831static bool ldtr_valid(struct kvm_vcpu *vcpu)
2832{
2833 struct kvm_segment ldtr;
2834
2835 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
2836
Avi Kivity1872a3f2009-01-04 23:26:52 +02002837 if (ldtr.unusable)
2838 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002839 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
2840 return false;
2841 if (ldtr.type != 2)
2842 return false;
2843 if (!ldtr.present)
2844 return false;
2845
2846 return true;
2847}
2848
2849static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
2850{
2851 struct kvm_segment cs, ss;
2852
2853 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
2854 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
2855
2856 return ((cs.selector & SELECTOR_RPL_MASK) ==
2857 (ss.selector & SELECTOR_RPL_MASK));
2858}
2859
2860/*
2861 * Check if guest state is valid. Returns true if valid, false if
2862 * not.
2863 * We assume that registers are always usable
2864 */
2865static bool guest_state_valid(struct kvm_vcpu *vcpu)
2866{
2867 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02002868 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03002869 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
2870 return false;
2871 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
2872 return false;
2873 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
2874 return false;
2875 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
2876 return false;
2877 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
2878 return false;
2879 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
2880 return false;
2881 } else {
2882 /* protected mode guest state checks */
2883 if (!cs_ss_rpl_check(vcpu))
2884 return false;
2885 if (!code_segment_valid(vcpu))
2886 return false;
2887 if (!stack_segment_valid(vcpu))
2888 return false;
2889 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
2890 return false;
2891 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
2892 return false;
2893 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
2894 return false;
2895 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
2896 return false;
2897 if (!tr_valid(vcpu))
2898 return false;
2899 if (!ldtr_valid(vcpu))
2900 return false;
2901 }
2902 /* TODO:
2903 * - Add checks on RIP
2904 * - Add checks on RFLAGS
2905 */
2906
2907 return true;
2908}
2909
Mike Dayd77c26f2007-10-08 09:02:08 -04002910static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002911{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002912 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02002913 u16 data = 0;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002914 int r, idx, ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002916 idx = srcu_read_lock(&kvm->srcu);
2917 fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02002918 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2919 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002920 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002921 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08002922 r = kvm_write_guest_page(kvm, fn++, &data,
2923 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02002924 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002925 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002926 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
2927 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002928 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002929 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
2930 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002931 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02002932 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002933 r = kvm_write_guest_page(kvm, fn, &data,
2934 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
2935 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02002936 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002937 goto out;
2938
2939 ret = 1;
2940out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002941 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002942 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002943}
2944
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002945static int init_rmode_identity_map(struct kvm *kvm)
2946{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002947 int i, idx, r, ret;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002948 pfn_t identity_map_pfn;
2949 u32 tmp;
2950
Avi Kivity089d0342009-03-23 18:26:32 +02002951 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002952 return 1;
2953 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
2954 printk(KERN_ERR "EPT: identity-mapping pagetable "
2955 "haven't been allocated!\n");
2956 return 0;
2957 }
2958 if (likely(kvm->arch.ept_identity_pagetable_done))
2959 return 1;
2960 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08002961 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002962 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002963 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
2964 if (r < 0)
2965 goto out;
2966 /* Set up identity-mapping pagetable for EPT in real mode */
2967 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
2968 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
2969 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
2970 r = kvm_write_guest_page(kvm, identity_map_pfn,
2971 &tmp, i * sizeof(tmp), sizeof(tmp));
2972 if (r < 0)
2973 goto out;
2974 }
2975 kvm->arch.ept_identity_pagetable_done = true;
2976 ret = 1;
2977out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08002978 srcu_read_unlock(&kvm->srcu, idx);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08002979 return ret;
2980}
2981
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982static void seg_setup(int seg)
2983{
2984 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002985 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002986
2987 vmcs_write16(sf->selector, 0);
2988 vmcs_writel(sf->base, 0);
2989 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002990 if (enable_unrestricted_guest) {
2991 ar = 0x93;
2992 if (seg == VCPU_SREG_CS)
2993 ar |= 0x08; /* code segment */
2994 } else
2995 ar = 0xf3;
2996
2997 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002998}
2999
Sheng Yangf78e0e22007-10-29 09:40:42 +08003000static int alloc_apic_access_page(struct kvm *kvm)
3001{
3002 struct kvm_userspace_memory_region kvm_userspace_mem;
3003 int r = 0;
3004
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003005 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003006 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003007 goto out;
3008 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
3009 kvm_userspace_mem.flags = 0;
3010 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
3011 kvm_userspace_mem.memory_size = PAGE_SIZE;
3012 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3013 if (r)
3014 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003015
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003016 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003017out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003018 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003019 return r;
3020}
3021
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003022static int alloc_identity_pagetable(struct kvm *kvm)
3023{
3024 struct kvm_userspace_memory_region kvm_userspace_mem;
3025 int r = 0;
3026
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003027 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003028 if (kvm->arch.ept_identity_pagetable)
3029 goto out;
3030 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
3031 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003032 kvm_userspace_mem.guest_phys_addr =
3033 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003034 kvm_userspace_mem.memory_size = PAGE_SIZE;
3035 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3036 if (r)
3037 goto out;
3038
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003039 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08003040 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003041out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003042 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003043 return r;
3044}
3045
Sheng Yang2384d2b2008-01-17 15:14:33 +08003046static void allocate_vpid(struct vcpu_vmx *vmx)
3047{
3048 int vpid;
3049
3050 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02003051 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003052 return;
3053 spin_lock(&vmx_vpid_lock);
3054 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
3055 if (vpid < VMX_NR_VPIDS) {
3056 vmx->vpid = vpid;
3057 __set_bit(vpid, vmx_vpid_bitmap);
3058 }
3059 spin_unlock(&vmx_vpid_lock);
3060}
3061
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003062static void free_vpid(struct vcpu_vmx *vmx)
3063{
3064 if (!enable_vpid)
3065 return;
3066 spin_lock(&vmx_vpid_lock);
3067 if (vmx->vpid != 0)
3068 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3069 spin_unlock(&vmx_vpid_lock);
3070}
3071
Avi Kivity58972972009-02-24 22:26:47 +02003072static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08003073{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003074 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003075
3076 if (!cpu_has_vmx_msr_bitmap())
3077 return;
3078
3079 /*
3080 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3081 * have the write-low and read-high bitmap offsets the wrong way round.
3082 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3083 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003084 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003085 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
3086 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08003087 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3088 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003089 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
3090 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08003091 }
Sheng Yang25c5f222008-03-28 13:18:56 +08003092}
3093
Avi Kivity58972972009-02-24 22:26:47 +02003094static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
3095{
3096 if (!longmode_only)
3097 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
3098 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
3099}
3100
Avi Kivity6aa8b732006-12-10 02:21:36 -08003101/*
3102 * Sets up the vmcs for emulated real mode.
3103 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003104static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003105{
Sheng Yang468d4722008-10-09 16:01:55 +08003106 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003107 u32 junk;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10003108 u64 host_pat;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003109 unsigned long a;
Gleb Natapov89a27f42010-02-16 10:51:48 +02003110 struct desc_ptr dt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003111 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03003112 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003113 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114
Avi Kivity6aa8b732006-12-10 02:21:36 -08003115 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003116 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
3117 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003118
Sheng Yang25c5f222008-03-28 13:18:56 +08003119 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02003120 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08003121
Avi Kivity6aa8b732006-12-10 02:21:36 -08003122 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
3123
Avi Kivity6aa8b732006-12-10 02:21:36 -08003124 /* Control */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003125 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
3126 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003127
3128 exec_control = vmcs_config.cpu_based_exec_ctrl;
3129 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
3130 exec_control &= ~CPU_BASED_TPR_SHADOW;
3131#ifdef CONFIG_X86_64
3132 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3133 CPU_BASED_CR8_LOAD_EXITING;
3134#endif
3135 }
Avi Kivity089d0342009-03-23 18:26:32 +02003136 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08003137 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03003138 CPU_BASED_CR3_LOAD_EXITING |
3139 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003140 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141
Sheng Yang83ff3b92007-11-21 14:33:25 +08003142 if (cpu_has_secondary_exec_ctrls()) {
3143 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
3144 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3145 exec_control &=
3146 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003147 if (vmx->vpid == 0)
3148 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08003149 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003150 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08003151 enable_unrestricted_guest = 0;
3152 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003153 if (!enable_unrestricted_guest)
3154 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003155 if (!ple_gap)
3156 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08003157 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
3158 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08003159
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003160 if (ple_gap) {
3161 vmcs_write32(PLE_GAP, ple_gap);
3162 vmcs_write32(PLE_WINDOW, ple_window);
3163 }
3164
Avi Kivityc7addb92007-09-16 18:58:32 +02003165 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
3166 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003167 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
3168
Avi Kivity1c11e712010-05-03 16:05:44 +03003169 vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003170 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
3171 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
3172
3173 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
3174 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3175 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity9581d442010-10-19 16:46:55 +02003176 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
3177 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003178 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003179#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003180 rdmsrl(MSR_FS_BASE, a);
3181 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
3182 rdmsrl(MSR_GS_BASE, a);
3183 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
3184#else
3185 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
3186 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
3187#endif
3188
3189 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3190
Wei Yongjunec687982010-03-05 12:11:48 +08003191 native_store_idt(&dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02003192 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003193
Mike Dayd77c26f2007-10-08 09:02:08 -04003194 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03003195 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03003196 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
3197 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003198 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03003199 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003200 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003201
3202 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
3203 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
3204 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
3205 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
3206 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
3207 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
3208
Sheng Yang468d4722008-10-09 16:01:55 +08003209 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3210 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3211 host_pat = msr_low | ((u64) msr_high << 32);
3212 vmcs_write64(HOST_IA32_PAT, host_pat);
3213 }
3214 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
3215 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3216 host_pat = msr_low | ((u64) msr_high << 32);
3217 /* Write the default value follow host pat */
3218 vmcs_write64(GUEST_IA32_PAT, host_pat);
3219 /* Keep arch.pat sync with GUEST_IA32_PAT */
3220 vmx->vcpu.arch.pat = host_pat;
3221 }
3222
Avi Kivity6aa8b732006-12-10 02:21:36 -08003223 for (i = 0; i < NR_VMX_MSR; ++i) {
3224 u32 index = vmx_msr_index[i];
3225 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003226 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227
3228 if (rdmsr_safe(index, &data_low, &data_high) < 0)
3229 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08003230 if (wrmsr_safe(index, data_low, data_high) < 0)
3231 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03003232 vmx->guest_msrs[j].index = i;
3233 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02003234 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003235 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003236 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003237
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003238 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003239
3240 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003241 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
3242
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003243 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02003244 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02003245 if (enable_ept)
3246 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02003247 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003248
Zachary Amsden99e3e302010-08-19 22:07:17 -10003249 kvm_write_tsc(&vmx->vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003250
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003251 return 0;
3252}
3253
3254static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
3255{
3256 struct vcpu_vmx *vmx = to_vmx(vcpu);
3257 u64 msr;
Xiao Guangrong4b9d3a02010-06-08 10:15:51 +08003258 int ret;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003259
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003260 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003261
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003262 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003263
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003264 vmx->soft_vnmi_blocked = 0;
3265
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003266 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003267 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003268 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003269 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003270 msr |= MSR_IA32_APICBASE_BSP;
3271 kvm_set_apic_base(&vmx->vcpu, msr);
3272
Jan Kiszka10ab25c2010-05-25 16:01:50 +02003273 ret = fx_init(&vmx->vcpu);
3274 if (ret != 0)
3275 goto out;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003276
Avi Kivity2fb92db2011-04-27 19:42:18 +03003277 vmx_segment_cache_clear(vmx);
3278
Avi Kivity5706be02008-08-20 15:07:31 +03003279 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003280 /*
3281 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
3282 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
3283 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003284 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003285 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
3286 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
3287 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003288 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
3289 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003290 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003291
3292 seg_setup(VCPU_SREG_DS);
3293 seg_setup(VCPU_SREG_ES);
3294 seg_setup(VCPU_SREG_FS);
3295 seg_setup(VCPU_SREG_GS);
3296 seg_setup(VCPU_SREG_SS);
3297
3298 vmcs_write16(GUEST_TR_SELECTOR, 0);
3299 vmcs_writel(GUEST_TR_BASE, 0);
3300 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
3301 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3302
3303 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
3304 vmcs_writel(GUEST_LDTR_BASE, 0);
3305 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
3306 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
3307
3308 vmcs_write32(GUEST_SYSENTER_CS, 0);
3309 vmcs_writel(GUEST_SYSENTER_ESP, 0);
3310 vmcs_writel(GUEST_SYSENTER_EIP, 0);
3311
3312 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003313 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003314 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003315 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003316 kvm_rip_write(vcpu, 0);
3317 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003318
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003319 vmcs_writel(GUEST_DR7, 0x400);
3320
3321 vmcs_writel(GUEST_GDTR_BASE, 0);
3322 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
3323
3324 vmcs_writel(GUEST_IDTR_BASE, 0);
3325 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
3326
Anthony Liguori443381a2010-12-06 10:53:38 -06003327 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003328 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
3329 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
3330
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003331 /* Special registers */
3332 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
3333
3334 setup_msrs(vmx);
3335
Avi Kivity6aa8b732006-12-10 02:21:36 -08003336 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
3337
Sheng Yangf78e0e22007-10-29 09:40:42 +08003338 if (cpu_has_vmx_tpr_shadow()) {
3339 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
3340 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
3341 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09003342 __pa(vmx->vcpu.arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08003343 vmcs_write32(TPR_THRESHOLD, 0);
3344 }
3345
3346 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3347 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003348 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349
Sheng Yang2384d2b2008-01-17 15:14:33 +08003350 if (vmx->vpid != 0)
3351 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
3352
Eduardo Habkostfa400522009-10-24 02:49:58 -02003353 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003354 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003355 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003356 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003357 vmx_fpu_activate(&vmx->vcpu);
3358 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003359
Gui Jianfengb9d762f2010-06-07 10:32:29 +08003360 vpid_sync_context(vmx);
Sheng Yang2384d2b2008-01-17 15:14:33 +08003361
Marcelo Tosatti3200f402008-03-29 20:17:59 -03003362 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003363
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003364 /* HACK: Don't enable emulation on guest boot/reset */
3365 vmx->emulation_required = 0;
3366
Avi Kivity6aa8b732006-12-10 02:21:36 -08003367out:
3368 return ret;
3369}
3370
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003371static void enable_irq_window(struct kvm_vcpu *vcpu)
3372{
3373 u32 cpu_based_vm_exec_control;
3374
3375 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3376 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
3377 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3378}
3379
3380static void enable_nmi_window(struct kvm_vcpu *vcpu)
3381{
3382 u32 cpu_based_vm_exec_control;
3383
3384 if (!cpu_has_virtual_nmis()) {
3385 enable_irq_window(vcpu);
3386 return;
3387 }
3388
Avi Kivity30bd0c42010-11-01 23:20:48 +02003389 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
3390 enable_irq_window(vcpu);
3391 return;
3392 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003393 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3394 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3395 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3396}
3397
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003398static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03003399{
Avi Kivity9c8cba32007-11-22 11:42:59 +02003400 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003401 uint32_t intr;
3402 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02003403
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003404 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003405
Avi Kivityfa89a812008-09-01 15:57:51 +03003406 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003407 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003408 int inc_eip = 0;
3409 if (vcpu->arch.interrupt.soft)
3410 inc_eip = vcpu->arch.event_exit_inst_len;
3411 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003412 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003413 return;
3414 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003415 intr = irq | INTR_INFO_VALID_MASK;
3416 if (vcpu->arch.interrupt.soft) {
3417 intr |= INTR_TYPE_SOFT_INTR;
3418 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3419 vmx->vcpu.arch.event_exit_inst_len);
3420 } else
3421 intr |= INTR_TYPE_EXT_INTR;
3422 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Anthony Liguori443381a2010-12-06 10:53:38 -06003423 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003424}
3425
Sheng Yangf08864b2008-05-15 18:23:25 +08003426static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
3427{
Jan Kiszka66a5a342008-09-26 09:30:51 +02003428 struct vcpu_vmx *vmx = to_vmx(vcpu);
3429
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003430 if (!cpu_has_virtual_nmis()) {
3431 /*
3432 * Tracking the NMI-blocked state in software is built upon
3433 * finding the next open IRQ window. This, in turn, depends on
3434 * well-behaving guests: They have to keep IRQs disabled at
3435 * least as long as the NMI handler runs. Otherwise we may
3436 * cause NMI nesting, maybe breaking the guest. But as this is
3437 * highly unlikely, we can live with the residual risk.
3438 */
3439 vmx->soft_vnmi_blocked = 1;
3440 vmx->vnmi_blocked_time = 0;
3441 }
3442
Jan Kiszka487b3912008-09-26 09:30:56 +02003443 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02003444 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003445 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003446 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003447 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02003448 return;
3449 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003450 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
3451 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Anthony Liguori443381a2010-12-06 10:53:38 -06003452 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003453}
3454
Gleb Natapovc4282df2009-04-21 17:45:07 +03003455static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02003456{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003457 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03003458 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02003459
Gleb Natapovc4282df2009-04-21 17:45:07 +03003460 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
Avi Kivity30bd0c42010-11-01 23:20:48 +02003461 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
3462 | GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02003463}
3464
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003465static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
3466{
3467 if (!cpu_has_virtual_nmis())
3468 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02003469 if (to_vmx(vcpu)->nmi_known_unmasked)
3470 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03003471 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003472}
3473
3474static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3475{
3476 struct vcpu_vmx *vmx = to_vmx(vcpu);
3477
3478 if (!cpu_has_virtual_nmis()) {
3479 if (vmx->soft_vnmi_blocked != masked) {
3480 vmx->soft_vnmi_blocked = masked;
3481 vmx->vnmi_blocked_time = 0;
3482 }
3483 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02003484 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003485 if (masked)
3486 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3487 GUEST_INTR_STATE_NMI);
3488 else
3489 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3490 GUEST_INTR_STATE_NMI);
3491 }
3492}
3493
Gleb Natapov78646122009-03-23 12:12:11 +02003494static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
3495{
Gleb Natapovc4282df2009-04-21 17:45:07 +03003496 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
3497 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3498 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02003499}
3500
Izik Eiduscbc94022007-10-25 00:29:55 +02003501static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
3502{
3503 int ret;
3504 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08003505 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02003506 .guest_phys_addr = addr,
3507 .memory_size = PAGE_SIZE * 3,
3508 .flags = 0,
3509 };
3510
3511 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
3512 if (ret)
3513 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003514 kvm->arch.tss_addr = addr;
Gleb Natapov93ea5382011-02-21 12:07:59 +02003515 if (!init_rmode_tss(kvm))
3516 return -ENOMEM;
3517
Izik Eiduscbc94022007-10-25 00:29:55 +02003518 return 0;
3519}
3520
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521static int handle_rmode_exception(struct kvm_vcpu *vcpu,
3522 int vec, u32 err_code)
3523{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03003524 /*
3525 * Instruction with address size override prefix opcode 0x67
3526 * Cause the #SS fault with 0 error code in VM86 mode.
3527 */
3528 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Andre Przywara51d8b662010-12-21 11:12:02 +01003529 if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003530 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003531 /*
3532 * Forward all other exceptions that are valid in real mode.
3533 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
3534 * the required debugging infrastructure rework.
3535 */
3536 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003537 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003538 if (vcpu->guest_debug &
3539 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
3540 return 0;
3541 kvm_queue_exception(vcpu, vec);
3542 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003543 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01003544 /*
3545 * Update instruction length as we may reinject the exception
3546 * from user space while in guest debugging mode.
3547 */
3548 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
3549 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003550 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
3551 return 0;
3552 /* fall through */
3553 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003554 case OF_VECTOR:
3555 case BR_VECTOR:
3556 case UD_VECTOR:
3557 case DF_VECTOR:
3558 case SS_VECTOR:
3559 case GP_VECTOR:
3560 case MF_VECTOR:
3561 kvm_queue_exception(vcpu, vec);
3562 return 1;
3563 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003564 return 0;
3565}
3566
Andi Kleena0861c02009-06-08 17:37:09 +08003567/*
3568 * Trigger machine check on the host. We assume all the MSRs are already set up
3569 * by the CPU and that we still run on the same CPU as the MCE occurred on.
3570 * We pass a fake environment to the machine check handler because we want
3571 * the guest to be always treated like user space, no matter what context
3572 * it used internally.
3573 */
3574static void kvm_machine_check(void)
3575{
3576#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
3577 struct pt_regs regs = {
3578 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
3579 .flags = X86_EFLAGS_IF,
3580 };
3581
3582 do_machine_check(&regs, 0);
3583#endif
3584}
3585
Avi Kivity851ba692009-08-24 11:10:17 +03003586static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08003587{
3588 /* already handled by vcpu_run */
3589 return 1;
3590}
3591
Avi Kivity851ba692009-08-24 11:10:17 +03003592static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003593{
Avi Kivity1155f762007-11-22 11:30:47 +02003594 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003595 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003596 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003597 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003598 u32 vect_info;
3599 enum emulation_result er;
3600
Avi Kivity1155f762007-11-22 11:30:47 +02003601 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02003602 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003603
Andi Kleena0861c02009-06-08 17:37:09 +08003604 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03003605 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003606
Avi Kivity6aa8b732006-12-10 02:21:36 -08003607 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02003608 !is_page_fault(intr_info)) {
3609 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3610 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
3611 vcpu->run->internal.ndata = 2;
3612 vcpu->run->internal.data[0] = vect_info;
3613 vcpu->run->internal.data[1] = intr_info;
3614 return 0;
3615 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003616
Jan Kiszkae4a41882008-09-26 09:30:46 +02003617 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02003618 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003619
3620 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03003621 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003622 return 1;
3623 }
3624
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003625 if (is_invalid_opcode(intr_info)) {
Andre Przywara51d8b662010-12-21 11:12:02 +01003626 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003627 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02003628 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003629 return 1;
3630 }
3631
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06003633 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
3635 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08003636 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02003637 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003638 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003639 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003640 trace_kvm_page_fault(cr2, error_code);
3641
Gleb Natapov3298b752009-05-11 13:35:46 +03003642 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03003643 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01003644 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003645 }
3646
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003647 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08003648 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003649 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003650 if (vcpu->arch.halt_request) {
3651 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003652 return kvm_emulate_halt(vcpu);
3653 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003654 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003655 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003656
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003657 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003658 switch (ex_no) {
3659 case DB_VECTOR:
3660 dr6 = vmcs_readl(EXIT_QUALIFICATION);
3661 if (!(vcpu->guest_debug &
3662 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
3663 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
3664 kvm_queue_exception(vcpu, DB_VECTOR);
3665 return 1;
3666 }
3667 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
3668 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
3669 /* fall through */
3670 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01003671 /*
3672 * Update instruction length as we may reinject #BP from
3673 * user space while in guest debugging mode. Reading it for
3674 * #DB as well causes no harm, it is not used in that case.
3675 */
3676 vmx->vcpu.arch.event_exit_inst_len =
3677 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003678 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03003679 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003680 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
3681 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003682 break;
3683 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003684 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
3685 kvm_run->ex.exception = ex_no;
3686 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003687 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003688 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003689 return 0;
3690}
3691
Avi Kivity851ba692009-08-24 11:10:17 +03003692static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003693{
Avi Kivity1165f5f2007-04-19 17:27:43 +03003694 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003695 return 1;
3696}
3697
Avi Kivity851ba692009-08-24 11:10:17 +03003698static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08003699{
Avi Kivity851ba692009-08-24 11:10:17 +03003700 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08003701 return 0;
3702}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003703
Avi Kivity851ba692009-08-24 11:10:17 +03003704static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003705{
He, Qingbfdaab02007-09-12 14:18:28 +08003706 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01003707 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02003708 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003709
He, Qingbfdaab02007-09-12 14:18:28 +08003710 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02003711 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03003712 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03003713
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02003714 ++vcpu->stat.io_exits;
3715
3716 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01003717 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02003718
3719 port = exit_qualification >> 16;
3720 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01003721 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02003722
3723 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003724}
3725
Ingo Molnar102d8322007-02-19 14:37:47 +02003726static void
3727vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
3728{
3729 /*
3730 * Patch in the VMCALL instruction:
3731 */
3732 hypercall[0] = 0x0f;
3733 hypercall[1] = 0x01;
3734 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02003735}
3736
Avi Kivity851ba692009-08-24 11:10:17 +03003737static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003738{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003739 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003740 int cr;
3741 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03003742 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003743
He, Qingbfdaab02007-09-12 14:18:28 +08003744 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003745 cr = exit_qualification & 15;
3746 reg = (exit_qualification >> 8) & 15;
3747 switch ((exit_qualification >> 4) & 3) {
3748 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003749 val = kvm_register_read(vcpu, reg);
3750 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003751 switch (cr) {
3752 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03003753 err = kvm_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01003754 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003755 return 1;
3756 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03003757 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01003758 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003759 return 1;
3760 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03003761 err = kvm_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01003762 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003763 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003764 case 8: {
3765 u8 cr8_prev = kvm_get_cr8(vcpu);
3766 u8 cr8 = kvm_register_read(vcpu, reg);
Andre Przywaraeea1cff2010-12-21 11:12:00 +01003767 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01003768 kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003769 if (irqchip_in_kernel(vcpu->kvm))
3770 return 1;
3771 if (cr8_prev <= cr8)
3772 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03003773 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03003774 return 0;
3775 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003776 };
3777 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03003778 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02003779 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02003780 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03003781 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02003782 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03003783 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003784 case 1: /*mov from cr*/
3785 switch (cr) {
3786 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02003787 val = kvm_read_cr3(vcpu);
3788 kvm_register_write(vcpu, reg, val);
3789 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790 skip_emulated_instruction(vcpu);
3791 return 1;
3792 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003793 val = kvm_get_cr8(vcpu);
3794 kvm_register_write(vcpu, reg, val);
3795 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003796 skip_emulated_instruction(vcpu);
3797 return 1;
3798 }
3799 break;
3800 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02003801 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003802 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02003803 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003804
3805 skip_emulated_instruction(vcpu);
3806 return 1;
3807 default:
3808 break;
3809 }
Avi Kivity851ba692009-08-24 11:10:17 +03003810 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10003811 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812 (int)(exit_qualification >> 4) & 3, cr);
3813 return 0;
3814}
3815
Avi Kivity851ba692009-08-24 11:10:17 +03003816static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003817{
He, Qingbfdaab02007-09-12 14:18:28 +08003818 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003819 int dr, reg;
3820
Jan Kiszkaf2483412010-01-20 18:20:20 +01003821 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03003822 if (!kvm_require_cpl(vcpu, 0))
3823 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003824 dr = vmcs_readl(GUEST_DR7);
3825 if (dr & DR7_GD) {
3826 /*
3827 * As the vm-exit takes precedence over the debug trap, we
3828 * need to emulate the latter, either for the host or the
3829 * guest debugging itself.
3830 */
3831 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03003832 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
3833 vcpu->run->debug.arch.dr7 = dr;
3834 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003835 vmcs_readl(GUEST_CS_BASE) +
3836 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03003837 vcpu->run->debug.arch.exception = DB_VECTOR;
3838 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003839 return 0;
3840 } else {
3841 vcpu->arch.dr7 &= ~DR7_GD;
3842 vcpu->arch.dr6 |= DR6_BD;
3843 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
3844 kvm_queue_exception(vcpu, DB_VECTOR);
3845 return 1;
3846 }
3847 }
3848
He, Qingbfdaab02007-09-12 14:18:28 +08003849 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003850 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
3851 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
3852 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03003853 unsigned long val;
3854 if (!kvm_get_dr(vcpu, dr, &val))
3855 kvm_register_write(vcpu, reg, val);
3856 } else
3857 kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003858 skip_emulated_instruction(vcpu);
3859 return 1;
3860}
3861
Gleb Natapov020df072010-04-13 10:05:23 +03003862static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
3863{
3864 vmcs_writel(GUEST_DR7, val);
3865}
3866
Avi Kivity851ba692009-08-24 11:10:17 +03003867static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003868{
Avi Kivity06465c52007-02-28 20:46:53 +02003869 kvm_emulate_cpuid(vcpu);
3870 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003871}
3872
Avi Kivity851ba692009-08-24 11:10:17 +03003873static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003874{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003875 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08003876 u64 data;
3877
3878 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02003879 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003880 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003881 return 1;
3882 }
3883
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003884 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003885
Avi Kivity6aa8b732006-12-10 02:21:36 -08003886 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003887 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
3888 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003889 skip_emulated_instruction(vcpu);
3890 return 1;
3891}
3892
Avi Kivity851ba692009-08-24 11:10:17 +03003893static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003894{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003895 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
3896 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
3897 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003898
3899 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02003900 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02003901 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003902 return 1;
3903 }
3904
Avi Kivity59200272010-01-25 19:47:02 +02003905 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003906 skip_emulated_instruction(vcpu);
3907 return 1;
3908}
3909
Avi Kivity851ba692009-08-24 11:10:17 +03003910static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003911{
Avi Kivity3842d132010-07-27 12:30:24 +03003912 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003913 return 1;
3914}
3915
Avi Kivity851ba692009-08-24 11:10:17 +03003916static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003917{
Eddie Dong85f455f2007-07-06 12:20:49 +03003918 u32 cpu_based_vm_exec_control;
3919
3920 /* clear pending irq */
3921 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3922 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
3923 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003924
Avi Kivity3842d132010-07-27 12:30:24 +03003925 kvm_make_request(KVM_REQ_EVENT, vcpu);
3926
Jan Kiszkaa26bf122008-09-26 09:30:45 +02003927 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003928
Dor Laorc1150d82007-01-05 16:36:24 -08003929 /*
3930 * If the user space waits to inject interrupts, exit as soon as
3931 * possible
3932 */
Gleb Natapov80618232009-04-21 17:44:56 +03003933 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03003934 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03003935 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03003936 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08003937 return 0;
3938 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939 return 1;
3940}
3941
Avi Kivity851ba692009-08-24 11:10:17 +03003942static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003943{
3944 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03003945 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003946}
3947
Avi Kivity851ba692009-08-24 11:10:17 +03003948static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02003949{
Dor Laor510043d2007-02-19 18:25:43 +02003950 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003951 kvm_emulate_hypercall(vcpu);
3952 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02003953}
3954
Avi Kivity851ba692009-08-24 11:10:17 +03003955static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03003956{
3957 kvm_queue_exception(vcpu, UD_VECTOR);
3958 return 1;
3959}
3960
Gleb Natapovec25d5e2010-11-01 15:35:01 +02003961static int handle_invd(struct kvm_vcpu *vcpu)
3962{
Andre Przywara51d8b662010-12-21 11:12:02 +01003963 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02003964}
3965
Avi Kivity851ba692009-08-24 11:10:17 +03003966static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03003967{
Sheng Yangf9c617f2009-03-25 10:08:52 +08003968 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03003969
3970 kvm_mmu_invlpg(vcpu, exit_qualification);
3971 skip_emulated_instruction(vcpu);
3972 return 1;
3973}
3974
Avi Kivity851ba692009-08-24 11:10:17 +03003975static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02003976{
3977 skip_emulated_instruction(vcpu);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08003978 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02003979 return 1;
3980}
3981
Dexuan Cui2acf9232010-06-10 11:27:12 +08003982static int handle_xsetbv(struct kvm_vcpu *vcpu)
3983{
3984 u64 new_bv = kvm_read_edx_eax(vcpu);
3985 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
3986
3987 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
3988 skip_emulated_instruction(vcpu);
3989 return 1;
3990}
3991
Avi Kivity851ba692009-08-24 11:10:17 +03003992static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003993{
Andre Przywara51d8b662010-12-21 11:12:02 +01003994 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003995}
3996
Avi Kivity851ba692009-08-24 11:10:17 +03003997static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02003998{
Jan Kiszka60637aa2008-09-26 09:30:47 +02003999 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004000 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004001 bool has_error_code = false;
4002 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004003 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004004 int reason, type, idt_v;
4005
4006 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
4007 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02004008
4009 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4010
4011 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004012 if (reason == TASK_SWITCH_GATE && idt_v) {
4013 switch (type) {
4014 case INTR_TYPE_NMI_INTR:
4015 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02004016 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004017 break;
4018 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004019 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004020 kvm_clear_interrupt_queue(vcpu);
4021 break;
4022 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02004023 if (vmx->idt_vectoring_info &
4024 VECTORING_INFO_DELIVER_CODE_MASK) {
4025 has_error_code = true;
4026 error_code =
4027 vmcs_read32(IDT_VECTORING_ERROR_CODE);
4028 }
4029 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004030 case INTR_TYPE_SOFT_EXCEPTION:
4031 kvm_clear_exception_queue(vcpu);
4032 break;
4033 default:
4034 break;
4035 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02004036 }
Izik Eidus37817f22008-03-24 23:14:53 +02004037 tss_selector = exit_qualification;
4038
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004039 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
4040 type != INTR_TYPE_EXT_INTR &&
4041 type != INTR_TYPE_NMI_INTR))
4042 skip_emulated_instruction(vcpu);
4043
Gleb Natapovacb54512010-04-15 21:03:50 +03004044 if (kvm_task_switch(vcpu, tss_selector, reason,
4045 has_error_code, error_code) == EMULATE_FAIL) {
4046 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4047 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4048 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004049 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03004050 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004051
4052 /* clear all local breakpoint enable flags */
4053 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
4054
4055 /*
4056 * TODO: What about debug traps on tss switch?
4057 * Are we supposed to inject them and update dr6?
4058 */
4059
4060 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02004061}
4062
Avi Kivity851ba692009-08-24 11:10:17 +03004063static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08004064{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004065 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08004066 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08004067 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08004068
Sheng Yangf9c617f2009-03-25 10:08:52 +08004069 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08004070
4071 if (exit_qualification & (1 << 6)) {
4072 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02004073 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08004074 }
4075
4076 gla_validity = (exit_qualification >> 7) & 0x3;
4077 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
4078 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
4079 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
4080 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08004081 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08004082 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
4083 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03004084 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4085 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03004086 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08004087 }
4088
4089 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004090 trace_kvm_page_fault(gpa, exit_qualification);
Andre Przywaradc25e892010-12-21 11:12:07 +01004091 return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08004092}
4093
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004094static u64 ept_rsvd_mask(u64 spte, int level)
4095{
4096 int i;
4097 u64 mask = 0;
4098
4099 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
4100 mask |= (1ULL << i);
4101
4102 if (level > 2)
4103 /* bits 7:3 reserved */
4104 mask |= 0xf8;
4105 else if (level == 2) {
4106 if (spte & (1ULL << 7))
4107 /* 2MB ref, bits 20:12 reserved */
4108 mask |= 0x1ff000;
4109 else
4110 /* bits 6:3 reserved */
4111 mask |= 0x78;
4112 }
4113
4114 return mask;
4115}
4116
4117static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
4118 int level)
4119{
4120 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
4121
4122 /* 010b (write-only) */
4123 WARN_ON((spte & 0x7) == 0x2);
4124
4125 /* 110b (write/execute) */
4126 WARN_ON((spte & 0x7) == 0x6);
4127
4128 /* 100b (execute-only) and value not supported by logical processor */
4129 if (!cpu_has_vmx_ept_execute_only())
4130 WARN_ON((spte & 0x7) == 0x4);
4131
4132 /* not 000b */
4133 if ((spte & 0x7)) {
4134 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
4135
4136 if (rsvd_bits != 0) {
4137 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
4138 __func__, rsvd_bits);
4139 WARN_ON(1);
4140 }
4141
4142 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
4143 u64 ept_mem_type = (spte & 0x38) >> 3;
4144
4145 if (ept_mem_type == 2 || ept_mem_type == 3 ||
4146 ept_mem_type == 7) {
4147 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
4148 __func__, ept_mem_type);
4149 WARN_ON(1);
4150 }
4151 }
4152 }
4153}
4154
Avi Kivity851ba692009-08-24 11:10:17 +03004155static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004156{
4157 u64 sptes[4];
4158 int nr_sptes, i;
4159 gpa_t gpa;
4160
4161 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
4162
4163 printk(KERN_ERR "EPT: Misconfiguration.\n");
4164 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
4165
4166 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
4167
4168 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
4169 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
4170
Avi Kivity851ba692009-08-24 11:10:17 +03004171 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4172 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004173
4174 return 0;
4175}
4176
Avi Kivity851ba692009-08-24 11:10:17 +03004177static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08004178{
4179 u32 cpu_based_vm_exec_control;
4180
4181 /* clear pending NMI */
4182 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4183 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
4184 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4185 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03004186 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004187
4188 return 1;
4189}
4190
Mohammed Gamal80ced182009-09-01 12:48:18 +02004191static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004192{
Avi Kivity8b3079a2009-01-05 12:10:54 +02004193 struct vcpu_vmx *vmx = to_vmx(vcpu);
4194 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02004195 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02004196 u32 cpu_exec_ctrl;
4197 bool intr_window_requested;
4198
4199 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4200 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004201
4202 while (!guest_state_valid(vcpu)) {
Avi Kivity49e9d552010-09-19 14:34:08 +02004203 if (intr_window_requested
4204 && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF))
4205 return handle_interrupt_window(&vmx->vcpu);
4206
Andre Przywara51d8b662010-12-21 11:12:02 +01004207 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004208
Mohammed Gamal80ced182009-09-01 12:48:18 +02004209 if (err == EMULATE_DO_MMIO) {
4210 ret = 0;
4211 goto out;
4212 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004213
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004214 if (err != EMULATE_DONE)
4215 return 0;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004216
4217 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02004218 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004219 if (need_resched())
4220 schedule();
4221 }
4222
Mohammed Gamal80ced182009-09-01 12:48:18 +02004223 vmx->emulation_required = 0;
4224out:
4225 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004226}
4227
Avi Kivity6aa8b732006-12-10 02:21:36 -08004228/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004229 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
4230 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
4231 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03004232static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004233{
4234 skip_emulated_instruction(vcpu);
4235 kvm_vcpu_on_spin(vcpu);
4236
4237 return 1;
4238}
4239
Sheng Yang59708672009-12-15 13:29:54 +08004240static int handle_invalid_op(struct kvm_vcpu *vcpu)
4241{
4242 kvm_queue_exception(vcpu, UD_VECTOR);
4243 return 1;
4244}
4245
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004246/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004247 * Emulate the VMXON instruction.
4248 * Currently, we just remember that VMX is active, and do not save or even
4249 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4250 * do not currently need to store anything in that guest-allocated memory
4251 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
4252 * argument is different from the VMXON pointer (which the spec says they do).
4253 */
4254static int handle_vmon(struct kvm_vcpu *vcpu)
4255{
4256 struct kvm_segment cs;
4257 struct vcpu_vmx *vmx = to_vmx(vcpu);
4258
4259 /* The Intel VMX Instruction Reference lists a bunch of bits that
4260 * are prerequisite to running VMXON, most notably cr4.VMXE must be
4261 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
4262 * Otherwise, we should fail with #UD. We test these now:
4263 */
4264 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
4265 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
4266 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
4267 kvm_queue_exception(vcpu, UD_VECTOR);
4268 return 1;
4269 }
4270
4271 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4272 if (is_long_mode(vcpu) && !cs.l) {
4273 kvm_queue_exception(vcpu, UD_VECTOR);
4274 return 1;
4275 }
4276
4277 if (vmx_get_cpl(vcpu)) {
4278 kvm_inject_gp(vcpu, 0);
4279 return 1;
4280 }
4281
4282 vmx->nested.vmxon = true;
4283
4284 skip_emulated_instruction(vcpu);
4285 return 1;
4286}
4287
4288/*
4289 * Intel's VMX Instruction Reference specifies a common set of prerequisites
4290 * for running VMX instructions (except VMXON, whose prerequisites are
4291 * slightly different). It also specifies what exception to inject otherwise.
4292 */
4293static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
4294{
4295 struct kvm_segment cs;
4296 struct vcpu_vmx *vmx = to_vmx(vcpu);
4297
4298 if (!vmx->nested.vmxon) {
4299 kvm_queue_exception(vcpu, UD_VECTOR);
4300 return 0;
4301 }
4302
4303 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4304 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
4305 (is_long_mode(vcpu) && !cs.l)) {
4306 kvm_queue_exception(vcpu, UD_VECTOR);
4307 return 0;
4308 }
4309
4310 if (vmx_get_cpl(vcpu)) {
4311 kvm_inject_gp(vcpu, 0);
4312 return 0;
4313 }
4314
4315 return 1;
4316}
4317
4318/*
4319 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
4320 * just stops using VMX.
4321 */
4322static void free_nested(struct vcpu_vmx *vmx)
4323{
4324 if (!vmx->nested.vmxon)
4325 return;
4326 vmx->nested.vmxon = false;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03004327 if (vmx->nested.current_vmptr != -1ull) {
4328 kunmap(vmx->nested.current_vmcs12_page);
4329 nested_release_page(vmx->nested.current_vmcs12_page);
4330 vmx->nested.current_vmptr = -1ull;
4331 vmx->nested.current_vmcs12 = NULL;
4332 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004333}
4334
4335/* Emulate the VMXOFF instruction */
4336static int handle_vmoff(struct kvm_vcpu *vcpu)
4337{
4338 if (!nested_vmx_check_permission(vcpu))
4339 return 1;
4340 free_nested(to_vmx(vcpu));
4341 skip_emulated_instruction(vcpu);
4342 return 1;
4343}
4344
4345/*
Nadav Har'El064aea72011-05-25 23:04:56 +03004346 * Decode the memory-address operand of a vmx instruction, as recorded on an
4347 * exit caused by such an instruction (run by a guest hypervisor).
4348 * On success, returns 0. When the operand is invalid, returns 1 and throws
4349 * #UD or #GP.
4350 */
4351static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
4352 unsigned long exit_qualification,
4353 u32 vmx_instruction_info, gva_t *ret)
4354{
4355 /*
4356 * According to Vol. 3B, "Information for VM Exits Due to Instruction
4357 * Execution", on an exit, vmx_instruction_info holds most of the
4358 * addressing components of the operand. Only the displacement part
4359 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
4360 * For how an actual address is calculated from all these components,
4361 * refer to Vol. 1, "Operand Addressing".
4362 */
4363 int scaling = vmx_instruction_info & 3;
4364 int addr_size = (vmx_instruction_info >> 7) & 7;
4365 bool is_reg = vmx_instruction_info & (1u << 10);
4366 int seg_reg = (vmx_instruction_info >> 15) & 7;
4367 int index_reg = (vmx_instruction_info >> 18) & 0xf;
4368 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
4369 int base_reg = (vmx_instruction_info >> 23) & 0xf;
4370 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
4371
4372 if (is_reg) {
4373 kvm_queue_exception(vcpu, UD_VECTOR);
4374 return 1;
4375 }
4376
4377 /* Addr = segment_base + offset */
4378 /* offset = base + [index * scale] + displacement */
4379 *ret = vmx_get_segment_base(vcpu, seg_reg);
4380 if (base_is_valid)
4381 *ret += kvm_register_read(vcpu, base_reg);
4382 if (index_is_valid)
4383 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
4384 *ret += exit_qualification; /* holds the displacement */
4385
4386 if (addr_size == 1) /* 32 bit */
4387 *ret &= 0xffffffff;
4388
4389 /*
4390 * TODO: throw #GP (and return 1) in various cases that the VM*
4391 * instructions require it - e.g., offset beyond segment limit,
4392 * unusable or unreadable/unwritable segment, non-canonical 64-bit
4393 * address, and so on. Currently these are not checked.
4394 */
4395 return 0;
4396}
4397
4398/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004399 * The exit handlers return 1 if the exit was handled fully and guest execution
4400 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
4401 * to be done to userspace and return 0.
4402 */
Avi Kivity851ba692009-08-24 11:10:17 +03004403static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004404 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
4405 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08004406 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08004407 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004408 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004409 [EXIT_REASON_CR_ACCESS] = handle_cr,
4410 [EXIT_REASON_DR_ACCESS] = handle_dr,
4411 [EXIT_REASON_CPUID] = handle_cpuid,
4412 [EXIT_REASON_MSR_READ] = handle_rdmsr,
4413 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
4414 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
4415 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004416 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004417 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02004418 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03004419 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
4420 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
4421 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
4422 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
4423 [EXIT_REASON_VMREAD] = handle_vmx_insn,
4424 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
4425 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004426 [EXIT_REASON_VMOFF] = handle_vmoff,
4427 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004428 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
4429 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02004430 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08004431 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02004432 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08004433 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004434 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
4435 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004436 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08004437 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
4438 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004439};
4440
4441static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04004442 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004443
Avi Kivity586f9602010-11-18 13:09:54 +02004444static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4445{
4446 *info1 = vmcs_readl(EXIT_QUALIFICATION);
4447 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
4448}
4449
Avi Kivity6aa8b732006-12-10 02:21:36 -08004450/*
4451 * The guest has exited. See if we can fix it or if we need userspace
4452 * assistance.
4453 */
Avi Kivity851ba692009-08-24 11:10:17 +03004454static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004455{
Avi Kivity29bd8a72007-09-10 17:27:03 +03004456 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08004457 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02004458 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03004459
Avi Kivityaa179112010-11-17 18:44:19 +02004460 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004461
Mohammed Gamal80ced182009-09-01 12:48:18 +02004462 /* If guest state is invalid, start emulating */
4463 if (vmx->emulation_required && emulate_invalid_guest_state)
4464 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004465
Mohammed Gamal51207022010-05-31 22:40:54 +03004466 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
4467 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4468 vcpu->run->fail_entry.hardware_entry_failure_reason
4469 = exit_reason;
4470 return 0;
4471 }
4472
Avi Kivity29bd8a72007-09-10 17:27:03 +03004473 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004474 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4475 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03004476 = vmcs_read32(VM_INSTRUCTION_ERROR);
4477 return 0;
4478 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004479
Mike Dayd77c26f2007-10-08 09:02:08 -04004480 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08004481 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02004482 exit_reason != EXIT_REASON_EPT_VIOLATION &&
4483 exit_reason != EXIT_REASON_TASK_SWITCH))
4484 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
4485 "(0x%x) and exit reason is 0x%x\n",
4486 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004487
4488 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03004489 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004490 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004491 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01004492 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004493 /*
4494 * This CPU don't support us in finding the end of an
4495 * NMI-blocked window if the guest runs with IRQs
4496 * disabled. So we pull the trigger after 1 s of
4497 * futile waiting, but inform the user about this.
4498 */
4499 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
4500 "state on VCPU %d after 1 s timeout\n",
4501 __func__, vcpu->vcpu_id);
4502 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004503 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004504 }
4505
Avi Kivity6aa8b732006-12-10 02:21:36 -08004506 if (exit_reason < kvm_vmx_max_exit_handlers
4507 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03004508 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004509 else {
Avi Kivity851ba692009-08-24 11:10:17 +03004510 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4511 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004512 }
4513 return 0;
4514}
4515
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004516static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004517{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004518 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004519 vmcs_write32(TPR_THRESHOLD, 0);
4520 return;
4521 }
4522
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004523 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004524}
4525
Avi Kivity51aa01d2010-07-20 14:31:20 +03004526static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03004527{
Avi Kivity00eba012011-03-07 17:24:54 +02004528 u32 exit_intr_info;
4529
4530 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
4531 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
4532 return;
4533
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004534 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02004535 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08004536
4537 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02004538 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08004539 kvm_machine_check();
4540
Gleb Natapov20f65982009-05-11 13:35:55 +03004541 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02004542 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08004543 (exit_intr_info & INTR_INFO_VALID_MASK)) {
4544 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03004545 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08004546 kvm_after_handle_nmi(&vmx->vcpu);
4547 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03004548}
Gleb Natapov20f65982009-05-11 13:35:55 +03004549
Avi Kivity51aa01d2010-07-20 14:31:20 +03004550static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
4551{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004552 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03004553 bool unblock_nmi;
4554 u8 vector;
4555 bool idtv_info_valid;
4556
4557 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03004558
Avi Kivitycf393f72008-07-01 16:20:21 +03004559 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02004560 if (vmx->nmi_known_unmasked)
4561 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004562 /*
4563 * Can't use vmx->exit_intr_info since we're not sure what
4564 * the exit reason is.
4565 */
4566 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03004567 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
4568 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
4569 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004570 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03004571 * Re-set bit "block by NMI" before VM entry if vmexit caused by
4572 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004573 * SDM 3: 23.2.2 (September 2008)
4574 * Bit 12 is undefined in any of the following cases:
4575 * If the VM exit sets the valid bit in the IDT-vectoring
4576 * information field.
4577 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03004578 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004579 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
4580 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03004581 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4582 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02004583 else
4584 vmx->nmi_known_unmasked =
4585 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
4586 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004587 } else if (unlikely(vmx->soft_vnmi_blocked))
4588 vmx->vnmi_blocked_time +=
4589 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03004590}
4591
Avi Kivity83422e12010-07-20 14:43:23 +03004592static void __vmx_complete_interrupts(struct vcpu_vmx *vmx,
4593 u32 idt_vectoring_info,
4594 int instr_len_field,
4595 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03004596{
Avi Kivity51aa01d2010-07-20 14:31:20 +03004597 u8 vector;
4598 int type;
4599 bool idtv_info_valid;
4600
4601 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03004602
Gleb Natapov37b96e92009-03-30 16:03:13 +03004603 vmx->vcpu.arch.nmi_injected = false;
4604 kvm_clear_exception_queue(&vmx->vcpu);
4605 kvm_clear_interrupt_queue(&vmx->vcpu);
4606
4607 if (!idtv_info_valid)
4608 return;
4609
Avi Kivity3842d132010-07-27 12:30:24 +03004610 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
4611
Avi Kivity668f6122008-07-02 09:28:55 +03004612 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
4613 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03004614
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004615 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03004616 case INTR_TYPE_NMI_INTR:
4617 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03004618 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004619 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03004620 * Clear bit "block by NMI" before VM entry if a NMI
4621 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03004622 */
Avi Kivity654f06f2011-03-23 15:02:47 +02004623 vmx_set_nmi_mask(&vmx->vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03004624 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03004625 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004626 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03004627 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004628 /* fall through */
4629 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03004630 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03004631 u32 err = vmcs_read32(error_code_field);
Gleb Natapov37b96e92009-03-30 16:03:13 +03004632 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03004633 } else
4634 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03004635 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004636 case INTR_TYPE_SOFT_INTR:
4637 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03004638 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004639 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03004640 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004641 kvm_queue_interrupt(&vmx->vcpu, vector,
4642 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03004643 break;
4644 default:
4645 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03004646 }
Avi Kivitycf393f72008-07-01 16:20:21 +03004647}
4648
Avi Kivity83422e12010-07-20 14:43:23 +03004649static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
4650{
4651 __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info,
4652 VM_EXIT_INSTRUCTION_LEN,
4653 IDT_VECTORING_ERROR_CODE);
4654}
4655
Avi Kivityb463a6f2010-07-20 15:06:17 +03004656static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
4657{
4658 __vmx_complete_interrupts(to_vmx(vcpu),
4659 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
4660 VM_ENTRY_INSTRUCTION_LEN,
4661 VM_ENTRY_EXCEPTION_ERROR_CODE);
4662
4663 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
4664}
4665
Avi Kivityc8019492008-07-14 14:44:59 +03004666#ifdef CONFIG_X86_64
4667#define R "r"
4668#define Q "q"
4669#else
4670#define R "e"
4671#define Q "l"
4672#endif
4673
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08004674static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004675{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004676 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity104f2262010-11-18 13:12:52 +02004677
4678 /* Record the guest's net vcpu time for enforced NMI injections. */
4679 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
4680 vmx->entry_time = ktime_get();
4681
4682 /* Don't enter VMX if guest state is invalid, let the exit handler
4683 start emulation until we arrive back to a valid state */
4684 if (vmx->emulation_required && emulate_invalid_guest_state)
4685 return;
4686
4687 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
4688 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
4689 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
4690 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
4691
4692 /* When single-stepping over STI and MOV SS, we must clear the
4693 * corresponding interruptibility bits in the guest state. Otherwise
4694 * vmentry fails as it then expects bit 14 (BS) in pending debug
4695 * exceptions being set, but that's not correct for the guest debugging
4696 * case. */
4697 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
4698 vmx_set_interrupt_shadow(vcpu, 0);
4699
Nadav Har'Eld462b812011-05-24 15:26:10 +03004700 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02004701 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08004702 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03004703 "push %%"R"dx; push %%"R"bp;"
Avi Kivity40712fa2011-01-06 18:09:12 +02004704 "push %%"R"cx \n\t" /* placeholder for guest rcx */
Avi Kivityc8019492008-07-14 14:44:59 +03004705 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03004706 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
4707 "je 1f \n\t"
4708 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03004709 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03004710 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03004711 /* Reload cr2 if changed */
4712 "mov %c[cr2](%0), %%"R"ax \n\t"
4713 "mov %%cr2, %%"R"dx \n\t"
4714 "cmp %%"R"ax, %%"R"dx \n\t"
4715 "je 2f \n\t"
4716 "mov %%"R"ax, %%cr2 \n\t"
4717 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004718 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02004719 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004720 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03004721 "mov %c[rax](%0), %%"R"ax \n\t"
4722 "mov %c[rbx](%0), %%"R"bx \n\t"
4723 "mov %c[rdx](%0), %%"R"dx \n\t"
4724 "mov %c[rsi](%0), %%"R"si \n\t"
4725 "mov %c[rdi](%0), %%"R"di \n\t"
4726 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004727#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02004728 "mov %c[r8](%0), %%r8 \n\t"
4729 "mov %c[r9](%0), %%r9 \n\t"
4730 "mov %c[r10](%0), %%r10 \n\t"
4731 "mov %c[r11](%0), %%r11 \n\t"
4732 "mov %c[r12](%0), %%r12 \n\t"
4733 "mov %c[r13](%0), %%r13 \n\t"
4734 "mov %c[r14](%0), %%r14 \n\t"
4735 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004736#endif
Avi Kivityc8019492008-07-14 14:44:59 +03004737 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
4738
Avi Kivity6aa8b732006-12-10 02:21:36 -08004739 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03004740 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03004741 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03004742 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03004743 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03004744 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08004745 /* Save guest registers, load host registers, keep flags */
Avi Kivity40712fa2011-01-06 18:09:12 +02004746 "mov %0, %c[wordsize](%%"R"sp) \n\t"
4747 "pop %0 \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03004748 "mov %%"R"ax, %c[rax](%0) \n\t"
4749 "mov %%"R"bx, %c[rbx](%0) \n\t"
Avi Kivity1c696d02011-01-06 18:09:11 +02004750 "pop"Q" %c[rcx](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03004751 "mov %%"R"dx, %c[rdx](%0) \n\t"
4752 "mov %%"R"si, %c[rsi](%0) \n\t"
4753 "mov %%"R"di, %c[rdi](%0) \n\t"
4754 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004755#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02004756 "mov %%r8, %c[r8](%0) \n\t"
4757 "mov %%r9, %c[r9](%0) \n\t"
4758 "mov %%r10, %c[r10](%0) \n\t"
4759 "mov %%r11, %c[r11](%0) \n\t"
4760 "mov %%r12, %c[r12](%0) \n\t"
4761 "mov %%r13, %c[r13](%0) \n\t"
4762 "mov %%r14, %c[r14](%0) \n\t"
4763 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08004764#endif
Avi Kivityc8019492008-07-14 14:44:59 +03004765 "mov %%cr2, %%"R"ax \n\t"
4766 "mov %%"R"ax, %c[cr2](%0) \n\t"
4767
Avi Kivity1c696d02011-01-06 18:09:11 +02004768 "pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02004769 "setbe %c[fail](%0) \n\t"
4770 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03004771 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02004772 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03004773 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004774 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
4775 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
4776 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
4777 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
4778 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
4779 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
4780 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004781#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004782 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
4783 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
4784 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
4785 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
4786 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
4787 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
4788 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
4789 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08004790#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02004791 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
4792 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02004793 : "cc", "memory"
Jan Kiszka07d6f552010-09-28 16:37:42 +02004794 , R"ax", R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02004795#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02004796 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
4797#endif
4798 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08004799
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004800 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02004801 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivity69c73022011-03-07 15:26:44 +02004802 | (1 << VCPU_EXREG_CPL)
Avi Kivityaff48ba2010-12-05 18:56:11 +02004803 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03004804 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02004805 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03004806 vcpu->arch.regs_dirty = 0;
4807
Avi Kivity1155f762007-11-22 11:30:47 +02004808 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
4809
Mike Dayd77c26f2007-10-08 09:02:08 -04004810 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Nadav Har'Eld462b812011-05-24 15:26:10 +03004811 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02004812
Avi Kivity51aa01d2010-07-20 14:31:20 +03004813 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03004814
4815 vmx_complete_atomic_exit(vmx);
4816 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03004817 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004818}
4819
Avi Kivityc8019492008-07-14 14:44:59 +03004820#undef R
4821#undef Q
4822
Avi Kivity6aa8b732006-12-10 02:21:36 -08004823static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
4824{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004825 struct vcpu_vmx *vmx = to_vmx(vcpu);
4826
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004827 free_vpid(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004828 free_nested(vmx);
Nadav Har'Eld462b812011-05-24 15:26:10 +03004829 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004830 kfree(vmx->guest_msrs);
4831 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10004832 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004833}
4834
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004835static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004836{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004837 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10004838 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03004839 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004840
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004841 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004842 return ERR_PTR(-ENOMEM);
4843
Sheng Yang2384d2b2008-01-17 15:14:33 +08004844 allocate_vpid(vmx);
4845
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004846 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
4847 if (err)
4848 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08004849
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004850 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02004851 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004852 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004853 goto uninit_vcpu;
4854 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08004855
Nadav Har'Eld462b812011-05-24 15:26:10 +03004856 vmx->loaded_vmcs = &vmx->vmcs01;
4857 vmx->loaded_vmcs->vmcs = alloc_vmcs();
4858 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004859 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03004860 if (!vmm_exclusive)
4861 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
4862 loaded_vmcs_init(vmx->loaded_vmcs);
4863 if (!vmm_exclusive)
4864 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04004865
Avi Kivity15ad7142007-07-11 18:17:21 +03004866 cpu = get_cpu();
4867 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10004868 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10004869 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004870 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03004871 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004872 if (err)
4873 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02004874 if (vm_need_virtualize_apic_accesses(kvm))
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02004875 err = alloc_apic_access_page(kvm);
4876 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02004877 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08004878
Sheng Yangb927a3c2009-07-21 10:42:48 +08004879 if (enable_ept) {
4880 if (!kvm->arch.ept_identity_map_addr)
4881 kvm->arch.ept_identity_map_addr =
4882 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Gleb Natapov93ea5382011-02-21 12:07:59 +02004883 err = -ENOMEM;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004884 if (alloc_identity_pagetable(kvm) != 0)
4885 goto free_vmcs;
Gleb Natapov93ea5382011-02-21 12:07:59 +02004886 if (!init_rmode_identity_map(kvm))
4887 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08004888 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004889
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03004890 vmx->nested.current_vmptr = -1ull;
4891 vmx->nested.current_vmcs12 = NULL;
4892
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004893 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08004894
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004895free_vmcs:
Nadav Har'Eld462b812011-05-24 15:26:10 +03004896 free_vmcs(vmx->loaded_vmcs->vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004897free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004898 kfree(vmx->guest_msrs);
4899uninit_vcpu:
4900 kvm_vcpu_uninit(&vmx->vcpu);
4901free_vcpu:
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004902 free_vpid(vmx);
Rusty Russella4770342007-08-01 14:46:11 +10004903 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10004904 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004905}
4906
Yang, Sheng002c7f72007-07-31 14:23:01 +03004907static void __init vmx_check_processor_compat(void *rtn)
4908{
4909 struct vmcs_config vmcs_conf;
4910
4911 *(int *)rtn = 0;
4912 if (setup_vmcs_config(&vmcs_conf) < 0)
4913 *(int *)rtn = -EIO;
4914 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
4915 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
4916 smp_processor_id());
4917 *(int *)rtn = -EIO;
4918 }
4919}
4920
Sheng Yang67253af2008-04-25 10:20:22 +08004921static int get_ept_level(void)
4922{
4923 return VMX_EPT_DEFAULT_GAW + 1;
4924}
4925
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004926static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08004927{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004928 u64 ret;
4929
Sheng Yang522c68c2009-04-27 20:35:43 +08004930 /* For VT-d and EPT combination
4931 * 1. MMIO: always map as UC
4932 * 2. EPT with VT-d:
4933 * a. VT-d without snooping control feature: can't guarantee the
4934 * result, try to trust guest.
4935 * b. VT-d with snooping control feature: snooping control feature of
4936 * VT-d engine can guarantee the cache correctness. Just set it
4937 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08004938 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08004939 * consistent with host MTRR
4940 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004941 if (is_mmio)
4942 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08004943 else if (vcpu->kvm->arch.iommu_domain &&
4944 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
4945 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
4946 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004947 else
Sheng Yang522c68c2009-04-27 20:35:43 +08004948 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08004949 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08004950
4951 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08004952}
4953
Avi Kivityf4c9e872009-12-28 16:06:35 +02004954#define _ER(x) { EXIT_REASON_##x, #x }
4955
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004956static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02004957 _ER(EXCEPTION_NMI),
4958 _ER(EXTERNAL_INTERRUPT),
4959 _ER(TRIPLE_FAULT),
4960 _ER(PENDING_INTERRUPT),
4961 _ER(NMI_WINDOW),
4962 _ER(TASK_SWITCH),
4963 _ER(CPUID),
4964 _ER(HLT),
4965 _ER(INVLPG),
4966 _ER(RDPMC),
4967 _ER(RDTSC),
4968 _ER(VMCALL),
4969 _ER(VMCLEAR),
4970 _ER(VMLAUNCH),
4971 _ER(VMPTRLD),
4972 _ER(VMPTRST),
4973 _ER(VMREAD),
4974 _ER(VMRESUME),
4975 _ER(VMWRITE),
4976 _ER(VMOFF),
4977 _ER(VMON),
4978 _ER(CR_ACCESS),
4979 _ER(DR_ACCESS),
4980 _ER(IO_INSTRUCTION),
4981 _ER(MSR_READ),
4982 _ER(MSR_WRITE),
4983 _ER(MWAIT_INSTRUCTION),
4984 _ER(MONITOR_INSTRUCTION),
4985 _ER(PAUSE_INSTRUCTION),
4986 _ER(MCE_DURING_VMENTRY),
4987 _ER(TPR_BELOW_THRESHOLD),
4988 _ER(APIC_ACCESS),
4989 _ER(EPT_VIOLATION),
4990 _ER(EPT_MISCONFIG),
4991 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004992 { -1, NULL }
4993};
4994
Avi Kivityf4c9e872009-12-28 16:06:35 +02004995#undef _ER
4996
Sheng Yang17cc3932010-01-05 19:02:27 +08004997static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02004998{
Sheng Yang878403b2010-01-05 19:02:29 +08004999 if (enable_ept && !cpu_has_vmx_ept_1g_page())
5000 return PT_DIRECTORY_LEVEL;
5001 else
5002 /* For shadow and EPT supported 1GB page */
5003 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005004}
5005
Sheng Yang0e851882009-12-18 16:48:46 +08005006static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
5007{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005008 struct kvm_cpuid_entry2 *best;
5009 struct vcpu_vmx *vmx = to_vmx(vcpu);
5010 u32 exec_control;
5011
5012 vmx->rdtscp_enabled = false;
5013 if (vmx_rdtscp_supported()) {
5014 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5015 if (exec_control & SECONDARY_EXEC_RDTSCP) {
5016 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
5017 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
5018 vmx->rdtscp_enabled = true;
5019 else {
5020 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5021 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5022 exec_control);
5023 }
5024 }
5025 }
Sheng Yang0e851882009-12-18 16:48:46 +08005026}
5027
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005028static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5029{
5030}
5031
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005032static int vmx_check_intercept(struct kvm_vcpu *vcpu,
5033 struct x86_instruction_info *info,
5034 enum x86_intercept_stage stage)
5035{
5036 return X86EMUL_CONTINUE;
5037}
5038
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03005039static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005040 .cpu_has_kvm_support = cpu_has_kvm_support,
5041 .disabled_by_bios = vmx_disabled_by_bios,
5042 .hardware_setup = hardware_setup,
5043 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03005044 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005045 .hardware_enable = hardware_enable,
5046 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08005047 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005048
5049 .vcpu_create = vmx_create_vcpu,
5050 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005051 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005052
Avi Kivity04d2cc72007-09-10 18:10:54 +03005053 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005054 .vcpu_load = vmx_vcpu_load,
5055 .vcpu_put = vmx_vcpu_put,
5056
5057 .set_guest_debug = set_guest_debug,
5058 .get_msr = vmx_get_msr,
5059 .set_msr = vmx_set_msr,
5060 .get_segment_base = vmx_get_segment_base,
5061 .get_segment = vmx_get_segment,
5062 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02005063 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005064 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02005065 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02005066 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03005067 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005068 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005069 .set_cr3 = vmx_set_cr3,
5070 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005071 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005072 .get_idt = vmx_get_idt,
5073 .set_idt = vmx_set_idt,
5074 .get_gdt = vmx_get_gdt,
5075 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03005076 .set_dr7 = vmx_set_dr7,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005077 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005078 .get_rflags = vmx_get_rflags,
5079 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02005080 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02005081 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005082
5083 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005084
Avi Kivity6aa8b732006-12-10 02:21:36 -08005085 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02005086 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005087 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04005088 .set_interrupt_shadow = vmx_set_interrupt_shadow,
5089 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02005090 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03005091 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005092 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02005093 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03005094 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02005095 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005096 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005097 .get_nmi_mask = vmx_get_nmi_mask,
5098 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005099 .enable_nmi_window = enable_nmi_window,
5100 .enable_irq_window = enable_irq_window,
5101 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005102
Izik Eiduscbc94022007-10-25 00:29:55 +02005103 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08005104 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005105 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005106
Avi Kivity586f9602010-11-18 13:09:54 +02005107 .get_exit_info = vmx_get_exit_info,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005108 .exit_reasons_str = vmx_exit_reasons_str,
Avi Kivity586f9602010-11-18 13:09:54 +02005109
Sheng Yang17cc3932010-01-05 19:02:27 +08005110 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08005111
5112 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005113
5114 .rdtscp_supported = vmx_rdtscp_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005115
5116 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005117
5118 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005119
Joerg Roedel4051b182011-03-25 09:44:49 +01005120 .set_tsc_khz = vmx_set_tsc_khz,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005121 .write_tsc_offset = vmx_write_tsc_offset,
Zachary Amsdene48672f2010-08-19 22:07:23 -10005122 .adjust_tsc_offset = vmx_adjust_tsc_offset,
Joerg Roedel857e4092011-03-25 09:44:50 +01005123 .compute_tsc_offset = vmx_compute_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005124
5125 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005126
5127 .check_intercept = vmx_check_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005128};
5129
5130static int __init vmx_init(void)
5131{
Avi Kivity26bb0982009-09-07 11:14:12 +03005132 int r, i;
5133
5134 rdmsrl_safe(MSR_EFER, &host_efer);
5135
5136 for (i = 0; i < NR_VMX_MSR; ++i)
5137 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03005138
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005139 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03005140 if (!vmx_io_bitmap_a)
5141 return -ENOMEM;
5142
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005143 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03005144 if (!vmx_io_bitmap_b) {
5145 r = -ENOMEM;
5146 goto out;
5147 }
5148
Avi Kivity58972972009-02-24 22:26:47 +02005149 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
5150 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08005151 r = -ENOMEM;
5152 goto out1;
5153 }
5154
Avi Kivity58972972009-02-24 22:26:47 +02005155 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
5156 if (!vmx_msr_bitmap_longmode) {
5157 r = -ENOMEM;
5158 goto out2;
5159 }
5160
He, Qingfdef3ad2007-04-30 09:45:24 +03005161 /*
5162 * Allow direct access to the PC debug port (it is often used for I/O
5163 * delays, but the vmexits simply slow things down).
5164 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005165 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
5166 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005167
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005168 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03005169
Avi Kivity58972972009-02-24 22:26:47 +02005170 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
5171 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08005172
Sheng Yang2384d2b2008-01-17 15:14:33 +08005173 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
5174
Avi Kivity0ee75be2010-04-28 15:39:01 +03005175 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
5176 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03005177 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02005178 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08005179
Avi Kivity58972972009-02-24 22:26:47 +02005180 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
5181 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
5182 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
5183 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
5184 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
5185 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03005186
Avi Kivity089d0342009-03-23 18:26:32 +02005187 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08005188 bypass_guest_pf = 0;
Sheng Yang534e38b2008-09-08 15:12:30 +08005189 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005190 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08005191 kvm_enable_tdp();
5192 } else
5193 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08005194
Avi Kivityc7addb92007-09-16 18:58:32 +02005195 if (bypass_guest_pf)
5196 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
5197
He, Qingfdef3ad2007-04-30 09:45:24 +03005198 return 0;
5199
Avi Kivity58972972009-02-24 22:26:47 +02005200out3:
5201 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08005202out2:
Avi Kivity58972972009-02-24 22:26:47 +02005203 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03005204out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005205 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03005206out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005207 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005208 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005209}
5210
5211static void __exit vmx_exit(void)
5212{
Avi Kivity58972972009-02-24 22:26:47 +02005213 free_page((unsigned long)vmx_msr_bitmap_legacy);
5214 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005215 free_page((unsigned long)vmx_io_bitmap_b);
5216 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005217
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005218 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08005219}
5220
5221module_init(vmx_init)
5222module_exit(vmx_exit)