blob: 97b64543d4ed639aeec08c7e325c08e6623ba422 [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 enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020053module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080054
Avi Kivity4462d212009-03-23 17:53:37 +020055static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020056module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020057
Avi Kivity4462d212009-03-23 17:53:37 +020058static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020059module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080060
Nitin A Kamble3a624e22009-06-08 11:34:16 -070061static int __read_mostly enable_unrestricted_guest = 1;
62module_param_named(unrestricted_guest,
63 enable_unrestricted_guest, bool, S_IRUGO);
64
Avi Kivity4462d212009-03-23 17:53:37 +020065static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020066module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030067
Dongxiao Xub923e622010-05-11 18:29:45 +080068static int __read_mostly vmm_exclusive = 1;
69module_param(vmm_exclusive, bool, S_IRUGO);
70
Anthony Liguori443381a2010-12-06 10:53:38 -060071static int __read_mostly yield_on_hlt = 1;
72module_param(yield_on_hlt, bool, S_IRUGO);
73
Nadav Har'El801d3422011-05-25 23:02:23 +030074/*
75 * If nested=1, nested virtualization is supported, i.e., guests may use
76 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
77 * use VMX instructions.
78 */
79static int __read_mostly nested = 0;
80module_param(nested, bool, S_IRUGO);
81
Avi Kivitycdc0e242009-12-06 17:21:14 +020082#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
83 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
84#define KVM_GUEST_CR0_MASK \
85 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
86#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020087 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020088#define KVM_VM_CR0_ALWAYS_ON \
89 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020090#define KVM_CR4_GUEST_OWNED_BITS \
91 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
92 | X86_CR4_OSXMMEXCPT)
93
Avi Kivitycdc0e242009-12-06 17:21:14 +020094#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
95#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
96
Avi Kivity78ac8b42010-04-08 18:19:35 +030097#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
98
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +080099/*
100 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
101 * ple_gap: upper bound on the amount of time between two successive
102 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500103 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800104 * ple_window: upper bound on the amount of time a guest is allowed to execute
105 * in a PAUSE loop. Tests indicate that most spinlocks are held for
106 * less than 2^12 cycles
107 * Time is measured based on a counter that runs at the same rate as the TSC,
108 * refer SDM volume 3b section 21.6.13 & 22.1.3.
109 */
Rik van Riel00c25bc2011-01-04 09:51:33 -0500110#define KVM_VMX_DEFAULT_PLE_GAP 128
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800111#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
112static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
113module_param(ple_gap, int, S_IRUGO);
114
115static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
116module_param(ple_window, int, S_IRUGO);
117
Avi Kivity61d2ef22010-04-28 16:40:38 +0300118#define NR_AUTOLOAD_MSRS 1
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300119#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300120
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400121struct vmcs {
122 u32 revision_id;
123 u32 abort;
124 char data[0];
125};
126
Nadav Har'Eld462b812011-05-24 15:26:10 +0300127/*
128 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
129 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
130 * loaded on this CPU (so we can clear them if the CPU goes down).
131 */
132struct loaded_vmcs {
133 struct vmcs *vmcs;
134 int cpu;
135 int launched;
136 struct list_head loaded_vmcss_on_cpu_link;
137};
138
Avi Kivity26bb0982009-09-07 11:14:12 +0300139struct shared_msr_entry {
140 unsigned index;
141 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200142 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300143};
144
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300145/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300146 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
147 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
148 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
149 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
150 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
151 * More than one of these structures may exist, if L1 runs multiple L2 guests.
152 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
153 * underlying hardware which will be used to run L2.
154 * This structure is packed to ensure that its layout is identical across
155 * machines (necessary for live migration).
156 * If there are changes in this struct, VMCS12_REVISION must be changed.
157 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300158typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300159struct __packed vmcs12 {
160 /* According to the Intel spec, a VMCS region must start with the
161 * following two fields. Then follow implementation-specific data.
162 */
163 u32 revision_id;
164 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300165
Nadav Har'El27d6c862011-05-25 23:06:59 +0300166 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
167 u32 padding[7]; /* room for future expansion */
168
Nadav Har'El22bd0352011-05-25 23:05:57 +0300169 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'Elfe3ef052011-05-25 23:10:02 +0300345 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300346 /* L2 must run next, and mustn't decide to exit to L1. */
347 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300348 /*
349 * Guest pages referred to in vmcs02 with host-physical pointers, so
350 * we must keep them pinned while L2 runs.
351 */
352 struct page *apic_access_page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300353};
354
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400355struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000356 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300357 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300358 u8 fail;
Avi Kivity69c73022011-03-07 15:26:44 +0200359 u8 cpl;
Avi Kivity9d58b932011-03-07 16:52:07 +0200360 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300361 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200362 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200363 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300364 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400365 int nmsrs;
366 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400367#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300368 u64 msr_host_kernel_gs_base;
369 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400370#endif
Nadav Har'Eld462b812011-05-24 15:26:10 +0300371 /*
372 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
373 * non-nested (L1) guest, it always points to vmcs01. For a nested
374 * guest (L2), it points to a different VMCS.
375 */
376 struct loaded_vmcs vmcs01;
377 struct loaded_vmcs *loaded_vmcs;
378 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300379 struct msr_autoload {
380 unsigned nr;
381 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
382 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
383 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400384 struct {
385 int loaded;
386 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200387 int gs_ldt_reload_needed;
388 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400389 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200390 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300391 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300392 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300393 struct kvm_save_segment {
394 u16 selector;
395 unsigned long base;
396 u32 limit;
397 u32 ar;
398 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200399 } rmode;
Avi Kivity2fb92db2011-04-27 19:42:18 +0300400 struct {
401 u32 bitmask; /* 4 bits per segment (1 bit per field) */
402 struct kvm_save_segment seg[8];
403 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800404 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300405 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200406
407 /* Support for vnmi-less CPUs */
408 int soft_vnmi_blocked;
409 ktime_t entry_time;
410 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800411 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800412
413 bool rdtscp_enabled;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300414
415 /* Support for a guest hypervisor (nested VMX) */
416 struct nested_vmx nested;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400417};
418
Avi Kivity2fb92db2011-04-27 19:42:18 +0300419enum segment_cache_field {
420 SEG_FIELD_SEL = 0,
421 SEG_FIELD_BASE = 1,
422 SEG_FIELD_LIMIT = 2,
423 SEG_FIELD_AR = 3,
424
425 SEG_FIELD_NR = 4
426};
427
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400428static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
429{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000430 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400431}
432
Nadav Har'El22bd0352011-05-25 23:05:57 +0300433#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
434#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
435#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
436 [number##_HIGH] = VMCS12_OFFSET(name)+4
437
438static unsigned short vmcs_field_to_offset_table[] = {
439 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
440 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
441 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
442 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
443 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
444 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
445 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
446 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
447 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
448 FIELD(HOST_ES_SELECTOR, host_es_selector),
449 FIELD(HOST_CS_SELECTOR, host_cs_selector),
450 FIELD(HOST_SS_SELECTOR, host_ss_selector),
451 FIELD(HOST_DS_SELECTOR, host_ds_selector),
452 FIELD(HOST_FS_SELECTOR, host_fs_selector),
453 FIELD(HOST_GS_SELECTOR, host_gs_selector),
454 FIELD(HOST_TR_SELECTOR, host_tr_selector),
455 FIELD64(IO_BITMAP_A, io_bitmap_a),
456 FIELD64(IO_BITMAP_B, io_bitmap_b),
457 FIELD64(MSR_BITMAP, msr_bitmap),
458 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
459 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
460 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
461 FIELD64(TSC_OFFSET, tsc_offset),
462 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
463 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
464 FIELD64(EPT_POINTER, ept_pointer),
465 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
466 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
467 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
468 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
469 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
470 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
471 FIELD64(GUEST_PDPTR0, guest_pdptr0),
472 FIELD64(GUEST_PDPTR1, guest_pdptr1),
473 FIELD64(GUEST_PDPTR2, guest_pdptr2),
474 FIELD64(GUEST_PDPTR3, guest_pdptr3),
475 FIELD64(HOST_IA32_PAT, host_ia32_pat),
476 FIELD64(HOST_IA32_EFER, host_ia32_efer),
477 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
478 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
479 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
480 FIELD(EXCEPTION_BITMAP, exception_bitmap),
481 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
482 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
483 FIELD(CR3_TARGET_COUNT, cr3_target_count),
484 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
485 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
486 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
487 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
488 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
489 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
490 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
491 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
492 FIELD(TPR_THRESHOLD, tpr_threshold),
493 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
494 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
495 FIELD(VM_EXIT_REASON, vm_exit_reason),
496 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
497 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
498 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
499 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
500 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
501 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
502 FIELD(GUEST_ES_LIMIT, guest_es_limit),
503 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
504 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
505 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
506 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
507 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
508 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
509 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
510 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
511 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
512 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
513 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
514 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
515 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
516 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
517 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
518 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
519 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
520 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
521 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
522 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
523 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
524 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
525 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
526 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
527 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
528 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
529 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
530 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
531 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
532 FIELD(EXIT_QUALIFICATION, exit_qualification),
533 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
534 FIELD(GUEST_CR0, guest_cr0),
535 FIELD(GUEST_CR3, guest_cr3),
536 FIELD(GUEST_CR4, guest_cr4),
537 FIELD(GUEST_ES_BASE, guest_es_base),
538 FIELD(GUEST_CS_BASE, guest_cs_base),
539 FIELD(GUEST_SS_BASE, guest_ss_base),
540 FIELD(GUEST_DS_BASE, guest_ds_base),
541 FIELD(GUEST_FS_BASE, guest_fs_base),
542 FIELD(GUEST_GS_BASE, guest_gs_base),
543 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
544 FIELD(GUEST_TR_BASE, guest_tr_base),
545 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
546 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
547 FIELD(GUEST_DR7, guest_dr7),
548 FIELD(GUEST_RSP, guest_rsp),
549 FIELD(GUEST_RIP, guest_rip),
550 FIELD(GUEST_RFLAGS, guest_rflags),
551 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
552 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
553 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
554 FIELD(HOST_CR0, host_cr0),
555 FIELD(HOST_CR3, host_cr3),
556 FIELD(HOST_CR4, host_cr4),
557 FIELD(HOST_FS_BASE, host_fs_base),
558 FIELD(HOST_GS_BASE, host_gs_base),
559 FIELD(HOST_TR_BASE, host_tr_base),
560 FIELD(HOST_GDTR_BASE, host_gdtr_base),
561 FIELD(HOST_IDTR_BASE, host_idtr_base),
562 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
563 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
564 FIELD(HOST_RSP, host_rsp),
565 FIELD(HOST_RIP, host_rip),
566};
567static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table);
568
569static inline short vmcs_field_to_offset(unsigned long field)
570{
571 if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0)
572 return -1;
573 return vmcs_field_to_offset_table[field];
574}
575
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300576static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
577{
578 return to_vmx(vcpu)->nested.current_vmcs12;
579}
580
581static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
582{
583 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
584 if (is_error_page(page)) {
585 kvm_release_page_clean(page);
586 return NULL;
587 }
588 return page;
589}
590
591static void nested_release_page(struct page *page)
592{
593 kvm_release_page_dirty(page);
594}
595
596static void nested_release_page_clean(struct page *page)
597{
598 kvm_release_page_clean(page);
599}
600
Sheng Yang4e1096d2008-07-06 19:16:51 +0800601static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800602static void kvm_cpu_vmxon(u64 addr);
603static void kvm_cpu_vmxoff(void);
Avi Kivityaff48ba2010-12-05 18:56:11 +0200604static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200605static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Avi Kivity75880a02007-06-20 11:20:04 +0300606
Avi Kivity6aa8b732006-12-10 02:21:36 -0800607static DEFINE_PER_CPU(struct vmcs *, vmxarea);
608static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300609/*
610 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
611 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
612 */
613static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300614static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800615
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200616static unsigned long *vmx_io_bitmap_a;
617static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200618static unsigned long *vmx_msr_bitmap_legacy;
619static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300620
Avi Kivity110312c2010-12-21 12:54:20 +0200621static bool cpu_has_load_ia32_efer;
622
Sheng Yang2384d2b2008-01-17 15:14:33 +0800623static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
624static DEFINE_SPINLOCK(vmx_vpid_lock);
625
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300626static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800627 int size;
628 int order;
629 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300630 u32 pin_based_exec_ctrl;
631 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800632 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300633 u32 vmexit_ctrl;
634 u32 vmentry_ctrl;
635} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800636
Hannes Ederefff9e52008-11-28 17:02:06 +0100637static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800638 u32 ept;
639 u32 vpid;
640} vmx_capability;
641
Avi Kivity6aa8b732006-12-10 02:21:36 -0800642#define VMX_SEGMENT_FIELD(seg) \
643 [VCPU_SREG_##seg] = { \
644 .selector = GUEST_##seg##_SELECTOR, \
645 .base = GUEST_##seg##_BASE, \
646 .limit = GUEST_##seg##_LIMIT, \
647 .ar_bytes = GUEST_##seg##_AR_BYTES, \
648 }
649
650static struct kvm_vmx_segment_field {
651 unsigned selector;
652 unsigned base;
653 unsigned limit;
654 unsigned ar_bytes;
655} kvm_vmx_segment_fields[] = {
656 VMX_SEGMENT_FIELD(CS),
657 VMX_SEGMENT_FIELD(DS),
658 VMX_SEGMENT_FIELD(ES),
659 VMX_SEGMENT_FIELD(FS),
660 VMX_SEGMENT_FIELD(GS),
661 VMX_SEGMENT_FIELD(SS),
662 VMX_SEGMENT_FIELD(TR),
663 VMX_SEGMENT_FIELD(LDTR),
664};
665
Avi Kivity26bb0982009-09-07 11:14:12 +0300666static u64 host_efer;
667
Avi Kivity6de4f3ad2009-05-31 22:58:47 +0300668static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
669
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300670/*
Brian Gerst8c065852010-07-17 09:03:26 -0400671 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300672 * away by decrementing the array size.
673 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800674static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800675#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300676 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400678 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200680#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800681
Gui Jianfeng31299942010-03-15 17:29:09 +0800682static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800683{
684 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
685 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100686 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800687}
688
Gui Jianfeng31299942010-03-15 17:29:09 +0800689static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300690{
691 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
692 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100693 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300694}
695
Gui Jianfeng31299942010-03-15 17:29:09 +0800696static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500697{
698 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
699 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100700 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500701}
702
Gui Jianfeng31299942010-03-15 17:29:09 +0800703static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800704{
705 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
706 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
707}
708
Gui Jianfeng31299942010-03-15 17:29:09 +0800709static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800710{
711 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
712 INTR_INFO_VALID_MASK)) ==
713 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
714}
715
Gui Jianfeng31299942010-03-15 17:29:09 +0800716static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +0800717{
Sheng Yang04547152009-04-01 15:52:31 +0800718 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800719}
720
Gui Jianfeng31299942010-03-15 17:29:09 +0800721static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800722{
Sheng Yang04547152009-04-01 15:52:31 +0800723 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800724}
725
Gui Jianfeng31299942010-03-15 17:29:09 +0800726static inline bool vm_need_tpr_shadow(struct kvm *kvm)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800727{
Sheng Yang04547152009-04-01 15:52:31 +0800728 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800729}
730
Gui Jianfeng31299942010-03-15 17:29:09 +0800731static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800732{
Sheng Yang04547152009-04-01 15:52:31 +0800733 return vmcs_config.cpu_based_exec_ctrl &
734 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800735}
736
Avi Kivity774ead32007-12-26 13:57:04 +0200737static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800738{
Sheng Yang04547152009-04-01 15:52:31 +0800739 return vmcs_config.cpu_based_2nd_exec_ctrl &
740 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
741}
742
743static inline bool cpu_has_vmx_flexpriority(void)
744{
745 return cpu_has_vmx_tpr_shadow() &&
746 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800747}
748
Marcelo Tosattie7997942009-06-11 12:07:40 -0300749static inline bool cpu_has_vmx_ept_execute_only(void)
750{
Gui Jianfeng31299942010-03-15 17:29:09 +0800751 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300752}
753
754static inline bool cpu_has_vmx_eptp_uncacheable(void)
755{
Gui Jianfeng31299942010-03-15 17:29:09 +0800756 return vmx_capability.ept & VMX_EPTP_UC_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300757}
758
759static inline bool cpu_has_vmx_eptp_writeback(void)
760{
Gui Jianfeng31299942010-03-15 17:29:09 +0800761 return vmx_capability.ept & VMX_EPTP_WB_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300762}
763
764static inline bool cpu_has_vmx_ept_2m_page(void)
765{
Gui Jianfeng31299942010-03-15 17:29:09 +0800766 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300767}
768
Sheng Yang878403b2010-01-05 19:02:29 +0800769static inline bool cpu_has_vmx_ept_1g_page(void)
770{
Gui Jianfeng31299942010-03-15 17:29:09 +0800771 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +0800772}
773
Sheng Yang4bc9b982010-06-02 14:05:24 +0800774static inline bool cpu_has_vmx_ept_4levels(void)
775{
776 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
777}
778
Gui Jianfeng31299942010-03-15 17:29:09 +0800779static inline bool cpu_has_vmx_invept_individual_addr(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800780{
Gui Jianfeng31299942010-03-15 17:29:09 +0800781 return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800782}
783
Gui Jianfeng31299942010-03-15 17:29:09 +0800784static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800785{
Gui Jianfeng31299942010-03-15 17:29:09 +0800786 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800787}
788
Gui Jianfeng31299942010-03-15 17:29:09 +0800789static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800790{
Gui Jianfeng31299942010-03-15 17:29:09 +0800791 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800792}
793
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800794static inline bool cpu_has_vmx_invvpid_single(void)
795{
796 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
797}
798
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800799static inline bool cpu_has_vmx_invvpid_global(void)
800{
801 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
802}
803
Gui Jianfeng31299942010-03-15 17:29:09 +0800804static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800805{
Sheng Yang04547152009-04-01 15:52:31 +0800806 return vmcs_config.cpu_based_2nd_exec_ctrl &
807 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800808}
809
Gui Jianfeng31299942010-03-15 17:29:09 +0800810static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700811{
812 return vmcs_config.cpu_based_2nd_exec_ctrl &
813 SECONDARY_EXEC_UNRESTRICTED_GUEST;
814}
815
Gui Jianfeng31299942010-03-15 17:29:09 +0800816static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800817{
818 return vmcs_config.cpu_based_2nd_exec_ctrl &
819 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
820}
821
Gui Jianfeng31299942010-03-15 17:29:09 +0800822static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800823{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800824 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800825}
826
Gui Jianfeng31299942010-03-15 17:29:09 +0800827static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800828{
Sheng Yang04547152009-04-01 15:52:31 +0800829 return vmcs_config.cpu_based_2nd_exec_ctrl &
830 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800831}
832
Gui Jianfeng31299942010-03-15 17:29:09 +0800833static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800834{
835 return vmcs_config.cpu_based_2nd_exec_ctrl &
836 SECONDARY_EXEC_RDTSCP;
837}
838
Gui Jianfeng31299942010-03-15 17:29:09 +0800839static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +0800840{
841 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
842}
843
Sheng Yangf5f48ee2010-06-30 12:25:15 +0800844static inline bool cpu_has_vmx_wbinvd_exit(void)
845{
846 return vmcs_config.cpu_based_2nd_exec_ctrl &
847 SECONDARY_EXEC_WBINVD_EXITING;
848}
849
Sheng Yang04547152009-04-01 15:52:31 +0800850static inline bool report_flexpriority(void)
851{
852 return flexpriority_enabled;
853}
854
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300855static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
856{
857 return vmcs12->cpu_based_vm_exec_control & bit;
858}
859
860static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
861{
862 return (vmcs12->cpu_based_vm_exec_control &
863 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
864 (vmcs12->secondary_vm_exec_control & bit);
865}
866
Nadav Har'El644d7112011-05-25 23:12:35 +0300867static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12,
868 struct kvm_vcpu *vcpu)
869{
870 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
871}
872
873static inline bool is_exception(u32 intr_info)
874{
875 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
876 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
877}
878
879static void nested_vmx_vmexit(struct kvm_vcpu *vcpu);
Nadav Har'El7c177932011-05-25 23:12:04 +0300880static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
881 struct vmcs12 *vmcs12,
882 u32 reason, unsigned long qualification);
883
Rusty Russell8b9cf982007-07-30 16:31:43 +1000884static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800885{
886 int i;
887
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400888 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300889 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300890 return i;
891 return -1;
892}
893
Sheng Yang2384d2b2008-01-17 15:14:33 +0800894static inline void __invvpid(int ext, u16 vpid, gva_t gva)
895{
896 struct {
897 u64 vpid : 16;
898 u64 rsvd : 48;
899 u64 gva;
900 } operand = { vpid, 0, gva };
901
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300902 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800903 /* CF==1 or ZF==1 --> rc = -1 */
904 "; ja 1f ; ud2 ; 1:"
905 : : "a"(&operand), "c"(ext) : "cc", "memory");
906}
907
Sheng Yang14394422008-04-28 12:24:45 +0800908static inline void __invept(int ext, u64 eptp, gpa_t gpa)
909{
910 struct {
911 u64 eptp, gpa;
912 } operand = {eptp, gpa};
913
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300914 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800915 /* CF==1 or ZF==1 --> rc = -1 */
916 "; ja 1f ; ud2 ; 1:\n"
917 : : "a" (&operand), "c" (ext) : "cc", "memory");
918}
919
Avi Kivity26bb0982009-09-07 11:14:12 +0300920static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300921{
922 int i;
923
Rusty Russell8b9cf982007-07-30 16:31:43 +1000924 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300925 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400926 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000927 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800928}
929
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930static void vmcs_clear(struct vmcs *vmcs)
931{
932 u64 phys_addr = __pa(vmcs);
933 u8 error;
934
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300935 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200936 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800937 : "cc", "memory");
938 if (error)
939 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
940 vmcs, phys_addr);
941}
942
Nadav Har'Eld462b812011-05-24 15:26:10 +0300943static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
944{
945 vmcs_clear(loaded_vmcs->vmcs);
946 loaded_vmcs->cpu = -1;
947 loaded_vmcs->launched = 0;
948}
949
Dongxiao Xu7725b892010-05-11 18:29:38 +0800950static void vmcs_load(struct vmcs *vmcs)
951{
952 u64 phys_addr = __pa(vmcs);
953 u8 error;
954
955 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200956 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +0800957 : "cc", "memory");
958 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +0300959 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +0800960 vmcs, phys_addr);
961}
962
Nadav Har'Eld462b812011-05-24 15:26:10 +0300963static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300965 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800966 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967
Nadav Har'Eld462b812011-05-24 15:26:10 +0300968 if (loaded_vmcs->cpu != cpu)
969 return; /* vcpu migration can race with cpu offline */
970 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800971 per_cpu(current_vmcs, cpu) = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300972 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
973 loaded_vmcs_init(loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974}
975
Nadav Har'Eld462b812011-05-24 15:26:10 +0300976static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800977{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300978 if (loaded_vmcs->cpu != -1)
979 smp_call_function_single(
980 loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800981}
982
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800983static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800984{
985 if (vmx->vpid == 0)
986 return;
987
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800988 if (cpu_has_vmx_invvpid_single())
989 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800990}
991
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800992static inline void vpid_sync_vcpu_global(void)
993{
994 if (cpu_has_vmx_invvpid_global())
995 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
996}
997
998static inline void vpid_sync_context(struct vcpu_vmx *vmx)
999{
1000 if (cpu_has_vmx_invvpid_single())
Gui Jianfeng1760dd42010-06-07 10:33:27 +08001001 vpid_sync_vcpu_single(vmx);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001002 else
1003 vpid_sync_vcpu_global();
1004}
1005
Sheng Yang14394422008-04-28 12:24:45 +08001006static inline void ept_sync_global(void)
1007{
1008 if (cpu_has_vmx_invept_global())
1009 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1010}
1011
1012static inline void ept_sync_context(u64 eptp)
1013{
Avi Kivity089d0342009-03-23 18:26:32 +02001014 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001015 if (cpu_has_vmx_invept_context())
1016 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1017 else
1018 ept_sync_global();
1019 }
1020}
1021
1022static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
1023{
Avi Kivity089d0342009-03-23 18:26:32 +02001024 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001025 if (cpu_has_vmx_invept_individual_addr())
1026 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
1027 eptp, gpa);
1028 else
1029 ept_sync_context(eptp);
1030 }
1031}
1032
Avi Kivity96304212011-05-15 10:13:13 -04001033static __always_inline unsigned long vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034{
Avi Kivity5e520e62011-05-15 10:13:12 -04001035 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001036
Avi Kivity5e520e62011-05-15 10:13:12 -04001037 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1038 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039 return value;
1040}
1041
Avi Kivity96304212011-05-15 10:13:13 -04001042static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001043{
1044 return vmcs_readl(field);
1045}
1046
Avi Kivity96304212011-05-15 10:13:13 -04001047static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001048{
1049 return vmcs_readl(field);
1050}
1051
Avi Kivity96304212011-05-15 10:13:13 -04001052static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053{
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001054#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001055 return vmcs_readl(field);
1056#else
1057 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
1058#endif
1059}
1060
Avi Kivitye52de1b2007-01-05 16:36:56 -08001061static noinline void vmwrite_error(unsigned long field, unsigned long value)
1062{
1063 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1064 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1065 dump_stack();
1066}
1067
Avi Kivity6aa8b732006-12-10 02:21:36 -08001068static void vmcs_writel(unsigned long field, unsigned long value)
1069{
1070 u8 error;
1071
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001072 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001073 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001074 if (unlikely(error))
1075 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001076}
1077
1078static void vmcs_write16(unsigned long field, u16 value)
1079{
1080 vmcs_writel(field, value);
1081}
1082
1083static void vmcs_write32(unsigned long field, u32 value)
1084{
1085 vmcs_writel(field, value);
1086}
1087
1088static void vmcs_write64(unsigned long field, u64 value)
1089{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001090 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001091#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001092 asm volatile ("");
1093 vmcs_writel(field+1, value >> 32);
1094#endif
1095}
1096
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001097static void vmcs_clear_bits(unsigned long field, u32 mask)
1098{
1099 vmcs_writel(field, vmcs_readl(field) & ~mask);
1100}
1101
1102static void vmcs_set_bits(unsigned long field, u32 mask)
1103{
1104 vmcs_writel(field, vmcs_readl(field) | mask);
1105}
1106
Avi Kivity2fb92db2011-04-27 19:42:18 +03001107static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1108{
1109 vmx->segment_cache.bitmask = 0;
1110}
1111
1112static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1113 unsigned field)
1114{
1115 bool ret;
1116 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1117
1118 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1119 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1120 vmx->segment_cache.bitmask = 0;
1121 }
1122 ret = vmx->segment_cache.bitmask & mask;
1123 vmx->segment_cache.bitmask |= mask;
1124 return ret;
1125}
1126
1127static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1128{
1129 u16 *p = &vmx->segment_cache.seg[seg].selector;
1130
1131 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1132 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1133 return *p;
1134}
1135
1136static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1137{
1138 ulong *p = &vmx->segment_cache.seg[seg].base;
1139
1140 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1141 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1142 return *p;
1143}
1144
1145static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1146{
1147 u32 *p = &vmx->segment_cache.seg[seg].limit;
1148
1149 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1150 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1151 return *p;
1152}
1153
1154static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1155{
1156 u32 *p = &vmx->segment_cache.seg[seg].ar;
1157
1158 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1159 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1160 return *p;
1161}
1162
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001163static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1164{
1165 u32 eb;
1166
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001167 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
1168 (1u << NM_VECTOR) | (1u << DB_VECTOR);
1169 if ((vcpu->guest_debug &
1170 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1171 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1172 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001173 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001174 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001175 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001176 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001177 if (vcpu->fpu_active)
1178 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001179
1180 /* When we are running a nested L2 guest and L1 specified for it a
1181 * certain exception bitmap, we must trap the same exceptions and pass
1182 * them to L1. When running L2, we will only handle the exceptions
1183 * specified above if L1 did not want them.
1184 */
1185 if (is_guest_mode(vcpu))
1186 eb |= get_vmcs12(vcpu)->exception_bitmap;
1187
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001188 vmcs_write32(EXCEPTION_BITMAP, eb);
1189}
1190
Avi Kivity61d2ef22010-04-28 16:40:38 +03001191static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1192{
1193 unsigned i;
1194 struct msr_autoload *m = &vmx->msr_autoload;
1195
Avi Kivity110312c2010-12-21 12:54:20 +02001196 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1197 vmcs_clear_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1198 vmcs_clear_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1199 return;
1200 }
1201
Avi Kivity61d2ef22010-04-28 16:40:38 +03001202 for (i = 0; i < m->nr; ++i)
1203 if (m->guest[i].index == msr)
1204 break;
1205
1206 if (i == m->nr)
1207 return;
1208 --m->nr;
1209 m->guest[i] = m->guest[m->nr];
1210 m->host[i] = m->host[m->nr];
1211 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1212 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1213}
1214
1215static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1216 u64 guest_val, u64 host_val)
1217{
1218 unsigned i;
1219 struct msr_autoload *m = &vmx->msr_autoload;
1220
Avi Kivity110312c2010-12-21 12:54:20 +02001221 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1222 vmcs_write64(GUEST_IA32_EFER, guest_val);
1223 vmcs_write64(HOST_IA32_EFER, host_val);
1224 vmcs_set_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1225 vmcs_set_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1226 return;
1227 }
1228
Avi Kivity61d2ef22010-04-28 16:40:38 +03001229 for (i = 0; i < m->nr; ++i)
1230 if (m->guest[i].index == msr)
1231 break;
1232
1233 if (i == m->nr) {
1234 ++m->nr;
1235 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1236 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1237 }
1238
1239 m->guest[i].index = msr;
1240 m->guest[i].value = guest_val;
1241 m->host[i].index = msr;
1242 m->host[i].value = host_val;
1243}
1244
Avi Kivity33ed6322007-05-02 16:54:03 +03001245static void reload_tss(void)
1246{
Avi Kivity33ed6322007-05-02 16:54:03 +03001247 /*
1248 * VT restores TR but not its size. Useless.
1249 */
Avi Kivityd3591922010-07-26 18:32:39 +03001250 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001251 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001252
Avi Kivityd3591922010-07-26 18:32:39 +03001253 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001254 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1255 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001256}
1257
Avi Kivity92c0d902009-10-29 11:00:16 +02001258static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001259{
Roel Kluin3a34a882009-08-04 02:08:45 -07001260 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001261 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001262
Avi Kivityf6801df2010-01-21 15:31:50 +02001263 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001264
Avi Kivity51c6cf62007-08-29 03:48:05 +03001265 /*
1266 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
1267 * outside long mode
1268 */
1269 ignore_bits = EFER_NX | EFER_SCE;
1270#ifdef CONFIG_X86_64
1271 ignore_bits |= EFER_LMA | EFER_LME;
1272 /* SCE is meaningful only in long mode on Intel */
1273 if (guest_efer & EFER_LMA)
1274 ignore_bits &= ~(u64)EFER_SCE;
1275#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001276 guest_efer &= ~ignore_bits;
1277 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001278 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001279 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001280
1281 clear_atomic_switch_msr(vmx, MSR_EFER);
1282 /* On ept, can't emulate nx, and must switch nx atomically */
1283 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
1284 guest_efer = vmx->vcpu.arch.efer;
1285 if (!(guest_efer & EFER_LMA))
1286 guest_efer &= ~EFER_LME;
1287 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
1288 return false;
1289 }
1290
Avi Kivity26bb0982009-09-07 11:14:12 +03001291 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001292}
1293
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001294static unsigned long segment_base(u16 selector)
1295{
Avi Kivityd3591922010-07-26 18:32:39 +03001296 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001297 struct desc_struct *d;
1298 unsigned long table_base;
1299 unsigned long v;
1300
1301 if (!(selector & ~3))
1302 return 0;
1303
Avi Kivityd3591922010-07-26 18:32:39 +03001304 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001305
1306 if (selector & 4) { /* from ldt */
1307 u16 ldt_selector = kvm_read_ldt();
1308
1309 if (!(ldt_selector & ~3))
1310 return 0;
1311
1312 table_base = segment_base(ldt_selector);
1313 }
1314 d = (struct desc_struct *)(table_base + (selector & ~7));
1315 v = get_desc_base(d);
1316#ifdef CONFIG_X86_64
1317 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1318 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1319#endif
1320 return v;
1321}
1322
1323static inline unsigned long kvm_read_tr_base(void)
1324{
1325 u16 tr;
1326 asm("str %0" : "=g"(tr));
1327 return segment_base(tr);
1328}
1329
Avi Kivity04d2cc72007-09-10 18:10:54 +03001330static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001331{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001332 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001333 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001334
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001335 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001336 return;
1337
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001338 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001339 /*
1340 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1341 * allow segment selectors with cpl > 0 or ti == 1.
1342 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001343 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001344 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001345 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001346 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001347 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001348 vmx->host_state.fs_reload_needed = 0;
1349 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001350 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001351 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001352 }
Avi Kivity9581d442010-10-19 16:46:55 +02001353 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001354 if (!(vmx->host_state.gs_sel & 7))
1355 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001356 else {
1357 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001358 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001359 }
1360
1361#ifdef CONFIG_X86_64
1362 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1363 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1364#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001365 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1366 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001367#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001368
1369#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001370 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1371 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001372 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001373#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03001374 for (i = 0; i < vmx->save_nmsrs; ++i)
1375 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001376 vmx->guest_msrs[i].data,
1377 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001378}
1379
Avi Kivitya9b21b62008-06-24 11:48:49 +03001380static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001381{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001382 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001383 return;
1384
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001385 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001386 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001387#ifdef CONFIG_X86_64
1388 if (is_long_mode(&vmx->vcpu))
1389 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1390#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001391 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001392 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001393#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02001394 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001395#else
1396 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001397#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001398 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02001399 if (vmx->host_state.fs_reload_needed)
1400 loadsegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001401 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001402#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001403 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001404#endif
Avi Kivity1c11e712010-05-03 16:05:44 +03001405 if (current_thread_info()->status & TS_USEDFPU)
1406 clts();
Avi Kivity3444d7d2010-07-26 18:32:38 +03001407 load_gdt(&__get_cpu_var(host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03001408}
1409
Avi Kivitya9b21b62008-06-24 11:48:49 +03001410static void vmx_load_host_state(struct vcpu_vmx *vmx)
1411{
1412 preempt_disable();
1413 __vmx_load_host_state(vmx);
1414 preempt_enable();
1415}
1416
Avi Kivity6aa8b732006-12-10 02:21:36 -08001417/*
1418 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1419 * vcpu mutex is already taken.
1420 */
Avi Kivity15ad7142007-07-11 18:17:21 +03001421static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001422{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001423 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001424 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001426 if (!vmm_exclusive)
1427 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001428 else if (vmx->loaded_vmcs->cpu != cpu)
1429 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001430
Nadav Har'Eld462b812011-05-24 15:26:10 +03001431 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1432 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1433 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001434 }
1435
Nadav Har'Eld462b812011-05-24 15:26:10 +03001436 if (vmx->loaded_vmcs->cpu != cpu) {
Avi Kivityd3591922010-07-26 18:32:39 +03001437 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001438 unsigned long sysenter_esp;
1439
Avi Kivitya8eeb042010-05-10 12:34:53 +03001440 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001441 local_irq_disable();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001442 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1443 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001444 local_irq_enable();
1445
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446 /*
1447 * Linux uses per-cpu TSS and GDT, so set these when switching
1448 * processors.
1449 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001450 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03001451 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001452
1453 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1454 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Nadav Har'Eld462b812011-05-24 15:26:10 +03001455 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001457}
1458
1459static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1460{
Avi Kivitya9b21b62008-06-24 11:48:49 +03001461 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001462 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001463 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1464 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001465 kvm_cpu_vmxoff();
1466 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001467}
1468
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001469static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1470{
Avi Kivity81231c62010-01-24 16:26:40 +02001471 ulong cr0;
1472
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001473 if (vcpu->fpu_active)
1474 return;
1475 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02001476 cr0 = vmcs_readl(GUEST_CR0);
1477 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1478 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1479 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001480 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001481 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001482 if (is_guest_mode(vcpu))
1483 vcpu->arch.cr0_guest_owned_bits &=
1484 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02001485 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001486}
1487
Avi Kivityedcafe32009-12-30 18:07:40 +02001488static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1489
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001490/*
1491 * Return the cr0 value that a nested guest would read. This is a combination
1492 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
1493 * its hypervisor (cr0_read_shadow).
1494 */
1495static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
1496{
1497 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
1498 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
1499}
1500static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
1501{
1502 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
1503 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
1504}
1505
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001506static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1507{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001508 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
1509 * set this *before* calling this function.
1510 */
Avi Kivityedcafe32009-12-30 18:07:40 +02001511 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02001512 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001513 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001514 vcpu->arch.cr0_guest_owned_bits = 0;
1515 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001516 if (is_guest_mode(vcpu)) {
1517 /*
1518 * L1's specified read shadow might not contain the TS bit,
1519 * so now that we turned on shadowing of this bit, we need to
1520 * set this bit of the shadow. Like in nested_vmx_run we need
1521 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
1522 * up-to-date here because we just decached cr0.TS (and we'll
1523 * only update vmcs12->guest_cr0 on nested exit).
1524 */
1525 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1526 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
1527 (vcpu->arch.cr0 & X86_CR0_TS);
1528 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
1529 } else
1530 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001531}
1532
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1534{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001535 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001536
Avi Kivity6de12732011-03-07 12:51:22 +02001537 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1538 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1539 rflags = vmcs_readl(GUEST_RFLAGS);
1540 if (to_vmx(vcpu)->rmode.vm86_active) {
1541 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1542 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1543 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1544 }
1545 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001546 }
Avi Kivity6de12732011-03-07 12:51:22 +02001547 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001548}
1549
1550static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1551{
Avi Kivity6de12732011-03-07 12:51:22 +02001552 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity69c73022011-03-07 15:26:44 +02001553 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6de12732011-03-07 12:51:22 +02001554 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001555 if (to_vmx(vcpu)->rmode.vm86_active) {
1556 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001557 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001558 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001559 vmcs_writel(GUEST_RFLAGS, rflags);
1560}
1561
Glauber Costa2809f5d2009-05-12 16:21:05 -04001562static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1563{
1564 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1565 int ret = 0;
1566
1567 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001568 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001569 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001570 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001571
1572 return ret & mask;
1573}
1574
1575static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1576{
1577 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1578 u32 interruptibility = interruptibility_old;
1579
1580 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1581
Jan Kiszka48005f62010-02-19 19:38:07 +01001582 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001583 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001584 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001585 interruptibility |= GUEST_INTR_STATE_STI;
1586
1587 if ((interruptibility != interruptibility_old))
1588 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1589}
1590
Avi Kivity6aa8b732006-12-10 02:21:36 -08001591static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1592{
1593 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001594
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001595 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001596 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001597 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598
Glauber Costa2809f5d2009-05-12 16:21:05 -04001599 /* skipping an emulated instruction also counts */
1600 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001601}
1602
Anthony Liguori443381a2010-12-06 10:53:38 -06001603static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1604{
1605 /* Ensure that we clear the HLT state in the VMCS. We don't need to
1606 * explicitly skip the instruction because if the HLT state is set, then
1607 * the instruction is already executing and RIP has already been
1608 * advanced. */
1609 if (!yield_on_hlt &&
1610 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1611 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1612}
1613
Nadav Har'El0b6ac342011-05-25 23:13:36 +03001614/*
1615 * KVM wants to inject page-faults which it got to the guest. This function
1616 * checks whether in a nested guest, we need to inject them to L1 or L2.
1617 * This function assumes it is called with the exit reason in vmcs02 being
1618 * a #PF exception (this is the only case in which KVM injects a #PF when L2
1619 * is running).
1620 */
1621static int nested_pf_handled(struct kvm_vcpu *vcpu)
1622{
1623 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1624
1625 /* TODO: also check PFEC_MATCH/MASK, not just EB.PF. */
1626 if (!(vmcs12->exception_bitmap & PF_VECTOR))
1627 return 0;
1628
1629 nested_vmx_vmexit(vcpu);
1630 return 1;
1631}
1632
Avi Kivity298101d2007-11-25 13:41:11 +02001633static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02001634 bool has_error_code, u32 error_code,
1635 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02001636{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001637 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001638 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001639
Nadav Har'El0b6ac342011-05-25 23:13:36 +03001640 if (nr == PF_VECTOR && is_guest_mode(vcpu) &&
1641 nested_pf_handled(vcpu))
1642 return;
1643
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001644 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001645 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001646 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1647 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001648
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001649 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001650 int inc_eip = 0;
1651 if (kvm_exception_is_soft(nr))
1652 inc_eip = vcpu->arch.event_exit_inst_len;
1653 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001654 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001655 return;
1656 }
1657
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001658 if (kvm_exception_is_soft(nr)) {
1659 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1660 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001661 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1662 } else
1663 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1664
1665 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Anthony Liguori443381a2010-12-06 10:53:38 -06001666 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001667}
1668
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001669static bool vmx_rdtscp_supported(void)
1670{
1671 return cpu_has_vmx_rdtscp();
1672}
1673
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674/*
Eddie Donga75beee2007-05-17 18:55:15 +03001675 * Swap MSR entry in host/guest MSR entry array.
1676 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001677static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001678{
Avi Kivity26bb0982009-09-07 11:14:12 +03001679 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001680
1681 tmp = vmx->guest_msrs[to];
1682 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1683 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001684}
1685
1686/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001687 * Set up the vmcs to automatically save and restore system
1688 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1689 * mode, as fiddling with msrs is very expensive.
1690 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001691static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001692{
Avi Kivity26bb0982009-09-07 11:14:12 +03001693 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +02001694 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +03001695
Avi Kivity33f9c502008-02-27 16:06:57 +02001696 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +03001697 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001698#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001699 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10001700 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03001701 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001702 move_msr_up(vmx, index, save_nmsrs++);
1703 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001704 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001705 move_msr_up(vmx, index, save_nmsrs++);
1706 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001707 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001708 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001709 index = __find_msr_index(vmx, MSR_TSC_AUX);
1710 if (index >= 0 && vmx->rdtscp_enabled)
1711 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03001712 /*
Brian Gerst8c065852010-07-17 09:03:26 -04001713 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03001714 * if efer.sce is enabled.
1715 */
Brian Gerst8c065852010-07-17 09:03:26 -04001716 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02001717 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10001718 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001719 }
Eddie Donga75beee2007-05-17 18:55:15 +03001720#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001721 index = __find_msr_index(vmx, MSR_EFER);
1722 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001723 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001724
Avi Kivity26bb0982009-09-07 11:14:12 +03001725 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02001726
1727 if (cpu_has_vmx_msr_bitmap()) {
1728 if (is_long_mode(&vmx->vcpu))
1729 msr_bitmap = vmx_msr_bitmap_longmode;
1730 else
1731 msr_bitmap = vmx_msr_bitmap_legacy;
1732
1733 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
1734 }
Avi Kivitye38aea32007-04-19 13:22:48 +03001735}
1736
1737/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001738 * reads and returns guest's timestamp counter "register"
1739 * guest_tsc = host_tsc + tsc_offset -- 21.3
1740 */
1741static u64 guest_read_tsc(void)
1742{
1743 u64 host_tsc, tsc_offset;
1744
1745 rdtscll(host_tsc);
1746 tsc_offset = vmcs_read64(TSC_OFFSET);
1747 return host_tsc + tsc_offset;
1748}
1749
1750/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03001751 * Like guest_read_tsc, but always returns L1's notion of the timestamp
1752 * counter, even if a nested guest (L2) is currently running.
1753 */
1754u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu)
1755{
1756 u64 host_tsc, tsc_offset;
1757
1758 rdtscll(host_tsc);
1759 tsc_offset = is_guest_mode(vcpu) ?
1760 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
1761 vmcs_read64(TSC_OFFSET);
1762 return host_tsc + tsc_offset;
1763}
1764
1765/*
Joerg Roedel4051b182011-03-25 09:44:49 +01001766 * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ
1767 * ioctl. In this case the call-back should update internal vmx state to make
1768 * the changes effective.
1769 */
1770static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
1771{
1772 /* Nothing to do here */
1773}
1774
1775/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10001776 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10001778static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779{
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001780 vmcs_write64(TSC_OFFSET, offset);
Nadav Har'El79918252011-05-25 23:15:39 +03001781 if (is_guest_mode(vcpu))
1782 /*
1783 * We're here if L1 chose not to trap the TSC MSR. Since
1784 * prepare_vmcs12() does not copy tsc_offset, we need to also
1785 * set the vmcs12 field here.
1786 */
1787 get_vmcs12(vcpu)->tsc_offset = offset -
1788 to_vmx(vcpu)->nested.vmcs01_tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001789}
1790
Zachary Amsdene48672f2010-08-19 22:07:23 -10001791static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
1792{
1793 u64 offset = vmcs_read64(TSC_OFFSET);
1794 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03001795 if (is_guest_mode(vcpu)) {
1796 /* Even when running L2, the adjustment needs to apply to L1 */
1797 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
1798 }
Zachary Amsdene48672f2010-08-19 22:07:23 -10001799}
1800
Joerg Roedel857e4092011-03-25 09:44:50 +01001801static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1802{
1803 return target_tsc - native_read_tsc();
1804}
1805
Nadav Har'El801d3422011-05-25 23:02:23 +03001806static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
1807{
1808 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
1809 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
1810}
1811
1812/*
1813 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1814 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1815 * all guests if the "nested" module option is off, and can also be disabled
1816 * for a single guest by disabling its VMX cpuid bit.
1817 */
1818static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
1819{
1820 return nested && guest_cpuid_has_vmx(vcpu);
1821}
1822
Avi Kivity6aa8b732006-12-10 02:21:36 -08001823/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001824 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
1825 * returned for the various VMX controls MSRs when nested VMX is enabled.
1826 * The same values should also be used to verify that vmcs12 control fields are
1827 * valid during nested entry from L1 to L2.
1828 * Each of these control msrs has a low and high 32-bit half: A low bit is on
1829 * if the corresponding bit in the (32-bit) control field *must* be on, and a
1830 * bit in the high half is on if the corresponding bit in the control field
1831 * may be on. See also vmx_control_verify().
1832 * TODO: allow these variables to be modified (downgraded) by module options
1833 * or other means.
1834 */
1835static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
1836static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
1837static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
1838static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
1839static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
1840static __init void nested_vmx_setup_ctls_msrs(void)
1841{
1842 /*
1843 * Note that as a general rule, the high half of the MSRs (bits in
1844 * the control fields which may be 1) should be initialized by the
1845 * intersection of the underlying hardware's MSR (i.e., features which
1846 * can be supported) and the list of features we want to expose -
1847 * because they are known to be properly supported in our code.
1848 * Also, usually, the low half of the MSRs (bits which must be 1) can
1849 * be set to 0, meaning that L1 may turn off any of these bits. The
1850 * reason is that if one of these bits is necessary, it will appear
1851 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
1852 * fields of vmcs01 and vmcs02, will turn these bits off - and
1853 * nested_vmx_exit_handled() will not pass related exits to L1.
1854 * These rules have exceptions below.
1855 */
1856
1857 /* pin-based controls */
1858 /*
1859 * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is
1860 * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR.
1861 */
1862 nested_vmx_pinbased_ctls_low = 0x16 ;
1863 nested_vmx_pinbased_ctls_high = 0x16 |
1864 PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
1865 PIN_BASED_VIRTUAL_NMIS;
1866
1867 /* exit controls */
1868 nested_vmx_exit_ctls_low = 0;
Nadav Har'Elb6f12502011-05-25 23:13:06 +03001869 /* Note that guest use of VM_EXIT_ACK_INTR_ON_EXIT is not supported. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001870#ifdef CONFIG_X86_64
1871 nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE;
1872#else
1873 nested_vmx_exit_ctls_high = 0;
1874#endif
1875
1876 /* entry controls */
1877 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
1878 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
1879 nested_vmx_entry_ctls_low = 0;
1880 nested_vmx_entry_ctls_high &=
1881 VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE;
1882
1883 /* cpu-based controls */
1884 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
1885 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
1886 nested_vmx_procbased_ctls_low = 0;
1887 nested_vmx_procbased_ctls_high &=
1888 CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING |
1889 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
1890 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
1891 CPU_BASED_CR3_STORE_EXITING |
1892#ifdef CONFIG_X86_64
1893 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
1894#endif
1895 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
1896 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
1897 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1898 /*
1899 * We can allow some features even when not supported by the
1900 * hardware. For example, L1 can specify an MSR bitmap - and we
1901 * can use it to avoid exits to L1 - even when L0 runs L2
1902 * without MSR bitmaps.
1903 */
1904 nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS;
1905
1906 /* secondary cpu-based controls */
1907 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
1908 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
1909 nested_vmx_secondary_ctls_low = 0;
1910 nested_vmx_secondary_ctls_high &=
1911 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1912}
1913
1914static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
1915{
1916 /*
1917 * Bits 0 in high must be 0, and bits 1 in low must be 1.
1918 */
1919 return ((control & high) | low) == control;
1920}
1921
1922static inline u64 vmx_control_msr(u32 low, u32 high)
1923{
1924 return low | ((u64)high << 32);
1925}
1926
1927/*
1928 * If we allow our guest to use VMX instructions (i.e., nested VMX), we should
1929 * also let it use VMX-specific MSRs.
1930 * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a
1931 * VMX-specific MSR, or 0 when we haven't (and the caller should handle it
1932 * like all other MSRs).
1933 */
1934static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1935{
1936 if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC &&
1937 msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) {
1938 /*
1939 * According to the spec, processors which do not support VMX
1940 * should throw a #GP(0) when VMX capability MSRs are read.
1941 */
1942 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
1943 return 1;
1944 }
1945
1946 switch (msr_index) {
1947 case MSR_IA32_FEATURE_CONTROL:
1948 *pdata = 0;
1949 break;
1950 case MSR_IA32_VMX_BASIC:
1951 /*
1952 * This MSR reports some information about VMX support. We
1953 * should return information about the VMX we emulate for the
1954 * guest, and the VMCS structure we give it - not about the
1955 * VMX support of the underlying hardware.
1956 */
1957 *pdata = VMCS12_REVISION |
1958 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
1959 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
1960 break;
1961 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1962 case MSR_IA32_VMX_PINBASED_CTLS:
1963 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
1964 nested_vmx_pinbased_ctls_high);
1965 break;
1966 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1967 case MSR_IA32_VMX_PROCBASED_CTLS:
1968 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
1969 nested_vmx_procbased_ctls_high);
1970 break;
1971 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1972 case MSR_IA32_VMX_EXIT_CTLS:
1973 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
1974 nested_vmx_exit_ctls_high);
1975 break;
1976 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1977 case MSR_IA32_VMX_ENTRY_CTLS:
1978 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
1979 nested_vmx_entry_ctls_high);
1980 break;
1981 case MSR_IA32_VMX_MISC:
1982 *pdata = 0;
1983 break;
1984 /*
1985 * These MSRs specify bits which the guest must keep fixed (on or off)
1986 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
1987 * We picked the standard core2 setting.
1988 */
1989#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
1990#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
1991 case MSR_IA32_VMX_CR0_FIXED0:
1992 *pdata = VMXON_CR0_ALWAYSON;
1993 break;
1994 case MSR_IA32_VMX_CR0_FIXED1:
1995 *pdata = -1ULL;
1996 break;
1997 case MSR_IA32_VMX_CR4_FIXED0:
1998 *pdata = VMXON_CR4_ALWAYSON;
1999 break;
2000 case MSR_IA32_VMX_CR4_FIXED1:
2001 *pdata = -1ULL;
2002 break;
2003 case MSR_IA32_VMX_VMCS_ENUM:
2004 *pdata = 0x1f;
2005 break;
2006 case MSR_IA32_VMX_PROCBASED_CTLS2:
2007 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
2008 nested_vmx_secondary_ctls_high);
2009 break;
2010 case MSR_IA32_VMX_EPT_VPID_CAP:
2011 /* Currently, no nested ept or nested vpid */
2012 *pdata = 0;
2013 break;
2014 default:
2015 return 0;
2016 }
2017
2018 return 1;
2019}
2020
2021static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
2022{
2023 if (!nested_vmx_allowed(vcpu))
2024 return 0;
2025
2026 if (msr_index == MSR_IA32_FEATURE_CONTROL)
2027 /* TODO: the right thing. */
2028 return 1;
2029 /*
2030 * No need to treat VMX capability MSRs specially: If we don't handle
2031 * them, handle_wrmsr will #GP(0), which is correct (they are readonly)
2032 */
2033 return 0;
2034}
2035
2036/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002037 * Reads an msr value (of 'msr_index') into 'pdata'.
2038 * Returns 0 on success, non-0 otherwise.
2039 * Assumes vcpu_load() was already called.
2040 */
2041static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2042{
2043 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03002044 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002045
2046 if (!pdata) {
2047 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
2048 return -EINVAL;
2049 }
2050
2051 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002052#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002053 case MSR_FS_BASE:
2054 data = vmcs_readl(GUEST_FS_BASE);
2055 break;
2056 case MSR_GS_BASE:
2057 data = vmcs_readl(GUEST_GS_BASE);
2058 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002059 case MSR_KERNEL_GS_BASE:
2060 vmx_load_host_state(to_vmx(vcpu));
2061 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
2062 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002063#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002064 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08002065 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302066 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002067 data = guest_read_tsc();
2068 break;
2069 case MSR_IA32_SYSENTER_CS:
2070 data = vmcs_read32(GUEST_SYSENTER_CS);
2071 break;
2072 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002073 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002074 break;
2075 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002076 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002077 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002078 case MSR_TSC_AUX:
2079 if (!to_vmx(vcpu)->rdtscp_enabled)
2080 return 1;
2081 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002082 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03002083 vmx_load_host_state(to_vmx(vcpu));
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002084 if (vmx_get_vmx_msr(vcpu, msr_index, pdata))
2085 return 0;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002086 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002087 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03002088 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08002089 data = msr->data;
2090 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002091 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08002092 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002093 }
2094
2095 *pdata = data;
2096 return 0;
2097}
2098
2099/*
2100 * Writes msr value into into the appropriate "register".
2101 * Returns 0 on success, non-0 otherwise.
2102 * Assumes vcpu_load() was already called.
2103 */
2104static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
2105{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002106 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002107 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002108 int ret = 0;
2109
Avi Kivity6aa8b732006-12-10 02:21:36 -08002110 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002111 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03002112 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03002113 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03002114 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002115#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002116 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002117 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002118 vmcs_writel(GUEST_FS_BASE, data);
2119 break;
2120 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002121 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002122 vmcs_writel(GUEST_GS_BASE, data);
2123 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002124 case MSR_KERNEL_GS_BASE:
2125 vmx_load_host_state(vmx);
2126 vmx->msr_guest_kernel_gs_base = data;
2127 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128#endif
2129 case MSR_IA32_SYSENTER_CS:
2130 vmcs_write32(GUEST_SYSENTER_CS, data);
2131 break;
2132 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002133 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002134 break;
2135 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002136 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002137 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302138 case MSR_IA32_TSC:
Zachary Amsden99e3e302010-08-19 22:07:17 -10002139 kvm_write_tsc(vcpu, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002140 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002141 case MSR_IA32_CR_PAT:
2142 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2143 vmcs_write64(GUEST_IA32_PAT, data);
2144 vcpu->arch.pat = data;
2145 break;
2146 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002147 ret = kvm_set_msr_common(vcpu, msr_index, data);
2148 break;
2149 case MSR_TSC_AUX:
2150 if (!vmx->rdtscp_enabled)
2151 return 1;
2152 /* Check reserved bit, higher 32 bits should be zero */
2153 if ((data >> 32) != 0)
2154 return 1;
2155 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002156 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002157 if (vmx_set_vmx_msr(vcpu, msr_index, data))
2158 break;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002159 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002160 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03002161 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002162 msr->data = data;
2163 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002164 }
Eddie Dong2cc51562007-05-21 07:28:09 +03002165 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002166 }
2167
Eddie Dong2cc51562007-05-21 07:28:09 +03002168 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002169}
2170
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002171static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002172{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002173 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2174 switch (reg) {
2175 case VCPU_REGS_RSP:
2176 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2177 break;
2178 case VCPU_REGS_RIP:
2179 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2180 break;
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002181 case VCPU_EXREG_PDPTR:
2182 if (enable_ept)
2183 ept_save_pdptrs(vcpu);
2184 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002185 default:
2186 break;
2187 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002188}
2189
Jan Kiszka355be0b2009-10-03 00:31:21 +02002190static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002191{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01002192 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
2193 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
2194 else
2195 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2196
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002197 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002198}
2199
2200static __init int cpu_has_kvm_support(void)
2201{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002202 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002203}
2204
2205static __init int vmx_disabled_by_bios(void)
2206{
2207 u64 msr;
2208
2209 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04002210 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08002211 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04002212 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2213 && tboot_enabled())
2214 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08002215 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04002216 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08002217 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08002218 && !tboot_enabled()) {
2219 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08002220 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04002221 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08002222 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08002223 /* launched w/o TXT and VMX disabled */
2224 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2225 && !tboot_enabled())
2226 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04002227 }
2228
2229 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002230}
2231
Dongxiao Xu7725b892010-05-11 18:29:38 +08002232static void kvm_cpu_vmxon(u64 addr)
2233{
2234 asm volatile (ASM_VMX_VMXON_RAX
2235 : : "a"(&addr), "m"(addr)
2236 : "memory", "cc");
2237}
2238
Alexander Graf10474ae2009-09-15 11:37:46 +02002239static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002240{
2241 int cpu = raw_smp_processor_id();
2242 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04002243 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002244
Alexander Graf10474ae2009-09-15 11:37:46 +02002245 if (read_cr4() & X86_CR4_VMXE)
2246 return -EBUSY;
2247
Nadav Har'Eld462b812011-05-24 15:26:10 +03002248 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002249 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04002250
2251 test_bits = FEATURE_CONTROL_LOCKED;
2252 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2253 if (tboot_enabled())
2254 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2255
2256 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002257 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04002258 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2259 }
Rusty Russell66aee912007-07-17 23:34:16 +10002260 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Alexander Graf10474ae2009-09-15 11:37:46 +02002261
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002262 if (vmm_exclusive) {
2263 kvm_cpu_vmxon(phys_addr);
2264 ept_sync_global();
2265 }
Alexander Graf10474ae2009-09-15 11:37:46 +02002266
Avi Kivity3444d7d2010-07-26 18:32:38 +03002267 store_gdt(&__get_cpu_var(host_gdt));
2268
Alexander Graf10474ae2009-09-15 11:37:46 +02002269 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002270}
2271
Nadav Har'Eld462b812011-05-24 15:26:10 +03002272static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002273{
2274 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002275 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002276
Nadav Har'Eld462b812011-05-24 15:26:10 +03002277 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2278 loaded_vmcss_on_cpu_link)
2279 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002280}
2281
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002282
2283/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2284 * tricks.
2285 */
2286static void kvm_cpu_vmxoff(void)
2287{
2288 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002289}
2290
Avi Kivity6aa8b732006-12-10 02:21:36 -08002291static void hardware_disable(void *garbage)
2292{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002293 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002294 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002295 kvm_cpu_vmxoff();
2296 }
Dongxiao Xu7725b892010-05-11 18:29:38 +08002297 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002298}
2299
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002300static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002301 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002302{
2303 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002304 u32 ctl = ctl_min | ctl_opt;
2305
2306 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2307
2308 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2309 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2310
2311 /* Ensure minimum (required) set of control bits are supported. */
2312 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002313 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002314
2315 *result = ctl;
2316 return 0;
2317}
2318
Avi Kivity110312c2010-12-21 12:54:20 +02002319static __init bool allow_1_setting(u32 msr, u32 ctl)
2320{
2321 u32 vmx_msr_low, vmx_msr_high;
2322
2323 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2324 return vmx_msr_high & ctl;
2325}
2326
Yang, Sheng002c7f72007-07-31 14:23:01 +03002327static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002328{
2329 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002330 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002331 u32 _pin_based_exec_control = 0;
2332 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002333 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002334 u32 _vmexit_control = 0;
2335 u32 _vmentry_control = 0;
2336
2337 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08002338 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002339 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2340 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002341 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002342
Anthony Liguori443381a2010-12-06 10:53:38 -06002343 min =
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002344#ifdef CONFIG_X86_64
2345 CPU_BASED_CR8_LOAD_EXITING |
2346 CPU_BASED_CR8_STORE_EXITING |
2347#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002348 CPU_BASED_CR3_LOAD_EXITING |
2349 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002350 CPU_BASED_USE_IO_BITMAPS |
2351 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002352 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08002353 CPU_BASED_MWAIT_EXITING |
2354 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002355 CPU_BASED_INVLPG_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002356
2357 if (yield_on_hlt)
2358 min |= CPU_BASED_HLT_EXITING;
2359
Sheng Yangf78e0e22007-10-29 09:40:42 +08002360 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002361 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002362 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002363 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2364 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002365 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002366#ifdef CONFIG_X86_64
2367 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2368 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2369 ~CPU_BASED_CR8_STORE_EXITING;
2370#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002371 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002372 min2 = 0;
2373 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002374 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002375 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002376 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002377 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002378 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
2379 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08002380 if (adjust_vmx_controls(min2, opt2,
2381 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002382 &_cpu_based_2nd_exec_control) < 0)
2383 return -EIO;
2384 }
2385#ifndef CONFIG_X86_64
2386 if (!(_cpu_based_2nd_exec_control &
2387 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2388 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2389#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002390 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002391 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2392 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002393 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2394 CPU_BASED_CR3_STORE_EXITING |
2395 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08002396 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
2397 vmx_capability.ept, vmx_capability.vpid);
2398 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002399
2400 min = 0;
2401#ifdef CONFIG_X86_64
2402 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2403#endif
Sheng Yang468d4722008-10-09 16:01:55 +08002404 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002405 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2406 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002407 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002408
Sheng Yang468d4722008-10-09 16:01:55 +08002409 min = 0;
2410 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002411 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2412 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002413 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002414
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002415 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002416
2417 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2418 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002419 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002420
2421#ifdef CONFIG_X86_64
2422 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2423 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002424 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002425#endif
2426
2427 /* Require Write-Back (WB) memory type for VMCS accesses. */
2428 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002429 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002430
Yang, Sheng002c7f72007-07-31 14:23:01 +03002431 vmcs_conf->size = vmx_msr_high & 0x1fff;
2432 vmcs_conf->order = get_order(vmcs_config.size);
2433 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002434
Yang, Sheng002c7f72007-07-31 14:23:01 +03002435 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2436 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002437 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002438 vmcs_conf->vmexit_ctrl = _vmexit_control;
2439 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002440
Avi Kivity110312c2010-12-21 12:54:20 +02002441 cpu_has_load_ia32_efer =
2442 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2443 VM_ENTRY_LOAD_IA32_EFER)
2444 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2445 VM_EXIT_LOAD_IA32_EFER);
2446
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002447 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002448}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002449
2450static struct vmcs *alloc_vmcs_cpu(int cpu)
2451{
2452 int node = cpu_to_node(cpu);
2453 struct page *pages;
2454 struct vmcs *vmcs;
2455
Mel Gorman6484eb32009-06-16 15:31:54 -07002456 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002457 if (!pages)
2458 return NULL;
2459 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002460 memset(vmcs, 0, vmcs_config.size);
2461 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002462 return vmcs;
2463}
2464
2465static struct vmcs *alloc_vmcs(void)
2466{
Ingo Molnard3b2c332007-01-05 16:36:23 -08002467 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08002468}
2469
2470static void free_vmcs(struct vmcs *vmcs)
2471{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002472 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473}
2474
Nadav Har'Eld462b812011-05-24 15:26:10 +03002475/*
2476 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2477 */
2478static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
2479{
2480 if (!loaded_vmcs->vmcs)
2481 return;
2482 loaded_vmcs_clear(loaded_vmcs);
2483 free_vmcs(loaded_vmcs->vmcs);
2484 loaded_vmcs->vmcs = NULL;
2485}
2486
Sam Ravnborg39959582007-06-01 00:47:13 -07002487static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002488{
2489 int cpu;
2490
Zachary Amsden3230bb42009-09-29 11:38:37 -10002491 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002492 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002493 per_cpu(vmxarea, cpu) = NULL;
2494 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002495}
2496
Avi Kivity6aa8b732006-12-10 02:21:36 -08002497static __init int alloc_kvm_area(void)
2498{
2499 int cpu;
2500
Zachary Amsden3230bb42009-09-29 11:38:37 -10002501 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002502 struct vmcs *vmcs;
2503
2504 vmcs = alloc_vmcs_cpu(cpu);
2505 if (!vmcs) {
2506 free_kvm_area();
2507 return -ENOMEM;
2508 }
2509
2510 per_cpu(vmxarea, cpu) = vmcs;
2511 }
2512 return 0;
2513}
2514
2515static __init int hardware_setup(void)
2516{
Yang, Sheng002c7f72007-07-31 14:23:01 +03002517 if (setup_vmcs_config(&vmcs_config) < 0)
2518 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01002519
2520 if (boot_cpu_has(X86_FEATURE_NX))
2521 kvm_enable_efer_bits(EFER_NX);
2522
Sheng Yang93ba03c2009-04-01 15:52:32 +08002523 if (!cpu_has_vmx_vpid())
2524 enable_vpid = 0;
2525
Sheng Yang4bc9b982010-06-02 14:05:24 +08002526 if (!cpu_has_vmx_ept() ||
2527 !cpu_has_vmx_ept_4levels()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08002528 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002529 enable_unrestricted_guest = 0;
2530 }
2531
2532 if (!cpu_has_vmx_unrestricted_guest())
2533 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08002534
2535 if (!cpu_has_vmx_flexpriority())
2536 flexpriority_enabled = 0;
2537
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002538 if (!cpu_has_vmx_tpr_shadow())
2539 kvm_x86_ops->update_cr8_intercept = NULL;
2540
Marcelo Tosatti54dee992009-06-11 12:07:44 -03002541 if (enable_ept && !cpu_has_vmx_ept_2m_page())
2542 kvm_disable_largepages();
2543
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002544 if (!cpu_has_vmx_ple())
2545 ple_gap = 0;
2546
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002547 if (nested)
2548 nested_vmx_setup_ctls_msrs();
2549
Avi Kivity6aa8b732006-12-10 02:21:36 -08002550 return alloc_kvm_area();
2551}
2552
2553static __exit void hardware_unsetup(void)
2554{
2555 free_kvm_area();
2556}
2557
Avi Kivity6aa8b732006-12-10 02:21:36 -08002558static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
2559{
2560 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2561
Avi Kivity6af11b92007-03-19 13:18:10 +02002562 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002563 vmcs_write16(sf->selector, save->selector);
2564 vmcs_writel(sf->base, save->base);
2565 vmcs_write32(sf->limit, save->limit);
2566 vmcs_write32(sf->ar_bytes, save->ar);
2567 } else {
2568 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
2569 << AR_DPL_SHIFT;
2570 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
2571 }
2572}
2573
2574static void enter_pmode(struct kvm_vcpu *vcpu)
2575{
2576 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002577 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002578
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002579 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002580 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581
Avi Kivity2fb92db2011-04-27 19:42:18 +03002582 vmx_segment_cache_clear(vmx);
2583
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002584 vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002585 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
2586 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
2587 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588
2589 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002590 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2591 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002592 vmcs_writel(GUEST_RFLAGS, flags);
2593
Rusty Russell66aee912007-07-17 23:34:16 +10002594 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2595 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002596
2597 update_exception_bitmap(vcpu);
2598
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002599 if (emulate_invalid_guest_state)
2600 return;
2601
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002602 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
2603 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
2604 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
2605 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002606
Avi Kivity2fb92db2011-04-27 19:42:18 +03002607 vmx_segment_cache_clear(vmx);
2608
Avi Kivity6aa8b732006-12-10 02:21:36 -08002609 vmcs_write16(GUEST_SS_SELECTOR, 0);
2610 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
2611
2612 vmcs_write16(GUEST_CS_SELECTOR,
2613 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
2614 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2615}
2616
Mike Dayd77c26f2007-10-08 09:02:08 -04002617static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002618{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002619 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002620 struct kvm_memslots *slots;
2621 gfn_t base_gfn;
2622
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002623 slots = kvm_memslots(kvm);
Avi Kivityf495c6e2010-06-10 17:21:29 +03002624 base_gfn = slots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02002625 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02002626 return base_gfn << PAGE_SHIFT;
2627 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002628 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002629}
2630
2631static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
2632{
2633 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2634
2635 save->selector = vmcs_read16(sf->selector);
2636 save->base = vmcs_readl(sf->base);
2637 save->limit = vmcs_read32(sf->limit);
2638 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01002639 vmcs_write16(sf->selector, save->base >> 4);
Gleb Natapov444e8632010-12-27 17:25:04 +02002640 vmcs_write32(sf->base, save->base & 0xffff0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002641 vmcs_write32(sf->limit, 0xffff);
2642 vmcs_write32(sf->ar_bytes, 0xf3);
Gleb Natapov444e8632010-12-27 17:25:04 +02002643 if (save->base & 0xf)
2644 printk_once(KERN_WARNING "kvm: segment base is not paragraph"
2645 " aligned when entering protected mode (seg=%d)",
2646 seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647}
2648
2649static void enter_rmode(struct kvm_vcpu *vcpu)
2650{
2651 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002652 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002653
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002654 if (enable_unrestricted_guest)
2655 return;
2656
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002657 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002658 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002659
Gleb Natapov776e58e2011-03-13 12:34:27 +02002660 /*
2661 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
2662 * vcpu. Call it here with phys address pointing 16M below 4G.
2663 */
2664 if (!vcpu->kvm->arch.tss_addr) {
2665 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2666 "called before entering vcpu\n");
2667 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
2668 vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
2669 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2670 }
2671
Avi Kivity2fb92db2011-04-27 19:42:18 +03002672 vmx_segment_cache_clear(vmx);
2673
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002674 vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002675 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
2677
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002678 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
2680
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002681 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002682 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2683
2684 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002685 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002686
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002687 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688
2689 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002690 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002691 update_exception_bitmap(vcpu);
2692
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002693 if (emulate_invalid_guest_state)
2694 goto continue_rmode;
2695
Avi Kivity6aa8b732006-12-10 02:21:36 -08002696 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
2697 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
2698 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
2699
2700 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08002701 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02002702 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
2703 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002704 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
2705
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002706 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
2707 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
2708 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
2709 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03002710
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002711continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08002712 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002713}
2714
Amit Shah401d10d2009-02-20 22:53:37 +05302715static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
2716{
2717 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002718 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2719
2720 if (!msr)
2721 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302722
Avi Kivity44ea2b12009-09-06 15:55:37 +03002723 /*
2724 * Force kernel_gs_base reloading before EFER changes, as control
2725 * of this msr depends on is_long_mode().
2726 */
2727 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02002728 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302729 if (efer & EFER_LMA) {
2730 vmcs_write32(VM_ENTRY_CONTROLS,
2731 vmcs_read32(VM_ENTRY_CONTROLS) |
2732 VM_ENTRY_IA32E_MODE);
2733 msr->data = efer;
2734 } else {
2735 vmcs_write32(VM_ENTRY_CONTROLS,
2736 vmcs_read32(VM_ENTRY_CONTROLS) &
2737 ~VM_ENTRY_IA32E_MODE);
2738
2739 msr->data = efer & ~EFER_LME;
2740 }
2741 setup_msrs(vmx);
2742}
2743
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002744#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002745
2746static void enter_lmode(struct kvm_vcpu *vcpu)
2747{
2748 u32 guest_tr_ar;
2749
Avi Kivity2fb92db2011-04-27 19:42:18 +03002750 vmx_segment_cache_clear(to_vmx(vcpu));
2751
Avi Kivity6aa8b732006-12-10 02:21:36 -08002752 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
2753 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
2754 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002755 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002756 vmcs_write32(GUEST_TR_AR_BYTES,
2757 (guest_tr_ar & ~AR_TYPE_MASK)
2758 | AR_TYPE_BUSY_64_TSS);
2759 }
Avi Kivityda38f432010-07-06 11:30:49 +03002760 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002761}
2762
2763static void exit_lmode(struct kvm_vcpu *vcpu)
2764{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002765 vmcs_write32(VM_ENTRY_CONTROLS,
2766 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03002767 & ~VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002768 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002769}
2770
2771#endif
2772
Sheng Yang2384d2b2008-01-17 15:14:33 +08002773static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2774{
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002775 vpid_sync_context(to_vmx(vcpu));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002776 if (enable_ept) {
2777 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2778 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08002779 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002780 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08002781}
2782
Avi Kivitye8467fd2009-12-29 18:43:06 +02002783static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2784{
2785 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2786
2787 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2788 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2789}
2790
Avi Kivityaff48ba2010-12-05 18:56:11 +02002791static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2792{
2793 if (enable_ept && is_paging(vcpu))
2794 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2795 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2796}
2797
Anthony Liguori25c4c272007-04-27 09:29:21 +03002798static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002799{
Avi Kivityfc78f512009-12-07 12:16:48 +02002800 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2801
2802 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2803 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002804}
2805
Sheng Yang14394422008-04-28 12:24:45 +08002806static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2807{
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002808 if (!test_bit(VCPU_EXREG_PDPTR,
2809 (unsigned long *)&vcpu->arch.regs_dirty))
2810 return;
2811
Sheng Yang14394422008-04-28 12:24:45 +08002812 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002813 vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]);
2814 vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]);
2815 vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]);
2816 vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002817 }
2818}
2819
Avi Kivity8f5d5492009-05-31 18:41:29 +03002820static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
2821{
2822 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002823 vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2824 vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2825 vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2826 vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002827 }
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002828
2829 __set_bit(VCPU_EXREG_PDPTR,
2830 (unsigned long *)&vcpu->arch.regs_avail);
2831 __set_bit(VCPU_EXREG_PDPTR,
2832 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002833}
2834
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002835static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08002836
2837static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2838 unsigned long cr0,
2839 struct kvm_vcpu *vcpu)
2840{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002841 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2842 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002843 if (!(cr0 & X86_CR0_PG)) {
2844 /* From paging/starting to nonpaging */
2845 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002846 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002847 (CPU_BASED_CR3_LOAD_EXITING |
2848 CPU_BASED_CR3_STORE_EXITING));
2849 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002850 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002851 } else if (!is_paging(vcpu)) {
2852 /* From nonpaging to paging */
2853 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002854 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002855 ~(CPU_BASED_CR3_LOAD_EXITING |
2856 CPU_BASED_CR3_STORE_EXITING));
2857 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002858 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002859 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002860
2861 if (!(cr0 & X86_CR0_WP))
2862 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002863}
2864
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2866{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002867 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002868 unsigned long hw_cr0;
2869
2870 if (enable_unrestricted_guest)
2871 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
2872 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
2873 else
2874 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002875
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002876 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002877 enter_pmode(vcpu);
2878
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002879 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002880 enter_rmode(vcpu);
2881
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002882#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002883 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10002884 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002885 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10002886 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002887 exit_lmode(vcpu);
2888 }
2889#endif
2890
Avi Kivity089d0342009-03-23 18:26:32 +02002891 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002892 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2893
Avi Kivity02daab22009-12-30 12:40:26 +02002894 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02002895 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02002896
Avi Kivity6aa8b732006-12-10 02:21:36 -08002897 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002898 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002899 vcpu->arch.cr0 = cr0;
Avi Kivity69c73022011-03-07 15:26:44 +02002900 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002901}
2902
Sheng Yang14394422008-04-28 12:24:45 +08002903static u64 construct_eptp(unsigned long root_hpa)
2904{
2905 u64 eptp;
2906
2907 /* TODO write the value reading from MSR */
2908 eptp = VMX_EPT_DEFAULT_MT |
2909 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
2910 eptp |= (root_hpa & PAGE_MASK);
2911
2912 return eptp;
2913}
2914
Avi Kivity6aa8b732006-12-10 02:21:36 -08002915static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
2916{
Sheng Yang14394422008-04-28 12:24:45 +08002917 unsigned long guest_cr3;
2918 u64 eptp;
2919
2920 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02002921 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08002922 eptp = construct_eptp(cr3);
2923 vmcs_write64(EPT_POINTER, eptp);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002924 guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) :
Sheng Yangb927a3c2009-07-21 10:42:48 +08002925 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02002926 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002927 }
2928
Sheng Yang2384d2b2008-01-17 15:14:33 +08002929 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002930 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002931}
2932
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002933static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002934{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002935 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08002936 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
2937
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002938 if (cr4 & X86_CR4_VMXE) {
2939 /*
2940 * To use VMXON (and later other VMX instructions), a guest
2941 * must first be able to turn on cr4.VMXE (see handle_vmon()).
2942 * So basically the check on whether to allow nested VMX
2943 * is here.
2944 */
2945 if (!nested_vmx_allowed(vcpu))
2946 return 1;
2947 } else if (to_vmx(vcpu)->nested.vmxon)
2948 return 1;
2949
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002950 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02002951 if (enable_ept) {
2952 if (!is_paging(vcpu)) {
2953 hw_cr4 &= ~X86_CR4_PAE;
2954 hw_cr4 |= X86_CR4_PSE;
2955 } else if (!(cr4 & X86_CR4_PAE)) {
2956 hw_cr4 &= ~X86_CR4_PAE;
2957 }
2958 }
Sheng Yang14394422008-04-28 12:24:45 +08002959
2960 vmcs_writel(CR4_READ_SHADOW, cr4);
2961 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002962 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002963}
2964
Avi Kivity6aa8b732006-12-10 02:21:36 -08002965static void vmx_get_segment(struct kvm_vcpu *vcpu,
2966 struct kvm_segment *var, int seg)
2967{
Avi Kivitya9179492011-01-03 14:28:52 +02002968 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitya9179492011-01-03 14:28:52 +02002969 struct kvm_save_segment *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002970 u32 ar;
2971
Avi Kivitya9179492011-01-03 14:28:52 +02002972 if (vmx->rmode.vm86_active
2973 && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES
2974 || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS
2975 || seg == VCPU_SREG_GS)
2976 && !emulate_invalid_guest_state) {
2977 switch (seg) {
2978 case VCPU_SREG_TR: save = &vmx->rmode.tr; break;
2979 case VCPU_SREG_ES: save = &vmx->rmode.es; break;
2980 case VCPU_SREG_DS: save = &vmx->rmode.ds; break;
2981 case VCPU_SREG_FS: save = &vmx->rmode.fs; break;
2982 case VCPU_SREG_GS: save = &vmx->rmode.gs; break;
2983 default: BUG();
2984 }
2985 var->selector = save->selector;
2986 var->base = save->base;
2987 var->limit = save->limit;
2988 ar = save->ar;
2989 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03002990 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivitya9179492011-01-03 14:28:52 +02002991 goto use_saved_rmode_seg;
2992 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002993 var->base = vmx_read_guest_seg_base(vmx, seg);
2994 var->limit = vmx_read_guest_seg_limit(vmx, seg);
2995 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2996 ar = vmx_read_guest_seg_ar(vmx, seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002997use_saved_rmode_seg:
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02002998 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002999 ar = 0;
3000 var->type = ar & 15;
3001 var->s = (ar >> 4) & 1;
3002 var->dpl = (ar >> 5) & 3;
3003 var->present = (ar >> 7) & 1;
3004 var->avl = (ar >> 12) & 1;
3005 var->l = (ar >> 13) & 1;
3006 var->db = (ar >> 14) & 1;
3007 var->g = (ar >> 15) & 1;
3008 var->unusable = (ar >> 16) & 1;
3009}
3010
Avi Kivitya9179492011-01-03 14:28:52 +02003011static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3012{
Avi Kivitya9179492011-01-03 14:28:52 +02003013 struct kvm_segment s;
3014
3015 if (to_vmx(vcpu)->rmode.vm86_active) {
3016 vmx_get_segment(vcpu, &s, seg);
3017 return s.base;
3018 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003019 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003020}
3021
Avi Kivity69c73022011-03-07 15:26:44 +02003022static int __vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003023{
Avi Kivity3eeb3282010-01-21 15:31:48 +02003024 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003025 return 0;
3026
Avi Kivityf4c63e52011-03-07 14:54:28 +02003027 if (!is_long_mode(vcpu)
3028 && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */
Izik Eidus2e4d2652008-03-24 19:38:34 +02003029 return 3;
3030
Avi Kivity2fb92db2011-04-27 19:42:18 +03003031 return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02003032}
3033
Avi Kivity69c73022011-03-07 15:26:44 +02003034static int vmx_get_cpl(struct kvm_vcpu *vcpu)
3035{
3036 if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) {
3037 __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
3038 to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu);
3039 }
3040 return to_vmx(vcpu)->cpl;
3041}
3042
3043
Avi Kivity653e3102007-05-07 10:55:37 +03003044static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003045{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003046 u32 ar;
3047
Avi Kivity653e3102007-05-07 10:55:37 +03003048 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003049 ar = 1 << 16;
3050 else {
3051 ar = var->type & 15;
3052 ar |= (var->s & 1) << 4;
3053 ar |= (var->dpl & 3) << 5;
3054 ar |= (var->present & 1) << 7;
3055 ar |= (var->avl & 1) << 12;
3056 ar |= (var->l & 1) << 13;
3057 ar |= (var->db & 1) << 14;
3058 ar |= (var->g & 1) << 15;
3059 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08003060 if (ar == 0) /* a 0 value means unusable */
3061 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03003062
3063 return ar;
3064}
3065
3066static void vmx_set_segment(struct kvm_vcpu *vcpu,
3067 struct kvm_segment *var, int seg)
3068{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003069 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03003070 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
3071 u32 ar;
3072
Avi Kivity2fb92db2011-04-27 19:42:18 +03003073 vmx_segment_cache_clear(vmx);
3074
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003075 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
Gleb Natapova8ba6c22011-02-21 12:07:58 +02003076 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003077 vmx->rmode.tr.selector = var->selector;
3078 vmx->rmode.tr.base = var->base;
3079 vmx->rmode.tr.limit = var->limit;
3080 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03003081 return;
3082 }
3083 vmcs_writel(sf->base, var->base);
3084 vmcs_write32(sf->limit, var->limit);
3085 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003086 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03003087 /*
3088 * Hack real-mode segments into vm86 compatibility.
3089 */
3090 if (var->base == 0xffff0000 && var->selector == 0xf000)
3091 vmcs_writel(sf->base, 0xf0000);
3092 ar = 0xf3;
3093 } else
3094 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003095
3096 /*
3097 * Fix the "Accessed" bit in AR field of segment registers for older
3098 * qemu binaries.
3099 * IA32 arch specifies that at the time of processor reset the
3100 * "Accessed" bit in the AR field of segment registers is 1. And qemu
3101 * is setting it to 0 in the usedland code. This causes invalid guest
3102 * state vmexit when "unrestricted guest" mode is turned on.
3103 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3104 * tree. Newer qemu binaries with that qemu fix would not need this
3105 * kvm hack.
3106 */
3107 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
3108 ar |= 0x1; /* Accessed */
3109
Avi Kivity6aa8b732006-12-10 02:21:36 -08003110 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003111 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003112}
3113
Avi Kivity6aa8b732006-12-10 02:21:36 -08003114static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3115{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003116 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003117
3118 *db = (ar >> 14) & 1;
3119 *l = (ar >> 13) & 1;
3120}
3121
Gleb Natapov89a27f42010-02-16 10:51:48 +02003122static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003123{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003124 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3125 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003126}
3127
Gleb Natapov89a27f42010-02-16 10:51:48 +02003128static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003129{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003130 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3131 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003132}
3133
Gleb Natapov89a27f42010-02-16 10:51:48 +02003134static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003135{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003136 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3137 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003138}
3139
Gleb Natapov89a27f42010-02-16 10:51:48 +02003140static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003142 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3143 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003144}
3145
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003146static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3147{
3148 struct kvm_segment var;
3149 u32 ar;
3150
3151 vmx_get_segment(vcpu, &var, seg);
3152 ar = vmx_segment_access_rights(&var);
3153
3154 if (var.base != (var.selector << 4))
3155 return false;
3156 if (var.limit != 0xffff)
3157 return false;
3158 if (ar != 0xf3)
3159 return false;
3160
3161 return true;
3162}
3163
3164static bool code_segment_valid(struct kvm_vcpu *vcpu)
3165{
3166 struct kvm_segment cs;
3167 unsigned int cs_rpl;
3168
3169 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3170 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
3171
Avi Kivity1872a3f2009-01-04 23:26:52 +02003172 if (cs.unusable)
3173 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003174 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
3175 return false;
3176 if (!cs.s)
3177 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003178 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003179 if (cs.dpl > cs_rpl)
3180 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003181 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003182 if (cs.dpl != cs_rpl)
3183 return false;
3184 }
3185 if (!cs.present)
3186 return false;
3187
3188 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3189 return true;
3190}
3191
3192static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3193{
3194 struct kvm_segment ss;
3195 unsigned int ss_rpl;
3196
3197 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3198 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
3199
Avi Kivity1872a3f2009-01-04 23:26:52 +02003200 if (ss.unusable)
3201 return true;
3202 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003203 return false;
3204 if (!ss.s)
3205 return false;
3206 if (ss.dpl != ss_rpl) /* DPL != RPL */
3207 return false;
3208 if (!ss.present)
3209 return false;
3210
3211 return true;
3212}
3213
3214static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3215{
3216 struct kvm_segment var;
3217 unsigned int rpl;
3218
3219 vmx_get_segment(vcpu, &var, seg);
3220 rpl = var.selector & SELECTOR_RPL_MASK;
3221
Avi Kivity1872a3f2009-01-04 23:26:52 +02003222 if (var.unusable)
3223 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003224 if (!var.s)
3225 return false;
3226 if (!var.present)
3227 return false;
3228 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
3229 if (var.dpl < rpl) /* DPL < RPL */
3230 return false;
3231 }
3232
3233 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3234 * rights flags
3235 */
3236 return true;
3237}
3238
3239static bool tr_valid(struct kvm_vcpu *vcpu)
3240{
3241 struct kvm_segment tr;
3242
3243 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3244
Avi Kivity1872a3f2009-01-04 23:26:52 +02003245 if (tr.unusable)
3246 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003247 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3248 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003249 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003250 return false;
3251 if (!tr.present)
3252 return false;
3253
3254 return true;
3255}
3256
3257static bool ldtr_valid(struct kvm_vcpu *vcpu)
3258{
3259 struct kvm_segment ldtr;
3260
3261 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3262
Avi Kivity1872a3f2009-01-04 23:26:52 +02003263 if (ldtr.unusable)
3264 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003265 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3266 return false;
3267 if (ldtr.type != 2)
3268 return false;
3269 if (!ldtr.present)
3270 return false;
3271
3272 return true;
3273}
3274
3275static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3276{
3277 struct kvm_segment cs, ss;
3278
3279 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3280 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3281
3282 return ((cs.selector & SELECTOR_RPL_MASK) ==
3283 (ss.selector & SELECTOR_RPL_MASK));
3284}
3285
3286/*
3287 * Check if guest state is valid. Returns true if valid, false if
3288 * not.
3289 * We assume that registers are always usable
3290 */
3291static bool guest_state_valid(struct kvm_vcpu *vcpu)
3292{
3293 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02003294 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003295 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3296 return false;
3297 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3298 return false;
3299 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3300 return false;
3301 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3302 return false;
3303 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3304 return false;
3305 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3306 return false;
3307 } else {
3308 /* protected mode guest state checks */
3309 if (!cs_ss_rpl_check(vcpu))
3310 return false;
3311 if (!code_segment_valid(vcpu))
3312 return false;
3313 if (!stack_segment_valid(vcpu))
3314 return false;
3315 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3316 return false;
3317 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3318 return false;
3319 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3320 return false;
3321 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3322 return false;
3323 if (!tr_valid(vcpu))
3324 return false;
3325 if (!ldtr_valid(vcpu))
3326 return false;
3327 }
3328 /* TODO:
3329 * - Add checks on RIP
3330 * - Add checks on RFLAGS
3331 */
3332
3333 return true;
3334}
3335
Mike Dayd77c26f2007-10-08 09:02:08 -04003336static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003337{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003338 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003339 u16 data = 0;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003340 int r, idx, ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003341
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003342 idx = srcu_read_lock(&kvm->srcu);
3343 fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003344 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3345 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003346 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003347 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003348 r = kvm_write_guest_page(kvm, fn++, &data,
3349 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003350 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003351 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003352 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3353 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003354 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003355 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3356 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003357 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003358 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003359 r = kvm_write_guest_page(kvm, fn, &data,
3360 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3361 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02003362 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003363 goto out;
3364
3365 ret = 1;
3366out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003367 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003368 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003369}
3370
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003371static int init_rmode_identity_map(struct kvm *kvm)
3372{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003373 int i, idx, r, ret;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003374 pfn_t identity_map_pfn;
3375 u32 tmp;
3376
Avi Kivity089d0342009-03-23 18:26:32 +02003377 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003378 return 1;
3379 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
3380 printk(KERN_ERR "EPT: identity-mapping pagetable "
3381 "haven't been allocated!\n");
3382 return 0;
3383 }
3384 if (likely(kvm->arch.ept_identity_pagetable_done))
3385 return 1;
3386 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003387 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003388 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003389 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3390 if (r < 0)
3391 goto out;
3392 /* Set up identity-mapping pagetable for EPT in real mode */
3393 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3394 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3395 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3396 r = kvm_write_guest_page(kvm, identity_map_pfn,
3397 &tmp, i * sizeof(tmp), sizeof(tmp));
3398 if (r < 0)
3399 goto out;
3400 }
3401 kvm->arch.ept_identity_pagetable_done = true;
3402 ret = 1;
3403out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003404 srcu_read_unlock(&kvm->srcu, idx);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003405 return ret;
3406}
3407
Avi Kivity6aa8b732006-12-10 02:21:36 -08003408static void seg_setup(int seg)
3409{
3410 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003411 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003412
3413 vmcs_write16(sf->selector, 0);
3414 vmcs_writel(sf->base, 0);
3415 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003416 if (enable_unrestricted_guest) {
3417 ar = 0x93;
3418 if (seg == VCPU_SREG_CS)
3419 ar |= 0x08; /* code segment */
3420 } else
3421 ar = 0xf3;
3422
3423 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003424}
3425
Sheng Yangf78e0e22007-10-29 09:40:42 +08003426static int alloc_apic_access_page(struct kvm *kvm)
3427{
3428 struct kvm_userspace_memory_region kvm_userspace_mem;
3429 int r = 0;
3430
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003431 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003432 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003433 goto out;
3434 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
3435 kvm_userspace_mem.flags = 0;
3436 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
3437 kvm_userspace_mem.memory_size = PAGE_SIZE;
3438 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3439 if (r)
3440 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003441
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003442 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003443out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003444 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003445 return r;
3446}
3447
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003448static int alloc_identity_pagetable(struct kvm *kvm)
3449{
3450 struct kvm_userspace_memory_region kvm_userspace_mem;
3451 int r = 0;
3452
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003453 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003454 if (kvm->arch.ept_identity_pagetable)
3455 goto out;
3456 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
3457 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003458 kvm_userspace_mem.guest_phys_addr =
3459 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003460 kvm_userspace_mem.memory_size = PAGE_SIZE;
3461 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3462 if (r)
3463 goto out;
3464
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003465 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08003466 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003467out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003468 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003469 return r;
3470}
3471
Sheng Yang2384d2b2008-01-17 15:14:33 +08003472static void allocate_vpid(struct vcpu_vmx *vmx)
3473{
3474 int vpid;
3475
3476 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02003477 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003478 return;
3479 spin_lock(&vmx_vpid_lock);
3480 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
3481 if (vpid < VMX_NR_VPIDS) {
3482 vmx->vpid = vpid;
3483 __set_bit(vpid, vmx_vpid_bitmap);
3484 }
3485 spin_unlock(&vmx_vpid_lock);
3486}
3487
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003488static void free_vpid(struct vcpu_vmx *vmx)
3489{
3490 if (!enable_vpid)
3491 return;
3492 spin_lock(&vmx_vpid_lock);
3493 if (vmx->vpid != 0)
3494 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3495 spin_unlock(&vmx_vpid_lock);
3496}
3497
Avi Kivity58972972009-02-24 22:26:47 +02003498static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08003499{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003500 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003501
3502 if (!cpu_has_vmx_msr_bitmap())
3503 return;
3504
3505 /*
3506 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3507 * have the write-low and read-high bitmap offsets the wrong way round.
3508 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3509 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003510 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003511 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
3512 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08003513 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3514 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003515 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
3516 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08003517 }
Sheng Yang25c5f222008-03-28 13:18:56 +08003518}
3519
Avi Kivity58972972009-02-24 22:26:47 +02003520static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
3521{
3522 if (!longmode_only)
3523 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
3524 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
3525}
3526
Avi Kivity6aa8b732006-12-10 02:21:36 -08003527/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003528 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3529 * will not change in the lifetime of the guest.
3530 * Note that host-state that does change is set elsewhere. E.g., host-state
3531 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3532 */
3533static void vmx_set_constant_host_state(void)
3534{
3535 u32 low32, high32;
3536 unsigned long tmpl;
3537 struct desc_ptr dt;
3538
3539 vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */
3540 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
3541 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
3542
3543 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
3544 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3545 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3546 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3547 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3548
3549 native_store_idt(&dt);
3550 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
3551
3552 asm("mov $.Lkvm_vmx_return, %0" : "=r"(tmpl));
3553 vmcs_writel(HOST_RIP, tmpl); /* 22.2.5 */
3554
3555 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
3556 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
3557 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
3558 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
3559
3560 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3561 rdmsr(MSR_IA32_CR_PAT, low32, high32);
3562 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
3563 }
3564}
3565
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003566static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
3567{
3568 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
3569 if (enable_ept)
3570 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003571 if (is_guest_mode(&vmx->vcpu))
3572 vmx->vcpu.arch.cr4_guest_owned_bits &=
3573 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003574 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
3575}
3576
3577static u32 vmx_exec_control(struct vcpu_vmx *vmx)
3578{
3579 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
3580 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
3581 exec_control &= ~CPU_BASED_TPR_SHADOW;
3582#ifdef CONFIG_X86_64
3583 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3584 CPU_BASED_CR8_LOAD_EXITING;
3585#endif
3586 }
3587 if (!enable_ept)
3588 exec_control |= CPU_BASED_CR3_STORE_EXITING |
3589 CPU_BASED_CR3_LOAD_EXITING |
3590 CPU_BASED_INVLPG_EXITING;
3591 return exec_control;
3592}
3593
3594static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
3595{
3596 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
3597 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3598 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
3599 if (vmx->vpid == 0)
3600 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
3601 if (!enable_ept) {
3602 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
3603 enable_unrestricted_guest = 0;
3604 }
3605 if (!enable_unrestricted_guest)
3606 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
3607 if (!ple_gap)
3608 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
3609 return exec_control;
3610}
3611
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003612static void ept_set_mmio_spte_mask(void)
3613{
3614 /*
3615 * EPT Misconfigurations can be generated if the value of bits 2:0
3616 * of an EPT paging-structure entry is 110b (write/execute).
3617 * Also, magic bits (0xffull << 49) is set to quickly identify mmio
3618 * spte.
3619 */
3620 kvm_mmu_set_mmio_spte_mask(0xffull << 49 | 0x6ull);
3621}
3622
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003623/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003624 * Sets up the vmcs for emulated real mode.
3625 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003626static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003627{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02003628#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003629 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02003630#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003631 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003632
Avi Kivity6aa8b732006-12-10 02:21:36 -08003633 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003634 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
3635 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003636
Sheng Yang25c5f222008-03-28 13:18:56 +08003637 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02003638 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08003639
Avi Kivity6aa8b732006-12-10 02:21:36 -08003640 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
3641
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003643 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
3644 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003645
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003646 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003647
Sheng Yang83ff3b92007-11-21 14:33:25 +08003648 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003649 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
3650 vmx_secondary_exec_control(vmx));
Sheng Yang83ff3b92007-11-21 14:33:25 +08003651 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08003652
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003653 if (ple_gap) {
3654 vmcs_write32(PLE_GAP, ple_gap);
3655 vmcs_write32(PLE_WINDOW, ple_window);
3656 }
3657
Xiao Guangrongc3707952011-07-12 03:28:04 +08003658 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
3659 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
3661
Avi Kivity9581d442010-10-19 16:46:55 +02003662 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
3663 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003664 vmx_set_constant_host_state();
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003665#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003666 rdmsrl(MSR_FS_BASE, a);
3667 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
3668 rdmsrl(MSR_GS_BASE, a);
3669 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
3670#else
3671 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
3672 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
3673#endif
3674
Eddie Dong2cc51562007-05-21 07:28:09 +03003675 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
3676 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003677 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03003678 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003679 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003680
Sheng Yang468d4722008-10-09 16:01:55 +08003681 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003682 u32 msr_low, msr_high;
3683 u64 host_pat;
Sheng Yang468d4722008-10-09 16:01:55 +08003684 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3685 host_pat = msr_low | ((u64) msr_high << 32);
3686 /* Write the default value follow host pat */
3687 vmcs_write64(GUEST_IA32_PAT, host_pat);
3688 /* Keep arch.pat sync with GUEST_IA32_PAT */
3689 vmx->vcpu.arch.pat = host_pat;
3690 }
3691
Avi Kivity6aa8b732006-12-10 02:21:36 -08003692 for (i = 0; i < NR_VMX_MSR; ++i) {
3693 u32 index = vmx_msr_index[i];
3694 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003695 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003696
3697 if (rdmsr_safe(index, &data_low, &data_high) < 0)
3698 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08003699 if (wrmsr_safe(index, data_low, data_high) < 0)
3700 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03003701 vmx->guest_msrs[j].index = i;
3702 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02003703 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003704 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003705 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003706
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003707 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003708
3709 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003710 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
3711
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003712 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003713 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003714
Zachary Amsden99e3e302010-08-19 22:07:17 -10003715 kvm_write_tsc(&vmx->vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003716
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003717 return 0;
3718}
3719
3720static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
3721{
3722 struct vcpu_vmx *vmx = to_vmx(vcpu);
3723 u64 msr;
Xiao Guangrong4b9d3a02010-06-08 10:15:51 +08003724 int ret;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003725
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003726 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003727
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003728 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003729
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003730 vmx->soft_vnmi_blocked = 0;
3731
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003732 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003733 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003734 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003735 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003736 msr |= MSR_IA32_APICBASE_BSP;
3737 kvm_set_apic_base(&vmx->vcpu, msr);
3738
Jan Kiszka10ab25c2010-05-25 16:01:50 +02003739 ret = fx_init(&vmx->vcpu);
3740 if (ret != 0)
3741 goto out;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003742
Avi Kivity2fb92db2011-04-27 19:42:18 +03003743 vmx_segment_cache_clear(vmx);
3744
Avi Kivity5706be02008-08-20 15:07:31 +03003745 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003746 /*
3747 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
3748 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
3749 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003750 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003751 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
3752 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
3753 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003754 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
3755 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003756 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003757
3758 seg_setup(VCPU_SREG_DS);
3759 seg_setup(VCPU_SREG_ES);
3760 seg_setup(VCPU_SREG_FS);
3761 seg_setup(VCPU_SREG_GS);
3762 seg_setup(VCPU_SREG_SS);
3763
3764 vmcs_write16(GUEST_TR_SELECTOR, 0);
3765 vmcs_writel(GUEST_TR_BASE, 0);
3766 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
3767 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3768
3769 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
3770 vmcs_writel(GUEST_LDTR_BASE, 0);
3771 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
3772 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
3773
3774 vmcs_write32(GUEST_SYSENTER_CS, 0);
3775 vmcs_writel(GUEST_SYSENTER_ESP, 0);
3776 vmcs_writel(GUEST_SYSENTER_EIP, 0);
3777
3778 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003779 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003780 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003781 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003782 kvm_rip_write(vcpu, 0);
3783 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003784
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003785 vmcs_writel(GUEST_DR7, 0x400);
3786
3787 vmcs_writel(GUEST_GDTR_BASE, 0);
3788 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
3789
3790 vmcs_writel(GUEST_IDTR_BASE, 0);
3791 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
3792
Anthony Liguori443381a2010-12-06 10:53:38 -06003793 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003794 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
3795 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
3796
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003797 /* Special registers */
3798 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
3799
3800 setup_msrs(vmx);
3801
Avi Kivity6aa8b732006-12-10 02:21:36 -08003802 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
3803
Sheng Yangf78e0e22007-10-29 09:40:42 +08003804 if (cpu_has_vmx_tpr_shadow()) {
3805 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
3806 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
3807 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09003808 __pa(vmx->vcpu.arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08003809 vmcs_write32(TPR_THRESHOLD, 0);
3810 }
3811
3812 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3813 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003814 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003815
Sheng Yang2384d2b2008-01-17 15:14:33 +08003816 if (vmx->vpid != 0)
3817 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
3818
Eduardo Habkostfa400522009-10-24 02:49:58 -02003819 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003820 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003821 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003822 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003823 vmx_fpu_activate(&vmx->vcpu);
3824 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003825
Gui Jianfengb9d762f2010-06-07 10:32:29 +08003826 vpid_sync_context(vmx);
Sheng Yang2384d2b2008-01-17 15:14:33 +08003827
Marcelo Tosatti3200f402008-03-29 20:17:59 -03003828 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003829
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003830 /* HACK: Don't enable emulation on guest boot/reset */
3831 vmx->emulation_required = 0;
3832
Avi Kivity6aa8b732006-12-10 02:21:36 -08003833out:
3834 return ret;
3835}
3836
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003837/*
3838 * In nested virtualization, check if L1 asked to exit on external interrupts.
3839 * For most existing hypervisors, this will always return true.
3840 */
3841static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
3842{
3843 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
3844 PIN_BASED_EXT_INTR_MASK;
3845}
3846
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003847static void enable_irq_window(struct kvm_vcpu *vcpu)
3848{
3849 u32 cpu_based_vm_exec_control;
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003850 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
3851 /* We can get here when nested_run_pending caused
3852 * vmx_interrupt_allowed() to return false. In this case, do
3853 * nothing - the interrupt will be injected later.
3854 */
3855 return;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003856
3857 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3858 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
3859 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3860}
3861
3862static void enable_nmi_window(struct kvm_vcpu *vcpu)
3863{
3864 u32 cpu_based_vm_exec_control;
3865
3866 if (!cpu_has_virtual_nmis()) {
3867 enable_irq_window(vcpu);
3868 return;
3869 }
3870
Avi Kivity30bd0c42010-11-01 23:20:48 +02003871 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
3872 enable_irq_window(vcpu);
3873 return;
3874 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003875 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3876 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3877 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3878}
3879
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003880static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03003881{
Avi Kivity9c8cba32007-11-22 11:42:59 +02003882 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003883 uint32_t intr;
3884 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02003885
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003886 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003887
Avi Kivityfa89a812008-09-01 15:57:51 +03003888 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003889 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003890 int inc_eip = 0;
3891 if (vcpu->arch.interrupt.soft)
3892 inc_eip = vcpu->arch.event_exit_inst_len;
3893 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003894 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003895 return;
3896 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003897 intr = irq | INTR_INFO_VALID_MASK;
3898 if (vcpu->arch.interrupt.soft) {
3899 intr |= INTR_TYPE_SOFT_INTR;
3900 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3901 vmx->vcpu.arch.event_exit_inst_len);
3902 } else
3903 intr |= INTR_TYPE_EXT_INTR;
3904 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Anthony Liguori443381a2010-12-06 10:53:38 -06003905 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003906}
3907
Sheng Yangf08864b2008-05-15 18:23:25 +08003908static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
3909{
Jan Kiszka66a5a342008-09-26 09:30:51 +02003910 struct vcpu_vmx *vmx = to_vmx(vcpu);
3911
Nadav Har'El0b6ac342011-05-25 23:13:36 +03003912 if (is_guest_mode(vcpu))
3913 return;
3914
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003915 if (!cpu_has_virtual_nmis()) {
3916 /*
3917 * Tracking the NMI-blocked state in software is built upon
3918 * finding the next open IRQ window. This, in turn, depends on
3919 * well-behaving guests: They have to keep IRQs disabled at
3920 * least as long as the NMI handler runs. Otherwise we may
3921 * cause NMI nesting, maybe breaking the guest. But as this is
3922 * highly unlikely, we can live with the residual risk.
3923 */
3924 vmx->soft_vnmi_blocked = 1;
3925 vmx->vnmi_blocked_time = 0;
3926 }
3927
Jan Kiszka487b3912008-09-26 09:30:56 +02003928 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02003929 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003930 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003931 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003932 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02003933 return;
3934 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003935 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
3936 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Anthony Liguori443381a2010-12-06 10:53:38 -06003937 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003938}
3939
Gleb Natapovc4282df2009-04-21 17:45:07 +03003940static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02003941{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003942 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03003943 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02003944
Gleb Natapovc4282df2009-04-21 17:45:07 +03003945 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
Avi Kivity30bd0c42010-11-01 23:20:48 +02003946 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
3947 | GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02003948}
3949
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003950static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
3951{
3952 if (!cpu_has_virtual_nmis())
3953 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02003954 if (to_vmx(vcpu)->nmi_known_unmasked)
3955 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03003956 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003957}
3958
3959static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3960{
3961 struct vcpu_vmx *vmx = to_vmx(vcpu);
3962
3963 if (!cpu_has_virtual_nmis()) {
3964 if (vmx->soft_vnmi_blocked != masked) {
3965 vmx->soft_vnmi_blocked = masked;
3966 vmx->vnmi_blocked_time = 0;
3967 }
3968 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02003969 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003970 if (masked)
3971 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3972 GUEST_INTR_STATE_NMI);
3973 else
3974 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3975 GUEST_INTR_STATE_NMI);
3976 }
3977}
3978
Gleb Natapov78646122009-03-23 12:12:11 +02003979static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
3980{
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003981 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) {
3982 struct vmcs12 *vmcs12;
3983 if (to_vmx(vcpu)->nested.nested_run_pending)
3984 return 0;
3985 nested_vmx_vmexit(vcpu);
3986 vmcs12 = get_vmcs12(vcpu);
3987 vmcs12->vm_exit_reason = EXIT_REASON_EXTERNAL_INTERRUPT;
3988 vmcs12->vm_exit_intr_info = 0;
3989 /* fall through to normal code, but now in L1, not L2 */
3990 }
3991
Gleb Natapovc4282df2009-04-21 17:45:07 +03003992 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
3993 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3994 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02003995}
3996
Izik Eiduscbc94022007-10-25 00:29:55 +02003997static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
3998{
3999 int ret;
4000 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08004001 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02004002 .guest_phys_addr = addr,
4003 .memory_size = PAGE_SIZE * 3,
4004 .flags = 0,
4005 };
4006
4007 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
4008 if (ret)
4009 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08004010 kvm->arch.tss_addr = addr;
Gleb Natapov93ea5382011-02-21 12:07:59 +02004011 if (!init_rmode_tss(kvm))
4012 return -ENOMEM;
4013
Izik Eiduscbc94022007-10-25 00:29:55 +02004014 return 0;
4015}
4016
Avi Kivity6aa8b732006-12-10 02:21:36 -08004017static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4018 int vec, u32 err_code)
4019{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03004020 /*
4021 * Instruction with address size override prefix opcode 0x67
4022 * Cause the #SS fault with 0 error code in VM86 mode.
4023 */
4024 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Andre Przywara51d8b662010-12-21 11:12:02 +01004025 if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004026 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004027 /*
4028 * Forward all other exceptions that are valid in real mode.
4029 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4030 * the required debugging infrastructure rework.
4031 */
4032 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004033 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004034 if (vcpu->guest_debug &
4035 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
4036 return 0;
4037 kvm_queue_exception(vcpu, vec);
4038 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004039 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004040 /*
4041 * Update instruction length as we may reinject the exception
4042 * from user space while in guest debugging mode.
4043 */
4044 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4045 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004046 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
4047 return 0;
4048 /* fall through */
4049 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004050 case OF_VECTOR:
4051 case BR_VECTOR:
4052 case UD_VECTOR:
4053 case DF_VECTOR:
4054 case SS_VECTOR:
4055 case GP_VECTOR:
4056 case MF_VECTOR:
4057 kvm_queue_exception(vcpu, vec);
4058 return 1;
4059 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004060 return 0;
4061}
4062
Andi Kleena0861c02009-06-08 17:37:09 +08004063/*
4064 * Trigger machine check on the host. We assume all the MSRs are already set up
4065 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4066 * We pass a fake environment to the machine check handler because we want
4067 * the guest to be always treated like user space, no matter what context
4068 * it used internally.
4069 */
4070static void kvm_machine_check(void)
4071{
4072#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
4073 struct pt_regs regs = {
4074 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4075 .flags = X86_EFLAGS_IF,
4076 };
4077
4078 do_machine_check(&regs, 0);
4079#endif
4080}
4081
Avi Kivity851ba692009-08-24 11:10:17 +03004082static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004083{
4084 /* already handled by vcpu_run */
4085 return 1;
4086}
4087
Avi Kivity851ba692009-08-24 11:10:17 +03004088static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004089{
Avi Kivity1155f762007-11-22 11:30:47 +02004090 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004091 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004092 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004093 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004094 u32 vect_info;
4095 enum emulation_result er;
4096
Avi Kivity1155f762007-11-22 11:30:47 +02004097 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02004098 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004099
Andi Kleena0861c02009-06-08 17:37:09 +08004100 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03004101 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08004102
Avi Kivity6aa8b732006-12-10 02:21:36 -08004103 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02004104 !is_page_fault(intr_info)) {
4105 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4106 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
4107 vcpu->run->internal.ndata = 2;
4108 vcpu->run->internal.data[0] = vect_info;
4109 vcpu->run->internal.data[1] = intr_info;
4110 return 0;
4111 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004112
Jan Kiszkae4a41882008-09-26 09:30:46 +02004113 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02004114 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004115
4116 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03004117 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004118 return 1;
4119 }
4120
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004121 if (is_invalid_opcode(intr_info)) {
Andre Przywara51d8b662010-12-21 11:12:02 +01004122 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004123 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02004124 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004125 return 1;
4126 }
4127
Avi Kivity6aa8b732006-12-10 02:21:36 -08004128 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004129 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004130 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
4131 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08004132 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02004133 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004134 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004135 trace_kvm_page_fault(cr2, error_code);
4136
Gleb Natapov3298b752009-05-11 13:35:46 +03004137 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03004138 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01004139 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004140 }
4141
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004142 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08004143 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004144 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004145 if (vcpu->arch.halt_request) {
4146 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004147 return kvm_emulate_halt(vcpu);
4148 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004149 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004150 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004151
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004152 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004153 switch (ex_no) {
4154 case DB_VECTOR:
4155 dr6 = vmcs_readl(EXIT_QUALIFICATION);
4156 if (!(vcpu->guest_debug &
4157 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
4158 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
4159 kvm_queue_exception(vcpu, DB_VECTOR);
4160 return 1;
4161 }
4162 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4163 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
4164 /* fall through */
4165 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004166 /*
4167 * Update instruction length as we may reinject #BP from
4168 * user space while in guest debugging mode. Reading it for
4169 * #DB as well causes no harm, it is not used in that case.
4170 */
4171 vmx->vcpu.arch.event_exit_inst_len =
4172 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004173 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004174 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004175 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4176 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004177 break;
4178 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004179 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4180 kvm_run->ex.exception = ex_no;
4181 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004182 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004183 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004184 return 0;
4185}
4186
Avi Kivity851ba692009-08-24 11:10:17 +03004187static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004188{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004189 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004190 return 1;
4191}
4192
Avi Kivity851ba692009-08-24 11:10:17 +03004193static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004194{
Avi Kivity851ba692009-08-24 11:10:17 +03004195 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08004196 return 0;
4197}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004198
Avi Kivity851ba692009-08-24 11:10:17 +03004199static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004200{
He, Qingbfdaab02007-09-12 14:18:28 +08004201 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01004202 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004203 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004204
He, Qingbfdaab02007-09-12 14:18:28 +08004205 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02004206 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004207 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004208
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004209 ++vcpu->stat.io_exits;
4210
4211 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01004212 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004213
4214 port = exit_qualification >> 16;
4215 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01004216 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004217
4218 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004219}
4220
Ingo Molnar102d8322007-02-19 14:37:47 +02004221static void
4222vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4223{
4224 /*
4225 * Patch in the VMCALL instruction:
4226 */
4227 hypercall[0] = 0x0f;
4228 hypercall[1] = 0x01;
4229 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004230}
4231
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004232/* called to set cr0 as approriate for a mov-to-cr0 exit. */
4233static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4234{
4235 if (to_vmx(vcpu)->nested.vmxon &&
4236 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
4237 return 1;
4238
4239 if (is_guest_mode(vcpu)) {
4240 /*
4241 * We get here when L2 changed cr0 in a way that did not change
4242 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
4243 * but did change L0 shadowed bits. This can currently happen
4244 * with the TS bit: L0 may want to leave TS on (for lazy fpu
4245 * loading) while pretending to allow the guest to change it.
4246 */
4247 if (kvm_set_cr0(vcpu, (val & vcpu->arch.cr0_guest_owned_bits) |
4248 (vcpu->arch.cr0 & ~vcpu->arch.cr0_guest_owned_bits)))
4249 return 1;
4250 vmcs_writel(CR0_READ_SHADOW, val);
4251 return 0;
4252 } else
4253 return kvm_set_cr0(vcpu, val);
4254}
4255
4256static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4257{
4258 if (is_guest_mode(vcpu)) {
4259 if (kvm_set_cr4(vcpu, (val & vcpu->arch.cr4_guest_owned_bits) |
4260 (vcpu->arch.cr4 & ~vcpu->arch.cr4_guest_owned_bits)))
4261 return 1;
4262 vmcs_writel(CR4_READ_SHADOW, val);
4263 return 0;
4264 } else
4265 return kvm_set_cr4(vcpu, val);
4266}
4267
4268/* called to set cr0 as approriate for clts instruction exit. */
4269static void handle_clts(struct kvm_vcpu *vcpu)
4270{
4271 if (is_guest_mode(vcpu)) {
4272 /*
4273 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
4274 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
4275 * just pretend it's off (also in arch.cr0 for fpu_activate).
4276 */
4277 vmcs_writel(CR0_READ_SHADOW,
4278 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
4279 vcpu->arch.cr0 &= ~X86_CR0_TS;
4280 } else
4281 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
4282}
4283
Avi Kivity851ba692009-08-24 11:10:17 +03004284static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004285{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004286 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004287 int cr;
4288 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004289 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004290
He, Qingbfdaab02007-09-12 14:18:28 +08004291 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004292 cr = exit_qualification & 15;
4293 reg = (exit_qualification >> 8) & 15;
4294 switch ((exit_qualification >> 4) & 3) {
4295 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004296 val = kvm_register_read(vcpu, reg);
4297 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004298 switch (cr) {
4299 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004300 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004301 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004302 return 1;
4303 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004304 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004305 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004306 return 1;
4307 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004308 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004309 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004310 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004311 case 8: {
4312 u8 cr8_prev = kvm_get_cr8(vcpu);
4313 u8 cr8 = kvm_register_read(vcpu, reg);
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004314 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004315 kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004316 if (irqchip_in_kernel(vcpu->kvm))
4317 return 1;
4318 if (cr8_prev <= cr8)
4319 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03004320 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004321 return 0;
4322 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004323 };
4324 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004325 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004326 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02004327 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03004328 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02004329 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03004330 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004331 case 1: /*mov from cr*/
4332 switch (cr) {
4333 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004334 val = kvm_read_cr3(vcpu);
4335 kvm_register_write(vcpu, reg, val);
4336 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004337 skip_emulated_instruction(vcpu);
4338 return 1;
4339 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004340 val = kvm_get_cr8(vcpu);
4341 kvm_register_write(vcpu, reg, val);
4342 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004343 skip_emulated_instruction(vcpu);
4344 return 1;
4345 }
4346 break;
4347 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004348 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004349 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004350 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004351
4352 skip_emulated_instruction(vcpu);
4353 return 1;
4354 default:
4355 break;
4356 }
Avi Kivity851ba692009-08-24 11:10:17 +03004357 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10004358 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004359 (int)(exit_qualification >> 4) & 3, cr);
4360 return 0;
4361}
4362
Avi Kivity851ba692009-08-24 11:10:17 +03004363static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004364{
He, Qingbfdaab02007-09-12 14:18:28 +08004365 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004366 int dr, reg;
4367
Jan Kiszkaf2483412010-01-20 18:20:20 +01004368 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004369 if (!kvm_require_cpl(vcpu, 0))
4370 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004371 dr = vmcs_readl(GUEST_DR7);
4372 if (dr & DR7_GD) {
4373 /*
4374 * As the vm-exit takes precedence over the debug trap, we
4375 * need to emulate the latter, either for the host or the
4376 * guest debugging itself.
4377 */
4378 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03004379 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
4380 vcpu->run->debug.arch.dr7 = dr;
4381 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004382 vmcs_readl(GUEST_CS_BASE) +
4383 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03004384 vcpu->run->debug.arch.exception = DB_VECTOR;
4385 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004386 return 0;
4387 } else {
4388 vcpu->arch.dr7 &= ~DR7_GD;
4389 vcpu->arch.dr6 |= DR6_BD;
4390 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
4391 kvm_queue_exception(vcpu, DB_VECTOR);
4392 return 1;
4393 }
4394 }
4395
He, Qingbfdaab02007-09-12 14:18:28 +08004396 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004397 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4398 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4399 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004400 unsigned long val;
4401 if (!kvm_get_dr(vcpu, dr, &val))
4402 kvm_register_write(vcpu, reg, val);
4403 } else
4404 kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004405 skip_emulated_instruction(vcpu);
4406 return 1;
4407}
4408
Gleb Natapov020df072010-04-13 10:05:23 +03004409static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
4410{
4411 vmcs_writel(GUEST_DR7, val);
4412}
4413
Avi Kivity851ba692009-08-24 11:10:17 +03004414static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004415{
Avi Kivity06465c52007-02-28 20:46:53 +02004416 kvm_emulate_cpuid(vcpu);
4417 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004418}
4419
Avi Kivity851ba692009-08-24 11:10:17 +03004420static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004421{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004422 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08004423 u64 data;
4424
4425 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02004426 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004427 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004428 return 1;
4429 }
4430
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004431 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004432
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004434 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
4435 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004436 skip_emulated_instruction(vcpu);
4437 return 1;
4438}
4439
Avi Kivity851ba692009-08-24 11:10:17 +03004440static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004441{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004442 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
4443 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
4444 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004445
4446 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02004447 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004448 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004449 return 1;
4450 }
4451
Avi Kivity59200272010-01-25 19:47:02 +02004452 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453 skip_emulated_instruction(vcpu);
4454 return 1;
4455}
4456
Avi Kivity851ba692009-08-24 11:10:17 +03004457static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004458{
Avi Kivity3842d132010-07-27 12:30:24 +03004459 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004460 return 1;
4461}
4462
Avi Kivity851ba692009-08-24 11:10:17 +03004463static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004464{
Eddie Dong85f455f2007-07-06 12:20:49 +03004465 u32 cpu_based_vm_exec_control;
4466
4467 /* clear pending irq */
4468 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4469 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
4470 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004471
Avi Kivity3842d132010-07-27 12:30:24 +03004472 kvm_make_request(KVM_REQ_EVENT, vcpu);
4473
Jan Kiszkaa26bf122008-09-26 09:30:45 +02004474 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004475
Dor Laorc1150d82007-01-05 16:36:24 -08004476 /*
4477 * If the user space waits to inject interrupts, exit as soon as
4478 * possible
4479 */
Gleb Natapov80618232009-04-21 17:44:56 +03004480 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03004481 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03004482 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004483 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08004484 return 0;
4485 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004486 return 1;
4487}
4488
Avi Kivity851ba692009-08-24 11:10:17 +03004489static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004490{
4491 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03004492 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004493}
4494
Avi Kivity851ba692009-08-24 11:10:17 +03004495static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02004496{
Dor Laor510043d2007-02-19 18:25:43 +02004497 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004498 kvm_emulate_hypercall(vcpu);
4499 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02004500}
4501
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004502static int handle_invd(struct kvm_vcpu *vcpu)
4503{
Andre Przywara51d8b662010-12-21 11:12:02 +01004504 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004505}
4506
Avi Kivity851ba692009-08-24 11:10:17 +03004507static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03004508{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004509 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004510
4511 kvm_mmu_invlpg(vcpu, exit_qualification);
4512 skip_emulated_instruction(vcpu);
4513 return 1;
4514}
4515
Avi Kivity851ba692009-08-24 11:10:17 +03004516static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02004517{
4518 skip_emulated_instruction(vcpu);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004519 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02004520 return 1;
4521}
4522
Dexuan Cui2acf9232010-06-10 11:27:12 +08004523static int handle_xsetbv(struct kvm_vcpu *vcpu)
4524{
4525 u64 new_bv = kvm_read_edx_eax(vcpu);
4526 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
4527
4528 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
4529 skip_emulated_instruction(vcpu);
4530 return 1;
4531}
4532
Avi Kivity851ba692009-08-24 11:10:17 +03004533static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004534{
Andre Przywara51d8b662010-12-21 11:12:02 +01004535 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004536}
4537
Avi Kivity851ba692009-08-24 11:10:17 +03004538static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02004539{
Jan Kiszka60637aa2008-09-26 09:30:47 +02004540 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004541 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004542 bool has_error_code = false;
4543 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004544 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004545 int reason, type, idt_v;
4546
4547 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
4548 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02004549
4550 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4551
4552 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004553 if (reason == TASK_SWITCH_GATE && idt_v) {
4554 switch (type) {
4555 case INTR_TYPE_NMI_INTR:
4556 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02004557 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004558 break;
4559 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004560 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004561 kvm_clear_interrupt_queue(vcpu);
4562 break;
4563 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02004564 if (vmx->idt_vectoring_info &
4565 VECTORING_INFO_DELIVER_CODE_MASK) {
4566 has_error_code = true;
4567 error_code =
4568 vmcs_read32(IDT_VECTORING_ERROR_CODE);
4569 }
4570 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004571 case INTR_TYPE_SOFT_EXCEPTION:
4572 kvm_clear_exception_queue(vcpu);
4573 break;
4574 default:
4575 break;
4576 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02004577 }
Izik Eidus37817f22008-03-24 23:14:53 +02004578 tss_selector = exit_qualification;
4579
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004580 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
4581 type != INTR_TYPE_EXT_INTR &&
4582 type != INTR_TYPE_NMI_INTR))
4583 skip_emulated_instruction(vcpu);
4584
Gleb Natapovacb54512010-04-15 21:03:50 +03004585 if (kvm_task_switch(vcpu, tss_selector, reason,
4586 has_error_code, error_code) == EMULATE_FAIL) {
4587 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4588 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4589 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004590 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03004591 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004592
4593 /* clear all local breakpoint enable flags */
4594 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
4595
4596 /*
4597 * TODO: What about debug traps on tss switch?
4598 * Are we supposed to inject them and update dr6?
4599 */
4600
4601 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02004602}
4603
Avi Kivity851ba692009-08-24 11:10:17 +03004604static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08004605{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004606 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08004607 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08004608 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08004609
Sheng Yangf9c617f2009-03-25 10:08:52 +08004610 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08004611
4612 if (exit_qualification & (1 << 6)) {
4613 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02004614 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08004615 }
4616
4617 gla_validity = (exit_qualification >> 7) & 0x3;
4618 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
4619 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
4620 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
4621 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08004622 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08004623 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
4624 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03004625 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4626 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03004627 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08004628 }
4629
4630 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004631 trace_kvm_page_fault(gpa, exit_qualification);
Andre Przywaradc25e892010-12-21 11:12:07 +01004632 return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08004633}
4634
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004635static u64 ept_rsvd_mask(u64 spte, int level)
4636{
4637 int i;
4638 u64 mask = 0;
4639
4640 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
4641 mask |= (1ULL << i);
4642
4643 if (level > 2)
4644 /* bits 7:3 reserved */
4645 mask |= 0xf8;
4646 else if (level == 2) {
4647 if (spte & (1ULL << 7))
4648 /* 2MB ref, bits 20:12 reserved */
4649 mask |= 0x1ff000;
4650 else
4651 /* bits 6:3 reserved */
4652 mask |= 0x78;
4653 }
4654
4655 return mask;
4656}
4657
4658static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
4659 int level)
4660{
4661 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
4662
4663 /* 010b (write-only) */
4664 WARN_ON((spte & 0x7) == 0x2);
4665
4666 /* 110b (write/execute) */
4667 WARN_ON((spte & 0x7) == 0x6);
4668
4669 /* 100b (execute-only) and value not supported by logical processor */
4670 if (!cpu_has_vmx_ept_execute_only())
4671 WARN_ON((spte & 0x7) == 0x4);
4672
4673 /* not 000b */
4674 if ((spte & 0x7)) {
4675 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
4676
4677 if (rsvd_bits != 0) {
4678 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
4679 __func__, rsvd_bits);
4680 WARN_ON(1);
4681 }
4682
4683 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
4684 u64 ept_mem_type = (spte & 0x38) >> 3;
4685
4686 if (ept_mem_type == 2 || ept_mem_type == 3 ||
4687 ept_mem_type == 7) {
4688 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
4689 __func__, ept_mem_type);
4690 WARN_ON(1);
4691 }
4692 }
4693 }
4694}
4695
Avi Kivity851ba692009-08-24 11:10:17 +03004696static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004697{
4698 u64 sptes[4];
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004699 int nr_sptes, i, ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004700 gpa_t gpa;
4701
4702 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
4703
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004704 ret = handle_mmio_page_fault_common(vcpu, gpa, true);
4705 if (likely(ret == 1))
4706 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
4707 EMULATE_DONE;
4708 if (unlikely(!ret))
4709 return 1;
4710
4711 /* It is the real ept misconfig */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004712 printk(KERN_ERR "EPT: Misconfiguration.\n");
4713 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
4714
4715 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
4716
4717 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
4718 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
4719
Avi Kivity851ba692009-08-24 11:10:17 +03004720 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4721 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004722
4723 return 0;
4724}
4725
Avi Kivity851ba692009-08-24 11:10:17 +03004726static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08004727{
4728 u32 cpu_based_vm_exec_control;
4729
4730 /* clear pending NMI */
4731 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4732 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
4733 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4734 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03004735 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004736
4737 return 1;
4738}
4739
Mohammed Gamal80ced182009-09-01 12:48:18 +02004740static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004741{
Avi Kivity8b3079a2009-01-05 12:10:54 +02004742 struct vcpu_vmx *vmx = to_vmx(vcpu);
4743 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02004744 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02004745 u32 cpu_exec_ctrl;
4746 bool intr_window_requested;
4747
4748 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4749 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004750
4751 while (!guest_state_valid(vcpu)) {
Avi Kivity49e9d552010-09-19 14:34:08 +02004752 if (intr_window_requested
4753 && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF))
4754 return handle_interrupt_window(&vmx->vcpu);
4755
Andre Przywara51d8b662010-12-21 11:12:02 +01004756 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004757
Mohammed Gamal80ced182009-09-01 12:48:18 +02004758 if (err == EMULATE_DO_MMIO) {
4759 ret = 0;
4760 goto out;
4761 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004762
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004763 if (err != EMULATE_DONE)
4764 return 0;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004765
4766 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02004767 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004768 if (need_resched())
4769 schedule();
4770 }
4771
Mohammed Gamal80ced182009-09-01 12:48:18 +02004772 vmx->emulation_required = 0;
4773out:
4774 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004775}
4776
Avi Kivity6aa8b732006-12-10 02:21:36 -08004777/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004778 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
4779 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
4780 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03004781static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004782{
4783 skip_emulated_instruction(vcpu);
4784 kvm_vcpu_on_spin(vcpu);
4785
4786 return 1;
4787}
4788
Sheng Yang59708672009-12-15 13:29:54 +08004789static int handle_invalid_op(struct kvm_vcpu *vcpu)
4790{
4791 kvm_queue_exception(vcpu, UD_VECTOR);
4792 return 1;
4793}
4794
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004795/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004796 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
4797 * We could reuse a single VMCS for all the L2 guests, but we also want the
4798 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
4799 * allows keeping them loaded on the processor, and in the future will allow
4800 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
4801 * every entry if they never change.
4802 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
4803 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
4804 *
4805 * The following functions allocate and free a vmcs02 in this pool.
4806 */
4807
4808/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
4809static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
4810{
4811 struct vmcs02_list *item;
4812 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4813 if (item->vmptr == vmx->nested.current_vmptr) {
4814 list_move(&item->list, &vmx->nested.vmcs02_pool);
4815 return &item->vmcs02;
4816 }
4817
4818 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
4819 /* Recycle the least recently used VMCS. */
4820 item = list_entry(vmx->nested.vmcs02_pool.prev,
4821 struct vmcs02_list, list);
4822 item->vmptr = vmx->nested.current_vmptr;
4823 list_move(&item->list, &vmx->nested.vmcs02_pool);
4824 return &item->vmcs02;
4825 }
4826
4827 /* Create a new VMCS */
4828 item = (struct vmcs02_list *)
4829 kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
4830 if (!item)
4831 return NULL;
4832 item->vmcs02.vmcs = alloc_vmcs();
4833 if (!item->vmcs02.vmcs) {
4834 kfree(item);
4835 return NULL;
4836 }
4837 loaded_vmcs_init(&item->vmcs02);
4838 item->vmptr = vmx->nested.current_vmptr;
4839 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
4840 vmx->nested.vmcs02_num++;
4841 return &item->vmcs02;
4842}
4843
4844/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
4845static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
4846{
4847 struct vmcs02_list *item;
4848 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4849 if (item->vmptr == vmptr) {
4850 free_loaded_vmcs(&item->vmcs02);
4851 list_del(&item->list);
4852 kfree(item);
4853 vmx->nested.vmcs02_num--;
4854 return;
4855 }
4856}
4857
4858/*
4859 * Free all VMCSs saved for this vcpu, except the one pointed by
4860 * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one
4861 * currently used, if running L2), and vmcs01 when running L2.
4862 */
4863static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
4864{
4865 struct vmcs02_list *item, *n;
4866 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
4867 if (vmx->loaded_vmcs != &item->vmcs02)
4868 free_loaded_vmcs(&item->vmcs02);
4869 list_del(&item->list);
4870 kfree(item);
4871 }
4872 vmx->nested.vmcs02_num = 0;
4873
4874 if (vmx->loaded_vmcs != &vmx->vmcs01)
4875 free_loaded_vmcs(&vmx->vmcs01);
4876}
4877
4878/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004879 * Emulate the VMXON instruction.
4880 * Currently, we just remember that VMX is active, and do not save or even
4881 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4882 * do not currently need to store anything in that guest-allocated memory
4883 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
4884 * argument is different from the VMXON pointer (which the spec says they do).
4885 */
4886static int handle_vmon(struct kvm_vcpu *vcpu)
4887{
4888 struct kvm_segment cs;
4889 struct vcpu_vmx *vmx = to_vmx(vcpu);
4890
4891 /* The Intel VMX Instruction Reference lists a bunch of bits that
4892 * are prerequisite to running VMXON, most notably cr4.VMXE must be
4893 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
4894 * Otherwise, we should fail with #UD. We test these now:
4895 */
4896 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
4897 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
4898 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
4899 kvm_queue_exception(vcpu, UD_VECTOR);
4900 return 1;
4901 }
4902
4903 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4904 if (is_long_mode(vcpu) && !cs.l) {
4905 kvm_queue_exception(vcpu, UD_VECTOR);
4906 return 1;
4907 }
4908
4909 if (vmx_get_cpl(vcpu)) {
4910 kvm_inject_gp(vcpu, 0);
4911 return 1;
4912 }
4913
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004914 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
4915 vmx->nested.vmcs02_num = 0;
4916
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004917 vmx->nested.vmxon = true;
4918
4919 skip_emulated_instruction(vcpu);
4920 return 1;
4921}
4922
4923/*
4924 * Intel's VMX Instruction Reference specifies a common set of prerequisites
4925 * for running VMX instructions (except VMXON, whose prerequisites are
4926 * slightly different). It also specifies what exception to inject otherwise.
4927 */
4928static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
4929{
4930 struct kvm_segment cs;
4931 struct vcpu_vmx *vmx = to_vmx(vcpu);
4932
4933 if (!vmx->nested.vmxon) {
4934 kvm_queue_exception(vcpu, UD_VECTOR);
4935 return 0;
4936 }
4937
4938 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4939 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
4940 (is_long_mode(vcpu) && !cs.l)) {
4941 kvm_queue_exception(vcpu, UD_VECTOR);
4942 return 0;
4943 }
4944
4945 if (vmx_get_cpl(vcpu)) {
4946 kvm_inject_gp(vcpu, 0);
4947 return 0;
4948 }
4949
4950 return 1;
4951}
4952
4953/*
4954 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
4955 * just stops using VMX.
4956 */
4957static void free_nested(struct vcpu_vmx *vmx)
4958{
4959 if (!vmx->nested.vmxon)
4960 return;
4961 vmx->nested.vmxon = false;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03004962 if (vmx->nested.current_vmptr != -1ull) {
4963 kunmap(vmx->nested.current_vmcs12_page);
4964 nested_release_page(vmx->nested.current_vmcs12_page);
4965 vmx->nested.current_vmptr = -1ull;
4966 vmx->nested.current_vmcs12 = NULL;
4967 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004968 /* Unpin physical memory we referred to in current vmcs02 */
4969 if (vmx->nested.apic_access_page) {
4970 nested_release_page(vmx->nested.apic_access_page);
4971 vmx->nested.apic_access_page = 0;
4972 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004973
4974 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004975}
4976
4977/* Emulate the VMXOFF instruction */
4978static int handle_vmoff(struct kvm_vcpu *vcpu)
4979{
4980 if (!nested_vmx_check_permission(vcpu))
4981 return 1;
4982 free_nested(to_vmx(vcpu));
4983 skip_emulated_instruction(vcpu);
4984 return 1;
4985}
4986
4987/*
Nadav Har'El064aea72011-05-25 23:04:56 +03004988 * Decode the memory-address operand of a vmx instruction, as recorded on an
4989 * exit caused by such an instruction (run by a guest hypervisor).
4990 * On success, returns 0. When the operand is invalid, returns 1 and throws
4991 * #UD or #GP.
4992 */
4993static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
4994 unsigned long exit_qualification,
4995 u32 vmx_instruction_info, gva_t *ret)
4996{
4997 /*
4998 * According to Vol. 3B, "Information for VM Exits Due to Instruction
4999 * Execution", on an exit, vmx_instruction_info holds most of the
5000 * addressing components of the operand. Only the displacement part
5001 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
5002 * For how an actual address is calculated from all these components,
5003 * refer to Vol. 1, "Operand Addressing".
5004 */
5005 int scaling = vmx_instruction_info & 3;
5006 int addr_size = (vmx_instruction_info >> 7) & 7;
5007 bool is_reg = vmx_instruction_info & (1u << 10);
5008 int seg_reg = (vmx_instruction_info >> 15) & 7;
5009 int index_reg = (vmx_instruction_info >> 18) & 0xf;
5010 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
5011 int base_reg = (vmx_instruction_info >> 23) & 0xf;
5012 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
5013
5014 if (is_reg) {
5015 kvm_queue_exception(vcpu, UD_VECTOR);
5016 return 1;
5017 }
5018
5019 /* Addr = segment_base + offset */
5020 /* offset = base + [index * scale] + displacement */
5021 *ret = vmx_get_segment_base(vcpu, seg_reg);
5022 if (base_is_valid)
5023 *ret += kvm_register_read(vcpu, base_reg);
5024 if (index_is_valid)
5025 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
5026 *ret += exit_qualification; /* holds the displacement */
5027
5028 if (addr_size == 1) /* 32 bit */
5029 *ret &= 0xffffffff;
5030
5031 /*
5032 * TODO: throw #GP (and return 1) in various cases that the VM*
5033 * instructions require it - e.g., offset beyond segment limit,
5034 * unusable or unreadable/unwritable segment, non-canonical 64-bit
5035 * address, and so on. Currently these are not checked.
5036 */
5037 return 0;
5038}
5039
5040/*
Nadav Har'El0140cae2011-05-25 23:06:28 +03005041 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
5042 * set the success or error code of an emulated VMX instruction, as specified
5043 * by Vol 2B, VMX Instruction Reference, "Conventions".
5044 */
5045static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
5046{
5047 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
5048 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5049 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
5050}
5051
5052static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
5053{
5054 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5055 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
5056 X86_EFLAGS_SF | X86_EFLAGS_OF))
5057 | X86_EFLAGS_CF);
5058}
5059
5060static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
5061 u32 vm_instruction_error)
5062{
5063 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
5064 /*
5065 * failValid writes the error number to the current VMCS, which
5066 * can't be done there isn't a current VMCS.
5067 */
5068 nested_vmx_failInvalid(vcpu);
5069 return;
5070 }
5071 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5072 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5073 X86_EFLAGS_SF | X86_EFLAGS_OF))
5074 | X86_EFLAGS_ZF);
5075 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
5076}
5077
Nadav Har'El27d6c862011-05-25 23:06:59 +03005078/* Emulate the VMCLEAR instruction */
5079static int handle_vmclear(struct kvm_vcpu *vcpu)
5080{
5081 struct vcpu_vmx *vmx = to_vmx(vcpu);
5082 gva_t gva;
5083 gpa_t vmptr;
5084 struct vmcs12 *vmcs12;
5085 struct page *page;
5086 struct x86_exception e;
5087
5088 if (!nested_vmx_check_permission(vcpu))
5089 return 1;
5090
5091 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5092 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
5093 return 1;
5094
5095 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
5096 sizeof(vmptr), &e)) {
5097 kvm_inject_page_fault(vcpu, &e);
5098 return 1;
5099 }
5100
5101 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
5102 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
5103 skip_emulated_instruction(vcpu);
5104 return 1;
5105 }
5106
5107 if (vmptr == vmx->nested.current_vmptr) {
5108 kunmap(vmx->nested.current_vmcs12_page);
5109 nested_release_page(vmx->nested.current_vmcs12_page);
5110 vmx->nested.current_vmptr = -1ull;
5111 vmx->nested.current_vmcs12 = NULL;
5112 }
5113
5114 page = nested_get_page(vcpu, vmptr);
5115 if (page == NULL) {
5116 /*
5117 * For accurate processor emulation, VMCLEAR beyond available
5118 * physical memory should do nothing at all. However, it is
5119 * possible that a nested vmx bug, not a guest hypervisor bug,
5120 * resulted in this case, so let's shut down before doing any
5121 * more damage:
5122 */
5123 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
5124 return 1;
5125 }
5126 vmcs12 = kmap(page);
5127 vmcs12->launch_state = 0;
5128 kunmap(page);
5129 nested_release_page(page);
5130
5131 nested_free_vmcs02(vmx, vmptr);
5132
5133 skip_emulated_instruction(vcpu);
5134 nested_vmx_succeed(vcpu);
5135 return 1;
5136}
5137
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005138static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
5139
5140/* Emulate the VMLAUNCH instruction */
5141static int handle_vmlaunch(struct kvm_vcpu *vcpu)
5142{
5143 return nested_vmx_run(vcpu, true);
5144}
5145
5146/* Emulate the VMRESUME instruction */
5147static int handle_vmresume(struct kvm_vcpu *vcpu)
5148{
5149
5150 return nested_vmx_run(vcpu, false);
5151}
5152
Nadav Har'El49f705c2011-05-25 23:08:30 +03005153enum vmcs_field_type {
5154 VMCS_FIELD_TYPE_U16 = 0,
5155 VMCS_FIELD_TYPE_U64 = 1,
5156 VMCS_FIELD_TYPE_U32 = 2,
5157 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
5158};
5159
5160static inline int vmcs_field_type(unsigned long field)
5161{
5162 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
5163 return VMCS_FIELD_TYPE_U32;
5164 return (field >> 13) & 0x3 ;
5165}
5166
5167static inline int vmcs_field_readonly(unsigned long field)
5168{
5169 return (((field >> 10) & 0x3) == 1);
5170}
5171
5172/*
5173 * Read a vmcs12 field. Since these can have varying lengths and we return
5174 * one type, we chose the biggest type (u64) and zero-extend the return value
5175 * to that size. Note that the caller, handle_vmread, might need to use only
5176 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
5177 * 64-bit fields are to be returned).
5178 */
5179static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu,
5180 unsigned long field, u64 *ret)
5181{
5182 short offset = vmcs_field_to_offset(field);
5183 char *p;
5184
5185 if (offset < 0)
5186 return 0;
5187
5188 p = ((char *)(get_vmcs12(vcpu))) + offset;
5189
5190 switch (vmcs_field_type(field)) {
5191 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5192 *ret = *((natural_width *)p);
5193 return 1;
5194 case VMCS_FIELD_TYPE_U16:
5195 *ret = *((u16 *)p);
5196 return 1;
5197 case VMCS_FIELD_TYPE_U32:
5198 *ret = *((u32 *)p);
5199 return 1;
5200 case VMCS_FIELD_TYPE_U64:
5201 *ret = *((u64 *)p);
5202 return 1;
5203 default:
5204 return 0; /* can never happen. */
5205 }
5206}
5207
5208/*
5209 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
5210 * used before) all generate the same failure when it is missing.
5211 */
5212static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
5213{
5214 struct vcpu_vmx *vmx = to_vmx(vcpu);
5215 if (vmx->nested.current_vmptr == -1ull) {
5216 nested_vmx_failInvalid(vcpu);
5217 skip_emulated_instruction(vcpu);
5218 return 0;
5219 }
5220 return 1;
5221}
5222
5223static int handle_vmread(struct kvm_vcpu *vcpu)
5224{
5225 unsigned long field;
5226 u64 field_value;
5227 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5228 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5229 gva_t gva = 0;
5230
5231 if (!nested_vmx_check_permission(vcpu) ||
5232 !nested_vmx_check_vmcs12(vcpu))
5233 return 1;
5234
5235 /* Decode instruction info and find the field to read */
5236 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5237 /* Read the field, zero-extended to a u64 field_value */
5238 if (!vmcs12_read_any(vcpu, field, &field_value)) {
5239 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5240 skip_emulated_instruction(vcpu);
5241 return 1;
5242 }
5243 /*
5244 * Now copy part of this value to register or memory, as requested.
5245 * Note that the number of bits actually copied is 32 or 64 depending
5246 * on the guest's mode (32 or 64 bit), not on the given field's length.
5247 */
5248 if (vmx_instruction_info & (1u << 10)) {
5249 kvm_register_write(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
5250 field_value);
5251 } else {
5252 if (get_vmx_mem_address(vcpu, exit_qualification,
5253 vmx_instruction_info, &gva))
5254 return 1;
5255 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
5256 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
5257 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
5258 }
5259
5260 nested_vmx_succeed(vcpu);
5261 skip_emulated_instruction(vcpu);
5262 return 1;
5263}
5264
5265
5266static int handle_vmwrite(struct kvm_vcpu *vcpu)
5267{
5268 unsigned long field;
5269 gva_t gva;
5270 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5271 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5272 char *p;
5273 short offset;
5274 /* The value to write might be 32 or 64 bits, depending on L1's long
5275 * mode, and eventually we need to write that into a field of several
5276 * possible lengths. The code below first zero-extends the value to 64
5277 * bit (field_value), and then copies only the approriate number of
5278 * bits into the vmcs12 field.
5279 */
5280 u64 field_value = 0;
5281 struct x86_exception e;
5282
5283 if (!nested_vmx_check_permission(vcpu) ||
5284 !nested_vmx_check_vmcs12(vcpu))
5285 return 1;
5286
5287 if (vmx_instruction_info & (1u << 10))
5288 field_value = kvm_register_read(vcpu,
5289 (((vmx_instruction_info) >> 3) & 0xf));
5290 else {
5291 if (get_vmx_mem_address(vcpu, exit_qualification,
5292 vmx_instruction_info, &gva))
5293 return 1;
5294 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
5295 &field_value, (is_long_mode(vcpu) ? 8 : 4), &e)) {
5296 kvm_inject_page_fault(vcpu, &e);
5297 return 1;
5298 }
5299 }
5300
5301
5302 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5303 if (vmcs_field_readonly(field)) {
5304 nested_vmx_failValid(vcpu,
5305 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
5306 skip_emulated_instruction(vcpu);
5307 return 1;
5308 }
5309
5310 offset = vmcs_field_to_offset(field);
5311 if (offset < 0) {
5312 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5313 skip_emulated_instruction(vcpu);
5314 return 1;
5315 }
5316 p = ((char *) get_vmcs12(vcpu)) + offset;
5317
5318 switch (vmcs_field_type(field)) {
5319 case VMCS_FIELD_TYPE_U16:
5320 *(u16 *)p = field_value;
5321 break;
5322 case VMCS_FIELD_TYPE_U32:
5323 *(u32 *)p = field_value;
5324 break;
5325 case VMCS_FIELD_TYPE_U64:
5326 *(u64 *)p = field_value;
5327 break;
5328 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5329 *(natural_width *)p = field_value;
5330 break;
5331 default:
5332 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5333 skip_emulated_instruction(vcpu);
5334 return 1;
5335 }
5336
5337 nested_vmx_succeed(vcpu);
5338 skip_emulated_instruction(vcpu);
5339 return 1;
5340}
5341
Nadav Har'El63846662011-05-25 23:07:29 +03005342/* Emulate the VMPTRLD instruction */
5343static int handle_vmptrld(struct kvm_vcpu *vcpu)
5344{
5345 struct vcpu_vmx *vmx = to_vmx(vcpu);
5346 gva_t gva;
5347 gpa_t vmptr;
5348 struct x86_exception e;
5349
5350 if (!nested_vmx_check_permission(vcpu))
5351 return 1;
5352
5353 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5354 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
5355 return 1;
5356
5357 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
5358 sizeof(vmptr), &e)) {
5359 kvm_inject_page_fault(vcpu, &e);
5360 return 1;
5361 }
5362
5363 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
5364 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
5365 skip_emulated_instruction(vcpu);
5366 return 1;
5367 }
5368
5369 if (vmx->nested.current_vmptr != vmptr) {
5370 struct vmcs12 *new_vmcs12;
5371 struct page *page;
5372 page = nested_get_page(vcpu, vmptr);
5373 if (page == NULL) {
5374 nested_vmx_failInvalid(vcpu);
5375 skip_emulated_instruction(vcpu);
5376 return 1;
5377 }
5378 new_vmcs12 = kmap(page);
5379 if (new_vmcs12->revision_id != VMCS12_REVISION) {
5380 kunmap(page);
5381 nested_release_page_clean(page);
5382 nested_vmx_failValid(vcpu,
5383 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
5384 skip_emulated_instruction(vcpu);
5385 return 1;
5386 }
5387 if (vmx->nested.current_vmptr != -1ull) {
5388 kunmap(vmx->nested.current_vmcs12_page);
5389 nested_release_page(vmx->nested.current_vmcs12_page);
5390 }
5391
5392 vmx->nested.current_vmptr = vmptr;
5393 vmx->nested.current_vmcs12 = new_vmcs12;
5394 vmx->nested.current_vmcs12_page = page;
5395 }
5396
5397 nested_vmx_succeed(vcpu);
5398 skip_emulated_instruction(vcpu);
5399 return 1;
5400}
5401
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005402/* Emulate the VMPTRST instruction */
5403static int handle_vmptrst(struct kvm_vcpu *vcpu)
5404{
5405 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5406 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5407 gva_t vmcs_gva;
5408 struct x86_exception e;
5409
5410 if (!nested_vmx_check_permission(vcpu))
5411 return 1;
5412
5413 if (get_vmx_mem_address(vcpu, exit_qualification,
5414 vmx_instruction_info, &vmcs_gva))
5415 return 1;
5416 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
5417 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
5418 (void *)&to_vmx(vcpu)->nested.current_vmptr,
5419 sizeof(u64), &e)) {
5420 kvm_inject_page_fault(vcpu, &e);
5421 return 1;
5422 }
5423 nested_vmx_succeed(vcpu);
5424 skip_emulated_instruction(vcpu);
5425 return 1;
5426}
5427
Nadav Har'El0140cae2011-05-25 23:06:28 +03005428/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005429 * The exit handlers return 1 if the exit was handled fully and guest execution
5430 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5431 * to be done to userspace and return 0.
5432 */
Avi Kivity851ba692009-08-24 11:10:17 +03005433static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005434 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
5435 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005436 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005437 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005438 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005439 [EXIT_REASON_CR_ACCESS] = handle_cr,
5440 [EXIT_REASON_DR_ACCESS] = handle_dr,
5441 [EXIT_REASON_CPUID] = handle_cpuid,
5442 [EXIT_REASON_MSR_READ] = handle_rdmsr,
5443 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
5444 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
5445 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005446 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005447 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005448 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03005449 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005450 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03005451 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005452 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005453 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005454 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005455 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005456 [EXIT_REASON_VMOFF] = handle_vmoff,
5457 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005458 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5459 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02005460 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005461 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005462 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005463 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005464 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5465 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005466 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08005467 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
5468 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005469};
5470
5471static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005472 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005473
Nadav Har'El644d7112011-05-25 23:12:35 +03005474/*
5475 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
5476 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
5477 * disinterest in the current event (read or write a specific MSR) by using an
5478 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
5479 */
5480static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
5481 struct vmcs12 *vmcs12, u32 exit_reason)
5482{
5483 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
5484 gpa_t bitmap;
5485
5486 if (!nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_USE_MSR_BITMAPS))
5487 return 1;
5488
5489 /*
5490 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
5491 * for the four combinations of read/write and low/high MSR numbers.
5492 * First we need to figure out which of the four to use:
5493 */
5494 bitmap = vmcs12->msr_bitmap;
5495 if (exit_reason == EXIT_REASON_MSR_WRITE)
5496 bitmap += 2048;
5497 if (msr_index >= 0xc0000000) {
5498 msr_index -= 0xc0000000;
5499 bitmap += 1024;
5500 }
5501
5502 /* Then read the msr_index'th bit from this bitmap: */
5503 if (msr_index < 1024*8) {
5504 unsigned char b;
5505 kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1);
5506 return 1 & (b >> (msr_index & 7));
5507 } else
5508 return 1; /* let L1 handle the wrong parameter */
5509}
5510
5511/*
5512 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
5513 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
5514 * intercept (via guest_host_mask etc.) the current event.
5515 */
5516static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
5517 struct vmcs12 *vmcs12)
5518{
5519 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5520 int cr = exit_qualification & 15;
5521 int reg = (exit_qualification >> 8) & 15;
5522 unsigned long val = kvm_register_read(vcpu, reg);
5523
5524 switch ((exit_qualification >> 4) & 3) {
5525 case 0: /* mov to cr */
5526 switch (cr) {
5527 case 0:
5528 if (vmcs12->cr0_guest_host_mask &
5529 (val ^ vmcs12->cr0_read_shadow))
5530 return 1;
5531 break;
5532 case 3:
5533 if ((vmcs12->cr3_target_count >= 1 &&
5534 vmcs12->cr3_target_value0 == val) ||
5535 (vmcs12->cr3_target_count >= 2 &&
5536 vmcs12->cr3_target_value1 == val) ||
5537 (vmcs12->cr3_target_count >= 3 &&
5538 vmcs12->cr3_target_value2 == val) ||
5539 (vmcs12->cr3_target_count >= 4 &&
5540 vmcs12->cr3_target_value3 == val))
5541 return 0;
5542 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
5543 return 1;
5544 break;
5545 case 4:
5546 if (vmcs12->cr4_guest_host_mask &
5547 (vmcs12->cr4_read_shadow ^ val))
5548 return 1;
5549 break;
5550 case 8:
5551 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
5552 return 1;
5553 break;
5554 }
5555 break;
5556 case 2: /* clts */
5557 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
5558 (vmcs12->cr0_read_shadow & X86_CR0_TS))
5559 return 1;
5560 break;
5561 case 1: /* mov from cr */
5562 switch (cr) {
5563 case 3:
5564 if (vmcs12->cpu_based_vm_exec_control &
5565 CPU_BASED_CR3_STORE_EXITING)
5566 return 1;
5567 break;
5568 case 8:
5569 if (vmcs12->cpu_based_vm_exec_control &
5570 CPU_BASED_CR8_STORE_EXITING)
5571 return 1;
5572 break;
5573 }
5574 break;
5575 case 3: /* lmsw */
5576 /*
5577 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
5578 * cr0. Other attempted changes are ignored, with no exit.
5579 */
5580 if (vmcs12->cr0_guest_host_mask & 0xe &
5581 (val ^ vmcs12->cr0_read_shadow))
5582 return 1;
5583 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
5584 !(vmcs12->cr0_read_shadow & 0x1) &&
5585 (val & 0x1))
5586 return 1;
5587 break;
5588 }
5589 return 0;
5590}
5591
5592/*
5593 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
5594 * should handle it ourselves in L0 (and then continue L2). Only call this
5595 * when in is_guest_mode (L2).
5596 */
5597static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
5598{
5599 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
5600 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
5601 struct vcpu_vmx *vmx = to_vmx(vcpu);
5602 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5603
5604 if (vmx->nested.nested_run_pending)
5605 return 0;
5606
5607 if (unlikely(vmx->fail)) {
5608 printk(KERN_INFO "%s failed vm entry %x\n",
5609 __func__, vmcs_read32(VM_INSTRUCTION_ERROR));
5610 return 1;
5611 }
5612
5613 switch (exit_reason) {
5614 case EXIT_REASON_EXCEPTION_NMI:
5615 if (!is_exception(intr_info))
5616 return 0;
5617 else if (is_page_fault(intr_info))
5618 return enable_ept;
5619 return vmcs12->exception_bitmap &
5620 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
5621 case EXIT_REASON_EXTERNAL_INTERRUPT:
5622 return 0;
5623 case EXIT_REASON_TRIPLE_FAULT:
5624 return 1;
5625 case EXIT_REASON_PENDING_INTERRUPT:
5626 case EXIT_REASON_NMI_WINDOW:
5627 /*
5628 * prepare_vmcs02() set the CPU_BASED_VIRTUAL_INTR_PENDING bit
5629 * (aka Interrupt Window Exiting) only when L1 turned it on,
5630 * so if we got a PENDING_INTERRUPT exit, this must be for L1.
5631 * Same for NMI Window Exiting.
5632 */
5633 return 1;
5634 case EXIT_REASON_TASK_SWITCH:
5635 return 1;
5636 case EXIT_REASON_CPUID:
5637 return 1;
5638 case EXIT_REASON_HLT:
5639 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
5640 case EXIT_REASON_INVD:
5641 return 1;
5642 case EXIT_REASON_INVLPG:
5643 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
5644 case EXIT_REASON_RDPMC:
5645 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
5646 case EXIT_REASON_RDTSC:
5647 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
5648 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
5649 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
5650 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
5651 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
5652 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
5653 /*
5654 * VMX instructions trap unconditionally. This allows L1 to
5655 * emulate them for its L2 guest, i.e., allows 3-level nesting!
5656 */
5657 return 1;
5658 case EXIT_REASON_CR_ACCESS:
5659 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
5660 case EXIT_REASON_DR_ACCESS:
5661 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
5662 case EXIT_REASON_IO_INSTRUCTION:
5663 /* TODO: support IO bitmaps */
5664 return 1;
5665 case EXIT_REASON_MSR_READ:
5666 case EXIT_REASON_MSR_WRITE:
5667 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
5668 case EXIT_REASON_INVALID_STATE:
5669 return 1;
5670 case EXIT_REASON_MWAIT_INSTRUCTION:
5671 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
5672 case EXIT_REASON_MONITOR_INSTRUCTION:
5673 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
5674 case EXIT_REASON_PAUSE_INSTRUCTION:
5675 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
5676 nested_cpu_has2(vmcs12,
5677 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
5678 case EXIT_REASON_MCE_DURING_VMENTRY:
5679 return 0;
5680 case EXIT_REASON_TPR_BELOW_THRESHOLD:
5681 return 1;
5682 case EXIT_REASON_APIC_ACCESS:
5683 return nested_cpu_has2(vmcs12,
5684 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
5685 case EXIT_REASON_EPT_VIOLATION:
5686 case EXIT_REASON_EPT_MISCONFIG:
5687 return 0;
5688 case EXIT_REASON_WBINVD:
5689 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
5690 case EXIT_REASON_XSETBV:
5691 return 1;
5692 default:
5693 return 1;
5694 }
5695}
5696
Avi Kivity586f9602010-11-18 13:09:54 +02005697static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
5698{
5699 *info1 = vmcs_readl(EXIT_QUALIFICATION);
5700 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
5701}
5702
Avi Kivity6aa8b732006-12-10 02:21:36 -08005703/*
5704 * The guest has exited. See if we can fix it or if we need userspace
5705 * assistance.
5706 */
Avi Kivity851ba692009-08-24 11:10:17 +03005707static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005708{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005709 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005710 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005711 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005712
Avi Kivityaa179112010-11-17 18:44:19 +02005713 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005714
Mohammed Gamal80ced182009-09-01 12:48:18 +02005715 /* If guest state is invalid, start emulating */
5716 if (vmx->emulation_required && emulate_invalid_guest_state)
5717 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005718
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005719 /*
5720 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
5721 * we did not inject a still-pending event to L1 now because of
5722 * nested_run_pending, we need to re-enable this bit.
5723 */
5724 if (vmx->nested.nested_run_pending)
5725 kvm_make_request(KVM_REQ_EVENT, vcpu);
5726
Nadav Har'El509c75e2011-06-02 11:54:52 +03005727 if (!is_guest_mode(vcpu) && (exit_reason == EXIT_REASON_VMLAUNCH ||
5728 exit_reason == EXIT_REASON_VMRESUME))
Nadav Har'El644d7112011-05-25 23:12:35 +03005729 vmx->nested.nested_run_pending = 1;
5730 else
5731 vmx->nested.nested_run_pending = 0;
5732
5733 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
5734 nested_vmx_vmexit(vcpu);
5735 return 1;
5736 }
5737
Mohammed Gamal51207022010-05-31 22:40:54 +03005738 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
5739 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5740 vcpu->run->fail_entry.hardware_entry_failure_reason
5741 = exit_reason;
5742 return 0;
5743 }
5744
Avi Kivity29bd8a72007-09-10 17:27:03 +03005745 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005746 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5747 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005748 = vmcs_read32(VM_INSTRUCTION_ERROR);
5749 return 0;
5750 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005751
Mike Dayd77c26f2007-10-08 09:02:08 -04005752 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005753 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005754 exit_reason != EXIT_REASON_EPT_VIOLATION &&
5755 exit_reason != EXIT_REASON_TASK_SWITCH))
5756 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
5757 "(0x%x) and exit reason is 0x%x\n",
5758 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005759
Nadav Har'El644d7112011-05-25 23:12:35 +03005760 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
5761 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
5762 get_vmcs12(vcpu), vcpu)))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03005763 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005764 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005765 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01005766 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005767 /*
5768 * This CPU don't support us in finding the end of an
5769 * NMI-blocked window if the guest runs with IRQs
5770 * disabled. So we pull the trigger after 1 s of
5771 * futile waiting, but inform the user about this.
5772 */
5773 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5774 "state on VCPU %d after 1 s timeout\n",
5775 __func__, vcpu->vcpu_id);
5776 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005777 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005778 }
5779
Avi Kivity6aa8b732006-12-10 02:21:36 -08005780 if (exit_reason < kvm_vmx_max_exit_handlers
5781 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03005782 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005783 else {
Avi Kivity851ba692009-08-24 11:10:17 +03005784 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5785 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005786 }
5787 return 0;
5788}
5789
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005790static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005791{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005792 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005793 vmcs_write32(TPR_THRESHOLD, 0);
5794 return;
5795 }
5796
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005797 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005798}
5799
Avi Kivity51aa01d2010-07-20 14:31:20 +03005800static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03005801{
Avi Kivity00eba012011-03-07 17:24:54 +02005802 u32 exit_intr_info;
5803
5804 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
5805 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
5806 return;
5807
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005808 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02005809 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08005810
5811 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005812 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08005813 kvm_machine_check();
5814
Gleb Natapov20f65982009-05-11 13:35:55 +03005815 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005816 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005817 (exit_intr_info & INTR_INFO_VALID_MASK)) {
5818 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03005819 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005820 kvm_after_handle_nmi(&vmx->vcpu);
5821 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03005822}
Gleb Natapov20f65982009-05-11 13:35:55 +03005823
Avi Kivity51aa01d2010-07-20 14:31:20 +03005824static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
5825{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005826 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03005827 bool unblock_nmi;
5828 u8 vector;
5829 bool idtv_info_valid;
5830
5831 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03005832
Avi Kivitycf393f72008-07-01 16:20:21 +03005833 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02005834 if (vmx->nmi_known_unmasked)
5835 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005836 /*
5837 * Can't use vmx->exit_intr_info since we're not sure what
5838 * the exit reason is.
5839 */
5840 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03005841 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
5842 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
5843 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005844 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03005845 * Re-set bit "block by NMI" before VM entry if vmexit caused by
5846 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005847 * SDM 3: 23.2.2 (September 2008)
5848 * Bit 12 is undefined in any of the following cases:
5849 * If the VM exit sets the valid bit in the IDT-vectoring
5850 * information field.
5851 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03005852 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005853 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
5854 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03005855 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5856 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02005857 else
5858 vmx->nmi_known_unmasked =
5859 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
5860 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005861 } else if (unlikely(vmx->soft_vnmi_blocked))
5862 vmx->vnmi_blocked_time +=
5863 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03005864}
5865
Avi Kivity83422e12010-07-20 14:43:23 +03005866static void __vmx_complete_interrupts(struct vcpu_vmx *vmx,
5867 u32 idt_vectoring_info,
5868 int instr_len_field,
5869 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03005870{
Avi Kivity51aa01d2010-07-20 14:31:20 +03005871 u8 vector;
5872 int type;
5873 bool idtv_info_valid;
5874
5875 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03005876
Gleb Natapov37b96e92009-03-30 16:03:13 +03005877 vmx->vcpu.arch.nmi_injected = false;
5878 kvm_clear_exception_queue(&vmx->vcpu);
5879 kvm_clear_interrupt_queue(&vmx->vcpu);
5880
5881 if (!idtv_info_valid)
5882 return;
5883
Avi Kivity3842d132010-07-27 12:30:24 +03005884 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
5885
Avi Kivity668f6122008-07-02 09:28:55 +03005886 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
5887 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03005888
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005889 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03005890 case INTR_TYPE_NMI_INTR:
5891 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03005892 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005893 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03005894 * Clear bit "block by NMI" before VM entry if a NMI
5895 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03005896 */
Avi Kivity654f06f2011-03-23 15:02:47 +02005897 vmx_set_nmi_mask(&vmx->vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005898 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03005899 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005900 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005901 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005902 /* fall through */
5903 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03005904 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03005905 u32 err = vmcs_read32(error_code_field);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005906 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03005907 } else
5908 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005909 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005910 case INTR_TYPE_SOFT_INTR:
5911 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005912 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005913 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03005914 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005915 kvm_queue_interrupt(&vmx->vcpu, vector,
5916 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005917 break;
5918 default:
5919 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03005920 }
Avi Kivitycf393f72008-07-01 16:20:21 +03005921}
5922
Avi Kivity83422e12010-07-20 14:43:23 +03005923static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
5924{
Nadav Har'El66c78ae2011-05-25 23:14:07 +03005925 if (is_guest_mode(&vmx->vcpu))
5926 return;
Avi Kivity83422e12010-07-20 14:43:23 +03005927 __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info,
5928 VM_EXIT_INSTRUCTION_LEN,
5929 IDT_VECTORING_ERROR_CODE);
5930}
5931
Avi Kivityb463a6f2010-07-20 15:06:17 +03005932static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
5933{
Nadav Har'El66c78ae2011-05-25 23:14:07 +03005934 if (is_guest_mode(vcpu))
5935 return;
Avi Kivityb463a6f2010-07-20 15:06:17 +03005936 __vmx_complete_interrupts(to_vmx(vcpu),
5937 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5938 VM_ENTRY_INSTRUCTION_LEN,
5939 VM_ENTRY_EXCEPTION_ERROR_CODE);
5940
5941 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
5942}
5943
Avi Kivityc8019492008-07-14 14:44:59 +03005944#ifdef CONFIG_X86_64
5945#define R "r"
5946#define Q "q"
5947#else
5948#define R "e"
5949#define Q "l"
5950#endif
5951
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08005952static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005953{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005954 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity104f2262010-11-18 13:12:52 +02005955
Nadav Har'El66c78ae2011-05-25 23:14:07 +03005956 if (is_guest_mode(vcpu) && !vmx->nested.nested_run_pending) {
5957 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5958 if (vmcs12->idt_vectoring_info_field &
5959 VECTORING_INFO_VALID_MASK) {
5960 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5961 vmcs12->idt_vectoring_info_field);
5962 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5963 vmcs12->vm_exit_instruction_len);
5964 if (vmcs12->idt_vectoring_info_field &
5965 VECTORING_INFO_DELIVER_CODE_MASK)
5966 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
5967 vmcs12->idt_vectoring_error_code);
5968 }
5969 }
5970
Avi Kivity104f2262010-11-18 13:12:52 +02005971 /* Record the guest's net vcpu time for enforced NMI injections. */
5972 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
5973 vmx->entry_time = ktime_get();
5974
5975 /* Don't enter VMX if guest state is invalid, let the exit handler
5976 start emulation until we arrive back to a valid state */
5977 if (vmx->emulation_required && emulate_invalid_guest_state)
5978 return;
5979
5980 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
5981 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
5982 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
5983 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
5984
5985 /* When single-stepping over STI and MOV SS, we must clear the
5986 * corresponding interruptibility bits in the guest state. Otherwise
5987 * vmentry fails as it then expects bit 14 (BS) in pending debug
5988 * exceptions being set, but that's not correct for the guest debugging
5989 * case. */
5990 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
5991 vmx_set_interrupt_shadow(vcpu, 0);
5992
Nadav Har'Eld462b812011-05-24 15:26:10 +03005993 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02005994 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08005995 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03005996 "push %%"R"dx; push %%"R"bp;"
Avi Kivity40712fa2011-01-06 18:09:12 +02005997 "push %%"R"cx \n\t" /* placeholder for guest rcx */
Avi Kivityc8019492008-07-14 14:44:59 +03005998 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03005999 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
6000 "je 1f \n\t"
6001 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006002 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03006003 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03006004 /* Reload cr2 if changed */
6005 "mov %c[cr2](%0), %%"R"ax \n\t"
6006 "mov %%cr2, %%"R"dx \n\t"
6007 "cmp %%"R"ax, %%"R"dx \n\t"
6008 "je 2f \n\t"
6009 "mov %%"R"ax, %%cr2 \n\t"
6010 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006011 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02006012 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006013 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03006014 "mov %c[rax](%0), %%"R"ax \n\t"
6015 "mov %c[rbx](%0), %%"R"bx \n\t"
6016 "mov %c[rdx](%0), %%"R"dx \n\t"
6017 "mov %c[rsi](%0), %%"R"si \n\t"
6018 "mov %c[rdi](%0), %%"R"di \n\t"
6019 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006020#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02006021 "mov %c[r8](%0), %%r8 \n\t"
6022 "mov %c[r9](%0), %%r9 \n\t"
6023 "mov %c[r10](%0), %%r10 \n\t"
6024 "mov %c[r11](%0), %%r11 \n\t"
6025 "mov %c[r12](%0), %%r12 \n\t"
6026 "mov %c[r13](%0), %%r13 \n\t"
6027 "mov %c[r14](%0), %%r14 \n\t"
6028 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006029#endif
Avi Kivityc8019492008-07-14 14:44:59 +03006030 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
6031
Avi Kivity6aa8b732006-12-10 02:21:36 -08006032 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03006033 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006034 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03006035 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006036 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03006037 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08006038 /* Save guest registers, load host registers, keep flags */
Avi Kivity40712fa2011-01-06 18:09:12 +02006039 "mov %0, %c[wordsize](%%"R"sp) \n\t"
6040 "pop %0 \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03006041 "mov %%"R"ax, %c[rax](%0) \n\t"
6042 "mov %%"R"bx, %c[rbx](%0) \n\t"
Avi Kivity1c696d02011-01-06 18:09:11 +02006043 "pop"Q" %c[rcx](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03006044 "mov %%"R"dx, %c[rdx](%0) \n\t"
6045 "mov %%"R"si, %c[rsi](%0) \n\t"
6046 "mov %%"R"di, %c[rdi](%0) \n\t"
6047 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006048#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02006049 "mov %%r8, %c[r8](%0) \n\t"
6050 "mov %%r9, %c[r9](%0) \n\t"
6051 "mov %%r10, %c[r10](%0) \n\t"
6052 "mov %%r11, %c[r11](%0) \n\t"
6053 "mov %%r12, %c[r12](%0) \n\t"
6054 "mov %%r13, %c[r13](%0) \n\t"
6055 "mov %%r14, %c[r14](%0) \n\t"
6056 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006057#endif
Avi Kivityc8019492008-07-14 14:44:59 +03006058 "mov %%cr2, %%"R"ax \n\t"
6059 "mov %%"R"ax, %c[cr2](%0) \n\t"
6060
Avi Kivity1c696d02011-01-06 18:09:11 +02006061 "pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02006062 "setbe %c[fail](%0) \n\t"
6063 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03006064 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02006065 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03006066 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006067 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
6068 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
6069 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
6070 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
6071 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
6072 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
6073 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006074#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006075 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
6076 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
6077 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
6078 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
6079 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
6080 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
6081 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
6082 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08006083#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02006084 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
6085 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02006086 : "cc", "memory"
Jan Kiszka07d6f552010-09-28 16:37:42 +02006087 , R"ax", R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02006088#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02006089 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
6090#endif
6091 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08006092
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03006093 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02006094 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivity69c73022011-03-07 15:26:44 +02006095 | (1 << VCPU_EXREG_CPL)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006096 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03006097 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006098 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006099 vcpu->arch.regs_dirty = 0;
6100
Avi Kivity1155f762007-11-22 11:30:47 +02006101 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6102
Nadav Har'El66c78ae2011-05-25 23:14:07 +03006103 if (is_guest_mode(vcpu)) {
6104 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6105 vmcs12->idt_vectoring_info_field = vmx->idt_vectoring_info;
6106 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
6107 vmcs12->idt_vectoring_error_code =
6108 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6109 vmcs12->vm_exit_instruction_len =
6110 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6111 }
6112 }
6113
Mike Dayd77c26f2007-10-08 09:02:08 -04006114 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Nadav Har'Eld462b812011-05-24 15:26:10 +03006115 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02006116
Avi Kivity51aa01d2010-07-20 14:31:20 +03006117 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006118
6119 vmx_complete_atomic_exit(vmx);
6120 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006121 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006122}
6123
Avi Kivityc8019492008-07-14 14:44:59 +03006124#undef R
6125#undef Q
6126
Avi Kivity6aa8b732006-12-10 02:21:36 -08006127static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6128{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006129 struct vcpu_vmx *vmx = to_vmx(vcpu);
6130
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08006131 free_vpid(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006132 free_nested(vmx);
Nadav Har'Eld462b812011-05-24 15:26:10 +03006133 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006134 kfree(vmx->guest_msrs);
6135 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10006136 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006137}
6138
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006139static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006140{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006141 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10006142 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03006143 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006144
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006145 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006146 return ERR_PTR(-ENOMEM);
6147
Sheng Yang2384d2b2008-01-17 15:14:33 +08006148 allocate_vpid(vmx);
6149
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006150 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
6151 if (err)
6152 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006153
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006154 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006155 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006156 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006157 goto uninit_vcpu;
6158 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006159
Nadav Har'Eld462b812011-05-24 15:26:10 +03006160 vmx->loaded_vmcs = &vmx->vmcs01;
6161 vmx->loaded_vmcs->vmcs = alloc_vmcs();
6162 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006163 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03006164 if (!vmm_exclusive)
6165 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
6166 loaded_vmcs_init(vmx->loaded_vmcs);
6167 if (!vmm_exclusive)
6168 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006169
Avi Kivity15ad7142007-07-11 18:17:21 +03006170 cpu = get_cpu();
6171 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10006172 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10006173 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006174 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006175 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006176 if (err)
6177 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006178 if (vm_need_virtualize_apic_accesses(kvm))
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006179 err = alloc_apic_access_page(kvm);
6180 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006181 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006182
Sheng Yangb927a3c2009-07-21 10:42:48 +08006183 if (enable_ept) {
6184 if (!kvm->arch.ept_identity_map_addr)
6185 kvm->arch.ept_identity_map_addr =
6186 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Gleb Natapov93ea5382011-02-21 12:07:59 +02006187 err = -ENOMEM;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006188 if (alloc_identity_pagetable(kvm) != 0)
6189 goto free_vmcs;
Gleb Natapov93ea5382011-02-21 12:07:59 +02006190 if (!init_rmode_identity_map(kvm))
6191 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006192 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006193
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006194 vmx->nested.current_vmptr = -1ull;
6195 vmx->nested.current_vmcs12 = NULL;
6196
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006197 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006198
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006199free_vmcs:
Nadav Har'Eld462b812011-05-24 15:26:10 +03006200 free_vmcs(vmx->loaded_vmcs->vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006201free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006202 kfree(vmx->guest_msrs);
6203uninit_vcpu:
6204 kvm_vcpu_uninit(&vmx->vcpu);
6205free_vcpu:
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08006206 free_vpid(vmx);
Rusty Russella4770342007-08-01 14:46:11 +10006207 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006208 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006209}
6210
Yang, Sheng002c7f72007-07-31 14:23:01 +03006211static void __init vmx_check_processor_compat(void *rtn)
6212{
6213 struct vmcs_config vmcs_conf;
6214
6215 *(int *)rtn = 0;
6216 if (setup_vmcs_config(&vmcs_conf) < 0)
6217 *(int *)rtn = -EIO;
6218 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6219 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6220 smp_processor_id());
6221 *(int *)rtn = -EIO;
6222 }
6223}
6224
Sheng Yang67253af2008-04-25 10:20:22 +08006225static int get_ept_level(void)
6226{
6227 return VMX_EPT_DEFAULT_GAW + 1;
6228}
6229
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006230static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006231{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006232 u64 ret;
6233
Sheng Yang522c68c2009-04-27 20:35:43 +08006234 /* For VT-d and EPT combination
6235 * 1. MMIO: always map as UC
6236 * 2. EPT with VT-d:
6237 * a. VT-d without snooping control feature: can't guarantee the
6238 * result, try to trust guest.
6239 * b. VT-d with snooping control feature: snooping control feature of
6240 * VT-d engine can guarantee the cache correctness. Just set it
6241 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08006242 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08006243 * consistent with host MTRR
6244 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006245 if (is_mmio)
6246 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08006247 else if (vcpu->kvm->arch.iommu_domain &&
6248 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
6249 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
6250 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006251 else
Sheng Yang522c68c2009-04-27 20:35:43 +08006252 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08006253 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006254
6255 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08006256}
6257
Sheng Yang17cc3932010-01-05 19:02:27 +08006258static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006259{
Sheng Yang878403b2010-01-05 19:02:29 +08006260 if (enable_ept && !cpu_has_vmx_ept_1g_page())
6261 return PT_DIRECTORY_LEVEL;
6262 else
6263 /* For shadow and EPT supported 1GB page */
6264 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006265}
6266
Sheng Yang0e851882009-12-18 16:48:46 +08006267static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
6268{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006269 struct kvm_cpuid_entry2 *best;
6270 struct vcpu_vmx *vmx = to_vmx(vcpu);
6271 u32 exec_control;
6272
6273 vmx->rdtscp_enabled = false;
6274 if (vmx_rdtscp_supported()) {
6275 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6276 if (exec_control & SECONDARY_EXEC_RDTSCP) {
6277 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
6278 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
6279 vmx->rdtscp_enabled = true;
6280 else {
6281 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6282 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
6283 exec_control);
6284 }
6285 }
6286 }
Sheng Yang0e851882009-12-18 16:48:46 +08006287}
6288
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006289static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6290{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03006291 if (func == 1 && nested)
6292 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006293}
6294
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006295/*
6296 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
6297 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
6298 * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2
6299 * guest in a way that will both be appropriate to L1's requests, and our
6300 * needs. In addition to modifying the active vmcs (which is vmcs02), this
6301 * function also has additional necessary side-effects, like setting various
6302 * vcpu->arch fields.
6303 */
6304static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6305{
6306 struct vcpu_vmx *vmx = to_vmx(vcpu);
6307 u32 exec_control;
6308
6309 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
6310 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
6311 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
6312 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
6313 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
6314 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
6315 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
6316 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
6317 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
6318 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
6319 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
6320 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
6321 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
6322 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
6323 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
6324 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
6325 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
6326 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
6327 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
6328 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
6329 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
6330 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
6331 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
6332 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
6333 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
6334 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
6335 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
6336 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
6337 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
6338 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
6339 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
6340 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
6341 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
6342 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
6343 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
6344 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
6345
6346 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
6347 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6348 vmcs12->vm_entry_intr_info_field);
6349 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
6350 vmcs12->vm_entry_exception_error_code);
6351 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6352 vmcs12->vm_entry_instruction_len);
6353 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
6354 vmcs12->guest_interruptibility_info);
6355 vmcs_write32(GUEST_ACTIVITY_STATE, vmcs12->guest_activity_state);
6356 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
6357 vmcs_writel(GUEST_DR7, vmcs12->guest_dr7);
6358 vmcs_writel(GUEST_RFLAGS, vmcs12->guest_rflags);
6359 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
6360 vmcs12->guest_pending_dbg_exceptions);
6361 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
6362 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
6363
6364 vmcs_write64(VMCS_LINK_POINTER, -1ull);
6365
6366 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
6367 (vmcs_config.pin_based_exec_ctrl |
6368 vmcs12->pin_based_vm_exec_control));
6369
6370 /*
6371 * Whether page-faults are trapped is determined by a combination of
6372 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
6373 * If enable_ept, L0 doesn't care about page faults and we should
6374 * set all of these to L1's desires. However, if !enable_ept, L0 does
6375 * care about (at least some) page faults, and because it is not easy
6376 * (if at all possible?) to merge L0 and L1's desires, we simply ask
6377 * to exit on each and every L2 page fault. This is done by setting
6378 * MASK=MATCH=0 and (see below) EB.PF=1.
6379 * Note that below we don't need special code to set EB.PF beyond the
6380 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
6381 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
6382 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
6383 *
6384 * A problem with this approach (when !enable_ept) is that L1 may be
6385 * injected with more page faults than it asked for. This could have
6386 * caused problems, but in practice existing hypervisors don't care.
6387 * To fix this, we will need to emulate the PFEC checking (on the L1
6388 * page tables), using walk_addr(), when injecting PFs to L1.
6389 */
6390 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
6391 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
6392 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
6393 enable_ept ? vmcs12->page_fault_error_code_match : 0);
6394
6395 if (cpu_has_secondary_exec_ctrls()) {
6396 u32 exec_control = vmx_secondary_exec_control(vmx);
6397 if (!vmx->rdtscp_enabled)
6398 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6399 /* Take the following fields only from vmcs12 */
6400 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6401 if (nested_cpu_has(vmcs12,
6402 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
6403 exec_control |= vmcs12->secondary_vm_exec_control;
6404
6405 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
6406 /*
6407 * Translate L1 physical address to host physical
6408 * address for vmcs02. Keep the page pinned, so this
6409 * physical address remains valid. We keep a reference
6410 * to it so we can release it later.
6411 */
6412 if (vmx->nested.apic_access_page) /* shouldn't happen */
6413 nested_release_page(vmx->nested.apic_access_page);
6414 vmx->nested.apic_access_page =
6415 nested_get_page(vcpu, vmcs12->apic_access_addr);
6416 /*
6417 * If translation failed, no matter: This feature asks
6418 * to exit when accessing the given address, and if it
6419 * can never be accessed, this feature won't do
6420 * anything anyway.
6421 */
6422 if (!vmx->nested.apic_access_page)
6423 exec_control &=
6424 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6425 else
6426 vmcs_write64(APIC_ACCESS_ADDR,
6427 page_to_phys(vmx->nested.apic_access_page));
6428 }
6429
6430 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
6431 }
6432
6433
6434 /*
6435 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
6436 * Some constant fields are set here by vmx_set_constant_host_state().
6437 * Other fields are different per CPU, and will be set later when
6438 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
6439 */
6440 vmx_set_constant_host_state();
6441
6442 /*
6443 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
6444 * entry, but only if the current (host) sp changed from the value
6445 * we wrote last (vmx->host_rsp). This cache is no longer relevant
6446 * if we switch vmcs, and rather than hold a separate cache per vmcs,
6447 * here we just force the write to happen on entry.
6448 */
6449 vmx->host_rsp = 0;
6450
6451 exec_control = vmx_exec_control(vmx); /* L0's desires */
6452 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
6453 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6454 exec_control &= ~CPU_BASED_TPR_SHADOW;
6455 exec_control |= vmcs12->cpu_based_vm_exec_control;
6456 /*
6457 * Merging of IO and MSR bitmaps not currently supported.
6458 * Rather, exit every time.
6459 */
6460 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
6461 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
6462 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
6463
6464 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
6465
6466 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
6467 * bitwise-or of what L1 wants to trap for L2, and what we want to
6468 * trap. Note that CR0.TS also needs updating - we do this later.
6469 */
6470 update_exception_bitmap(vcpu);
6471 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
6472 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6473
6474 /* Note: IA32_MODE, LOAD_IA32_EFER are modified by vmx_set_efer below */
6475 vmcs_write32(VM_EXIT_CONTROLS,
6476 vmcs12->vm_exit_controls | vmcs_config.vmexit_ctrl);
6477 vmcs_write32(VM_ENTRY_CONTROLS, vmcs12->vm_entry_controls |
6478 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
6479
6480 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)
6481 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
6482 else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6483 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
6484
6485
6486 set_cr4_guest_host_mask(vmx);
6487
6488 vmcs_write64(TSC_OFFSET,
6489 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
6490
6491 if (enable_vpid) {
6492 /*
6493 * Trivially support vpid by letting L2s share their parent
6494 * L1's vpid. TODO: move to a more elaborate solution, giving
6495 * each L2 its own vpid and exposing the vpid feature to L1.
6496 */
6497 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6498 vmx_flush_tlb(vcpu);
6499 }
6500
6501 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
6502 vcpu->arch.efer = vmcs12->guest_ia32_efer;
6503 if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
6504 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6505 else
6506 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6507 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
6508 vmx_set_efer(vcpu, vcpu->arch.efer);
6509
6510 /*
6511 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
6512 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
6513 * The CR0_READ_SHADOW is what L2 should have expected to read given
6514 * the specifications by L1; It's not enough to take
6515 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
6516 * have more bits than L1 expected.
6517 */
6518 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
6519 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
6520
6521 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
6522 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
6523
6524 /* shadow page tables on either EPT or shadow page tables */
6525 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
6526 kvm_mmu_reset_context(vcpu);
6527
6528 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
6529 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
6530}
6531
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006532/*
6533 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
6534 * for running an L2 nested guest.
6535 */
6536static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
6537{
6538 struct vmcs12 *vmcs12;
6539 struct vcpu_vmx *vmx = to_vmx(vcpu);
6540 int cpu;
6541 struct loaded_vmcs *vmcs02;
6542
6543 if (!nested_vmx_check_permission(vcpu) ||
6544 !nested_vmx_check_vmcs12(vcpu))
6545 return 1;
6546
6547 skip_emulated_instruction(vcpu);
6548 vmcs12 = get_vmcs12(vcpu);
6549
Nadav Har'El7c177932011-05-25 23:12:04 +03006550 /*
6551 * The nested entry process starts with enforcing various prerequisites
6552 * on vmcs12 as required by the Intel SDM, and act appropriately when
6553 * they fail: As the SDM explains, some conditions should cause the
6554 * instruction to fail, while others will cause the instruction to seem
6555 * to succeed, but return an EXIT_REASON_INVALID_STATE.
6556 * To speed up the normal (success) code path, we should avoid checking
6557 * for misconfigurations which will anyway be caught by the processor
6558 * when using the merged vmcs02.
6559 */
6560 if (vmcs12->launch_state == launch) {
6561 nested_vmx_failValid(vcpu,
6562 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
6563 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
6564 return 1;
6565 }
6566
6567 if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) &&
6568 !IS_ALIGNED(vmcs12->msr_bitmap, PAGE_SIZE)) {
6569 /*TODO: Also verify bits beyond physical address width are 0*/
6570 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6571 return 1;
6572 }
6573
6574 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
6575 !IS_ALIGNED(vmcs12->apic_access_addr, PAGE_SIZE)) {
6576 /*TODO: Also verify bits beyond physical address width are 0*/
6577 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6578 return 1;
6579 }
6580
6581 if (vmcs12->vm_entry_msr_load_count > 0 ||
6582 vmcs12->vm_exit_msr_load_count > 0 ||
6583 vmcs12->vm_exit_msr_store_count > 0) {
6584 if (printk_ratelimit())
6585 printk(KERN_WARNING
6586 "%s: VMCS MSR_{LOAD,STORE} unsupported\n", __func__);
6587 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6588 return 1;
6589 }
6590
6591 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
6592 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high) ||
6593 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
6594 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) ||
6595 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
6596 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) ||
6597 !vmx_control_verify(vmcs12->vm_exit_controls,
6598 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high) ||
6599 !vmx_control_verify(vmcs12->vm_entry_controls,
6600 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high))
6601 {
6602 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6603 return 1;
6604 }
6605
6606 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6607 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6608 nested_vmx_failValid(vcpu,
6609 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
6610 return 1;
6611 }
6612
6613 if (((vmcs12->guest_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6614 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6615 nested_vmx_entry_failure(vcpu, vmcs12,
6616 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
6617 return 1;
6618 }
6619 if (vmcs12->vmcs_link_pointer != -1ull) {
6620 nested_vmx_entry_failure(vcpu, vmcs12,
6621 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
6622 return 1;
6623 }
6624
6625 /*
6626 * We're finally done with prerequisite checking, and can start with
6627 * the nested entry.
6628 */
6629
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006630 vmcs02 = nested_get_current_vmcs02(vmx);
6631 if (!vmcs02)
6632 return -ENOMEM;
6633
6634 enter_guest_mode(vcpu);
6635
6636 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
6637
6638 cpu = get_cpu();
6639 vmx->loaded_vmcs = vmcs02;
6640 vmx_vcpu_put(vcpu);
6641 vmx_vcpu_load(vcpu, cpu);
6642 vcpu->cpu = cpu;
6643 put_cpu();
6644
6645 vmcs12->launch_state = 1;
6646
6647 prepare_vmcs02(vcpu, vmcs12);
6648
6649 /*
6650 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
6651 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
6652 * returned as far as L1 is concerned. It will only return (and set
6653 * the success flag) when L2 exits (see nested_vmx_vmexit()).
6654 */
6655 return 1;
6656}
6657
Nadav Har'El4704d0b2011-05-25 23:11:34 +03006658/*
6659 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
6660 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
6661 * This function returns the new value we should put in vmcs12.guest_cr0.
6662 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
6663 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
6664 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
6665 * didn't trap the bit, because if L1 did, so would L0).
6666 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
6667 * been modified by L2, and L1 knows it. So just leave the old value of
6668 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
6669 * isn't relevant, because if L0 traps this bit it can set it to anything.
6670 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
6671 * changed these bits, and therefore they need to be updated, but L0
6672 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
6673 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
6674 */
6675static inline unsigned long
6676vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6677{
6678 return
6679 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
6680 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
6681 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
6682 vcpu->arch.cr0_guest_owned_bits));
6683}
6684
6685static inline unsigned long
6686vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6687{
6688 return
6689 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
6690 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
6691 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
6692 vcpu->arch.cr4_guest_owned_bits));
6693}
6694
6695/*
6696 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
6697 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
6698 * and this function updates it to reflect the changes to the guest state while
6699 * L2 was running (and perhaps made some exits which were handled directly by L0
6700 * without going back to L1), and to reflect the exit reason.
6701 * Note that we do not have to copy here all VMCS fields, just those that
6702 * could have changed by the L2 guest or the exit - i.e., the guest-state and
6703 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
6704 * which already writes to vmcs12 directly.
6705 */
6706void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6707{
6708 /* update guest state fields: */
6709 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
6710 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
6711
6712 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
6713 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6714 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
6715 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
6716
6717 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
6718 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
6719 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
6720 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
6721 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
6722 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
6723 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
6724 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
6725 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
6726 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
6727 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
6728 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
6729 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
6730 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
6731 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
6732 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
6733 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
6734 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
6735 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
6736 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
6737 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
6738 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
6739 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
6740 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
6741 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
6742 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
6743 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
6744 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
6745 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
6746 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
6747 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
6748 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
6749 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
6750 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
6751 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
6752 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
6753
6754 vmcs12->guest_activity_state = vmcs_read32(GUEST_ACTIVITY_STATE);
6755 vmcs12->guest_interruptibility_info =
6756 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
6757 vmcs12->guest_pending_dbg_exceptions =
6758 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
6759
6760 /* TODO: These cannot have changed unless we have MSR bitmaps and
6761 * the relevant bit asks not to trap the change */
6762 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
6763 if (vmcs12->vm_entry_controls & VM_EXIT_SAVE_IA32_PAT)
6764 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
6765 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
6766 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
6767 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
6768
6769 /* update exit information fields: */
6770
6771 vmcs12->vm_exit_reason = vmcs_read32(VM_EXIT_REASON);
6772 vmcs12->exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6773
6774 vmcs12->vm_exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6775 vmcs12->vm_exit_intr_error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
6776 vmcs12->idt_vectoring_info_field =
6777 vmcs_read32(IDT_VECTORING_INFO_FIELD);
6778 vmcs12->idt_vectoring_error_code =
6779 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6780 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6781 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
6782
6783 /* clear vm-entry fields which are to be cleared on exit */
6784 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
6785 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
6786}
6787
6788/*
6789 * A part of what we need to when the nested L2 guest exits and we want to
6790 * run its L1 parent, is to reset L1's guest state to the host state specified
6791 * in vmcs12.
6792 * This function is to be called not only on normal nested exit, but also on
6793 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
6794 * Failures During or After Loading Guest State").
6795 * This function should be called when the active VMCS is L1's (vmcs01).
6796 */
6797void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6798{
6799 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
6800 vcpu->arch.efer = vmcs12->host_ia32_efer;
6801 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
6802 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6803 else
6804 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6805 vmx_set_efer(vcpu, vcpu->arch.efer);
6806
6807 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
6808 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
6809 /*
6810 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
6811 * actually changed, because it depends on the current state of
6812 * fpu_active (which may have changed).
6813 * Note that vmx_set_cr0 refers to efer set above.
6814 */
6815 kvm_set_cr0(vcpu, vmcs12->host_cr0);
6816 /*
6817 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
6818 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
6819 * but we also need to update cr0_guest_host_mask and exception_bitmap.
6820 */
6821 update_exception_bitmap(vcpu);
6822 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
6823 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6824
6825 /*
6826 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
6827 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
6828 */
6829 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
6830 kvm_set_cr4(vcpu, vmcs12->host_cr4);
6831
6832 /* shadow page tables on either EPT or shadow page tables */
6833 kvm_set_cr3(vcpu, vmcs12->host_cr3);
6834 kvm_mmu_reset_context(vcpu);
6835
6836 if (enable_vpid) {
6837 /*
6838 * Trivially support vpid by letting L2s share their parent
6839 * L1's vpid. TODO: move to a more elaborate solution, giving
6840 * each L2 its own vpid and exposing the vpid feature to L1.
6841 */
6842 vmx_flush_tlb(vcpu);
6843 }
6844
6845
6846 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
6847 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
6848 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
6849 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
6850 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
6851 vmcs_writel(GUEST_TR_BASE, vmcs12->host_tr_base);
6852 vmcs_writel(GUEST_GS_BASE, vmcs12->host_gs_base);
6853 vmcs_writel(GUEST_FS_BASE, vmcs12->host_fs_base);
6854 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->host_es_selector);
6855 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->host_cs_selector);
6856 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->host_ss_selector);
6857 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->host_ds_selector);
6858 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->host_fs_selector);
6859 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->host_gs_selector);
6860 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->host_tr_selector);
6861
6862 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT)
6863 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
6864 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
6865 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
6866 vmcs12->host_ia32_perf_global_ctrl);
6867}
6868
6869/*
6870 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
6871 * and modify vmcs12 to make it see what it would expect to see there if
6872 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
6873 */
6874static void nested_vmx_vmexit(struct kvm_vcpu *vcpu)
6875{
6876 struct vcpu_vmx *vmx = to_vmx(vcpu);
6877 int cpu;
6878 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6879
6880 leave_guest_mode(vcpu);
6881 prepare_vmcs12(vcpu, vmcs12);
6882
6883 cpu = get_cpu();
6884 vmx->loaded_vmcs = &vmx->vmcs01;
6885 vmx_vcpu_put(vcpu);
6886 vmx_vcpu_load(vcpu, cpu);
6887 vcpu->cpu = cpu;
6888 put_cpu();
6889
6890 /* if no vmcs02 cache requested, remove the one we used */
6891 if (VMCS02_POOL_SIZE == 0)
6892 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
6893
6894 load_vmcs12_host_state(vcpu, vmcs12);
6895
6896 /* Update TSC_OFFSET if vmx_adjust_tsc_offset() was used while L2 ran */
6897 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
6898
6899 /* This is needed for same reason as it was needed in prepare_vmcs02 */
6900 vmx->host_rsp = 0;
6901
6902 /* Unpin physical memory we referred to in vmcs02 */
6903 if (vmx->nested.apic_access_page) {
6904 nested_release_page(vmx->nested.apic_access_page);
6905 vmx->nested.apic_access_page = 0;
6906 }
6907
6908 /*
6909 * Exiting from L2 to L1, we're now back to L1 which thinks it just
6910 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
6911 * success or failure flag accordingly.
6912 */
6913 if (unlikely(vmx->fail)) {
6914 vmx->fail = 0;
6915 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
6916 } else
6917 nested_vmx_succeed(vcpu);
6918}
6919
Nadav Har'El7c177932011-05-25 23:12:04 +03006920/*
6921 * L1's failure to enter L2 is a subset of a normal exit, as explained in
6922 * 23.7 "VM-entry failures during or after loading guest state" (this also
6923 * lists the acceptable exit-reason and exit-qualification parameters).
6924 * It should only be called before L2 actually succeeded to run, and when
6925 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
6926 */
6927static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
6928 struct vmcs12 *vmcs12,
6929 u32 reason, unsigned long qualification)
6930{
6931 load_vmcs12_host_state(vcpu, vmcs12);
6932 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
6933 vmcs12->exit_qualification = qualification;
6934 nested_vmx_succeed(vcpu);
6935}
6936
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006937static int vmx_check_intercept(struct kvm_vcpu *vcpu,
6938 struct x86_instruction_info *info,
6939 enum x86_intercept_stage stage)
6940{
6941 return X86EMUL_CONTINUE;
6942}
6943
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03006944static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006945 .cpu_has_kvm_support = cpu_has_kvm_support,
6946 .disabled_by_bios = vmx_disabled_by_bios,
6947 .hardware_setup = hardware_setup,
6948 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03006949 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006950 .hardware_enable = hardware_enable,
6951 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08006952 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006953
6954 .vcpu_create = vmx_create_vcpu,
6955 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03006956 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006957
Avi Kivity04d2cc72007-09-10 18:10:54 +03006958 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006959 .vcpu_load = vmx_vcpu_load,
6960 .vcpu_put = vmx_vcpu_put,
6961
6962 .set_guest_debug = set_guest_debug,
6963 .get_msr = vmx_get_msr,
6964 .set_msr = vmx_set_msr,
6965 .get_segment_base = vmx_get_segment_base,
6966 .get_segment = vmx_get_segment,
6967 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02006968 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006969 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02006970 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02006971 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03006972 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006973 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006974 .set_cr3 = vmx_set_cr3,
6975 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006976 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006977 .get_idt = vmx_get_idt,
6978 .set_idt = vmx_set_idt,
6979 .get_gdt = vmx_get_gdt,
6980 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03006981 .set_dr7 = vmx_set_dr7,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006982 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006983 .get_rflags = vmx_get_rflags,
6984 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02006985 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02006986 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006987
6988 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006989
Avi Kivity6aa8b732006-12-10 02:21:36 -08006990 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02006991 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006992 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04006993 .set_interrupt_shadow = vmx_set_interrupt_shadow,
6994 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02006995 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03006996 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006997 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02006998 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006999 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007000 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007001 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007002 .get_nmi_mask = vmx_get_nmi_mask,
7003 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007004 .enable_nmi_window = enable_nmi_window,
7005 .enable_irq_window = enable_irq_window,
7006 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007007
Izik Eiduscbc94022007-10-25 00:29:55 +02007008 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007009 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007010 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007011
Avi Kivity586f9602010-11-18 13:09:54 +02007012 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007013
Sheng Yang17cc3932010-01-05 19:02:27 +08007014 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007015
7016 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007017
7018 .rdtscp_supported = vmx_rdtscp_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007019
7020 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007021
7022 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007023
Joerg Roedel4051b182011-03-25 09:44:49 +01007024 .set_tsc_khz = vmx_set_tsc_khz,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007025 .write_tsc_offset = vmx_write_tsc_offset,
Zachary Amsdene48672f2010-08-19 22:07:23 -10007026 .adjust_tsc_offset = vmx_adjust_tsc_offset,
Joerg Roedel857e4092011-03-25 09:44:50 +01007027 .compute_tsc_offset = vmx_compute_tsc_offset,
Nadav Har'Eld5c17852011-08-02 15:54:20 +03007028 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007029
7030 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007031
7032 .check_intercept = vmx_check_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007033};
7034
7035static int __init vmx_init(void)
7036{
Avi Kivity26bb0982009-09-07 11:14:12 +03007037 int r, i;
7038
7039 rdmsrl_safe(MSR_EFER, &host_efer);
7040
7041 for (i = 0; i < NR_VMX_MSR; ++i)
7042 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03007043
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007044 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03007045 if (!vmx_io_bitmap_a)
7046 return -ENOMEM;
7047
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007048 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03007049 if (!vmx_io_bitmap_b) {
7050 r = -ENOMEM;
7051 goto out;
7052 }
7053
Avi Kivity58972972009-02-24 22:26:47 +02007054 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
7055 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08007056 r = -ENOMEM;
7057 goto out1;
7058 }
7059
Avi Kivity58972972009-02-24 22:26:47 +02007060 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
7061 if (!vmx_msr_bitmap_longmode) {
7062 r = -ENOMEM;
7063 goto out2;
7064 }
7065
He, Qingfdef3ad2007-04-30 09:45:24 +03007066 /*
7067 * Allow direct access to the PC debug port (it is often used for I/O
7068 * delays, but the vmexits simply slow things down).
7069 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007070 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
7071 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007072
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007073 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03007074
Avi Kivity58972972009-02-24 22:26:47 +02007075 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
7076 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08007077
Sheng Yang2384d2b2008-01-17 15:14:33 +08007078 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7079
Avi Kivity0ee75be2010-04-28 15:39:01 +03007080 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
7081 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03007082 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02007083 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08007084
Avi Kivity58972972009-02-24 22:26:47 +02007085 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
7086 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
7087 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
7088 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
7089 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
7090 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03007091
Avi Kivity089d0342009-03-23 18:26:32 +02007092 if (enable_ept) {
Sheng Yang534e38b2008-09-08 15:12:30 +08007093 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007094 VMX_EPT_EXECUTABLE_MASK);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08007095 ept_set_mmio_spte_mask();
Sheng Yang5fdbcb92008-07-16 09:25:40 +08007096 kvm_enable_tdp();
7097 } else
7098 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08007099
He, Qingfdef3ad2007-04-30 09:45:24 +03007100 return 0;
7101
Avi Kivity58972972009-02-24 22:26:47 +02007102out3:
7103 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08007104out2:
Avi Kivity58972972009-02-24 22:26:47 +02007105 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03007106out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007107 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03007108out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007109 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007110 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007111}
7112
7113static void __exit vmx_exit(void)
7114{
Avi Kivity58972972009-02-24 22:26:47 +02007115 free_page((unsigned long)vmx_msr_bitmap_legacy);
7116 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007117 free_page((unsigned long)vmx_io_bitmap_b);
7118 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007119
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007120 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007121}
7122
7123module_init(vmx_init)
7124module_exit(vmx_exit)