blob: 33476eb152eaaf7eca00bfd44f7e82b2624a62f2 [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
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300122#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300123
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400124struct vmcs {
125 u32 revision_id;
126 u32 abort;
127 char data[0];
128};
129
Nadav Har'Eld462b812011-05-24 15:26:10 +0300130/*
131 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
132 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
133 * loaded on this CPU (so we can clear them if the CPU goes down).
134 */
135struct loaded_vmcs {
136 struct vmcs *vmcs;
137 int cpu;
138 int launched;
139 struct list_head loaded_vmcss_on_cpu_link;
140};
141
Avi Kivity26bb0982009-09-07 11:14:12 +0300142struct shared_msr_entry {
143 unsigned index;
144 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200145 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300146};
147
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300148/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300149 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
150 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
151 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
152 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
153 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
154 * More than one of these structures may exist, if L1 runs multiple L2 guests.
155 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
156 * underlying hardware which will be used to run L2.
157 * This structure is packed to ensure that its layout is identical across
158 * machines (necessary for live migration).
159 * If there are changes in this struct, VMCS12_REVISION must be changed.
160 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300161typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300162struct __packed vmcs12 {
163 /* According to the Intel spec, a VMCS region must start with the
164 * following two fields. Then follow implementation-specific data.
165 */
166 u32 revision_id;
167 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300168
169 u64 io_bitmap_a;
170 u64 io_bitmap_b;
171 u64 msr_bitmap;
172 u64 vm_exit_msr_store_addr;
173 u64 vm_exit_msr_load_addr;
174 u64 vm_entry_msr_load_addr;
175 u64 tsc_offset;
176 u64 virtual_apic_page_addr;
177 u64 apic_access_addr;
178 u64 ept_pointer;
179 u64 guest_physical_address;
180 u64 vmcs_link_pointer;
181 u64 guest_ia32_debugctl;
182 u64 guest_ia32_pat;
183 u64 guest_ia32_efer;
184 u64 guest_ia32_perf_global_ctrl;
185 u64 guest_pdptr0;
186 u64 guest_pdptr1;
187 u64 guest_pdptr2;
188 u64 guest_pdptr3;
189 u64 host_ia32_pat;
190 u64 host_ia32_efer;
191 u64 host_ia32_perf_global_ctrl;
192 u64 padding64[8]; /* room for future expansion */
193 /*
194 * To allow migration of L1 (complete with its L2 guests) between
195 * machines of different natural widths (32 or 64 bit), we cannot have
196 * unsigned long fields with no explict size. We use u64 (aliased
197 * natural_width) instead. Luckily, x86 is little-endian.
198 */
199 natural_width cr0_guest_host_mask;
200 natural_width cr4_guest_host_mask;
201 natural_width cr0_read_shadow;
202 natural_width cr4_read_shadow;
203 natural_width cr3_target_value0;
204 natural_width cr3_target_value1;
205 natural_width cr3_target_value2;
206 natural_width cr3_target_value3;
207 natural_width exit_qualification;
208 natural_width guest_linear_address;
209 natural_width guest_cr0;
210 natural_width guest_cr3;
211 natural_width guest_cr4;
212 natural_width guest_es_base;
213 natural_width guest_cs_base;
214 natural_width guest_ss_base;
215 natural_width guest_ds_base;
216 natural_width guest_fs_base;
217 natural_width guest_gs_base;
218 natural_width guest_ldtr_base;
219 natural_width guest_tr_base;
220 natural_width guest_gdtr_base;
221 natural_width guest_idtr_base;
222 natural_width guest_dr7;
223 natural_width guest_rsp;
224 natural_width guest_rip;
225 natural_width guest_rflags;
226 natural_width guest_pending_dbg_exceptions;
227 natural_width guest_sysenter_esp;
228 natural_width guest_sysenter_eip;
229 natural_width host_cr0;
230 natural_width host_cr3;
231 natural_width host_cr4;
232 natural_width host_fs_base;
233 natural_width host_gs_base;
234 natural_width host_tr_base;
235 natural_width host_gdtr_base;
236 natural_width host_idtr_base;
237 natural_width host_ia32_sysenter_esp;
238 natural_width host_ia32_sysenter_eip;
239 natural_width host_rsp;
240 natural_width host_rip;
241 natural_width paddingl[8]; /* room for future expansion */
242 u32 pin_based_vm_exec_control;
243 u32 cpu_based_vm_exec_control;
244 u32 exception_bitmap;
245 u32 page_fault_error_code_mask;
246 u32 page_fault_error_code_match;
247 u32 cr3_target_count;
248 u32 vm_exit_controls;
249 u32 vm_exit_msr_store_count;
250 u32 vm_exit_msr_load_count;
251 u32 vm_entry_controls;
252 u32 vm_entry_msr_load_count;
253 u32 vm_entry_intr_info_field;
254 u32 vm_entry_exception_error_code;
255 u32 vm_entry_instruction_len;
256 u32 tpr_threshold;
257 u32 secondary_vm_exec_control;
258 u32 vm_instruction_error;
259 u32 vm_exit_reason;
260 u32 vm_exit_intr_info;
261 u32 vm_exit_intr_error_code;
262 u32 idt_vectoring_info_field;
263 u32 idt_vectoring_error_code;
264 u32 vm_exit_instruction_len;
265 u32 vmx_instruction_info;
266 u32 guest_es_limit;
267 u32 guest_cs_limit;
268 u32 guest_ss_limit;
269 u32 guest_ds_limit;
270 u32 guest_fs_limit;
271 u32 guest_gs_limit;
272 u32 guest_ldtr_limit;
273 u32 guest_tr_limit;
274 u32 guest_gdtr_limit;
275 u32 guest_idtr_limit;
276 u32 guest_es_ar_bytes;
277 u32 guest_cs_ar_bytes;
278 u32 guest_ss_ar_bytes;
279 u32 guest_ds_ar_bytes;
280 u32 guest_fs_ar_bytes;
281 u32 guest_gs_ar_bytes;
282 u32 guest_ldtr_ar_bytes;
283 u32 guest_tr_ar_bytes;
284 u32 guest_interruptibility_info;
285 u32 guest_activity_state;
286 u32 guest_sysenter_cs;
287 u32 host_ia32_sysenter_cs;
288 u32 padding32[8]; /* room for future expansion */
289 u16 virtual_processor_id;
290 u16 guest_es_selector;
291 u16 guest_cs_selector;
292 u16 guest_ss_selector;
293 u16 guest_ds_selector;
294 u16 guest_fs_selector;
295 u16 guest_gs_selector;
296 u16 guest_ldtr_selector;
297 u16 guest_tr_selector;
298 u16 host_es_selector;
299 u16 host_cs_selector;
300 u16 host_ss_selector;
301 u16 host_ds_selector;
302 u16 host_fs_selector;
303 u16 host_gs_selector;
304 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300305};
306
307/*
308 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
309 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
310 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
311 */
312#define VMCS12_REVISION 0x11e57ed0
313
314/*
315 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
316 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
317 * current implementation, 4K are reserved to avoid future complications.
318 */
319#define VMCS12_SIZE 0x1000
320
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300321/* Used to remember the last vmcs02 used for some recently used vmcs12s */
322struct vmcs02_list {
323 struct list_head list;
324 gpa_t vmptr;
325 struct loaded_vmcs vmcs02;
326};
327
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300328/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300329 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
330 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
331 */
332struct nested_vmx {
333 /* Has the level1 guest done vmxon? */
334 bool vmxon;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300335
336 /* The guest-physical address of the current VMCS L1 keeps for L2 */
337 gpa_t current_vmptr;
338 /* The host-usable pointer to the above */
339 struct page *current_vmcs12_page;
340 struct vmcs12 *current_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300341
342 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
343 struct list_head vmcs02_pool;
344 int vmcs02_num;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300345};
346
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400347struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000348 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300349 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300350 u8 fail;
Avi Kivity69c73022011-03-07 15:26:44 +0200351 u8 cpl;
Avi Kivity9d58b932011-03-07 16:52:07 +0200352 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300353 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200354 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200355 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300356 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400357 int nmsrs;
358 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400359#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300360 u64 msr_host_kernel_gs_base;
361 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400362#endif
Nadav Har'Eld462b812011-05-24 15:26:10 +0300363 /*
364 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
365 * non-nested (L1) guest, it always points to vmcs01. For a nested
366 * guest (L2), it points to a different VMCS.
367 */
368 struct loaded_vmcs vmcs01;
369 struct loaded_vmcs *loaded_vmcs;
370 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300371 struct msr_autoload {
372 unsigned nr;
373 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
374 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
375 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400376 struct {
377 int loaded;
378 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200379 int gs_ldt_reload_needed;
380 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400381 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200382 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300383 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300384 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300385 struct kvm_save_segment {
386 u16 selector;
387 unsigned long base;
388 u32 limit;
389 u32 ar;
390 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200391 } rmode;
Avi Kivity2fb92db2011-04-27 19:42:18 +0300392 struct {
393 u32 bitmask; /* 4 bits per segment (1 bit per field) */
394 struct kvm_save_segment seg[8];
395 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800396 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300397 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200398
399 /* Support for vnmi-less CPUs */
400 int soft_vnmi_blocked;
401 ktime_t entry_time;
402 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800403 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800404
405 bool rdtscp_enabled;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300406
407 /* Support for a guest hypervisor (nested VMX) */
408 struct nested_vmx nested;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400409};
410
Avi Kivity2fb92db2011-04-27 19:42:18 +0300411enum segment_cache_field {
412 SEG_FIELD_SEL = 0,
413 SEG_FIELD_BASE = 1,
414 SEG_FIELD_LIMIT = 2,
415 SEG_FIELD_AR = 3,
416
417 SEG_FIELD_NR = 4
418};
419
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400420static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
421{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000422 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400423}
424
Nadav Har'El22bd0352011-05-25 23:05:57 +0300425#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
426#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
427#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
428 [number##_HIGH] = VMCS12_OFFSET(name)+4
429
430static unsigned short vmcs_field_to_offset_table[] = {
431 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
432 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
433 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
434 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
435 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
436 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
437 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
438 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
439 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
440 FIELD(HOST_ES_SELECTOR, host_es_selector),
441 FIELD(HOST_CS_SELECTOR, host_cs_selector),
442 FIELD(HOST_SS_SELECTOR, host_ss_selector),
443 FIELD(HOST_DS_SELECTOR, host_ds_selector),
444 FIELD(HOST_FS_SELECTOR, host_fs_selector),
445 FIELD(HOST_GS_SELECTOR, host_gs_selector),
446 FIELD(HOST_TR_SELECTOR, host_tr_selector),
447 FIELD64(IO_BITMAP_A, io_bitmap_a),
448 FIELD64(IO_BITMAP_B, io_bitmap_b),
449 FIELD64(MSR_BITMAP, msr_bitmap),
450 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
451 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
452 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
453 FIELD64(TSC_OFFSET, tsc_offset),
454 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
455 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
456 FIELD64(EPT_POINTER, ept_pointer),
457 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
458 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
459 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
460 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
461 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
462 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
463 FIELD64(GUEST_PDPTR0, guest_pdptr0),
464 FIELD64(GUEST_PDPTR1, guest_pdptr1),
465 FIELD64(GUEST_PDPTR2, guest_pdptr2),
466 FIELD64(GUEST_PDPTR3, guest_pdptr3),
467 FIELD64(HOST_IA32_PAT, host_ia32_pat),
468 FIELD64(HOST_IA32_EFER, host_ia32_efer),
469 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
470 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
471 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
472 FIELD(EXCEPTION_BITMAP, exception_bitmap),
473 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
474 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
475 FIELD(CR3_TARGET_COUNT, cr3_target_count),
476 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
477 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
478 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
479 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
480 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
481 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
482 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
483 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
484 FIELD(TPR_THRESHOLD, tpr_threshold),
485 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
486 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
487 FIELD(VM_EXIT_REASON, vm_exit_reason),
488 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
489 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
490 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
491 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
492 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
493 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
494 FIELD(GUEST_ES_LIMIT, guest_es_limit),
495 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
496 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
497 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
498 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
499 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
500 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
501 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
502 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
503 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
504 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
505 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
506 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
507 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
508 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
509 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
510 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
511 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
512 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
513 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
514 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
515 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
516 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
517 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
518 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
519 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
520 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
521 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
522 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
523 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
524 FIELD(EXIT_QUALIFICATION, exit_qualification),
525 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
526 FIELD(GUEST_CR0, guest_cr0),
527 FIELD(GUEST_CR3, guest_cr3),
528 FIELD(GUEST_CR4, guest_cr4),
529 FIELD(GUEST_ES_BASE, guest_es_base),
530 FIELD(GUEST_CS_BASE, guest_cs_base),
531 FIELD(GUEST_SS_BASE, guest_ss_base),
532 FIELD(GUEST_DS_BASE, guest_ds_base),
533 FIELD(GUEST_FS_BASE, guest_fs_base),
534 FIELD(GUEST_GS_BASE, guest_gs_base),
535 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
536 FIELD(GUEST_TR_BASE, guest_tr_base),
537 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
538 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
539 FIELD(GUEST_DR7, guest_dr7),
540 FIELD(GUEST_RSP, guest_rsp),
541 FIELD(GUEST_RIP, guest_rip),
542 FIELD(GUEST_RFLAGS, guest_rflags),
543 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
544 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
545 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
546 FIELD(HOST_CR0, host_cr0),
547 FIELD(HOST_CR3, host_cr3),
548 FIELD(HOST_CR4, host_cr4),
549 FIELD(HOST_FS_BASE, host_fs_base),
550 FIELD(HOST_GS_BASE, host_gs_base),
551 FIELD(HOST_TR_BASE, host_tr_base),
552 FIELD(HOST_GDTR_BASE, host_gdtr_base),
553 FIELD(HOST_IDTR_BASE, host_idtr_base),
554 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
555 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
556 FIELD(HOST_RSP, host_rsp),
557 FIELD(HOST_RIP, host_rip),
558};
559static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table);
560
561static inline short vmcs_field_to_offset(unsigned long field)
562{
563 if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0)
564 return -1;
565 return vmcs_field_to_offset_table[field];
566}
567
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300568static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
569{
570 return to_vmx(vcpu)->nested.current_vmcs12;
571}
572
573static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
574{
575 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
576 if (is_error_page(page)) {
577 kvm_release_page_clean(page);
578 return NULL;
579 }
580 return page;
581}
582
583static void nested_release_page(struct page *page)
584{
585 kvm_release_page_dirty(page);
586}
587
588static void nested_release_page_clean(struct page *page)
589{
590 kvm_release_page_clean(page);
591}
592
Sheng Yang4e1096d2008-07-06 19:16:51 +0800593static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800594static void kvm_cpu_vmxon(u64 addr);
595static void kvm_cpu_vmxoff(void);
Avi Kivityaff48ba2010-12-05 18:56:11 +0200596static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200597static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Avi Kivity75880a02007-06-20 11:20:04 +0300598
Avi Kivity6aa8b732006-12-10 02:21:36 -0800599static DEFINE_PER_CPU(struct vmcs *, vmxarea);
600static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300601/*
602 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
603 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
604 */
605static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300606static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200608static unsigned long *vmx_io_bitmap_a;
609static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200610static unsigned long *vmx_msr_bitmap_legacy;
611static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300612
Avi Kivity110312c2010-12-21 12:54:20 +0200613static bool cpu_has_load_ia32_efer;
614
Sheng Yang2384d2b2008-01-17 15:14:33 +0800615static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
616static DEFINE_SPINLOCK(vmx_vpid_lock);
617
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300618static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800619 int size;
620 int order;
621 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300622 u32 pin_based_exec_ctrl;
623 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800624 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300625 u32 vmexit_ctrl;
626 u32 vmentry_ctrl;
627} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800628
Hannes Ederefff9e52008-11-28 17:02:06 +0100629static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800630 u32 ept;
631 u32 vpid;
632} vmx_capability;
633
Avi Kivity6aa8b732006-12-10 02:21:36 -0800634#define VMX_SEGMENT_FIELD(seg) \
635 [VCPU_SREG_##seg] = { \
636 .selector = GUEST_##seg##_SELECTOR, \
637 .base = GUEST_##seg##_BASE, \
638 .limit = GUEST_##seg##_LIMIT, \
639 .ar_bytes = GUEST_##seg##_AR_BYTES, \
640 }
641
642static struct kvm_vmx_segment_field {
643 unsigned selector;
644 unsigned base;
645 unsigned limit;
646 unsigned ar_bytes;
647} kvm_vmx_segment_fields[] = {
648 VMX_SEGMENT_FIELD(CS),
649 VMX_SEGMENT_FIELD(DS),
650 VMX_SEGMENT_FIELD(ES),
651 VMX_SEGMENT_FIELD(FS),
652 VMX_SEGMENT_FIELD(GS),
653 VMX_SEGMENT_FIELD(SS),
654 VMX_SEGMENT_FIELD(TR),
655 VMX_SEGMENT_FIELD(LDTR),
656};
657
Avi Kivity26bb0982009-09-07 11:14:12 +0300658static u64 host_efer;
659
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300660static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
661
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300662/*
Brian Gerst8c065852010-07-17 09:03:26 -0400663 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300664 * away by decrementing the array size.
665 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800666static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800667#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300668 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800669#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400670 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800671};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200672#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800673
Gui Jianfeng31299942010-03-15 17:29:09 +0800674static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800675{
676 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
677 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100678 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679}
680
Gui Jianfeng31299942010-03-15 17:29:09 +0800681static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300682{
683 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
684 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100685 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300686}
687
Gui Jianfeng31299942010-03-15 17:29:09 +0800688static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500689{
690 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
691 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100692 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500693}
694
Gui Jianfeng31299942010-03-15 17:29:09 +0800695static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800696{
697 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
698 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
699}
700
Gui Jianfeng31299942010-03-15 17:29:09 +0800701static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800702{
703 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
704 INTR_INFO_VALID_MASK)) ==
705 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
706}
707
Gui Jianfeng31299942010-03-15 17:29:09 +0800708static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +0800709{
Sheng Yang04547152009-04-01 15:52:31 +0800710 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800711}
712
Gui Jianfeng31299942010-03-15 17:29:09 +0800713static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800714{
Sheng Yang04547152009-04-01 15:52:31 +0800715 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800716}
717
Gui Jianfeng31299942010-03-15 17:29:09 +0800718static inline bool vm_need_tpr_shadow(struct kvm *kvm)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800719{
Sheng Yang04547152009-04-01 15:52:31 +0800720 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800721}
722
Gui Jianfeng31299942010-03-15 17:29:09 +0800723static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800724{
Sheng Yang04547152009-04-01 15:52:31 +0800725 return vmcs_config.cpu_based_exec_ctrl &
726 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800727}
728
Avi Kivity774ead32007-12-26 13:57:04 +0200729static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800730{
Sheng Yang04547152009-04-01 15:52:31 +0800731 return vmcs_config.cpu_based_2nd_exec_ctrl &
732 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
733}
734
735static inline bool cpu_has_vmx_flexpriority(void)
736{
737 return cpu_has_vmx_tpr_shadow() &&
738 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800739}
740
Marcelo Tosattie7997942009-06-11 12:07:40 -0300741static inline bool cpu_has_vmx_ept_execute_only(void)
742{
Gui Jianfeng31299942010-03-15 17:29:09 +0800743 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300744}
745
746static inline bool cpu_has_vmx_eptp_uncacheable(void)
747{
Gui Jianfeng31299942010-03-15 17:29:09 +0800748 return vmx_capability.ept & VMX_EPTP_UC_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300749}
750
751static inline bool cpu_has_vmx_eptp_writeback(void)
752{
Gui Jianfeng31299942010-03-15 17:29:09 +0800753 return vmx_capability.ept & VMX_EPTP_WB_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300754}
755
756static inline bool cpu_has_vmx_ept_2m_page(void)
757{
Gui Jianfeng31299942010-03-15 17:29:09 +0800758 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300759}
760
Sheng Yang878403b2010-01-05 19:02:29 +0800761static inline bool cpu_has_vmx_ept_1g_page(void)
762{
Gui Jianfeng31299942010-03-15 17:29:09 +0800763 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +0800764}
765
Sheng Yang4bc9b982010-06-02 14:05:24 +0800766static inline bool cpu_has_vmx_ept_4levels(void)
767{
768 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
769}
770
Gui Jianfeng31299942010-03-15 17:29:09 +0800771static inline bool cpu_has_vmx_invept_individual_addr(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800772{
Gui Jianfeng31299942010-03-15 17:29:09 +0800773 return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800774}
775
Gui Jianfeng31299942010-03-15 17:29:09 +0800776static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800777{
Gui Jianfeng31299942010-03-15 17:29:09 +0800778 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800779}
780
Gui Jianfeng31299942010-03-15 17:29:09 +0800781static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800782{
Gui Jianfeng31299942010-03-15 17:29:09 +0800783 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800784}
785
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800786static inline bool cpu_has_vmx_invvpid_single(void)
787{
788 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
789}
790
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800791static inline bool cpu_has_vmx_invvpid_global(void)
792{
793 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
794}
795
Gui Jianfeng31299942010-03-15 17:29:09 +0800796static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800797{
Sheng Yang04547152009-04-01 15:52:31 +0800798 return vmcs_config.cpu_based_2nd_exec_ctrl &
799 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800800}
801
Gui Jianfeng31299942010-03-15 17:29:09 +0800802static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700803{
804 return vmcs_config.cpu_based_2nd_exec_ctrl &
805 SECONDARY_EXEC_UNRESTRICTED_GUEST;
806}
807
Gui Jianfeng31299942010-03-15 17:29:09 +0800808static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800809{
810 return vmcs_config.cpu_based_2nd_exec_ctrl &
811 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
812}
813
Gui Jianfeng31299942010-03-15 17:29:09 +0800814static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800815{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800816 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800817}
818
Gui Jianfeng31299942010-03-15 17:29:09 +0800819static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800820{
Sheng Yang04547152009-04-01 15:52:31 +0800821 return vmcs_config.cpu_based_2nd_exec_ctrl &
822 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800823}
824
Gui Jianfeng31299942010-03-15 17:29:09 +0800825static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800826{
827 return vmcs_config.cpu_based_2nd_exec_ctrl &
828 SECONDARY_EXEC_RDTSCP;
829}
830
Gui Jianfeng31299942010-03-15 17:29:09 +0800831static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +0800832{
833 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
834}
835
Sheng Yangf5f48ee2010-06-30 12:25:15 +0800836static inline bool cpu_has_vmx_wbinvd_exit(void)
837{
838 return vmcs_config.cpu_based_2nd_exec_ctrl &
839 SECONDARY_EXEC_WBINVD_EXITING;
840}
841
Sheng Yang04547152009-04-01 15:52:31 +0800842static inline bool report_flexpriority(void)
843{
844 return flexpriority_enabled;
845}
846
Rusty Russell8b9cf982007-07-30 16:31:43 +1000847static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800848{
849 int i;
850
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400851 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300852 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300853 return i;
854 return -1;
855}
856
Sheng Yang2384d2b2008-01-17 15:14:33 +0800857static inline void __invvpid(int ext, u16 vpid, gva_t gva)
858{
859 struct {
860 u64 vpid : 16;
861 u64 rsvd : 48;
862 u64 gva;
863 } operand = { vpid, 0, gva };
864
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300865 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800866 /* CF==1 or ZF==1 --> rc = -1 */
867 "; ja 1f ; ud2 ; 1:"
868 : : "a"(&operand), "c"(ext) : "cc", "memory");
869}
870
Sheng Yang14394422008-04-28 12:24:45 +0800871static inline void __invept(int ext, u64 eptp, gpa_t gpa)
872{
873 struct {
874 u64 eptp, gpa;
875 } operand = {eptp, gpa};
876
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300877 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800878 /* CF==1 or ZF==1 --> rc = -1 */
879 "; ja 1f ; ud2 ; 1:\n"
880 : : "a" (&operand), "c" (ext) : "cc", "memory");
881}
882
Avi Kivity26bb0982009-09-07 11:14:12 +0300883static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300884{
885 int i;
886
Rusty Russell8b9cf982007-07-30 16:31:43 +1000887 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300888 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400889 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000890 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800891}
892
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893static void vmcs_clear(struct vmcs *vmcs)
894{
895 u64 phys_addr = __pa(vmcs);
896 u8 error;
897
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300898 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200899 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900 : "cc", "memory");
901 if (error)
902 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
903 vmcs, phys_addr);
904}
905
Nadav Har'Eld462b812011-05-24 15:26:10 +0300906static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
907{
908 vmcs_clear(loaded_vmcs->vmcs);
909 loaded_vmcs->cpu = -1;
910 loaded_vmcs->launched = 0;
911}
912
Dongxiao Xu7725b892010-05-11 18:29:38 +0800913static void vmcs_load(struct vmcs *vmcs)
914{
915 u64 phys_addr = __pa(vmcs);
916 u8 error;
917
918 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200919 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +0800920 : "cc", "memory");
921 if (error)
922 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
923 vmcs, phys_addr);
924}
925
Nadav Har'Eld462b812011-05-24 15:26:10 +0300926static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300928 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800929 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930
Nadav Har'Eld462b812011-05-24 15:26:10 +0300931 if (loaded_vmcs->cpu != cpu)
932 return; /* vcpu migration can race with cpu offline */
933 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 per_cpu(current_vmcs, cpu) = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300935 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
936 loaded_vmcs_init(loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937}
938
Nadav Har'Eld462b812011-05-24 15:26:10 +0300939static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800940{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300941 if (loaded_vmcs->cpu != -1)
942 smp_call_function_single(
943 loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800944}
945
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800946static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800947{
948 if (vmx->vpid == 0)
949 return;
950
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800951 if (cpu_has_vmx_invvpid_single())
952 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800953}
954
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800955static inline void vpid_sync_vcpu_global(void)
956{
957 if (cpu_has_vmx_invvpid_global())
958 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
959}
960
961static inline void vpid_sync_context(struct vcpu_vmx *vmx)
962{
963 if (cpu_has_vmx_invvpid_single())
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800964 vpid_sync_vcpu_single(vmx);
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800965 else
966 vpid_sync_vcpu_global();
967}
968
Sheng Yang14394422008-04-28 12:24:45 +0800969static inline void ept_sync_global(void)
970{
971 if (cpu_has_vmx_invept_global())
972 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
973}
974
975static inline void ept_sync_context(u64 eptp)
976{
Avi Kivity089d0342009-03-23 18:26:32 +0200977 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800978 if (cpu_has_vmx_invept_context())
979 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
980 else
981 ept_sync_global();
982 }
983}
984
985static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
986{
Avi Kivity089d0342009-03-23 18:26:32 +0200987 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +0800988 if (cpu_has_vmx_invept_individual_addr())
989 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
990 eptp, gpa);
991 else
992 ept_sync_context(eptp);
993 }
994}
995
Avi Kivity96304212011-05-15 10:13:13 -0400996static __always_inline unsigned long vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800997{
Avi Kivity5e520e62011-05-15 10:13:12 -0400998 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800999
Avi Kivity5e520e62011-05-15 10:13:12 -04001000 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1001 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001002 return value;
1003}
1004
Avi Kivity96304212011-05-15 10:13:13 -04001005static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001006{
1007 return vmcs_readl(field);
1008}
1009
Avi Kivity96304212011-05-15 10:13:13 -04001010static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001011{
1012 return vmcs_readl(field);
1013}
1014
Avi Kivity96304212011-05-15 10:13:13 -04001015static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001016{
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001017#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001018 return vmcs_readl(field);
1019#else
1020 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
1021#endif
1022}
1023
Avi Kivitye52de1b2007-01-05 16:36:56 -08001024static noinline void vmwrite_error(unsigned long field, unsigned long value)
1025{
1026 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1027 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1028 dump_stack();
1029}
1030
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031static void vmcs_writel(unsigned long field, unsigned long value)
1032{
1033 u8 error;
1034
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001035 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001036 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001037 if (unlikely(error))
1038 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039}
1040
1041static void vmcs_write16(unsigned long field, u16 value)
1042{
1043 vmcs_writel(field, value);
1044}
1045
1046static void vmcs_write32(unsigned long field, u32 value)
1047{
1048 vmcs_writel(field, value);
1049}
1050
1051static void vmcs_write64(unsigned long field, u64 value)
1052{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001054#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 asm volatile ("");
1056 vmcs_writel(field+1, value >> 32);
1057#endif
1058}
1059
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001060static void vmcs_clear_bits(unsigned long field, u32 mask)
1061{
1062 vmcs_writel(field, vmcs_readl(field) & ~mask);
1063}
1064
1065static void vmcs_set_bits(unsigned long field, u32 mask)
1066{
1067 vmcs_writel(field, vmcs_readl(field) | mask);
1068}
1069
Avi Kivity2fb92db2011-04-27 19:42:18 +03001070static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1071{
1072 vmx->segment_cache.bitmask = 0;
1073}
1074
1075static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1076 unsigned field)
1077{
1078 bool ret;
1079 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1080
1081 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1082 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1083 vmx->segment_cache.bitmask = 0;
1084 }
1085 ret = vmx->segment_cache.bitmask & mask;
1086 vmx->segment_cache.bitmask |= mask;
1087 return ret;
1088}
1089
1090static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1091{
1092 u16 *p = &vmx->segment_cache.seg[seg].selector;
1093
1094 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1095 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1096 return *p;
1097}
1098
1099static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1100{
1101 ulong *p = &vmx->segment_cache.seg[seg].base;
1102
1103 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1104 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1105 return *p;
1106}
1107
1108static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1109{
1110 u32 *p = &vmx->segment_cache.seg[seg].limit;
1111
1112 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1113 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1114 return *p;
1115}
1116
1117static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1118{
1119 u32 *p = &vmx->segment_cache.seg[seg].ar;
1120
1121 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1122 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1123 return *p;
1124}
1125
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001126static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1127{
1128 u32 eb;
1129
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001130 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
1131 (1u << NM_VECTOR) | (1u << DB_VECTOR);
1132 if ((vcpu->guest_debug &
1133 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1134 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1135 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001136 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001137 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001138 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001139 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001140 if (vcpu->fpu_active)
1141 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001142 vmcs_write32(EXCEPTION_BITMAP, eb);
1143}
1144
Avi Kivity61d2ef22010-04-28 16:40:38 +03001145static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1146{
1147 unsigned i;
1148 struct msr_autoload *m = &vmx->msr_autoload;
1149
Avi Kivity110312c2010-12-21 12:54:20 +02001150 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1151 vmcs_clear_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1152 vmcs_clear_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1153 return;
1154 }
1155
Avi Kivity61d2ef22010-04-28 16:40:38 +03001156 for (i = 0; i < m->nr; ++i)
1157 if (m->guest[i].index == msr)
1158 break;
1159
1160 if (i == m->nr)
1161 return;
1162 --m->nr;
1163 m->guest[i] = m->guest[m->nr];
1164 m->host[i] = m->host[m->nr];
1165 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1166 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1167}
1168
1169static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1170 u64 guest_val, u64 host_val)
1171{
1172 unsigned i;
1173 struct msr_autoload *m = &vmx->msr_autoload;
1174
Avi Kivity110312c2010-12-21 12:54:20 +02001175 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1176 vmcs_write64(GUEST_IA32_EFER, guest_val);
1177 vmcs_write64(HOST_IA32_EFER, host_val);
1178 vmcs_set_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1179 vmcs_set_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1180 return;
1181 }
1182
Avi Kivity61d2ef22010-04-28 16:40:38 +03001183 for (i = 0; i < m->nr; ++i)
1184 if (m->guest[i].index == msr)
1185 break;
1186
1187 if (i == m->nr) {
1188 ++m->nr;
1189 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1190 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1191 }
1192
1193 m->guest[i].index = msr;
1194 m->guest[i].value = guest_val;
1195 m->host[i].index = msr;
1196 m->host[i].value = host_val;
1197}
1198
Avi Kivity33ed6322007-05-02 16:54:03 +03001199static void reload_tss(void)
1200{
Avi Kivity33ed6322007-05-02 16:54:03 +03001201 /*
1202 * VT restores TR but not its size. Useless.
1203 */
Avi Kivityd3591922010-07-26 18:32:39 +03001204 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001205 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001206
Avi Kivityd3591922010-07-26 18:32:39 +03001207 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001208 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1209 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001210}
1211
Avi Kivity92c0d902009-10-29 11:00:16 +02001212static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001213{
Roel Kluin3a34a882009-08-04 02:08:45 -07001214 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001215 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001216
Avi Kivityf6801df2010-01-21 15:31:50 +02001217 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001218
Avi Kivity51c6cf62007-08-29 03:48:05 +03001219 /*
1220 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
1221 * outside long mode
1222 */
1223 ignore_bits = EFER_NX | EFER_SCE;
1224#ifdef CONFIG_X86_64
1225 ignore_bits |= EFER_LMA | EFER_LME;
1226 /* SCE is meaningful only in long mode on Intel */
1227 if (guest_efer & EFER_LMA)
1228 ignore_bits &= ~(u64)EFER_SCE;
1229#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001230 guest_efer &= ~ignore_bits;
1231 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001232 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001233 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001234
1235 clear_atomic_switch_msr(vmx, MSR_EFER);
1236 /* On ept, can't emulate nx, and must switch nx atomically */
1237 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
1238 guest_efer = vmx->vcpu.arch.efer;
1239 if (!(guest_efer & EFER_LMA))
1240 guest_efer &= ~EFER_LME;
1241 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
1242 return false;
1243 }
1244
Avi Kivity26bb0982009-09-07 11:14:12 +03001245 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001246}
1247
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001248static unsigned long segment_base(u16 selector)
1249{
Avi Kivityd3591922010-07-26 18:32:39 +03001250 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001251 struct desc_struct *d;
1252 unsigned long table_base;
1253 unsigned long v;
1254
1255 if (!(selector & ~3))
1256 return 0;
1257
Avi Kivityd3591922010-07-26 18:32:39 +03001258 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001259
1260 if (selector & 4) { /* from ldt */
1261 u16 ldt_selector = kvm_read_ldt();
1262
1263 if (!(ldt_selector & ~3))
1264 return 0;
1265
1266 table_base = segment_base(ldt_selector);
1267 }
1268 d = (struct desc_struct *)(table_base + (selector & ~7));
1269 v = get_desc_base(d);
1270#ifdef CONFIG_X86_64
1271 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1272 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1273#endif
1274 return v;
1275}
1276
1277static inline unsigned long kvm_read_tr_base(void)
1278{
1279 u16 tr;
1280 asm("str %0" : "=g"(tr));
1281 return segment_base(tr);
1282}
1283
Avi Kivity04d2cc72007-09-10 18:10:54 +03001284static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001285{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001286 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001287 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001288
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001289 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001290 return;
1291
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001292 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001293 /*
1294 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1295 * allow segment selectors with cpl > 0 or ti == 1.
1296 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001297 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001298 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001299 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001300 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001301 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001302 vmx->host_state.fs_reload_needed = 0;
1303 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001304 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001305 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001306 }
Avi Kivity9581d442010-10-19 16:46:55 +02001307 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001308 if (!(vmx->host_state.gs_sel & 7))
1309 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001310 else {
1311 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001312 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001313 }
1314
1315#ifdef CONFIG_X86_64
1316 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1317 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1318#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001319 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1320 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001321#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001322
1323#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001324 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1325 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001326 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001327#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03001328 for (i = 0; i < vmx->save_nmsrs; ++i)
1329 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001330 vmx->guest_msrs[i].data,
1331 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001332}
1333
Avi Kivitya9b21b62008-06-24 11:48:49 +03001334static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001335{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001336 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001337 return;
1338
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001339 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001340 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001341#ifdef CONFIG_X86_64
1342 if (is_long_mode(&vmx->vcpu))
1343 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1344#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001345 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001346 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001347#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02001348 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001349#else
1350 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001351#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001352 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02001353 if (vmx->host_state.fs_reload_needed)
1354 loadsegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001355 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001356#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001357 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001358#endif
Avi Kivity1c11e712010-05-03 16:05:44 +03001359 if (current_thread_info()->status & TS_USEDFPU)
1360 clts();
Avi Kivity3444d7d2010-07-26 18:32:38 +03001361 load_gdt(&__get_cpu_var(host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03001362}
1363
Avi Kivitya9b21b62008-06-24 11:48:49 +03001364static void vmx_load_host_state(struct vcpu_vmx *vmx)
1365{
1366 preempt_disable();
1367 __vmx_load_host_state(vmx);
1368 preempt_enable();
1369}
1370
Avi Kivity6aa8b732006-12-10 02:21:36 -08001371/*
1372 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1373 * vcpu mutex is already taken.
1374 */
Avi Kivity15ad7142007-07-11 18:17:21 +03001375static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001376{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001377 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001378 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001379
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001380 if (!vmm_exclusive)
1381 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001382 else if (vmx->loaded_vmcs->cpu != cpu)
1383 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001384
Nadav Har'Eld462b812011-05-24 15:26:10 +03001385 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1386 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1387 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388 }
1389
Nadav Har'Eld462b812011-05-24 15:26:10 +03001390 if (vmx->loaded_vmcs->cpu != cpu) {
Avi Kivityd3591922010-07-26 18:32:39 +03001391 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392 unsigned long sysenter_esp;
1393
Avi Kivitya8eeb042010-05-10 12:34:53 +03001394 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001395 local_irq_disable();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001396 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1397 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001398 local_irq_enable();
1399
Avi Kivity6aa8b732006-12-10 02:21:36 -08001400 /*
1401 * Linux uses per-cpu TSS and GDT, so set these when switching
1402 * processors.
1403 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001404 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03001405 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406
1407 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1408 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Nadav Har'Eld462b812011-05-24 15:26:10 +03001409 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001410 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411}
1412
1413static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1414{
Avi Kivitya9b21b62008-06-24 11:48:49 +03001415 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001416 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001417 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1418 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001419 kvm_cpu_vmxoff();
1420 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421}
1422
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001423static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1424{
Avi Kivity81231c62010-01-24 16:26:40 +02001425 ulong cr0;
1426
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001427 if (vcpu->fpu_active)
1428 return;
1429 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02001430 cr0 = vmcs_readl(GUEST_CR0);
1431 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1432 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1433 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001434 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001435 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
1436 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001437}
1438
Avi Kivityedcafe32009-12-30 18:07:40 +02001439static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1440
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001441static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1442{
Avi Kivityedcafe32009-12-30 18:07:40 +02001443 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02001444 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001445 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001446 vcpu->arch.cr0_guest_owned_bits = 0;
1447 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
1448 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001449}
1450
Avi Kivity6aa8b732006-12-10 02:21:36 -08001451static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1452{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001453 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001454
Avi Kivity6de12732011-03-07 12:51:22 +02001455 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1456 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1457 rflags = vmcs_readl(GUEST_RFLAGS);
1458 if (to_vmx(vcpu)->rmode.vm86_active) {
1459 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1460 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1461 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1462 }
1463 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001464 }
Avi Kivity6de12732011-03-07 12:51:22 +02001465 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001466}
1467
1468static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1469{
Avi Kivity6de12732011-03-07 12:51:22 +02001470 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity69c73022011-03-07 15:26:44 +02001471 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6de12732011-03-07 12:51:22 +02001472 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001473 if (to_vmx(vcpu)->rmode.vm86_active) {
1474 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001475 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001476 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477 vmcs_writel(GUEST_RFLAGS, rflags);
1478}
1479
Glauber Costa2809f5d2009-05-12 16:21:05 -04001480static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1481{
1482 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1483 int ret = 0;
1484
1485 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001486 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001487 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001488 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001489
1490 return ret & mask;
1491}
1492
1493static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1494{
1495 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1496 u32 interruptibility = interruptibility_old;
1497
1498 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1499
Jan Kiszka48005f62010-02-19 19:38:07 +01001500 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001501 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001502 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001503 interruptibility |= GUEST_INTR_STATE_STI;
1504
1505 if ((interruptibility != interruptibility_old))
1506 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1507}
1508
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1510{
1511 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001513 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001514 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001515 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001516
Glauber Costa2809f5d2009-05-12 16:21:05 -04001517 /* skipping an emulated instruction also counts */
1518 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001519}
1520
Anthony Liguori443381a2010-12-06 10:53:38 -06001521static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1522{
1523 /* Ensure that we clear the HLT state in the VMCS. We don't need to
1524 * explicitly skip the instruction because if the HLT state is set, then
1525 * the instruction is already executing and RIP has already been
1526 * advanced. */
1527 if (!yield_on_hlt &&
1528 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1529 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1530}
1531
Avi Kivity298101d2007-11-25 13:41:11 +02001532static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02001533 bool has_error_code, u32 error_code,
1534 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02001535{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001536 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001537 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001538
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001539 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001540 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001541 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1542 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001543
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001544 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001545 int inc_eip = 0;
1546 if (kvm_exception_is_soft(nr))
1547 inc_eip = vcpu->arch.event_exit_inst_len;
1548 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001549 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001550 return;
1551 }
1552
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001553 if (kvm_exception_is_soft(nr)) {
1554 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1555 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001556 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1557 } else
1558 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1559
1560 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Anthony Liguori443381a2010-12-06 10:53:38 -06001561 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001562}
1563
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001564static bool vmx_rdtscp_supported(void)
1565{
1566 return cpu_has_vmx_rdtscp();
1567}
1568
Avi Kivity6aa8b732006-12-10 02:21:36 -08001569/*
Eddie Donga75beee2007-05-17 18:55:15 +03001570 * Swap MSR entry in host/guest MSR entry array.
1571 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001572static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001573{
Avi Kivity26bb0982009-09-07 11:14:12 +03001574 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001575
1576 tmp = vmx->guest_msrs[to];
1577 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1578 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001579}
1580
1581/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001582 * Set up the vmcs to automatically save and restore system
1583 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1584 * mode, as fiddling with msrs is very expensive.
1585 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001586static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001587{
Avi Kivity26bb0982009-09-07 11:14:12 +03001588 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +02001589 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +03001590
Avi Kivity33f9c502008-02-27 16:06:57 +02001591 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +03001592 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001593#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001594 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10001595 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03001596 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001597 move_msr_up(vmx, index, save_nmsrs++);
1598 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001599 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001600 move_msr_up(vmx, index, save_nmsrs++);
1601 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001602 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001603 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001604 index = __find_msr_index(vmx, MSR_TSC_AUX);
1605 if (index >= 0 && vmx->rdtscp_enabled)
1606 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03001607 /*
Brian Gerst8c065852010-07-17 09:03:26 -04001608 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03001609 * if efer.sce is enabled.
1610 */
Brian Gerst8c065852010-07-17 09:03:26 -04001611 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02001612 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10001613 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001614 }
Eddie Donga75beee2007-05-17 18:55:15 +03001615#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001616 index = __find_msr_index(vmx, MSR_EFER);
1617 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001618 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001619
Avi Kivity26bb0982009-09-07 11:14:12 +03001620 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02001621
1622 if (cpu_has_vmx_msr_bitmap()) {
1623 if (is_long_mode(&vmx->vcpu))
1624 msr_bitmap = vmx_msr_bitmap_longmode;
1625 else
1626 msr_bitmap = vmx_msr_bitmap_legacy;
1627
1628 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
1629 }
Avi Kivitye38aea32007-04-19 13:22:48 +03001630}
1631
1632/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001633 * reads and returns guest's timestamp counter "register"
1634 * guest_tsc = host_tsc + tsc_offset -- 21.3
1635 */
1636static u64 guest_read_tsc(void)
1637{
1638 u64 host_tsc, tsc_offset;
1639
1640 rdtscll(host_tsc);
1641 tsc_offset = vmcs_read64(TSC_OFFSET);
1642 return host_tsc + tsc_offset;
1643}
1644
1645/*
Joerg Roedel4051b182011-03-25 09:44:49 +01001646 * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ
1647 * ioctl. In this case the call-back should update internal vmx state to make
1648 * the changes effective.
1649 */
1650static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
1651{
1652 /* Nothing to do here */
1653}
1654
1655/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10001656 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08001657 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10001658static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001659{
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001660 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001661}
1662
Zachary Amsdene48672f2010-08-19 22:07:23 -10001663static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
1664{
1665 u64 offset = vmcs_read64(TSC_OFFSET);
1666 vmcs_write64(TSC_OFFSET, offset + adjustment);
1667}
1668
Joerg Roedel857e4092011-03-25 09:44:50 +01001669static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1670{
1671 return target_tsc - native_read_tsc();
1672}
1673
Nadav Har'El801d3422011-05-25 23:02:23 +03001674static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
1675{
1676 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
1677 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
1678}
1679
1680/*
1681 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1682 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1683 * all guests if the "nested" module option is off, and can also be disabled
1684 * for a single guest by disabling its VMX cpuid bit.
1685 */
1686static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
1687{
1688 return nested && guest_cpuid_has_vmx(vcpu);
1689}
1690
Avi Kivity6aa8b732006-12-10 02:21:36 -08001691/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001692 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
1693 * returned for the various VMX controls MSRs when nested VMX is enabled.
1694 * The same values should also be used to verify that vmcs12 control fields are
1695 * valid during nested entry from L1 to L2.
1696 * Each of these control msrs has a low and high 32-bit half: A low bit is on
1697 * if the corresponding bit in the (32-bit) control field *must* be on, and a
1698 * bit in the high half is on if the corresponding bit in the control field
1699 * may be on. See also vmx_control_verify().
1700 * TODO: allow these variables to be modified (downgraded) by module options
1701 * or other means.
1702 */
1703static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
1704static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
1705static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
1706static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
1707static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
1708static __init void nested_vmx_setup_ctls_msrs(void)
1709{
1710 /*
1711 * Note that as a general rule, the high half of the MSRs (bits in
1712 * the control fields which may be 1) should be initialized by the
1713 * intersection of the underlying hardware's MSR (i.e., features which
1714 * can be supported) and the list of features we want to expose -
1715 * because they are known to be properly supported in our code.
1716 * Also, usually, the low half of the MSRs (bits which must be 1) can
1717 * be set to 0, meaning that L1 may turn off any of these bits. The
1718 * reason is that if one of these bits is necessary, it will appear
1719 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
1720 * fields of vmcs01 and vmcs02, will turn these bits off - and
1721 * nested_vmx_exit_handled() will not pass related exits to L1.
1722 * These rules have exceptions below.
1723 */
1724
1725 /* pin-based controls */
1726 /*
1727 * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is
1728 * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR.
1729 */
1730 nested_vmx_pinbased_ctls_low = 0x16 ;
1731 nested_vmx_pinbased_ctls_high = 0x16 |
1732 PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
1733 PIN_BASED_VIRTUAL_NMIS;
1734
1735 /* exit controls */
1736 nested_vmx_exit_ctls_low = 0;
1737#ifdef CONFIG_X86_64
1738 nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE;
1739#else
1740 nested_vmx_exit_ctls_high = 0;
1741#endif
1742
1743 /* entry controls */
1744 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
1745 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
1746 nested_vmx_entry_ctls_low = 0;
1747 nested_vmx_entry_ctls_high &=
1748 VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE;
1749
1750 /* cpu-based controls */
1751 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
1752 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
1753 nested_vmx_procbased_ctls_low = 0;
1754 nested_vmx_procbased_ctls_high &=
1755 CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING |
1756 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
1757 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
1758 CPU_BASED_CR3_STORE_EXITING |
1759#ifdef CONFIG_X86_64
1760 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
1761#endif
1762 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
1763 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
1764 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1765 /*
1766 * We can allow some features even when not supported by the
1767 * hardware. For example, L1 can specify an MSR bitmap - and we
1768 * can use it to avoid exits to L1 - even when L0 runs L2
1769 * without MSR bitmaps.
1770 */
1771 nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS;
1772
1773 /* secondary cpu-based controls */
1774 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
1775 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
1776 nested_vmx_secondary_ctls_low = 0;
1777 nested_vmx_secondary_ctls_high &=
1778 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1779}
1780
1781static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
1782{
1783 /*
1784 * Bits 0 in high must be 0, and bits 1 in low must be 1.
1785 */
1786 return ((control & high) | low) == control;
1787}
1788
1789static inline u64 vmx_control_msr(u32 low, u32 high)
1790{
1791 return low | ((u64)high << 32);
1792}
1793
1794/*
1795 * If we allow our guest to use VMX instructions (i.e., nested VMX), we should
1796 * also let it use VMX-specific MSRs.
1797 * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a
1798 * VMX-specific MSR, or 0 when we haven't (and the caller should handle it
1799 * like all other MSRs).
1800 */
1801static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1802{
1803 if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC &&
1804 msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) {
1805 /*
1806 * According to the spec, processors which do not support VMX
1807 * should throw a #GP(0) when VMX capability MSRs are read.
1808 */
1809 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
1810 return 1;
1811 }
1812
1813 switch (msr_index) {
1814 case MSR_IA32_FEATURE_CONTROL:
1815 *pdata = 0;
1816 break;
1817 case MSR_IA32_VMX_BASIC:
1818 /*
1819 * This MSR reports some information about VMX support. We
1820 * should return information about the VMX we emulate for the
1821 * guest, and the VMCS structure we give it - not about the
1822 * VMX support of the underlying hardware.
1823 */
1824 *pdata = VMCS12_REVISION |
1825 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
1826 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
1827 break;
1828 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1829 case MSR_IA32_VMX_PINBASED_CTLS:
1830 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
1831 nested_vmx_pinbased_ctls_high);
1832 break;
1833 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1834 case MSR_IA32_VMX_PROCBASED_CTLS:
1835 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
1836 nested_vmx_procbased_ctls_high);
1837 break;
1838 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1839 case MSR_IA32_VMX_EXIT_CTLS:
1840 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
1841 nested_vmx_exit_ctls_high);
1842 break;
1843 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1844 case MSR_IA32_VMX_ENTRY_CTLS:
1845 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
1846 nested_vmx_entry_ctls_high);
1847 break;
1848 case MSR_IA32_VMX_MISC:
1849 *pdata = 0;
1850 break;
1851 /*
1852 * These MSRs specify bits which the guest must keep fixed (on or off)
1853 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
1854 * We picked the standard core2 setting.
1855 */
1856#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
1857#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
1858 case MSR_IA32_VMX_CR0_FIXED0:
1859 *pdata = VMXON_CR0_ALWAYSON;
1860 break;
1861 case MSR_IA32_VMX_CR0_FIXED1:
1862 *pdata = -1ULL;
1863 break;
1864 case MSR_IA32_VMX_CR4_FIXED0:
1865 *pdata = VMXON_CR4_ALWAYSON;
1866 break;
1867 case MSR_IA32_VMX_CR4_FIXED1:
1868 *pdata = -1ULL;
1869 break;
1870 case MSR_IA32_VMX_VMCS_ENUM:
1871 *pdata = 0x1f;
1872 break;
1873 case MSR_IA32_VMX_PROCBASED_CTLS2:
1874 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
1875 nested_vmx_secondary_ctls_high);
1876 break;
1877 case MSR_IA32_VMX_EPT_VPID_CAP:
1878 /* Currently, no nested ept or nested vpid */
1879 *pdata = 0;
1880 break;
1881 default:
1882 return 0;
1883 }
1884
1885 return 1;
1886}
1887
1888static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1889{
1890 if (!nested_vmx_allowed(vcpu))
1891 return 0;
1892
1893 if (msr_index == MSR_IA32_FEATURE_CONTROL)
1894 /* TODO: the right thing. */
1895 return 1;
1896 /*
1897 * No need to treat VMX capability MSRs specially: If we don't handle
1898 * them, handle_wrmsr will #GP(0), which is correct (they are readonly)
1899 */
1900 return 0;
1901}
1902
1903/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001904 * Reads an msr value (of 'msr_index') into 'pdata'.
1905 * Returns 0 on success, non-0 otherwise.
1906 * Assumes vcpu_load() was already called.
1907 */
1908static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1909{
1910 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001911 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001912
1913 if (!pdata) {
1914 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1915 return -EINVAL;
1916 }
1917
1918 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001919#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001920 case MSR_FS_BASE:
1921 data = vmcs_readl(GUEST_FS_BASE);
1922 break;
1923 case MSR_GS_BASE:
1924 data = vmcs_readl(GUEST_GS_BASE);
1925 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001926 case MSR_KERNEL_GS_BASE:
1927 vmx_load_host_state(to_vmx(vcpu));
1928 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1929 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001930#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001931 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001932 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301933 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001934 data = guest_read_tsc();
1935 break;
1936 case MSR_IA32_SYSENTER_CS:
1937 data = vmcs_read32(GUEST_SYSENTER_CS);
1938 break;
1939 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001940 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001941 break;
1942 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001943 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001944 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001945 case MSR_TSC_AUX:
1946 if (!to_vmx(vcpu)->rdtscp_enabled)
1947 return 1;
1948 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001949 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03001950 vmx_load_host_state(to_vmx(vcpu));
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001951 if (vmx_get_vmx_msr(vcpu, msr_index, pdata))
1952 return 0;
Rusty Russell8b9cf982007-07-30 16:31:43 +10001953 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08001954 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03001955 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08001956 data = msr->data;
1957 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001958 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08001959 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960 }
1961
1962 *pdata = data;
1963 return 0;
1964}
1965
1966/*
1967 * Writes msr value into into the appropriate "register".
1968 * Returns 0 on success, non-0 otherwise.
1969 * Assumes vcpu_load() was already called.
1970 */
1971static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1972{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001973 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001974 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03001975 int ret = 0;
1976
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08001978 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03001979 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03001980 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03001981 break;
Avi Kivity16175a72009-03-23 22:13:44 +02001982#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001984 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985 vmcs_writel(GUEST_FS_BASE, data);
1986 break;
1987 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03001988 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001989 vmcs_writel(GUEST_GS_BASE, data);
1990 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001991 case MSR_KERNEL_GS_BASE:
1992 vmx_load_host_state(vmx);
1993 vmx->msr_guest_kernel_gs_base = data;
1994 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001995#endif
1996 case MSR_IA32_SYSENTER_CS:
1997 vmcs_write32(GUEST_SYSENTER_CS, data);
1998 break;
1999 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002000 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002001 break;
2002 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002003 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002004 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302005 case MSR_IA32_TSC:
Zachary Amsden99e3e302010-08-19 22:07:17 -10002006 kvm_write_tsc(vcpu, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002007 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002008 case MSR_IA32_CR_PAT:
2009 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2010 vmcs_write64(GUEST_IA32_PAT, data);
2011 vcpu->arch.pat = data;
2012 break;
2013 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002014 ret = kvm_set_msr_common(vcpu, msr_index, data);
2015 break;
2016 case MSR_TSC_AUX:
2017 if (!vmx->rdtscp_enabled)
2018 return 1;
2019 /* Check reserved bit, higher 32 bits should be zero */
2020 if ((data >> 32) != 0)
2021 return 1;
2022 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002023 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002024 if (vmx_set_vmx_msr(vcpu, msr_index, data))
2025 break;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002026 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002027 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03002028 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002029 msr->data = data;
2030 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002031 }
Eddie Dong2cc51562007-05-21 07:28:09 +03002032 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002033 }
2034
Eddie Dong2cc51562007-05-21 07:28:09 +03002035 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002036}
2037
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002038static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002039{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002040 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2041 switch (reg) {
2042 case VCPU_REGS_RSP:
2043 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2044 break;
2045 case VCPU_REGS_RIP:
2046 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2047 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002048 case VCPU_EXREG_PDPTR:
2049 if (enable_ept)
2050 ept_save_pdptrs(vcpu);
2051 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002052 default:
2053 break;
2054 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002055}
2056
Jan Kiszka355be0b2009-10-03 00:31:21 +02002057static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002058{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01002059 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
2060 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
2061 else
2062 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2063
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002064 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002065}
2066
2067static __init int cpu_has_kvm_support(void)
2068{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002069 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002070}
2071
2072static __init int vmx_disabled_by_bios(void)
2073{
2074 u64 msr;
2075
2076 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04002077 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08002078 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04002079 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2080 && tboot_enabled())
2081 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08002082 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04002083 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08002084 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08002085 && !tboot_enabled()) {
2086 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08002087 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04002088 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08002089 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08002090 /* launched w/o TXT and VMX disabled */
2091 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2092 && !tboot_enabled())
2093 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04002094 }
2095
2096 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002097}
2098
Dongxiao Xu7725b892010-05-11 18:29:38 +08002099static void kvm_cpu_vmxon(u64 addr)
2100{
2101 asm volatile (ASM_VMX_VMXON_RAX
2102 : : "a"(&addr), "m"(addr)
2103 : "memory", "cc");
2104}
2105
Alexander Graf10474ae2009-09-15 11:37:46 +02002106static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002107{
2108 int cpu = raw_smp_processor_id();
2109 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04002110 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002111
Alexander Graf10474ae2009-09-15 11:37:46 +02002112 if (read_cr4() & X86_CR4_VMXE)
2113 return -EBUSY;
2114
Nadav Har'Eld462b812011-05-24 15:26:10 +03002115 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04002117
2118 test_bits = FEATURE_CONTROL_LOCKED;
2119 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2120 if (tboot_enabled())
2121 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2122
2123 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002124 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04002125 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2126 }
Rusty Russell66aee912007-07-17 23:34:16 +10002127 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Alexander Graf10474ae2009-09-15 11:37:46 +02002128
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002129 if (vmm_exclusive) {
2130 kvm_cpu_vmxon(phys_addr);
2131 ept_sync_global();
2132 }
Alexander Graf10474ae2009-09-15 11:37:46 +02002133
Avi Kivity3444d7d2010-07-26 18:32:38 +03002134 store_gdt(&__get_cpu_var(host_gdt));
2135
Alexander Graf10474ae2009-09-15 11:37:46 +02002136 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137}
2138
Nadav Har'Eld462b812011-05-24 15:26:10 +03002139static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002140{
2141 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002142 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002143
Nadav Har'Eld462b812011-05-24 15:26:10 +03002144 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2145 loaded_vmcss_on_cpu_link)
2146 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002147}
2148
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002149
2150/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2151 * tricks.
2152 */
2153static void kvm_cpu_vmxoff(void)
2154{
2155 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002156}
2157
Avi Kivity6aa8b732006-12-10 02:21:36 -08002158static void hardware_disable(void *garbage)
2159{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002160 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002161 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002162 kvm_cpu_vmxoff();
2163 }
Dongxiao Xu7725b892010-05-11 18:29:38 +08002164 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002165}
2166
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002167static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002168 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002169{
2170 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002171 u32 ctl = ctl_min | ctl_opt;
2172
2173 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2174
2175 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2176 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2177
2178 /* Ensure minimum (required) set of control bits are supported. */
2179 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002180 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002181
2182 *result = ctl;
2183 return 0;
2184}
2185
Avi Kivity110312c2010-12-21 12:54:20 +02002186static __init bool allow_1_setting(u32 msr, u32 ctl)
2187{
2188 u32 vmx_msr_low, vmx_msr_high;
2189
2190 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2191 return vmx_msr_high & ctl;
2192}
2193
Yang, Sheng002c7f72007-07-31 14:23:01 +03002194static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002195{
2196 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002197 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002198 u32 _pin_based_exec_control = 0;
2199 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002200 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002201 u32 _vmexit_control = 0;
2202 u32 _vmentry_control = 0;
2203
2204 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08002205 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002206 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2207 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002208 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002209
Anthony Liguori443381a2010-12-06 10:53:38 -06002210 min =
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002211#ifdef CONFIG_X86_64
2212 CPU_BASED_CR8_LOAD_EXITING |
2213 CPU_BASED_CR8_STORE_EXITING |
2214#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002215 CPU_BASED_CR3_LOAD_EXITING |
2216 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002217 CPU_BASED_USE_IO_BITMAPS |
2218 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002219 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08002220 CPU_BASED_MWAIT_EXITING |
2221 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002222 CPU_BASED_INVLPG_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002223
2224 if (yield_on_hlt)
2225 min |= CPU_BASED_HLT_EXITING;
2226
Sheng Yangf78e0e22007-10-29 09:40:42 +08002227 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002228 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002229 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002230 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2231 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002232 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002233#ifdef CONFIG_X86_64
2234 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2235 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2236 ~CPU_BASED_CR8_STORE_EXITING;
2237#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002238 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002239 min2 = 0;
2240 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002241 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002242 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002243 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002244 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002245 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
2246 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08002247 if (adjust_vmx_controls(min2, opt2,
2248 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002249 &_cpu_based_2nd_exec_control) < 0)
2250 return -EIO;
2251 }
2252#ifndef CONFIG_X86_64
2253 if (!(_cpu_based_2nd_exec_control &
2254 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2255 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2256#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002257 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002258 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2259 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002260 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2261 CPU_BASED_CR3_STORE_EXITING |
2262 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08002263 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
2264 vmx_capability.ept, vmx_capability.vpid);
2265 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002266
2267 min = 0;
2268#ifdef CONFIG_X86_64
2269 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2270#endif
Sheng Yang468d4722008-10-09 16:01:55 +08002271 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002272 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2273 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002274 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002275
Sheng Yang468d4722008-10-09 16:01:55 +08002276 min = 0;
2277 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002278 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2279 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002280 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002281
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002282 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002283
2284 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2285 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002286 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002287
2288#ifdef CONFIG_X86_64
2289 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2290 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002291 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002292#endif
2293
2294 /* Require Write-Back (WB) memory type for VMCS accesses. */
2295 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002296 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002297
Yang, Sheng002c7f72007-07-31 14:23:01 +03002298 vmcs_conf->size = vmx_msr_high & 0x1fff;
2299 vmcs_conf->order = get_order(vmcs_config.size);
2300 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002301
Yang, Sheng002c7f72007-07-31 14:23:01 +03002302 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2303 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002304 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002305 vmcs_conf->vmexit_ctrl = _vmexit_control;
2306 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002307
Avi Kivity110312c2010-12-21 12:54:20 +02002308 cpu_has_load_ia32_efer =
2309 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2310 VM_ENTRY_LOAD_IA32_EFER)
2311 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2312 VM_EXIT_LOAD_IA32_EFER);
2313
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002314 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002315}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002316
2317static struct vmcs *alloc_vmcs_cpu(int cpu)
2318{
2319 int node = cpu_to_node(cpu);
2320 struct page *pages;
2321 struct vmcs *vmcs;
2322
Mel Gorman6484eb32009-06-16 15:31:54 -07002323 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002324 if (!pages)
2325 return NULL;
2326 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002327 memset(vmcs, 0, vmcs_config.size);
2328 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002329 return vmcs;
2330}
2331
2332static struct vmcs *alloc_vmcs(void)
2333{
Ingo Molnard3b2c332007-01-05 16:36:23 -08002334 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08002335}
2336
2337static void free_vmcs(struct vmcs *vmcs)
2338{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002339 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002340}
2341
Nadav Har'Eld462b812011-05-24 15:26:10 +03002342/*
2343 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2344 */
2345static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
2346{
2347 if (!loaded_vmcs->vmcs)
2348 return;
2349 loaded_vmcs_clear(loaded_vmcs);
2350 free_vmcs(loaded_vmcs->vmcs);
2351 loaded_vmcs->vmcs = NULL;
2352}
2353
Sam Ravnborg39959582007-06-01 00:47:13 -07002354static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355{
2356 int cpu;
2357
Zachary Amsden3230bb42009-09-29 11:38:37 -10002358 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002359 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002360 per_cpu(vmxarea, cpu) = NULL;
2361 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002362}
2363
Avi Kivity6aa8b732006-12-10 02:21:36 -08002364static __init int alloc_kvm_area(void)
2365{
2366 int cpu;
2367
Zachary Amsden3230bb42009-09-29 11:38:37 -10002368 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002369 struct vmcs *vmcs;
2370
2371 vmcs = alloc_vmcs_cpu(cpu);
2372 if (!vmcs) {
2373 free_kvm_area();
2374 return -ENOMEM;
2375 }
2376
2377 per_cpu(vmxarea, cpu) = vmcs;
2378 }
2379 return 0;
2380}
2381
2382static __init int hardware_setup(void)
2383{
Yang, Sheng002c7f72007-07-31 14:23:01 +03002384 if (setup_vmcs_config(&vmcs_config) < 0)
2385 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01002386
2387 if (boot_cpu_has(X86_FEATURE_NX))
2388 kvm_enable_efer_bits(EFER_NX);
2389
Sheng Yang93ba03c2009-04-01 15:52:32 +08002390 if (!cpu_has_vmx_vpid())
2391 enable_vpid = 0;
2392
Sheng Yang4bc9b982010-06-02 14:05:24 +08002393 if (!cpu_has_vmx_ept() ||
2394 !cpu_has_vmx_ept_4levels()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08002395 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002396 enable_unrestricted_guest = 0;
2397 }
2398
2399 if (!cpu_has_vmx_unrestricted_guest())
2400 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08002401
2402 if (!cpu_has_vmx_flexpriority())
2403 flexpriority_enabled = 0;
2404
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002405 if (!cpu_has_vmx_tpr_shadow())
2406 kvm_x86_ops->update_cr8_intercept = NULL;
2407
Marcelo Tosatti54dee992009-06-11 12:07:44 -03002408 if (enable_ept && !cpu_has_vmx_ept_2m_page())
2409 kvm_disable_largepages();
2410
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002411 if (!cpu_has_vmx_ple())
2412 ple_gap = 0;
2413
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002414 if (nested)
2415 nested_vmx_setup_ctls_msrs();
2416
Avi Kivity6aa8b732006-12-10 02:21:36 -08002417 return alloc_kvm_area();
2418}
2419
2420static __exit void hardware_unsetup(void)
2421{
2422 free_kvm_area();
2423}
2424
Avi Kivity6aa8b732006-12-10 02:21:36 -08002425static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
2426{
2427 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2428
Avi Kivity6af11b92007-03-19 13:18:10 +02002429 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002430 vmcs_write16(sf->selector, save->selector);
2431 vmcs_writel(sf->base, save->base);
2432 vmcs_write32(sf->limit, save->limit);
2433 vmcs_write32(sf->ar_bytes, save->ar);
2434 } else {
2435 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
2436 << AR_DPL_SHIFT;
2437 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
2438 }
2439}
2440
2441static void enter_pmode(struct kvm_vcpu *vcpu)
2442{
2443 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002444 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002445
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002446 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002447 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002448
Avi Kivity2fb92db2011-04-27 19:42:18 +03002449 vmx_segment_cache_clear(vmx);
2450
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002451 vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002452 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
2453 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
2454 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002455
2456 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002457 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2458 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002459 vmcs_writel(GUEST_RFLAGS, flags);
2460
Rusty Russell66aee912007-07-17 23:34:16 +10002461 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2462 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002463
2464 update_exception_bitmap(vcpu);
2465
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002466 if (emulate_invalid_guest_state)
2467 return;
2468
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002469 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
2470 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
2471 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
2472 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473
Avi Kivity2fb92db2011-04-27 19:42:18 +03002474 vmx_segment_cache_clear(vmx);
2475
Avi Kivity6aa8b732006-12-10 02:21:36 -08002476 vmcs_write16(GUEST_SS_SELECTOR, 0);
2477 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
2478
2479 vmcs_write16(GUEST_CS_SELECTOR,
2480 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
2481 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2482}
2483
Mike Dayd77c26f2007-10-08 09:02:08 -04002484static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002485{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002486 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002487 struct kvm_memslots *slots;
2488 gfn_t base_gfn;
2489
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002490 slots = kvm_memslots(kvm);
Avi Kivityf495c6e2010-06-10 17:21:29 +03002491 base_gfn = slots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02002492 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02002493 return base_gfn << PAGE_SHIFT;
2494 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002495 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002496}
2497
2498static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
2499{
2500 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2501
2502 save->selector = vmcs_read16(sf->selector);
2503 save->base = vmcs_readl(sf->base);
2504 save->limit = vmcs_read32(sf->limit);
2505 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01002506 vmcs_write16(sf->selector, save->base >> 4);
Gleb Natapov444e8632010-12-27 17:25:04 +02002507 vmcs_write32(sf->base, save->base & 0xffff0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002508 vmcs_write32(sf->limit, 0xffff);
2509 vmcs_write32(sf->ar_bytes, 0xf3);
Gleb Natapov444e8632010-12-27 17:25:04 +02002510 if (save->base & 0xf)
2511 printk_once(KERN_WARNING "kvm: segment base is not paragraph"
2512 " aligned when entering protected mode (seg=%d)",
2513 seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002514}
2515
2516static void enter_rmode(struct kvm_vcpu *vcpu)
2517{
2518 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002519 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002520
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002521 if (enable_unrestricted_guest)
2522 return;
2523
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002524 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002525 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002526
Gleb Natapov776e58e2011-03-13 12:34:27 +02002527 /*
2528 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
2529 * vcpu. Call it here with phys address pointing 16M below 4G.
2530 */
2531 if (!vcpu->kvm->arch.tss_addr) {
2532 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2533 "called before entering vcpu\n");
2534 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
2535 vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
2536 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2537 }
2538
Avi Kivity2fb92db2011-04-27 19:42:18 +03002539 vmx_segment_cache_clear(vmx);
2540
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002541 vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002542 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002543 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
2544
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002545 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002546 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
2547
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002548 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002549 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2550
2551 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002552 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002553
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002554 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555
2556 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002557 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002558 update_exception_bitmap(vcpu);
2559
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002560 if (emulate_invalid_guest_state)
2561 goto continue_rmode;
2562
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
2564 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
2565 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
2566
2567 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08002568 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02002569 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
2570 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002571 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
2572
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002573 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
2574 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
2575 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
2576 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03002577
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002578continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08002579 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002580}
2581
Amit Shah401d10d2009-02-20 22:53:37 +05302582static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
2583{
2584 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002585 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2586
2587 if (!msr)
2588 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302589
Avi Kivity44ea2b12009-09-06 15:55:37 +03002590 /*
2591 * Force kernel_gs_base reloading before EFER changes, as control
2592 * of this msr depends on is_long_mode().
2593 */
2594 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02002595 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302596 if (efer & EFER_LMA) {
2597 vmcs_write32(VM_ENTRY_CONTROLS,
2598 vmcs_read32(VM_ENTRY_CONTROLS) |
2599 VM_ENTRY_IA32E_MODE);
2600 msr->data = efer;
2601 } else {
2602 vmcs_write32(VM_ENTRY_CONTROLS,
2603 vmcs_read32(VM_ENTRY_CONTROLS) &
2604 ~VM_ENTRY_IA32E_MODE);
2605
2606 msr->data = efer & ~EFER_LME;
2607 }
2608 setup_msrs(vmx);
2609}
2610
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002611#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002612
2613static void enter_lmode(struct kvm_vcpu *vcpu)
2614{
2615 u32 guest_tr_ar;
2616
Avi Kivity2fb92db2011-04-27 19:42:18 +03002617 vmx_segment_cache_clear(to_vmx(vcpu));
2618
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
2620 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
2621 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002622 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002623 vmcs_write32(GUEST_TR_AR_BYTES,
2624 (guest_tr_ar & ~AR_TYPE_MASK)
2625 | AR_TYPE_BUSY_64_TSS);
2626 }
Avi Kivityda38f432010-07-06 11:30:49 +03002627 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002628}
2629
2630static void exit_lmode(struct kvm_vcpu *vcpu)
2631{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002632 vmcs_write32(VM_ENTRY_CONTROLS,
2633 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03002634 & ~VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002635 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636}
2637
2638#endif
2639
Sheng Yang2384d2b2008-01-17 15:14:33 +08002640static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2641{
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002642 vpid_sync_context(to_vmx(vcpu));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002643 if (enable_ept) {
2644 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2645 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08002646 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002647 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08002648}
2649
Avi Kivitye8467fd2009-12-29 18:43:06 +02002650static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2651{
2652 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2653
2654 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2655 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2656}
2657
Avi Kivityaff48ba2010-12-05 18:56:11 +02002658static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2659{
2660 if (enable_ept && is_paging(vcpu))
2661 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2662 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2663}
2664
Anthony Liguori25c4c272007-04-27 09:29:21 +03002665static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002666{
Avi Kivityfc78f512009-12-07 12:16:48 +02002667 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2668
2669 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2670 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002671}
2672
Sheng Yang14394422008-04-28 12:24:45 +08002673static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2674{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002675 if (!test_bit(VCPU_EXREG_PDPTR,
2676 (unsigned long *)&vcpu->arch.regs_dirty))
2677 return;
2678
Sheng Yang14394422008-04-28 12:24:45 +08002679 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002680 vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]);
2681 vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]);
2682 vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]);
2683 vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002684 }
2685}
2686
Avi Kivity8f5d5492009-05-31 18:41:29 +03002687static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
2688{
2689 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002690 vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2691 vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2692 vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2693 vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002694 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002695
2696 __set_bit(VCPU_EXREG_PDPTR,
2697 (unsigned long *)&vcpu->arch.regs_avail);
2698 __set_bit(VCPU_EXREG_PDPTR,
2699 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002700}
2701
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002702static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08002703
2704static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2705 unsigned long cr0,
2706 struct kvm_vcpu *vcpu)
2707{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002708 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2709 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002710 if (!(cr0 & X86_CR0_PG)) {
2711 /* From paging/starting to nonpaging */
2712 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002713 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002714 (CPU_BASED_CR3_LOAD_EXITING |
2715 CPU_BASED_CR3_STORE_EXITING));
2716 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002717 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002718 } else if (!is_paging(vcpu)) {
2719 /* From nonpaging to paging */
2720 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002721 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002722 ~(CPU_BASED_CR3_LOAD_EXITING |
2723 CPU_BASED_CR3_STORE_EXITING));
2724 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002725 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002726 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002727
2728 if (!(cr0 & X86_CR0_WP))
2729 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002730}
2731
Avi Kivity6aa8b732006-12-10 02:21:36 -08002732static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2733{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002734 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002735 unsigned long hw_cr0;
2736
2737 if (enable_unrestricted_guest)
2738 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
2739 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
2740 else
2741 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002742
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002743 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002744 enter_pmode(vcpu);
2745
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002746 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002747 enter_rmode(vcpu);
2748
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002749#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002750 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10002751 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10002753 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754 exit_lmode(vcpu);
2755 }
2756#endif
2757
Avi Kivity089d0342009-03-23 18:26:32 +02002758 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002759 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2760
Avi Kivity02daab22009-12-30 12:40:26 +02002761 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02002762 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02002763
Avi Kivity6aa8b732006-12-10 02:21:36 -08002764 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002765 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002766 vcpu->arch.cr0 = cr0;
Avi Kivity69c73022011-03-07 15:26:44 +02002767 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002768}
2769
Sheng Yang14394422008-04-28 12:24:45 +08002770static u64 construct_eptp(unsigned long root_hpa)
2771{
2772 u64 eptp;
2773
2774 /* TODO write the value reading from MSR */
2775 eptp = VMX_EPT_DEFAULT_MT |
2776 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
2777 eptp |= (root_hpa & PAGE_MASK);
2778
2779 return eptp;
2780}
2781
Avi Kivity6aa8b732006-12-10 02:21:36 -08002782static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
2783{
Sheng Yang14394422008-04-28 12:24:45 +08002784 unsigned long guest_cr3;
2785 u64 eptp;
2786
2787 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02002788 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08002789 eptp = construct_eptp(cr3);
2790 vmcs_write64(EPT_POINTER, eptp);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002791 guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) :
Sheng Yangb927a3c2009-07-21 10:42:48 +08002792 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02002793 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002794 }
2795
Sheng Yang2384d2b2008-01-17 15:14:33 +08002796 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002797 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002798}
2799
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002800static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002801{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002802 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08002803 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
2804
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002805 if (cr4 & X86_CR4_VMXE) {
2806 /*
2807 * To use VMXON (and later other VMX instructions), a guest
2808 * must first be able to turn on cr4.VMXE (see handle_vmon()).
2809 * So basically the check on whether to allow nested VMX
2810 * is here.
2811 */
2812 if (!nested_vmx_allowed(vcpu))
2813 return 1;
2814 } else if (to_vmx(vcpu)->nested.vmxon)
2815 return 1;
2816
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002817 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02002818 if (enable_ept) {
2819 if (!is_paging(vcpu)) {
2820 hw_cr4 &= ~X86_CR4_PAE;
2821 hw_cr4 |= X86_CR4_PSE;
2822 } else if (!(cr4 & X86_CR4_PAE)) {
2823 hw_cr4 &= ~X86_CR4_PAE;
2824 }
2825 }
Sheng Yang14394422008-04-28 12:24:45 +08002826
2827 vmcs_writel(CR4_READ_SHADOW, cr4);
2828 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002829 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002830}
2831
Avi Kivity6aa8b732006-12-10 02:21:36 -08002832static void vmx_get_segment(struct kvm_vcpu *vcpu,
2833 struct kvm_segment *var, int seg)
2834{
Avi Kivitya9179492011-01-03 14:28:52 +02002835 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitya9179492011-01-03 14:28:52 +02002836 struct kvm_save_segment *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002837 u32 ar;
2838
Avi Kivitya9179492011-01-03 14:28:52 +02002839 if (vmx->rmode.vm86_active
2840 && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES
2841 || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS
2842 || seg == VCPU_SREG_GS)
2843 && !emulate_invalid_guest_state) {
2844 switch (seg) {
2845 case VCPU_SREG_TR: save = &vmx->rmode.tr; break;
2846 case VCPU_SREG_ES: save = &vmx->rmode.es; break;
2847 case VCPU_SREG_DS: save = &vmx->rmode.ds; break;
2848 case VCPU_SREG_FS: save = &vmx->rmode.fs; break;
2849 case VCPU_SREG_GS: save = &vmx->rmode.gs; break;
2850 default: BUG();
2851 }
2852 var->selector = save->selector;
2853 var->base = save->base;
2854 var->limit = save->limit;
2855 ar = save->ar;
2856 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03002857 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivitya9179492011-01-03 14:28:52 +02002858 goto use_saved_rmode_seg;
2859 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002860 var->base = vmx_read_guest_seg_base(vmx, seg);
2861 var->limit = vmx_read_guest_seg_limit(vmx, seg);
2862 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2863 ar = vmx_read_guest_seg_ar(vmx, seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002864use_saved_rmode_seg:
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02002865 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002866 ar = 0;
2867 var->type = ar & 15;
2868 var->s = (ar >> 4) & 1;
2869 var->dpl = (ar >> 5) & 3;
2870 var->present = (ar >> 7) & 1;
2871 var->avl = (ar >> 12) & 1;
2872 var->l = (ar >> 13) & 1;
2873 var->db = (ar >> 14) & 1;
2874 var->g = (ar >> 15) & 1;
2875 var->unusable = (ar >> 16) & 1;
2876}
2877
Avi Kivitya9179492011-01-03 14:28:52 +02002878static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2879{
Avi Kivitya9179492011-01-03 14:28:52 +02002880 struct kvm_segment s;
2881
2882 if (to_vmx(vcpu)->rmode.vm86_active) {
2883 vmx_get_segment(vcpu, &s, seg);
2884 return s.base;
2885 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002886 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002887}
2888
Avi Kivity69c73022011-03-07 15:26:44 +02002889static int __vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02002890{
Avi Kivity3eeb3282010-01-21 15:31:48 +02002891 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02002892 return 0;
2893
Avi Kivityf4c63e52011-03-07 14:54:28 +02002894 if (!is_long_mode(vcpu)
2895 && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */
Izik Eidus2e4d2652008-03-24 19:38:34 +02002896 return 3;
2897
Avi Kivity2fb92db2011-04-27 19:42:18 +03002898 return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02002899}
2900
Avi Kivity69c73022011-03-07 15:26:44 +02002901static int vmx_get_cpl(struct kvm_vcpu *vcpu)
2902{
2903 if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) {
2904 __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
2905 to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu);
2906 }
2907 return to_vmx(vcpu)->cpl;
2908}
2909
2910
Avi Kivity653e3102007-05-07 10:55:37 +03002911static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002912{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002913 u32 ar;
2914
Avi Kivity653e3102007-05-07 10:55:37 +03002915 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002916 ar = 1 << 16;
2917 else {
2918 ar = var->type & 15;
2919 ar |= (var->s & 1) << 4;
2920 ar |= (var->dpl & 3) << 5;
2921 ar |= (var->present & 1) << 7;
2922 ar |= (var->avl & 1) << 12;
2923 ar |= (var->l & 1) << 13;
2924 ar |= (var->db & 1) << 14;
2925 ar |= (var->g & 1) << 15;
2926 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08002927 if (ar == 0) /* a 0 value means unusable */
2928 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03002929
2930 return ar;
2931}
2932
2933static void vmx_set_segment(struct kvm_vcpu *vcpu,
2934 struct kvm_segment *var, int seg)
2935{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002936 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03002937 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2938 u32 ar;
2939
Avi Kivity2fb92db2011-04-27 19:42:18 +03002940 vmx_segment_cache_clear(vmx);
2941
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002942 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
Gleb Natapova8ba6c22011-02-21 12:07:58 +02002943 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002944 vmx->rmode.tr.selector = var->selector;
2945 vmx->rmode.tr.base = var->base;
2946 vmx->rmode.tr.limit = var->limit;
2947 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03002948 return;
2949 }
2950 vmcs_writel(sf->base, var->base);
2951 vmcs_write32(sf->limit, var->limit);
2952 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002953 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03002954 /*
2955 * Hack real-mode segments into vm86 compatibility.
2956 */
2957 if (var->base == 0xffff0000 && var->selector == 0xf000)
2958 vmcs_writel(sf->base, 0xf0000);
2959 ar = 0xf3;
2960 } else
2961 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002962
2963 /*
2964 * Fix the "Accessed" bit in AR field of segment registers for older
2965 * qemu binaries.
2966 * IA32 arch specifies that at the time of processor reset the
2967 * "Accessed" bit in the AR field of segment registers is 1. And qemu
2968 * is setting it to 0 in the usedland code. This causes invalid guest
2969 * state vmexit when "unrestricted guest" mode is turned on.
2970 * Fix for this setup issue in cpu_reset is being pushed in the qemu
2971 * tree. Newer qemu binaries with that qemu fix would not need this
2972 * kvm hack.
2973 */
2974 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
2975 ar |= 0x1; /* Accessed */
2976
Avi Kivity6aa8b732006-12-10 02:21:36 -08002977 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity69c73022011-03-07 15:26:44 +02002978 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002979}
2980
Avi Kivity6aa8b732006-12-10 02:21:36 -08002981static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
2982{
Avi Kivity2fb92db2011-04-27 19:42:18 +03002983 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002984
2985 *db = (ar >> 14) & 1;
2986 *l = (ar >> 13) & 1;
2987}
2988
Gleb Natapov89a27f42010-02-16 10:51:48 +02002989static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002990{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002991 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
2992 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002993}
2994
Gleb Natapov89a27f42010-02-16 10:51:48 +02002995static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002996{
Gleb Natapov89a27f42010-02-16 10:51:48 +02002997 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
2998 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999}
3000
Gleb Natapov89a27f42010-02-16 10:51:48 +02003001static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003002{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003003 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3004 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003005}
3006
Gleb Natapov89a27f42010-02-16 10:51:48 +02003007static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003008{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003009 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3010 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003011}
3012
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003013static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3014{
3015 struct kvm_segment var;
3016 u32 ar;
3017
3018 vmx_get_segment(vcpu, &var, seg);
3019 ar = vmx_segment_access_rights(&var);
3020
3021 if (var.base != (var.selector << 4))
3022 return false;
3023 if (var.limit != 0xffff)
3024 return false;
3025 if (ar != 0xf3)
3026 return false;
3027
3028 return true;
3029}
3030
3031static bool code_segment_valid(struct kvm_vcpu *vcpu)
3032{
3033 struct kvm_segment cs;
3034 unsigned int cs_rpl;
3035
3036 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3037 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
3038
Avi Kivity1872a3f2009-01-04 23:26:52 +02003039 if (cs.unusable)
3040 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003041 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
3042 return false;
3043 if (!cs.s)
3044 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003045 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003046 if (cs.dpl > cs_rpl)
3047 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003048 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003049 if (cs.dpl != cs_rpl)
3050 return false;
3051 }
3052 if (!cs.present)
3053 return false;
3054
3055 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3056 return true;
3057}
3058
3059static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3060{
3061 struct kvm_segment ss;
3062 unsigned int ss_rpl;
3063
3064 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3065 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
3066
Avi Kivity1872a3f2009-01-04 23:26:52 +02003067 if (ss.unusable)
3068 return true;
3069 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003070 return false;
3071 if (!ss.s)
3072 return false;
3073 if (ss.dpl != ss_rpl) /* DPL != RPL */
3074 return false;
3075 if (!ss.present)
3076 return false;
3077
3078 return true;
3079}
3080
3081static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3082{
3083 struct kvm_segment var;
3084 unsigned int rpl;
3085
3086 vmx_get_segment(vcpu, &var, seg);
3087 rpl = var.selector & SELECTOR_RPL_MASK;
3088
Avi Kivity1872a3f2009-01-04 23:26:52 +02003089 if (var.unusable)
3090 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003091 if (!var.s)
3092 return false;
3093 if (!var.present)
3094 return false;
3095 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
3096 if (var.dpl < rpl) /* DPL < RPL */
3097 return false;
3098 }
3099
3100 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3101 * rights flags
3102 */
3103 return true;
3104}
3105
3106static bool tr_valid(struct kvm_vcpu *vcpu)
3107{
3108 struct kvm_segment tr;
3109
3110 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3111
Avi Kivity1872a3f2009-01-04 23:26:52 +02003112 if (tr.unusable)
3113 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003114 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3115 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003116 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003117 return false;
3118 if (!tr.present)
3119 return false;
3120
3121 return true;
3122}
3123
3124static bool ldtr_valid(struct kvm_vcpu *vcpu)
3125{
3126 struct kvm_segment ldtr;
3127
3128 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3129
Avi Kivity1872a3f2009-01-04 23:26:52 +02003130 if (ldtr.unusable)
3131 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003132 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3133 return false;
3134 if (ldtr.type != 2)
3135 return false;
3136 if (!ldtr.present)
3137 return false;
3138
3139 return true;
3140}
3141
3142static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3143{
3144 struct kvm_segment cs, ss;
3145
3146 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3147 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3148
3149 return ((cs.selector & SELECTOR_RPL_MASK) ==
3150 (ss.selector & SELECTOR_RPL_MASK));
3151}
3152
3153/*
3154 * Check if guest state is valid. Returns true if valid, false if
3155 * not.
3156 * We assume that registers are always usable
3157 */
3158static bool guest_state_valid(struct kvm_vcpu *vcpu)
3159{
3160 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02003161 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003162 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3163 return false;
3164 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3165 return false;
3166 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3167 return false;
3168 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3169 return false;
3170 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3171 return false;
3172 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3173 return false;
3174 } else {
3175 /* protected mode guest state checks */
3176 if (!cs_ss_rpl_check(vcpu))
3177 return false;
3178 if (!code_segment_valid(vcpu))
3179 return false;
3180 if (!stack_segment_valid(vcpu))
3181 return false;
3182 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3183 return false;
3184 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3185 return false;
3186 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3187 return false;
3188 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3189 return false;
3190 if (!tr_valid(vcpu))
3191 return false;
3192 if (!ldtr_valid(vcpu))
3193 return false;
3194 }
3195 /* TODO:
3196 * - Add checks on RIP
3197 * - Add checks on RFLAGS
3198 */
3199
3200 return true;
3201}
3202
Mike Dayd77c26f2007-10-08 09:02:08 -04003203static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003204{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003205 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003206 u16 data = 0;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003207 int r, idx, ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003208
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003209 idx = srcu_read_lock(&kvm->srcu);
3210 fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003211 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3212 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003213 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003214 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003215 r = kvm_write_guest_page(kvm, fn++, &data,
3216 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003217 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003218 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003219 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3220 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003221 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003222 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3223 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003224 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003225 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003226 r = kvm_write_guest_page(kvm, fn, &data,
3227 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3228 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02003229 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003230 goto out;
3231
3232 ret = 1;
3233out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003234 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003235 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003236}
3237
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003238static int init_rmode_identity_map(struct kvm *kvm)
3239{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003240 int i, idx, r, ret;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003241 pfn_t identity_map_pfn;
3242 u32 tmp;
3243
Avi Kivity089d0342009-03-23 18:26:32 +02003244 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003245 return 1;
3246 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
3247 printk(KERN_ERR "EPT: identity-mapping pagetable "
3248 "haven't been allocated!\n");
3249 return 0;
3250 }
3251 if (likely(kvm->arch.ept_identity_pagetable_done))
3252 return 1;
3253 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003254 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003255 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003256 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3257 if (r < 0)
3258 goto out;
3259 /* Set up identity-mapping pagetable for EPT in real mode */
3260 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3261 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3262 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3263 r = kvm_write_guest_page(kvm, identity_map_pfn,
3264 &tmp, i * sizeof(tmp), sizeof(tmp));
3265 if (r < 0)
3266 goto out;
3267 }
3268 kvm->arch.ept_identity_pagetable_done = true;
3269 ret = 1;
3270out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003271 srcu_read_unlock(&kvm->srcu, idx);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003272 return ret;
3273}
3274
Avi Kivity6aa8b732006-12-10 02:21:36 -08003275static void seg_setup(int seg)
3276{
3277 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003278 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003279
3280 vmcs_write16(sf->selector, 0);
3281 vmcs_writel(sf->base, 0);
3282 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003283 if (enable_unrestricted_guest) {
3284 ar = 0x93;
3285 if (seg == VCPU_SREG_CS)
3286 ar |= 0x08; /* code segment */
3287 } else
3288 ar = 0xf3;
3289
3290 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003291}
3292
Sheng Yangf78e0e22007-10-29 09:40:42 +08003293static int alloc_apic_access_page(struct kvm *kvm)
3294{
3295 struct kvm_userspace_memory_region kvm_userspace_mem;
3296 int r = 0;
3297
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003298 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003299 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003300 goto out;
3301 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
3302 kvm_userspace_mem.flags = 0;
3303 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
3304 kvm_userspace_mem.memory_size = PAGE_SIZE;
3305 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3306 if (r)
3307 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003308
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003309 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003310out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003311 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003312 return r;
3313}
3314
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003315static int alloc_identity_pagetable(struct kvm *kvm)
3316{
3317 struct kvm_userspace_memory_region kvm_userspace_mem;
3318 int r = 0;
3319
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003320 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003321 if (kvm->arch.ept_identity_pagetable)
3322 goto out;
3323 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
3324 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003325 kvm_userspace_mem.guest_phys_addr =
3326 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003327 kvm_userspace_mem.memory_size = PAGE_SIZE;
3328 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3329 if (r)
3330 goto out;
3331
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003332 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08003333 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003334out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003335 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003336 return r;
3337}
3338
Sheng Yang2384d2b2008-01-17 15:14:33 +08003339static void allocate_vpid(struct vcpu_vmx *vmx)
3340{
3341 int vpid;
3342
3343 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02003344 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003345 return;
3346 spin_lock(&vmx_vpid_lock);
3347 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
3348 if (vpid < VMX_NR_VPIDS) {
3349 vmx->vpid = vpid;
3350 __set_bit(vpid, vmx_vpid_bitmap);
3351 }
3352 spin_unlock(&vmx_vpid_lock);
3353}
3354
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003355static void free_vpid(struct vcpu_vmx *vmx)
3356{
3357 if (!enable_vpid)
3358 return;
3359 spin_lock(&vmx_vpid_lock);
3360 if (vmx->vpid != 0)
3361 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3362 spin_unlock(&vmx_vpid_lock);
3363}
3364
Avi Kivity58972972009-02-24 22:26:47 +02003365static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08003366{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003367 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003368
3369 if (!cpu_has_vmx_msr_bitmap())
3370 return;
3371
3372 /*
3373 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3374 * have the write-low and read-high bitmap offsets the wrong way round.
3375 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3376 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003377 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003378 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
3379 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08003380 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3381 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003382 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
3383 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08003384 }
Sheng Yang25c5f222008-03-28 13:18:56 +08003385}
3386
Avi Kivity58972972009-02-24 22:26:47 +02003387static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
3388{
3389 if (!longmode_only)
3390 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
3391 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
3392}
3393
Avi Kivity6aa8b732006-12-10 02:21:36 -08003394/*
3395 * Sets up the vmcs for emulated real mode.
3396 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003397static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003398{
Sheng Yang468d4722008-10-09 16:01:55 +08003399 u32 host_sysenter_cs, msr_low, msr_high;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003400 u32 junk;
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10003401 u64 host_pat;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003402 unsigned long a;
Gleb Natapov89a27f42010-02-16 10:51:48 +02003403 struct desc_ptr dt;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003404 int i;
Avi Kivitycd2276a2007-05-14 20:41:13 +03003405 unsigned long kvm_vmx_return;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003406 u32 exec_control;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003407
Avi Kivity6aa8b732006-12-10 02:21:36 -08003408 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003409 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
3410 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003411
Sheng Yang25c5f222008-03-28 13:18:56 +08003412 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02003413 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08003414
Avi Kivity6aa8b732006-12-10 02:21:36 -08003415 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
3416
Avi Kivity6aa8b732006-12-10 02:21:36 -08003417 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003418 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
3419 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003420
3421 exec_control = vmcs_config.cpu_based_exec_ctrl;
3422 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
3423 exec_control &= ~CPU_BASED_TPR_SHADOW;
3424#ifdef CONFIG_X86_64
3425 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3426 CPU_BASED_CR8_LOAD_EXITING;
3427#endif
3428 }
Avi Kivity089d0342009-03-23 18:26:32 +02003429 if (!enable_ept)
Sheng Yangd56f5462008-04-25 10:13:16 +08003430 exec_control |= CPU_BASED_CR3_STORE_EXITING |
Marcelo Tosatti83dbc832008-10-07 17:01:27 -03003431 CPU_BASED_CR3_LOAD_EXITING |
3432 CPU_BASED_INVLPG_EXITING;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003433 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003434
Sheng Yang83ff3b92007-11-21 14:33:25 +08003435 if (cpu_has_secondary_exec_ctrls()) {
3436 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
3437 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3438 exec_control &=
3439 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Sheng Yang2384d2b2008-01-17 15:14:33 +08003440 if (vmx->vpid == 0)
3441 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang046d8712009-11-27 16:46:26 +08003442 if (!enable_ept) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003443 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
Sheng Yang046d8712009-11-27 16:46:26 +08003444 enable_unrestricted_guest = 0;
3445 }
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003446 if (!enable_unrestricted_guest)
3447 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003448 if (!ple_gap)
3449 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Sheng Yang83ff3b92007-11-21 14:33:25 +08003450 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
3451 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08003452
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003453 if (ple_gap) {
3454 vmcs_write32(PLE_GAP, ple_gap);
3455 vmcs_write32(PLE_WINDOW, ple_window);
3456 }
3457
Avi Kivityc7addb92007-09-16 18:58:32 +02003458 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
3459 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003460 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
3461
Avi Kivity1c11e712010-05-03 16:05:44 +03003462 vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003463 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
3464 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
3465
3466 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
3467 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3468 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity9581d442010-10-19 16:46:55 +02003469 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
3470 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003471 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003472#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003473 rdmsrl(MSR_FS_BASE, a);
3474 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
3475 rdmsrl(MSR_GS_BASE, a);
3476 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
3477#else
3478 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
3479 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
3480#endif
3481
3482 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3483
Wei Yongjunec687982010-03-05 12:11:48 +08003484 native_store_idt(&dt);
Gleb Natapov89a27f42010-02-16 10:51:48 +02003485 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003486
Mike Dayd77c26f2007-10-08 09:02:08 -04003487 asm("mov $.Lkvm_vmx_return, %0" : "=r"(kvm_vmx_return));
Avi Kivitycd2276a2007-05-14 20:41:13 +03003488 vmcs_writel(HOST_RIP, kvm_vmx_return); /* 22.2.5 */
Eddie Dong2cc51562007-05-21 07:28:09 +03003489 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
3490 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003491 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03003492 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003493 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003494
3495 rdmsr(MSR_IA32_SYSENTER_CS, host_sysenter_cs, junk);
3496 vmcs_write32(HOST_IA32_SYSENTER_CS, host_sysenter_cs);
3497 rdmsrl(MSR_IA32_SYSENTER_ESP, a);
3498 vmcs_writel(HOST_IA32_SYSENTER_ESP, a); /* 22.2.3 */
3499 rdmsrl(MSR_IA32_SYSENTER_EIP, a);
3500 vmcs_writel(HOST_IA32_SYSENTER_EIP, a); /* 22.2.3 */
3501
Sheng Yang468d4722008-10-09 16:01:55 +08003502 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3503 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3504 host_pat = msr_low | ((u64) msr_high << 32);
3505 vmcs_write64(HOST_IA32_PAT, host_pat);
3506 }
3507 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
3508 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3509 host_pat = msr_low | ((u64) msr_high << 32);
3510 /* Write the default value follow host pat */
3511 vmcs_write64(GUEST_IA32_PAT, host_pat);
3512 /* Keep arch.pat sync with GUEST_IA32_PAT */
3513 vmx->vcpu.arch.pat = host_pat;
3514 }
3515
Avi Kivity6aa8b732006-12-10 02:21:36 -08003516 for (i = 0; i < NR_VMX_MSR; ++i) {
3517 u32 index = vmx_msr_index[i];
3518 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003519 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003520
3521 if (rdmsr_safe(index, &data_low, &data_high) < 0)
3522 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08003523 if (wrmsr_safe(index, data_low, data_high) < 0)
3524 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03003525 vmx->guest_msrs[j].index = i;
3526 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02003527 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003528 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003529 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003530
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003531 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003532
3533 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003534 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
3535
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003536 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Avi Kivity4c386092009-12-07 12:26:18 +02003537 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
Avi Kivityce03e4f2009-12-07 12:29:14 +02003538 if (enable_ept)
3539 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Avi Kivity4c386092009-12-07 12:26:18 +02003540 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003541
Zachary Amsden99e3e302010-08-19 22:07:17 -10003542 kvm_write_tsc(&vmx->vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003543
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003544 return 0;
3545}
3546
3547static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
3548{
3549 struct vcpu_vmx *vmx = to_vmx(vcpu);
3550 u64 msr;
Xiao Guangrong4b9d3a02010-06-08 10:15:51 +08003551 int ret;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003552
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003553 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003554
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003555 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003556
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003557 vmx->soft_vnmi_blocked = 0;
3558
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003559 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003560 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003561 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003562 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003563 msr |= MSR_IA32_APICBASE_BSP;
3564 kvm_set_apic_base(&vmx->vcpu, msr);
3565
Jan Kiszka10ab25c2010-05-25 16:01:50 +02003566 ret = fx_init(&vmx->vcpu);
3567 if (ret != 0)
3568 goto out;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003569
Avi Kivity2fb92db2011-04-27 19:42:18 +03003570 vmx_segment_cache_clear(vmx);
3571
Avi Kivity5706be02008-08-20 15:07:31 +03003572 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003573 /*
3574 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
3575 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
3576 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003577 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003578 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
3579 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
3580 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003581 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
3582 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003583 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003584
3585 seg_setup(VCPU_SREG_DS);
3586 seg_setup(VCPU_SREG_ES);
3587 seg_setup(VCPU_SREG_FS);
3588 seg_setup(VCPU_SREG_GS);
3589 seg_setup(VCPU_SREG_SS);
3590
3591 vmcs_write16(GUEST_TR_SELECTOR, 0);
3592 vmcs_writel(GUEST_TR_BASE, 0);
3593 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
3594 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3595
3596 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
3597 vmcs_writel(GUEST_LDTR_BASE, 0);
3598 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
3599 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
3600
3601 vmcs_write32(GUEST_SYSENTER_CS, 0);
3602 vmcs_writel(GUEST_SYSENTER_ESP, 0);
3603 vmcs_writel(GUEST_SYSENTER_EIP, 0);
3604
3605 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003606 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003607 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003608 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003609 kvm_rip_write(vcpu, 0);
3610 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003611
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003612 vmcs_writel(GUEST_DR7, 0x400);
3613
3614 vmcs_writel(GUEST_GDTR_BASE, 0);
3615 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
3616
3617 vmcs_writel(GUEST_IDTR_BASE, 0);
3618 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
3619
Anthony Liguori443381a2010-12-06 10:53:38 -06003620 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003621 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
3622 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
3623
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003624 /* Special registers */
3625 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
3626
3627 setup_msrs(vmx);
3628
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
3630
Sheng Yangf78e0e22007-10-29 09:40:42 +08003631 if (cpu_has_vmx_tpr_shadow()) {
3632 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
3633 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
3634 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09003635 __pa(vmx->vcpu.arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08003636 vmcs_write32(TPR_THRESHOLD, 0);
3637 }
3638
3639 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3640 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003641 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642
Sheng Yang2384d2b2008-01-17 15:14:33 +08003643 if (vmx->vpid != 0)
3644 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
3645
Eduardo Habkostfa400522009-10-24 02:49:58 -02003646 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003647 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003648 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003649 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003650 vmx_fpu_activate(&vmx->vcpu);
3651 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003652
Gui Jianfengb9d762f2010-06-07 10:32:29 +08003653 vpid_sync_context(vmx);
Sheng Yang2384d2b2008-01-17 15:14:33 +08003654
Marcelo Tosatti3200f402008-03-29 20:17:59 -03003655 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003656
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003657 /* HACK: Don't enable emulation on guest boot/reset */
3658 vmx->emulation_required = 0;
3659
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660out:
3661 return ret;
3662}
3663
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003664static void enable_irq_window(struct kvm_vcpu *vcpu)
3665{
3666 u32 cpu_based_vm_exec_control;
3667
3668 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3669 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
3670 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3671}
3672
3673static void enable_nmi_window(struct kvm_vcpu *vcpu)
3674{
3675 u32 cpu_based_vm_exec_control;
3676
3677 if (!cpu_has_virtual_nmis()) {
3678 enable_irq_window(vcpu);
3679 return;
3680 }
3681
Avi Kivity30bd0c42010-11-01 23:20:48 +02003682 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
3683 enable_irq_window(vcpu);
3684 return;
3685 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003686 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3687 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3688 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3689}
3690
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003691static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03003692{
Avi Kivity9c8cba32007-11-22 11:42:59 +02003693 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003694 uint32_t intr;
3695 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02003696
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003697 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003698
Avi Kivityfa89a812008-09-01 15:57:51 +03003699 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003700 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003701 int inc_eip = 0;
3702 if (vcpu->arch.interrupt.soft)
3703 inc_eip = vcpu->arch.event_exit_inst_len;
3704 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003705 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003706 return;
3707 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003708 intr = irq | INTR_INFO_VALID_MASK;
3709 if (vcpu->arch.interrupt.soft) {
3710 intr |= INTR_TYPE_SOFT_INTR;
3711 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3712 vmx->vcpu.arch.event_exit_inst_len);
3713 } else
3714 intr |= INTR_TYPE_EXT_INTR;
3715 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Anthony Liguori443381a2010-12-06 10:53:38 -06003716 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003717}
3718
Sheng Yangf08864b2008-05-15 18:23:25 +08003719static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
3720{
Jan Kiszka66a5a342008-09-26 09:30:51 +02003721 struct vcpu_vmx *vmx = to_vmx(vcpu);
3722
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003723 if (!cpu_has_virtual_nmis()) {
3724 /*
3725 * Tracking the NMI-blocked state in software is built upon
3726 * finding the next open IRQ window. This, in turn, depends on
3727 * well-behaving guests: They have to keep IRQs disabled at
3728 * least as long as the NMI handler runs. Otherwise we may
3729 * cause NMI nesting, maybe breaking the guest. But as this is
3730 * highly unlikely, we can live with the residual risk.
3731 */
3732 vmx->soft_vnmi_blocked = 1;
3733 vmx->vnmi_blocked_time = 0;
3734 }
3735
Jan Kiszka487b3912008-09-26 09:30:56 +02003736 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02003737 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003738 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003739 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003740 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02003741 return;
3742 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003743 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
3744 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Anthony Liguori443381a2010-12-06 10:53:38 -06003745 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003746}
3747
Gleb Natapovc4282df2009-04-21 17:45:07 +03003748static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02003749{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003750 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03003751 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02003752
Gleb Natapovc4282df2009-04-21 17:45:07 +03003753 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
Avi Kivity30bd0c42010-11-01 23:20:48 +02003754 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
3755 | GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02003756}
3757
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003758static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
3759{
3760 if (!cpu_has_virtual_nmis())
3761 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02003762 if (to_vmx(vcpu)->nmi_known_unmasked)
3763 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03003764 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003765}
3766
3767static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3768{
3769 struct vcpu_vmx *vmx = to_vmx(vcpu);
3770
3771 if (!cpu_has_virtual_nmis()) {
3772 if (vmx->soft_vnmi_blocked != masked) {
3773 vmx->soft_vnmi_blocked = masked;
3774 vmx->vnmi_blocked_time = 0;
3775 }
3776 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02003777 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003778 if (masked)
3779 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3780 GUEST_INTR_STATE_NMI);
3781 else
3782 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3783 GUEST_INTR_STATE_NMI);
3784 }
3785}
3786
Gleb Natapov78646122009-03-23 12:12:11 +02003787static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
3788{
Gleb Natapovc4282df2009-04-21 17:45:07 +03003789 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
3790 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3791 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02003792}
3793
Izik Eiduscbc94022007-10-25 00:29:55 +02003794static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
3795{
3796 int ret;
3797 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08003798 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02003799 .guest_phys_addr = addr,
3800 .memory_size = PAGE_SIZE * 3,
3801 .flags = 0,
3802 };
3803
3804 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
3805 if (ret)
3806 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003807 kvm->arch.tss_addr = addr;
Gleb Natapov93ea5382011-02-21 12:07:59 +02003808 if (!init_rmode_tss(kvm))
3809 return -ENOMEM;
3810
Izik Eiduscbc94022007-10-25 00:29:55 +02003811 return 0;
3812}
3813
Avi Kivity6aa8b732006-12-10 02:21:36 -08003814static int handle_rmode_exception(struct kvm_vcpu *vcpu,
3815 int vec, u32 err_code)
3816{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03003817 /*
3818 * Instruction with address size override prefix opcode 0x67
3819 * Cause the #SS fault with 0 error code in VM86 mode.
3820 */
3821 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Andre Przywara51d8b662010-12-21 11:12:02 +01003822 if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003823 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003824 /*
3825 * Forward all other exceptions that are valid in real mode.
3826 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
3827 * the required debugging infrastructure rework.
3828 */
3829 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003830 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003831 if (vcpu->guest_debug &
3832 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
3833 return 0;
3834 kvm_queue_exception(vcpu, vec);
3835 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003836 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01003837 /*
3838 * Update instruction length as we may reinject the exception
3839 * from user space while in guest debugging mode.
3840 */
3841 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
3842 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003843 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
3844 return 0;
3845 /* fall through */
3846 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003847 case OF_VECTOR:
3848 case BR_VECTOR:
3849 case UD_VECTOR:
3850 case DF_VECTOR:
3851 case SS_VECTOR:
3852 case GP_VECTOR:
3853 case MF_VECTOR:
3854 kvm_queue_exception(vcpu, vec);
3855 return 1;
3856 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003857 return 0;
3858}
3859
Andi Kleena0861c02009-06-08 17:37:09 +08003860/*
3861 * Trigger machine check on the host. We assume all the MSRs are already set up
3862 * by the CPU and that we still run on the same CPU as the MCE occurred on.
3863 * We pass a fake environment to the machine check handler because we want
3864 * the guest to be always treated like user space, no matter what context
3865 * it used internally.
3866 */
3867static void kvm_machine_check(void)
3868{
3869#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
3870 struct pt_regs regs = {
3871 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
3872 .flags = X86_EFLAGS_IF,
3873 };
3874
3875 do_machine_check(&regs, 0);
3876#endif
3877}
3878
Avi Kivity851ba692009-08-24 11:10:17 +03003879static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08003880{
3881 /* already handled by vcpu_run */
3882 return 1;
3883}
3884
Avi Kivity851ba692009-08-24 11:10:17 +03003885static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003886{
Avi Kivity1155f762007-11-22 11:30:47 +02003887 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003888 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003889 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003890 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003891 u32 vect_info;
3892 enum emulation_result er;
3893
Avi Kivity1155f762007-11-22 11:30:47 +02003894 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02003895 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003896
Andi Kleena0861c02009-06-08 17:37:09 +08003897 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03003898 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003899
Avi Kivity6aa8b732006-12-10 02:21:36 -08003900 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02003901 !is_page_fault(intr_info)) {
3902 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3903 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
3904 vcpu->run->internal.ndata = 2;
3905 vcpu->run->internal.data[0] = vect_info;
3906 vcpu->run->internal.data[1] = intr_info;
3907 return 0;
3908 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003909
Jan Kiszkae4a41882008-09-26 09:30:46 +02003910 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02003911 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003912
3913 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03003914 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003915 return 1;
3916 }
3917
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003918 if (is_invalid_opcode(intr_info)) {
Andre Przywara51d8b662010-12-21 11:12:02 +01003919 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003920 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02003921 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05003922 return 1;
3923 }
3924
Avi Kivity6aa8b732006-12-10 02:21:36 -08003925 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06003926 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003927 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
3928 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08003929 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02003930 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08003931 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003932 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003933 trace_kvm_page_fault(cr2, error_code);
3934
Gleb Natapov3298b752009-05-11 13:35:46 +03003935 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03003936 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01003937 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003938 }
3939
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003940 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08003941 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003942 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003943 if (vcpu->arch.halt_request) {
3944 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003945 return kvm_emulate_halt(vcpu);
3946 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003947 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03003948 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003949
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003950 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003951 switch (ex_no) {
3952 case DB_VECTOR:
3953 dr6 = vmcs_readl(EXIT_QUALIFICATION);
3954 if (!(vcpu->guest_debug &
3955 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
3956 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
3957 kvm_queue_exception(vcpu, DB_VECTOR);
3958 return 1;
3959 }
3960 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
3961 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
3962 /* fall through */
3963 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01003964 /*
3965 * Update instruction length as we may reinject #BP from
3966 * user space while in guest debugging mode. Reading it for
3967 * #DB as well causes no harm, it is not used in that case.
3968 */
3969 vmx->vcpu.arch.event_exit_inst_len =
3970 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003971 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03003972 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003973 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
3974 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003975 break;
3976 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003977 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
3978 kvm_run->ex.exception = ex_no;
3979 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003980 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003981 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003982 return 0;
3983}
3984
Avi Kivity851ba692009-08-24 11:10:17 +03003985static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003986{
Avi Kivity1165f5f2007-04-19 17:27:43 +03003987 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003988 return 1;
3989}
3990
Avi Kivity851ba692009-08-24 11:10:17 +03003991static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08003992{
Avi Kivity851ba692009-08-24 11:10:17 +03003993 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08003994 return 0;
3995}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996
Avi Kivity851ba692009-08-24 11:10:17 +03003997static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003998{
He, Qingbfdaab02007-09-12 14:18:28 +08003999 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01004000 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004001 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004002
He, Qingbfdaab02007-09-12 14:18:28 +08004003 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02004004 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004005 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004006
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004007 ++vcpu->stat.io_exits;
4008
4009 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01004010 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004011
4012 port = exit_qualification >> 16;
4013 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01004014 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004015
4016 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017}
4018
Ingo Molnar102d8322007-02-19 14:37:47 +02004019static void
4020vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4021{
4022 /*
4023 * Patch in the VMCALL instruction:
4024 */
4025 hypercall[0] = 0x0f;
4026 hypercall[1] = 0x01;
4027 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004028}
4029
Avi Kivity851ba692009-08-24 11:10:17 +03004030static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004031{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004032 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004033 int cr;
4034 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004035 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004036
He, Qingbfdaab02007-09-12 14:18:28 +08004037 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004038 cr = exit_qualification & 15;
4039 reg = (exit_qualification >> 8) & 15;
4040 switch ((exit_qualification >> 4) & 3) {
4041 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004042 val = kvm_register_read(vcpu, reg);
4043 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004044 switch (cr) {
4045 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004046 err = kvm_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004047 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004048 return 1;
4049 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004050 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004051 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052 return 1;
4053 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004054 err = kvm_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004055 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004056 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004057 case 8: {
4058 u8 cr8_prev = kvm_get_cr8(vcpu);
4059 u8 cr8 = kvm_register_read(vcpu, reg);
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004060 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004061 kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004062 if (irqchip_in_kernel(vcpu->kvm))
4063 return 1;
4064 if (cr8_prev <= cr8)
4065 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03004066 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004067 return 0;
4068 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004069 };
4070 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004071 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02004072 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02004073 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03004074 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02004075 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03004076 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004077 case 1: /*mov from cr*/
4078 switch (cr) {
4079 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004080 val = kvm_read_cr3(vcpu);
4081 kvm_register_write(vcpu, reg, val);
4082 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004083 skip_emulated_instruction(vcpu);
4084 return 1;
4085 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004086 val = kvm_get_cr8(vcpu);
4087 kvm_register_write(vcpu, reg, val);
4088 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004089 skip_emulated_instruction(vcpu);
4090 return 1;
4091 }
4092 break;
4093 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004094 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004095 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004096 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004097
4098 skip_emulated_instruction(vcpu);
4099 return 1;
4100 default:
4101 break;
4102 }
Avi Kivity851ba692009-08-24 11:10:17 +03004103 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10004104 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105 (int)(exit_qualification >> 4) & 3, cr);
4106 return 0;
4107}
4108
Avi Kivity851ba692009-08-24 11:10:17 +03004109static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004110{
He, Qingbfdaab02007-09-12 14:18:28 +08004111 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004112 int dr, reg;
4113
Jan Kiszkaf2483412010-01-20 18:20:20 +01004114 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004115 if (!kvm_require_cpl(vcpu, 0))
4116 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004117 dr = vmcs_readl(GUEST_DR7);
4118 if (dr & DR7_GD) {
4119 /*
4120 * As the vm-exit takes precedence over the debug trap, we
4121 * need to emulate the latter, either for the host or the
4122 * guest debugging itself.
4123 */
4124 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03004125 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
4126 vcpu->run->debug.arch.dr7 = dr;
4127 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004128 vmcs_readl(GUEST_CS_BASE) +
4129 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03004130 vcpu->run->debug.arch.exception = DB_VECTOR;
4131 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004132 return 0;
4133 } else {
4134 vcpu->arch.dr7 &= ~DR7_GD;
4135 vcpu->arch.dr6 |= DR6_BD;
4136 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
4137 kvm_queue_exception(vcpu, DB_VECTOR);
4138 return 1;
4139 }
4140 }
4141
He, Qingbfdaab02007-09-12 14:18:28 +08004142 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004143 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4144 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4145 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004146 unsigned long val;
4147 if (!kvm_get_dr(vcpu, dr, &val))
4148 kvm_register_write(vcpu, reg, val);
4149 } else
4150 kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004151 skip_emulated_instruction(vcpu);
4152 return 1;
4153}
4154
Gleb Natapov020df072010-04-13 10:05:23 +03004155static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
4156{
4157 vmcs_writel(GUEST_DR7, val);
4158}
4159
Avi Kivity851ba692009-08-24 11:10:17 +03004160static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161{
Avi Kivity06465c52007-02-28 20:46:53 +02004162 kvm_emulate_cpuid(vcpu);
4163 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004164}
4165
Avi Kivity851ba692009-08-24 11:10:17 +03004166static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004167{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004168 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08004169 u64 data;
4170
4171 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02004172 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004173 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004174 return 1;
4175 }
4176
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004177 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004178
Avi Kivity6aa8b732006-12-10 02:21:36 -08004179 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004180 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
4181 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004182 skip_emulated_instruction(vcpu);
4183 return 1;
4184}
4185
Avi Kivity851ba692009-08-24 11:10:17 +03004186static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004187{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004188 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
4189 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
4190 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004191
4192 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02004193 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004194 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004195 return 1;
4196 }
4197
Avi Kivity59200272010-01-25 19:47:02 +02004198 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004199 skip_emulated_instruction(vcpu);
4200 return 1;
4201}
4202
Avi Kivity851ba692009-08-24 11:10:17 +03004203static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004204{
Avi Kivity3842d132010-07-27 12:30:24 +03004205 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004206 return 1;
4207}
4208
Avi Kivity851ba692009-08-24 11:10:17 +03004209static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004210{
Eddie Dong85f455f2007-07-06 12:20:49 +03004211 u32 cpu_based_vm_exec_control;
4212
4213 /* clear pending irq */
4214 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4215 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
4216 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004217
Avi Kivity3842d132010-07-27 12:30:24 +03004218 kvm_make_request(KVM_REQ_EVENT, vcpu);
4219
Jan Kiszkaa26bf122008-09-26 09:30:45 +02004220 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004221
Dor Laorc1150d82007-01-05 16:36:24 -08004222 /*
4223 * If the user space waits to inject interrupts, exit as soon as
4224 * possible
4225 */
Gleb Natapov80618232009-04-21 17:44:56 +03004226 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03004227 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03004228 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004229 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08004230 return 0;
4231 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004232 return 1;
4233}
4234
Avi Kivity851ba692009-08-24 11:10:17 +03004235static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004236{
4237 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03004238 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004239}
4240
Avi Kivity851ba692009-08-24 11:10:17 +03004241static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02004242{
Dor Laor510043d2007-02-19 18:25:43 +02004243 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004244 kvm_emulate_hypercall(vcpu);
4245 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02004246}
4247
Avi Kivity851ba692009-08-24 11:10:17 +03004248static int handle_vmx_insn(struct kvm_vcpu *vcpu)
Avi Kivitye3c7cb62009-06-16 14:19:52 +03004249{
4250 kvm_queue_exception(vcpu, UD_VECTOR);
4251 return 1;
4252}
4253
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004254static int handle_invd(struct kvm_vcpu *vcpu)
4255{
Andre Przywara51d8b662010-12-21 11:12:02 +01004256 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004257}
4258
Avi Kivity851ba692009-08-24 11:10:17 +03004259static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03004260{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004261 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004262
4263 kvm_mmu_invlpg(vcpu, exit_qualification);
4264 skip_emulated_instruction(vcpu);
4265 return 1;
4266}
4267
Avi Kivity851ba692009-08-24 11:10:17 +03004268static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02004269{
4270 skip_emulated_instruction(vcpu);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004271 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02004272 return 1;
4273}
4274
Dexuan Cui2acf9232010-06-10 11:27:12 +08004275static int handle_xsetbv(struct kvm_vcpu *vcpu)
4276{
4277 u64 new_bv = kvm_read_edx_eax(vcpu);
4278 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
4279
4280 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
4281 skip_emulated_instruction(vcpu);
4282 return 1;
4283}
4284
Avi Kivity851ba692009-08-24 11:10:17 +03004285static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004286{
Andre Przywara51d8b662010-12-21 11:12:02 +01004287 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004288}
4289
Avi Kivity851ba692009-08-24 11:10:17 +03004290static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02004291{
Jan Kiszka60637aa2008-09-26 09:30:47 +02004292 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004293 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004294 bool has_error_code = false;
4295 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004296 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004297 int reason, type, idt_v;
4298
4299 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
4300 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02004301
4302 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4303
4304 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004305 if (reason == TASK_SWITCH_GATE && idt_v) {
4306 switch (type) {
4307 case INTR_TYPE_NMI_INTR:
4308 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02004309 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004310 break;
4311 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004312 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004313 kvm_clear_interrupt_queue(vcpu);
4314 break;
4315 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02004316 if (vmx->idt_vectoring_info &
4317 VECTORING_INFO_DELIVER_CODE_MASK) {
4318 has_error_code = true;
4319 error_code =
4320 vmcs_read32(IDT_VECTORING_ERROR_CODE);
4321 }
4322 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004323 case INTR_TYPE_SOFT_EXCEPTION:
4324 kvm_clear_exception_queue(vcpu);
4325 break;
4326 default:
4327 break;
4328 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02004329 }
Izik Eidus37817f22008-03-24 23:14:53 +02004330 tss_selector = exit_qualification;
4331
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004332 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
4333 type != INTR_TYPE_EXT_INTR &&
4334 type != INTR_TYPE_NMI_INTR))
4335 skip_emulated_instruction(vcpu);
4336
Gleb Natapovacb54512010-04-15 21:03:50 +03004337 if (kvm_task_switch(vcpu, tss_selector, reason,
4338 has_error_code, error_code) == EMULATE_FAIL) {
4339 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4340 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4341 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004342 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03004343 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004344
4345 /* clear all local breakpoint enable flags */
4346 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
4347
4348 /*
4349 * TODO: What about debug traps on tss switch?
4350 * Are we supposed to inject them and update dr6?
4351 */
4352
4353 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02004354}
4355
Avi Kivity851ba692009-08-24 11:10:17 +03004356static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08004357{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004358 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08004359 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08004360 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08004361
Sheng Yangf9c617f2009-03-25 10:08:52 +08004362 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08004363
4364 if (exit_qualification & (1 << 6)) {
4365 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02004366 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08004367 }
4368
4369 gla_validity = (exit_qualification >> 7) & 0x3;
4370 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
4371 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
4372 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
4373 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08004374 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08004375 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
4376 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03004377 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4378 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03004379 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08004380 }
4381
4382 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004383 trace_kvm_page_fault(gpa, exit_qualification);
Andre Przywaradc25e892010-12-21 11:12:07 +01004384 return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08004385}
4386
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004387static u64 ept_rsvd_mask(u64 spte, int level)
4388{
4389 int i;
4390 u64 mask = 0;
4391
4392 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
4393 mask |= (1ULL << i);
4394
4395 if (level > 2)
4396 /* bits 7:3 reserved */
4397 mask |= 0xf8;
4398 else if (level == 2) {
4399 if (spte & (1ULL << 7))
4400 /* 2MB ref, bits 20:12 reserved */
4401 mask |= 0x1ff000;
4402 else
4403 /* bits 6:3 reserved */
4404 mask |= 0x78;
4405 }
4406
4407 return mask;
4408}
4409
4410static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
4411 int level)
4412{
4413 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
4414
4415 /* 010b (write-only) */
4416 WARN_ON((spte & 0x7) == 0x2);
4417
4418 /* 110b (write/execute) */
4419 WARN_ON((spte & 0x7) == 0x6);
4420
4421 /* 100b (execute-only) and value not supported by logical processor */
4422 if (!cpu_has_vmx_ept_execute_only())
4423 WARN_ON((spte & 0x7) == 0x4);
4424
4425 /* not 000b */
4426 if ((spte & 0x7)) {
4427 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
4428
4429 if (rsvd_bits != 0) {
4430 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
4431 __func__, rsvd_bits);
4432 WARN_ON(1);
4433 }
4434
4435 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
4436 u64 ept_mem_type = (spte & 0x38) >> 3;
4437
4438 if (ept_mem_type == 2 || ept_mem_type == 3 ||
4439 ept_mem_type == 7) {
4440 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
4441 __func__, ept_mem_type);
4442 WARN_ON(1);
4443 }
4444 }
4445 }
4446}
4447
Avi Kivity851ba692009-08-24 11:10:17 +03004448static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004449{
4450 u64 sptes[4];
4451 int nr_sptes, i;
4452 gpa_t gpa;
4453
4454 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
4455
4456 printk(KERN_ERR "EPT: Misconfiguration.\n");
4457 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
4458
4459 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
4460
4461 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
4462 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
4463
Avi Kivity851ba692009-08-24 11:10:17 +03004464 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4465 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004466
4467 return 0;
4468}
4469
Avi Kivity851ba692009-08-24 11:10:17 +03004470static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08004471{
4472 u32 cpu_based_vm_exec_control;
4473
4474 /* clear pending NMI */
4475 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4476 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
4477 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4478 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03004479 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004480
4481 return 1;
4482}
4483
Mohammed Gamal80ced182009-09-01 12:48:18 +02004484static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004485{
Avi Kivity8b3079a2009-01-05 12:10:54 +02004486 struct vcpu_vmx *vmx = to_vmx(vcpu);
4487 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02004488 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02004489 u32 cpu_exec_ctrl;
4490 bool intr_window_requested;
4491
4492 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4493 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004494
4495 while (!guest_state_valid(vcpu)) {
Avi Kivity49e9d552010-09-19 14:34:08 +02004496 if (intr_window_requested
4497 && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF))
4498 return handle_interrupt_window(&vmx->vcpu);
4499
Andre Przywara51d8b662010-12-21 11:12:02 +01004500 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004501
Mohammed Gamal80ced182009-09-01 12:48:18 +02004502 if (err == EMULATE_DO_MMIO) {
4503 ret = 0;
4504 goto out;
4505 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004506
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004507 if (err != EMULATE_DONE)
4508 return 0;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004509
4510 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02004511 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004512 if (need_resched())
4513 schedule();
4514 }
4515
Mohammed Gamal80ced182009-09-01 12:48:18 +02004516 vmx->emulation_required = 0;
4517out:
4518 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004519}
4520
Avi Kivity6aa8b732006-12-10 02:21:36 -08004521/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004522 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
4523 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
4524 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03004525static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004526{
4527 skip_emulated_instruction(vcpu);
4528 kvm_vcpu_on_spin(vcpu);
4529
4530 return 1;
4531}
4532
Sheng Yang59708672009-12-15 13:29:54 +08004533static int handle_invalid_op(struct kvm_vcpu *vcpu)
4534{
4535 kvm_queue_exception(vcpu, UD_VECTOR);
4536 return 1;
4537}
4538
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004539/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004540 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
4541 * We could reuse a single VMCS for all the L2 guests, but we also want the
4542 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
4543 * allows keeping them loaded on the processor, and in the future will allow
4544 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
4545 * every entry if they never change.
4546 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
4547 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
4548 *
4549 * The following functions allocate and free a vmcs02 in this pool.
4550 */
4551
4552/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
4553static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
4554{
4555 struct vmcs02_list *item;
4556 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4557 if (item->vmptr == vmx->nested.current_vmptr) {
4558 list_move(&item->list, &vmx->nested.vmcs02_pool);
4559 return &item->vmcs02;
4560 }
4561
4562 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
4563 /* Recycle the least recently used VMCS. */
4564 item = list_entry(vmx->nested.vmcs02_pool.prev,
4565 struct vmcs02_list, list);
4566 item->vmptr = vmx->nested.current_vmptr;
4567 list_move(&item->list, &vmx->nested.vmcs02_pool);
4568 return &item->vmcs02;
4569 }
4570
4571 /* Create a new VMCS */
4572 item = (struct vmcs02_list *)
4573 kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
4574 if (!item)
4575 return NULL;
4576 item->vmcs02.vmcs = alloc_vmcs();
4577 if (!item->vmcs02.vmcs) {
4578 kfree(item);
4579 return NULL;
4580 }
4581 loaded_vmcs_init(&item->vmcs02);
4582 item->vmptr = vmx->nested.current_vmptr;
4583 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
4584 vmx->nested.vmcs02_num++;
4585 return &item->vmcs02;
4586}
4587
4588/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
4589static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
4590{
4591 struct vmcs02_list *item;
4592 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4593 if (item->vmptr == vmptr) {
4594 free_loaded_vmcs(&item->vmcs02);
4595 list_del(&item->list);
4596 kfree(item);
4597 vmx->nested.vmcs02_num--;
4598 return;
4599 }
4600}
4601
4602/*
4603 * Free all VMCSs saved for this vcpu, except the one pointed by
4604 * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one
4605 * currently used, if running L2), and vmcs01 when running L2.
4606 */
4607static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
4608{
4609 struct vmcs02_list *item, *n;
4610 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
4611 if (vmx->loaded_vmcs != &item->vmcs02)
4612 free_loaded_vmcs(&item->vmcs02);
4613 list_del(&item->list);
4614 kfree(item);
4615 }
4616 vmx->nested.vmcs02_num = 0;
4617
4618 if (vmx->loaded_vmcs != &vmx->vmcs01)
4619 free_loaded_vmcs(&vmx->vmcs01);
4620}
4621
4622/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004623 * Emulate the VMXON instruction.
4624 * Currently, we just remember that VMX is active, and do not save or even
4625 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4626 * do not currently need to store anything in that guest-allocated memory
4627 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
4628 * argument is different from the VMXON pointer (which the spec says they do).
4629 */
4630static int handle_vmon(struct kvm_vcpu *vcpu)
4631{
4632 struct kvm_segment cs;
4633 struct vcpu_vmx *vmx = to_vmx(vcpu);
4634
4635 /* The Intel VMX Instruction Reference lists a bunch of bits that
4636 * are prerequisite to running VMXON, most notably cr4.VMXE must be
4637 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
4638 * Otherwise, we should fail with #UD. We test these now:
4639 */
4640 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
4641 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
4642 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
4643 kvm_queue_exception(vcpu, UD_VECTOR);
4644 return 1;
4645 }
4646
4647 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4648 if (is_long_mode(vcpu) && !cs.l) {
4649 kvm_queue_exception(vcpu, UD_VECTOR);
4650 return 1;
4651 }
4652
4653 if (vmx_get_cpl(vcpu)) {
4654 kvm_inject_gp(vcpu, 0);
4655 return 1;
4656 }
4657
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004658 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
4659 vmx->nested.vmcs02_num = 0;
4660
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004661 vmx->nested.vmxon = true;
4662
4663 skip_emulated_instruction(vcpu);
4664 return 1;
4665}
4666
4667/*
4668 * Intel's VMX Instruction Reference specifies a common set of prerequisites
4669 * for running VMX instructions (except VMXON, whose prerequisites are
4670 * slightly different). It also specifies what exception to inject otherwise.
4671 */
4672static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
4673{
4674 struct kvm_segment cs;
4675 struct vcpu_vmx *vmx = to_vmx(vcpu);
4676
4677 if (!vmx->nested.vmxon) {
4678 kvm_queue_exception(vcpu, UD_VECTOR);
4679 return 0;
4680 }
4681
4682 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4683 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
4684 (is_long_mode(vcpu) && !cs.l)) {
4685 kvm_queue_exception(vcpu, UD_VECTOR);
4686 return 0;
4687 }
4688
4689 if (vmx_get_cpl(vcpu)) {
4690 kvm_inject_gp(vcpu, 0);
4691 return 0;
4692 }
4693
4694 return 1;
4695}
4696
4697/*
4698 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
4699 * just stops using VMX.
4700 */
4701static void free_nested(struct vcpu_vmx *vmx)
4702{
4703 if (!vmx->nested.vmxon)
4704 return;
4705 vmx->nested.vmxon = false;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03004706 if (vmx->nested.current_vmptr != -1ull) {
4707 kunmap(vmx->nested.current_vmcs12_page);
4708 nested_release_page(vmx->nested.current_vmcs12_page);
4709 vmx->nested.current_vmptr = -1ull;
4710 vmx->nested.current_vmcs12 = NULL;
4711 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004712
4713 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004714}
4715
4716/* Emulate the VMXOFF instruction */
4717static int handle_vmoff(struct kvm_vcpu *vcpu)
4718{
4719 if (!nested_vmx_check_permission(vcpu))
4720 return 1;
4721 free_nested(to_vmx(vcpu));
4722 skip_emulated_instruction(vcpu);
4723 return 1;
4724}
4725
4726/*
Nadav Har'El064aea72011-05-25 23:04:56 +03004727 * Decode the memory-address operand of a vmx instruction, as recorded on an
4728 * exit caused by such an instruction (run by a guest hypervisor).
4729 * On success, returns 0. When the operand is invalid, returns 1 and throws
4730 * #UD or #GP.
4731 */
4732static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
4733 unsigned long exit_qualification,
4734 u32 vmx_instruction_info, gva_t *ret)
4735{
4736 /*
4737 * According to Vol. 3B, "Information for VM Exits Due to Instruction
4738 * Execution", on an exit, vmx_instruction_info holds most of the
4739 * addressing components of the operand. Only the displacement part
4740 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
4741 * For how an actual address is calculated from all these components,
4742 * refer to Vol. 1, "Operand Addressing".
4743 */
4744 int scaling = vmx_instruction_info & 3;
4745 int addr_size = (vmx_instruction_info >> 7) & 7;
4746 bool is_reg = vmx_instruction_info & (1u << 10);
4747 int seg_reg = (vmx_instruction_info >> 15) & 7;
4748 int index_reg = (vmx_instruction_info >> 18) & 0xf;
4749 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
4750 int base_reg = (vmx_instruction_info >> 23) & 0xf;
4751 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
4752
4753 if (is_reg) {
4754 kvm_queue_exception(vcpu, UD_VECTOR);
4755 return 1;
4756 }
4757
4758 /* Addr = segment_base + offset */
4759 /* offset = base + [index * scale] + displacement */
4760 *ret = vmx_get_segment_base(vcpu, seg_reg);
4761 if (base_is_valid)
4762 *ret += kvm_register_read(vcpu, base_reg);
4763 if (index_is_valid)
4764 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
4765 *ret += exit_qualification; /* holds the displacement */
4766
4767 if (addr_size == 1) /* 32 bit */
4768 *ret &= 0xffffffff;
4769
4770 /*
4771 * TODO: throw #GP (and return 1) in various cases that the VM*
4772 * instructions require it - e.g., offset beyond segment limit,
4773 * unusable or unreadable/unwritable segment, non-canonical 64-bit
4774 * address, and so on. Currently these are not checked.
4775 */
4776 return 0;
4777}
4778
4779/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08004780 * The exit handlers return 1 if the exit was handled fully and guest execution
4781 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
4782 * to be done to userspace and return 0.
4783 */
Avi Kivity851ba692009-08-24 11:10:17 +03004784static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08004785 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
4786 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08004787 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08004788 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004789 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004790 [EXIT_REASON_CR_ACCESS] = handle_cr,
4791 [EXIT_REASON_DR_ACCESS] = handle_dr,
4792 [EXIT_REASON_CPUID] = handle_cpuid,
4793 [EXIT_REASON_MSR_READ] = handle_rdmsr,
4794 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
4795 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
4796 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004797 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03004798 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02004799 [EXIT_REASON_VMCALL] = handle_vmcall,
Avi Kivitye3c7cb62009-06-16 14:19:52 +03004800 [EXIT_REASON_VMCLEAR] = handle_vmx_insn,
4801 [EXIT_REASON_VMLAUNCH] = handle_vmx_insn,
4802 [EXIT_REASON_VMPTRLD] = handle_vmx_insn,
4803 [EXIT_REASON_VMPTRST] = handle_vmx_insn,
4804 [EXIT_REASON_VMREAD] = handle_vmx_insn,
4805 [EXIT_REASON_VMRESUME] = handle_vmx_insn,
4806 [EXIT_REASON_VMWRITE] = handle_vmx_insn,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004807 [EXIT_REASON_VMOFF] = handle_vmoff,
4808 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08004809 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
4810 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02004811 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08004812 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02004813 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08004814 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004815 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
4816 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004817 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08004818 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
4819 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08004820};
4821
4822static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04004823 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004824
Avi Kivity586f9602010-11-18 13:09:54 +02004825static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
4826{
4827 *info1 = vmcs_readl(EXIT_QUALIFICATION);
4828 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
4829}
4830
Avi Kivity6aa8b732006-12-10 02:21:36 -08004831/*
4832 * The guest has exited. See if we can fix it or if we need userspace
4833 * assistance.
4834 */
Avi Kivity851ba692009-08-24 11:10:17 +03004835static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004836{
Avi Kivity29bd8a72007-09-10 17:27:03 +03004837 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08004838 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02004839 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03004840
Avi Kivityaa179112010-11-17 18:44:19 +02004841 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004842
Mohammed Gamal80ced182009-09-01 12:48:18 +02004843 /* If guest state is invalid, start emulating */
4844 if (vmx->emulation_required && emulate_invalid_guest_state)
4845 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004846
Mohammed Gamal51207022010-05-31 22:40:54 +03004847 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
4848 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4849 vcpu->run->fail_entry.hardware_entry_failure_reason
4850 = exit_reason;
4851 return 0;
4852 }
4853
Avi Kivity29bd8a72007-09-10 17:27:03 +03004854 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004855 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
4856 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03004857 = vmcs_read32(VM_INSTRUCTION_ERROR);
4858 return 0;
4859 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004860
Mike Dayd77c26f2007-10-08 09:02:08 -04004861 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08004862 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02004863 exit_reason != EXIT_REASON_EPT_VIOLATION &&
4864 exit_reason != EXIT_REASON_TASK_SWITCH))
4865 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
4866 "(0x%x) and exit reason is 0x%x\n",
4867 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004868
4869 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03004870 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004871 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004872 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01004873 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004874 /*
4875 * This CPU don't support us in finding the end of an
4876 * NMI-blocked window if the guest runs with IRQs
4877 * disabled. So we pull the trigger after 1 s of
4878 * futile waiting, but inform the user about this.
4879 */
4880 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
4881 "state on VCPU %d after 1 s timeout\n",
4882 __func__, vcpu->vcpu_id);
4883 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004884 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004885 }
4886
Avi Kivity6aa8b732006-12-10 02:21:36 -08004887 if (exit_reason < kvm_vmx_max_exit_handlers
4888 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03004889 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004890 else {
Avi Kivity851ba692009-08-24 11:10:17 +03004891 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4892 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004893 }
4894 return 0;
4895}
4896
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004897static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004898{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004899 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004900 vmcs_write32(TPR_THRESHOLD, 0);
4901 return;
4902 }
4903
Gleb Natapov95ba8273132009-04-21 17:45:08 +03004904 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004905}
4906
Avi Kivity51aa01d2010-07-20 14:31:20 +03004907static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03004908{
Avi Kivity00eba012011-03-07 17:24:54 +02004909 u32 exit_intr_info;
4910
4911 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
4912 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
4913 return;
4914
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004915 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02004916 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08004917
4918 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02004919 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08004920 kvm_machine_check();
4921
Gleb Natapov20f65982009-05-11 13:35:55 +03004922 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02004923 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08004924 (exit_intr_info & INTR_INFO_VALID_MASK)) {
4925 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03004926 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08004927 kvm_after_handle_nmi(&vmx->vcpu);
4928 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03004929}
Gleb Natapov20f65982009-05-11 13:35:55 +03004930
Avi Kivity51aa01d2010-07-20 14:31:20 +03004931static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
4932{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004933 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03004934 bool unblock_nmi;
4935 u8 vector;
4936 bool idtv_info_valid;
4937
4938 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03004939
Avi Kivitycf393f72008-07-01 16:20:21 +03004940 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02004941 if (vmx->nmi_known_unmasked)
4942 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02004943 /*
4944 * Can't use vmx->exit_intr_info since we're not sure what
4945 * the exit reason is.
4946 */
4947 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03004948 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
4949 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
4950 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004951 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03004952 * Re-set bit "block by NMI" before VM entry if vmexit caused by
4953 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004954 * SDM 3: 23.2.2 (September 2008)
4955 * Bit 12 is undefined in any of the following cases:
4956 * If the VM exit sets the valid bit in the IDT-vectoring
4957 * information field.
4958 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03004959 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03004960 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
4961 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03004962 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4963 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02004964 else
4965 vmx->nmi_known_unmasked =
4966 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
4967 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004968 } else if (unlikely(vmx->soft_vnmi_blocked))
4969 vmx->vnmi_blocked_time +=
4970 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03004971}
4972
Avi Kivity83422e12010-07-20 14:43:23 +03004973static void __vmx_complete_interrupts(struct vcpu_vmx *vmx,
4974 u32 idt_vectoring_info,
4975 int instr_len_field,
4976 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03004977{
Avi Kivity51aa01d2010-07-20 14:31:20 +03004978 u8 vector;
4979 int type;
4980 bool idtv_info_valid;
4981
4982 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03004983
Gleb Natapov37b96e92009-03-30 16:03:13 +03004984 vmx->vcpu.arch.nmi_injected = false;
4985 kvm_clear_exception_queue(&vmx->vcpu);
4986 kvm_clear_interrupt_queue(&vmx->vcpu);
4987
4988 if (!idtv_info_valid)
4989 return;
4990
Avi Kivity3842d132010-07-27 12:30:24 +03004991 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
4992
Avi Kivity668f6122008-07-02 09:28:55 +03004993 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
4994 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03004995
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004996 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03004997 case INTR_TYPE_NMI_INTR:
4998 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03004999 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005000 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03005001 * Clear bit "block by NMI" before VM entry if a NMI
5002 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03005003 */
Avi Kivity654f06f2011-03-23 15:02:47 +02005004 vmx_set_nmi_mask(&vmx->vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005005 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03005006 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005007 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005008 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005009 /* fall through */
5010 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03005011 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03005012 u32 err = vmcs_read32(error_code_field);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005013 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03005014 } else
5015 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005016 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005017 case INTR_TYPE_SOFT_INTR:
5018 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005019 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005020 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03005021 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005022 kvm_queue_interrupt(&vmx->vcpu, vector,
5023 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005024 break;
5025 default:
5026 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03005027 }
Avi Kivitycf393f72008-07-01 16:20:21 +03005028}
5029
Avi Kivity83422e12010-07-20 14:43:23 +03005030static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
5031{
5032 __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info,
5033 VM_EXIT_INSTRUCTION_LEN,
5034 IDT_VECTORING_ERROR_CODE);
5035}
5036
Avi Kivityb463a6f2010-07-20 15:06:17 +03005037static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
5038{
5039 __vmx_complete_interrupts(to_vmx(vcpu),
5040 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5041 VM_ENTRY_INSTRUCTION_LEN,
5042 VM_ENTRY_EXCEPTION_ERROR_CODE);
5043
5044 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
5045}
5046
Avi Kivityc8019492008-07-14 14:44:59 +03005047#ifdef CONFIG_X86_64
5048#define R "r"
5049#define Q "q"
5050#else
5051#define R "e"
5052#define Q "l"
5053#endif
5054
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08005055static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005056{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005057 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity104f2262010-11-18 13:12:52 +02005058
5059 /* Record the guest's net vcpu time for enforced NMI injections. */
5060 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
5061 vmx->entry_time = ktime_get();
5062
5063 /* Don't enter VMX if guest state is invalid, let the exit handler
5064 start emulation until we arrive back to a valid state */
5065 if (vmx->emulation_required && emulate_invalid_guest_state)
5066 return;
5067
5068 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
5069 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
5070 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
5071 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
5072
5073 /* When single-stepping over STI and MOV SS, we must clear the
5074 * corresponding interruptibility bits in the guest state. Otherwise
5075 * vmentry fails as it then expects bit 14 (BS) in pending debug
5076 * exceptions being set, but that's not correct for the guest debugging
5077 * case. */
5078 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
5079 vmx_set_interrupt_shadow(vcpu, 0);
5080
Nadav Har'Eld462b812011-05-24 15:26:10 +03005081 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02005082 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08005083 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03005084 "push %%"R"dx; push %%"R"bp;"
Avi Kivity40712fa2011-01-06 18:09:12 +02005085 "push %%"R"cx \n\t" /* placeholder for guest rcx */
Avi Kivityc8019492008-07-14 14:44:59 +03005086 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03005087 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
5088 "je 1f \n\t"
5089 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005090 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03005091 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03005092 /* Reload cr2 if changed */
5093 "mov %c[cr2](%0), %%"R"ax \n\t"
5094 "mov %%cr2, %%"R"dx \n\t"
5095 "cmp %%"R"ax, %%"R"dx \n\t"
5096 "je 2f \n\t"
5097 "mov %%"R"ax, %%cr2 \n\t"
5098 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005099 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02005100 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005101 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03005102 "mov %c[rax](%0), %%"R"ax \n\t"
5103 "mov %c[rbx](%0), %%"R"bx \n\t"
5104 "mov %c[rdx](%0), %%"R"dx \n\t"
5105 "mov %c[rsi](%0), %%"R"si \n\t"
5106 "mov %c[rdi](%0), %%"R"di \n\t"
5107 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005108#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02005109 "mov %c[r8](%0), %%r8 \n\t"
5110 "mov %c[r9](%0), %%r9 \n\t"
5111 "mov %c[r10](%0), %%r10 \n\t"
5112 "mov %c[r11](%0), %%r11 \n\t"
5113 "mov %c[r12](%0), %%r12 \n\t"
5114 "mov %c[r13](%0), %%r13 \n\t"
5115 "mov %c[r14](%0), %%r14 \n\t"
5116 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005117#endif
Avi Kivityc8019492008-07-14 14:44:59 +03005118 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
5119
Avi Kivity6aa8b732006-12-10 02:21:36 -08005120 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03005121 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005122 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03005123 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005124 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03005125 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005126 /* Save guest registers, load host registers, keep flags */
Avi Kivity40712fa2011-01-06 18:09:12 +02005127 "mov %0, %c[wordsize](%%"R"sp) \n\t"
5128 "pop %0 \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03005129 "mov %%"R"ax, %c[rax](%0) \n\t"
5130 "mov %%"R"bx, %c[rbx](%0) \n\t"
Avi Kivity1c696d02011-01-06 18:09:11 +02005131 "pop"Q" %c[rcx](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03005132 "mov %%"R"dx, %c[rdx](%0) \n\t"
5133 "mov %%"R"si, %c[rsi](%0) \n\t"
5134 "mov %%"R"di, %c[rdi](%0) \n\t"
5135 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005136#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02005137 "mov %%r8, %c[r8](%0) \n\t"
5138 "mov %%r9, %c[r9](%0) \n\t"
5139 "mov %%r10, %c[r10](%0) \n\t"
5140 "mov %%r11, %c[r11](%0) \n\t"
5141 "mov %%r12, %c[r12](%0) \n\t"
5142 "mov %%r13, %c[r13](%0) \n\t"
5143 "mov %%r14, %c[r14](%0) \n\t"
5144 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005145#endif
Avi Kivityc8019492008-07-14 14:44:59 +03005146 "mov %%cr2, %%"R"ax \n\t"
5147 "mov %%"R"ax, %c[cr2](%0) \n\t"
5148
Avi Kivity1c696d02011-01-06 18:09:11 +02005149 "pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02005150 "setbe %c[fail](%0) \n\t"
5151 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03005152 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02005153 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03005154 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005155 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
5156 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
5157 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
5158 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
5159 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
5160 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
5161 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005162#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005163 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
5164 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
5165 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
5166 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
5167 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
5168 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
5169 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
5170 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005171#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02005172 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
5173 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02005174 : "cc", "memory"
Jan Kiszka07d6f552010-09-28 16:37:42 +02005175 , R"ax", R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02005176#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02005177 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
5178#endif
5179 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005180
Avi Kivity6de4f3a2009-05-31 22:58:47 +03005181 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02005182 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivity69c73022011-03-07 15:26:44 +02005183 | (1 << VCPU_EXREG_CPL)
Avi Kivityaff48ba2010-12-05 18:56:11 +02005184 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03005185 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02005186 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005187 vcpu->arch.regs_dirty = 0;
5188
Avi Kivity1155f762007-11-22 11:30:47 +02005189 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
5190
Mike Dayd77c26f2007-10-08 09:02:08 -04005191 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Nadav Har'Eld462b812011-05-24 15:26:10 +03005192 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02005193
Avi Kivity51aa01d2010-07-20 14:31:20 +03005194 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03005195
5196 vmx_complete_atomic_exit(vmx);
5197 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03005198 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005199}
5200
Avi Kivityc8019492008-07-14 14:44:59 +03005201#undef R
5202#undef Q
5203
Avi Kivity6aa8b732006-12-10 02:21:36 -08005204static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
5205{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005206 struct vcpu_vmx *vmx = to_vmx(vcpu);
5207
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005208 free_vpid(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005209 free_nested(vmx);
Nadav Har'Eld462b812011-05-24 15:26:10 +03005210 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005211 kfree(vmx->guest_msrs);
5212 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10005213 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005214}
5215
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005216static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005217{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005218 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10005219 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03005220 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005221
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005222 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005223 return ERR_PTR(-ENOMEM);
5224
Sheng Yang2384d2b2008-01-17 15:14:33 +08005225 allocate_vpid(vmx);
5226
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005227 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
5228 if (err)
5229 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005230
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005231 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02005232 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005233 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005234 goto uninit_vcpu;
5235 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08005236
Nadav Har'Eld462b812011-05-24 15:26:10 +03005237 vmx->loaded_vmcs = &vmx->vmcs01;
5238 vmx->loaded_vmcs->vmcs = alloc_vmcs();
5239 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005240 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03005241 if (!vmm_exclusive)
5242 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
5243 loaded_vmcs_init(vmx->loaded_vmcs);
5244 if (!vmm_exclusive)
5245 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005246
Avi Kivity15ad7142007-07-11 18:17:21 +03005247 cpu = get_cpu();
5248 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10005249 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10005250 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005251 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03005252 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005253 if (err)
5254 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02005255 if (vm_need_virtualize_apic_accesses(kvm))
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02005256 err = alloc_apic_access_page(kvm);
5257 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02005258 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005259
Sheng Yangb927a3c2009-07-21 10:42:48 +08005260 if (enable_ept) {
5261 if (!kvm->arch.ept_identity_map_addr)
5262 kvm->arch.ept_identity_map_addr =
5263 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Gleb Natapov93ea5382011-02-21 12:07:59 +02005264 err = -ENOMEM;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005265 if (alloc_identity_pagetable(kvm) != 0)
5266 goto free_vmcs;
Gleb Natapov93ea5382011-02-21 12:07:59 +02005267 if (!init_rmode_identity_map(kvm))
5268 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005269 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005270
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03005271 vmx->nested.current_vmptr = -1ull;
5272 vmx->nested.current_vmcs12 = NULL;
5273
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005274 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005275
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005276free_vmcs:
Nadav Har'Eld462b812011-05-24 15:26:10 +03005277 free_vmcs(vmx->loaded_vmcs->vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005278free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005279 kfree(vmx->guest_msrs);
5280uninit_vcpu:
5281 kvm_vcpu_uninit(&vmx->vcpu);
5282free_vcpu:
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005283 free_vpid(vmx);
Rusty Russella4770342007-08-01 14:46:11 +10005284 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005285 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005286}
5287
Yang, Sheng002c7f72007-07-31 14:23:01 +03005288static void __init vmx_check_processor_compat(void *rtn)
5289{
5290 struct vmcs_config vmcs_conf;
5291
5292 *(int *)rtn = 0;
5293 if (setup_vmcs_config(&vmcs_conf) < 0)
5294 *(int *)rtn = -EIO;
5295 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
5296 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
5297 smp_processor_id());
5298 *(int *)rtn = -EIO;
5299 }
5300}
5301
Sheng Yang67253af2008-04-25 10:20:22 +08005302static int get_ept_level(void)
5303{
5304 return VMX_EPT_DEFAULT_GAW + 1;
5305}
5306
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005307static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08005308{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005309 u64 ret;
5310
Sheng Yang522c68c2009-04-27 20:35:43 +08005311 /* For VT-d and EPT combination
5312 * 1. MMIO: always map as UC
5313 * 2. EPT with VT-d:
5314 * a. VT-d without snooping control feature: can't guarantee the
5315 * result, try to trust guest.
5316 * b. VT-d with snooping control feature: snooping control feature of
5317 * VT-d engine can guarantee the cache correctness. Just set it
5318 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08005319 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08005320 * consistent with host MTRR
5321 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005322 if (is_mmio)
5323 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08005324 else if (vcpu->kvm->arch.iommu_domain &&
5325 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
5326 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
5327 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005328 else
Sheng Yang522c68c2009-04-27 20:35:43 +08005329 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08005330 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005331
5332 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08005333}
5334
Avi Kivityf4c9e872009-12-28 16:06:35 +02005335#define _ER(x) { EXIT_REASON_##x, #x }
5336
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005337static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02005338 _ER(EXCEPTION_NMI),
5339 _ER(EXTERNAL_INTERRUPT),
5340 _ER(TRIPLE_FAULT),
5341 _ER(PENDING_INTERRUPT),
5342 _ER(NMI_WINDOW),
5343 _ER(TASK_SWITCH),
5344 _ER(CPUID),
5345 _ER(HLT),
5346 _ER(INVLPG),
5347 _ER(RDPMC),
5348 _ER(RDTSC),
5349 _ER(VMCALL),
5350 _ER(VMCLEAR),
5351 _ER(VMLAUNCH),
5352 _ER(VMPTRLD),
5353 _ER(VMPTRST),
5354 _ER(VMREAD),
5355 _ER(VMRESUME),
5356 _ER(VMWRITE),
5357 _ER(VMOFF),
5358 _ER(VMON),
5359 _ER(CR_ACCESS),
5360 _ER(DR_ACCESS),
5361 _ER(IO_INSTRUCTION),
5362 _ER(MSR_READ),
5363 _ER(MSR_WRITE),
5364 _ER(MWAIT_INSTRUCTION),
5365 _ER(MONITOR_INSTRUCTION),
5366 _ER(PAUSE_INSTRUCTION),
5367 _ER(MCE_DURING_VMENTRY),
5368 _ER(TPR_BELOW_THRESHOLD),
5369 _ER(APIC_ACCESS),
5370 _ER(EPT_VIOLATION),
5371 _ER(EPT_MISCONFIG),
5372 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005373 { -1, NULL }
5374};
5375
Avi Kivityf4c9e872009-12-28 16:06:35 +02005376#undef _ER
5377
Sheng Yang17cc3932010-01-05 19:02:27 +08005378static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02005379{
Sheng Yang878403b2010-01-05 19:02:29 +08005380 if (enable_ept && !cpu_has_vmx_ept_1g_page())
5381 return PT_DIRECTORY_LEVEL;
5382 else
5383 /* For shadow and EPT supported 1GB page */
5384 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02005385}
5386
Sheng Yang0e851882009-12-18 16:48:46 +08005387static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
5388{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005389 struct kvm_cpuid_entry2 *best;
5390 struct vcpu_vmx *vmx = to_vmx(vcpu);
5391 u32 exec_control;
5392
5393 vmx->rdtscp_enabled = false;
5394 if (vmx_rdtscp_supported()) {
5395 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
5396 if (exec_control & SECONDARY_EXEC_RDTSCP) {
5397 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
5398 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
5399 vmx->rdtscp_enabled = true;
5400 else {
5401 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5402 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
5403 exec_control);
5404 }
5405 }
5406 }
Sheng Yang0e851882009-12-18 16:48:46 +08005407}
5408
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005409static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
5410{
5411}
5412
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005413static int vmx_check_intercept(struct kvm_vcpu *vcpu,
5414 struct x86_instruction_info *info,
5415 enum x86_intercept_stage stage)
5416{
5417 return X86EMUL_CONTINUE;
5418}
5419
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03005420static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005421 .cpu_has_kvm_support = cpu_has_kvm_support,
5422 .disabled_by_bios = vmx_disabled_by_bios,
5423 .hardware_setup = hardware_setup,
5424 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03005425 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005426 .hardware_enable = hardware_enable,
5427 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08005428 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005429
5430 .vcpu_create = vmx_create_vcpu,
5431 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03005432 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005433
Avi Kivity04d2cc72007-09-10 18:10:54 +03005434 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005435 .vcpu_load = vmx_vcpu_load,
5436 .vcpu_put = vmx_vcpu_put,
5437
5438 .set_guest_debug = set_guest_debug,
5439 .get_msr = vmx_get_msr,
5440 .set_msr = vmx_set_msr,
5441 .get_segment_base = vmx_get_segment_base,
5442 .get_segment = vmx_get_segment,
5443 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02005444 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005445 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02005446 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02005447 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03005448 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005449 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005450 .set_cr3 = vmx_set_cr3,
5451 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005452 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005453 .get_idt = vmx_get_idt,
5454 .set_idt = vmx_set_idt,
5455 .get_gdt = vmx_get_gdt,
5456 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03005457 .set_dr7 = vmx_set_dr7,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005458 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005459 .get_rflags = vmx_get_rflags,
5460 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02005461 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02005462 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005463
5464 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005465
Avi Kivity6aa8b732006-12-10 02:21:36 -08005466 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02005467 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005468 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04005469 .set_interrupt_shadow = vmx_set_interrupt_shadow,
5470 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02005471 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03005472 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005473 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02005474 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03005475 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02005476 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005477 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005478 .get_nmi_mask = vmx_get_nmi_mask,
5479 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005480 .enable_nmi_window = enable_nmi_window,
5481 .enable_irq_window = enable_irq_window,
5482 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005483
Izik Eiduscbc94022007-10-25 00:29:55 +02005484 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08005485 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005486 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005487
Avi Kivity586f9602010-11-18 13:09:54 +02005488 .get_exit_info = vmx_get_exit_info,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005489 .exit_reasons_str = vmx_exit_reasons_str,
Avi Kivity586f9602010-11-18 13:09:54 +02005490
Sheng Yang17cc3932010-01-05 19:02:27 +08005491 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08005492
5493 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08005494
5495 .rdtscp_supported = vmx_rdtscp_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02005496
5497 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08005498
5499 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005500
Joerg Roedel4051b182011-03-25 09:44:49 +01005501 .set_tsc_khz = vmx_set_tsc_khz,
Zachary Amsden99e3e302010-08-19 22:07:17 -10005502 .write_tsc_offset = vmx_write_tsc_offset,
Zachary Amsdene48672f2010-08-19 22:07:23 -10005503 .adjust_tsc_offset = vmx_adjust_tsc_offset,
Joerg Roedel857e4092011-03-25 09:44:50 +01005504 .compute_tsc_offset = vmx_compute_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02005505
5506 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02005507
5508 .check_intercept = vmx_check_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005509};
5510
5511static int __init vmx_init(void)
5512{
Avi Kivity26bb0982009-09-07 11:14:12 +03005513 int r, i;
5514
5515 rdmsrl_safe(MSR_EFER, &host_efer);
5516
5517 for (i = 0; i < NR_VMX_MSR; ++i)
5518 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03005519
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005520 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03005521 if (!vmx_io_bitmap_a)
5522 return -ENOMEM;
5523
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005524 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03005525 if (!vmx_io_bitmap_b) {
5526 r = -ENOMEM;
5527 goto out;
5528 }
5529
Avi Kivity58972972009-02-24 22:26:47 +02005530 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
5531 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08005532 r = -ENOMEM;
5533 goto out1;
5534 }
5535
Avi Kivity58972972009-02-24 22:26:47 +02005536 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
5537 if (!vmx_msr_bitmap_longmode) {
5538 r = -ENOMEM;
5539 goto out2;
5540 }
5541
He, Qingfdef3ad2007-04-30 09:45:24 +03005542 /*
5543 * Allow direct access to the PC debug port (it is often used for I/O
5544 * delays, but the vmexits simply slow things down).
5545 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005546 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
5547 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005548
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005549 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03005550
Avi Kivity58972972009-02-24 22:26:47 +02005551 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
5552 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08005553
Sheng Yang2384d2b2008-01-17 15:14:33 +08005554 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
5555
Avi Kivity0ee75be2010-04-28 15:39:01 +03005556 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
5557 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03005558 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02005559 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08005560
Avi Kivity58972972009-02-24 22:26:47 +02005561 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
5562 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
5563 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
5564 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
5565 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
5566 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03005567
Avi Kivity089d0342009-03-23 18:26:32 +02005568 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08005569 bypass_guest_pf = 0;
Sheng Yang534e38b2008-09-08 15:12:30 +08005570 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08005571 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08005572 kvm_enable_tdp();
5573 } else
5574 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08005575
Avi Kivityc7addb92007-09-16 18:58:32 +02005576 if (bypass_guest_pf)
5577 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
5578
He, Qingfdef3ad2007-04-30 09:45:24 +03005579 return 0;
5580
Avi Kivity58972972009-02-24 22:26:47 +02005581out3:
5582 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08005583out2:
Avi Kivity58972972009-02-24 22:26:47 +02005584 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03005585out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005586 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03005587out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005588 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005589 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005590}
5591
5592static void __exit vmx_exit(void)
5593{
Avi Kivity58972972009-02-24 22:26:47 +02005594 free_page((unsigned long)vmx_msr_bitmap_legacy);
5595 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005596 free_page((unsigned long)vmx_io_bitmap_b);
5597 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03005598
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08005599 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08005600}
5601
5602module_init(vmx_init)
5603module_exit(vmx_exit)