blob: 8f19d91ec3e79a2fa33882612a3f3af53f1c1fb9 [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>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020042#include <asm/perf_event.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080043
Marcelo Tosatti229456f2009-06-17 09:22:14 -030044#include "trace.h"
45
Avi Kivity4ecac3f2008-05-13 13:23:38 +030046#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040047#define __ex_clear(x, reg) \
48 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030049
Avi Kivity6aa8b732006-12-10 02:21:36 -080050MODULE_AUTHOR("Qumranet");
51MODULE_LICENSE("GPL");
52
Avi Kivity4462d212009-03-23 17:53:37 +020053static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020054module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080055
Avi Kivity4462d212009-03-23 17:53:37 +020056static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020057module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020058
Avi Kivity4462d212009-03-23 17:53:37 +020059static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020060module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080061
Nitin A Kamble3a624e22009-06-08 11:34:16 -070062static int __read_mostly enable_unrestricted_guest = 1;
63module_param_named(unrestricted_guest,
64 enable_unrestricted_guest, bool, S_IRUGO);
65
Avi Kivity4462d212009-03-23 17:53:37 +020066static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020067module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030068
Dongxiao Xub923e622010-05-11 18:29:45 +080069static int __read_mostly vmm_exclusive = 1;
70module_param(vmm_exclusive, bool, S_IRUGO);
71
Anthony Liguori443381a2010-12-06 10:53:38 -060072static int __read_mostly yield_on_hlt = 1;
73module_param(yield_on_hlt, bool, S_IRUGO);
74
Kevin Tian58fbbf22011-08-30 13:56:17 +030075static int __read_mostly fasteoi = 1;
76module_param(fasteoi, bool, S_IRUGO);
77
Nadav Har'El801d3422011-05-25 23:02:23 +030078/*
79 * If nested=1, nested virtualization is supported, i.e., guests may use
80 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
81 * use VMX instructions.
82 */
83static int __read_mostly nested = 0;
84module_param(nested, bool, S_IRUGO);
85
Avi Kivitycdc0e242009-12-06 17:21:14 +020086#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
87 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
88#define KVM_GUEST_CR0_MASK \
89 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
90#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020091 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020092#define KVM_VM_CR0_ALWAYS_ON \
93 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020094#define KVM_CR4_GUEST_OWNED_BITS \
95 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
96 | X86_CR4_OSXMMEXCPT)
97
Avi Kivitycdc0e242009-12-06 17:21:14 +020098#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
99#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
100
Avi Kivity78ac8b42010-04-08 18:19:35 +0300101#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
102
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800103/*
104 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
105 * ple_gap: upper bound on the amount of time between two successive
106 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500107 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800108 * ple_window: upper bound on the amount of time a guest is allowed to execute
109 * in a PAUSE loop. Tests indicate that most spinlocks are held for
110 * less than 2^12 cycles
111 * Time is measured based on a counter that runs at the same rate as the TSC,
112 * refer SDM volume 3b section 21.6.13 & 22.1.3.
113 */
Rik van Riel00c25bc2011-01-04 09:51:33 -0500114#define KVM_VMX_DEFAULT_PLE_GAP 128
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800115#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
116static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
117module_param(ple_gap, int, S_IRUGO);
118
119static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
120module_param(ple_window, int, S_IRUGO);
121
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200122#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300123#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300124
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400125struct vmcs {
126 u32 revision_id;
127 u32 abort;
128 char data[0];
129};
130
Nadav Har'Eld462b812011-05-24 15:26:10 +0300131/*
132 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
133 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
134 * loaded on this CPU (so we can clear them if the CPU goes down).
135 */
136struct loaded_vmcs {
137 struct vmcs *vmcs;
138 int cpu;
139 int launched;
140 struct list_head loaded_vmcss_on_cpu_link;
141};
142
Avi Kivity26bb0982009-09-07 11:14:12 +0300143struct shared_msr_entry {
144 unsigned index;
145 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200146 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300147};
148
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300149/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300150 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
151 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
152 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
153 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
154 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
155 * More than one of these structures may exist, if L1 runs multiple L2 guests.
156 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
157 * underlying hardware which will be used to run L2.
158 * This structure is packed to ensure that its layout is identical across
159 * machines (necessary for live migration).
160 * If there are changes in this struct, VMCS12_REVISION must be changed.
161 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300162typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300163struct __packed vmcs12 {
164 /* According to the Intel spec, a VMCS region must start with the
165 * following two fields. Then follow implementation-specific data.
166 */
167 u32 revision_id;
168 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300169
Nadav Har'El27d6c862011-05-25 23:06:59 +0300170 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
171 u32 padding[7]; /* room for future expansion */
172
Nadav Har'El22bd0352011-05-25 23:05:57 +0300173 u64 io_bitmap_a;
174 u64 io_bitmap_b;
175 u64 msr_bitmap;
176 u64 vm_exit_msr_store_addr;
177 u64 vm_exit_msr_load_addr;
178 u64 vm_entry_msr_load_addr;
179 u64 tsc_offset;
180 u64 virtual_apic_page_addr;
181 u64 apic_access_addr;
182 u64 ept_pointer;
183 u64 guest_physical_address;
184 u64 vmcs_link_pointer;
185 u64 guest_ia32_debugctl;
186 u64 guest_ia32_pat;
187 u64 guest_ia32_efer;
188 u64 guest_ia32_perf_global_ctrl;
189 u64 guest_pdptr0;
190 u64 guest_pdptr1;
191 u64 guest_pdptr2;
192 u64 guest_pdptr3;
193 u64 host_ia32_pat;
194 u64 host_ia32_efer;
195 u64 host_ia32_perf_global_ctrl;
196 u64 padding64[8]; /* room for future expansion */
197 /*
198 * To allow migration of L1 (complete with its L2 guests) between
199 * machines of different natural widths (32 or 64 bit), we cannot have
200 * unsigned long fields with no explict size. We use u64 (aliased
201 * natural_width) instead. Luckily, x86 is little-endian.
202 */
203 natural_width cr0_guest_host_mask;
204 natural_width cr4_guest_host_mask;
205 natural_width cr0_read_shadow;
206 natural_width cr4_read_shadow;
207 natural_width cr3_target_value0;
208 natural_width cr3_target_value1;
209 natural_width cr3_target_value2;
210 natural_width cr3_target_value3;
211 natural_width exit_qualification;
212 natural_width guest_linear_address;
213 natural_width guest_cr0;
214 natural_width guest_cr3;
215 natural_width guest_cr4;
216 natural_width guest_es_base;
217 natural_width guest_cs_base;
218 natural_width guest_ss_base;
219 natural_width guest_ds_base;
220 natural_width guest_fs_base;
221 natural_width guest_gs_base;
222 natural_width guest_ldtr_base;
223 natural_width guest_tr_base;
224 natural_width guest_gdtr_base;
225 natural_width guest_idtr_base;
226 natural_width guest_dr7;
227 natural_width guest_rsp;
228 natural_width guest_rip;
229 natural_width guest_rflags;
230 natural_width guest_pending_dbg_exceptions;
231 natural_width guest_sysenter_esp;
232 natural_width guest_sysenter_eip;
233 natural_width host_cr0;
234 natural_width host_cr3;
235 natural_width host_cr4;
236 natural_width host_fs_base;
237 natural_width host_gs_base;
238 natural_width host_tr_base;
239 natural_width host_gdtr_base;
240 natural_width host_idtr_base;
241 natural_width host_ia32_sysenter_esp;
242 natural_width host_ia32_sysenter_eip;
243 natural_width host_rsp;
244 natural_width host_rip;
245 natural_width paddingl[8]; /* room for future expansion */
246 u32 pin_based_vm_exec_control;
247 u32 cpu_based_vm_exec_control;
248 u32 exception_bitmap;
249 u32 page_fault_error_code_mask;
250 u32 page_fault_error_code_match;
251 u32 cr3_target_count;
252 u32 vm_exit_controls;
253 u32 vm_exit_msr_store_count;
254 u32 vm_exit_msr_load_count;
255 u32 vm_entry_controls;
256 u32 vm_entry_msr_load_count;
257 u32 vm_entry_intr_info_field;
258 u32 vm_entry_exception_error_code;
259 u32 vm_entry_instruction_len;
260 u32 tpr_threshold;
261 u32 secondary_vm_exec_control;
262 u32 vm_instruction_error;
263 u32 vm_exit_reason;
264 u32 vm_exit_intr_info;
265 u32 vm_exit_intr_error_code;
266 u32 idt_vectoring_info_field;
267 u32 idt_vectoring_error_code;
268 u32 vm_exit_instruction_len;
269 u32 vmx_instruction_info;
270 u32 guest_es_limit;
271 u32 guest_cs_limit;
272 u32 guest_ss_limit;
273 u32 guest_ds_limit;
274 u32 guest_fs_limit;
275 u32 guest_gs_limit;
276 u32 guest_ldtr_limit;
277 u32 guest_tr_limit;
278 u32 guest_gdtr_limit;
279 u32 guest_idtr_limit;
280 u32 guest_es_ar_bytes;
281 u32 guest_cs_ar_bytes;
282 u32 guest_ss_ar_bytes;
283 u32 guest_ds_ar_bytes;
284 u32 guest_fs_ar_bytes;
285 u32 guest_gs_ar_bytes;
286 u32 guest_ldtr_ar_bytes;
287 u32 guest_tr_ar_bytes;
288 u32 guest_interruptibility_info;
289 u32 guest_activity_state;
290 u32 guest_sysenter_cs;
291 u32 host_ia32_sysenter_cs;
292 u32 padding32[8]; /* room for future expansion */
293 u16 virtual_processor_id;
294 u16 guest_es_selector;
295 u16 guest_cs_selector;
296 u16 guest_ss_selector;
297 u16 guest_ds_selector;
298 u16 guest_fs_selector;
299 u16 guest_gs_selector;
300 u16 guest_ldtr_selector;
301 u16 guest_tr_selector;
302 u16 host_es_selector;
303 u16 host_cs_selector;
304 u16 host_ss_selector;
305 u16 host_ds_selector;
306 u16 host_fs_selector;
307 u16 host_gs_selector;
308 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300309};
310
311/*
312 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
313 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
314 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
315 */
316#define VMCS12_REVISION 0x11e57ed0
317
318/*
319 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
320 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
321 * current implementation, 4K are reserved to avoid future complications.
322 */
323#define VMCS12_SIZE 0x1000
324
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300325/* Used to remember the last vmcs02 used for some recently used vmcs12s */
326struct vmcs02_list {
327 struct list_head list;
328 gpa_t vmptr;
329 struct loaded_vmcs vmcs02;
330};
331
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300332/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300333 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
334 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
335 */
336struct nested_vmx {
337 /* Has the level1 guest done vmxon? */
338 bool vmxon;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300339
340 /* The guest-physical address of the current VMCS L1 keeps for L2 */
341 gpa_t current_vmptr;
342 /* The host-usable pointer to the above */
343 struct page *current_vmcs12_page;
344 struct vmcs12 *current_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300345
346 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
347 struct list_head vmcs02_pool;
348 int vmcs02_num;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300349 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300350 /* L2 must run next, and mustn't decide to exit to L1. */
351 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300352 /*
353 * Guest pages referred to in vmcs02 with host-physical pointers, so
354 * we must keep them pinned while L2 runs.
355 */
356 struct page *apic_access_page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300357};
358
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400359struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000360 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300361 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300362 u8 fail;
Avi Kivity69c73022011-03-07 15:26:44 +0200363 u8 cpl;
Avi Kivity9d58b932011-03-07 16:52:07 +0200364 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300365 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200366 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200367 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300368 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400369 int nmsrs;
370 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400371#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300372 u64 msr_host_kernel_gs_base;
373 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400374#endif
Nadav Har'Eld462b812011-05-24 15:26:10 +0300375 /*
376 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
377 * non-nested (L1) guest, it always points to vmcs01. For a nested
378 * guest (L2), it points to a different VMCS.
379 */
380 struct loaded_vmcs vmcs01;
381 struct loaded_vmcs *loaded_vmcs;
382 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300383 struct msr_autoload {
384 unsigned nr;
385 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
386 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
387 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400388 struct {
389 int loaded;
390 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200391 int gs_ldt_reload_needed;
392 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400393 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200394 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300395 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300396 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300397 struct kvm_save_segment {
398 u16 selector;
399 unsigned long base;
400 u32 limit;
401 u32 ar;
402 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200403 } rmode;
Avi Kivity2fb92db2011-04-27 19:42:18 +0300404 struct {
405 u32 bitmask; /* 4 bits per segment (1 bit per field) */
406 struct kvm_save_segment seg[8];
407 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800408 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300409 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200410
411 /* Support for vnmi-less CPUs */
412 int soft_vnmi_blocked;
413 ktime_t entry_time;
414 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800415 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800416
417 bool rdtscp_enabled;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300418
419 /* Support for a guest hypervisor (nested VMX) */
420 struct nested_vmx nested;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400421};
422
Avi Kivity2fb92db2011-04-27 19:42:18 +0300423enum segment_cache_field {
424 SEG_FIELD_SEL = 0,
425 SEG_FIELD_BASE = 1,
426 SEG_FIELD_LIMIT = 2,
427 SEG_FIELD_AR = 3,
428
429 SEG_FIELD_NR = 4
430};
431
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400432static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
433{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000434 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400435}
436
Nadav Har'El22bd0352011-05-25 23:05:57 +0300437#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
438#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
439#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
440 [number##_HIGH] = VMCS12_OFFSET(name)+4
441
442static unsigned short vmcs_field_to_offset_table[] = {
443 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
444 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
445 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
446 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
447 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
448 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
449 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
450 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
451 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
452 FIELD(HOST_ES_SELECTOR, host_es_selector),
453 FIELD(HOST_CS_SELECTOR, host_cs_selector),
454 FIELD(HOST_SS_SELECTOR, host_ss_selector),
455 FIELD(HOST_DS_SELECTOR, host_ds_selector),
456 FIELD(HOST_FS_SELECTOR, host_fs_selector),
457 FIELD(HOST_GS_SELECTOR, host_gs_selector),
458 FIELD(HOST_TR_SELECTOR, host_tr_selector),
459 FIELD64(IO_BITMAP_A, io_bitmap_a),
460 FIELD64(IO_BITMAP_B, io_bitmap_b),
461 FIELD64(MSR_BITMAP, msr_bitmap),
462 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
463 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
464 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
465 FIELD64(TSC_OFFSET, tsc_offset),
466 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
467 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
468 FIELD64(EPT_POINTER, ept_pointer),
469 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
470 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
471 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
472 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
473 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
474 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
475 FIELD64(GUEST_PDPTR0, guest_pdptr0),
476 FIELD64(GUEST_PDPTR1, guest_pdptr1),
477 FIELD64(GUEST_PDPTR2, guest_pdptr2),
478 FIELD64(GUEST_PDPTR3, guest_pdptr3),
479 FIELD64(HOST_IA32_PAT, host_ia32_pat),
480 FIELD64(HOST_IA32_EFER, host_ia32_efer),
481 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
482 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
483 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
484 FIELD(EXCEPTION_BITMAP, exception_bitmap),
485 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
486 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
487 FIELD(CR3_TARGET_COUNT, cr3_target_count),
488 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
489 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
490 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
491 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
492 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
493 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
494 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
495 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
496 FIELD(TPR_THRESHOLD, tpr_threshold),
497 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
498 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
499 FIELD(VM_EXIT_REASON, vm_exit_reason),
500 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
501 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
502 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
503 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
504 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
505 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
506 FIELD(GUEST_ES_LIMIT, guest_es_limit),
507 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
508 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
509 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
510 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
511 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
512 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
513 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
514 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
515 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
516 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
517 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
518 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
519 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
520 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
521 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
522 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
523 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
524 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
525 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
526 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
527 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
528 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
529 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
530 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
531 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
532 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
533 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
534 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
535 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
536 FIELD(EXIT_QUALIFICATION, exit_qualification),
537 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
538 FIELD(GUEST_CR0, guest_cr0),
539 FIELD(GUEST_CR3, guest_cr3),
540 FIELD(GUEST_CR4, guest_cr4),
541 FIELD(GUEST_ES_BASE, guest_es_base),
542 FIELD(GUEST_CS_BASE, guest_cs_base),
543 FIELD(GUEST_SS_BASE, guest_ss_base),
544 FIELD(GUEST_DS_BASE, guest_ds_base),
545 FIELD(GUEST_FS_BASE, guest_fs_base),
546 FIELD(GUEST_GS_BASE, guest_gs_base),
547 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
548 FIELD(GUEST_TR_BASE, guest_tr_base),
549 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
550 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
551 FIELD(GUEST_DR7, guest_dr7),
552 FIELD(GUEST_RSP, guest_rsp),
553 FIELD(GUEST_RIP, guest_rip),
554 FIELD(GUEST_RFLAGS, guest_rflags),
555 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
556 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
557 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
558 FIELD(HOST_CR0, host_cr0),
559 FIELD(HOST_CR3, host_cr3),
560 FIELD(HOST_CR4, host_cr4),
561 FIELD(HOST_FS_BASE, host_fs_base),
562 FIELD(HOST_GS_BASE, host_gs_base),
563 FIELD(HOST_TR_BASE, host_tr_base),
564 FIELD(HOST_GDTR_BASE, host_gdtr_base),
565 FIELD(HOST_IDTR_BASE, host_idtr_base),
566 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
567 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
568 FIELD(HOST_RSP, host_rsp),
569 FIELD(HOST_RIP, host_rip),
570};
571static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table);
572
573static inline short vmcs_field_to_offset(unsigned long field)
574{
575 if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0)
576 return -1;
577 return vmcs_field_to_offset_table[field];
578}
579
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300580static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
581{
582 return to_vmx(vcpu)->nested.current_vmcs12;
583}
584
585static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
586{
587 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
588 if (is_error_page(page)) {
589 kvm_release_page_clean(page);
590 return NULL;
591 }
592 return page;
593}
594
595static void nested_release_page(struct page *page)
596{
597 kvm_release_page_dirty(page);
598}
599
600static void nested_release_page_clean(struct page *page)
601{
602 kvm_release_page_clean(page);
603}
604
Sheng Yang4e1096d2008-07-06 19:16:51 +0800605static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800606static void kvm_cpu_vmxon(u64 addr);
607static void kvm_cpu_vmxoff(void);
Avi Kivityaff48ba2010-12-05 18:56:11 +0200608static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200609static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Avi Kivity75880a02007-06-20 11:20:04 +0300610
Avi Kivity6aa8b732006-12-10 02:21:36 -0800611static DEFINE_PER_CPU(struct vmcs *, vmxarea);
612static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300613/*
614 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
615 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
616 */
617static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300618static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800619
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200620static unsigned long *vmx_io_bitmap_a;
621static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200622static unsigned long *vmx_msr_bitmap_legacy;
623static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300624
Avi Kivity110312c2010-12-21 12:54:20 +0200625static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200626static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200627
Sheng Yang2384d2b2008-01-17 15:14:33 +0800628static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
629static DEFINE_SPINLOCK(vmx_vpid_lock);
630
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300631static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800632 int size;
633 int order;
634 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300635 u32 pin_based_exec_ctrl;
636 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800637 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300638 u32 vmexit_ctrl;
639 u32 vmentry_ctrl;
640} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800641
Hannes Ederefff9e52008-11-28 17:02:06 +0100642static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800643 u32 ept;
644 u32 vpid;
645} vmx_capability;
646
Avi Kivity6aa8b732006-12-10 02:21:36 -0800647#define VMX_SEGMENT_FIELD(seg) \
648 [VCPU_SREG_##seg] = { \
649 .selector = GUEST_##seg##_SELECTOR, \
650 .base = GUEST_##seg##_BASE, \
651 .limit = GUEST_##seg##_LIMIT, \
652 .ar_bytes = GUEST_##seg##_AR_BYTES, \
653 }
654
655static struct kvm_vmx_segment_field {
656 unsigned selector;
657 unsigned base;
658 unsigned limit;
659 unsigned ar_bytes;
660} kvm_vmx_segment_fields[] = {
661 VMX_SEGMENT_FIELD(CS),
662 VMX_SEGMENT_FIELD(DS),
663 VMX_SEGMENT_FIELD(ES),
664 VMX_SEGMENT_FIELD(FS),
665 VMX_SEGMENT_FIELD(GS),
666 VMX_SEGMENT_FIELD(SS),
667 VMX_SEGMENT_FIELD(TR),
668 VMX_SEGMENT_FIELD(LDTR),
669};
670
Avi Kivity26bb0982009-09-07 11:14:12 +0300671static u64 host_efer;
672
Avi Kivity6de4f3a2009-05-31 22:58:47 +0300673static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
674
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300675/*
Brian Gerst8c065852010-07-17 09:03:26 -0400676 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300677 * away by decrementing the array size.
678 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800679static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800680#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300681 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400683 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200685#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686
Gui Jianfeng31299942010-03-15 17:29:09 +0800687static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800688{
689 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
690 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100691 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800692}
693
Gui Jianfeng31299942010-03-15 17:29:09 +0800694static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300695{
696 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
697 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100698 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300699}
700
Gui Jianfeng31299942010-03-15 17:29:09 +0800701static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500702{
703 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
704 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100705 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500706}
707
Gui Jianfeng31299942010-03-15 17:29:09 +0800708static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800709{
710 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
711 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
712}
713
Gui Jianfeng31299942010-03-15 17:29:09 +0800714static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800715{
716 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
717 INTR_INFO_VALID_MASK)) ==
718 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
719}
720
Gui Jianfeng31299942010-03-15 17:29:09 +0800721static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +0800722{
Sheng Yang04547152009-04-01 15:52:31 +0800723 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800724}
725
Gui Jianfeng31299942010-03-15 17:29:09 +0800726static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800727{
Sheng Yang04547152009-04-01 15:52:31 +0800728 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800729}
730
Gui Jianfeng31299942010-03-15 17:29:09 +0800731static inline bool vm_need_tpr_shadow(struct kvm *kvm)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800732{
Sheng Yang04547152009-04-01 15:52:31 +0800733 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800734}
735
Gui Jianfeng31299942010-03-15 17:29:09 +0800736static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800737{
Sheng Yang04547152009-04-01 15:52:31 +0800738 return vmcs_config.cpu_based_exec_ctrl &
739 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800740}
741
Avi Kivity774ead32007-12-26 13:57:04 +0200742static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800743{
Sheng Yang04547152009-04-01 15:52:31 +0800744 return vmcs_config.cpu_based_2nd_exec_ctrl &
745 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
746}
747
748static inline bool cpu_has_vmx_flexpriority(void)
749{
750 return cpu_has_vmx_tpr_shadow() &&
751 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800752}
753
Marcelo Tosattie7997942009-06-11 12:07:40 -0300754static inline bool cpu_has_vmx_ept_execute_only(void)
755{
Gui Jianfeng31299942010-03-15 17:29:09 +0800756 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300757}
758
759static inline bool cpu_has_vmx_eptp_uncacheable(void)
760{
Gui Jianfeng31299942010-03-15 17:29:09 +0800761 return vmx_capability.ept & VMX_EPTP_UC_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300762}
763
764static inline bool cpu_has_vmx_eptp_writeback(void)
765{
Gui Jianfeng31299942010-03-15 17:29:09 +0800766 return vmx_capability.ept & VMX_EPTP_WB_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300767}
768
769static inline bool cpu_has_vmx_ept_2m_page(void)
770{
Gui Jianfeng31299942010-03-15 17:29:09 +0800771 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300772}
773
Sheng Yang878403b2010-01-05 19:02:29 +0800774static inline bool cpu_has_vmx_ept_1g_page(void)
775{
Gui Jianfeng31299942010-03-15 17:29:09 +0800776 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +0800777}
778
Sheng Yang4bc9b982010-06-02 14:05:24 +0800779static inline bool cpu_has_vmx_ept_4levels(void)
780{
781 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
782}
783
Gui Jianfeng31299942010-03-15 17:29:09 +0800784static inline bool cpu_has_vmx_invept_individual_addr(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800785{
Gui Jianfeng31299942010-03-15 17:29:09 +0800786 return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800787}
788
Gui Jianfeng31299942010-03-15 17:29:09 +0800789static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800790{
Gui Jianfeng31299942010-03-15 17:29:09 +0800791 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800792}
793
Gui Jianfeng31299942010-03-15 17:29:09 +0800794static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800795{
Gui Jianfeng31299942010-03-15 17:29:09 +0800796 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800797}
798
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800799static inline bool cpu_has_vmx_invvpid_single(void)
800{
801 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
802}
803
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800804static inline bool cpu_has_vmx_invvpid_global(void)
805{
806 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
807}
808
Gui Jianfeng31299942010-03-15 17:29:09 +0800809static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800810{
Sheng Yang04547152009-04-01 15:52:31 +0800811 return vmcs_config.cpu_based_2nd_exec_ctrl &
812 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800813}
814
Gui Jianfeng31299942010-03-15 17:29:09 +0800815static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700816{
817 return vmcs_config.cpu_based_2nd_exec_ctrl &
818 SECONDARY_EXEC_UNRESTRICTED_GUEST;
819}
820
Gui Jianfeng31299942010-03-15 17:29:09 +0800821static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800822{
823 return vmcs_config.cpu_based_2nd_exec_ctrl &
824 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
825}
826
Gui Jianfeng31299942010-03-15 17:29:09 +0800827static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800828{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800829 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800830}
831
Gui Jianfeng31299942010-03-15 17:29:09 +0800832static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800833{
Sheng Yang04547152009-04-01 15:52:31 +0800834 return vmcs_config.cpu_based_2nd_exec_ctrl &
835 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800836}
837
Gui Jianfeng31299942010-03-15 17:29:09 +0800838static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800839{
840 return vmcs_config.cpu_based_2nd_exec_ctrl &
841 SECONDARY_EXEC_RDTSCP;
842}
843
Gui Jianfeng31299942010-03-15 17:29:09 +0800844static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +0800845{
846 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
847}
848
Sheng Yangf5f48ee2010-06-30 12:25:15 +0800849static inline bool cpu_has_vmx_wbinvd_exit(void)
850{
851 return vmcs_config.cpu_based_2nd_exec_ctrl &
852 SECONDARY_EXEC_WBINVD_EXITING;
853}
854
Sheng Yang04547152009-04-01 15:52:31 +0800855static inline bool report_flexpriority(void)
856{
857 return flexpriority_enabled;
858}
859
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300860static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
861{
862 return vmcs12->cpu_based_vm_exec_control & bit;
863}
864
865static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
866{
867 return (vmcs12->cpu_based_vm_exec_control &
868 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
869 (vmcs12->secondary_vm_exec_control & bit);
870}
871
Nadav Har'El644d7112011-05-25 23:12:35 +0300872static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12,
873 struct kvm_vcpu *vcpu)
874{
875 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
876}
877
878static inline bool is_exception(u32 intr_info)
879{
880 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
881 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
882}
883
884static void nested_vmx_vmexit(struct kvm_vcpu *vcpu);
Nadav Har'El7c177932011-05-25 23:12:04 +0300885static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
886 struct vmcs12 *vmcs12,
887 u32 reason, unsigned long qualification);
888
Rusty Russell8b9cf982007-07-30 16:31:43 +1000889static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800890{
891 int i;
892
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400893 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300894 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300895 return i;
896 return -1;
897}
898
Sheng Yang2384d2b2008-01-17 15:14:33 +0800899static inline void __invvpid(int ext, u16 vpid, gva_t gva)
900{
901 struct {
902 u64 vpid : 16;
903 u64 rsvd : 48;
904 u64 gva;
905 } operand = { vpid, 0, gva };
906
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300907 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800908 /* CF==1 or ZF==1 --> rc = -1 */
909 "; ja 1f ; ud2 ; 1:"
910 : : "a"(&operand), "c"(ext) : "cc", "memory");
911}
912
Sheng Yang14394422008-04-28 12:24:45 +0800913static inline void __invept(int ext, u64 eptp, gpa_t gpa)
914{
915 struct {
916 u64 eptp, gpa;
917 } operand = {eptp, gpa};
918
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300919 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800920 /* CF==1 or ZF==1 --> rc = -1 */
921 "; ja 1f ; ud2 ; 1:\n"
922 : : "a" (&operand), "c" (ext) : "cc", "memory");
923}
924
Avi Kivity26bb0982009-09-07 11:14:12 +0300925static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300926{
927 int i;
928
Rusty Russell8b9cf982007-07-30 16:31:43 +1000929 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300930 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400931 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000932 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800933}
934
Avi Kivity6aa8b732006-12-10 02:21:36 -0800935static void vmcs_clear(struct vmcs *vmcs)
936{
937 u64 phys_addr = __pa(vmcs);
938 u8 error;
939
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300940 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200941 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942 : "cc", "memory");
943 if (error)
944 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
945 vmcs, phys_addr);
946}
947
Nadav Har'Eld462b812011-05-24 15:26:10 +0300948static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
949{
950 vmcs_clear(loaded_vmcs->vmcs);
951 loaded_vmcs->cpu = -1;
952 loaded_vmcs->launched = 0;
953}
954
Dongxiao Xu7725b892010-05-11 18:29:38 +0800955static void vmcs_load(struct vmcs *vmcs)
956{
957 u64 phys_addr = __pa(vmcs);
958 u8 error;
959
960 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200961 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +0800962 : "cc", "memory");
963 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +0300964 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +0800965 vmcs, phys_addr);
966}
967
Nadav Har'Eld462b812011-05-24 15:26:10 +0300968static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300970 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800971 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972
Nadav Har'Eld462b812011-05-24 15:26:10 +0300973 if (loaded_vmcs->cpu != cpu)
974 return; /* vcpu migration can race with cpu offline */
975 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976 per_cpu(current_vmcs, cpu) = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300977 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
978 loaded_vmcs_init(loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979}
980
Nadav Har'Eld462b812011-05-24 15:26:10 +0300981static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800982{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300983 if (loaded_vmcs->cpu != -1)
984 smp_call_function_single(
985 loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800986}
987
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800988static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800989{
990 if (vmx->vpid == 0)
991 return;
992
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800993 if (cpu_has_vmx_invvpid_single())
994 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800995}
996
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800997static inline void vpid_sync_vcpu_global(void)
998{
999 if (cpu_has_vmx_invvpid_global())
1000 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1001}
1002
1003static inline void vpid_sync_context(struct vcpu_vmx *vmx)
1004{
1005 if (cpu_has_vmx_invvpid_single())
Gui Jianfeng1760dd42010-06-07 10:33:27 +08001006 vpid_sync_vcpu_single(vmx);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001007 else
1008 vpid_sync_vcpu_global();
1009}
1010
Sheng Yang14394422008-04-28 12:24:45 +08001011static inline void ept_sync_global(void)
1012{
1013 if (cpu_has_vmx_invept_global())
1014 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1015}
1016
1017static inline void ept_sync_context(u64 eptp)
1018{
Avi Kivity089d0342009-03-23 18:26:32 +02001019 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001020 if (cpu_has_vmx_invept_context())
1021 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1022 else
1023 ept_sync_global();
1024 }
1025}
1026
1027static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
1028{
Avi Kivity089d0342009-03-23 18:26:32 +02001029 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001030 if (cpu_has_vmx_invept_individual_addr())
1031 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
1032 eptp, gpa);
1033 else
1034 ept_sync_context(eptp);
1035 }
1036}
1037
Avi Kivity96304212011-05-15 10:13:13 -04001038static __always_inline unsigned long vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039{
Avi Kivity5e520e62011-05-15 10:13:12 -04001040 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001041
Avi Kivity5e520e62011-05-15 10:13:12 -04001042 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1043 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044 return value;
1045}
1046
Avi Kivity96304212011-05-15 10:13:13 -04001047static __always_inline u16 vmcs_read16(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 u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001053{
1054 return vmcs_readl(field);
1055}
1056
Avi Kivity96304212011-05-15 10:13:13 -04001057static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058{
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001059#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001060 return vmcs_readl(field);
1061#else
1062 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
1063#endif
1064}
1065
Avi Kivitye52de1b2007-01-05 16:36:56 -08001066static noinline void vmwrite_error(unsigned long field, unsigned long value)
1067{
1068 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1069 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1070 dump_stack();
1071}
1072
Avi Kivity6aa8b732006-12-10 02:21:36 -08001073static void vmcs_writel(unsigned long field, unsigned long value)
1074{
1075 u8 error;
1076
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001077 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001078 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001079 if (unlikely(error))
1080 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001081}
1082
1083static void vmcs_write16(unsigned long field, u16 value)
1084{
1085 vmcs_writel(field, value);
1086}
1087
1088static void vmcs_write32(unsigned long field, u32 value)
1089{
1090 vmcs_writel(field, value);
1091}
1092
1093static void vmcs_write64(unsigned long field, u64 value)
1094{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001096#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001097 asm volatile ("");
1098 vmcs_writel(field+1, value >> 32);
1099#endif
1100}
1101
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001102static void vmcs_clear_bits(unsigned long field, u32 mask)
1103{
1104 vmcs_writel(field, vmcs_readl(field) & ~mask);
1105}
1106
1107static void vmcs_set_bits(unsigned long field, u32 mask)
1108{
1109 vmcs_writel(field, vmcs_readl(field) | mask);
1110}
1111
Avi Kivity2fb92db2011-04-27 19:42:18 +03001112static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1113{
1114 vmx->segment_cache.bitmask = 0;
1115}
1116
1117static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1118 unsigned field)
1119{
1120 bool ret;
1121 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1122
1123 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1124 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1125 vmx->segment_cache.bitmask = 0;
1126 }
1127 ret = vmx->segment_cache.bitmask & mask;
1128 vmx->segment_cache.bitmask |= mask;
1129 return ret;
1130}
1131
1132static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1133{
1134 u16 *p = &vmx->segment_cache.seg[seg].selector;
1135
1136 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1137 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1138 return *p;
1139}
1140
1141static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1142{
1143 ulong *p = &vmx->segment_cache.seg[seg].base;
1144
1145 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1146 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1147 return *p;
1148}
1149
1150static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1151{
1152 u32 *p = &vmx->segment_cache.seg[seg].limit;
1153
1154 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1155 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1156 return *p;
1157}
1158
1159static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1160{
1161 u32 *p = &vmx->segment_cache.seg[seg].ar;
1162
1163 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1164 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1165 return *p;
1166}
1167
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001168static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1169{
1170 u32 eb;
1171
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001172 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
1173 (1u << NM_VECTOR) | (1u << DB_VECTOR);
1174 if ((vcpu->guest_debug &
1175 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1176 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1177 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001178 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001179 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001180 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001181 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001182 if (vcpu->fpu_active)
1183 eb &= ~(1u << NM_VECTOR);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001184
1185 /* When we are running a nested L2 guest and L1 specified for it a
1186 * certain exception bitmap, we must trap the same exceptions and pass
1187 * them to L1. When running L2, we will only handle the exceptions
1188 * specified above if L1 did not want them.
1189 */
1190 if (is_guest_mode(vcpu))
1191 eb |= get_vmcs12(vcpu)->exception_bitmap;
1192
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001193 vmcs_write32(EXCEPTION_BITMAP, eb);
1194}
1195
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001196static void clear_atomic_switch_msr_special(unsigned long entry,
1197 unsigned long exit)
1198{
1199 vmcs_clear_bits(VM_ENTRY_CONTROLS, entry);
1200 vmcs_clear_bits(VM_EXIT_CONTROLS, exit);
1201}
1202
Avi Kivity61d2ef22010-04-28 16:40:38 +03001203static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1204{
1205 unsigned i;
1206 struct msr_autoload *m = &vmx->msr_autoload;
1207
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001208 switch (msr) {
1209 case MSR_EFER:
1210 if (cpu_has_load_ia32_efer) {
1211 clear_atomic_switch_msr_special(VM_ENTRY_LOAD_IA32_EFER,
1212 VM_EXIT_LOAD_IA32_EFER);
1213 return;
1214 }
1215 break;
1216 case MSR_CORE_PERF_GLOBAL_CTRL:
1217 if (cpu_has_load_perf_global_ctrl) {
1218 clear_atomic_switch_msr_special(
1219 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1220 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1221 return;
1222 }
1223 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001224 }
1225
Avi Kivity61d2ef22010-04-28 16:40:38 +03001226 for (i = 0; i < m->nr; ++i)
1227 if (m->guest[i].index == msr)
1228 break;
1229
1230 if (i == m->nr)
1231 return;
1232 --m->nr;
1233 m->guest[i] = m->guest[m->nr];
1234 m->host[i] = m->host[m->nr];
1235 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1236 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1237}
1238
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001239static void add_atomic_switch_msr_special(unsigned long entry,
1240 unsigned long exit, unsigned long guest_val_vmcs,
1241 unsigned long host_val_vmcs, u64 guest_val, u64 host_val)
1242{
1243 vmcs_write64(guest_val_vmcs, guest_val);
1244 vmcs_write64(host_val_vmcs, host_val);
1245 vmcs_set_bits(VM_ENTRY_CONTROLS, entry);
1246 vmcs_set_bits(VM_EXIT_CONTROLS, exit);
1247}
1248
Avi Kivity61d2ef22010-04-28 16:40:38 +03001249static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1250 u64 guest_val, u64 host_val)
1251{
1252 unsigned i;
1253 struct msr_autoload *m = &vmx->msr_autoload;
1254
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001255 switch (msr) {
1256 case MSR_EFER:
1257 if (cpu_has_load_ia32_efer) {
1258 add_atomic_switch_msr_special(VM_ENTRY_LOAD_IA32_EFER,
1259 VM_EXIT_LOAD_IA32_EFER,
1260 GUEST_IA32_EFER,
1261 HOST_IA32_EFER,
1262 guest_val, host_val);
1263 return;
1264 }
1265 break;
1266 case MSR_CORE_PERF_GLOBAL_CTRL:
1267 if (cpu_has_load_perf_global_ctrl) {
1268 add_atomic_switch_msr_special(
1269 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1270 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1271 GUEST_IA32_PERF_GLOBAL_CTRL,
1272 HOST_IA32_PERF_GLOBAL_CTRL,
1273 guest_val, host_val);
1274 return;
1275 }
1276 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001277 }
1278
Avi Kivity61d2ef22010-04-28 16:40:38 +03001279 for (i = 0; i < m->nr; ++i)
1280 if (m->guest[i].index == msr)
1281 break;
1282
Gleb Natapove7fc6f92011-10-05 14:01:24 +02001283 if (i == NR_AUTOLOAD_MSRS) {
1284 printk_once(KERN_WARNING"Not enough mst switch entries. "
1285 "Can't add msr %x\n", msr);
1286 return;
1287 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03001288 ++m->nr;
1289 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1290 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1291 }
1292
1293 m->guest[i].index = msr;
1294 m->guest[i].value = guest_val;
1295 m->host[i].index = msr;
1296 m->host[i].value = host_val;
1297}
1298
Avi Kivity33ed6322007-05-02 16:54:03 +03001299static void reload_tss(void)
1300{
Avi Kivity33ed6322007-05-02 16:54:03 +03001301 /*
1302 * VT restores TR but not its size. Useless.
1303 */
Avi Kivityd3591922010-07-26 18:32:39 +03001304 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001305 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001306
Avi Kivityd3591922010-07-26 18:32:39 +03001307 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001308 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1309 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001310}
1311
Avi Kivity92c0d902009-10-29 11:00:16 +02001312static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001313{
Roel Kluin3a34a882009-08-04 02:08:45 -07001314 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001315 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001316
Avi Kivityf6801df2010-01-21 15:31:50 +02001317 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001318
Avi Kivity51c6cf62007-08-29 03:48:05 +03001319 /*
1320 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
1321 * outside long mode
1322 */
1323 ignore_bits = EFER_NX | EFER_SCE;
1324#ifdef CONFIG_X86_64
1325 ignore_bits |= EFER_LMA | EFER_LME;
1326 /* SCE is meaningful only in long mode on Intel */
1327 if (guest_efer & EFER_LMA)
1328 ignore_bits &= ~(u64)EFER_SCE;
1329#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001330 guest_efer &= ~ignore_bits;
1331 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001332 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001333 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001334
1335 clear_atomic_switch_msr(vmx, MSR_EFER);
1336 /* On ept, can't emulate nx, and must switch nx atomically */
1337 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
1338 guest_efer = vmx->vcpu.arch.efer;
1339 if (!(guest_efer & EFER_LMA))
1340 guest_efer &= ~EFER_LME;
1341 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
1342 return false;
1343 }
1344
Avi Kivity26bb0982009-09-07 11:14:12 +03001345 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001346}
1347
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001348static unsigned long segment_base(u16 selector)
1349{
Avi Kivityd3591922010-07-26 18:32:39 +03001350 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001351 struct desc_struct *d;
1352 unsigned long table_base;
1353 unsigned long v;
1354
1355 if (!(selector & ~3))
1356 return 0;
1357
Avi Kivityd3591922010-07-26 18:32:39 +03001358 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001359
1360 if (selector & 4) { /* from ldt */
1361 u16 ldt_selector = kvm_read_ldt();
1362
1363 if (!(ldt_selector & ~3))
1364 return 0;
1365
1366 table_base = segment_base(ldt_selector);
1367 }
1368 d = (struct desc_struct *)(table_base + (selector & ~7));
1369 v = get_desc_base(d);
1370#ifdef CONFIG_X86_64
1371 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1372 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1373#endif
1374 return v;
1375}
1376
1377static inline unsigned long kvm_read_tr_base(void)
1378{
1379 u16 tr;
1380 asm("str %0" : "=g"(tr));
1381 return segment_base(tr);
1382}
1383
Avi Kivity04d2cc72007-09-10 18:10:54 +03001384static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001385{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001386 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001387 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001388
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001389 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001390 return;
1391
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001392 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001393 /*
1394 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1395 * allow segment selectors with cpl > 0 or ti == 1.
1396 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001397 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001398 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001399 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001400 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001401 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001402 vmx->host_state.fs_reload_needed = 0;
1403 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001404 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001405 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001406 }
Avi Kivity9581d442010-10-19 16:46:55 +02001407 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001408 if (!(vmx->host_state.gs_sel & 7))
1409 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001410 else {
1411 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001412 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001413 }
1414
1415#ifdef CONFIG_X86_64
1416 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1417 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1418#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001419 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1420 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001421#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001422
1423#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001424 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1425 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001426 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001427#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03001428 for (i = 0; i < vmx->save_nmsrs; ++i)
1429 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001430 vmx->guest_msrs[i].data,
1431 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001432}
1433
Avi Kivitya9b21b62008-06-24 11:48:49 +03001434static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001435{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001436 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001437 return;
1438
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001439 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001440 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001441#ifdef CONFIG_X86_64
1442 if (is_long_mode(&vmx->vcpu))
1443 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1444#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001445 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001446 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001447#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02001448 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001449#else
1450 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001451#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001452 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02001453 if (vmx->host_state.fs_reload_needed)
1454 loadsegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001455 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001456#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001457 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001458#endif
Avi Kivity1c11e712010-05-03 16:05:44 +03001459 if (current_thread_info()->status & TS_USEDFPU)
1460 clts();
Avi Kivity3444d7d2010-07-26 18:32:38 +03001461 load_gdt(&__get_cpu_var(host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03001462}
1463
Avi Kivitya9b21b62008-06-24 11:48:49 +03001464static void vmx_load_host_state(struct vcpu_vmx *vmx)
1465{
1466 preempt_disable();
1467 __vmx_load_host_state(vmx);
1468 preempt_enable();
1469}
1470
Avi Kivity6aa8b732006-12-10 02:21:36 -08001471/*
1472 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1473 * vcpu mutex is already taken.
1474 */
Avi Kivity15ad7142007-07-11 18:17:21 +03001475static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001477 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001478 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001480 if (!vmm_exclusive)
1481 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001482 else if (vmx->loaded_vmcs->cpu != cpu)
1483 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001484
Nadav Har'Eld462b812011-05-24 15:26:10 +03001485 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1486 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1487 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001488 }
1489
Nadav Har'Eld462b812011-05-24 15:26:10 +03001490 if (vmx->loaded_vmcs->cpu != cpu) {
Avi Kivityd3591922010-07-26 18:32:39 +03001491 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 unsigned long sysenter_esp;
1493
Avi Kivitya8eeb042010-05-10 12:34:53 +03001494 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001495 local_irq_disable();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001496 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1497 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001498 local_irq_enable();
1499
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 /*
1501 * Linux uses per-cpu TSS and GDT, so set these when switching
1502 * processors.
1503 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001504 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03001505 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001506
1507 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1508 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Nadav Har'Eld462b812011-05-24 15:26:10 +03001509 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001510 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511}
1512
1513static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1514{
Avi Kivitya9b21b62008-06-24 11:48:49 +03001515 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001516 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001517 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1518 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001519 kvm_cpu_vmxoff();
1520 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001521}
1522
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001523static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1524{
Avi Kivity81231c62010-01-24 16:26:40 +02001525 ulong cr0;
1526
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001527 if (vcpu->fpu_active)
1528 return;
1529 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02001530 cr0 = vmcs_readl(GUEST_CR0);
1531 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1532 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1533 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001534 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001535 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001536 if (is_guest_mode(vcpu))
1537 vcpu->arch.cr0_guest_owned_bits &=
1538 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
Avi Kivityedcafe32009-12-30 18:07:40 +02001539 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001540}
1541
Avi Kivityedcafe32009-12-30 18:07:40 +02001542static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1543
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001544/*
1545 * Return the cr0 value that a nested guest would read. This is a combination
1546 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
1547 * its hypervisor (cr0_read_shadow).
1548 */
1549static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
1550{
1551 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
1552 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
1553}
1554static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
1555{
1556 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
1557 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
1558}
1559
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001560static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1561{
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001562 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
1563 * set this *before* calling this function.
1564 */
Avi Kivityedcafe32009-12-30 18:07:40 +02001565 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02001566 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001567 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001568 vcpu->arch.cr0_guest_owned_bits = 0;
1569 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001570 if (is_guest_mode(vcpu)) {
1571 /*
1572 * L1's specified read shadow might not contain the TS bit,
1573 * so now that we turned on shadowing of this bit, we need to
1574 * set this bit of the shadow. Like in nested_vmx_run we need
1575 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
1576 * up-to-date here because we just decached cr0.TS (and we'll
1577 * only update vmcs12->guest_cr0 on nested exit).
1578 */
1579 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1580 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
1581 (vcpu->arch.cr0 & X86_CR0_TS);
1582 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
1583 } else
1584 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001585}
1586
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1588{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001589 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001590
Avi Kivity6de12732011-03-07 12:51:22 +02001591 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1592 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1593 rflags = vmcs_readl(GUEST_RFLAGS);
1594 if (to_vmx(vcpu)->rmode.vm86_active) {
1595 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1596 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1597 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1598 }
1599 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001600 }
Avi Kivity6de12732011-03-07 12:51:22 +02001601 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001602}
1603
1604static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1605{
Avi Kivity6de12732011-03-07 12:51:22 +02001606 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity69c73022011-03-07 15:26:44 +02001607 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6de12732011-03-07 12:51:22 +02001608 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001609 if (to_vmx(vcpu)->rmode.vm86_active) {
1610 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001611 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001612 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001613 vmcs_writel(GUEST_RFLAGS, rflags);
1614}
1615
Glauber Costa2809f5d2009-05-12 16:21:05 -04001616static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1617{
1618 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1619 int ret = 0;
1620
1621 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001622 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001623 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001624 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001625
1626 return ret & mask;
1627}
1628
1629static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1630{
1631 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1632 u32 interruptibility = interruptibility_old;
1633
1634 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1635
Jan Kiszka48005f62010-02-19 19:38:07 +01001636 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001637 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001638 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001639 interruptibility |= GUEST_INTR_STATE_STI;
1640
1641 if ((interruptibility != interruptibility_old))
1642 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1643}
1644
Avi Kivity6aa8b732006-12-10 02:21:36 -08001645static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1646{
1647 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001648
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001649 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001650 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001651 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001652
Glauber Costa2809f5d2009-05-12 16:21:05 -04001653 /* skipping an emulated instruction also counts */
1654 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001655}
1656
Anthony Liguori443381a2010-12-06 10:53:38 -06001657static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1658{
1659 /* Ensure that we clear the HLT state in the VMCS. We don't need to
1660 * explicitly skip the instruction because if the HLT state is set, then
1661 * the instruction is already executing and RIP has already been
1662 * advanced. */
1663 if (!yield_on_hlt &&
1664 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1665 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1666}
1667
Nadav Har'El0b6ac342011-05-25 23:13:36 +03001668/*
1669 * KVM wants to inject page-faults which it got to the guest. This function
1670 * checks whether in a nested guest, we need to inject them to L1 or L2.
1671 * This function assumes it is called with the exit reason in vmcs02 being
1672 * a #PF exception (this is the only case in which KVM injects a #PF when L2
1673 * is running).
1674 */
1675static int nested_pf_handled(struct kvm_vcpu *vcpu)
1676{
1677 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1678
1679 /* TODO: also check PFEC_MATCH/MASK, not just EB.PF. */
1680 if (!(vmcs12->exception_bitmap & PF_VECTOR))
1681 return 0;
1682
1683 nested_vmx_vmexit(vcpu);
1684 return 1;
1685}
1686
Avi Kivity298101d2007-11-25 13:41:11 +02001687static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02001688 bool has_error_code, u32 error_code,
1689 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02001690{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001691 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001692 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001693
Nadav Har'El0b6ac342011-05-25 23:13:36 +03001694 if (nr == PF_VECTOR && is_guest_mode(vcpu) &&
1695 nested_pf_handled(vcpu))
1696 return;
1697
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001698 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001699 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001700 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1701 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001702
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001703 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001704 int inc_eip = 0;
1705 if (kvm_exception_is_soft(nr))
1706 inc_eip = vcpu->arch.event_exit_inst_len;
1707 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001708 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001709 return;
1710 }
1711
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001712 if (kvm_exception_is_soft(nr)) {
1713 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1714 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001715 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1716 } else
1717 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1718
1719 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Anthony Liguori443381a2010-12-06 10:53:38 -06001720 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001721}
1722
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001723static bool vmx_rdtscp_supported(void)
1724{
1725 return cpu_has_vmx_rdtscp();
1726}
1727
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728/*
Eddie Donga75beee2007-05-17 18:55:15 +03001729 * Swap MSR entry in host/guest MSR entry array.
1730 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001731static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001732{
Avi Kivity26bb0982009-09-07 11:14:12 +03001733 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001734
1735 tmp = vmx->guest_msrs[to];
1736 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1737 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001738}
1739
1740/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001741 * Set up the vmcs to automatically save and restore system
1742 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1743 * mode, as fiddling with msrs is very expensive.
1744 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001745static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001746{
Avi Kivity26bb0982009-09-07 11:14:12 +03001747 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +02001748 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +03001749
Eddie Donga75beee2007-05-17 18:55:15 +03001750 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001751#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001752 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10001753 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03001754 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001755 move_msr_up(vmx, index, save_nmsrs++);
1756 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001757 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001758 move_msr_up(vmx, index, save_nmsrs++);
1759 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001760 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001761 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001762 index = __find_msr_index(vmx, MSR_TSC_AUX);
1763 if (index >= 0 && vmx->rdtscp_enabled)
1764 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03001765 /*
Brian Gerst8c065852010-07-17 09:03:26 -04001766 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03001767 * if efer.sce is enabled.
1768 */
Brian Gerst8c065852010-07-17 09:03:26 -04001769 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02001770 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10001771 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001772 }
Eddie Donga75beee2007-05-17 18:55:15 +03001773#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001774 index = __find_msr_index(vmx, MSR_EFER);
1775 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001776 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001777
Avi Kivity26bb0982009-09-07 11:14:12 +03001778 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02001779
1780 if (cpu_has_vmx_msr_bitmap()) {
1781 if (is_long_mode(&vmx->vcpu))
1782 msr_bitmap = vmx_msr_bitmap_longmode;
1783 else
1784 msr_bitmap = vmx_msr_bitmap_legacy;
1785
1786 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
1787 }
Avi Kivitye38aea32007-04-19 13:22:48 +03001788}
1789
1790/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001791 * reads and returns guest's timestamp counter "register"
1792 * guest_tsc = host_tsc + tsc_offset -- 21.3
1793 */
1794static u64 guest_read_tsc(void)
1795{
1796 u64 host_tsc, tsc_offset;
1797
1798 rdtscll(host_tsc);
1799 tsc_offset = vmcs_read64(TSC_OFFSET);
1800 return host_tsc + tsc_offset;
1801}
1802
1803/*
Nadav Har'Eld5c17852011-08-02 15:54:20 +03001804 * Like guest_read_tsc, but always returns L1's notion of the timestamp
1805 * counter, even if a nested guest (L2) is currently running.
1806 */
1807u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu)
1808{
1809 u64 host_tsc, tsc_offset;
1810
1811 rdtscll(host_tsc);
1812 tsc_offset = is_guest_mode(vcpu) ?
1813 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
1814 vmcs_read64(TSC_OFFSET);
1815 return host_tsc + tsc_offset;
1816}
1817
1818/*
Joerg Roedel4051b182011-03-25 09:44:49 +01001819 * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ
1820 * ioctl. In this case the call-back should update internal vmx state to make
1821 * the changes effective.
1822 */
1823static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
1824{
1825 /* Nothing to do here */
1826}
1827
1828/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10001829 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08001830 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10001831static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001832{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03001833 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03001834 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03001835 * We're here if L1 chose not to trap WRMSR to TSC. According
1836 * to the spec, this should set L1's TSC; The offset that L1
1837 * set for L2 remains unchanged, and still needs to be added
1838 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03001839 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03001840 struct vmcs12 *vmcs12;
1841 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
1842 /* recalculate vmcs02.TSC_OFFSET: */
1843 vmcs12 = get_vmcs12(vcpu);
1844 vmcs_write64(TSC_OFFSET, offset +
1845 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
1846 vmcs12->tsc_offset : 0));
1847 } else {
1848 vmcs_write64(TSC_OFFSET, offset);
1849 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850}
1851
Zachary Amsdene48672f2010-08-19 22:07:23 -10001852static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
1853{
1854 u64 offset = vmcs_read64(TSC_OFFSET);
1855 vmcs_write64(TSC_OFFSET, offset + adjustment);
Nadav Har'El79918252011-05-25 23:15:39 +03001856 if (is_guest_mode(vcpu)) {
1857 /* Even when running L2, the adjustment needs to apply to L1 */
1858 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
1859 }
Zachary Amsdene48672f2010-08-19 22:07:23 -10001860}
1861
Joerg Roedel857e4092011-03-25 09:44:50 +01001862static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1863{
1864 return target_tsc - native_read_tsc();
1865}
1866
Nadav Har'El801d3422011-05-25 23:02:23 +03001867static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
1868{
1869 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
1870 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
1871}
1872
1873/*
1874 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1875 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1876 * all guests if the "nested" module option is off, and can also be disabled
1877 * for a single guest by disabling its VMX cpuid bit.
1878 */
1879static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
1880{
1881 return nested && guest_cpuid_has_vmx(vcpu);
1882}
1883
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001885 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
1886 * returned for the various VMX controls MSRs when nested VMX is enabled.
1887 * The same values should also be used to verify that vmcs12 control fields are
1888 * valid during nested entry from L1 to L2.
1889 * Each of these control msrs has a low and high 32-bit half: A low bit is on
1890 * if the corresponding bit in the (32-bit) control field *must* be on, and a
1891 * bit in the high half is on if the corresponding bit in the control field
1892 * may be on. See also vmx_control_verify().
1893 * TODO: allow these variables to be modified (downgraded) by module options
1894 * or other means.
1895 */
1896static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
1897static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
1898static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
1899static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
1900static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
1901static __init void nested_vmx_setup_ctls_msrs(void)
1902{
1903 /*
1904 * Note that as a general rule, the high half of the MSRs (bits in
1905 * the control fields which may be 1) should be initialized by the
1906 * intersection of the underlying hardware's MSR (i.e., features which
1907 * can be supported) and the list of features we want to expose -
1908 * because they are known to be properly supported in our code.
1909 * Also, usually, the low half of the MSRs (bits which must be 1) can
1910 * be set to 0, meaning that L1 may turn off any of these bits. The
1911 * reason is that if one of these bits is necessary, it will appear
1912 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
1913 * fields of vmcs01 and vmcs02, will turn these bits off - and
1914 * nested_vmx_exit_handled() will not pass related exits to L1.
1915 * These rules have exceptions below.
1916 */
1917
1918 /* pin-based controls */
1919 /*
1920 * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is
1921 * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR.
1922 */
1923 nested_vmx_pinbased_ctls_low = 0x16 ;
1924 nested_vmx_pinbased_ctls_high = 0x16 |
1925 PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
1926 PIN_BASED_VIRTUAL_NMIS;
1927
1928 /* exit controls */
1929 nested_vmx_exit_ctls_low = 0;
Nadav Har'Elb6f12502011-05-25 23:13:06 +03001930 /* Note that guest use of VM_EXIT_ACK_INTR_ON_EXIT is not supported. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001931#ifdef CONFIG_X86_64
1932 nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE;
1933#else
1934 nested_vmx_exit_ctls_high = 0;
1935#endif
1936
1937 /* entry controls */
1938 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
1939 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
1940 nested_vmx_entry_ctls_low = 0;
1941 nested_vmx_entry_ctls_high &=
1942 VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE;
1943
1944 /* cpu-based controls */
1945 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
1946 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
1947 nested_vmx_procbased_ctls_low = 0;
1948 nested_vmx_procbased_ctls_high &=
1949 CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING |
1950 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
1951 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
1952 CPU_BASED_CR3_STORE_EXITING |
1953#ifdef CONFIG_X86_64
1954 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
1955#endif
1956 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
1957 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
1958 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1959 /*
1960 * We can allow some features even when not supported by the
1961 * hardware. For example, L1 can specify an MSR bitmap - and we
1962 * can use it to avoid exits to L1 - even when L0 runs L2
1963 * without MSR bitmaps.
1964 */
1965 nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS;
1966
1967 /* secondary cpu-based controls */
1968 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
1969 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
1970 nested_vmx_secondary_ctls_low = 0;
1971 nested_vmx_secondary_ctls_high &=
1972 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1973}
1974
1975static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
1976{
1977 /*
1978 * Bits 0 in high must be 0, and bits 1 in low must be 1.
1979 */
1980 return ((control & high) | low) == control;
1981}
1982
1983static inline u64 vmx_control_msr(u32 low, u32 high)
1984{
1985 return low | ((u64)high << 32);
1986}
1987
1988/*
1989 * If we allow our guest to use VMX instructions (i.e., nested VMX), we should
1990 * also let it use VMX-specific MSRs.
1991 * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a
1992 * VMX-specific MSR, or 0 when we haven't (and the caller should handle it
1993 * like all other MSRs).
1994 */
1995static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1996{
1997 if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC &&
1998 msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) {
1999 /*
2000 * According to the spec, processors which do not support VMX
2001 * should throw a #GP(0) when VMX capability MSRs are read.
2002 */
2003 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
2004 return 1;
2005 }
2006
2007 switch (msr_index) {
2008 case MSR_IA32_FEATURE_CONTROL:
2009 *pdata = 0;
2010 break;
2011 case MSR_IA32_VMX_BASIC:
2012 /*
2013 * This MSR reports some information about VMX support. We
2014 * should return information about the VMX we emulate for the
2015 * guest, and the VMCS structure we give it - not about the
2016 * VMX support of the underlying hardware.
2017 */
2018 *pdata = VMCS12_REVISION |
2019 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2020 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2021 break;
2022 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2023 case MSR_IA32_VMX_PINBASED_CTLS:
2024 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
2025 nested_vmx_pinbased_ctls_high);
2026 break;
2027 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2028 case MSR_IA32_VMX_PROCBASED_CTLS:
2029 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
2030 nested_vmx_procbased_ctls_high);
2031 break;
2032 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2033 case MSR_IA32_VMX_EXIT_CTLS:
2034 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
2035 nested_vmx_exit_ctls_high);
2036 break;
2037 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2038 case MSR_IA32_VMX_ENTRY_CTLS:
2039 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
2040 nested_vmx_entry_ctls_high);
2041 break;
2042 case MSR_IA32_VMX_MISC:
2043 *pdata = 0;
2044 break;
2045 /*
2046 * These MSRs specify bits which the guest must keep fixed (on or off)
2047 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2048 * We picked the standard core2 setting.
2049 */
2050#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2051#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2052 case MSR_IA32_VMX_CR0_FIXED0:
2053 *pdata = VMXON_CR0_ALWAYSON;
2054 break;
2055 case MSR_IA32_VMX_CR0_FIXED1:
2056 *pdata = -1ULL;
2057 break;
2058 case MSR_IA32_VMX_CR4_FIXED0:
2059 *pdata = VMXON_CR4_ALWAYSON;
2060 break;
2061 case MSR_IA32_VMX_CR4_FIXED1:
2062 *pdata = -1ULL;
2063 break;
2064 case MSR_IA32_VMX_VMCS_ENUM:
2065 *pdata = 0x1f;
2066 break;
2067 case MSR_IA32_VMX_PROCBASED_CTLS2:
2068 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
2069 nested_vmx_secondary_ctls_high);
2070 break;
2071 case MSR_IA32_VMX_EPT_VPID_CAP:
2072 /* Currently, no nested ept or nested vpid */
2073 *pdata = 0;
2074 break;
2075 default:
2076 return 0;
2077 }
2078
2079 return 1;
2080}
2081
2082static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
2083{
2084 if (!nested_vmx_allowed(vcpu))
2085 return 0;
2086
2087 if (msr_index == MSR_IA32_FEATURE_CONTROL)
2088 /* TODO: the right thing. */
2089 return 1;
2090 /*
2091 * No need to treat VMX capability MSRs specially: If we don't handle
2092 * them, handle_wrmsr will #GP(0), which is correct (they are readonly)
2093 */
2094 return 0;
2095}
2096
2097/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002098 * Reads an msr value (of 'msr_index') into 'pdata'.
2099 * Returns 0 on success, non-0 otherwise.
2100 * Assumes vcpu_load() was already called.
2101 */
2102static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2103{
2104 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03002105 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002106
2107 if (!pdata) {
2108 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
2109 return -EINVAL;
2110 }
2111
2112 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002113#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114 case MSR_FS_BASE:
2115 data = vmcs_readl(GUEST_FS_BASE);
2116 break;
2117 case MSR_GS_BASE:
2118 data = vmcs_readl(GUEST_GS_BASE);
2119 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002120 case MSR_KERNEL_GS_BASE:
2121 vmx_load_host_state(to_vmx(vcpu));
2122 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
2123 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03002124#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08002125 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08002126 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302127 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08002128 data = guest_read_tsc();
2129 break;
2130 case MSR_IA32_SYSENTER_CS:
2131 data = vmcs_read32(GUEST_SYSENTER_CS);
2132 break;
2133 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002134 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002135 break;
2136 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002137 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002138 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002139 case MSR_TSC_AUX:
2140 if (!to_vmx(vcpu)->rdtscp_enabled)
2141 return 1;
2142 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002143 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002144 if (vmx_get_vmx_msr(vcpu, msr_index, pdata))
2145 return 0;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002146 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002147 if (msr) {
2148 data = msr->data;
2149 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002150 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08002151 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002152 }
2153
2154 *pdata = data;
2155 return 0;
2156}
2157
2158/*
2159 * Writes msr value into into the appropriate "register".
2160 * Returns 0 on success, non-0 otherwise.
2161 * Assumes vcpu_load() was already called.
2162 */
2163static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
2164{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002165 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002166 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002167 int ret = 0;
2168
Avi Kivity6aa8b732006-12-10 02:21:36 -08002169 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002170 case MSR_EFER:
Eddie Dong2cc51562007-05-21 07:28:09 +03002171 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03002172 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002173#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002174 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002175 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002176 vmcs_writel(GUEST_FS_BASE, data);
2177 break;
2178 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002179 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180 vmcs_writel(GUEST_GS_BASE, data);
2181 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002182 case MSR_KERNEL_GS_BASE:
2183 vmx_load_host_state(vmx);
2184 vmx->msr_guest_kernel_gs_base = data;
2185 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002186#endif
2187 case MSR_IA32_SYSENTER_CS:
2188 vmcs_write32(GUEST_SYSENTER_CS, data);
2189 break;
2190 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002191 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002192 break;
2193 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002194 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002195 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302196 case MSR_IA32_TSC:
Zachary Amsden99e3e302010-08-19 22:07:17 -10002197 kvm_write_tsc(vcpu, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002198 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002199 case MSR_IA32_CR_PAT:
2200 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2201 vmcs_write64(GUEST_IA32_PAT, data);
2202 vcpu->arch.pat = data;
2203 break;
2204 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002205 ret = kvm_set_msr_common(vcpu, msr_index, data);
2206 break;
2207 case MSR_TSC_AUX:
2208 if (!vmx->rdtscp_enabled)
2209 return 1;
2210 /* Check reserved bit, higher 32 bits should be zero */
2211 if ((data >> 32) != 0)
2212 return 1;
2213 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002215 if (vmx_set_vmx_msr(vcpu, msr_index, data))
2216 break;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002217 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002218 if (msr) {
2219 msr->data = data;
2220 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221 }
Eddie Dong2cc51562007-05-21 07:28:09 +03002222 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002223 }
2224
Eddie Dong2cc51562007-05-21 07:28:09 +03002225 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002226}
2227
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002228static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002229{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002230 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2231 switch (reg) {
2232 case VCPU_REGS_RSP:
2233 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2234 break;
2235 case VCPU_REGS_RIP:
2236 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2237 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002238 case VCPU_EXREG_PDPTR:
2239 if (enable_ept)
2240 ept_save_pdptrs(vcpu);
2241 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002242 default:
2243 break;
2244 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002245}
2246
Jan Kiszka355be0b2009-10-03 00:31:21 +02002247static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002248{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01002249 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
2250 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
2251 else
2252 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2253
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002254 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255}
2256
2257static __init int cpu_has_kvm_support(void)
2258{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002259 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260}
2261
2262static __init int vmx_disabled_by_bios(void)
2263{
2264 u64 msr;
2265
2266 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04002267 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08002268 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04002269 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2270 && tboot_enabled())
2271 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08002272 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04002273 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08002274 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08002275 && !tboot_enabled()) {
2276 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08002277 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04002278 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08002279 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08002280 /* launched w/o TXT and VMX disabled */
2281 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2282 && !tboot_enabled())
2283 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04002284 }
2285
2286 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002287}
2288
Dongxiao Xu7725b892010-05-11 18:29:38 +08002289static void kvm_cpu_vmxon(u64 addr)
2290{
2291 asm volatile (ASM_VMX_VMXON_RAX
2292 : : "a"(&addr), "m"(addr)
2293 : "memory", "cc");
2294}
2295
Alexander Graf10474ae2009-09-15 11:37:46 +02002296static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002297{
2298 int cpu = raw_smp_processor_id();
2299 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04002300 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002301
Alexander Graf10474ae2009-09-15 11:37:46 +02002302 if (read_cr4() & X86_CR4_VMXE)
2303 return -EBUSY;
2304
Nadav Har'Eld462b812011-05-24 15:26:10 +03002305 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002306 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04002307
2308 test_bits = FEATURE_CONTROL_LOCKED;
2309 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2310 if (tboot_enabled())
2311 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2312
2313 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002314 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04002315 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2316 }
Rusty Russell66aee912007-07-17 23:34:16 +10002317 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Alexander Graf10474ae2009-09-15 11:37:46 +02002318
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002319 if (vmm_exclusive) {
2320 kvm_cpu_vmxon(phys_addr);
2321 ept_sync_global();
2322 }
Alexander Graf10474ae2009-09-15 11:37:46 +02002323
Avi Kivity3444d7d2010-07-26 18:32:38 +03002324 store_gdt(&__get_cpu_var(host_gdt));
2325
Alexander Graf10474ae2009-09-15 11:37:46 +02002326 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002327}
2328
Nadav Har'Eld462b812011-05-24 15:26:10 +03002329static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002330{
2331 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002332 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002333
Nadav Har'Eld462b812011-05-24 15:26:10 +03002334 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2335 loaded_vmcss_on_cpu_link)
2336 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002337}
2338
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002339
2340/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2341 * tricks.
2342 */
2343static void kvm_cpu_vmxoff(void)
2344{
2345 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002346}
2347
Avi Kivity6aa8b732006-12-10 02:21:36 -08002348static void hardware_disable(void *garbage)
2349{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002350 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002351 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002352 kvm_cpu_vmxoff();
2353 }
Dongxiao Xu7725b892010-05-11 18:29:38 +08002354 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002355}
2356
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002357static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002358 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002359{
2360 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002361 u32 ctl = ctl_min | ctl_opt;
2362
2363 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2364
2365 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2366 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2367
2368 /* Ensure minimum (required) set of control bits are supported. */
2369 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002370 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002371
2372 *result = ctl;
2373 return 0;
2374}
2375
Avi Kivity110312c2010-12-21 12:54:20 +02002376static __init bool allow_1_setting(u32 msr, u32 ctl)
2377{
2378 u32 vmx_msr_low, vmx_msr_high;
2379
2380 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2381 return vmx_msr_high & ctl;
2382}
2383
Yang, Sheng002c7f72007-07-31 14:23:01 +03002384static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002385{
2386 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002387 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002388 u32 _pin_based_exec_control = 0;
2389 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002390 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002391 u32 _vmexit_control = 0;
2392 u32 _vmentry_control = 0;
2393
2394 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08002395 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002396 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2397 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002398 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002399
Anthony Liguori443381a2010-12-06 10:53:38 -06002400 min =
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002401#ifdef CONFIG_X86_64
2402 CPU_BASED_CR8_LOAD_EXITING |
2403 CPU_BASED_CR8_STORE_EXITING |
2404#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002405 CPU_BASED_CR3_LOAD_EXITING |
2406 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002407 CPU_BASED_USE_IO_BITMAPS |
2408 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002409 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08002410 CPU_BASED_MWAIT_EXITING |
2411 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002412 CPU_BASED_INVLPG_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002413
2414 if (yield_on_hlt)
2415 min |= CPU_BASED_HLT_EXITING;
2416
Sheng Yangf78e0e22007-10-29 09:40:42 +08002417 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002418 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002419 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002420 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2421 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002422 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002423#ifdef CONFIG_X86_64
2424 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2425 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2426 ~CPU_BASED_CR8_STORE_EXITING;
2427#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002428 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002429 min2 = 0;
2430 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002431 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002432 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002433 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002434 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002435 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
2436 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08002437 if (adjust_vmx_controls(min2, opt2,
2438 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002439 &_cpu_based_2nd_exec_control) < 0)
2440 return -EIO;
2441 }
2442#ifndef CONFIG_X86_64
2443 if (!(_cpu_based_2nd_exec_control &
2444 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2445 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2446#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002447 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002448 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2449 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002450 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2451 CPU_BASED_CR3_STORE_EXITING |
2452 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08002453 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
2454 vmx_capability.ept, vmx_capability.vpid);
2455 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002456
2457 min = 0;
2458#ifdef CONFIG_X86_64
2459 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2460#endif
Sheng Yang468d4722008-10-09 16:01:55 +08002461 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002462 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2463 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002464 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002465
Sheng Yang468d4722008-10-09 16:01:55 +08002466 min = 0;
2467 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002468 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2469 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002470 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002471
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002472 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002473
2474 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2475 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002476 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002477
2478#ifdef CONFIG_X86_64
2479 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2480 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002481 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002482#endif
2483
2484 /* Require Write-Back (WB) memory type for VMCS accesses. */
2485 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002486 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002487
Yang, Sheng002c7f72007-07-31 14:23:01 +03002488 vmcs_conf->size = vmx_msr_high & 0x1fff;
2489 vmcs_conf->order = get_order(vmcs_config.size);
2490 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002491
Yang, Sheng002c7f72007-07-31 14:23:01 +03002492 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2493 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002494 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002495 vmcs_conf->vmexit_ctrl = _vmexit_control;
2496 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002497
Avi Kivity110312c2010-12-21 12:54:20 +02002498 cpu_has_load_ia32_efer =
2499 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2500 VM_ENTRY_LOAD_IA32_EFER)
2501 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2502 VM_EXIT_LOAD_IA32_EFER);
2503
Gleb Natapov8bf00a52011-10-05 14:01:22 +02002504 cpu_has_load_perf_global_ctrl =
2505 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2506 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
2507 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2508 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2509
2510 /*
2511 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
2512 * but due to arrata below it can't be used. Workaround is to use
2513 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2514 *
2515 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
2516 *
2517 * AAK155 (model 26)
2518 * AAP115 (model 30)
2519 * AAT100 (model 37)
2520 * BC86,AAY89,BD102 (model 44)
2521 * BA97 (model 46)
2522 *
2523 */
2524 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
2525 switch (boot_cpu_data.x86_model) {
2526 case 26:
2527 case 30:
2528 case 37:
2529 case 44:
2530 case 46:
2531 cpu_has_load_perf_global_ctrl = false;
2532 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2533 "does not work properly. Using workaround\n");
2534 break;
2535 default:
2536 break;
2537 }
2538 }
2539
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002540 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002541}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002542
2543static struct vmcs *alloc_vmcs_cpu(int cpu)
2544{
2545 int node = cpu_to_node(cpu);
2546 struct page *pages;
2547 struct vmcs *vmcs;
2548
Mel Gorman6484eb32009-06-16 15:31:54 -07002549 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002550 if (!pages)
2551 return NULL;
2552 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002553 memset(vmcs, 0, vmcs_config.size);
2554 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002555 return vmcs;
2556}
2557
2558static struct vmcs *alloc_vmcs(void)
2559{
Ingo Molnard3b2c332007-01-05 16:36:23 -08002560 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08002561}
2562
2563static void free_vmcs(struct vmcs *vmcs)
2564{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002565 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002566}
2567
Nadav Har'Eld462b812011-05-24 15:26:10 +03002568/*
2569 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2570 */
2571static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
2572{
2573 if (!loaded_vmcs->vmcs)
2574 return;
2575 loaded_vmcs_clear(loaded_vmcs);
2576 free_vmcs(loaded_vmcs->vmcs);
2577 loaded_vmcs->vmcs = NULL;
2578}
2579
Sam Ravnborg39959582007-06-01 00:47:13 -07002580static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002581{
2582 int cpu;
2583
Zachary Amsden3230bb42009-09-29 11:38:37 -10002584 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002585 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002586 per_cpu(vmxarea, cpu) = NULL;
2587 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002588}
2589
Avi Kivity6aa8b732006-12-10 02:21:36 -08002590static __init int alloc_kvm_area(void)
2591{
2592 int cpu;
2593
Zachary Amsden3230bb42009-09-29 11:38:37 -10002594 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002595 struct vmcs *vmcs;
2596
2597 vmcs = alloc_vmcs_cpu(cpu);
2598 if (!vmcs) {
2599 free_kvm_area();
2600 return -ENOMEM;
2601 }
2602
2603 per_cpu(vmxarea, cpu) = vmcs;
2604 }
2605 return 0;
2606}
2607
2608static __init int hardware_setup(void)
2609{
Yang, Sheng002c7f72007-07-31 14:23:01 +03002610 if (setup_vmcs_config(&vmcs_config) < 0)
2611 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01002612
2613 if (boot_cpu_has(X86_FEATURE_NX))
2614 kvm_enable_efer_bits(EFER_NX);
2615
Sheng Yang93ba03c2009-04-01 15:52:32 +08002616 if (!cpu_has_vmx_vpid())
2617 enable_vpid = 0;
2618
Sheng Yang4bc9b982010-06-02 14:05:24 +08002619 if (!cpu_has_vmx_ept() ||
2620 !cpu_has_vmx_ept_4levels()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08002621 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002622 enable_unrestricted_guest = 0;
2623 }
2624
2625 if (!cpu_has_vmx_unrestricted_guest())
2626 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08002627
2628 if (!cpu_has_vmx_flexpriority())
2629 flexpriority_enabled = 0;
2630
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002631 if (!cpu_has_vmx_tpr_shadow())
2632 kvm_x86_ops->update_cr8_intercept = NULL;
2633
Marcelo Tosatti54dee992009-06-11 12:07:44 -03002634 if (enable_ept && !cpu_has_vmx_ept_2m_page())
2635 kvm_disable_largepages();
2636
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002637 if (!cpu_has_vmx_ple())
2638 ple_gap = 0;
2639
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002640 if (nested)
2641 nested_vmx_setup_ctls_msrs();
2642
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 return alloc_kvm_area();
2644}
2645
2646static __exit void hardware_unsetup(void)
2647{
2648 free_kvm_area();
2649}
2650
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
2652{
2653 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2654
Avi Kivity6af11b92007-03-19 13:18:10 +02002655 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002656 vmcs_write16(sf->selector, save->selector);
2657 vmcs_writel(sf->base, save->base);
2658 vmcs_write32(sf->limit, save->limit);
2659 vmcs_write32(sf->ar_bytes, save->ar);
2660 } else {
2661 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
2662 << AR_DPL_SHIFT;
2663 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
2664 }
2665}
2666
2667static void enter_pmode(struct kvm_vcpu *vcpu)
2668{
2669 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002670 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002671
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002672 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002673 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002674
Avi Kivity2fb92db2011-04-27 19:42:18 +03002675 vmx_segment_cache_clear(vmx);
2676
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002677 vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002678 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
2679 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
2680 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002681
2682 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002683 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2684 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002685 vmcs_writel(GUEST_RFLAGS, flags);
2686
Rusty Russell66aee912007-07-17 23:34:16 +10002687 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2688 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689
2690 update_exception_bitmap(vcpu);
2691
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002692 if (emulate_invalid_guest_state)
2693 return;
2694
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002695 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
2696 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
2697 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
2698 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002699
Avi Kivity2fb92db2011-04-27 19:42:18 +03002700 vmx_segment_cache_clear(vmx);
2701
Avi Kivity6aa8b732006-12-10 02:21:36 -08002702 vmcs_write16(GUEST_SS_SELECTOR, 0);
2703 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
2704
2705 vmcs_write16(GUEST_CS_SELECTOR,
2706 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
2707 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2708}
2709
Mike Dayd77c26f2007-10-08 09:02:08 -04002710static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002711{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002712 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002713 struct kvm_memslots *slots;
Xiao Guangrong28a37542011-11-24 19:04:35 +08002714 struct kvm_memory_slot *slot;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002715 gfn_t base_gfn;
2716
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002717 slots = kvm_memslots(kvm);
Xiao Guangrong28a37542011-11-24 19:04:35 +08002718 slot = id_to_memslot(slots, 0);
2719 base_gfn = slot->base_gfn + slot->npages - 3;
2720
Izik Eiduscbc94022007-10-25 00:29:55 +02002721 return base_gfn << PAGE_SHIFT;
2722 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002723 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002724}
2725
2726static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
2727{
2728 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2729
2730 save->selector = vmcs_read16(sf->selector);
2731 save->base = vmcs_readl(sf->base);
2732 save->limit = vmcs_read32(sf->limit);
2733 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01002734 vmcs_write16(sf->selector, save->base >> 4);
Gleb Natapov444e8632010-12-27 17:25:04 +02002735 vmcs_write32(sf->base, save->base & 0xffff0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002736 vmcs_write32(sf->limit, 0xffff);
2737 vmcs_write32(sf->ar_bytes, 0xf3);
Gleb Natapov444e8632010-12-27 17:25:04 +02002738 if (save->base & 0xf)
2739 printk_once(KERN_WARNING "kvm: segment base is not paragraph"
2740 " aligned when entering protected mode (seg=%d)",
2741 seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002742}
2743
2744static void enter_rmode(struct kvm_vcpu *vcpu)
2745{
2746 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002747 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002748
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002749 if (enable_unrestricted_guest)
2750 return;
2751
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002752 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002753 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002754
Gleb Natapov776e58e2011-03-13 12:34:27 +02002755 /*
2756 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
2757 * vcpu. Call it here with phys address pointing 16M below 4G.
2758 */
2759 if (!vcpu->kvm->arch.tss_addr) {
2760 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2761 "called before entering vcpu\n");
2762 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
2763 vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
2764 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2765 }
2766
Avi Kivity2fb92db2011-04-27 19:42:18 +03002767 vmx_segment_cache_clear(vmx);
2768
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002769 vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002770 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002771 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
2772
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002773 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002774 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
2775
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002776 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002777 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2778
2779 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002780 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002781
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002782 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002783
2784 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002785 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002786 update_exception_bitmap(vcpu);
2787
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002788 if (emulate_invalid_guest_state)
2789 goto continue_rmode;
2790
Avi Kivity6aa8b732006-12-10 02:21:36 -08002791 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
2792 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
2793 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
2794
2795 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08002796 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02002797 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
2798 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002799 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
2800
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002801 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
2802 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
2803 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
2804 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03002805
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002806continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08002807 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808}
2809
Amit Shah401d10d2009-02-20 22:53:37 +05302810static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
2811{
2812 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002813 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2814
2815 if (!msr)
2816 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302817
Avi Kivity44ea2b12009-09-06 15:55:37 +03002818 /*
2819 * Force kernel_gs_base reloading before EFER changes, as control
2820 * of this msr depends on is_long_mode().
2821 */
2822 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02002823 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302824 if (efer & EFER_LMA) {
2825 vmcs_write32(VM_ENTRY_CONTROLS,
2826 vmcs_read32(VM_ENTRY_CONTROLS) |
2827 VM_ENTRY_IA32E_MODE);
2828 msr->data = efer;
2829 } else {
2830 vmcs_write32(VM_ENTRY_CONTROLS,
2831 vmcs_read32(VM_ENTRY_CONTROLS) &
2832 ~VM_ENTRY_IA32E_MODE);
2833
2834 msr->data = efer & ~EFER_LME;
2835 }
2836 setup_msrs(vmx);
2837}
2838
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002839#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002840
2841static void enter_lmode(struct kvm_vcpu *vcpu)
2842{
2843 u32 guest_tr_ar;
2844
Avi Kivity2fb92db2011-04-27 19:42:18 +03002845 vmx_segment_cache_clear(to_vmx(vcpu));
2846
Avi Kivity6aa8b732006-12-10 02:21:36 -08002847 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
2848 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02002849 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
2850 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002851 vmcs_write32(GUEST_TR_AR_BYTES,
2852 (guest_tr_ar & ~AR_TYPE_MASK)
2853 | AR_TYPE_BUSY_64_TSS);
2854 }
Avi Kivityda38f432010-07-06 11:30:49 +03002855 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002856}
2857
2858static void exit_lmode(struct kvm_vcpu *vcpu)
2859{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860 vmcs_write32(VM_ENTRY_CONTROLS,
2861 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03002862 & ~VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002863 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002864}
2865
2866#endif
2867
Sheng Yang2384d2b2008-01-17 15:14:33 +08002868static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2869{
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002870 vpid_sync_context(to_vmx(vcpu));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002871 if (enable_ept) {
2872 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2873 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08002874 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002875 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08002876}
2877
Avi Kivitye8467fd2009-12-29 18:43:06 +02002878static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2879{
2880 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2881
2882 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2883 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2884}
2885
Avi Kivityaff48ba2010-12-05 18:56:11 +02002886static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2887{
2888 if (enable_ept && is_paging(vcpu))
2889 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2890 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2891}
2892
Anthony Liguori25c4c272007-04-27 09:29:21 +03002893static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002894{
Avi Kivityfc78f512009-12-07 12:16:48 +02002895 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2896
2897 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2898 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002899}
2900
Sheng Yang14394422008-04-28 12:24:45 +08002901static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2902{
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002903 if (!test_bit(VCPU_EXREG_PDPTR,
2904 (unsigned long *)&vcpu->arch.regs_dirty))
2905 return;
2906
Sheng Yang14394422008-04-28 12:24:45 +08002907 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002908 vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]);
2909 vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]);
2910 vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]);
2911 vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002912 }
2913}
2914
Avi Kivity8f5d5492009-05-31 18:41:29 +03002915static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
2916{
2917 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002918 vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2919 vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2920 vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2921 vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002922 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03002923
2924 __set_bit(VCPU_EXREG_PDPTR,
2925 (unsigned long *)&vcpu->arch.regs_avail);
2926 __set_bit(VCPU_EXREG_PDPTR,
2927 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002928}
2929
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002930static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08002931
2932static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2933 unsigned long cr0,
2934 struct kvm_vcpu *vcpu)
2935{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002936 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2937 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002938 if (!(cr0 & X86_CR0_PG)) {
2939 /* From paging/starting to nonpaging */
2940 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002941 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002942 (CPU_BASED_CR3_LOAD_EXITING |
2943 CPU_BASED_CR3_STORE_EXITING));
2944 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002945 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002946 } else if (!is_paging(vcpu)) {
2947 /* From nonpaging to paging */
2948 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002949 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002950 ~(CPU_BASED_CR3_LOAD_EXITING |
2951 CPU_BASED_CR3_STORE_EXITING));
2952 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002953 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002954 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002955
2956 if (!(cr0 & X86_CR0_WP))
2957 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002958}
2959
Avi Kivity6aa8b732006-12-10 02:21:36 -08002960static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2961{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002962 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002963 unsigned long hw_cr0;
2964
2965 if (enable_unrestricted_guest)
2966 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
2967 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
2968 else
2969 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002970
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002971 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 enter_pmode(vcpu);
2973
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002974 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002975 enter_rmode(vcpu);
2976
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002977#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002978 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10002979 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002980 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10002981 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002982 exit_lmode(vcpu);
2983 }
2984#endif
2985
Avi Kivity089d0342009-03-23 18:26:32 +02002986 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002987 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2988
Avi Kivity02daab22009-12-30 12:40:26 +02002989 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02002990 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02002991
Avi Kivity6aa8b732006-12-10 02:21:36 -08002992 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002993 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002994 vcpu->arch.cr0 = cr0;
Avi Kivity69c73022011-03-07 15:26:44 +02002995 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002996}
2997
Sheng Yang14394422008-04-28 12:24:45 +08002998static u64 construct_eptp(unsigned long root_hpa)
2999{
3000 u64 eptp;
3001
3002 /* TODO write the value reading from MSR */
3003 eptp = VMX_EPT_DEFAULT_MT |
3004 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
3005 eptp |= (root_hpa & PAGE_MASK);
3006
3007 return eptp;
3008}
3009
Avi Kivity6aa8b732006-12-10 02:21:36 -08003010static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3011{
Sheng Yang14394422008-04-28 12:24:45 +08003012 unsigned long guest_cr3;
3013 u64 eptp;
3014
3015 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02003016 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08003017 eptp = construct_eptp(cr3);
3018 vmcs_write64(EPT_POINTER, eptp);
Avi Kivity9f8fe502010-12-05 17:30:00 +02003019 guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) :
Sheng Yangb927a3c2009-07-21 10:42:48 +08003020 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02003021 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003022 }
3023
Sheng Yang2384d2b2008-01-17 15:14:33 +08003024 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08003025 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003026}
3027
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003028static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003029{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003030 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08003031 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
3032
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003033 if (cr4 & X86_CR4_VMXE) {
3034 /*
3035 * To use VMXON (and later other VMX instructions), a guest
3036 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3037 * So basically the check on whether to allow nested VMX
3038 * is here.
3039 */
3040 if (!nested_vmx_allowed(vcpu))
3041 return 1;
3042 } else if (to_vmx(vcpu)->nested.vmxon)
3043 return 1;
3044
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003045 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02003046 if (enable_ept) {
3047 if (!is_paging(vcpu)) {
3048 hw_cr4 &= ~X86_CR4_PAE;
3049 hw_cr4 |= X86_CR4_PSE;
3050 } else if (!(cr4 & X86_CR4_PAE)) {
3051 hw_cr4 &= ~X86_CR4_PAE;
3052 }
3053 }
Sheng Yang14394422008-04-28 12:24:45 +08003054
3055 vmcs_writel(CR4_READ_SHADOW, cr4);
3056 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03003057 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003058}
3059
Avi Kivity6aa8b732006-12-10 02:21:36 -08003060static void vmx_get_segment(struct kvm_vcpu *vcpu,
3061 struct kvm_segment *var, int seg)
3062{
Avi Kivitya9179492011-01-03 14:28:52 +02003063 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitya9179492011-01-03 14:28:52 +02003064 struct kvm_save_segment *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003065 u32 ar;
3066
Avi Kivitya9179492011-01-03 14:28:52 +02003067 if (vmx->rmode.vm86_active
3068 && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES
3069 || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS
3070 || seg == VCPU_SREG_GS)
3071 && !emulate_invalid_guest_state) {
3072 switch (seg) {
3073 case VCPU_SREG_TR: save = &vmx->rmode.tr; break;
3074 case VCPU_SREG_ES: save = &vmx->rmode.es; break;
3075 case VCPU_SREG_DS: save = &vmx->rmode.ds; break;
3076 case VCPU_SREG_FS: save = &vmx->rmode.fs; break;
3077 case VCPU_SREG_GS: save = &vmx->rmode.gs; break;
3078 default: BUG();
3079 }
3080 var->selector = save->selector;
3081 var->base = save->base;
3082 var->limit = save->limit;
3083 ar = save->ar;
3084 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03003085 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivitya9179492011-01-03 14:28:52 +02003086 goto use_saved_rmode_seg;
3087 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003088 var->base = vmx_read_guest_seg_base(vmx, seg);
3089 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3090 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3091 ar = vmx_read_guest_seg_ar(vmx, seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003092use_saved_rmode_seg:
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02003093 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003094 ar = 0;
3095 var->type = ar & 15;
3096 var->s = (ar >> 4) & 1;
3097 var->dpl = (ar >> 5) & 3;
3098 var->present = (ar >> 7) & 1;
3099 var->avl = (ar >> 12) & 1;
3100 var->l = (ar >> 13) & 1;
3101 var->db = (ar >> 14) & 1;
3102 var->g = (ar >> 15) & 1;
3103 var->unusable = (ar >> 16) & 1;
3104}
3105
Avi Kivitya9179492011-01-03 14:28:52 +02003106static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3107{
Avi Kivitya9179492011-01-03 14:28:52 +02003108 struct kvm_segment s;
3109
3110 if (to_vmx(vcpu)->rmode.vm86_active) {
3111 vmx_get_segment(vcpu, &s, seg);
3112 return s.base;
3113 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03003114 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02003115}
3116
Avi Kivity69c73022011-03-07 15:26:44 +02003117static int __vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02003118{
Avi Kivity3eeb3282010-01-21 15:31:48 +02003119 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02003120 return 0;
3121
Avi Kivityf4c63e52011-03-07 14:54:28 +02003122 if (!is_long_mode(vcpu)
3123 && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */
Izik Eidus2e4d2652008-03-24 19:38:34 +02003124 return 3;
3125
Avi Kivity2fb92db2011-04-27 19:42:18 +03003126 return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02003127}
3128
Avi Kivity69c73022011-03-07 15:26:44 +02003129static int vmx_get_cpl(struct kvm_vcpu *vcpu)
3130{
3131 if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) {
3132 __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
3133 to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu);
3134 }
3135 return to_vmx(vcpu)->cpl;
3136}
3137
3138
Avi Kivity653e3102007-05-07 10:55:37 +03003139static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003140{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003141 u32 ar;
3142
Avi Kivity653e3102007-05-07 10:55:37 +03003143 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003144 ar = 1 << 16;
3145 else {
3146 ar = var->type & 15;
3147 ar |= (var->s & 1) << 4;
3148 ar |= (var->dpl & 3) << 5;
3149 ar |= (var->present & 1) << 7;
3150 ar |= (var->avl & 1) << 12;
3151 ar |= (var->l & 1) << 13;
3152 ar |= (var->db & 1) << 14;
3153 ar |= (var->g & 1) << 15;
3154 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08003155 if (ar == 0) /* a 0 value means unusable */
3156 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03003157
3158 return ar;
3159}
3160
3161static void vmx_set_segment(struct kvm_vcpu *vcpu,
3162 struct kvm_segment *var, int seg)
3163{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003164 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03003165 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
3166 u32 ar;
3167
Avi Kivity2fb92db2011-04-27 19:42:18 +03003168 vmx_segment_cache_clear(vmx);
3169
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003170 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
Gleb Natapova8ba6c22011-02-21 12:07:58 +02003171 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003172 vmx->rmode.tr.selector = var->selector;
3173 vmx->rmode.tr.base = var->base;
3174 vmx->rmode.tr.limit = var->limit;
3175 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03003176 return;
3177 }
3178 vmcs_writel(sf->base, var->base);
3179 vmcs_write32(sf->limit, var->limit);
3180 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003181 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03003182 /*
3183 * Hack real-mode segments into vm86 compatibility.
3184 */
3185 if (var->base == 0xffff0000 && var->selector == 0xf000)
3186 vmcs_writel(sf->base, 0xf0000);
3187 ar = 0xf3;
3188 } else
3189 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003190
3191 /*
3192 * Fix the "Accessed" bit in AR field of segment registers for older
3193 * qemu binaries.
3194 * IA32 arch specifies that at the time of processor reset the
3195 * "Accessed" bit in the AR field of segment registers is 1. And qemu
3196 * is setting it to 0 in the usedland code. This causes invalid guest
3197 * state vmexit when "unrestricted guest" mode is turned on.
3198 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3199 * tree. Newer qemu binaries with that qemu fix would not need this
3200 * kvm hack.
3201 */
3202 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
3203 ar |= 0x1; /* Accessed */
3204
Avi Kivity6aa8b732006-12-10 02:21:36 -08003205 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003206 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003207}
3208
Avi Kivity6aa8b732006-12-10 02:21:36 -08003209static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3210{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003211 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003212
3213 *db = (ar >> 14) & 1;
3214 *l = (ar >> 13) & 1;
3215}
3216
Gleb Natapov89a27f42010-02-16 10:51:48 +02003217static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003218{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003219 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3220 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003221}
3222
Gleb Natapov89a27f42010-02-16 10:51:48 +02003223static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003224{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003225 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3226 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003227}
3228
Gleb Natapov89a27f42010-02-16 10:51:48 +02003229static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003230{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003231 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3232 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003233}
3234
Gleb Natapov89a27f42010-02-16 10:51:48 +02003235static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003236{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003237 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3238 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003239}
3240
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003241static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3242{
3243 struct kvm_segment var;
3244 u32 ar;
3245
3246 vmx_get_segment(vcpu, &var, seg);
3247 ar = vmx_segment_access_rights(&var);
3248
3249 if (var.base != (var.selector << 4))
3250 return false;
3251 if (var.limit != 0xffff)
3252 return false;
3253 if (ar != 0xf3)
3254 return false;
3255
3256 return true;
3257}
3258
3259static bool code_segment_valid(struct kvm_vcpu *vcpu)
3260{
3261 struct kvm_segment cs;
3262 unsigned int cs_rpl;
3263
3264 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3265 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
3266
Avi Kivity1872a3f2009-01-04 23:26:52 +02003267 if (cs.unusable)
3268 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003269 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
3270 return false;
3271 if (!cs.s)
3272 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003273 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003274 if (cs.dpl > cs_rpl)
3275 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003276 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003277 if (cs.dpl != cs_rpl)
3278 return false;
3279 }
3280 if (!cs.present)
3281 return false;
3282
3283 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3284 return true;
3285}
3286
3287static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3288{
3289 struct kvm_segment ss;
3290 unsigned int ss_rpl;
3291
3292 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3293 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
3294
Avi Kivity1872a3f2009-01-04 23:26:52 +02003295 if (ss.unusable)
3296 return true;
3297 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003298 return false;
3299 if (!ss.s)
3300 return false;
3301 if (ss.dpl != ss_rpl) /* DPL != RPL */
3302 return false;
3303 if (!ss.present)
3304 return false;
3305
3306 return true;
3307}
3308
3309static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3310{
3311 struct kvm_segment var;
3312 unsigned int rpl;
3313
3314 vmx_get_segment(vcpu, &var, seg);
3315 rpl = var.selector & SELECTOR_RPL_MASK;
3316
Avi Kivity1872a3f2009-01-04 23:26:52 +02003317 if (var.unusable)
3318 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003319 if (!var.s)
3320 return false;
3321 if (!var.present)
3322 return false;
3323 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
3324 if (var.dpl < rpl) /* DPL < RPL */
3325 return false;
3326 }
3327
3328 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3329 * rights flags
3330 */
3331 return true;
3332}
3333
3334static bool tr_valid(struct kvm_vcpu *vcpu)
3335{
3336 struct kvm_segment tr;
3337
3338 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3339
Avi Kivity1872a3f2009-01-04 23:26:52 +02003340 if (tr.unusable)
3341 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003342 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3343 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003344 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003345 return false;
3346 if (!tr.present)
3347 return false;
3348
3349 return true;
3350}
3351
3352static bool ldtr_valid(struct kvm_vcpu *vcpu)
3353{
3354 struct kvm_segment ldtr;
3355
3356 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3357
Avi Kivity1872a3f2009-01-04 23:26:52 +02003358 if (ldtr.unusable)
3359 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003360 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3361 return false;
3362 if (ldtr.type != 2)
3363 return false;
3364 if (!ldtr.present)
3365 return false;
3366
3367 return true;
3368}
3369
3370static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3371{
3372 struct kvm_segment cs, ss;
3373
3374 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3375 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3376
3377 return ((cs.selector & SELECTOR_RPL_MASK) ==
3378 (ss.selector & SELECTOR_RPL_MASK));
3379}
3380
3381/*
3382 * Check if guest state is valid. Returns true if valid, false if
3383 * not.
3384 * We assume that registers are always usable
3385 */
3386static bool guest_state_valid(struct kvm_vcpu *vcpu)
3387{
3388 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02003389 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003390 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3391 return false;
3392 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3393 return false;
3394 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3395 return false;
3396 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3397 return false;
3398 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3399 return false;
3400 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3401 return false;
3402 } else {
3403 /* protected mode guest state checks */
3404 if (!cs_ss_rpl_check(vcpu))
3405 return false;
3406 if (!code_segment_valid(vcpu))
3407 return false;
3408 if (!stack_segment_valid(vcpu))
3409 return false;
3410 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3411 return false;
3412 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3413 return false;
3414 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3415 return false;
3416 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3417 return false;
3418 if (!tr_valid(vcpu))
3419 return false;
3420 if (!ldtr_valid(vcpu))
3421 return false;
3422 }
3423 /* TODO:
3424 * - Add checks on RIP
3425 * - Add checks on RFLAGS
3426 */
3427
3428 return true;
3429}
3430
Mike Dayd77c26f2007-10-08 09:02:08 -04003431static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003432{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003433 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003434 u16 data = 0;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003435 int r, idx, ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003436
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003437 idx = srcu_read_lock(&kvm->srcu);
3438 fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003439 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3440 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003441 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003442 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003443 r = kvm_write_guest_page(kvm, fn++, &data,
3444 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003445 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003446 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003447 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3448 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003449 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003450 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3451 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003452 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003453 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003454 r = kvm_write_guest_page(kvm, fn, &data,
3455 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3456 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02003457 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003458 goto out;
3459
3460 ret = 1;
3461out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003462 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003463 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003464}
3465
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003466static int init_rmode_identity_map(struct kvm *kvm)
3467{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003468 int i, idx, r, ret;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003469 pfn_t identity_map_pfn;
3470 u32 tmp;
3471
Avi Kivity089d0342009-03-23 18:26:32 +02003472 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003473 return 1;
3474 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
3475 printk(KERN_ERR "EPT: identity-mapping pagetable "
3476 "haven't been allocated!\n");
3477 return 0;
3478 }
3479 if (likely(kvm->arch.ept_identity_pagetable_done))
3480 return 1;
3481 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003482 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003483 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003484 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3485 if (r < 0)
3486 goto out;
3487 /* Set up identity-mapping pagetable for EPT in real mode */
3488 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3489 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3490 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3491 r = kvm_write_guest_page(kvm, identity_map_pfn,
3492 &tmp, i * sizeof(tmp), sizeof(tmp));
3493 if (r < 0)
3494 goto out;
3495 }
3496 kvm->arch.ept_identity_pagetable_done = true;
3497 ret = 1;
3498out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003499 srcu_read_unlock(&kvm->srcu, idx);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003500 return ret;
3501}
3502
Avi Kivity6aa8b732006-12-10 02:21:36 -08003503static void seg_setup(int seg)
3504{
3505 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003506 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507
3508 vmcs_write16(sf->selector, 0);
3509 vmcs_writel(sf->base, 0);
3510 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003511 if (enable_unrestricted_guest) {
3512 ar = 0x93;
3513 if (seg == VCPU_SREG_CS)
3514 ar |= 0x08; /* code segment */
3515 } else
3516 ar = 0xf3;
3517
3518 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003519}
3520
Sheng Yangf78e0e22007-10-29 09:40:42 +08003521static int alloc_apic_access_page(struct kvm *kvm)
3522{
3523 struct kvm_userspace_memory_region kvm_userspace_mem;
3524 int r = 0;
3525
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003526 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003527 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003528 goto out;
3529 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
3530 kvm_userspace_mem.flags = 0;
3531 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
3532 kvm_userspace_mem.memory_size = PAGE_SIZE;
3533 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3534 if (r)
3535 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003536
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003537 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003538out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003539 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003540 return r;
3541}
3542
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003543static int alloc_identity_pagetable(struct kvm *kvm)
3544{
3545 struct kvm_userspace_memory_region kvm_userspace_mem;
3546 int r = 0;
3547
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003548 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003549 if (kvm->arch.ept_identity_pagetable)
3550 goto out;
3551 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
3552 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003553 kvm_userspace_mem.guest_phys_addr =
3554 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003555 kvm_userspace_mem.memory_size = PAGE_SIZE;
3556 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3557 if (r)
3558 goto out;
3559
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003560 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08003561 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003562out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003563 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003564 return r;
3565}
3566
Sheng Yang2384d2b2008-01-17 15:14:33 +08003567static void allocate_vpid(struct vcpu_vmx *vmx)
3568{
3569 int vpid;
3570
3571 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02003572 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003573 return;
3574 spin_lock(&vmx_vpid_lock);
3575 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
3576 if (vpid < VMX_NR_VPIDS) {
3577 vmx->vpid = vpid;
3578 __set_bit(vpid, vmx_vpid_bitmap);
3579 }
3580 spin_unlock(&vmx_vpid_lock);
3581}
3582
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003583static void free_vpid(struct vcpu_vmx *vmx)
3584{
3585 if (!enable_vpid)
3586 return;
3587 spin_lock(&vmx_vpid_lock);
3588 if (vmx->vpid != 0)
3589 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3590 spin_unlock(&vmx_vpid_lock);
3591}
3592
Avi Kivity58972972009-02-24 22:26:47 +02003593static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08003594{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003595 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003596
3597 if (!cpu_has_vmx_msr_bitmap())
3598 return;
3599
3600 /*
3601 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3602 * have the write-low and read-high bitmap offsets the wrong way round.
3603 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3604 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003605 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003606 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
3607 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08003608 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3609 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003610 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
3611 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08003612 }
Sheng Yang25c5f222008-03-28 13:18:56 +08003613}
3614
Avi Kivity58972972009-02-24 22:26:47 +02003615static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
3616{
3617 if (!longmode_only)
3618 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
3619 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
3620}
3621
Avi Kivity6aa8b732006-12-10 02:21:36 -08003622/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003623 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3624 * will not change in the lifetime of the guest.
3625 * Note that host-state that does change is set elsewhere. E.g., host-state
3626 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3627 */
3628static void vmx_set_constant_host_state(void)
3629{
3630 u32 low32, high32;
3631 unsigned long tmpl;
3632 struct desc_ptr dt;
3633
3634 vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */
3635 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
3636 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
3637
3638 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
3639 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3640 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3641 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3642 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3643
3644 native_store_idt(&dt);
3645 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
3646
3647 asm("mov $.Lkvm_vmx_return, %0" : "=r"(tmpl));
3648 vmcs_writel(HOST_RIP, tmpl); /* 22.2.5 */
3649
3650 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
3651 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
3652 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
3653 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
3654
3655 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3656 rdmsr(MSR_IA32_CR_PAT, low32, high32);
3657 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
3658 }
3659}
3660
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003661static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
3662{
3663 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
3664 if (enable_ept)
3665 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003666 if (is_guest_mode(&vmx->vcpu))
3667 vmx->vcpu.arch.cr4_guest_owned_bits &=
3668 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003669 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
3670}
3671
3672static u32 vmx_exec_control(struct vcpu_vmx *vmx)
3673{
3674 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
3675 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
3676 exec_control &= ~CPU_BASED_TPR_SHADOW;
3677#ifdef CONFIG_X86_64
3678 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3679 CPU_BASED_CR8_LOAD_EXITING;
3680#endif
3681 }
3682 if (!enable_ept)
3683 exec_control |= CPU_BASED_CR3_STORE_EXITING |
3684 CPU_BASED_CR3_LOAD_EXITING |
3685 CPU_BASED_INVLPG_EXITING;
3686 return exec_control;
3687}
3688
3689static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
3690{
3691 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
3692 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3693 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
3694 if (vmx->vpid == 0)
3695 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
3696 if (!enable_ept) {
3697 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
3698 enable_unrestricted_guest = 0;
3699 }
3700 if (!enable_unrestricted_guest)
3701 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
3702 if (!ple_gap)
3703 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
3704 return exec_control;
3705}
3706
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003707static void ept_set_mmio_spte_mask(void)
3708{
3709 /*
3710 * EPT Misconfigurations can be generated if the value of bits 2:0
3711 * of an EPT paging-structure entry is 110b (write/execute).
3712 * Also, magic bits (0xffull << 49) is set to quickly identify mmio
3713 * spte.
3714 */
3715 kvm_mmu_set_mmio_spte_mask(0xffull << 49 | 0x6ull);
3716}
3717
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003718/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003719 * Sets up the vmcs for emulated real mode.
3720 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003721static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003722{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02003723#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003724 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02003725#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003726 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003727
Avi Kivity6aa8b732006-12-10 02:21:36 -08003728 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003729 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
3730 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003731
Sheng Yang25c5f222008-03-28 13:18:56 +08003732 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02003733 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08003734
Avi Kivity6aa8b732006-12-10 02:21:36 -08003735 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
3736
Avi Kivity6aa8b732006-12-10 02:21:36 -08003737 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003738 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
3739 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003740
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003741 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003742
Sheng Yang83ff3b92007-11-21 14:33:25 +08003743 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003744 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
3745 vmx_secondary_exec_control(vmx));
Sheng Yang83ff3b92007-11-21 14:33:25 +08003746 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08003747
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003748 if (ple_gap) {
3749 vmcs_write32(PLE_GAP, ple_gap);
3750 vmcs_write32(PLE_WINDOW, ple_window);
3751 }
3752
Xiao Guangrongc3707952011-07-12 03:28:04 +08003753 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
3754 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003755 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
3756
Avi Kivity9581d442010-10-19 16:46:55 +02003757 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
3758 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003759 vmx_set_constant_host_state();
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003760#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003761 rdmsrl(MSR_FS_BASE, a);
3762 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
3763 rdmsrl(MSR_GS_BASE, a);
3764 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
3765#else
3766 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
3767 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
3768#endif
3769
Eddie Dong2cc51562007-05-21 07:28:09 +03003770 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
3771 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003772 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03003773 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003774 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003775
Sheng Yang468d4722008-10-09 16:01:55 +08003776 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003777 u32 msr_low, msr_high;
3778 u64 host_pat;
Sheng Yang468d4722008-10-09 16:01:55 +08003779 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3780 host_pat = msr_low | ((u64) msr_high << 32);
3781 /* Write the default value follow host pat */
3782 vmcs_write64(GUEST_IA32_PAT, host_pat);
3783 /* Keep arch.pat sync with GUEST_IA32_PAT */
3784 vmx->vcpu.arch.pat = host_pat;
3785 }
3786
Avi Kivity6aa8b732006-12-10 02:21:36 -08003787 for (i = 0; i < NR_VMX_MSR; ++i) {
3788 u32 index = vmx_msr_index[i];
3789 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003790 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003791
3792 if (rdmsr_safe(index, &data_low, &data_high) < 0)
3793 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08003794 if (wrmsr_safe(index, data_low, data_high) < 0)
3795 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03003796 vmx->guest_msrs[j].index = i;
3797 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02003798 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003799 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003800 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003801
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003802 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003803
3804 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003805 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
3806
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003807 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003808 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003809
Zachary Amsden99e3e302010-08-19 22:07:17 -10003810 kvm_write_tsc(&vmx->vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003811
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003812 return 0;
3813}
3814
3815static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
3816{
3817 struct vcpu_vmx *vmx = to_vmx(vcpu);
3818 u64 msr;
Xiao Guangrong4b9d3a02010-06-08 10:15:51 +08003819 int ret;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003820
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003821 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003822
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003823 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003824
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003825 vmx->soft_vnmi_blocked = 0;
3826
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003827 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003828 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003829 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003830 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003831 msr |= MSR_IA32_APICBASE_BSP;
3832 kvm_set_apic_base(&vmx->vcpu, msr);
3833
Jan Kiszka10ab25c2010-05-25 16:01:50 +02003834 ret = fx_init(&vmx->vcpu);
3835 if (ret != 0)
3836 goto out;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003837
Avi Kivity2fb92db2011-04-27 19:42:18 +03003838 vmx_segment_cache_clear(vmx);
3839
Avi Kivity5706be02008-08-20 15:07:31 +03003840 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003841 /*
3842 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
3843 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
3844 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003845 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003846 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
3847 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
3848 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003849 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
3850 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003851 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003852
3853 seg_setup(VCPU_SREG_DS);
3854 seg_setup(VCPU_SREG_ES);
3855 seg_setup(VCPU_SREG_FS);
3856 seg_setup(VCPU_SREG_GS);
3857 seg_setup(VCPU_SREG_SS);
3858
3859 vmcs_write16(GUEST_TR_SELECTOR, 0);
3860 vmcs_writel(GUEST_TR_BASE, 0);
3861 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
3862 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3863
3864 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
3865 vmcs_writel(GUEST_LDTR_BASE, 0);
3866 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
3867 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
3868
3869 vmcs_write32(GUEST_SYSENTER_CS, 0);
3870 vmcs_writel(GUEST_SYSENTER_ESP, 0);
3871 vmcs_writel(GUEST_SYSENTER_EIP, 0);
3872
3873 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003874 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003875 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003876 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003877 kvm_rip_write(vcpu, 0);
3878 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003879
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003880 vmcs_writel(GUEST_DR7, 0x400);
3881
3882 vmcs_writel(GUEST_GDTR_BASE, 0);
3883 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
3884
3885 vmcs_writel(GUEST_IDTR_BASE, 0);
3886 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
3887
Anthony Liguori443381a2010-12-06 10:53:38 -06003888 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003889 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
3890 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
3891
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003892 /* Special registers */
3893 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
3894
3895 setup_msrs(vmx);
3896
Avi Kivity6aa8b732006-12-10 02:21:36 -08003897 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
3898
Sheng Yangf78e0e22007-10-29 09:40:42 +08003899 if (cpu_has_vmx_tpr_shadow()) {
3900 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
3901 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
3902 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09003903 __pa(vmx->vcpu.arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08003904 vmcs_write32(TPR_THRESHOLD, 0);
3905 }
3906
3907 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3908 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003909 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003910
Sheng Yang2384d2b2008-01-17 15:14:33 +08003911 if (vmx->vpid != 0)
3912 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
3913
Eduardo Habkostfa400522009-10-24 02:49:58 -02003914 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003915 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003916 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003917 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003918 vmx_fpu_activate(&vmx->vcpu);
3919 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003920
Gui Jianfengb9d762f2010-06-07 10:32:29 +08003921 vpid_sync_context(vmx);
Sheng Yang2384d2b2008-01-17 15:14:33 +08003922
Marcelo Tosatti3200f402008-03-29 20:17:59 -03003923 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003925 /* HACK: Don't enable emulation on guest boot/reset */
3926 vmx->emulation_required = 0;
3927
Avi Kivity6aa8b732006-12-10 02:21:36 -08003928out:
3929 return ret;
3930}
3931
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003932/*
3933 * In nested virtualization, check if L1 asked to exit on external interrupts.
3934 * For most existing hypervisors, this will always return true.
3935 */
3936static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
3937{
3938 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
3939 PIN_BASED_EXT_INTR_MASK;
3940}
3941
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003942static void enable_irq_window(struct kvm_vcpu *vcpu)
3943{
3944 u32 cpu_based_vm_exec_control;
Nadav Har'Eld6185f22011-09-22 13:52:56 +03003945 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) {
3946 /*
3947 * We get here if vmx_interrupt_allowed() said we can't
3948 * inject to L1 now because L2 must run. Ask L2 to exit
3949 * right after entry, so we can inject to L1 more promptly.
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003950 */
Nadav Har'Eld6185f22011-09-22 13:52:56 +03003951 kvm_make_request(KVM_REQ_IMMEDIATE_EXIT, vcpu);
Nadav Har'Elb6f12502011-05-25 23:13:06 +03003952 return;
Nadav Har'Eld6185f22011-09-22 13:52:56 +03003953 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003954
3955 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3956 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
3957 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3958}
3959
3960static void enable_nmi_window(struct kvm_vcpu *vcpu)
3961{
3962 u32 cpu_based_vm_exec_control;
3963
3964 if (!cpu_has_virtual_nmis()) {
3965 enable_irq_window(vcpu);
3966 return;
3967 }
3968
Avi Kivity30bd0c42010-11-01 23:20:48 +02003969 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
3970 enable_irq_window(vcpu);
3971 return;
3972 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003973 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3974 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3975 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3976}
3977
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003978static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03003979{
Avi Kivity9c8cba32007-11-22 11:42:59 +02003980 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003981 uint32_t intr;
3982 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02003983
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003984 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003985
Avi Kivityfa89a812008-09-01 15:57:51 +03003986 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003987 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003988 int inc_eip = 0;
3989 if (vcpu->arch.interrupt.soft)
3990 inc_eip = vcpu->arch.event_exit_inst_len;
3991 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003992 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003993 return;
3994 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003995 intr = irq | INTR_INFO_VALID_MASK;
3996 if (vcpu->arch.interrupt.soft) {
3997 intr |= INTR_TYPE_SOFT_INTR;
3998 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3999 vmx->vcpu.arch.event_exit_inst_len);
4000 } else
4001 intr |= INTR_TYPE_EXT_INTR;
4002 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Anthony Liguori443381a2010-12-06 10:53:38 -06004003 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03004004}
4005
Sheng Yangf08864b2008-05-15 18:23:25 +08004006static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4007{
Jan Kiszka66a5a342008-09-26 09:30:51 +02004008 struct vcpu_vmx *vmx = to_vmx(vcpu);
4009
Nadav Har'El0b6ac342011-05-25 23:13:36 +03004010 if (is_guest_mode(vcpu))
4011 return;
4012
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004013 if (!cpu_has_virtual_nmis()) {
4014 /*
4015 * Tracking the NMI-blocked state in software is built upon
4016 * finding the next open IRQ window. This, in turn, depends on
4017 * well-behaving guests: They have to keep IRQs disabled at
4018 * least as long as the NMI handler runs. Otherwise we may
4019 * cause NMI nesting, maybe breaking the guest. But as this is
4020 * highly unlikely, we can live with the residual risk.
4021 */
4022 vmx->soft_vnmi_blocked = 1;
4023 vmx->vnmi_blocked_time = 0;
4024 }
4025
Jan Kiszka487b3912008-09-26 09:30:56 +02004026 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02004027 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004028 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05004029 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02004030 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02004031 return;
4032 }
Sheng Yangf08864b2008-05-15 18:23:25 +08004033 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4034 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Anthony Liguori443381a2010-12-06 10:53:38 -06004035 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004036}
4037
Gleb Natapovc4282df2009-04-21 17:45:07 +03004038static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02004039{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02004040 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03004041 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02004042
Gleb Natapovc4282df2009-04-21 17:45:07 +03004043 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
Avi Kivity30bd0c42010-11-01 23:20:48 +02004044 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
4045 | GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02004046}
4047
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004048static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
4049{
4050 if (!cpu_has_virtual_nmis())
4051 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02004052 if (to_vmx(vcpu)->nmi_known_unmasked)
4053 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03004054 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004055}
4056
4057static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4058{
4059 struct vcpu_vmx *vmx = to_vmx(vcpu);
4060
4061 if (!cpu_has_virtual_nmis()) {
4062 if (vmx->soft_vnmi_blocked != masked) {
4063 vmx->soft_vnmi_blocked = masked;
4064 vmx->vnmi_blocked_time = 0;
4065 }
4066 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02004067 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01004068 if (masked)
4069 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4070 GUEST_INTR_STATE_NMI);
4071 else
4072 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4073 GUEST_INTR_STATE_NMI);
4074 }
4075}
4076
Gleb Natapov78646122009-03-23 12:12:11 +02004077static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
4078{
Nadav Har'Elb6f12502011-05-25 23:13:06 +03004079 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) {
Nadav Har'El51cfe382011-09-22 13:53:26 +03004080 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4081 if (to_vmx(vcpu)->nested.nested_run_pending ||
4082 (vmcs12->idt_vectoring_info_field &
4083 VECTORING_INFO_VALID_MASK))
Nadav Har'Elb6f12502011-05-25 23:13:06 +03004084 return 0;
4085 nested_vmx_vmexit(vcpu);
Nadav Har'Elb6f12502011-05-25 23:13:06 +03004086 vmcs12->vm_exit_reason = EXIT_REASON_EXTERNAL_INTERRUPT;
4087 vmcs12->vm_exit_intr_info = 0;
4088 /* fall through to normal code, but now in L1, not L2 */
4089 }
4090
Gleb Natapovc4282df2009-04-21 17:45:07 +03004091 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
4092 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4093 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02004094}
4095
Izik Eiduscbc94022007-10-25 00:29:55 +02004096static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4097{
4098 int ret;
4099 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08004100 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02004101 .guest_phys_addr = addr,
4102 .memory_size = PAGE_SIZE * 3,
4103 .flags = 0,
4104 };
4105
4106 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
4107 if (ret)
4108 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08004109 kvm->arch.tss_addr = addr;
Gleb Natapov93ea5382011-02-21 12:07:59 +02004110 if (!init_rmode_tss(kvm))
4111 return -ENOMEM;
4112
Izik Eiduscbc94022007-10-25 00:29:55 +02004113 return 0;
4114}
4115
Avi Kivity6aa8b732006-12-10 02:21:36 -08004116static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4117 int vec, u32 err_code)
4118{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03004119 /*
4120 * Instruction with address size override prefix opcode 0x67
4121 * Cause the #SS fault with 0 error code in VM86 mode.
4122 */
4123 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Andre Przywara51d8b662010-12-21 11:12:02 +01004124 if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004125 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004126 /*
4127 * Forward all other exceptions that are valid in real mode.
4128 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4129 * the required debugging infrastructure rework.
4130 */
4131 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004132 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004133 if (vcpu->guest_debug &
4134 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
4135 return 0;
4136 kvm_queue_exception(vcpu, vec);
4137 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004138 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004139 /*
4140 * Update instruction length as we may reinject the exception
4141 * from user space while in guest debugging mode.
4142 */
4143 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4144 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004145 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
4146 return 0;
4147 /* fall through */
4148 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02004149 case OF_VECTOR:
4150 case BR_VECTOR:
4151 case UD_VECTOR:
4152 case DF_VECTOR:
4153 case SS_VECTOR:
4154 case GP_VECTOR:
4155 case MF_VECTOR:
4156 kvm_queue_exception(vcpu, vec);
4157 return 1;
4158 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004159 return 0;
4160}
4161
Andi Kleena0861c02009-06-08 17:37:09 +08004162/*
4163 * Trigger machine check on the host. We assume all the MSRs are already set up
4164 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4165 * We pass a fake environment to the machine check handler because we want
4166 * the guest to be always treated like user space, no matter what context
4167 * it used internally.
4168 */
4169static void kvm_machine_check(void)
4170{
4171#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
4172 struct pt_regs regs = {
4173 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4174 .flags = X86_EFLAGS_IF,
4175 };
4176
4177 do_machine_check(&regs, 0);
4178#endif
4179}
4180
Avi Kivity851ba692009-08-24 11:10:17 +03004181static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08004182{
4183 /* already handled by vcpu_run */
4184 return 1;
4185}
4186
Avi Kivity851ba692009-08-24 11:10:17 +03004187static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004188{
Avi Kivity1155f762007-11-22 11:30:47 +02004189 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03004190 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004191 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004192 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004193 u32 vect_info;
4194 enum emulation_result er;
4195
Avi Kivity1155f762007-11-22 11:30:47 +02004196 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02004197 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004198
Andi Kleena0861c02009-06-08 17:37:09 +08004199 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03004200 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08004201
Avi Kivity6aa8b732006-12-10 02:21:36 -08004202 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02004203 !is_page_fault(intr_info)) {
4204 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4205 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
4206 vcpu->run->internal.ndata = 2;
4207 vcpu->run->internal.data[0] = vect_info;
4208 vcpu->run->internal.data[1] = intr_info;
4209 return 0;
4210 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004211
Jan Kiszkae4a41882008-09-26 09:30:46 +02004212 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02004213 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004214
4215 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03004216 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03004217 return 1;
4218 }
4219
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004220 if (is_invalid_opcode(intr_info)) {
Andre Przywara51d8b662010-12-21 11:12:02 +01004221 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004222 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02004223 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004224 return 1;
4225 }
4226
Avi Kivity6aa8b732006-12-10 02:21:36 -08004227 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004228 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004229 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
4230 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08004231 /* EPT won't cause page fault directly */
Julia Lawallcf3ace72011-08-02 12:34:57 +02004232 BUG_ON(enable_ept);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004233 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004234 trace_kvm_page_fault(cr2, error_code);
4235
Gleb Natapov3298b752009-05-11 13:35:46 +03004236 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03004237 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01004238 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004239 }
4240
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004241 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08004242 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004243 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004244 if (vcpu->arch.halt_request) {
4245 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004246 return kvm_emulate_halt(vcpu);
4247 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004248 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004249 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004250
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004251 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004252 switch (ex_no) {
4253 case DB_VECTOR:
4254 dr6 = vmcs_readl(EXIT_QUALIFICATION);
4255 if (!(vcpu->guest_debug &
4256 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
4257 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
4258 kvm_queue_exception(vcpu, DB_VECTOR);
4259 return 1;
4260 }
4261 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4262 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
4263 /* fall through */
4264 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004265 /*
4266 * Update instruction length as we may reinject #BP from
4267 * user space while in guest debugging mode. Reading it for
4268 * #DB as well causes no harm, it is not used in that case.
4269 */
4270 vmx->vcpu.arch.event_exit_inst_len =
4271 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004272 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004273 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004274 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4275 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004276 break;
4277 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004278 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4279 kvm_run->ex.exception = ex_no;
4280 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004281 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283 return 0;
4284}
4285
Avi Kivity851ba692009-08-24 11:10:17 +03004286static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004287{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004288 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004289 return 1;
4290}
4291
Avi Kivity851ba692009-08-24 11:10:17 +03004292static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004293{
Avi Kivity851ba692009-08-24 11:10:17 +03004294 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08004295 return 0;
4296}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004297
Avi Kivity851ba692009-08-24 11:10:17 +03004298static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004299{
He, Qingbfdaab02007-09-12 14:18:28 +08004300 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01004301 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004302 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303
He, Qingbfdaab02007-09-12 14:18:28 +08004304 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02004305 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004306 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004307
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004308 ++vcpu->stat.io_exits;
4309
4310 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01004311 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004312
4313 port = exit_qualification >> 16;
4314 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01004315 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004316
4317 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004318}
4319
Ingo Molnar102d8322007-02-19 14:37:47 +02004320static void
4321vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4322{
4323 /*
4324 * Patch in the VMCALL instruction:
4325 */
4326 hypercall[0] = 0x0f;
4327 hypercall[1] = 0x01;
4328 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004329}
4330
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004331/* called to set cr0 as approriate for a mov-to-cr0 exit. */
4332static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4333{
4334 if (to_vmx(vcpu)->nested.vmxon &&
4335 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
4336 return 1;
4337
4338 if (is_guest_mode(vcpu)) {
4339 /*
4340 * We get here when L2 changed cr0 in a way that did not change
4341 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
4342 * but did change L0 shadowed bits. This can currently happen
4343 * with the TS bit: L0 may want to leave TS on (for lazy fpu
4344 * loading) while pretending to allow the guest to change it.
4345 */
4346 if (kvm_set_cr0(vcpu, (val & vcpu->arch.cr0_guest_owned_bits) |
4347 (vcpu->arch.cr0 & ~vcpu->arch.cr0_guest_owned_bits)))
4348 return 1;
4349 vmcs_writel(CR0_READ_SHADOW, val);
4350 return 0;
4351 } else
4352 return kvm_set_cr0(vcpu, val);
4353}
4354
4355static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
4356{
4357 if (is_guest_mode(vcpu)) {
4358 if (kvm_set_cr4(vcpu, (val & vcpu->arch.cr4_guest_owned_bits) |
4359 (vcpu->arch.cr4 & ~vcpu->arch.cr4_guest_owned_bits)))
4360 return 1;
4361 vmcs_writel(CR4_READ_SHADOW, val);
4362 return 0;
4363 } else
4364 return kvm_set_cr4(vcpu, val);
4365}
4366
4367/* called to set cr0 as approriate for clts instruction exit. */
4368static void handle_clts(struct kvm_vcpu *vcpu)
4369{
4370 if (is_guest_mode(vcpu)) {
4371 /*
4372 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
4373 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
4374 * just pretend it's off (also in arch.cr0 for fpu_activate).
4375 */
4376 vmcs_writel(CR0_READ_SHADOW,
4377 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
4378 vcpu->arch.cr0 &= ~X86_CR0_TS;
4379 } else
4380 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
4381}
4382
Avi Kivity851ba692009-08-24 11:10:17 +03004383static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004384{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004385 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004386 int cr;
4387 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004388 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004389
He, Qingbfdaab02007-09-12 14:18:28 +08004390 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004391 cr = exit_qualification & 15;
4392 reg = (exit_qualification >> 8) & 15;
4393 switch ((exit_qualification >> 4) & 3) {
4394 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004395 val = kvm_register_read(vcpu, reg);
4396 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397 switch (cr) {
4398 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004399 err = handle_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004400 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004401 return 1;
4402 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004403 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004404 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004405 return 1;
4406 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004407 err = handle_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004408 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004409 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004410 case 8: {
4411 u8 cr8_prev = kvm_get_cr8(vcpu);
4412 u8 cr8 = kvm_register_read(vcpu, reg);
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004413 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004414 kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004415 if (irqchip_in_kernel(vcpu->kvm))
4416 return 1;
4417 if (cr8_prev <= cr8)
4418 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03004419 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004420 return 0;
4421 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004422 };
4423 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004424 case 2: /* clts */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03004425 handle_clts(vcpu);
Avi Kivity4d4ec082009-12-29 18:07:30 +02004426 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03004427 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02004428 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03004429 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004430 case 1: /*mov from cr*/
4431 switch (cr) {
4432 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004433 val = kvm_read_cr3(vcpu);
4434 kvm_register_write(vcpu, reg, val);
4435 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004436 skip_emulated_instruction(vcpu);
4437 return 1;
4438 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004439 val = kvm_get_cr8(vcpu);
4440 kvm_register_write(vcpu, reg, val);
4441 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004442 skip_emulated_instruction(vcpu);
4443 return 1;
4444 }
4445 break;
4446 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004447 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004448 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004449 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004450
4451 skip_emulated_instruction(vcpu);
4452 return 1;
4453 default:
4454 break;
4455 }
Avi Kivity851ba692009-08-24 11:10:17 +03004456 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10004457 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458 (int)(exit_qualification >> 4) & 3, cr);
4459 return 0;
4460}
4461
Avi Kivity851ba692009-08-24 11:10:17 +03004462static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004463{
He, Qingbfdaab02007-09-12 14:18:28 +08004464 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004465 int dr, reg;
4466
Jan Kiszkaf2483412010-01-20 18:20:20 +01004467 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004468 if (!kvm_require_cpl(vcpu, 0))
4469 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004470 dr = vmcs_readl(GUEST_DR7);
4471 if (dr & DR7_GD) {
4472 /*
4473 * As the vm-exit takes precedence over the debug trap, we
4474 * need to emulate the latter, either for the host or the
4475 * guest debugging itself.
4476 */
4477 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03004478 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
4479 vcpu->run->debug.arch.dr7 = dr;
4480 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004481 vmcs_readl(GUEST_CS_BASE) +
4482 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03004483 vcpu->run->debug.arch.exception = DB_VECTOR;
4484 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004485 return 0;
4486 } else {
4487 vcpu->arch.dr7 &= ~DR7_GD;
4488 vcpu->arch.dr6 |= DR6_BD;
4489 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
4490 kvm_queue_exception(vcpu, DB_VECTOR);
4491 return 1;
4492 }
4493 }
4494
He, Qingbfdaab02007-09-12 14:18:28 +08004495 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004496 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4497 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4498 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004499 unsigned long val;
4500 if (!kvm_get_dr(vcpu, dr, &val))
4501 kvm_register_write(vcpu, reg, val);
4502 } else
4503 kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004504 skip_emulated_instruction(vcpu);
4505 return 1;
4506}
4507
Gleb Natapov020df072010-04-13 10:05:23 +03004508static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
4509{
4510 vmcs_writel(GUEST_DR7, val);
4511}
4512
Avi Kivity851ba692009-08-24 11:10:17 +03004513static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004514{
Avi Kivity06465c52007-02-28 20:46:53 +02004515 kvm_emulate_cpuid(vcpu);
4516 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004517}
4518
Avi Kivity851ba692009-08-24 11:10:17 +03004519static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004520{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004521 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08004522 u64 data;
4523
4524 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02004525 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004526 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004527 return 1;
4528 }
4529
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004530 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004531
Avi Kivity6aa8b732006-12-10 02:21:36 -08004532 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004533 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
4534 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004535 skip_emulated_instruction(vcpu);
4536 return 1;
4537}
4538
Avi Kivity851ba692009-08-24 11:10:17 +03004539static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004540{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004541 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
4542 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
4543 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004544
4545 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02004546 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004547 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004548 return 1;
4549 }
4550
Avi Kivity59200272010-01-25 19:47:02 +02004551 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004552 skip_emulated_instruction(vcpu);
4553 return 1;
4554}
4555
Avi Kivity851ba692009-08-24 11:10:17 +03004556static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004557{
Avi Kivity3842d132010-07-27 12:30:24 +03004558 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004559 return 1;
4560}
4561
Avi Kivity851ba692009-08-24 11:10:17 +03004562static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004563{
Eddie Dong85f455f2007-07-06 12:20:49 +03004564 u32 cpu_based_vm_exec_control;
4565
4566 /* clear pending irq */
4567 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4568 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
4569 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004570
Avi Kivity3842d132010-07-27 12:30:24 +03004571 kvm_make_request(KVM_REQ_EVENT, vcpu);
4572
Jan Kiszkaa26bf122008-09-26 09:30:45 +02004573 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004574
Dor Laorc1150d82007-01-05 16:36:24 -08004575 /*
4576 * If the user space waits to inject interrupts, exit as soon as
4577 * possible
4578 */
Gleb Natapov80618232009-04-21 17:44:56 +03004579 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03004580 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03004581 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004582 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08004583 return 0;
4584 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004585 return 1;
4586}
4587
Avi Kivity851ba692009-08-24 11:10:17 +03004588static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004589{
4590 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03004591 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004592}
4593
Avi Kivity851ba692009-08-24 11:10:17 +03004594static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02004595{
Dor Laor510043d2007-02-19 18:25:43 +02004596 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004597 kvm_emulate_hypercall(vcpu);
4598 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02004599}
4600
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004601static int handle_invd(struct kvm_vcpu *vcpu)
4602{
Andre Przywara51d8b662010-12-21 11:12:02 +01004603 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004604}
4605
Avi Kivity851ba692009-08-24 11:10:17 +03004606static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03004607{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004608 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004609
4610 kvm_mmu_invlpg(vcpu, exit_qualification);
4611 skip_emulated_instruction(vcpu);
4612 return 1;
4613}
4614
Avi Kivity851ba692009-08-24 11:10:17 +03004615static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02004616{
4617 skip_emulated_instruction(vcpu);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004618 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02004619 return 1;
4620}
4621
Dexuan Cui2acf9232010-06-10 11:27:12 +08004622static int handle_xsetbv(struct kvm_vcpu *vcpu)
4623{
4624 u64 new_bv = kvm_read_edx_eax(vcpu);
4625 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
4626
4627 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
4628 skip_emulated_instruction(vcpu);
4629 return 1;
4630}
4631
Avi Kivity851ba692009-08-24 11:10:17 +03004632static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004633{
Kevin Tian58fbbf22011-08-30 13:56:17 +03004634 if (likely(fasteoi)) {
4635 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4636 int access_type, offset;
4637
4638 access_type = exit_qualification & APIC_ACCESS_TYPE;
4639 offset = exit_qualification & APIC_ACCESS_OFFSET;
4640 /*
4641 * Sane guest uses MOV to write EOI, with written value
4642 * not cared. So make a short-circuit here by avoiding
4643 * heavy instruction emulation.
4644 */
4645 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
4646 (offset == APIC_EOI)) {
4647 kvm_lapic_set_eoi(vcpu);
4648 skip_emulated_instruction(vcpu);
4649 return 1;
4650 }
4651 }
Andre Przywara51d8b662010-12-21 11:12:02 +01004652 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004653}
4654
Avi Kivity851ba692009-08-24 11:10:17 +03004655static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02004656{
Jan Kiszka60637aa2008-09-26 09:30:47 +02004657 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004658 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004659 bool has_error_code = false;
4660 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004661 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004662 int reason, type, idt_v;
4663
4664 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
4665 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02004666
4667 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4668
4669 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004670 if (reason == TASK_SWITCH_GATE && idt_v) {
4671 switch (type) {
4672 case INTR_TYPE_NMI_INTR:
4673 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02004674 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004675 break;
4676 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004677 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004678 kvm_clear_interrupt_queue(vcpu);
4679 break;
4680 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02004681 if (vmx->idt_vectoring_info &
4682 VECTORING_INFO_DELIVER_CODE_MASK) {
4683 has_error_code = true;
4684 error_code =
4685 vmcs_read32(IDT_VECTORING_ERROR_CODE);
4686 }
4687 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004688 case INTR_TYPE_SOFT_EXCEPTION:
4689 kvm_clear_exception_queue(vcpu);
4690 break;
4691 default:
4692 break;
4693 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02004694 }
Izik Eidus37817f22008-03-24 23:14:53 +02004695 tss_selector = exit_qualification;
4696
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004697 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
4698 type != INTR_TYPE_EXT_INTR &&
4699 type != INTR_TYPE_NMI_INTR))
4700 skip_emulated_instruction(vcpu);
4701
Gleb Natapovacb54512010-04-15 21:03:50 +03004702 if (kvm_task_switch(vcpu, tss_selector, reason,
4703 has_error_code, error_code) == EMULATE_FAIL) {
4704 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4705 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4706 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004707 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03004708 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004709
4710 /* clear all local breakpoint enable flags */
4711 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
4712
4713 /*
4714 * TODO: What about debug traps on tss switch?
4715 * Are we supposed to inject them and update dr6?
4716 */
4717
4718 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02004719}
4720
Avi Kivity851ba692009-08-24 11:10:17 +03004721static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08004722{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004723 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08004724 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08004725 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08004726
Sheng Yangf9c617f2009-03-25 10:08:52 +08004727 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08004728
4729 if (exit_qualification & (1 << 6)) {
4730 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02004731 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08004732 }
4733
4734 gla_validity = (exit_qualification >> 7) & 0x3;
4735 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
4736 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
4737 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
4738 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08004739 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08004740 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
4741 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03004742 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4743 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03004744 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08004745 }
4746
4747 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004748 trace_kvm_page_fault(gpa, exit_qualification);
Andre Przywaradc25e892010-12-21 11:12:07 +01004749 return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08004750}
4751
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004752static u64 ept_rsvd_mask(u64 spte, int level)
4753{
4754 int i;
4755 u64 mask = 0;
4756
4757 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
4758 mask |= (1ULL << i);
4759
4760 if (level > 2)
4761 /* bits 7:3 reserved */
4762 mask |= 0xf8;
4763 else if (level == 2) {
4764 if (spte & (1ULL << 7))
4765 /* 2MB ref, bits 20:12 reserved */
4766 mask |= 0x1ff000;
4767 else
4768 /* bits 6:3 reserved */
4769 mask |= 0x78;
4770 }
4771
4772 return mask;
4773}
4774
4775static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
4776 int level)
4777{
4778 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
4779
4780 /* 010b (write-only) */
4781 WARN_ON((spte & 0x7) == 0x2);
4782
4783 /* 110b (write/execute) */
4784 WARN_ON((spte & 0x7) == 0x6);
4785
4786 /* 100b (execute-only) and value not supported by logical processor */
4787 if (!cpu_has_vmx_ept_execute_only())
4788 WARN_ON((spte & 0x7) == 0x4);
4789
4790 /* not 000b */
4791 if ((spte & 0x7)) {
4792 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
4793
4794 if (rsvd_bits != 0) {
4795 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
4796 __func__, rsvd_bits);
4797 WARN_ON(1);
4798 }
4799
4800 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
4801 u64 ept_mem_type = (spte & 0x38) >> 3;
4802
4803 if (ept_mem_type == 2 || ept_mem_type == 3 ||
4804 ept_mem_type == 7) {
4805 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
4806 __func__, ept_mem_type);
4807 WARN_ON(1);
4808 }
4809 }
4810 }
4811}
4812
Avi Kivity851ba692009-08-24 11:10:17 +03004813static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004814{
4815 u64 sptes[4];
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004816 int nr_sptes, i, ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004817 gpa_t gpa;
4818
4819 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
4820
Xiao Guangrongce88dec2011-07-12 03:33:44 +08004821 ret = handle_mmio_page_fault_common(vcpu, gpa, true);
4822 if (likely(ret == 1))
4823 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
4824 EMULATE_DONE;
4825 if (unlikely(!ret))
4826 return 1;
4827
4828 /* It is the real ept misconfig */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004829 printk(KERN_ERR "EPT: Misconfiguration.\n");
4830 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
4831
4832 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
4833
4834 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
4835 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
4836
Avi Kivity851ba692009-08-24 11:10:17 +03004837 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4838 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004839
4840 return 0;
4841}
4842
Avi Kivity851ba692009-08-24 11:10:17 +03004843static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08004844{
4845 u32 cpu_based_vm_exec_control;
4846
4847 /* clear pending NMI */
4848 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4849 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
4850 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4851 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03004852 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004853
4854 return 1;
4855}
4856
Mohammed Gamal80ced182009-09-01 12:48:18 +02004857static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004858{
Avi Kivity8b3079a2009-01-05 12:10:54 +02004859 struct vcpu_vmx *vmx = to_vmx(vcpu);
4860 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02004861 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02004862 u32 cpu_exec_ctrl;
4863 bool intr_window_requested;
4864
4865 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4866 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004867
4868 while (!guest_state_valid(vcpu)) {
Avi Kivity49e9d552010-09-19 14:34:08 +02004869 if (intr_window_requested
4870 && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF))
4871 return handle_interrupt_window(&vmx->vcpu);
4872
Andre Przywara51d8b662010-12-21 11:12:02 +01004873 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004874
Mohammed Gamal80ced182009-09-01 12:48:18 +02004875 if (err == EMULATE_DO_MMIO) {
4876 ret = 0;
4877 goto out;
4878 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004879
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004880 if (err != EMULATE_DONE)
4881 return 0;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004882
4883 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02004884 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004885 if (need_resched())
4886 schedule();
4887 }
4888
Mohammed Gamal80ced182009-09-01 12:48:18 +02004889 vmx->emulation_required = 0;
4890out:
4891 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004892}
4893
Avi Kivity6aa8b732006-12-10 02:21:36 -08004894/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004895 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
4896 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
4897 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03004898static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004899{
4900 skip_emulated_instruction(vcpu);
4901 kvm_vcpu_on_spin(vcpu);
4902
4903 return 1;
4904}
4905
Sheng Yang59708672009-12-15 13:29:54 +08004906static int handle_invalid_op(struct kvm_vcpu *vcpu)
4907{
4908 kvm_queue_exception(vcpu, UD_VECTOR);
4909 return 1;
4910}
4911
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004912/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004913 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
4914 * We could reuse a single VMCS for all the L2 guests, but we also want the
4915 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
4916 * allows keeping them loaded on the processor, and in the future will allow
4917 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
4918 * every entry if they never change.
4919 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
4920 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
4921 *
4922 * The following functions allocate and free a vmcs02 in this pool.
4923 */
4924
4925/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
4926static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
4927{
4928 struct vmcs02_list *item;
4929 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4930 if (item->vmptr == vmx->nested.current_vmptr) {
4931 list_move(&item->list, &vmx->nested.vmcs02_pool);
4932 return &item->vmcs02;
4933 }
4934
4935 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
4936 /* Recycle the least recently used VMCS. */
4937 item = list_entry(vmx->nested.vmcs02_pool.prev,
4938 struct vmcs02_list, list);
4939 item->vmptr = vmx->nested.current_vmptr;
4940 list_move(&item->list, &vmx->nested.vmcs02_pool);
4941 return &item->vmcs02;
4942 }
4943
4944 /* Create a new VMCS */
4945 item = (struct vmcs02_list *)
4946 kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
4947 if (!item)
4948 return NULL;
4949 item->vmcs02.vmcs = alloc_vmcs();
4950 if (!item->vmcs02.vmcs) {
4951 kfree(item);
4952 return NULL;
4953 }
4954 loaded_vmcs_init(&item->vmcs02);
4955 item->vmptr = vmx->nested.current_vmptr;
4956 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
4957 vmx->nested.vmcs02_num++;
4958 return &item->vmcs02;
4959}
4960
4961/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
4962static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
4963{
4964 struct vmcs02_list *item;
4965 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4966 if (item->vmptr == vmptr) {
4967 free_loaded_vmcs(&item->vmcs02);
4968 list_del(&item->list);
4969 kfree(item);
4970 vmx->nested.vmcs02_num--;
4971 return;
4972 }
4973}
4974
4975/*
4976 * Free all VMCSs saved for this vcpu, except the one pointed by
4977 * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one
4978 * currently used, if running L2), and vmcs01 when running L2.
4979 */
4980static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
4981{
4982 struct vmcs02_list *item, *n;
4983 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
4984 if (vmx->loaded_vmcs != &item->vmcs02)
4985 free_loaded_vmcs(&item->vmcs02);
4986 list_del(&item->list);
4987 kfree(item);
4988 }
4989 vmx->nested.vmcs02_num = 0;
4990
4991 if (vmx->loaded_vmcs != &vmx->vmcs01)
4992 free_loaded_vmcs(&vmx->vmcs01);
4993}
4994
4995/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004996 * Emulate the VMXON instruction.
4997 * Currently, we just remember that VMX is active, and do not save or even
4998 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4999 * do not currently need to store anything in that guest-allocated memory
5000 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
5001 * argument is different from the VMXON pointer (which the spec says they do).
5002 */
5003static int handle_vmon(struct kvm_vcpu *vcpu)
5004{
5005 struct kvm_segment cs;
5006 struct vcpu_vmx *vmx = to_vmx(vcpu);
5007
5008 /* The Intel VMX Instruction Reference lists a bunch of bits that
5009 * are prerequisite to running VMXON, most notably cr4.VMXE must be
5010 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
5011 * Otherwise, we should fail with #UD. We test these now:
5012 */
5013 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
5014 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
5015 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
5016 kvm_queue_exception(vcpu, UD_VECTOR);
5017 return 1;
5018 }
5019
5020 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5021 if (is_long_mode(vcpu) && !cs.l) {
5022 kvm_queue_exception(vcpu, UD_VECTOR);
5023 return 1;
5024 }
5025
5026 if (vmx_get_cpl(vcpu)) {
5027 kvm_inject_gp(vcpu, 0);
5028 return 1;
5029 }
5030
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03005031 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
5032 vmx->nested.vmcs02_num = 0;
5033
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005034 vmx->nested.vmxon = true;
5035
5036 skip_emulated_instruction(vcpu);
5037 return 1;
5038}
5039
5040/*
5041 * Intel's VMX Instruction Reference specifies a common set of prerequisites
5042 * for running VMX instructions (except VMXON, whose prerequisites are
5043 * slightly different). It also specifies what exception to inject otherwise.
5044 */
5045static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
5046{
5047 struct kvm_segment cs;
5048 struct vcpu_vmx *vmx = to_vmx(vcpu);
5049
5050 if (!vmx->nested.vmxon) {
5051 kvm_queue_exception(vcpu, UD_VECTOR);
5052 return 0;
5053 }
5054
5055 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
5056 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
5057 (is_long_mode(vcpu) && !cs.l)) {
5058 kvm_queue_exception(vcpu, UD_VECTOR);
5059 return 0;
5060 }
5061
5062 if (vmx_get_cpl(vcpu)) {
5063 kvm_inject_gp(vcpu, 0);
5064 return 0;
5065 }
5066
5067 return 1;
5068}
5069
5070/*
5071 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
5072 * just stops using VMX.
5073 */
5074static void free_nested(struct vcpu_vmx *vmx)
5075{
5076 if (!vmx->nested.vmxon)
5077 return;
5078 vmx->nested.vmxon = false;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03005079 if (vmx->nested.current_vmptr != -1ull) {
5080 kunmap(vmx->nested.current_vmcs12_page);
5081 nested_release_page(vmx->nested.current_vmcs12_page);
5082 vmx->nested.current_vmptr = -1ull;
5083 vmx->nested.current_vmcs12 = NULL;
5084 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005085 /* Unpin physical memory we referred to in current vmcs02 */
5086 if (vmx->nested.apic_access_page) {
5087 nested_release_page(vmx->nested.apic_access_page);
5088 vmx->nested.apic_access_page = 0;
5089 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03005090
5091 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005092}
5093
5094/* Emulate the VMXOFF instruction */
5095static int handle_vmoff(struct kvm_vcpu *vcpu)
5096{
5097 if (!nested_vmx_check_permission(vcpu))
5098 return 1;
5099 free_nested(to_vmx(vcpu));
5100 skip_emulated_instruction(vcpu);
5101 return 1;
5102}
5103
5104/*
Nadav Har'El064aea72011-05-25 23:04:56 +03005105 * Decode the memory-address operand of a vmx instruction, as recorded on an
5106 * exit caused by such an instruction (run by a guest hypervisor).
5107 * On success, returns 0. When the operand is invalid, returns 1 and throws
5108 * #UD or #GP.
5109 */
5110static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
5111 unsigned long exit_qualification,
5112 u32 vmx_instruction_info, gva_t *ret)
5113{
5114 /*
5115 * According to Vol. 3B, "Information for VM Exits Due to Instruction
5116 * Execution", on an exit, vmx_instruction_info holds most of the
5117 * addressing components of the operand. Only the displacement part
5118 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
5119 * For how an actual address is calculated from all these components,
5120 * refer to Vol. 1, "Operand Addressing".
5121 */
5122 int scaling = vmx_instruction_info & 3;
5123 int addr_size = (vmx_instruction_info >> 7) & 7;
5124 bool is_reg = vmx_instruction_info & (1u << 10);
5125 int seg_reg = (vmx_instruction_info >> 15) & 7;
5126 int index_reg = (vmx_instruction_info >> 18) & 0xf;
5127 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
5128 int base_reg = (vmx_instruction_info >> 23) & 0xf;
5129 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
5130
5131 if (is_reg) {
5132 kvm_queue_exception(vcpu, UD_VECTOR);
5133 return 1;
5134 }
5135
5136 /* Addr = segment_base + offset */
5137 /* offset = base + [index * scale] + displacement */
5138 *ret = vmx_get_segment_base(vcpu, seg_reg);
5139 if (base_is_valid)
5140 *ret += kvm_register_read(vcpu, base_reg);
5141 if (index_is_valid)
5142 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
5143 *ret += exit_qualification; /* holds the displacement */
5144
5145 if (addr_size == 1) /* 32 bit */
5146 *ret &= 0xffffffff;
5147
5148 /*
5149 * TODO: throw #GP (and return 1) in various cases that the VM*
5150 * instructions require it - e.g., offset beyond segment limit,
5151 * unusable or unreadable/unwritable segment, non-canonical 64-bit
5152 * address, and so on. Currently these are not checked.
5153 */
5154 return 0;
5155}
5156
5157/*
Nadav Har'El0140cae2011-05-25 23:06:28 +03005158 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
5159 * set the success or error code of an emulated VMX instruction, as specified
5160 * by Vol 2B, VMX Instruction Reference, "Conventions".
5161 */
5162static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
5163{
5164 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
5165 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5166 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
5167}
5168
5169static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
5170{
5171 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5172 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
5173 X86_EFLAGS_SF | X86_EFLAGS_OF))
5174 | X86_EFLAGS_CF);
5175}
5176
5177static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
5178 u32 vm_instruction_error)
5179{
5180 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
5181 /*
5182 * failValid writes the error number to the current VMCS, which
5183 * can't be done there isn't a current VMCS.
5184 */
5185 nested_vmx_failInvalid(vcpu);
5186 return;
5187 }
5188 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5189 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5190 X86_EFLAGS_SF | X86_EFLAGS_OF))
5191 | X86_EFLAGS_ZF);
5192 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
5193}
5194
Nadav Har'El27d6c862011-05-25 23:06:59 +03005195/* Emulate the VMCLEAR instruction */
5196static int handle_vmclear(struct kvm_vcpu *vcpu)
5197{
5198 struct vcpu_vmx *vmx = to_vmx(vcpu);
5199 gva_t gva;
5200 gpa_t vmptr;
5201 struct vmcs12 *vmcs12;
5202 struct page *page;
5203 struct x86_exception e;
5204
5205 if (!nested_vmx_check_permission(vcpu))
5206 return 1;
5207
5208 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5209 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
5210 return 1;
5211
5212 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
5213 sizeof(vmptr), &e)) {
5214 kvm_inject_page_fault(vcpu, &e);
5215 return 1;
5216 }
5217
5218 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
5219 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
5220 skip_emulated_instruction(vcpu);
5221 return 1;
5222 }
5223
5224 if (vmptr == vmx->nested.current_vmptr) {
5225 kunmap(vmx->nested.current_vmcs12_page);
5226 nested_release_page(vmx->nested.current_vmcs12_page);
5227 vmx->nested.current_vmptr = -1ull;
5228 vmx->nested.current_vmcs12 = NULL;
5229 }
5230
5231 page = nested_get_page(vcpu, vmptr);
5232 if (page == NULL) {
5233 /*
5234 * For accurate processor emulation, VMCLEAR beyond available
5235 * physical memory should do nothing at all. However, it is
5236 * possible that a nested vmx bug, not a guest hypervisor bug,
5237 * resulted in this case, so let's shut down before doing any
5238 * more damage:
5239 */
5240 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
5241 return 1;
5242 }
5243 vmcs12 = kmap(page);
5244 vmcs12->launch_state = 0;
5245 kunmap(page);
5246 nested_release_page(page);
5247
5248 nested_free_vmcs02(vmx, vmptr);
5249
5250 skip_emulated_instruction(vcpu);
5251 nested_vmx_succeed(vcpu);
5252 return 1;
5253}
5254
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005255static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
5256
5257/* Emulate the VMLAUNCH instruction */
5258static int handle_vmlaunch(struct kvm_vcpu *vcpu)
5259{
5260 return nested_vmx_run(vcpu, true);
5261}
5262
5263/* Emulate the VMRESUME instruction */
5264static int handle_vmresume(struct kvm_vcpu *vcpu)
5265{
5266
5267 return nested_vmx_run(vcpu, false);
5268}
5269
Nadav Har'El49f705c2011-05-25 23:08:30 +03005270enum vmcs_field_type {
5271 VMCS_FIELD_TYPE_U16 = 0,
5272 VMCS_FIELD_TYPE_U64 = 1,
5273 VMCS_FIELD_TYPE_U32 = 2,
5274 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
5275};
5276
5277static inline int vmcs_field_type(unsigned long field)
5278{
5279 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
5280 return VMCS_FIELD_TYPE_U32;
5281 return (field >> 13) & 0x3 ;
5282}
5283
5284static inline int vmcs_field_readonly(unsigned long field)
5285{
5286 return (((field >> 10) & 0x3) == 1);
5287}
5288
5289/*
5290 * Read a vmcs12 field. Since these can have varying lengths and we return
5291 * one type, we chose the biggest type (u64) and zero-extend the return value
5292 * to that size. Note that the caller, handle_vmread, might need to use only
5293 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
5294 * 64-bit fields are to be returned).
5295 */
5296static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu,
5297 unsigned long field, u64 *ret)
5298{
5299 short offset = vmcs_field_to_offset(field);
5300 char *p;
5301
5302 if (offset < 0)
5303 return 0;
5304
5305 p = ((char *)(get_vmcs12(vcpu))) + offset;
5306
5307 switch (vmcs_field_type(field)) {
5308 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5309 *ret = *((natural_width *)p);
5310 return 1;
5311 case VMCS_FIELD_TYPE_U16:
5312 *ret = *((u16 *)p);
5313 return 1;
5314 case VMCS_FIELD_TYPE_U32:
5315 *ret = *((u32 *)p);
5316 return 1;
5317 case VMCS_FIELD_TYPE_U64:
5318 *ret = *((u64 *)p);
5319 return 1;
5320 default:
5321 return 0; /* can never happen. */
5322 }
5323}
5324
5325/*
5326 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
5327 * used before) all generate the same failure when it is missing.
5328 */
5329static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
5330{
5331 struct vcpu_vmx *vmx = to_vmx(vcpu);
5332 if (vmx->nested.current_vmptr == -1ull) {
5333 nested_vmx_failInvalid(vcpu);
5334 skip_emulated_instruction(vcpu);
5335 return 0;
5336 }
5337 return 1;
5338}
5339
5340static int handle_vmread(struct kvm_vcpu *vcpu)
5341{
5342 unsigned long field;
5343 u64 field_value;
5344 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5345 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5346 gva_t gva = 0;
5347
5348 if (!nested_vmx_check_permission(vcpu) ||
5349 !nested_vmx_check_vmcs12(vcpu))
5350 return 1;
5351
5352 /* Decode instruction info and find the field to read */
5353 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5354 /* Read the field, zero-extended to a u64 field_value */
5355 if (!vmcs12_read_any(vcpu, field, &field_value)) {
5356 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5357 skip_emulated_instruction(vcpu);
5358 return 1;
5359 }
5360 /*
5361 * Now copy part of this value to register or memory, as requested.
5362 * Note that the number of bits actually copied is 32 or 64 depending
5363 * on the guest's mode (32 or 64 bit), not on the given field's length.
5364 */
5365 if (vmx_instruction_info & (1u << 10)) {
5366 kvm_register_write(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
5367 field_value);
5368 } else {
5369 if (get_vmx_mem_address(vcpu, exit_qualification,
5370 vmx_instruction_info, &gva))
5371 return 1;
5372 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
5373 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
5374 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
5375 }
5376
5377 nested_vmx_succeed(vcpu);
5378 skip_emulated_instruction(vcpu);
5379 return 1;
5380}
5381
5382
5383static int handle_vmwrite(struct kvm_vcpu *vcpu)
5384{
5385 unsigned long field;
5386 gva_t gva;
5387 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5388 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5389 char *p;
5390 short offset;
5391 /* The value to write might be 32 or 64 bits, depending on L1's long
5392 * mode, and eventually we need to write that into a field of several
5393 * possible lengths. The code below first zero-extends the value to 64
5394 * bit (field_value), and then copies only the approriate number of
5395 * bits into the vmcs12 field.
5396 */
5397 u64 field_value = 0;
5398 struct x86_exception e;
5399
5400 if (!nested_vmx_check_permission(vcpu) ||
5401 !nested_vmx_check_vmcs12(vcpu))
5402 return 1;
5403
5404 if (vmx_instruction_info & (1u << 10))
5405 field_value = kvm_register_read(vcpu,
5406 (((vmx_instruction_info) >> 3) & 0xf));
5407 else {
5408 if (get_vmx_mem_address(vcpu, exit_qualification,
5409 vmx_instruction_info, &gva))
5410 return 1;
5411 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
5412 &field_value, (is_long_mode(vcpu) ? 8 : 4), &e)) {
5413 kvm_inject_page_fault(vcpu, &e);
5414 return 1;
5415 }
5416 }
5417
5418
5419 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5420 if (vmcs_field_readonly(field)) {
5421 nested_vmx_failValid(vcpu,
5422 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
5423 skip_emulated_instruction(vcpu);
5424 return 1;
5425 }
5426
5427 offset = vmcs_field_to_offset(field);
5428 if (offset < 0) {
5429 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5430 skip_emulated_instruction(vcpu);
5431 return 1;
5432 }
5433 p = ((char *) get_vmcs12(vcpu)) + offset;
5434
5435 switch (vmcs_field_type(field)) {
5436 case VMCS_FIELD_TYPE_U16:
5437 *(u16 *)p = field_value;
5438 break;
5439 case VMCS_FIELD_TYPE_U32:
5440 *(u32 *)p = field_value;
5441 break;
5442 case VMCS_FIELD_TYPE_U64:
5443 *(u64 *)p = field_value;
5444 break;
5445 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5446 *(natural_width *)p = field_value;
5447 break;
5448 default:
5449 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5450 skip_emulated_instruction(vcpu);
5451 return 1;
5452 }
5453
5454 nested_vmx_succeed(vcpu);
5455 skip_emulated_instruction(vcpu);
5456 return 1;
5457}
5458
Nadav Har'El63846662011-05-25 23:07:29 +03005459/* Emulate the VMPTRLD instruction */
5460static int handle_vmptrld(struct kvm_vcpu *vcpu)
5461{
5462 struct vcpu_vmx *vmx = to_vmx(vcpu);
5463 gva_t gva;
5464 gpa_t vmptr;
5465 struct x86_exception e;
5466
5467 if (!nested_vmx_check_permission(vcpu))
5468 return 1;
5469
5470 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5471 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
5472 return 1;
5473
5474 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
5475 sizeof(vmptr), &e)) {
5476 kvm_inject_page_fault(vcpu, &e);
5477 return 1;
5478 }
5479
5480 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
5481 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
5482 skip_emulated_instruction(vcpu);
5483 return 1;
5484 }
5485
5486 if (vmx->nested.current_vmptr != vmptr) {
5487 struct vmcs12 *new_vmcs12;
5488 struct page *page;
5489 page = nested_get_page(vcpu, vmptr);
5490 if (page == NULL) {
5491 nested_vmx_failInvalid(vcpu);
5492 skip_emulated_instruction(vcpu);
5493 return 1;
5494 }
5495 new_vmcs12 = kmap(page);
5496 if (new_vmcs12->revision_id != VMCS12_REVISION) {
5497 kunmap(page);
5498 nested_release_page_clean(page);
5499 nested_vmx_failValid(vcpu,
5500 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
5501 skip_emulated_instruction(vcpu);
5502 return 1;
5503 }
5504 if (vmx->nested.current_vmptr != -1ull) {
5505 kunmap(vmx->nested.current_vmcs12_page);
5506 nested_release_page(vmx->nested.current_vmcs12_page);
5507 }
5508
5509 vmx->nested.current_vmptr = vmptr;
5510 vmx->nested.current_vmcs12 = new_vmcs12;
5511 vmx->nested.current_vmcs12_page = page;
5512 }
5513
5514 nested_vmx_succeed(vcpu);
5515 skip_emulated_instruction(vcpu);
5516 return 1;
5517}
5518
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005519/* Emulate the VMPTRST instruction */
5520static int handle_vmptrst(struct kvm_vcpu *vcpu)
5521{
5522 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5523 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5524 gva_t vmcs_gva;
5525 struct x86_exception e;
5526
5527 if (!nested_vmx_check_permission(vcpu))
5528 return 1;
5529
5530 if (get_vmx_mem_address(vcpu, exit_qualification,
5531 vmx_instruction_info, &vmcs_gva))
5532 return 1;
5533 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
5534 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
5535 (void *)&to_vmx(vcpu)->nested.current_vmptr,
5536 sizeof(u64), &e)) {
5537 kvm_inject_page_fault(vcpu, &e);
5538 return 1;
5539 }
5540 nested_vmx_succeed(vcpu);
5541 skip_emulated_instruction(vcpu);
5542 return 1;
5543}
5544
Nadav Har'El0140cae2011-05-25 23:06:28 +03005545/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005546 * The exit handlers return 1 if the exit was handled fully and guest execution
5547 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5548 * to be done to userspace and return 0.
5549 */
Avi Kivity851ba692009-08-24 11:10:17 +03005550static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005551 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
5552 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005553 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005554 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005555 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005556 [EXIT_REASON_CR_ACCESS] = handle_cr,
5557 [EXIT_REASON_DR_ACCESS] = handle_dr,
5558 [EXIT_REASON_CPUID] = handle_cpuid,
5559 [EXIT_REASON_MSR_READ] = handle_rdmsr,
5560 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
5561 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
5562 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005563 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005564 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005565 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03005566 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005567 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03005568 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005569 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005570 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005571 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005572 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005573 [EXIT_REASON_VMOFF] = handle_vmoff,
5574 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005575 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5576 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02005577 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005578 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005579 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005580 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005581 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5582 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005583 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08005584 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
5585 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005586};
5587
5588static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005589 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005590
Nadav Har'El644d7112011-05-25 23:12:35 +03005591/*
5592 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
5593 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
5594 * disinterest in the current event (read or write a specific MSR) by using an
5595 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
5596 */
5597static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
5598 struct vmcs12 *vmcs12, u32 exit_reason)
5599{
5600 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
5601 gpa_t bitmap;
5602
5603 if (!nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_USE_MSR_BITMAPS))
5604 return 1;
5605
5606 /*
5607 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
5608 * for the four combinations of read/write and low/high MSR numbers.
5609 * First we need to figure out which of the four to use:
5610 */
5611 bitmap = vmcs12->msr_bitmap;
5612 if (exit_reason == EXIT_REASON_MSR_WRITE)
5613 bitmap += 2048;
5614 if (msr_index >= 0xc0000000) {
5615 msr_index -= 0xc0000000;
5616 bitmap += 1024;
5617 }
5618
5619 /* Then read the msr_index'th bit from this bitmap: */
5620 if (msr_index < 1024*8) {
5621 unsigned char b;
5622 kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1);
5623 return 1 & (b >> (msr_index & 7));
5624 } else
5625 return 1; /* let L1 handle the wrong parameter */
5626}
5627
5628/*
5629 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
5630 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
5631 * intercept (via guest_host_mask etc.) the current event.
5632 */
5633static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
5634 struct vmcs12 *vmcs12)
5635{
5636 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5637 int cr = exit_qualification & 15;
5638 int reg = (exit_qualification >> 8) & 15;
5639 unsigned long val = kvm_register_read(vcpu, reg);
5640
5641 switch ((exit_qualification >> 4) & 3) {
5642 case 0: /* mov to cr */
5643 switch (cr) {
5644 case 0:
5645 if (vmcs12->cr0_guest_host_mask &
5646 (val ^ vmcs12->cr0_read_shadow))
5647 return 1;
5648 break;
5649 case 3:
5650 if ((vmcs12->cr3_target_count >= 1 &&
5651 vmcs12->cr3_target_value0 == val) ||
5652 (vmcs12->cr3_target_count >= 2 &&
5653 vmcs12->cr3_target_value1 == val) ||
5654 (vmcs12->cr3_target_count >= 3 &&
5655 vmcs12->cr3_target_value2 == val) ||
5656 (vmcs12->cr3_target_count >= 4 &&
5657 vmcs12->cr3_target_value3 == val))
5658 return 0;
5659 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
5660 return 1;
5661 break;
5662 case 4:
5663 if (vmcs12->cr4_guest_host_mask &
5664 (vmcs12->cr4_read_shadow ^ val))
5665 return 1;
5666 break;
5667 case 8:
5668 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
5669 return 1;
5670 break;
5671 }
5672 break;
5673 case 2: /* clts */
5674 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
5675 (vmcs12->cr0_read_shadow & X86_CR0_TS))
5676 return 1;
5677 break;
5678 case 1: /* mov from cr */
5679 switch (cr) {
5680 case 3:
5681 if (vmcs12->cpu_based_vm_exec_control &
5682 CPU_BASED_CR3_STORE_EXITING)
5683 return 1;
5684 break;
5685 case 8:
5686 if (vmcs12->cpu_based_vm_exec_control &
5687 CPU_BASED_CR8_STORE_EXITING)
5688 return 1;
5689 break;
5690 }
5691 break;
5692 case 3: /* lmsw */
5693 /*
5694 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
5695 * cr0. Other attempted changes are ignored, with no exit.
5696 */
5697 if (vmcs12->cr0_guest_host_mask & 0xe &
5698 (val ^ vmcs12->cr0_read_shadow))
5699 return 1;
5700 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
5701 !(vmcs12->cr0_read_shadow & 0x1) &&
5702 (val & 0x1))
5703 return 1;
5704 break;
5705 }
5706 return 0;
5707}
5708
5709/*
5710 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
5711 * should handle it ourselves in L0 (and then continue L2). Only call this
5712 * when in is_guest_mode (L2).
5713 */
5714static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
5715{
5716 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
5717 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
5718 struct vcpu_vmx *vmx = to_vmx(vcpu);
5719 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5720
5721 if (vmx->nested.nested_run_pending)
5722 return 0;
5723
5724 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02005725 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
5726 vmcs_read32(VM_INSTRUCTION_ERROR));
Nadav Har'El644d7112011-05-25 23:12:35 +03005727 return 1;
5728 }
5729
5730 switch (exit_reason) {
5731 case EXIT_REASON_EXCEPTION_NMI:
5732 if (!is_exception(intr_info))
5733 return 0;
5734 else if (is_page_fault(intr_info))
5735 return enable_ept;
5736 return vmcs12->exception_bitmap &
5737 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
5738 case EXIT_REASON_EXTERNAL_INTERRUPT:
5739 return 0;
5740 case EXIT_REASON_TRIPLE_FAULT:
5741 return 1;
5742 case EXIT_REASON_PENDING_INTERRUPT:
5743 case EXIT_REASON_NMI_WINDOW:
5744 /*
5745 * prepare_vmcs02() set the CPU_BASED_VIRTUAL_INTR_PENDING bit
5746 * (aka Interrupt Window Exiting) only when L1 turned it on,
5747 * so if we got a PENDING_INTERRUPT exit, this must be for L1.
5748 * Same for NMI Window Exiting.
5749 */
5750 return 1;
5751 case EXIT_REASON_TASK_SWITCH:
5752 return 1;
5753 case EXIT_REASON_CPUID:
5754 return 1;
5755 case EXIT_REASON_HLT:
5756 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
5757 case EXIT_REASON_INVD:
5758 return 1;
5759 case EXIT_REASON_INVLPG:
5760 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
5761 case EXIT_REASON_RDPMC:
5762 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
5763 case EXIT_REASON_RDTSC:
5764 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
5765 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
5766 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
5767 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
5768 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
5769 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
5770 /*
5771 * VMX instructions trap unconditionally. This allows L1 to
5772 * emulate them for its L2 guest, i.e., allows 3-level nesting!
5773 */
5774 return 1;
5775 case EXIT_REASON_CR_ACCESS:
5776 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
5777 case EXIT_REASON_DR_ACCESS:
5778 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
5779 case EXIT_REASON_IO_INSTRUCTION:
5780 /* TODO: support IO bitmaps */
5781 return 1;
5782 case EXIT_REASON_MSR_READ:
5783 case EXIT_REASON_MSR_WRITE:
5784 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
5785 case EXIT_REASON_INVALID_STATE:
5786 return 1;
5787 case EXIT_REASON_MWAIT_INSTRUCTION:
5788 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
5789 case EXIT_REASON_MONITOR_INSTRUCTION:
5790 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
5791 case EXIT_REASON_PAUSE_INSTRUCTION:
5792 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
5793 nested_cpu_has2(vmcs12,
5794 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
5795 case EXIT_REASON_MCE_DURING_VMENTRY:
5796 return 0;
5797 case EXIT_REASON_TPR_BELOW_THRESHOLD:
5798 return 1;
5799 case EXIT_REASON_APIC_ACCESS:
5800 return nested_cpu_has2(vmcs12,
5801 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
5802 case EXIT_REASON_EPT_VIOLATION:
5803 case EXIT_REASON_EPT_MISCONFIG:
5804 return 0;
5805 case EXIT_REASON_WBINVD:
5806 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
5807 case EXIT_REASON_XSETBV:
5808 return 1;
5809 default:
5810 return 1;
5811 }
5812}
5813
Avi Kivity586f9602010-11-18 13:09:54 +02005814static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
5815{
5816 *info1 = vmcs_readl(EXIT_QUALIFICATION);
5817 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
5818}
5819
Avi Kivity6aa8b732006-12-10 02:21:36 -08005820/*
5821 * The guest has exited. See if we can fix it or if we need userspace
5822 * assistance.
5823 */
Avi Kivity851ba692009-08-24 11:10:17 +03005824static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005825{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005826 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005827 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005828 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005829
Mohammed Gamal80ced182009-09-01 12:48:18 +02005830 /* If guest state is invalid, start emulating */
5831 if (vmx->emulation_required && emulate_invalid_guest_state)
5832 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005833
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005834 /*
5835 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
5836 * we did not inject a still-pending event to L1 now because of
5837 * nested_run_pending, we need to re-enable this bit.
5838 */
5839 if (vmx->nested.nested_run_pending)
5840 kvm_make_request(KVM_REQ_EVENT, vcpu);
5841
Nadav Har'El509c75e2011-06-02 11:54:52 +03005842 if (!is_guest_mode(vcpu) && (exit_reason == EXIT_REASON_VMLAUNCH ||
5843 exit_reason == EXIT_REASON_VMRESUME))
Nadav Har'El644d7112011-05-25 23:12:35 +03005844 vmx->nested.nested_run_pending = 1;
5845 else
5846 vmx->nested.nested_run_pending = 0;
5847
5848 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
5849 nested_vmx_vmexit(vcpu);
5850 return 1;
5851 }
5852
Mohammed Gamal51207022010-05-31 22:40:54 +03005853 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
5854 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5855 vcpu->run->fail_entry.hardware_entry_failure_reason
5856 = exit_reason;
5857 return 0;
5858 }
5859
Avi Kivity29bd8a72007-09-10 17:27:03 +03005860 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005861 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5862 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005863 = vmcs_read32(VM_INSTRUCTION_ERROR);
5864 return 0;
5865 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005866
Mike Dayd77c26f2007-10-08 09:02:08 -04005867 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005868 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005869 exit_reason != EXIT_REASON_EPT_VIOLATION &&
5870 exit_reason != EXIT_REASON_TASK_SWITCH))
5871 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
5872 "(0x%x) and exit reason is 0x%x\n",
5873 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005874
Nadav Har'El644d7112011-05-25 23:12:35 +03005875 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
5876 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
5877 get_vmcs12(vcpu), vcpu)))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03005878 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005879 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005880 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01005881 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005882 /*
5883 * This CPU don't support us in finding the end of an
5884 * NMI-blocked window if the guest runs with IRQs
5885 * disabled. So we pull the trigger after 1 s of
5886 * futile waiting, but inform the user about this.
5887 */
5888 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5889 "state on VCPU %d after 1 s timeout\n",
5890 __func__, vcpu->vcpu_id);
5891 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005892 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005893 }
5894
Avi Kivity6aa8b732006-12-10 02:21:36 -08005895 if (exit_reason < kvm_vmx_max_exit_handlers
5896 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03005897 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005898 else {
Avi Kivity851ba692009-08-24 11:10:17 +03005899 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5900 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005901 }
5902 return 0;
5903}
5904
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005905static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005906{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005907 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005908 vmcs_write32(TPR_THRESHOLD, 0);
5909 return;
5910 }
5911
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005912 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005913}
5914
Avi Kivity51aa01d2010-07-20 14:31:20 +03005915static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03005916{
Avi Kivity00eba012011-03-07 17:24:54 +02005917 u32 exit_intr_info;
5918
5919 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
5920 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
5921 return;
5922
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005923 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02005924 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08005925
5926 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005927 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08005928 kvm_machine_check();
5929
Gleb Natapov20f65982009-05-11 13:35:55 +03005930 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005931 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005932 (exit_intr_info & INTR_INFO_VALID_MASK)) {
5933 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03005934 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005935 kvm_after_handle_nmi(&vmx->vcpu);
5936 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03005937}
Gleb Natapov20f65982009-05-11 13:35:55 +03005938
Avi Kivity51aa01d2010-07-20 14:31:20 +03005939static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
5940{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005941 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03005942 bool unblock_nmi;
5943 u8 vector;
5944 bool idtv_info_valid;
5945
5946 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03005947
Avi Kivitycf393f72008-07-01 16:20:21 +03005948 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02005949 if (vmx->nmi_known_unmasked)
5950 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005951 /*
5952 * Can't use vmx->exit_intr_info since we're not sure what
5953 * the exit reason is.
5954 */
5955 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03005956 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
5957 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
5958 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005959 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03005960 * Re-set bit "block by NMI" before VM entry if vmexit caused by
5961 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005962 * SDM 3: 23.2.2 (September 2008)
5963 * Bit 12 is undefined in any of the following cases:
5964 * If the VM exit sets the valid bit in the IDT-vectoring
5965 * information field.
5966 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03005967 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005968 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
5969 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03005970 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5971 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02005972 else
5973 vmx->nmi_known_unmasked =
5974 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
5975 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005976 } else if (unlikely(vmx->soft_vnmi_blocked))
5977 vmx->vnmi_blocked_time +=
5978 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03005979}
5980
Avi Kivity83422e12010-07-20 14:43:23 +03005981static void __vmx_complete_interrupts(struct vcpu_vmx *vmx,
5982 u32 idt_vectoring_info,
5983 int instr_len_field,
5984 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03005985{
Avi Kivity51aa01d2010-07-20 14:31:20 +03005986 u8 vector;
5987 int type;
5988 bool idtv_info_valid;
5989
5990 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03005991
Gleb Natapov37b96e92009-03-30 16:03:13 +03005992 vmx->vcpu.arch.nmi_injected = false;
5993 kvm_clear_exception_queue(&vmx->vcpu);
5994 kvm_clear_interrupt_queue(&vmx->vcpu);
5995
5996 if (!idtv_info_valid)
5997 return;
5998
Avi Kivity3842d132010-07-27 12:30:24 +03005999 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
6000
Avi Kivity668f6122008-07-02 09:28:55 +03006001 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
6002 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006003
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006004 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03006005 case INTR_TYPE_NMI_INTR:
6006 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03006007 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03006008 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03006009 * Clear bit "block by NMI" before VM entry if a NMI
6010 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03006011 */
Avi Kivity654f06f2011-03-23 15:02:47 +02006012 vmx_set_nmi_mask(&vmx->vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006013 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03006014 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006015 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03006016 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006017 /* fall through */
6018 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03006019 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03006020 u32 err = vmcs_read32(error_code_field);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006021 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03006022 } else
6023 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006024 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006025 case INTR_TYPE_SOFT_INTR:
6026 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03006027 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006028 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03006029 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006030 kvm_queue_interrupt(&vmx->vcpu, vector,
6031 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03006032 break;
6033 default:
6034 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03006035 }
Avi Kivitycf393f72008-07-01 16:20:21 +03006036}
6037
Avi Kivity83422e12010-07-20 14:43:23 +03006038static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
6039{
Nadav Har'El66c78ae2011-05-25 23:14:07 +03006040 if (is_guest_mode(&vmx->vcpu))
6041 return;
Avi Kivity83422e12010-07-20 14:43:23 +03006042 __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info,
6043 VM_EXIT_INSTRUCTION_LEN,
6044 IDT_VECTORING_ERROR_CODE);
6045}
6046
Avi Kivityb463a6f2010-07-20 15:06:17 +03006047static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
6048{
Nadav Har'El66c78ae2011-05-25 23:14:07 +03006049 if (is_guest_mode(vcpu))
6050 return;
Avi Kivityb463a6f2010-07-20 15:06:17 +03006051 __vmx_complete_interrupts(to_vmx(vcpu),
6052 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
6053 VM_ENTRY_INSTRUCTION_LEN,
6054 VM_ENTRY_EXCEPTION_ERROR_CODE);
6055
6056 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
6057}
6058
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006059static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
6060{
6061 int i, nr_msrs;
6062 struct perf_guest_switch_msr *msrs;
6063
6064 msrs = perf_guest_get_msrs(&nr_msrs);
6065
6066 if (!msrs)
6067 return;
6068
6069 for (i = 0; i < nr_msrs; i++)
6070 if (msrs[i].host == msrs[i].guest)
6071 clear_atomic_switch_msr(vmx, msrs[i].msr);
6072 else
6073 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
6074 msrs[i].host);
6075}
6076
Avi Kivityc8019492008-07-14 14:44:59 +03006077#ifdef CONFIG_X86_64
6078#define R "r"
6079#define Q "q"
6080#else
6081#define R "e"
6082#define Q "l"
6083#endif
6084
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08006085static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006086{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006087 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity104f2262010-11-18 13:12:52 +02006088
Nadav Har'El66c78ae2011-05-25 23:14:07 +03006089 if (is_guest_mode(vcpu) && !vmx->nested.nested_run_pending) {
6090 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6091 if (vmcs12->idt_vectoring_info_field &
6092 VECTORING_INFO_VALID_MASK) {
6093 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6094 vmcs12->idt_vectoring_info_field);
6095 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6096 vmcs12->vm_exit_instruction_len);
6097 if (vmcs12->idt_vectoring_info_field &
6098 VECTORING_INFO_DELIVER_CODE_MASK)
6099 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
6100 vmcs12->idt_vectoring_error_code);
6101 }
6102 }
6103
Avi Kivity104f2262010-11-18 13:12:52 +02006104 /* Record the guest's net vcpu time for enforced NMI injections. */
6105 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
6106 vmx->entry_time = ktime_get();
6107
6108 /* Don't enter VMX if guest state is invalid, let the exit handler
6109 start emulation until we arrive back to a valid state */
6110 if (vmx->emulation_required && emulate_invalid_guest_state)
6111 return;
6112
6113 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
6114 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
6115 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
6116 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
6117
6118 /* When single-stepping over STI and MOV SS, we must clear the
6119 * corresponding interruptibility bits in the guest state. Otherwise
6120 * vmentry fails as it then expects bit 14 (BS) in pending debug
6121 * exceptions being set, but that's not correct for the guest debugging
6122 * case. */
6123 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
6124 vmx_set_interrupt_shadow(vcpu, 0);
6125
Gleb Natapovd7cd9792011-10-05 14:01:23 +02006126 atomic_switch_perf_msrs(vmx);
6127
Nadav Har'Eld462b812011-05-24 15:26:10 +03006128 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02006129 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08006130 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03006131 "push %%"R"dx; push %%"R"bp;"
Avi Kivity40712fa2011-01-06 18:09:12 +02006132 "push %%"R"cx \n\t" /* placeholder for guest rcx */
Avi Kivityc8019492008-07-14 14:44:59 +03006133 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03006134 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
6135 "je 1f \n\t"
6136 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006137 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03006138 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03006139 /* Reload cr2 if changed */
6140 "mov %c[cr2](%0), %%"R"ax \n\t"
6141 "mov %%cr2, %%"R"dx \n\t"
6142 "cmp %%"R"ax, %%"R"dx \n\t"
6143 "je 2f \n\t"
6144 "mov %%"R"ax, %%cr2 \n\t"
6145 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006146 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02006147 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006148 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03006149 "mov %c[rax](%0), %%"R"ax \n\t"
6150 "mov %c[rbx](%0), %%"R"bx \n\t"
6151 "mov %c[rdx](%0), %%"R"dx \n\t"
6152 "mov %c[rsi](%0), %%"R"si \n\t"
6153 "mov %c[rdi](%0), %%"R"di \n\t"
6154 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006155#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02006156 "mov %c[r8](%0), %%r8 \n\t"
6157 "mov %c[r9](%0), %%r9 \n\t"
6158 "mov %c[r10](%0), %%r10 \n\t"
6159 "mov %c[r11](%0), %%r11 \n\t"
6160 "mov %c[r12](%0), %%r12 \n\t"
6161 "mov %c[r13](%0), %%r13 \n\t"
6162 "mov %c[r14](%0), %%r14 \n\t"
6163 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006164#endif
Avi Kivityc8019492008-07-14 14:44:59 +03006165 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
6166
Avi Kivity6aa8b732006-12-10 02:21:36 -08006167 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03006168 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006169 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03006170 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03006171 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03006172 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08006173 /* Save guest registers, load host registers, keep flags */
Avi Kivity40712fa2011-01-06 18:09:12 +02006174 "mov %0, %c[wordsize](%%"R"sp) \n\t"
6175 "pop %0 \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03006176 "mov %%"R"ax, %c[rax](%0) \n\t"
6177 "mov %%"R"bx, %c[rbx](%0) \n\t"
Avi Kivity1c696d02011-01-06 18:09:11 +02006178 "pop"Q" %c[rcx](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03006179 "mov %%"R"dx, %c[rdx](%0) \n\t"
6180 "mov %%"R"si, %c[rsi](%0) \n\t"
6181 "mov %%"R"di, %c[rdi](%0) \n\t"
6182 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006183#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02006184 "mov %%r8, %c[r8](%0) \n\t"
6185 "mov %%r9, %c[r9](%0) \n\t"
6186 "mov %%r10, %c[r10](%0) \n\t"
6187 "mov %%r11, %c[r11](%0) \n\t"
6188 "mov %%r12, %c[r12](%0) \n\t"
6189 "mov %%r13, %c[r13](%0) \n\t"
6190 "mov %%r14, %c[r14](%0) \n\t"
6191 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08006192#endif
Avi Kivityc8019492008-07-14 14:44:59 +03006193 "mov %%cr2, %%"R"ax \n\t"
6194 "mov %%"R"ax, %c[cr2](%0) \n\t"
6195
Avi Kivity1c696d02011-01-06 18:09:11 +02006196 "pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02006197 "setbe %c[fail](%0) \n\t"
6198 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03006199 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02006200 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03006201 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006202 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
6203 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
6204 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
6205 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
6206 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
6207 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
6208 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08006209#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006210 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
6211 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
6212 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
6213 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
6214 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
6215 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
6216 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
6217 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08006218#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02006219 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
6220 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02006221 : "cc", "memory"
Jan Kiszka07d6f552010-09-28 16:37:42 +02006222 , R"ax", R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02006223#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02006224 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
6225#endif
6226 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08006227
Avi Kivity6de4f3a2009-05-31 22:58:47 +03006228 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02006229 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivity69c73022011-03-07 15:26:44 +02006230 | (1 << VCPU_EXREG_CPL)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006231 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03006232 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02006233 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006234 vcpu->arch.regs_dirty = 0;
6235
Avi Kivity1155f762007-11-22 11:30:47 +02006236 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
6237
Nadav Har'El66c78ae2011-05-25 23:14:07 +03006238 if (is_guest_mode(vcpu)) {
6239 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6240 vmcs12->idt_vectoring_info_field = vmx->idt_vectoring_info;
6241 if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) {
6242 vmcs12->idt_vectoring_error_code =
6243 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6244 vmcs12->vm_exit_instruction_len =
6245 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6246 }
6247 }
6248
Mike Dayd77c26f2007-10-08 09:02:08 -04006249 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Nadav Har'Eld462b812011-05-24 15:26:10 +03006250 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02006251
Avi Kivity51aa01d2010-07-20 14:31:20 +03006252 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Jan Kiszka1e2b1dd2011-09-12 10:52:24 +02006253 trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX);
Avi Kivity51aa01d2010-07-20 14:31:20 +03006254
6255 vmx_complete_atomic_exit(vmx);
6256 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03006257 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006258}
6259
Avi Kivityc8019492008-07-14 14:44:59 +03006260#undef R
6261#undef Q
6262
Avi Kivity6aa8b732006-12-10 02:21:36 -08006263static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
6264{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006265 struct vcpu_vmx *vmx = to_vmx(vcpu);
6266
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08006267 free_vpid(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03006268 free_nested(vmx);
Nadav Har'Eld462b812011-05-24 15:26:10 +03006269 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006270 kfree(vmx->guest_msrs);
6271 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10006272 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006273}
6274
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006275static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006276{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006277 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10006278 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03006279 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006280
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006281 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006282 return ERR_PTR(-ENOMEM);
6283
Sheng Yang2384d2b2008-01-17 15:14:33 +08006284 allocate_vpid(vmx);
6285
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006286 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
6287 if (err)
6288 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006289
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006290 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006291 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006292 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006293 goto uninit_vcpu;
6294 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08006295
Nadav Har'Eld462b812011-05-24 15:26:10 +03006296 vmx->loaded_vmcs = &vmx->vmcs01;
6297 vmx->loaded_vmcs->vmcs = alloc_vmcs();
6298 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006299 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03006300 if (!vmm_exclusive)
6301 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
6302 loaded_vmcs_init(vmx->loaded_vmcs);
6303 if (!vmm_exclusive)
6304 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04006305
Avi Kivity15ad7142007-07-11 18:17:21 +03006306 cpu = get_cpu();
6307 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10006308 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10006309 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006310 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03006311 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006312 if (err)
6313 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006314 if (vm_need_virtualize_apic_accesses(kvm))
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02006315 err = alloc_apic_access_page(kvm);
6316 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02006317 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006318
Sheng Yangb927a3c2009-07-21 10:42:48 +08006319 if (enable_ept) {
6320 if (!kvm->arch.ept_identity_map_addr)
6321 kvm->arch.ept_identity_map_addr =
6322 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Gleb Natapov93ea5382011-02-21 12:07:59 +02006323 err = -ENOMEM;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006324 if (alloc_identity_pagetable(kvm) != 0)
6325 goto free_vmcs;
Gleb Natapov93ea5382011-02-21 12:07:59 +02006326 if (!init_rmode_identity_map(kvm))
6327 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08006328 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08006329
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03006330 vmx->nested.current_vmptr = -1ull;
6331 vmx->nested.current_vmcs12 = NULL;
6332
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006333 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08006334
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006335free_vmcs:
Nadav Har'Eld462b812011-05-24 15:26:10 +03006336 free_vmcs(vmx->loaded_vmcs->vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006337free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006338 kfree(vmx->guest_msrs);
6339uninit_vcpu:
6340 kvm_vcpu_uninit(&vmx->vcpu);
6341free_vcpu:
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08006342 free_vpid(vmx);
Rusty Russella4770342007-08-01 14:46:11 +10006343 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10006344 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006345}
6346
Yang, Sheng002c7f72007-07-31 14:23:01 +03006347static void __init vmx_check_processor_compat(void *rtn)
6348{
6349 struct vmcs_config vmcs_conf;
6350
6351 *(int *)rtn = 0;
6352 if (setup_vmcs_config(&vmcs_conf) < 0)
6353 *(int *)rtn = -EIO;
6354 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6355 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6356 smp_processor_id());
6357 *(int *)rtn = -EIO;
6358 }
6359}
6360
Sheng Yang67253af2008-04-25 10:20:22 +08006361static int get_ept_level(void)
6362{
6363 return VMX_EPT_DEFAULT_GAW + 1;
6364}
6365
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006366static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006367{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006368 u64 ret;
6369
Sheng Yang522c68c2009-04-27 20:35:43 +08006370 /* For VT-d and EPT combination
6371 * 1. MMIO: always map as UC
6372 * 2. EPT with VT-d:
6373 * a. VT-d without snooping control feature: can't guarantee the
6374 * result, try to trust guest.
6375 * b. VT-d with snooping control feature: snooping control feature of
6376 * VT-d engine can guarantee the cache correctness. Just set it
6377 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08006378 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08006379 * consistent with host MTRR
6380 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006381 if (is_mmio)
6382 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08006383 else if (vcpu->kvm->arch.iommu_domain &&
6384 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
6385 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
6386 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006387 else
Sheng Yang522c68c2009-04-27 20:35:43 +08006388 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08006389 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006390
6391 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08006392}
6393
Sheng Yang17cc3932010-01-05 19:02:27 +08006394static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006395{
Sheng Yang878403b2010-01-05 19:02:29 +08006396 if (enable_ept && !cpu_has_vmx_ept_1g_page())
6397 return PT_DIRECTORY_LEVEL;
6398 else
6399 /* For shadow and EPT supported 1GB page */
6400 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006401}
6402
Sheng Yang0e851882009-12-18 16:48:46 +08006403static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
6404{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006405 struct kvm_cpuid_entry2 *best;
6406 struct vcpu_vmx *vmx = to_vmx(vcpu);
6407 u32 exec_control;
6408
6409 vmx->rdtscp_enabled = false;
6410 if (vmx_rdtscp_supported()) {
6411 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6412 if (exec_control & SECONDARY_EXEC_RDTSCP) {
6413 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
6414 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
6415 vmx->rdtscp_enabled = true;
6416 else {
6417 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6418 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
6419 exec_control);
6420 }
6421 }
6422 }
Sheng Yang0e851882009-12-18 16:48:46 +08006423}
6424
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006425static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6426{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03006427 if (func == 1 && nested)
6428 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006429}
6430
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006431/*
6432 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
6433 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
6434 * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2
6435 * guest in a way that will both be appropriate to L1's requests, and our
6436 * needs. In addition to modifying the active vmcs (which is vmcs02), this
6437 * function also has additional necessary side-effects, like setting various
6438 * vcpu->arch fields.
6439 */
6440static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6441{
6442 struct vcpu_vmx *vmx = to_vmx(vcpu);
6443 u32 exec_control;
6444
6445 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
6446 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
6447 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
6448 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
6449 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
6450 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
6451 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
6452 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
6453 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
6454 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
6455 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
6456 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
6457 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
6458 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
6459 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
6460 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
6461 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
6462 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
6463 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
6464 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
6465 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
6466 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
6467 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
6468 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
6469 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
6470 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
6471 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
6472 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
6473 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
6474 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
6475 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
6476 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
6477 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
6478 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
6479 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
6480 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
6481
6482 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
6483 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6484 vmcs12->vm_entry_intr_info_field);
6485 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
6486 vmcs12->vm_entry_exception_error_code);
6487 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6488 vmcs12->vm_entry_instruction_len);
6489 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
6490 vmcs12->guest_interruptibility_info);
6491 vmcs_write32(GUEST_ACTIVITY_STATE, vmcs12->guest_activity_state);
6492 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
6493 vmcs_writel(GUEST_DR7, vmcs12->guest_dr7);
6494 vmcs_writel(GUEST_RFLAGS, vmcs12->guest_rflags);
6495 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
6496 vmcs12->guest_pending_dbg_exceptions);
6497 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
6498 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
6499
6500 vmcs_write64(VMCS_LINK_POINTER, -1ull);
6501
6502 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
6503 (vmcs_config.pin_based_exec_ctrl |
6504 vmcs12->pin_based_vm_exec_control));
6505
6506 /*
6507 * Whether page-faults are trapped is determined by a combination of
6508 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
6509 * If enable_ept, L0 doesn't care about page faults and we should
6510 * set all of these to L1's desires. However, if !enable_ept, L0 does
6511 * care about (at least some) page faults, and because it is not easy
6512 * (if at all possible?) to merge L0 and L1's desires, we simply ask
6513 * to exit on each and every L2 page fault. This is done by setting
6514 * MASK=MATCH=0 and (see below) EB.PF=1.
6515 * Note that below we don't need special code to set EB.PF beyond the
6516 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
6517 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
6518 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
6519 *
6520 * A problem with this approach (when !enable_ept) is that L1 may be
6521 * injected with more page faults than it asked for. This could have
6522 * caused problems, but in practice existing hypervisors don't care.
6523 * To fix this, we will need to emulate the PFEC checking (on the L1
6524 * page tables), using walk_addr(), when injecting PFs to L1.
6525 */
6526 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
6527 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
6528 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
6529 enable_ept ? vmcs12->page_fault_error_code_match : 0);
6530
6531 if (cpu_has_secondary_exec_ctrls()) {
6532 u32 exec_control = vmx_secondary_exec_control(vmx);
6533 if (!vmx->rdtscp_enabled)
6534 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6535 /* Take the following fields only from vmcs12 */
6536 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6537 if (nested_cpu_has(vmcs12,
6538 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
6539 exec_control |= vmcs12->secondary_vm_exec_control;
6540
6541 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
6542 /*
6543 * Translate L1 physical address to host physical
6544 * address for vmcs02. Keep the page pinned, so this
6545 * physical address remains valid. We keep a reference
6546 * to it so we can release it later.
6547 */
6548 if (vmx->nested.apic_access_page) /* shouldn't happen */
6549 nested_release_page(vmx->nested.apic_access_page);
6550 vmx->nested.apic_access_page =
6551 nested_get_page(vcpu, vmcs12->apic_access_addr);
6552 /*
6553 * If translation failed, no matter: This feature asks
6554 * to exit when accessing the given address, and if it
6555 * can never be accessed, this feature won't do
6556 * anything anyway.
6557 */
6558 if (!vmx->nested.apic_access_page)
6559 exec_control &=
6560 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6561 else
6562 vmcs_write64(APIC_ACCESS_ADDR,
6563 page_to_phys(vmx->nested.apic_access_page));
6564 }
6565
6566 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
6567 }
6568
6569
6570 /*
6571 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
6572 * Some constant fields are set here by vmx_set_constant_host_state().
6573 * Other fields are different per CPU, and will be set later when
6574 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
6575 */
6576 vmx_set_constant_host_state();
6577
6578 /*
6579 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
6580 * entry, but only if the current (host) sp changed from the value
6581 * we wrote last (vmx->host_rsp). This cache is no longer relevant
6582 * if we switch vmcs, and rather than hold a separate cache per vmcs,
6583 * here we just force the write to happen on entry.
6584 */
6585 vmx->host_rsp = 0;
6586
6587 exec_control = vmx_exec_control(vmx); /* L0's desires */
6588 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
6589 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6590 exec_control &= ~CPU_BASED_TPR_SHADOW;
6591 exec_control |= vmcs12->cpu_based_vm_exec_control;
6592 /*
6593 * Merging of IO and MSR bitmaps not currently supported.
6594 * Rather, exit every time.
6595 */
6596 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
6597 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
6598 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
6599
6600 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
6601
6602 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
6603 * bitwise-or of what L1 wants to trap for L2, and what we want to
6604 * trap. Note that CR0.TS also needs updating - we do this later.
6605 */
6606 update_exception_bitmap(vcpu);
6607 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
6608 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6609
6610 /* Note: IA32_MODE, LOAD_IA32_EFER are modified by vmx_set_efer below */
6611 vmcs_write32(VM_EXIT_CONTROLS,
6612 vmcs12->vm_exit_controls | vmcs_config.vmexit_ctrl);
6613 vmcs_write32(VM_ENTRY_CONTROLS, vmcs12->vm_entry_controls |
6614 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
6615
6616 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)
6617 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
6618 else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6619 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
6620
6621
6622 set_cr4_guest_host_mask(vmx);
6623
Nadav Har'El27fc51b2011-08-02 15:54:52 +03006624 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
6625 vmcs_write64(TSC_OFFSET,
6626 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
6627 else
6628 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006629
6630 if (enable_vpid) {
6631 /*
6632 * Trivially support vpid by letting L2s share their parent
6633 * L1's vpid. TODO: move to a more elaborate solution, giving
6634 * each L2 its own vpid and exposing the vpid feature to L1.
6635 */
6636 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6637 vmx_flush_tlb(vcpu);
6638 }
6639
6640 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
6641 vcpu->arch.efer = vmcs12->guest_ia32_efer;
6642 if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
6643 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6644 else
6645 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6646 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
6647 vmx_set_efer(vcpu, vcpu->arch.efer);
6648
6649 /*
6650 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
6651 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
6652 * The CR0_READ_SHADOW is what L2 should have expected to read given
6653 * the specifications by L1; It's not enough to take
6654 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
6655 * have more bits than L1 expected.
6656 */
6657 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
6658 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
6659
6660 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
6661 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
6662
6663 /* shadow page tables on either EPT or shadow page tables */
6664 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
6665 kvm_mmu_reset_context(vcpu);
6666
6667 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
6668 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
6669}
6670
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006671/*
6672 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
6673 * for running an L2 nested guest.
6674 */
6675static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
6676{
6677 struct vmcs12 *vmcs12;
6678 struct vcpu_vmx *vmx = to_vmx(vcpu);
6679 int cpu;
6680 struct loaded_vmcs *vmcs02;
6681
6682 if (!nested_vmx_check_permission(vcpu) ||
6683 !nested_vmx_check_vmcs12(vcpu))
6684 return 1;
6685
6686 skip_emulated_instruction(vcpu);
6687 vmcs12 = get_vmcs12(vcpu);
6688
Nadav Har'El7c177932011-05-25 23:12:04 +03006689 /*
6690 * The nested entry process starts with enforcing various prerequisites
6691 * on vmcs12 as required by the Intel SDM, and act appropriately when
6692 * they fail: As the SDM explains, some conditions should cause the
6693 * instruction to fail, while others will cause the instruction to seem
6694 * to succeed, but return an EXIT_REASON_INVALID_STATE.
6695 * To speed up the normal (success) code path, we should avoid checking
6696 * for misconfigurations which will anyway be caught by the processor
6697 * when using the merged vmcs02.
6698 */
6699 if (vmcs12->launch_state == launch) {
6700 nested_vmx_failValid(vcpu,
6701 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
6702 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
6703 return 1;
6704 }
6705
6706 if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) &&
6707 !IS_ALIGNED(vmcs12->msr_bitmap, PAGE_SIZE)) {
6708 /*TODO: Also verify bits beyond physical address width are 0*/
6709 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6710 return 1;
6711 }
6712
6713 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
6714 !IS_ALIGNED(vmcs12->apic_access_addr, PAGE_SIZE)) {
6715 /*TODO: Also verify bits beyond physical address width are 0*/
6716 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6717 return 1;
6718 }
6719
6720 if (vmcs12->vm_entry_msr_load_count > 0 ||
6721 vmcs12->vm_exit_msr_load_count > 0 ||
6722 vmcs12->vm_exit_msr_store_count > 0) {
Jan Kiszkabd801582011-09-12 11:26:22 +02006723 pr_warn_ratelimited("%s: VMCS MSR_{LOAD,STORE} unsupported\n",
6724 __func__);
Nadav Har'El7c177932011-05-25 23:12:04 +03006725 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6726 return 1;
6727 }
6728
6729 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
6730 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high) ||
6731 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
6732 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) ||
6733 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
6734 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) ||
6735 !vmx_control_verify(vmcs12->vm_exit_controls,
6736 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high) ||
6737 !vmx_control_verify(vmcs12->vm_entry_controls,
6738 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high))
6739 {
6740 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6741 return 1;
6742 }
6743
6744 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6745 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6746 nested_vmx_failValid(vcpu,
6747 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
6748 return 1;
6749 }
6750
6751 if (((vmcs12->guest_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6752 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6753 nested_vmx_entry_failure(vcpu, vmcs12,
6754 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
6755 return 1;
6756 }
6757 if (vmcs12->vmcs_link_pointer != -1ull) {
6758 nested_vmx_entry_failure(vcpu, vmcs12,
6759 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
6760 return 1;
6761 }
6762
6763 /*
6764 * We're finally done with prerequisite checking, and can start with
6765 * the nested entry.
6766 */
6767
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006768 vmcs02 = nested_get_current_vmcs02(vmx);
6769 if (!vmcs02)
6770 return -ENOMEM;
6771
6772 enter_guest_mode(vcpu);
6773
6774 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
6775
6776 cpu = get_cpu();
6777 vmx->loaded_vmcs = vmcs02;
6778 vmx_vcpu_put(vcpu);
6779 vmx_vcpu_load(vcpu, cpu);
6780 vcpu->cpu = cpu;
6781 put_cpu();
6782
6783 vmcs12->launch_state = 1;
6784
6785 prepare_vmcs02(vcpu, vmcs12);
6786
6787 /*
6788 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
6789 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
6790 * returned as far as L1 is concerned. It will only return (and set
6791 * the success flag) when L2 exits (see nested_vmx_vmexit()).
6792 */
6793 return 1;
6794}
6795
Nadav Har'El4704d0b2011-05-25 23:11:34 +03006796/*
6797 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
6798 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
6799 * This function returns the new value we should put in vmcs12.guest_cr0.
6800 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
6801 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
6802 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
6803 * didn't trap the bit, because if L1 did, so would L0).
6804 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
6805 * been modified by L2, and L1 knows it. So just leave the old value of
6806 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
6807 * isn't relevant, because if L0 traps this bit it can set it to anything.
6808 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
6809 * changed these bits, and therefore they need to be updated, but L0
6810 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
6811 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
6812 */
6813static inline unsigned long
6814vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6815{
6816 return
6817 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
6818 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
6819 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
6820 vcpu->arch.cr0_guest_owned_bits));
6821}
6822
6823static inline unsigned long
6824vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6825{
6826 return
6827 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
6828 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
6829 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
6830 vcpu->arch.cr4_guest_owned_bits));
6831}
6832
6833/*
6834 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
6835 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
6836 * and this function updates it to reflect the changes to the guest state while
6837 * L2 was running (and perhaps made some exits which were handled directly by L0
6838 * without going back to L1), and to reflect the exit reason.
6839 * Note that we do not have to copy here all VMCS fields, just those that
6840 * could have changed by the L2 guest or the exit - i.e., the guest-state and
6841 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
6842 * which already writes to vmcs12 directly.
6843 */
6844void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6845{
6846 /* update guest state fields: */
6847 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
6848 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
6849
6850 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
6851 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6852 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
6853 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
6854
6855 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
6856 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
6857 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
6858 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
6859 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
6860 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
6861 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
6862 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
6863 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
6864 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
6865 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
6866 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
6867 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
6868 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
6869 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
6870 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
6871 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
6872 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
6873 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
6874 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
6875 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
6876 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
6877 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
6878 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
6879 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
6880 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
6881 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
6882 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
6883 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
6884 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
6885 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
6886 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
6887 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
6888 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
6889 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
6890 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
6891
6892 vmcs12->guest_activity_state = vmcs_read32(GUEST_ACTIVITY_STATE);
6893 vmcs12->guest_interruptibility_info =
6894 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
6895 vmcs12->guest_pending_dbg_exceptions =
6896 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
6897
6898 /* TODO: These cannot have changed unless we have MSR bitmaps and
6899 * the relevant bit asks not to trap the change */
6900 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
6901 if (vmcs12->vm_entry_controls & VM_EXIT_SAVE_IA32_PAT)
6902 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
6903 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
6904 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
6905 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
6906
6907 /* update exit information fields: */
6908
6909 vmcs12->vm_exit_reason = vmcs_read32(VM_EXIT_REASON);
6910 vmcs12->exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6911
6912 vmcs12->vm_exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6913 vmcs12->vm_exit_intr_error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
6914 vmcs12->idt_vectoring_info_field =
6915 vmcs_read32(IDT_VECTORING_INFO_FIELD);
6916 vmcs12->idt_vectoring_error_code =
6917 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6918 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6919 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
6920
6921 /* clear vm-entry fields which are to be cleared on exit */
6922 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
6923 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
6924}
6925
6926/*
6927 * A part of what we need to when the nested L2 guest exits and we want to
6928 * run its L1 parent, is to reset L1's guest state to the host state specified
6929 * in vmcs12.
6930 * This function is to be called not only on normal nested exit, but also on
6931 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
6932 * Failures During or After Loading Guest State").
6933 * This function should be called when the active VMCS is L1's (vmcs01).
6934 */
6935void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6936{
6937 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
6938 vcpu->arch.efer = vmcs12->host_ia32_efer;
6939 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
6940 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6941 else
6942 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6943 vmx_set_efer(vcpu, vcpu->arch.efer);
6944
6945 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
6946 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
6947 /*
6948 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
6949 * actually changed, because it depends on the current state of
6950 * fpu_active (which may have changed).
6951 * Note that vmx_set_cr0 refers to efer set above.
6952 */
6953 kvm_set_cr0(vcpu, vmcs12->host_cr0);
6954 /*
6955 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
6956 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
6957 * but we also need to update cr0_guest_host_mask and exception_bitmap.
6958 */
6959 update_exception_bitmap(vcpu);
6960 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
6961 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6962
6963 /*
6964 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
6965 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
6966 */
6967 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
6968 kvm_set_cr4(vcpu, vmcs12->host_cr4);
6969
6970 /* shadow page tables on either EPT or shadow page tables */
6971 kvm_set_cr3(vcpu, vmcs12->host_cr3);
6972 kvm_mmu_reset_context(vcpu);
6973
6974 if (enable_vpid) {
6975 /*
6976 * Trivially support vpid by letting L2s share their parent
6977 * L1's vpid. TODO: move to a more elaborate solution, giving
6978 * each L2 its own vpid and exposing the vpid feature to L1.
6979 */
6980 vmx_flush_tlb(vcpu);
6981 }
6982
6983
6984 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
6985 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
6986 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
6987 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
6988 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
6989 vmcs_writel(GUEST_TR_BASE, vmcs12->host_tr_base);
6990 vmcs_writel(GUEST_GS_BASE, vmcs12->host_gs_base);
6991 vmcs_writel(GUEST_FS_BASE, vmcs12->host_fs_base);
6992 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->host_es_selector);
6993 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->host_cs_selector);
6994 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->host_ss_selector);
6995 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->host_ds_selector);
6996 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->host_fs_selector);
6997 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->host_gs_selector);
6998 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->host_tr_selector);
6999
7000 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT)
7001 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
7002 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
7003 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
7004 vmcs12->host_ia32_perf_global_ctrl);
7005}
7006
7007/*
7008 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
7009 * and modify vmcs12 to make it see what it would expect to see there if
7010 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
7011 */
7012static void nested_vmx_vmexit(struct kvm_vcpu *vcpu)
7013{
7014 struct vcpu_vmx *vmx = to_vmx(vcpu);
7015 int cpu;
7016 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7017
7018 leave_guest_mode(vcpu);
7019 prepare_vmcs12(vcpu, vmcs12);
7020
7021 cpu = get_cpu();
7022 vmx->loaded_vmcs = &vmx->vmcs01;
7023 vmx_vcpu_put(vcpu);
7024 vmx_vcpu_load(vcpu, cpu);
7025 vcpu->cpu = cpu;
7026 put_cpu();
7027
7028 /* if no vmcs02 cache requested, remove the one we used */
7029 if (VMCS02_POOL_SIZE == 0)
7030 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
7031
7032 load_vmcs12_host_state(vcpu, vmcs12);
7033
Nadav Har'El27fc51b2011-08-02 15:54:52 +03007034 /* Update TSC_OFFSET if TSC was changed while L2 ran */
Nadav Har'El4704d0b2011-05-25 23:11:34 +03007035 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
7036
7037 /* This is needed for same reason as it was needed in prepare_vmcs02 */
7038 vmx->host_rsp = 0;
7039
7040 /* Unpin physical memory we referred to in vmcs02 */
7041 if (vmx->nested.apic_access_page) {
7042 nested_release_page(vmx->nested.apic_access_page);
7043 vmx->nested.apic_access_page = 0;
7044 }
7045
7046 /*
7047 * Exiting from L2 to L1, we're now back to L1 which thinks it just
7048 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
7049 * success or failure flag accordingly.
7050 */
7051 if (unlikely(vmx->fail)) {
7052 vmx->fail = 0;
7053 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
7054 } else
7055 nested_vmx_succeed(vcpu);
7056}
7057
Nadav Har'El7c177932011-05-25 23:12:04 +03007058/*
7059 * L1's failure to enter L2 is a subset of a normal exit, as explained in
7060 * 23.7 "VM-entry failures during or after loading guest state" (this also
7061 * lists the acceptable exit-reason and exit-qualification parameters).
7062 * It should only be called before L2 actually succeeded to run, and when
7063 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
7064 */
7065static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
7066 struct vmcs12 *vmcs12,
7067 u32 reason, unsigned long qualification)
7068{
7069 load_vmcs12_host_state(vcpu, vmcs12);
7070 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
7071 vmcs12->exit_qualification = qualification;
7072 nested_vmx_succeed(vcpu);
7073}
7074
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007075static int vmx_check_intercept(struct kvm_vcpu *vcpu,
7076 struct x86_instruction_info *info,
7077 enum x86_intercept_stage stage)
7078{
7079 return X86EMUL_CONTINUE;
7080}
7081
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03007082static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08007083 .cpu_has_kvm_support = cpu_has_kvm_support,
7084 .disabled_by_bios = vmx_disabled_by_bios,
7085 .hardware_setup = hardware_setup,
7086 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03007087 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007088 .hardware_enable = hardware_enable,
7089 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08007090 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007091
7092 .vcpu_create = vmx_create_vcpu,
7093 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03007094 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007095
Avi Kivity04d2cc72007-09-10 18:10:54 +03007096 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007097 .vcpu_load = vmx_vcpu_load,
7098 .vcpu_put = vmx_vcpu_put,
7099
7100 .set_guest_debug = set_guest_debug,
7101 .get_msr = vmx_get_msr,
7102 .set_msr = vmx_set_msr,
7103 .get_segment_base = vmx_get_segment_base,
7104 .get_segment = vmx_get_segment,
7105 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02007106 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007107 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02007108 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02007109 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03007110 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007111 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007112 .set_cr3 = vmx_set_cr3,
7113 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007114 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007115 .get_idt = vmx_get_idt,
7116 .set_idt = vmx_set_idt,
7117 .get_gdt = vmx_get_gdt,
7118 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03007119 .set_dr7 = vmx_set_dr7,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03007120 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007121 .get_rflags = vmx_get_rflags,
7122 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02007123 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02007124 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007125
7126 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007127
Avi Kivity6aa8b732006-12-10 02:21:36 -08007128 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02007129 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007130 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04007131 .set_interrupt_shadow = vmx_set_interrupt_shadow,
7132 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02007133 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03007134 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007135 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02007136 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03007137 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02007138 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007139 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01007140 .get_nmi_mask = vmx_get_nmi_mask,
7141 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007142 .enable_nmi_window = enable_nmi_window,
7143 .enable_irq_window = enable_irq_window,
7144 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03007145
Izik Eiduscbc94022007-10-25 00:29:55 +02007146 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08007147 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007148 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03007149
Avi Kivity586f9602010-11-18 13:09:54 +02007150 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +02007151
Sheng Yang17cc3932010-01-05 19:02:27 +08007152 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08007153
7154 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08007155
7156 .rdtscp_supported = vmx_rdtscp_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02007157
7158 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08007159
7160 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007161
Joerg Roedel4051b182011-03-25 09:44:49 +01007162 .set_tsc_khz = vmx_set_tsc_khz,
Zachary Amsden99e3e302010-08-19 22:07:17 -10007163 .write_tsc_offset = vmx_write_tsc_offset,
Zachary Amsdene48672f2010-08-19 22:07:23 -10007164 .adjust_tsc_offset = vmx_adjust_tsc_offset,
Joerg Roedel857e4092011-03-25 09:44:50 +01007165 .compute_tsc_offset = vmx_compute_tsc_offset,
Nadav Har'Eld5c17852011-08-02 15:54:20 +03007166 .read_l1_tsc = vmx_read_l1_tsc,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02007167
7168 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02007169
7170 .check_intercept = vmx_check_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08007171};
7172
7173static int __init vmx_init(void)
7174{
Avi Kivity26bb0982009-09-07 11:14:12 +03007175 int r, i;
7176
7177 rdmsrl_safe(MSR_EFER, &host_efer);
7178
7179 for (i = 0; i < NR_VMX_MSR; ++i)
7180 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03007181
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007182 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03007183 if (!vmx_io_bitmap_a)
7184 return -ENOMEM;
7185
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007186 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03007187 if (!vmx_io_bitmap_b) {
7188 r = -ENOMEM;
7189 goto out;
7190 }
7191
Avi Kivity58972972009-02-24 22:26:47 +02007192 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
7193 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08007194 r = -ENOMEM;
7195 goto out1;
7196 }
7197
Avi Kivity58972972009-02-24 22:26:47 +02007198 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
7199 if (!vmx_msr_bitmap_longmode) {
7200 r = -ENOMEM;
7201 goto out2;
7202 }
7203
He, Qingfdef3ad2007-04-30 09:45:24 +03007204 /*
7205 * Allow direct access to the PC debug port (it is often used for I/O
7206 * delays, but the vmexits simply slow things down).
7207 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007208 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
7209 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007210
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007211 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03007212
Avi Kivity58972972009-02-24 22:26:47 +02007213 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
7214 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08007215
Sheng Yang2384d2b2008-01-17 15:14:33 +08007216 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
7217
Avi Kivity0ee75be2010-04-28 15:39:01 +03007218 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
7219 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03007220 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02007221 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08007222
Avi Kivity58972972009-02-24 22:26:47 +02007223 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
7224 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
7225 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
7226 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
7227 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
7228 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03007229
Avi Kivity089d0342009-03-23 18:26:32 +02007230 if (enable_ept) {
Sheng Yang534e38b2008-09-08 15:12:30 +08007231 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08007232 VMX_EPT_EXECUTABLE_MASK);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08007233 ept_set_mmio_spte_mask();
Sheng Yang5fdbcb92008-07-16 09:25:40 +08007234 kvm_enable_tdp();
7235 } else
7236 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08007237
He, Qingfdef3ad2007-04-30 09:45:24 +03007238 return 0;
7239
Avi Kivity58972972009-02-24 22:26:47 +02007240out3:
7241 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08007242out2:
Avi Kivity58972972009-02-24 22:26:47 +02007243 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03007244out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007245 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03007246out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007247 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007248 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08007249}
7250
7251static void __exit vmx_exit(void)
7252{
Avi Kivity58972972009-02-24 22:26:47 +02007253 free_page((unsigned long)vmx_msr_bitmap_legacy);
7254 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02007255 free_page((unsigned long)vmx_io_bitmap_b);
7256 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03007257
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08007258 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08007259}
7260
7261module_init(vmx_init)
7262module_exit(vmx_exit)