blob: 7f62dc36af9b54ed5cf6c59c01f2f38d2cabb79c [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivitye4956062007-06-28 14:15:57 -040021
Avi Kivityedf88412007-12-16 11:02:48 +020022#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080023#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020024#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/mm.h>
26#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020028#include <linux/moduleparam.h>
Marcelo Tosatti229456f2009-06-17 09:22:14 -030029#include <linux/ftrace_event.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040031#include <linux/tboot.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030032#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030033#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040034
Avi Kivity6aa8b732006-12-10 02:21:36 -080035#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080036#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020037#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020038#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080039#include <asm/mce.h>
Dexuan Cui2acf9232010-06-10 11:27:12 +080040#include <asm/i387.h>
41#include <asm/xcr.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080042
Marcelo Tosatti229456f2009-06-17 09:22:14 -030043#include "trace.h"
44
Avi Kivity4ecac3f2008-05-13 13:23:38 +030045#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040046#define __ex_clear(x, reg) \
47 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030048
Avi Kivity6aa8b732006-12-10 02:21:36 -080049MODULE_AUTHOR("Qumranet");
50MODULE_LICENSE("GPL");
51
Avi Kivity4462d212009-03-23 17:53:37 +020052static int __read_mostly bypass_guest_pf = 1;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020053module_param(bypass_guest_pf, bool, S_IRUGO);
Avi Kivityc7addb92007-09-16 18:58:32 +020054
Avi Kivity4462d212009-03-23 17:53:37 +020055static int __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020056module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080057
Avi Kivity4462d212009-03-23 17:53:37 +020058static int __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020059module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020060
Avi Kivity4462d212009-03-23 17:53:37 +020061static int __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020062module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080063
Nitin A Kamble3a624e22009-06-08 11:34:16 -070064static int __read_mostly enable_unrestricted_guest = 1;
65module_param_named(unrestricted_guest,
66 enable_unrestricted_guest, bool, S_IRUGO);
67
Avi Kivity4462d212009-03-23 17:53:37 +020068static int __read_mostly emulate_invalid_guest_state = 0;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020069module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030070
Dongxiao Xub923e622010-05-11 18:29:45 +080071static int __read_mostly vmm_exclusive = 1;
72module_param(vmm_exclusive, bool, S_IRUGO);
73
Anthony Liguori443381a2010-12-06 10:53:38 -060074static int __read_mostly yield_on_hlt = 1;
75module_param(yield_on_hlt, bool, S_IRUGO);
76
Nadav Har'El801d3422011-05-25 23:02:23 +030077/*
78 * If nested=1, nested virtualization is supported, i.e., guests may use
79 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
80 * use VMX instructions.
81 */
82static int __read_mostly nested = 0;
83module_param(nested, bool, S_IRUGO);
84
Avi Kivitycdc0e242009-12-06 17:21:14 +020085#define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \
86 (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD)
87#define KVM_GUEST_CR0_MASK \
88 (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
89#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \
Avi Kivity81231c62010-01-24 16:26:40 +020090 (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +020091#define KVM_VM_CR0_ALWAYS_ON \
92 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +020093#define KVM_CR4_GUEST_OWNED_BITS \
94 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
95 | X86_CR4_OSXMMEXCPT)
96
Avi Kivitycdc0e242009-12-06 17:21:14 +020097#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
98#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
99
Avi Kivity78ac8b42010-04-08 18:19:35 +0300100#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
101
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800102/*
103 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
104 * ple_gap: upper bound on the amount of time between two successive
105 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500106 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800107 * ple_window: upper bound on the amount of time a guest is allowed to execute
108 * in a PAUSE loop. Tests indicate that most spinlocks are held for
109 * less than 2^12 cycles
110 * Time is measured based on a counter that runs at the same rate as the TSC,
111 * refer SDM volume 3b section 21.6.13 & 22.1.3.
112 */
Rik van Riel00c25bc2011-01-04 09:51:33 -0500113#define KVM_VMX_DEFAULT_PLE_GAP 128
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800114#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
115static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
116module_param(ple_gap, int, S_IRUGO);
117
118static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
119module_param(ple_window, int, S_IRUGO);
120
Avi Kivity61d2ef22010-04-28 16:40:38 +0300121#define NR_AUTOLOAD_MSRS 1
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300122#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300123
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400124struct vmcs {
125 u32 revision_id;
126 u32 abort;
127 char data[0];
128};
129
Nadav Har'Eld462b812011-05-24 15:26:10 +0300130/*
131 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
132 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
133 * loaded on this CPU (so we can clear them if the CPU goes down).
134 */
135struct loaded_vmcs {
136 struct vmcs *vmcs;
137 int cpu;
138 int launched;
139 struct list_head loaded_vmcss_on_cpu_link;
140};
141
Avi Kivity26bb0982009-09-07 11:14:12 +0300142struct shared_msr_entry {
143 unsigned index;
144 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200145 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300146};
147
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300148/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300149 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
150 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
151 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
152 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
153 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
154 * More than one of these structures may exist, if L1 runs multiple L2 guests.
155 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
156 * underlying hardware which will be used to run L2.
157 * This structure is packed to ensure that its layout is identical across
158 * machines (necessary for live migration).
159 * If there are changes in this struct, VMCS12_REVISION must be changed.
160 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300161typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300162struct __packed vmcs12 {
163 /* According to the Intel spec, a VMCS region must start with the
164 * following two fields. Then follow implementation-specific data.
165 */
166 u32 revision_id;
167 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300168
Nadav Har'El27d6c862011-05-25 23:06:59 +0300169 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
170 u32 padding[7]; /* room for future expansion */
171
Nadav Har'El22bd0352011-05-25 23:05:57 +0300172 u64 io_bitmap_a;
173 u64 io_bitmap_b;
174 u64 msr_bitmap;
175 u64 vm_exit_msr_store_addr;
176 u64 vm_exit_msr_load_addr;
177 u64 vm_entry_msr_load_addr;
178 u64 tsc_offset;
179 u64 virtual_apic_page_addr;
180 u64 apic_access_addr;
181 u64 ept_pointer;
182 u64 guest_physical_address;
183 u64 vmcs_link_pointer;
184 u64 guest_ia32_debugctl;
185 u64 guest_ia32_pat;
186 u64 guest_ia32_efer;
187 u64 guest_ia32_perf_global_ctrl;
188 u64 guest_pdptr0;
189 u64 guest_pdptr1;
190 u64 guest_pdptr2;
191 u64 guest_pdptr3;
192 u64 host_ia32_pat;
193 u64 host_ia32_efer;
194 u64 host_ia32_perf_global_ctrl;
195 u64 padding64[8]; /* room for future expansion */
196 /*
197 * To allow migration of L1 (complete with its L2 guests) between
198 * machines of different natural widths (32 or 64 bit), we cannot have
199 * unsigned long fields with no explict size. We use u64 (aliased
200 * natural_width) instead. Luckily, x86 is little-endian.
201 */
202 natural_width cr0_guest_host_mask;
203 natural_width cr4_guest_host_mask;
204 natural_width cr0_read_shadow;
205 natural_width cr4_read_shadow;
206 natural_width cr3_target_value0;
207 natural_width cr3_target_value1;
208 natural_width cr3_target_value2;
209 natural_width cr3_target_value3;
210 natural_width exit_qualification;
211 natural_width guest_linear_address;
212 natural_width guest_cr0;
213 natural_width guest_cr3;
214 natural_width guest_cr4;
215 natural_width guest_es_base;
216 natural_width guest_cs_base;
217 natural_width guest_ss_base;
218 natural_width guest_ds_base;
219 natural_width guest_fs_base;
220 natural_width guest_gs_base;
221 natural_width guest_ldtr_base;
222 natural_width guest_tr_base;
223 natural_width guest_gdtr_base;
224 natural_width guest_idtr_base;
225 natural_width guest_dr7;
226 natural_width guest_rsp;
227 natural_width guest_rip;
228 natural_width guest_rflags;
229 natural_width guest_pending_dbg_exceptions;
230 natural_width guest_sysenter_esp;
231 natural_width guest_sysenter_eip;
232 natural_width host_cr0;
233 natural_width host_cr3;
234 natural_width host_cr4;
235 natural_width host_fs_base;
236 natural_width host_gs_base;
237 natural_width host_tr_base;
238 natural_width host_gdtr_base;
239 natural_width host_idtr_base;
240 natural_width host_ia32_sysenter_esp;
241 natural_width host_ia32_sysenter_eip;
242 natural_width host_rsp;
243 natural_width host_rip;
244 natural_width paddingl[8]; /* room for future expansion */
245 u32 pin_based_vm_exec_control;
246 u32 cpu_based_vm_exec_control;
247 u32 exception_bitmap;
248 u32 page_fault_error_code_mask;
249 u32 page_fault_error_code_match;
250 u32 cr3_target_count;
251 u32 vm_exit_controls;
252 u32 vm_exit_msr_store_count;
253 u32 vm_exit_msr_load_count;
254 u32 vm_entry_controls;
255 u32 vm_entry_msr_load_count;
256 u32 vm_entry_intr_info_field;
257 u32 vm_entry_exception_error_code;
258 u32 vm_entry_instruction_len;
259 u32 tpr_threshold;
260 u32 secondary_vm_exec_control;
261 u32 vm_instruction_error;
262 u32 vm_exit_reason;
263 u32 vm_exit_intr_info;
264 u32 vm_exit_intr_error_code;
265 u32 idt_vectoring_info_field;
266 u32 idt_vectoring_error_code;
267 u32 vm_exit_instruction_len;
268 u32 vmx_instruction_info;
269 u32 guest_es_limit;
270 u32 guest_cs_limit;
271 u32 guest_ss_limit;
272 u32 guest_ds_limit;
273 u32 guest_fs_limit;
274 u32 guest_gs_limit;
275 u32 guest_ldtr_limit;
276 u32 guest_tr_limit;
277 u32 guest_gdtr_limit;
278 u32 guest_idtr_limit;
279 u32 guest_es_ar_bytes;
280 u32 guest_cs_ar_bytes;
281 u32 guest_ss_ar_bytes;
282 u32 guest_ds_ar_bytes;
283 u32 guest_fs_ar_bytes;
284 u32 guest_gs_ar_bytes;
285 u32 guest_ldtr_ar_bytes;
286 u32 guest_tr_ar_bytes;
287 u32 guest_interruptibility_info;
288 u32 guest_activity_state;
289 u32 guest_sysenter_cs;
290 u32 host_ia32_sysenter_cs;
291 u32 padding32[8]; /* room for future expansion */
292 u16 virtual_processor_id;
293 u16 guest_es_selector;
294 u16 guest_cs_selector;
295 u16 guest_ss_selector;
296 u16 guest_ds_selector;
297 u16 guest_fs_selector;
298 u16 guest_gs_selector;
299 u16 guest_ldtr_selector;
300 u16 guest_tr_selector;
301 u16 host_es_selector;
302 u16 host_cs_selector;
303 u16 host_ss_selector;
304 u16 host_ds_selector;
305 u16 host_fs_selector;
306 u16 host_gs_selector;
307 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300308};
309
310/*
311 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
312 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
313 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
314 */
315#define VMCS12_REVISION 0x11e57ed0
316
317/*
318 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
319 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
320 * current implementation, 4K are reserved to avoid future complications.
321 */
322#define VMCS12_SIZE 0x1000
323
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300324/* Used to remember the last vmcs02 used for some recently used vmcs12s */
325struct vmcs02_list {
326 struct list_head list;
327 gpa_t vmptr;
328 struct loaded_vmcs vmcs02;
329};
330
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300331/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300332 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
333 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
334 */
335struct nested_vmx {
336 /* Has the level1 guest done vmxon? */
337 bool vmxon;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300338
339 /* The guest-physical address of the current VMCS L1 keeps for L2 */
340 gpa_t current_vmptr;
341 /* The host-usable pointer to the above */
342 struct page *current_vmcs12_page;
343 struct vmcs12 *current_vmcs12;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300344
345 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
346 struct list_head vmcs02_pool;
347 int vmcs02_num;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300348 u64 vmcs01_tsc_offset;
Nadav Har'El644d7112011-05-25 23:12:35 +0300349 /* L2 must run next, and mustn't decide to exit to L1. */
350 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300351 /*
352 * Guest pages referred to in vmcs02 with host-physical pointers, so
353 * we must keep them pinned while L2 runs.
354 */
355 struct page *apic_access_page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300356};
357
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400358struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000359 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300360 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300361 u8 fail;
Avi Kivity69c73022011-03-07 15:26:44 +0200362 u8 cpl;
Avi Kivity9d58b932011-03-07 16:52:07 +0200363 bool nmi_known_unmasked;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300364 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200365 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200366 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300367 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400368 int nmsrs;
369 int save_nmsrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400370#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300371 u64 msr_host_kernel_gs_base;
372 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400373#endif
Nadav Har'Eld462b812011-05-24 15:26:10 +0300374 /*
375 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
376 * non-nested (L1) guest, it always points to vmcs01. For a nested
377 * guest (L2), it points to a different VMCS.
378 */
379 struct loaded_vmcs vmcs01;
380 struct loaded_vmcs *loaded_vmcs;
381 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300382 struct msr_autoload {
383 unsigned nr;
384 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
385 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
386 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400387 struct {
388 int loaded;
389 u16 fs_sel, gs_sel, ldt_sel;
Laurent Vivier152d3f22007-08-23 16:33:11 +0200390 int gs_ldt_reload_needed;
391 int fs_reload_needed;
Mike Dayd77c26f2007-10-08 09:02:08 -0400392 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200393 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300394 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300395 ulong save_rflags;
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300396 struct kvm_save_segment {
397 u16 selector;
398 unsigned long base;
399 u32 limit;
400 u32 ar;
401 } tr, es, ds, fs, gs;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200402 } rmode;
Avi Kivity2fb92db2011-04-27 19:42:18 +0300403 struct {
404 u32 bitmask; /* 4 bits per segment (1 bit per field) */
405 struct kvm_save_segment seg[8];
406 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800407 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300408 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200409
410 /* Support for vnmi-less CPUs */
411 int soft_vnmi_blocked;
412 ktime_t entry_time;
413 s64 vnmi_blocked_time;
Andi Kleena0861c02009-06-08 17:37:09 +0800414 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800415
416 bool rdtscp_enabled;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300417
418 /* Support for a guest hypervisor (nested VMX) */
419 struct nested_vmx nested;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400420};
421
Avi Kivity2fb92db2011-04-27 19:42:18 +0300422enum segment_cache_field {
423 SEG_FIELD_SEL = 0,
424 SEG_FIELD_BASE = 1,
425 SEG_FIELD_LIMIT = 2,
426 SEG_FIELD_AR = 3,
427
428 SEG_FIELD_NR = 4
429};
430
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400431static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
432{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000433 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400434}
435
Nadav Har'El22bd0352011-05-25 23:05:57 +0300436#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
437#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
438#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
439 [number##_HIGH] = VMCS12_OFFSET(name)+4
440
441static unsigned short vmcs_field_to_offset_table[] = {
442 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
443 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
444 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
445 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
446 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
447 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
448 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
449 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
450 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
451 FIELD(HOST_ES_SELECTOR, host_es_selector),
452 FIELD(HOST_CS_SELECTOR, host_cs_selector),
453 FIELD(HOST_SS_SELECTOR, host_ss_selector),
454 FIELD(HOST_DS_SELECTOR, host_ds_selector),
455 FIELD(HOST_FS_SELECTOR, host_fs_selector),
456 FIELD(HOST_GS_SELECTOR, host_gs_selector),
457 FIELD(HOST_TR_SELECTOR, host_tr_selector),
458 FIELD64(IO_BITMAP_A, io_bitmap_a),
459 FIELD64(IO_BITMAP_B, io_bitmap_b),
460 FIELD64(MSR_BITMAP, msr_bitmap),
461 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
462 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
463 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
464 FIELD64(TSC_OFFSET, tsc_offset),
465 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
466 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
467 FIELD64(EPT_POINTER, ept_pointer),
468 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
469 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
470 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
471 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
472 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
473 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
474 FIELD64(GUEST_PDPTR0, guest_pdptr0),
475 FIELD64(GUEST_PDPTR1, guest_pdptr1),
476 FIELD64(GUEST_PDPTR2, guest_pdptr2),
477 FIELD64(GUEST_PDPTR3, guest_pdptr3),
478 FIELD64(HOST_IA32_PAT, host_ia32_pat),
479 FIELD64(HOST_IA32_EFER, host_ia32_efer),
480 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
481 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
482 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
483 FIELD(EXCEPTION_BITMAP, exception_bitmap),
484 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
485 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
486 FIELD(CR3_TARGET_COUNT, cr3_target_count),
487 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
488 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
489 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
490 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
491 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
492 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
493 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
494 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
495 FIELD(TPR_THRESHOLD, tpr_threshold),
496 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
497 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
498 FIELD(VM_EXIT_REASON, vm_exit_reason),
499 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
500 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
501 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
502 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
503 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
504 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
505 FIELD(GUEST_ES_LIMIT, guest_es_limit),
506 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
507 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
508 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
509 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
510 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
511 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
512 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
513 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
514 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
515 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
516 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
517 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
518 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
519 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
520 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
521 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
522 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
523 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
524 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
525 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
526 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
527 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
528 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
529 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
530 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
531 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
532 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
533 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
534 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
535 FIELD(EXIT_QUALIFICATION, exit_qualification),
536 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
537 FIELD(GUEST_CR0, guest_cr0),
538 FIELD(GUEST_CR3, guest_cr3),
539 FIELD(GUEST_CR4, guest_cr4),
540 FIELD(GUEST_ES_BASE, guest_es_base),
541 FIELD(GUEST_CS_BASE, guest_cs_base),
542 FIELD(GUEST_SS_BASE, guest_ss_base),
543 FIELD(GUEST_DS_BASE, guest_ds_base),
544 FIELD(GUEST_FS_BASE, guest_fs_base),
545 FIELD(GUEST_GS_BASE, guest_gs_base),
546 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
547 FIELD(GUEST_TR_BASE, guest_tr_base),
548 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
549 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
550 FIELD(GUEST_DR7, guest_dr7),
551 FIELD(GUEST_RSP, guest_rsp),
552 FIELD(GUEST_RIP, guest_rip),
553 FIELD(GUEST_RFLAGS, guest_rflags),
554 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
555 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
556 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
557 FIELD(HOST_CR0, host_cr0),
558 FIELD(HOST_CR3, host_cr3),
559 FIELD(HOST_CR4, host_cr4),
560 FIELD(HOST_FS_BASE, host_fs_base),
561 FIELD(HOST_GS_BASE, host_gs_base),
562 FIELD(HOST_TR_BASE, host_tr_base),
563 FIELD(HOST_GDTR_BASE, host_gdtr_base),
564 FIELD(HOST_IDTR_BASE, host_idtr_base),
565 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
566 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
567 FIELD(HOST_RSP, host_rsp),
568 FIELD(HOST_RIP, host_rip),
569};
570static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table);
571
572static inline short vmcs_field_to_offset(unsigned long field)
573{
574 if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0)
575 return -1;
576 return vmcs_field_to_offset_table[field];
577}
578
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300579static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
580{
581 return to_vmx(vcpu)->nested.current_vmcs12;
582}
583
584static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
585{
586 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
587 if (is_error_page(page)) {
588 kvm_release_page_clean(page);
589 return NULL;
590 }
591 return page;
592}
593
594static void nested_release_page(struct page *page)
595{
596 kvm_release_page_dirty(page);
597}
598
599static void nested_release_page_clean(struct page *page)
600{
601 kvm_release_page_clean(page);
602}
603
Sheng Yang4e1096d2008-07-06 19:16:51 +0800604static u64 construct_eptp(unsigned long root_hpa);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +0800605static void kvm_cpu_vmxon(u64 addr);
606static void kvm_cpu_vmxoff(void);
Avi Kivityaff48ba2010-12-05 18:56:11 +0200607static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200608static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Avi Kivity75880a02007-06-20 11:20:04 +0300609
Avi Kivity6aa8b732006-12-10 02:21:36 -0800610static DEFINE_PER_CPU(struct vmcs *, vmxarea);
611static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300612/*
613 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
614 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
615 */
616static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity3444d7d2010-07-26 18:32:38 +0300617static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800618
Avi Kivity3e7c73e2009-02-24 21:46:19 +0200619static unsigned long *vmx_io_bitmap_a;
620static unsigned long *vmx_io_bitmap_b;
Avi Kivity58972972009-02-24 22:26:47 +0200621static unsigned long *vmx_msr_bitmap_legacy;
622static unsigned long *vmx_msr_bitmap_longmode;
He, Qingfdef3ad2007-04-30 09:45:24 +0300623
Avi Kivity110312c2010-12-21 12:54:20 +0200624static bool cpu_has_load_ia32_efer;
625
Sheng Yang2384d2b2008-01-17 15:14:33 +0800626static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
627static DEFINE_SPINLOCK(vmx_vpid_lock);
628
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300629static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800630 int size;
631 int order;
632 u32 revision_id;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300633 u32 pin_based_exec_ctrl;
634 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800635 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +0300636 u32 vmexit_ctrl;
637 u32 vmentry_ctrl;
638} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800639
Hannes Ederefff9e52008-11-28 17:02:06 +0100640static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800641 u32 ept;
642 u32 vpid;
643} vmx_capability;
644
Avi Kivity6aa8b732006-12-10 02:21:36 -0800645#define VMX_SEGMENT_FIELD(seg) \
646 [VCPU_SREG_##seg] = { \
647 .selector = GUEST_##seg##_SELECTOR, \
648 .base = GUEST_##seg##_BASE, \
649 .limit = GUEST_##seg##_LIMIT, \
650 .ar_bytes = GUEST_##seg##_AR_BYTES, \
651 }
652
653static struct kvm_vmx_segment_field {
654 unsigned selector;
655 unsigned base;
656 unsigned limit;
657 unsigned ar_bytes;
658} kvm_vmx_segment_fields[] = {
659 VMX_SEGMENT_FIELD(CS),
660 VMX_SEGMENT_FIELD(DS),
661 VMX_SEGMENT_FIELD(ES),
662 VMX_SEGMENT_FIELD(FS),
663 VMX_SEGMENT_FIELD(GS),
664 VMX_SEGMENT_FIELD(SS),
665 VMX_SEGMENT_FIELD(TR),
666 VMX_SEGMENT_FIELD(LDTR),
667};
668
Avi Kivity26bb0982009-09-07 11:14:12 +0300669static u64 host_efer;
670
Avi Kivity6de4f3ad2009-05-31 22:58:47 +0300671static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
672
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300673/*
Brian Gerst8c065852010-07-17 09:03:26 -0400674 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +0300675 * away by decrementing the array size.
676 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800677static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800678#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300679 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680#endif
Brian Gerst8c065852010-07-17 09:03:26 -0400681 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800682};
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +0200683#define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800684
Gui Jianfeng31299942010-03-15 17:29:09 +0800685static inline bool is_page_fault(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800686{
687 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
688 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100689 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690}
691
Gui Jianfeng31299942010-03-15 17:29:09 +0800692static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300693{
694 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
695 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100696 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori2ab455c2007-04-27 09:29:49 +0300697}
698
Gui Jianfeng31299942010-03-15 17:29:09 +0800699static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500700{
701 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
702 INTR_INFO_VALID_MASK)) ==
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +0100703 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -0500704}
705
Gui Jianfeng31299942010-03-15 17:29:09 +0800706static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800707{
708 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
709 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
710}
711
Gui Jianfeng31299942010-03-15 17:29:09 +0800712static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +0800713{
714 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
715 INTR_INFO_VALID_MASK)) ==
716 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
717}
718
Gui Jianfeng31299942010-03-15 17:29:09 +0800719static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +0800720{
Sheng Yang04547152009-04-01 15:52:31 +0800721 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +0800722}
723
Gui Jianfeng31299942010-03-15 17:29:09 +0800724static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800725{
Sheng Yang04547152009-04-01 15:52:31 +0800726 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800727}
728
Gui Jianfeng31299942010-03-15 17:29:09 +0800729static inline bool vm_need_tpr_shadow(struct kvm *kvm)
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800730{
Sheng Yang04547152009-04-01 15:52:31 +0800731 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
Yang, Sheng6e5d8652007-09-12 18:03:11 +0800732}
733
Gui Jianfeng31299942010-03-15 17:29:09 +0800734static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800735{
Sheng Yang04547152009-04-01 15:52:31 +0800736 return vmcs_config.cpu_based_exec_ctrl &
737 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800738}
739
Avi Kivity774ead32007-12-26 13:57:04 +0200740static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800741{
Sheng Yang04547152009-04-01 15:52:31 +0800742 return vmcs_config.cpu_based_2nd_exec_ctrl &
743 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
744}
745
746static inline bool cpu_has_vmx_flexpriority(void)
747{
748 return cpu_has_vmx_tpr_shadow() &&
749 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +0800750}
751
Marcelo Tosattie7997942009-06-11 12:07:40 -0300752static inline bool cpu_has_vmx_ept_execute_only(void)
753{
Gui Jianfeng31299942010-03-15 17:29:09 +0800754 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300755}
756
757static inline bool cpu_has_vmx_eptp_uncacheable(void)
758{
Gui Jianfeng31299942010-03-15 17:29:09 +0800759 return vmx_capability.ept & VMX_EPTP_UC_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300760}
761
762static inline bool cpu_has_vmx_eptp_writeback(void)
763{
Gui Jianfeng31299942010-03-15 17:29:09 +0800764 return vmx_capability.ept & VMX_EPTP_WB_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300765}
766
767static inline bool cpu_has_vmx_ept_2m_page(void)
768{
Gui Jianfeng31299942010-03-15 17:29:09 +0800769 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -0300770}
771
Sheng Yang878403b2010-01-05 19:02:29 +0800772static inline bool cpu_has_vmx_ept_1g_page(void)
773{
Gui Jianfeng31299942010-03-15 17:29:09 +0800774 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +0800775}
776
Sheng Yang4bc9b982010-06-02 14:05:24 +0800777static inline bool cpu_has_vmx_ept_4levels(void)
778{
779 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
780}
781
Gui Jianfeng31299942010-03-15 17:29:09 +0800782static inline bool cpu_has_vmx_invept_individual_addr(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800783{
Gui Jianfeng31299942010-03-15 17:29:09 +0800784 return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800785}
786
Gui Jianfeng31299942010-03-15 17:29:09 +0800787static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800788{
Gui Jianfeng31299942010-03-15 17:29:09 +0800789 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800790}
791
Gui Jianfeng31299942010-03-15 17:29:09 +0800792static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800793{
Gui Jianfeng31299942010-03-15 17:29:09 +0800794 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800795}
796
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800797static inline bool cpu_has_vmx_invvpid_single(void)
798{
799 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
800}
801
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800802static inline bool cpu_has_vmx_invvpid_global(void)
803{
804 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
805}
806
Gui Jianfeng31299942010-03-15 17:29:09 +0800807static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +0800808{
Sheng Yang04547152009-04-01 15:52:31 +0800809 return vmcs_config.cpu_based_2nd_exec_ctrl &
810 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +0800811}
812
Gui Jianfeng31299942010-03-15 17:29:09 +0800813static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -0700814{
815 return vmcs_config.cpu_based_2nd_exec_ctrl &
816 SECONDARY_EXEC_UNRESTRICTED_GUEST;
817}
818
Gui Jianfeng31299942010-03-15 17:29:09 +0800819static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800820{
821 return vmcs_config.cpu_based_2nd_exec_ctrl &
822 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
823}
824
Gui Jianfeng31299942010-03-15 17:29:09 +0800825static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
Sheng Yangf78e0e22007-10-29 09:40:42 +0800826{
Gui Jianfeng6d3e4352010-01-29 15:36:59 +0800827 return flexpriority_enabled && irqchip_in_kernel(kvm);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800828}
829
Gui Jianfeng31299942010-03-15 17:29:09 +0800830static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800831{
Sheng Yang04547152009-04-01 15:52:31 +0800832 return vmcs_config.cpu_based_2nd_exec_ctrl &
833 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800834}
835
Gui Jianfeng31299942010-03-15 17:29:09 +0800836static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800837{
838 return vmcs_config.cpu_based_2nd_exec_ctrl &
839 SECONDARY_EXEC_RDTSCP;
840}
841
Gui Jianfeng31299942010-03-15 17:29:09 +0800842static inline bool cpu_has_virtual_nmis(void)
Sheng Yangf08864b2008-05-15 18:23:25 +0800843{
844 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
845}
846
Sheng Yangf5f48ee2010-06-30 12:25:15 +0800847static inline bool cpu_has_vmx_wbinvd_exit(void)
848{
849 return vmcs_config.cpu_based_2nd_exec_ctrl &
850 SECONDARY_EXEC_WBINVD_EXITING;
851}
852
Sheng Yang04547152009-04-01 15:52:31 +0800853static inline bool report_flexpriority(void)
854{
855 return flexpriority_enabled;
856}
857
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300858static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
859{
860 return vmcs12->cpu_based_vm_exec_control & bit;
861}
862
863static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
864{
865 return (vmcs12->cpu_based_vm_exec_control &
866 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
867 (vmcs12->secondary_vm_exec_control & bit);
868}
869
Nadav Har'El644d7112011-05-25 23:12:35 +0300870static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12,
871 struct kvm_vcpu *vcpu)
872{
873 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
874}
875
876static inline bool is_exception(u32 intr_info)
877{
878 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
879 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
880}
881
882static void nested_vmx_vmexit(struct kvm_vcpu *vcpu);
Nadav Har'El7c177932011-05-25 23:12:04 +0300883static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
884 struct vmcs12 *vmcs12,
885 u32 reason, unsigned long qualification);
886
Rusty Russell8b9cf982007-07-30 16:31:43 +1000887static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -0800888{
889 int i;
890
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400891 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +0300892 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300893 return i;
894 return -1;
895}
896
Sheng Yang2384d2b2008-01-17 15:14:33 +0800897static inline void __invvpid(int ext, u16 vpid, gva_t gva)
898{
899 struct {
900 u64 vpid : 16;
901 u64 rsvd : 48;
902 u64 gva;
903 } operand = { vpid, 0, gva };
904
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300905 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800906 /* CF==1 or ZF==1 --> rc = -1 */
907 "; ja 1f ; ud2 ; 1:"
908 : : "a"(&operand), "c"(ext) : "cc", "memory");
909}
910
Sheng Yang14394422008-04-28 12:24:45 +0800911static inline void __invept(int ext, u64 eptp, gpa_t gpa)
912{
913 struct {
914 u64 eptp, gpa;
915 } operand = {eptp, gpa};
916
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300917 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +0800918 /* CF==1 or ZF==1 --> rc = -1 */
919 "; ja 1f ; ud2 ; 1:\n"
920 : : "a" (&operand), "c" (ext) : "cc", "memory");
921}
922
Avi Kivity26bb0982009-09-07 11:14:12 +0300923static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +0300924{
925 int i;
926
Rusty Russell8b9cf982007-07-30 16:31:43 +1000927 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +0300928 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400929 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +0000930 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -0800931}
932
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933static void vmcs_clear(struct vmcs *vmcs)
934{
935 u64 phys_addr = __pa(vmcs);
936 u8 error;
937
Avi Kivity4ecac3f2008-05-13 13:23:38 +0300938 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200939 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940 : "cc", "memory");
941 if (error)
942 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
943 vmcs, phys_addr);
944}
945
Nadav Har'Eld462b812011-05-24 15:26:10 +0300946static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
947{
948 vmcs_clear(loaded_vmcs->vmcs);
949 loaded_vmcs->cpu = -1;
950 loaded_vmcs->launched = 0;
951}
952
Dongxiao Xu7725b892010-05-11 18:29:38 +0800953static void vmcs_load(struct vmcs *vmcs)
954{
955 u64 phys_addr = __pa(vmcs);
956 u8 error;
957
958 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +0200959 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +0800960 : "cc", "memory");
961 if (error)
962 printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n",
963 vmcs, phys_addr);
964}
965
Nadav Har'Eld462b812011-05-24 15:26:10 +0300966static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800967{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300968 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -0800969 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970
Nadav Har'Eld462b812011-05-24 15:26:10 +0300971 if (loaded_vmcs->cpu != cpu)
972 return; /* vcpu migration can race with cpu offline */
973 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800974 per_cpu(current_vmcs, cpu) = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300975 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
976 loaded_vmcs_init(loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800977}
978
Nadav Har'Eld462b812011-05-24 15:26:10 +0300979static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800980{
Nadav Har'Eld462b812011-05-24 15:26:10 +0300981 if (loaded_vmcs->cpu != -1)
982 smp_call_function_single(
983 loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -0800984}
985
Gui Jianfeng1760dd42010-06-07 10:33:27 +0800986static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
Sheng Yang2384d2b2008-01-17 15:14:33 +0800987{
988 if (vmx->vpid == 0)
989 return;
990
Gui Jianfeng518c8ae2010-06-04 08:51:39 +0800991 if (cpu_has_vmx_invvpid_single())
992 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +0800993}
994
Gui Jianfengb9d762f2010-06-07 10:32:29 +0800995static inline void vpid_sync_vcpu_global(void)
996{
997 if (cpu_has_vmx_invvpid_global())
998 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
999}
1000
1001static inline void vpid_sync_context(struct vcpu_vmx *vmx)
1002{
1003 if (cpu_has_vmx_invvpid_single())
Gui Jianfeng1760dd42010-06-07 10:33:27 +08001004 vpid_sync_vcpu_single(vmx);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001005 else
1006 vpid_sync_vcpu_global();
1007}
1008
Sheng Yang14394422008-04-28 12:24:45 +08001009static inline void ept_sync_global(void)
1010{
1011 if (cpu_has_vmx_invept_global())
1012 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1013}
1014
1015static inline void ept_sync_context(u64 eptp)
1016{
Avi Kivity089d0342009-03-23 18:26:32 +02001017 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001018 if (cpu_has_vmx_invept_context())
1019 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1020 else
1021 ept_sync_global();
1022 }
1023}
1024
1025static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
1026{
Avi Kivity089d0342009-03-23 18:26:32 +02001027 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001028 if (cpu_has_vmx_invept_individual_addr())
1029 __invept(VMX_EPT_EXTENT_INDIVIDUAL_ADDR,
1030 eptp, gpa);
1031 else
1032 ept_sync_context(eptp);
1033 }
1034}
1035
Avi Kivity96304212011-05-15 10:13:13 -04001036static __always_inline unsigned long vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037{
Avi Kivity5e520e62011-05-15 10:13:12 -04001038 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001039
Avi Kivity5e520e62011-05-15 10:13:12 -04001040 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1041 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 return value;
1043}
1044
Avi Kivity96304212011-05-15 10:13:13 -04001045static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001046{
1047 return vmcs_readl(field);
1048}
1049
Avi Kivity96304212011-05-15 10:13:13 -04001050static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001051{
1052 return vmcs_readl(field);
1053}
1054
Avi Kivity96304212011-05-15 10:13:13 -04001055static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001056{
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001057#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001058 return vmcs_readl(field);
1059#else
1060 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
1061#endif
1062}
1063
Avi Kivitye52de1b2007-01-05 16:36:56 -08001064static noinline void vmwrite_error(unsigned long field, unsigned long value)
1065{
1066 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1067 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1068 dump_stack();
1069}
1070
Avi Kivity6aa8b732006-12-10 02:21:36 -08001071static void vmcs_writel(unsigned long field, unsigned long value)
1072{
1073 u8 error;
1074
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001075 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001076 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001077 if (unlikely(error))
1078 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001079}
1080
1081static void vmcs_write16(unsigned long field, u16 value)
1082{
1083 vmcs_writel(field, value);
1084}
1085
1086static void vmcs_write32(unsigned long field, u32 value)
1087{
1088 vmcs_writel(field, value);
1089}
1090
1091static void vmcs_write64(unsigned long field, u64 value)
1092{
Avi Kivity6aa8b732006-12-10 02:21:36 -08001093 vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001094#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001095 asm volatile ("");
1096 vmcs_writel(field+1, value >> 32);
1097#endif
1098}
1099
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001100static void vmcs_clear_bits(unsigned long field, u32 mask)
1101{
1102 vmcs_writel(field, vmcs_readl(field) & ~mask);
1103}
1104
1105static void vmcs_set_bits(unsigned long field, u32 mask)
1106{
1107 vmcs_writel(field, vmcs_readl(field) | mask);
1108}
1109
Avi Kivity2fb92db2011-04-27 19:42:18 +03001110static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1111{
1112 vmx->segment_cache.bitmask = 0;
1113}
1114
1115static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1116 unsigned field)
1117{
1118 bool ret;
1119 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1120
1121 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1122 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1123 vmx->segment_cache.bitmask = 0;
1124 }
1125 ret = vmx->segment_cache.bitmask & mask;
1126 vmx->segment_cache.bitmask |= mask;
1127 return ret;
1128}
1129
1130static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1131{
1132 u16 *p = &vmx->segment_cache.seg[seg].selector;
1133
1134 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1135 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1136 return *p;
1137}
1138
1139static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1140{
1141 ulong *p = &vmx->segment_cache.seg[seg].base;
1142
1143 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1144 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1145 return *p;
1146}
1147
1148static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1149{
1150 u32 *p = &vmx->segment_cache.seg[seg].limit;
1151
1152 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1153 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1154 return *p;
1155}
1156
1157static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1158{
1159 u32 *p = &vmx->segment_cache.seg[seg].ar;
1160
1161 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1162 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1163 return *p;
1164}
1165
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001166static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1167{
1168 u32 eb;
1169
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001170 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
1171 (1u << NM_VECTOR) | (1u << DB_VECTOR);
1172 if ((vcpu->guest_debug &
1173 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1174 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1175 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001176 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001177 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001178 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001179 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Avi Kivity02daab22009-12-30 12:40:26 +02001180 if (vcpu->fpu_active)
1181 eb &= ~(1u << NM_VECTOR);
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001182 vmcs_write32(EXCEPTION_BITMAP, eb);
1183}
1184
Avi Kivity61d2ef22010-04-28 16:40:38 +03001185static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1186{
1187 unsigned i;
1188 struct msr_autoload *m = &vmx->msr_autoload;
1189
Avi Kivity110312c2010-12-21 12:54:20 +02001190 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1191 vmcs_clear_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1192 vmcs_clear_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1193 return;
1194 }
1195
Avi Kivity61d2ef22010-04-28 16:40:38 +03001196 for (i = 0; i < m->nr; ++i)
1197 if (m->guest[i].index == msr)
1198 break;
1199
1200 if (i == m->nr)
1201 return;
1202 --m->nr;
1203 m->guest[i] = m->guest[m->nr];
1204 m->host[i] = m->host[m->nr];
1205 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1206 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1207}
1208
1209static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1210 u64 guest_val, u64 host_val)
1211{
1212 unsigned i;
1213 struct msr_autoload *m = &vmx->msr_autoload;
1214
Avi Kivity110312c2010-12-21 12:54:20 +02001215 if (msr == MSR_EFER && cpu_has_load_ia32_efer) {
1216 vmcs_write64(GUEST_IA32_EFER, guest_val);
1217 vmcs_write64(HOST_IA32_EFER, host_val);
1218 vmcs_set_bits(VM_ENTRY_CONTROLS, VM_ENTRY_LOAD_IA32_EFER);
1219 vmcs_set_bits(VM_EXIT_CONTROLS, VM_EXIT_LOAD_IA32_EFER);
1220 return;
1221 }
1222
Avi Kivity61d2ef22010-04-28 16:40:38 +03001223 for (i = 0; i < m->nr; ++i)
1224 if (m->guest[i].index == msr)
1225 break;
1226
1227 if (i == m->nr) {
1228 ++m->nr;
1229 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1230 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1231 }
1232
1233 m->guest[i].index = msr;
1234 m->guest[i].value = guest_val;
1235 m->host[i].index = msr;
1236 m->host[i].value = host_val;
1237}
1238
Avi Kivity33ed6322007-05-02 16:54:03 +03001239static void reload_tss(void)
1240{
Avi Kivity33ed6322007-05-02 16:54:03 +03001241 /*
1242 * VT restores TR but not its size. Useless.
1243 */
Avi Kivityd3591922010-07-26 18:32:39 +03001244 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivitya5f61302008-02-20 17:57:21 +02001245 struct desc_struct *descs;
Avi Kivity33ed6322007-05-02 16:54:03 +03001246
Avi Kivityd3591922010-07-26 18:32:39 +03001247 descs = (void *)gdt->address;
Avi Kivity33ed6322007-05-02 16:54:03 +03001248 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1249 load_TR_desc();
Avi Kivity33ed6322007-05-02 16:54:03 +03001250}
1251
Avi Kivity92c0d902009-10-29 11:00:16 +02001252static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03001253{
Roel Kluin3a34a882009-08-04 02:08:45 -07001254 u64 guest_efer;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001255 u64 ignore_bits;
Eddie Dong2cc51562007-05-21 07:28:09 +03001256
Avi Kivityf6801df2010-01-21 15:31:50 +02001257 guest_efer = vmx->vcpu.arch.efer;
Roel Kluin3a34a882009-08-04 02:08:45 -07001258
Avi Kivity51c6cf62007-08-29 03:48:05 +03001259 /*
1260 * NX is emulated; LMA and LME handled by hardware; SCE meaninless
1261 * outside long mode
1262 */
1263 ignore_bits = EFER_NX | EFER_SCE;
1264#ifdef CONFIG_X86_64
1265 ignore_bits |= EFER_LMA | EFER_LME;
1266 /* SCE is meaningful only in long mode on Intel */
1267 if (guest_efer & EFER_LMA)
1268 ignore_bits &= ~(u64)EFER_SCE;
1269#endif
Avi Kivity51c6cf62007-08-29 03:48:05 +03001270 guest_efer &= ~ignore_bits;
1271 guest_efer |= host_efer & ignore_bits;
Avi Kivity26bb0982009-09-07 11:14:12 +03001272 vmx->guest_msrs[efer_offset].data = guest_efer;
Avi Kivityd5696722009-12-02 12:28:47 +02001273 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03001274
1275 clear_atomic_switch_msr(vmx, MSR_EFER);
1276 /* On ept, can't emulate nx, and must switch nx atomically */
1277 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
1278 guest_efer = vmx->vcpu.arch.efer;
1279 if (!(guest_efer & EFER_LMA))
1280 guest_efer &= ~EFER_LME;
1281 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
1282 return false;
1283 }
1284
Avi Kivity26bb0982009-09-07 11:14:12 +03001285 return true;
Avi Kivity51c6cf62007-08-29 03:48:05 +03001286}
1287
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001288static unsigned long segment_base(u16 selector)
1289{
Avi Kivityd3591922010-07-26 18:32:39 +03001290 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001291 struct desc_struct *d;
1292 unsigned long table_base;
1293 unsigned long v;
1294
1295 if (!(selector & ~3))
1296 return 0;
1297
Avi Kivityd3591922010-07-26 18:32:39 +03001298 table_base = gdt->address;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02001299
1300 if (selector & 4) { /* from ldt */
1301 u16 ldt_selector = kvm_read_ldt();
1302
1303 if (!(ldt_selector & ~3))
1304 return 0;
1305
1306 table_base = segment_base(ldt_selector);
1307 }
1308 d = (struct desc_struct *)(table_base + (selector & ~7));
1309 v = get_desc_base(d);
1310#ifdef CONFIG_X86_64
1311 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1312 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1313#endif
1314 return v;
1315}
1316
1317static inline unsigned long kvm_read_tr_base(void)
1318{
1319 u16 tr;
1320 asm("str %0" : "=g"(tr));
1321 return segment_base(tr);
1322}
1323
Avi Kivity04d2cc72007-09-10 18:10:54 +03001324static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03001325{
Avi Kivity04d2cc72007-09-10 18:10:54 +03001326 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03001327 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03001328
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001329 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001330 return;
1331
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001332 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001333 /*
1334 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1335 * allow segment selectors with cpl > 0 or ti == 1.
1336 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001337 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02001338 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02001339 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001340 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001341 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001342 vmx->host_state.fs_reload_needed = 0;
1343 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03001344 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001345 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001346 }
Avi Kivity9581d442010-10-19 16:46:55 +02001347 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001348 if (!(vmx->host_state.gs_sel & 7))
1349 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001350 else {
1351 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001352 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03001353 }
1354
1355#ifdef CONFIG_X86_64
1356 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1357 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1358#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001359 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1360 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03001361#endif
Avi Kivity707c0872007-05-02 17:33:43 +03001362
1363#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001364 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1365 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03001366 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03001367#endif
Avi Kivity26bb0982009-09-07 11:14:12 +03001368 for (i = 0; i < vmx->save_nmsrs; ++i)
1369 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02001370 vmx->guest_msrs[i].data,
1371 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03001372}
1373
Avi Kivitya9b21b62008-06-24 11:48:49 +03001374static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03001375{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001376 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03001377 return;
1378
Avi Kivitye1beb1d2007-11-18 13:50:24 +02001379 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001380 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02001381#ifdef CONFIG_X86_64
1382 if (is_long_mode(&vmx->vcpu))
1383 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1384#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02001385 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001386 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001387#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02001388 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02001389#else
1390 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03001391#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03001392 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02001393 if (vmx->host_state.fs_reload_needed)
1394 loadsegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02001395 reload_tss();
Avi Kivity44ea2b12009-09-06 15:55:37 +03001396#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02001397 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03001398#endif
Avi Kivity1c11e712010-05-03 16:05:44 +03001399 if (current_thread_info()->status & TS_USEDFPU)
1400 clts();
Avi Kivity3444d7d2010-07-26 18:32:38 +03001401 load_gdt(&__get_cpu_var(host_gdt));
Avi Kivity33ed6322007-05-02 16:54:03 +03001402}
1403
Avi Kivitya9b21b62008-06-24 11:48:49 +03001404static void vmx_load_host_state(struct vcpu_vmx *vmx)
1405{
1406 preempt_disable();
1407 __vmx_load_host_state(vmx);
1408 preempt_enable();
1409}
1410
Avi Kivity6aa8b732006-12-10 02:21:36 -08001411/*
1412 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1413 * vcpu mutex is already taken.
1414 */
Avi Kivity15ad7142007-07-11 18:17:21 +03001415static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001416{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001417 struct vcpu_vmx *vmx = to_vmx(vcpu);
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001418 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08001419
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001420 if (!vmm_exclusive)
1421 kvm_cpu_vmxon(phys_addr);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001422 else if (vmx->loaded_vmcs->cpu != cpu)
1423 loaded_vmcs_clear(vmx->loaded_vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001424
Nadav Har'Eld462b812011-05-24 15:26:10 +03001425 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1426 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1427 vmcs_load(vmx->loaded_vmcs->vmcs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001428 }
1429
Nadav Har'Eld462b812011-05-24 15:26:10 +03001430 if (vmx->loaded_vmcs->cpu != cpu) {
Avi Kivityd3591922010-07-26 18:32:39 +03001431 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001432 unsigned long sysenter_esp;
1433
Avi Kivitya8eeb042010-05-10 12:34:53 +03001434 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001435 local_irq_disable();
Nadav Har'Eld462b812011-05-24 15:26:10 +03001436 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1437 &per_cpu(loaded_vmcss_on_cpu, cpu));
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08001438 local_irq_enable();
1439
Avi Kivity6aa8b732006-12-10 02:21:36 -08001440 /*
1441 * Linux uses per-cpu TSS and GDT, so set these when switching
1442 * processors.
1443 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03001444 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
Avi Kivityd3591922010-07-26 18:32:39 +03001445 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001446
1447 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1448 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Nadav Har'Eld462b812011-05-24 15:26:10 +03001449 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001450 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001451}
1452
1453static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1454{
Avi Kivitya9b21b62008-06-24 11:48:49 +03001455 __vmx_load_host_state(to_vmx(vcpu));
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001456 if (!vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03001457 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1458 vcpu->cpu = -1;
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08001459 kvm_cpu_vmxoff();
1460 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001461}
1462
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001463static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1464{
Avi Kivity81231c62010-01-24 16:26:40 +02001465 ulong cr0;
1466
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001467 if (vcpu->fpu_active)
1468 return;
1469 vcpu->fpu_active = 1;
Avi Kivity81231c62010-01-24 16:26:40 +02001470 cr0 = vmcs_readl(GUEST_CR0);
1471 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1472 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1473 vmcs_writel(GUEST_CR0, cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001474 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001475 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
1476 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001477}
1478
Avi Kivityedcafe32009-12-30 18:07:40 +02001479static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1480
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001481/*
1482 * Return the cr0 value that a nested guest would read. This is a combination
1483 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
1484 * its hypervisor (cr0_read_shadow).
1485 */
1486static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
1487{
1488 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
1489 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
1490}
1491static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
1492{
1493 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
1494 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
1495}
1496
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001497static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1498{
Avi Kivityedcafe32009-12-30 18:07:40 +02001499 vmx_decache_cr0_guest_bits(vcpu);
Avi Kivity81231c62010-01-24 16:26:40 +02001500 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001501 update_exception_bitmap(vcpu);
Avi Kivityedcafe32009-12-30 18:07:40 +02001502 vcpu->arch.cr0_guest_owned_bits = 0;
1503 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
1504 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
Avi Kivity5fd86fc2007-05-02 20:40:00 +03001505}
1506
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1508{
Avi Kivity78ac8b42010-04-08 18:19:35 +03001509 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03001510
Avi Kivity6de12732011-03-07 12:51:22 +02001511 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1512 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1513 rflags = vmcs_readl(GUEST_RFLAGS);
1514 if (to_vmx(vcpu)->rmode.vm86_active) {
1515 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1516 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1517 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1518 }
1519 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001520 }
Avi Kivity6de12732011-03-07 12:51:22 +02001521 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001522}
1523
1524static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1525{
Avi Kivity6de12732011-03-07 12:51:22 +02001526 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity69c73022011-03-07 15:26:44 +02001527 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6de12732011-03-07 12:51:22 +02001528 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001529 if (to_vmx(vcpu)->rmode.vm86_active) {
1530 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01001531 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03001532 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001533 vmcs_writel(GUEST_RFLAGS, rflags);
1534}
1535
Glauber Costa2809f5d2009-05-12 16:21:05 -04001536static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1537{
1538 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1539 int ret = 0;
1540
1541 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01001542 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001543 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01001544 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04001545
1546 return ret & mask;
1547}
1548
1549static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1550{
1551 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1552 u32 interruptibility = interruptibility_old;
1553
1554 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1555
Jan Kiszka48005f62010-02-19 19:38:07 +01001556 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001557 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01001558 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04001559 interruptibility |= GUEST_INTR_STATE_STI;
1560
1561 if ((interruptibility != interruptibility_old))
1562 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1563}
1564
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1566{
1567 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001568
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001569 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001570 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001571 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001572
Glauber Costa2809f5d2009-05-12 16:21:05 -04001573 /* skipping an emulated instruction also counts */
1574 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001575}
1576
Anthony Liguori443381a2010-12-06 10:53:38 -06001577static void vmx_clear_hlt(struct kvm_vcpu *vcpu)
1578{
1579 /* Ensure that we clear the HLT state in the VMCS. We don't need to
1580 * explicitly skip the instruction because if the HLT state is set, then
1581 * the instruction is already executing and RIP has already been
1582 * advanced. */
1583 if (!yield_on_hlt &&
1584 vmcs_read32(GUEST_ACTIVITY_STATE) == GUEST_ACTIVITY_HLT)
1585 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
1586}
1587
Avi Kivity298101d2007-11-25 13:41:11 +02001588static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
Joerg Roedelce7ddec2010-04-22 12:33:13 +02001589 bool has_error_code, u32 error_code,
1590 bool reinject)
Avi Kivity298101d2007-11-25 13:41:11 +02001591{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001592 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001593 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001594
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001595 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001596 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001597 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
1598 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001599
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001600 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05001601 int inc_eip = 0;
1602 if (kvm_exception_is_soft(nr))
1603 inc_eip = vcpu->arch.event_exit_inst_len;
1604 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02001605 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02001606 return;
1607 }
1608
Gleb Natapov66fd3f72009-05-11 13:35:50 +03001609 if (kvm_exception_is_soft(nr)) {
1610 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
1611 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01001612 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
1613 } else
1614 intr_info |= INTR_TYPE_HARD_EXCEPTION;
1615
1616 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Anthony Liguori443381a2010-12-06 10:53:38 -06001617 vmx_clear_hlt(vcpu);
Avi Kivity298101d2007-11-25 13:41:11 +02001618}
1619
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001620static bool vmx_rdtscp_supported(void)
1621{
1622 return cpu_has_vmx_rdtscp();
1623}
1624
Avi Kivity6aa8b732006-12-10 02:21:36 -08001625/*
Eddie Donga75beee2007-05-17 18:55:15 +03001626 * Swap MSR entry in host/guest MSR entry array.
1627 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001628static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03001629{
Avi Kivity26bb0982009-09-07 11:14:12 +03001630 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001631
1632 tmp = vmx->guest_msrs[to];
1633 vmx->guest_msrs[to] = vmx->guest_msrs[from];
1634 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03001635}
1636
1637/*
Avi Kivitye38aea32007-04-19 13:22:48 +03001638 * Set up the vmcs to automatically save and restore system
1639 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
1640 * mode, as fiddling with msrs is very expensive.
1641 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10001642static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03001643{
Avi Kivity26bb0982009-09-07 11:14:12 +03001644 int save_nmsrs, index;
Avi Kivity58972972009-02-24 22:26:47 +02001645 unsigned long *msr_bitmap;
Avi Kivitye38aea32007-04-19 13:22:48 +03001646
Avi Kivity33f9c502008-02-27 16:06:57 +02001647 vmx_load_host_state(vmx);
Eddie Donga75beee2007-05-17 18:55:15 +03001648 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001649#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10001650 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10001651 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03001652 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001653 move_msr_up(vmx, index, save_nmsrs++);
1654 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001655 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001656 move_msr_up(vmx, index, save_nmsrs++);
1657 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03001658 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10001659 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001660 index = __find_msr_index(vmx, MSR_TSC_AUX);
1661 if (index >= 0 && vmx->rdtscp_enabled)
1662 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03001663 /*
Brian Gerst8c065852010-07-17 09:03:26 -04001664 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03001665 * if efer.sce is enabled.
1666 */
Brian Gerst8c065852010-07-17 09:03:26 -04001667 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02001668 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10001669 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001670 }
Eddie Donga75beee2007-05-17 18:55:15 +03001671#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02001672 index = __find_msr_index(vmx, MSR_EFER);
1673 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03001674 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001675
Avi Kivity26bb0982009-09-07 11:14:12 +03001676 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02001677
1678 if (cpu_has_vmx_msr_bitmap()) {
1679 if (is_long_mode(&vmx->vcpu))
1680 msr_bitmap = vmx_msr_bitmap_longmode;
1681 else
1682 msr_bitmap = vmx_msr_bitmap_legacy;
1683
1684 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
1685 }
Avi Kivitye38aea32007-04-19 13:22:48 +03001686}
1687
1688/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689 * reads and returns guest's timestamp counter "register"
1690 * guest_tsc = host_tsc + tsc_offset -- 21.3
1691 */
1692static u64 guest_read_tsc(void)
1693{
1694 u64 host_tsc, tsc_offset;
1695
1696 rdtscll(host_tsc);
1697 tsc_offset = vmcs_read64(TSC_OFFSET);
1698 return host_tsc + tsc_offset;
1699}
1700
1701/*
Joerg Roedel4051b182011-03-25 09:44:49 +01001702 * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ
1703 * ioctl. In this case the call-back should update internal vmx state to make
1704 * the changes effective.
1705 */
1706static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz)
1707{
1708 /* Nothing to do here */
1709}
1710
1711/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10001712 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08001713 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10001714static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001715{
Zachary Amsdenf4e1b3c2010-08-19 22:07:16 -10001716 vmcs_write64(TSC_OFFSET, offset);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001717}
1718
Zachary Amsdene48672f2010-08-19 22:07:23 -10001719static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment)
1720{
1721 u64 offset = vmcs_read64(TSC_OFFSET);
1722 vmcs_write64(TSC_OFFSET, offset + adjustment);
1723}
1724
Joerg Roedel857e4092011-03-25 09:44:50 +01001725static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
1726{
1727 return target_tsc - native_read_tsc();
1728}
1729
Nadav Har'El801d3422011-05-25 23:02:23 +03001730static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
1731{
1732 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
1733 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
1734}
1735
1736/*
1737 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
1738 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
1739 * all guests if the "nested" module option is off, and can also be disabled
1740 * for a single guest by disabling its VMX cpuid bit.
1741 */
1742static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
1743{
1744 return nested && guest_cpuid_has_vmx(vcpu);
1745}
1746
Avi Kivity6aa8b732006-12-10 02:21:36 -08001747/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03001748 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
1749 * returned for the various VMX controls MSRs when nested VMX is enabled.
1750 * The same values should also be used to verify that vmcs12 control fields are
1751 * valid during nested entry from L1 to L2.
1752 * Each of these control msrs has a low and high 32-bit half: A low bit is on
1753 * if the corresponding bit in the (32-bit) control field *must* be on, and a
1754 * bit in the high half is on if the corresponding bit in the control field
1755 * may be on. See also vmx_control_verify().
1756 * TODO: allow these variables to be modified (downgraded) by module options
1757 * or other means.
1758 */
1759static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
1760static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
1761static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
1762static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
1763static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
1764static __init void nested_vmx_setup_ctls_msrs(void)
1765{
1766 /*
1767 * Note that as a general rule, the high half of the MSRs (bits in
1768 * the control fields which may be 1) should be initialized by the
1769 * intersection of the underlying hardware's MSR (i.e., features which
1770 * can be supported) and the list of features we want to expose -
1771 * because they are known to be properly supported in our code.
1772 * Also, usually, the low half of the MSRs (bits which must be 1) can
1773 * be set to 0, meaning that L1 may turn off any of these bits. The
1774 * reason is that if one of these bits is necessary, it will appear
1775 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
1776 * fields of vmcs01 and vmcs02, will turn these bits off - and
1777 * nested_vmx_exit_handled() will not pass related exits to L1.
1778 * These rules have exceptions below.
1779 */
1780
1781 /* pin-based controls */
1782 /*
1783 * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is
1784 * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR.
1785 */
1786 nested_vmx_pinbased_ctls_low = 0x16 ;
1787 nested_vmx_pinbased_ctls_high = 0x16 |
1788 PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
1789 PIN_BASED_VIRTUAL_NMIS;
1790
1791 /* exit controls */
1792 nested_vmx_exit_ctls_low = 0;
1793#ifdef CONFIG_X86_64
1794 nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE;
1795#else
1796 nested_vmx_exit_ctls_high = 0;
1797#endif
1798
1799 /* entry controls */
1800 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
1801 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
1802 nested_vmx_entry_ctls_low = 0;
1803 nested_vmx_entry_ctls_high &=
1804 VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE;
1805
1806 /* cpu-based controls */
1807 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
1808 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
1809 nested_vmx_procbased_ctls_low = 0;
1810 nested_vmx_procbased_ctls_high &=
1811 CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING |
1812 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
1813 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
1814 CPU_BASED_CR3_STORE_EXITING |
1815#ifdef CONFIG_X86_64
1816 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
1817#endif
1818 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
1819 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
1820 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1821 /*
1822 * We can allow some features even when not supported by the
1823 * hardware. For example, L1 can specify an MSR bitmap - and we
1824 * can use it to avoid exits to L1 - even when L0 runs L2
1825 * without MSR bitmaps.
1826 */
1827 nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS;
1828
1829 /* secondary cpu-based controls */
1830 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
1831 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
1832 nested_vmx_secondary_ctls_low = 0;
1833 nested_vmx_secondary_ctls_high &=
1834 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1835}
1836
1837static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
1838{
1839 /*
1840 * Bits 0 in high must be 0, and bits 1 in low must be 1.
1841 */
1842 return ((control & high) | low) == control;
1843}
1844
1845static inline u64 vmx_control_msr(u32 low, u32 high)
1846{
1847 return low | ((u64)high << 32);
1848}
1849
1850/*
1851 * If we allow our guest to use VMX instructions (i.e., nested VMX), we should
1852 * also let it use VMX-specific MSRs.
1853 * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a
1854 * VMX-specific MSR, or 0 when we haven't (and the caller should handle it
1855 * like all other MSRs).
1856 */
1857static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1858{
1859 if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC &&
1860 msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) {
1861 /*
1862 * According to the spec, processors which do not support VMX
1863 * should throw a #GP(0) when VMX capability MSRs are read.
1864 */
1865 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
1866 return 1;
1867 }
1868
1869 switch (msr_index) {
1870 case MSR_IA32_FEATURE_CONTROL:
1871 *pdata = 0;
1872 break;
1873 case MSR_IA32_VMX_BASIC:
1874 /*
1875 * This MSR reports some information about VMX support. We
1876 * should return information about the VMX we emulate for the
1877 * guest, and the VMCS structure we give it - not about the
1878 * VMX support of the underlying hardware.
1879 */
1880 *pdata = VMCS12_REVISION |
1881 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
1882 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
1883 break;
1884 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1885 case MSR_IA32_VMX_PINBASED_CTLS:
1886 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
1887 nested_vmx_pinbased_ctls_high);
1888 break;
1889 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1890 case MSR_IA32_VMX_PROCBASED_CTLS:
1891 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
1892 nested_vmx_procbased_ctls_high);
1893 break;
1894 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1895 case MSR_IA32_VMX_EXIT_CTLS:
1896 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
1897 nested_vmx_exit_ctls_high);
1898 break;
1899 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1900 case MSR_IA32_VMX_ENTRY_CTLS:
1901 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
1902 nested_vmx_entry_ctls_high);
1903 break;
1904 case MSR_IA32_VMX_MISC:
1905 *pdata = 0;
1906 break;
1907 /*
1908 * These MSRs specify bits which the guest must keep fixed (on or off)
1909 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
1910 * We picked the standard core2 setting.
1911 */
1912#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
1913#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
1914 case MSR_IA32_VMX_CR0_FIXED0:
1915 *pdata = VMXON_CR0_ALWAYSON;
1916 break;
1917 case MSR_IA32_VMX_CR0_FIXED1:
1918 *pdata = -1ULL;
1919 break;
1920 case MSR_IA32_VMX_CR4_FIXED0:
1921 *pdata = VMXON_CR4_ALWAYSON;
1922 break;
1923 case MSR_IA32_VMX_CR4_FIXED1:
1924 *pdata = -1ULL;
1925 break;
1926 case MSR_IA32_VMX_VMCS_ENUM:
1927 *pdata = 0x1f;
1928 break;
1929 case MSR_IA32_VMX_PROCBASED_CTLS2:
1930 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
1931 nested_vmx_secondary_ctls_high);
1932 break;
1933 case MSR_IA32_VMX_EPT_VPID_CAP:
1934 /* Currently, no nested ept or nested vpid */
1935 *pdata = 0;
1936 break;
1937 default:
1938 return 0;
1939 }
1940
1941 return 1;
1942}
1943
1944static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1945{
1946 if (!nested_vmx_allowed(vcpu))
1947 return 0;
1948
1949 if (msr_index == MSR_IA32_FEATURE_CONTROL)
1950 /* TODO: the right thing. */
1951 return 1;
1952 /*
1953 * No need to treat VMX capability MSRs specially: If we don't handle
1954 * them, handle_wrmsr will #GP(0), which is correct (they are readonly)
1955 */
1956 return 0;
1957}
1958
1959/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960 * Reads an msr value (of 'msr_index') into 'pdata'.
1961 * Returns 0 on success, non-0 otherwise.
1962 * Assumes vcpu_load() was already called.
1963 */
1964static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
1965{
1966 u64 data;
Avi Kivity26bb0982009-09-07 11:14:12 +03001967 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968
1969 if (!pdata) {
1970 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
1971 return -EINVAL;
1972 }
1973
1974 switch (msr_index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001975#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001976 case MSR_FS_BASE:
1977 data = vmcs_readl(GUEST_FS_BASE);
1978 break;
1979 case MSR_GS_BASE:
1980 data = vmcs_readl(GUEST_GS_BASE);
1981 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03001982 case MSR_KERNEL_GS_BASE:
1983 vmx_load_host_state(to_vmx(vcpu));
1984 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
1985 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03001986#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001987 case MSR_EFER:
Avi Kivity3bab1f52006-12-29 16:49:48 -08001988 return kvm_get_msr_common(vcpu, msr_index, pdata);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05301989 case MSR_IA32_TSC:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990 data = guest_read_tsc();
1991 break;
1992 case MSR_IA32_SYSENTER_CS:
1993 data = vmcs_read32(GUEST_SYSENTER_CS);
1994 break;
1995 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001996 data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001997 break;
1998 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02001999 data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002000 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002001 case MSR_TSC_AUX:
2002 if (!to_vmx(vcpu)->rdtscp_enabled)
2003 return 1;
2004 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002005 default:
Avi Kivity26bb0982009-09-07 11:14:12 +03002006 vmx_load_host_state(to_vmx(vcpu));
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002007 if (vmx_get_vmx_msr(vcpu, msr_index, pdata))
2008 return 0;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002009 msr = find_msr_entry(to_vmx(vcpu), msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002010 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03002011 vmx_load_host_state(to_vmx(vcpu));
Avi Kivity3bab1f52006-12-29 16:49:48 -08002012 data = msr->data;
2013 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002014 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08002015 return kvm_get_msr_common(vcpu, msr_index, pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002016 }
2017
2018 *pdata = data;
2019 return 0;
2020}
2021
2022/*
2023 * Writes msr value into into the appropriate "register".
2024 * Returns 0 on success, non-0 otherwise.
2025 * Assumes vcpu_load() was already called.
2026 */
2027static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
2028{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002029 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002030 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03002031 int ret = 0;
2032
Avi Kivity6aa8b732006-12-10 02:21:36 -08002033 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08002034 case MSR_EFER:
Avi Kivitya9b21b62008-06-24 11:48:49 +03002035 vmx_load_host_state(vmx);
Eddie Dong2cc51562007-05-21 07:28:09 +03002036 ret = kvm_set_msr_common(vcpu, msr_index, data);
Eddie Dong2cc51562007-05-21 07:28:09 +03002037 break;
Avi Kivity16175a72009-03-23 22:13:44 +02002038#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002039 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002040 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002041 vmcs_writel(GUEST_FS_BASE, data);
2042 break;
2043 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03002044 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002045 vmcs_writel(GUEST_GS_BASE, data);
2046 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03002047 case MSR_KERNEL_GS_BASE:
2048 vmx_load_host_state(vmx);
2049 vmx->msr_guest_kernel_gs_base = data;
2050 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002051#endif
2052 case MSR_IA32_SYSENTER_CS:
2053 vmcs_write32(GUEST_SYSENTER_CS, data);
2054 break;
2055 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002056 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002057 break;
2058 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02002059 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002060 break;
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05302061 case MSR_IA32_TSC:
Zachary Amsden99e3e302010-08-19 22:07:17 -10002062 kvm_write_tsc(vcpu, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002063 break;
Sheng Yang468d4722008-10-09 16:01:55 +08002064 case MSR_IA32_CR_PAT:
2065 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2066 vmcs_write64(GUEST_IA32_PAT, data);
2067 vcpu->arch.pat = data;
2068 break;
2069 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002070 ret = kvm_set_msr_common(vcpu, msr_index, data);
2071 break;
2072 case MSR_TSC_AUX:
2073 if (!vmx->rdtscp_enabled)
2074 return 1;
2075 /* Check reserved bit, higher 32 bits should be zero */
2076 if ((data >> 32) != 0)
2077 return 1;
2078 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002079 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002080 if (vmx_set_vmx_msr(vcpu, msr_index, data))
2081 break;
Rusty Russell8b9cf982007-07-30 16:31:43 +10002082 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002083 if (msr) {
Gleb Natapov542423b2009-08-27 15:07:30 +03002084 vmx_load_host_state(vmx);
Avi Kivity3bab1f52006-12-29 16:49:48 -08002085 msr->data = data;
2086 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002087 }
Eddie Dong2cc51562007-05-21 07:28:09 +03002088 ret = kvm_set_msr_common(vcpu, msr_index, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002089 }
2090
Eddie Dong2cc51562007-05-21 07:28:09 +03002091 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002092}
2093
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002094static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002095{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002096 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2097 switch (reg) {
2098 case VCPU_REGS_RSP:
2099 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2100 break;
2101 case VCPU_REGS_RIP:
2102 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2103 break;
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002104 case VCPU_EXREG_PDPTR:
2105 if (enable_ept)
2106 ept_save_pdptrs(vcpu);
2107 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002108 default:
2109 break;
2110 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002111}
2112
Jan Kiszka355be0b2009-10-03 00:31:21 +02002113static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002114{
Jan Kiszkaae675ef2008-12-15 13:52:10 +01002115 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
2116 vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]);
2117 else
2118 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
2119
Avi Kivityabd3f2d2007-05-02 17:57:40 +03002120 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002121}
2122
2123static __init int cpu_has_kvm_support(void)
2124{
Eduardo Habkost6210e372008-11-17 19:03:16 -02002125 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002126}
2127
2128static __init int vmx_disabled_by_bios(void)
2129{
2130 u64 msr;
2131
2132 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04002133 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08002134 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04002135 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2136 && tboot_enabled())
2137 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08002138 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04002139 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08002140 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08002141 && !tboot_enabled()) {
2142 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08002143 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04002144 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08002145 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08002146 /* launched w/o TXT and VMX disabled */
2147 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2148 && !tboot_enabled())
2149 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04002150 }
2151
2152 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002153}
2154
Dongxiao Xu7725b892010-05-11 18:29:38 +08002155static void kvm_cpu_vmxon(u64 addr)
2156{
2157 asm volatile (ASM_VMX_VMXON_RAX
2158 : : "a"(&addr), "m"(addr)
2159 : "memory", "cc");
2160}
2161
Alexander Graf10474ae2009-09-15 11:37:46 +02002162static int hardware_enable(void *garbage)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002163{
2164 int cpu = raw_smp_processor_id();
2165 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04002166 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002167
Alexander Graf10474ae2009-09-15 11:37:46 +02002168 if (read_cr4() & X86_CR4_VMXE)
2169 return -EBUSY;
2170
Nadav Har'Eld462b812011-05-24 15:26:10 +03002171 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002172 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04002173
2174 test_bits = FEATURE_CONTROL_LOCKED;
2175 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2176 if (tboot_enabled())
2177 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2178
2179 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002180 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04002181 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2182 }
Rusty Russell66aee912007-07-17 23:34:16 +10002183 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
Alexander Graf10474ae2009-09-15 11:37:46 +02002184
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002185 if (vmm_exclusive) {
2186 kvm_cpu_vmxon(phys_addr);
2187 ept_sync_global();
2188 }
Alexander Graf10474ae2009-09-15 11:37:46 +02002189
Avi Kivity3444d7d2010-07-26 18:32:38 +03002190 store_gdt(&__get_cpu_var(host_gdt));
2191
Alexander Graf10474ae2009-09-15 11:37:46 +02002192 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002193}
2194
Nadav Har'Eld462b812011-05-24 15:26:10 +03002195static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03002196{
2197 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03002198 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03002199
Nadav Har'Eld462b812011-05-24 15:26:10 +03002200 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2201 loaded_vmcss_on_cpu_link)
2202 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03002203}
2204
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002205
2206/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2207 * tricks.
2208 */
2209static void kvm_cpu_vmxoff(void)
2210{
2211 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02002212}
2213
Avi Kivity6aa8b732006-12-10 02:21:36 -08002214static void hardware_disable(void *garbage)
2215{
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002216 if (vmm_exclusive) {
Nadav Har'Eld462b812011-05-24 15:26:10 +03002217 vmclear_local_loaded_vmcss();
Dongxiao Xu4610c9c2010-05-11 18:29:48 +08002218 kvm_cpu_vmxoff();
2219 }
Dongxiao Xu7725b892010-05-11 18:29:38 +08002220 write_cr4(read_cr4() & ~X86_CR4_VMXE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002221}
2222
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002223static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04002224 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002225{
2226 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002227 u32 ctl = ctl_min | ctl_opt;
2228
2229 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2230
2231 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2232 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2233
2234 /* Ensure minimum (required) set of control bits are supported. */
2235 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002236 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002237
2238 *result = ctl;
2239 return 0;
2240}
2241
Avi Kivity110312c2010-12-21 12:54:20 +02002242static __init bool allow_1_setting(u32 msr, u32 ctl)
2243{
2244 u32 vmx_msr_low, vmx_msr_high;
2245
2246 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2247 return vmx_msr_high & ctl;
2248}
2249
Yang, Sheng002c7f72007-07-31 14:23:01 +03002250static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002251{
2252 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08002253 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002254 u32 _pin_based_exec_control = 0;
2255 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002256 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002257 u32 _vmexit_control = 0;
2258 u32 _vmentry_control = 0;
2259
2260 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
Sheng Yangf08864b2008-05-15 18:23:25 +08002261 opt = PIN_BASED_VIRTUAL_NMIS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002262 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2263 &_pin_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002264 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002265
Anthony Liguori443381a2010-12-06 10:53:38 -06002266 min =
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002267#ifdef CONFIG_X86_64
2268 CPU_BASED_CR8_LOAD_EXITING |
2269 CPU_BASED_CR8_STORE_EXITING |
2270#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002271 CPU_BASED_CR3_LOAD_EXITING |
2272 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002273 CPU_BASED_USE_IO_BITMAPS |
2274 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002275 CPU_BASED_USE_TSC_OFFSETING |
Sheng Yang59708672009-12-15 13:29:54 +08002276 CPU_BASED_MWAIT_EXITING |
2277 CPU_BASED_MONITOR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03002278 CPU_BASED_INVLPG_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06002279
2280 if (yield_on_hlt)
2281 min |= CPU_BASED_HLT_EXITING;
2282
Sheng Yangf78e0e22007-10-29 09:40:42 +08002283 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08002284 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08002285 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002286 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2287 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002288 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08002289#ifdef CONFIG_X86_64
2290 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2291 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2292 ~CPU_BASED_CR8_STORE_EXITING;
2293#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08002294 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08002295 min2 = 0;
2296 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Sheng Yang2384d2b2008-01-17 15:14:33 +08002297 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08002298 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002299 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002300 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002301 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
2302 SECONDARY_EXEC_RDTSCP;
Sheng Yangd56f5462008-04-25 10:13:16 +08002303 if (adjust_vmx_controls(min2, opt2,
2304 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08002305 &_cpu_based_2nd_exec_control) < 0)
2306 return -EIO;
2307 }
2308#ifndef CONFIG_X86_64
2309 if (!(_cpu_based_2nd_exec_control &
2310 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2311 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2312#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08002313 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03002314 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2315 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03002316 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2317 CPU_BASED_CR3_STORE_EXITING |
2318 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08002319 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
2320 vmx_capability.ept, vmx_capability.vpid);
2321 }
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002322
2323 min = 0;
2324#ifdef CONFIG_X86_64
2325 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2326#endif
Sheng Yang468d4722008-10-09 16:01:55 +08002327 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002328 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2329 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002330 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002331
Sheng Yang468d4722008-10-09 16:01:55 +08002332 min = 0;
2333 opt = VM_ENTRY_LOAD_IA32_PAT;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002334 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2335 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002336 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002337
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002338 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002339
2340 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2341 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002342 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002343
2344#ifdef CONFIG_X86_64
2345 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2346 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03002347 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002348#endif
2349
2350 /* Require Write-Back (WB) memory type for VMCS accesses. */
2351 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03002352 return -EIO;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002353
Yang, Sheng002c7f72007-07-31 14:23:01 +03002354 vmcs_conf->size = vmx_msr_high & 0x1fff;
2355 vmcs_conf->order = get_order(vmcs_config.size);
2356 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002357
Yang, Sheng002c7f72007-07-31 14:23:01 +03002358 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2359 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08002360 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03002361 vmcs_conf->vmexit_ctrl = _vmexit_control;
2362 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002363
Avi Kivity110312c2010-12-21 12:54:20 +02002364 cpu_has_load_ia32_efer =
2365 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2366 VM_ENTRY_LOAD_IA32_EFER)
2367 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2368 VM_EXIT_LOAD_IA32_EFER);
2369
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002370 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08002371}
Avi Kivity6aa8b732006-12-10 02:21:36 -08002372
2373static struct vmcs *alloc_vmcs_cpu(int cpu)
2374{
2375 int node = cpu_to_node(cpu);
2376 struct page *pages;
2377 struct vmcs *vmcs;
2378
Mel Gorman6484eb32009-06-16 15:31:54 -07002379 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002380 if (!pages)
2381 return NULL;
2382 vmcs = page_address(pages);
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002383 memset(vmcs, 0, vmcs_config.size);
2384 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002385 return vmcs;
2386}
2387
2388static struct vmcs *alloc_vmcs(void)
2389{
Ingo Molnard3b2c332007-01-05 16:36:23 -08002390 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08002391}
2392
2393static void free_vmcs(struct vmcs *vmcs)
2394{
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03002395 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002396}
2397
Nadav Har'Eld462b812011-05-24 15:26:10 +03002398/*
2399 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
2400 */
2401static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
2402{
2403 if (!loaded_vmcs->vmcs)
2404 return;
2405 loaded_vmcs_clear(loaded_vmcs);
2406 free_vmcs(loaded_vmcs->vmcs);
2407 loaded_vmcs->vmcs = NULL;
2408}
2409
Sam Ravnborg39959582007-06-01 00:47:13 -07002410static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002411{
2412 int cpu;
2413
Zachary Amsden3230bb42009-09-29 11:38:37 -10002414 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002415 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10002416 per_cpu(vmxarea, cpu) = NULL;
2417 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002418}
2419
Avi Kivity6aa8b732006-12-10 02:21:36 -08002420static __init int alloc_kvm_area(void)
2421{
2422 int cpu;
2423
Zachary Amsden3230bb42009-09-29 11:38:37 -10002424 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002425 struct vmcs *vmcs;
2426
2427 vmcs = alloc_vmcs_cpu(cpu);
2428 if (!vmcs) {
2429 free_kvm_area();
2430 return -ENOMEM;
2431 }
2432
2433 per_cpu(vmxarea, cpu) = vmcs;
2434 }
2435 return 0;
2436}
2437
2438static __init int hardware_setup(void)
2439{
Yang, Sheng002c7f72007-07-31 14:23:01 +03002440 if (setup_vmcs_config(&vmcs_config) < 0)
2441 return -EIO;
Joerg Roedel50a37eb2008-01-31 14:57:38 +01002442
2443 if (boot_cpu_has(X86_FEATURE_NX))
2444 kvm_enable_efer_bits(EFER_NX);
2445
Sheng Yang93ba03c2009-04-01 15:52:32 +08002446 if (!cpu_has_vmx_vpid())
2447 enable_vpid = 0;
2448
Sheng Yang4bc9b982010-06-02 14:05:24 +08002449 if (!cpu_has_vmx_ept() ||
2450 !cpu_has_vmx_ept_4levels()) {
Sheng Yang93ba03c2009-04-01 15:52:32 +08002451 enable_ept = 0;
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002452 enable_unrestricted_guest = 0;
2453 }
2454
2455 if (!cpu_has_vmx_unrestricted_guest())
2456 enable_unrestricted_guest = 0;
Sheng Yang93ba03c2009-04-01 15:52:32 +08002457
2458 if (!cpu_has_vmx_flexpriority())
2459 flexpriority_enabled = 0;
2460
Gleb Natapov95ba8273132009-04-21 17:45:08 +03002461 if (!cpu_has_vmx_tpr_shadow())
2462 kvm_x86_ops->update_cr8_intercept = NULL;
2463
Marcelo Tosatti54dee992009-06-11 12:07:44 -03002464 if (enable_ept && !cpu_has_vmx_ept_2m_page())
2465 kvm_disable_largepages();
2466
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08002467 if (!cpu_has_vmx_ple())
2468 ple_gap = 0;
2469
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002470 if (nested)
2471 nested_vmx_setup_ctls_msrs();
2472
Avi Kivity6aa8b732006-12-10 02:21:36 -08002473 return alloc_kvm_area();
2474}
2475
2476static __exit void hardware_unsetup(void)
2477{
2478 free_kvm_area();
2479}
2480
Avi Kivity6aa8b732006-12-10 02:21:36 -08002481static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save)
2482{
2483 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2484
Avi Kivity6af11b92007-03-19 13:18:10 +02002485 if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08002486 vmcs_write16(sf->selector, save->selector);
2487 vmcs_writel(sf->base, save->base);
2488 vmcs_write32(sf->limit, save->limit);
2489 vmcs_write32(sf->ar_bytes, save->ar);
2490 } else {
2491 u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK)
2492 << AR_DPL_SHIFT;
2493 vmcs_write32(sf->ar_bytes, 0x93 | dpl);
2494 }
2495}
2496
2497static void enter_pmode(struct kvm_vcpu *vcpu)
2498{
2499 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002500 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002501
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002502 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002503 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002504
Avi Kivity2fb92db2011-04-27 19:42:18 +03002505 vmx_segment_cache_clear(vmx);
2506
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002507 vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002508 vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base);
2509 vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit);
2510 vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002511
2512 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002513 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2514 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002515 vmcs_writel(GUEST_RFLAGS, flags);
2516
Rusty Russell66aee912007-07-17 23:34:16 +10002517 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
2518 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002519
2520 update_exception_bitmap(vcpu);
2521
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002522 if (emulate_invalid_guest_state)
2523 return;
2524
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002525 fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es);
2526 fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds);
2527 fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs);
2528 fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002529
Avi Kivity2fb92db2011-04-27 19:42:18 +03002530 vmx_segment_cache_clear(vmx);
2531
Avi Kivity6aa8b732006-12-10 02:21:36 -08002532 vmcs_write16(GUEST_SS_SELECTOR, 0);
2533 vmcs_write32(GUEST_SS_AR_BYTES, 0x93);
2534
2535 vmcs_write16(GUEST_CS_SELECTOR,
2536 vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK);
2537 vmcs_write32(GUEST_CS_AR_BYTES, 0x9b);
2538}
2539
Mike Dayd77c26f2007-10-08 09:02:08 -04002540static gva_t rmode_tss_base(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002541{
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002542 if (!kvm->arch.tss_addr) {
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02002543 struct kvm_memslots *slots;
2544 gfn_t base_gfn;
2545
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08002546 slots = kvm_memslots(kvm);
Avi Kivityf495c6e2010-06-10 17:21:29 +03002547 base_gfn = slots->memslots[0].base_gfn +
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -02002548 kvm->memslots->memslots[0].npages - 3;
Izik Eiduscbc94022007-10-25 00:29:55 +02002549 return base_gfn << PAGE_SHIFT;
2550 }
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08002551 return kvm->arch.tss_addr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002552}
2553
2554static void fix_rmode_seg(int seg, struct kvm_save_segment *save)
2555{
2556 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2557
2558 save->selector = vmcs_read16(sf->selector);
2559 save->base = vmcs_readl(sf->base);
2560 save->limit = vmcs_read32(sf->limit);
2561 save->ar = vmcs_read32(sf->ar_bytes);
Jan Kiszka15b00f32007-11-19 10:21:45 +01002562 vmcs_write16(sf->selector, save->base >> 4);
Gleb Natapov444e8632010-12-27 17:25:04 +02002563 vmcs_write32(sf->base, save->base & 0xffff0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002564 vmcs_write32(sf->limit, 0xffff);
2565 vmcs_write32(sf->ar_bytes, 0xf3);
Gleb Natapov444e8632010-12-27 17:25:04 +02002566 if (save->base & 0xf)
2567 printk_once(KERN_WARNING "kvm: segment base is not paragraph"
2568 " aligned when entering protected mode (seg=%d)",
2569 seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002570}
2571
2572static void enter_rmode(struct kvm_vcpu *vcpu)
2573{
2574 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002575 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002576
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002577 if (enable_unrestricted_guest)
2578 return;
2579
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002580 vmx->emulation_required = 1;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002581 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002582
Gleb Natapov776e58e2011-03-13 12:34:27 +02002583 /*
2584 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
2585 * vcpu. Call it here with phys address pointing 16M below 4G.
2586 */
2587 if (!vcpu->kvm->arch.tss_addr) {
2588 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
2589 "called before entering vcpu\n");
2590 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
2591 vmx_set_tss_addr(vcpu->kvm, 0xfeffd000);
2592 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2593 }
2594
Avi Kivity2fb92db2011-04-27 19:42:18 +03002595 vmx_segment_cache_clear(vmx);
2596
Avi Kivityd0ba64f2011-01-03 14:28:51 +02002597 vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002598 vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002599 vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm));
2600
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002601 vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002602 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
2603
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002604 vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002605 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
2606
2607 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03002608 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002609
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002610 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002611
2612 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10002613 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002614 update_exception_bitmap(vcpu);
2615
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002616 if (emulate_invalid_guest_state)
2617 goto continue_rmode;
2618
Avi Kivity6aa8b732006-12-10 02:21:36 -08002619 vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4);
2620 vmcs_write32(GUEST_SS_LIMIT, 0xffff);
2621 vmcs_write32(GUEST_SS_AR_BYTES, 0xf3);
2622
2623 vmcs_write32(GUEST_CS_AR_BYTES, 0xf3);
Michael Riepeabacf8d2006-12-22 01:05:45 -08002624 vmcs_write32(GUEST_CS_LIMIT, 0xffff);
Avi Kivity8cb5b032007-03-20 18:40:40 +02002625 if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000)
2626 vmcs_writel(GUEST_CS_BASE, 0xf0000);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002627 vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4);
2628
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002629 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es);
2630 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds);
2631 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs);
2632 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs);
Avi Kivity75880a02007-06-20 11:20:04 +03002633
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03002634continue_rmode:
Eddie Dong8668a3c2007-10-10 14:26:45 +08002635 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002636}
2637
Amit Shah401d10d2009-02-20 22:53:37 +05302638static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
2639{
2640 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002641 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
2642
2643 if (!msr)
2644 return;
Amit Shah401d10d2009-02-20 22:53:37 +05302645
Avi Kivity44ea2b12009-09-06 15:55:37 +03002646 /*
2647 * Force kernel_gs_base reloading before EFER changes, as control
2648 * of this msr depends on is_long_mode().
2649 */
2650 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02002651 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05302652 if (efer & EFER_LMA) {
2653 vmcs_write32(VM_ENTRY_CONTROLS,
2654 vmcs_read32(VM_ENTRY_CONTROLS) |
2655 VM_ENTRY_IA32E_MODE);
2656 msr->data = efer;
2657 } else {
2658 vmcs_write32(VM_ENTRY_CONTROLS,
2659 vmcs_read32(VM_ENTRY_CONTROLS) &
2660 ~VM_ENTRY_IA32E_MODE);
2661
2662 msr->data = efer & ~EFER_LME;
2663 }
2664 setup_msrs(vmx);
2665}
2666
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002667#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08002668
2669static void enter_lmode(struct kvm_vcpu *vcpu)
2670{
2671 u32 guest_tr_ar;
2672
Avi Kivity2fb92db2011-04-27 19:42:18 +03002673 vmx_segment_cache_clear(to_vmx(vcpu));
2674
Avi Kivity6aa8b732006-12-10 02:21:36 -08002675 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
2676 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
2677 printk(KERN_DEBUG "%s: tss fixup for long mode. \n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002678 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002679 vmcs_write32(GUEST_TR_AR_BYTES,
2680 (guest_tr_ar & ~AR_TYPE_MASK)
2681 | AR_TYPE_BUSY_64_TSS);
2682 }
Avi Kivityda38f432010-07-06 11:30:49 +03002683 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002684}
2685
2686static void exit_lmode(struct kvm_vcpu *vcpu)
2687{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002688 vmcs_write32(VM_ENTRY_CONTROLS,
2689 vmcs_read32(VM_ENTRY_CONTROLS)
Li, Xin B1e4e6e02007-08-01 21:49:10 +03002690 & ~VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03002691 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002692}
2693
2694#endif
2695
Sheng Yang2384d2b2008-01-17 15:14:33 +08002696static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
2697{
Gui Jianfengb9d762f2010-06-07 10:32:29 +08002698 vpid_sync_context(to_vmx(vcpu));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002699 if (enable_ept) {
2700 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2701 return;
Sheng Yang4e1096d2008-07-06 19:16:51 +08002702 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
Xiao Guangrongdd180b32010-07-03 16:02:42 +08002703 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08002704}
2705
Avi Kivitye8467fd2009-12-29 18:43:06 +02002706static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
2707{
2708 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
2709
2710 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
2711 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
2712}
2713
Avi Kivityaff48ba2010-12-05 18:56:11 +02002714static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
2715{
2716 if (enable_ept && is_paging(vcpu))
2717 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
2718 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
2719}
2720
Anthony Liguori25c4c272007-04-27 09:29:21 +03002721static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08002722{
Avi Kivityfc78f512009-12-07 12:16:48 +02002723 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
2724
2725 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
2726 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08002727}
2728
Sheng Yang14394422008-04-28 12:24:45 +08002729static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
2730{
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002731 if (!test_bit(VCPU_EXREG_PDPTR,
2732 (unsigned long *)&vcpu->arch.regs_dirty))
2733 return;
2734
Sheng Yang14394422008-04-28 12:24:45 +08002735 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002736 vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]);
2737 vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]);
2738 vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]);
2739 vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08002740 }
2741}
2742
Avi Kivity8f5d5492009-05-31 18:41:29 +03002743static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
2744{
2745 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Joerg Roedelff03a072010-09-10 17:30:57 +02002746 vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
2747 vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
2748 vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
2749 vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002750 }
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03002751
2752 __set_bit(VCPU_EXREG_PDPTR,
2753 (unsigned long *)&vcpu->arch.regs_avail);
2754 __set_bit(VCPU_EXREG_PDPTR,
2755 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03002756}
2757
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002758static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08002759
2760static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
2761 unsigned long cr0,
2762 struct kvm_vcpu *vcpu)
2763{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03002764 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
2765 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002766 if (!(cr0 & X86_CR0_PG)) {
2767 /* From paging/starting to nonpaging */
2768 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002769 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08002770 (CPU_BASED_CR3_LOAD_EXITING |
2771 CPU_BASED_CR3_STORE_EXITING));
2772 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002773 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002774 } else if (!is_paging(vcpu)) {
2775 /* From nonpaging to paging */
2776 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08002777 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08002778 ~(CPU_BASED_CR3_LOAD_EXITING |
2779 CPU_BASED_CR3_STORE_EXITING));
2780 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02002781 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08002782 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08002783
2784 if (!(cr0 & X86_CR0_WP))
2785 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08002786}
2787
Avi Kivity6aa8b732006-12-10 02:21:36 -08002788static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
2789{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002790 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07002791 unsigned long hw_cr0;
2792
2793 if (enable_unrestricted_guest)
2794 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST)
2795 | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
2796 else
2797 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08002798
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002799 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002800 enter_pmode(vcpu);
2801
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002802 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002803 enter_rmode(vcpu);
2804
Avi Kivity05b3e0c2006-12-13 00:33:45 -08002805#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02002806 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92f2007-07-17 23:19:08 +10002807 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002808 enter_lmode(vcpu);
Rusty Russell707d92f2007-07-17 23:19:08 +10002809 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08002810 exit_lmode(vcpu);
2811 }
2812#endif
2813
Avi Kivity089d0342009-03-23 18:26:32 +02002814 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08002815 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
2816
Avi Kivity02daab22009-12-30 12:40:26 +02002817 if (!vcpu->fpu_active)
Avi Kivity81231c62010-01-24 16:26:40 +02002818 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
Avi Kivity02daab22009-12-30 12:40:26 +02002819
Avi Kivity6aa8b732006-12-10 02:21:36 -08002820 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08002821 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002822 vcpu->arch.cr0 = cr0;
Avi Kivity69c73022011-03-07 15:26:44 +02002823 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002824}
2825
Sheng Yang14394422008-04-28 12:24:45 +08002826static u64 construct_eptp(unsigned long root_hpa)
2827{
2828 u64 eptp;
2829
2830 /* TODO write the value reading from MSR */
2831 eptp = VMX_EPT_DEFAULT_MT |
2832 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
2833 eptp |= (root_hpa & PAGE_MASK);
2834
2835 return eptp;
2836}
2837
Avi Kivity6aa8b732006-12-10 02:21:36 -08002838static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
2839{
Sheng Yang14394422008-04-28 12:24:45 +08002840 unsigned long guest_cr3;
2841 u64 eptp;
2842
2843 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02002844 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08002845 eptp = construct_eptp(cr3);
2846 vmcs_write64(EPT_POINTER, eptp);
Avi Kivity9f8fe502010-12-05 17:30:00 +02002847 guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) :
Sheng Yangb927a3c2009-07-21 10:42:48 +08002848 vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02002849 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002850 }
2851
Sheng Yang2384d2b2008-01-17 15:14:33 +08002852 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08002853 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002854}
2855
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002856static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002857{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002858 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
Sheng Yang14394422008-04-28 12:24:45 +08002859 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
2860
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002861 if (cr4 & X86_CR4_VMXE) {
2862 /*
2863 * To use VMXON (and later other VMX instructions), a guest
2864 * must first be able to turn on cr4.VMXE (see handle_vmon()).
2865 * So basically the check on whether to allow nested VMX
2866 * is here.
2867 */
2868 if (!nested_vmx_allowed(vcpu))
2869 return 1;
2870 } else if (to_vmx(vcpu)->nested.vmxon)
2871 return 1;
2872
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002873 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02002874 if (enable_ept) {
2875 if (!is_paging(vcpu)) {
2876 hw_cr4 &= ~X86_CR4_PAE;
2877 hw_cr4 |= X86_CR4_PSE;
2878 } else if (!(cr4 & X86_CR4_PAE)) {
2879 hw_cr4 &= ~X86_CR4_PAE;
2880 }
2881 }
Sheng Yang14394422008-04-28 12:24:45 +08002882
2883 vmcs_writel(CR4_READ_SHADOW, cr4);
2884 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03002885 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002886}
2887
Avi Kivity6aa8b732006-12-10 02:21:36 -08002888static void vmx_get_segment(struct kvm_vcpu *vcpu,
2889 struct kvm_segment *var, int seg)
2890{
Avi Kivitya9179492011-01-03 14:28:52 +02002891 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivitya9179492011-01-03 14:28:52 +02002892 struct kvm_save_segment *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002893 u32 ar;
2894
Avi Kivitya9179492011-01-03 14:28:52 +02002895 if (vmx->rmode.vm86_active
2896 && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES
2897 || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS
2898 || seg == VCPU_SREG_GS)
2899 && !emulate_invalid_guest_state) {
2900 switch (seg) {
2901 case VCPU_SREG_TR: save = &vmx->rmode.tr; break;
2902 case VCPU_SREG_ES: save = &vmx->rmode.es; break;
2903 case VCPU_SREG_DS: save = &vmx->rmode.ds; break;
2904 case VCPU_SREG_FS: save = &vmx->rmode.fs; break;
2905 case VCPU_SREG_GS: save = &vmx->rmode.gs; break;
2906 default: BUG();
2907 }
2908 var->selector = save->selector;
2909 var->base = save->base;
2910 var->limit = save->limit;
2911 ar = save->ar;
2912 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03002913 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivitya9179492011-01-03 14:28:52 +02002914 goto use_saved_rmode_seg;
2915 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002916 var->base = vmx_read_guest_seg_base(vmx, seg);
2917 var->limit = vmx_read_guest_seg_limit(vmx, seg);
2918 var->selector = vmx_read_guest_seg_selector(vmx, seg);
2919 ar = vmx_read_guest_seg_ar(vmx, seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002920use_saved_rmode_seg:
Avi Kivity9fd4a3b2009-01-04 23:43:42 +02002921 if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002922 ar = 0;
2923 var->type = ar & 15;
2924 var->s = (ar >> 4) & 1;
2925 var->dpl = (ar >> 5) & 3;
2926 var->present = (ar >> 7) & 1;
2927 var->avl = (ar >> 12) & 1;
2928 var->l = (ar >> 13) & 1;
2929 var->db = (ar >> 14) & 1;
2930 var->g = (ar >> 15) & 1;
2931 var->unusable = (ar >> 16) & 1;
2932}
2933
Avi Kivitya9179492011-01-03 14:28:52 +02002934static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
2935{
Avi Kivitya9179492011-01-03 14:28:52 +02002936 struct kvm_segment s;
2937
2938 if (to_vmx(vcpu)->rmode.vm86_active) {
2939 vmx_get_segment(vcpu, &s, seg);
2940 return s.base;
2941 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03002942 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02002943}
2944
Avi Kivity69c73022011-03-07 15:26:44 +02002945static int __vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02002946{
Avi Kivity3eeb3282010-01-21 15:31:48 +02002947 if (!is_protmode(vcpu))
Izik Eidus2e4d2652008-03-24 19:38:34 +02002948 return 0;
2949
Avi Kivityf4c63e52011-03-07 14:54:28 +02002950 if (!is_long_mode(vcpu)
2951 && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */
Izik Eidus2e4d2652008-03-24 19:38:34 +02002952 return 3;
2953
Avi Kivity2fb92db2011-04-27 19:42:18 +03002954 return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3;
Izik Eidus2e4d2652008-03-24 19:38:34 +02002955}
2956
Avi Kivity69c73022011-03-07 15:26:44 +02002957static int vmx_get_cpl(struct kvm_vcpu *vcpu)
2958{
2959 if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) {
2960 __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
2961 to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu);
2962 }
2963 return to_vmx(vcpu)->cpl;
2964}
2965
2966
Avi Kivity653e3102007-05-07 10:55:37 +03002967static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002968{
Avi Kivity6aa8b732006-12-10 02:21:36 -08002969 u32 ar;
2970
Avi Kivity653e3102007-05-07 10:55:37 +03002971 if (var->unusable)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002972 ar = 1 << 16;
2973 else {
2974 ar = var->type & 15;
2975 ar |= (var->s & 1) << 4;
2976 ar |= (var->dpl & 3) << 5;
2977 ar |= (var->present & 1) << 7;
2978 ar |= (var->avl & 1) << 12;
2979 ar |= (var->l & 1) << 13;
2980 ar |= (var->db & 1) << 14;
2981 ar |= (var->g & 1) << 15;
2982 }
Uri Lublinf7fbf1f2006-12-13 00:34:00 -08002983 if (ar == 0) /* a 0 value means unusable */
2984 ar = AR_UNUSABLE_MASK;
Avi Kivity653e3102007-05-07 10:55:37 +03002985
2986 return ar;
2987}
2988
2989static void vmx_set_segment(struct kvm_vcpu *vcpu,
2990 struct kvm_segment *var, int seg)
2991{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002992 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity653e3102007-05-07 10:55:37 +03002993 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
2994 u32 ar;
2995
Avi Kivity2fb92db2011-04-27 19:42:18 +03002996 vmx_segment_cache_clear(vmx);
2997
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002998 if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) {
Gleb Natapova8ba6c22011-02-21 12:07:58 +02002999 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003000 vmx->rmode.tr.selector = var->selector;
3001 vmx->rmode.tr.base = var->base;
3002 vmx->rmode.tr.limit = var->limit;
3003 vmx->rmode.tr.ar = vmx_segment_access_rights(var);
Avi Kivity653e3102007-05-07 10:55:37 +03003004 return;
3005 }
3006 vmcs_writel(sf->base, var->base);
3007 vmcs_write32(sf->limit, var->limit);
3008 vmcs_write16(sf->selector, var->selector);
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003009 if (vmx->rmode.vm86_active && var->s) {
Avi Kivity653e3102007-05-07 10:55:37 +03003010 /*
3011 * Hack real-mode segments into vm86 compatibility.
3012 */
3013 if (var->base == 0xffff0000 && var->selector == 0xf000)
3014 vmcs_writel(sf->base, 0xf0000);
3015 ar = 0xf3;
3016 } else
3017 ar = vmx_segment_access_rights(var);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003018
3019 /*
3020 * Fix the "Accessed" bit in AR field of segment registers for older
3021 * qemu binaries.
3022 * IA32 arch specifies that at the time of processor reset the
3023 * "Accessed" bit in the AR field of segment registers is 1. And qemu
3024 * is setting it to 0 in the usedland code. This causes invalid guest
3025 * state vmexit when "unrestricted guest" mode is turned on.
3026 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3027 * tree. Newer qemu binaries with that qemu fix would not need this
3028 * kvm hack.
3029 */
3030 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
3031 ar |= 0x1; /* Accessed */
3032
Avi Kivity6aa8b732006-12-10 02:21:36 -08003033 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity69c73022011-03-07 15:26:44 +02003034 __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003035}
3036
Avi Kivity6aa8b732006-12-10 02:21:36 -08003037static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3038{
Avi Kivity2fb92db2011-04-27 19:42:18 +03003039 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003040
3041 *db = (ar >> 14) & 1;
3042 *l = (ar >> 13) & 1;
3043}
3044
Gleb Natapov89a27f42010-02-16 10:51:48 +02003045static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003046{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003047 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3048 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003049}
3050
Gleb Natapov89a27f42010-02-16 10:51:48 +02003051static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003052{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003053 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3054 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003055}
3056
Gleb Natapov89a27f42010-02-16 10:51:48 +02003057static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003058{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003059 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3060 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003061}
3062
Gleb Natapov89a27f42010-02-16 10:51:48 +02003063static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003064{
Gleb Natapov89a27f42010-02-16 10:51:48 +02003065 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3066 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003067}
3068
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003069static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3070{
3071 struct kvm_segment var;
3072 u32 ar;
3073
3074 vmx_get_segment(vcpu, &var, seg);
3075 ar = vmx_segment_access_rights(&var);
3076
3077 if (var.base != (var.selector << 4))
3078 return false;
3079 if (var.limit != 0xffff)
3080 return false;
3081 if (ar != 0xf3)
3082 return false;
3083
3084 return true;
3085}
3086
3087static bool code_segment_valid(struct kvm_vcpu *vcpu)
3088{
3089 struct kvm_segment cs;
3090 unsigned int cs_rpl;
3091
3092 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3093 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
3094
Avi Kivity1872a3f2009-01-04 23:26:52 +02003095 if (cs.unusable)
3096 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003097 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
3098 return false;
3099 if (!cs.s)
3100 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003101 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003102 if (cs.dpl > cs_rpl)
3103 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003104 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003105 if (cs.dpl != cs_rpl)
3106 return false;
3107 }
3108 if (!cs.present)
3109 return false;
3110
3111 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3112 return true;
3113}
3114
3115static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3116{
3117 struct kvm_segment ss;
3118 unsigned int ss_rpl;
3119
3120 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3121 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
3122
Avi Kivity1872a3f2009-01-04 23:26:52 +02003123 if (ss.unusable)
3124 return true;
3125 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003126 return false;
3127 if (!ss.s)
3128 return false;
3129 if (ss.dpl != ss_rpl) /* DPL != RPL */
3130 return false;
3131 if (!ss.present)
3132 return false;
3133
3134 return true;
3135}
3136
3137static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3138{
3139 struct kvm_segment var;
3140 unsigned int rpl;
3141
3142 vmx_get_segment(vcpu, &var, seg);
3143 rpl = var.selector & SELECTOR_RPL_MASK;
3144
Avi Kivity1872a3f2009-01-04 23:26:52 +02003145 if (var.unusable)
3146 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003147 if (!var.s)
3148 return false;
3149 if (!var.present)
3150 return false;
3151 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
3152 if (var.dpl < rpl) /* DPL < RPL */
3153 return false;
3154 }
3155
3156 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3157 * rights flags
3158 */
3159 return true;
3160}
3161
3162static bool tr_valid(struct kvm_vcpu *vcpu)
3163{
3164 struct kvm_segment tr;
3165
3166 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3167
Avi Kivity1872a3f2009-01-04 23:26:52 +02003168 if (tr.unusable)
3169 return false;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003170 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3171 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02003172 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003173 return false;
3174 if (!tr.present)
3175 return false;
3176
3177 return true;
3178}
3179
3180static bool ldtr_valid(struct kvm_vcpu *vcpu)
3181{
3182 struct kvm_segment ldtr;
3183
3184 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3185
Avi Kivity1872a3f2009-01-04 23:26:52 +02003186 if (ldtr.unusable)
3187 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003188 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3189 return false;
3190 if (ldtr.type != 2)
3191 return false;
3192 if (!ldtr.present)
3193 return false;
3194
3195 return true;
3196}
3197
3198static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3199{
3200 struct kvm_segment cs, ss;
3201
3202 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3203 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3204
3205 return ((cs.selector & SELECTOR_RPL_MASK) ==
3206 (ss.selector & SELECTOR_RPL_MASK));
3207}
3208
3209/*
3210 * Check if guest state is valid. Returns true if valid, false if
3211 * not.
3212 * We assume that registers are always usable
3213 */
3214static bool guest_state_valid(struct kvm_vcpu *vcpu)
3215{
3216 /* real mode guest state checks */
Avi Kivity3eeb3282010-01-21 15:31:48 +02003217 if (!is_protmode(vcpu)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03003218 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3219 return false;
3220 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3221 return false;
3222 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3223 return false;
3224 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3225 return false;
3226 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3227 return false;
3228 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3229 return false;
3230 } else {
3231 /* protected mode guest state checks */
3232 if (!cs_ss_rpl_check(vcpu))
3233 return false;
3234 if (!code_segment_valid(vcpu))
3235 return false;
3236 if (!stack_segment_valid(vcpu))
3237 return false;
3238 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3239 return false;
3240 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3241 return false;
3242 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3243 return false;
3244 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3245 return false;
3246 if (!tr_valid(vcpu))
3247 return false;
3248 if (!ldtr_valid(vcpu))
3249 return false;
3250 }
3251 /* TODO:
3252 * - Add checks on RIP
3253 * - Add checks on RFLAGS
3254 */
3255
3256 return true;
3257}
3258
Mike Dayd77c26f2007-10-08 09:02:08 -04003259static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003260{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003261 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02003262 u16 data = 0;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003263 int r, idx, ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003264
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003265 idx = srcu_read_lock(&kvm->srcu);
3266 fn = rmode_tss_base(kvm) >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02003267 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3268 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003269 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003270 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08003271 r = kvm_write_guest_page(kvm, fn++, &data,
3272 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02003273 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003274 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003275 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3276 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003277 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003278 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3279 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003280 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02003281 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003282 r = kvm_write_guest_page(kvm, fn, &data,
3283 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3284 sizeof(u8));
Izik Eidus195aefd2007-10-01 22:14:18 +02003285 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003286 goto out;
3287
3288 ret = 1;
3289out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003290 srcu_read_unlock(&kvm->srcu, idx);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003291 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003292}
3293
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003294static int init_rmode_identity_map(struct kvm *kvm)
3295{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003296 int i, idx, r, ret;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003297 pfn_t identity_map_pfn;
3298 u32 tmp;
3299
Avi Kivity089d0342009-03-23 18:26:32 +02003300 if (!enable_ept)
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003301 return 1;
3302 if (unlikely(!kvm->arch.ept_identity_pagetable)) {
3303 printk(KERN_ERR "EPT: identity-mapping pagetable "
3304 "haven't been allocated!\n");
3305 return 0;
3306 }
3307 if (likely(kvm->arch.ept_identity_pagetable_done))
3308 return 1;
3309 ret = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003310 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003311 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003312 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3313 if (r < 0)
3314 goto out;
3315 /* Set up identity-mapping pagetable for EPT in real mode */
3316 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3317 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3318 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3319 r = kvm_write_guest_page(kvm, identity_map_pfn,
3320 &tmp, i * sizeof(tmp), sizeof(tmp));
3321 if (r < 0)
3322 goto out;
3323 }
3324 kvm->arch.ept_identity_pagetable_done = true;
3325 ret = 1;
3326out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08003327 srcu_read_unlock(&kvm->srcu, idx);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003328 return ret;
3329}
3330
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331static void seg_setup(int seg)
3332{
3333 struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003334 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003335
3336 vmcs_write16(sf->selector, 0);
3337 vmcs_writel(sf->base, 0);
3338 vmcs_write32(sf->limit, 0xffff);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003339 if (enable_unrestricted_guest) {
3340 ar = 0x93;
3341 if (seg == VCPU_SREG_CS)
3342 ar |= 0x08; /* code segment */
3343 } else
3344 ar = 0xf3;
3345
3346 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003347}
3348
Sheng Yangf78e0e22007-10-29 09:40:42 +08003349static int alloc_apic_access_page(struct kvm *kvm)
3350{
3351 struct kvm_userspace_memory_region kvm_userspace_mem;
3352 int r = 0;
3353
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003354 mutex_lock(&kvm->slots_lock);
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003355 if (kvm->arch.apic_access_page)
Sheng Yangf78e0e22007-10-29 09:40:42 +08003356 goto out;
3357 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
3358 kvm_userspace_mem.flags = 0;
3359 kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL;
3360 kvm_userspace_mem.memory_size = PAGE_SIZE;
3361 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3362 if (r)
3363 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02003364
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003365 kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003366out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003367 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003368 return r;
3369}
3370
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003371static int alloc_identity_pagetable(struct kvm *kvm)
3372{
3373 struct kvm_userspace_memory_region kvm_userspace_mem;
3374 int r = 0;
3375
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003376 mutex_lock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003377 if (kvm->arch.ept_identity_pagetable)
3378 goto out;
3379 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
3380 kvm_userspace_mem.flags = 0;
Sheng Yangb927a3c2009-07-21 10:42:48 +08003381 kvm_userspace_mem.guest_phys_addr =
3382 kvm->arch.ept_identity_map_addr;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003383 kvm_userspace_mem.memory_size = PAGE_SIZE;
3384 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0);
3385 if (r)
3386 goto out;
3387
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003388 kvm->arch.ept_identity_pagetable = gfn_to_page(kvm,
Sheng Yangb927a3c2009-07-21 10:42:48 +08003389 kvm->arch.ept_identity_map_addr >> PAGE_SHIFT);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003390out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02003391 mutex_unlock(&kvm->slots_lock);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08003392 return r;
3393}
3394
Sheng Yang2384d2b2008-01-17 15:14:33 +08003395static void allocate_vpid(struct vcpu_vmx *vmx)
3396{
3397 int vpid;
3398
3399 vmx->vpid = 0;
Avi Kivity919818a2009-03-23 18:01:29 +02003400 if (!enable_vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08003401 return;
3402 spin_lock(&vmx_vpid_lock);
3403 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
3404 if (vpid < VMX_NR_VPIDS) {
3405 vmx->vpid = vpid;
3406 __set_bit(vpid, vmx_vpid_bitmap);
3407 }
3408 spin_unlock(&vmx_vpid_lock);
3409}
3410
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08003411static void free_vpid(struct vcpu_vmx *vmx)
3412{
3413 if (!enable_vpid)
3414 return;
3415 spin_lock(&vmx_vpid_lock);
3416 if (vmx->vpid != 0)
3417 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
3418 spin_unlock(&vmx_vpid_lock);
3419}
3420
Avi Kivity58972972009-02-24 22:26:47 +02003421static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr)
Sheng Yang25c5f222008-03-28 13:18:56 +08003422{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003423 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08003424
3425 if (!cpu_has_vmx_msr_bitmap())
3426 return;
3427
3428 /*
3429 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
3430 * have the write-low and read-high bitmap offsets the wrong way round.
3431 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
3432 */
Sheng Yang25c5f222008-03-28 13:18:56 +08003433 if (msr <= 0x1fff) {
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003434 __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */
3435 __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */
Sheng Yang25c5f222008-03-28 13:18:56 +08003436 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
3437 msr &= 0x1fff;
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003438 __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */
3439 __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */
Sheng Yang25c5f222008-03-28 13:18:56 +08003440 }
Sheng Yang25c5f222008-03-28 13:18:56 +08003441}
3442
Avi Kivity58972972009-02-24 22:26:47 +02003443static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
3444{
3445 if (!longmode_only)
3446 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr);
3447 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr);
3448}
3449
Avi Kivity6aa8b732006-12-10 02:21:36 -08003450/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003451 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
3452 * will not change in the lifetime of the guest.
3453 * Note that host-state that does change is set elsewhere. E.g., host-state
3454 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
3455 */
3456static void vmx_set_constant_host_state(void)
3457{
3458 u32 low32, high32;
3459 unsigned long tmpl;
3460 struct desc_ptr dt;
3461
3462 vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */
3463 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
3464 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
3465
3466 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
3467 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3468 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3469 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
3470 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
3471
3472 native_store_idt(&dt);
3473 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
3474
3475 asm("mov $.Lkvm_vmx_return, %0" : "=r"(tmpl));
3476 vmcs_writel(HOST_RIP, tmpl); /* 22.2.5 */
3477
3478 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
3479 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
3480 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
3481 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
3482
3483 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
3484 rdmsr(MSR_IA32_CR_PAT, low32, high32);
3485 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
3486 }
3487}
3488
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003489static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
3490{
3491 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
3492 if (enable_ept)
3493 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03003494 if (is_guest_mode(&vmx->vcpu))
3495 vmx->vcpu.arch.cr4_guest_owned_bits &=
3496 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003497 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
3498}
3499
3500static u32 vmx_exec_control(struct vcpu_vmx *vmx)
3501{
3502 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
3503 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
3504 exec_control &= ~CPU_BASED_TPR_SHADOW;
3505#ifdef CONFIG_X86_64
3506 exec_control |= CPU_BASED_CR8_STORE_EXITING |
3507 CPU_BASED_CR8_LOAD_EXITING;
3508#endif
3509 }
3510 if (!enable_ept)
3511 exec_control |= CPU_BASED_CR3_STORE_EXITING |
3512 CPU_BASED_CR3_LOAD_EXITING |
3513 CPU_BASED_INVLPG_EXITING;
3514 return exec_control;
3515}
3516
3517static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
3518{
3519 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
3520 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3521 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
3522 if (vmx->vpid == 0)
3523 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
3524 if (!enable_ept) {
3525 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
3526 enable_unrestricted_guest = 0;
3527 }
3528 if (!enable_unrestricted_guest)
3529 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
3530 if (!ple_gap)
3531 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
3532 return exec_control;
3533}
3534
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003535/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003536 * Sets up the vmcs for emulated real mode.
3537 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003538static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003539{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003540 unsigned long a;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003541 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003542
Avi Kivity6aa8b732006-12-10 02:21:36 -08003543 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02003544 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
3545 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003546
Sheng Yang25c5f222008-03-28 13:18:56 +08003547 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02003548 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08003549
Avi Kivity6aa8b732006-12-10 02:21:36 -08003550 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
3551
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552 /* Control */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003553 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
3554 vmcs_config.pin_based_exec_ctrl);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003555
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003556 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003557
Sheng Yang83ff3b92007-11-21 14:33:25 +08003558 if (cpu_has_secondary_exec_ctrls()) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003559 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
3560 vmx_secondary_exec_control(vmx));
Sheng Yang83ff3b92007-11-21 14:33:25 +08003561 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08003562
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003563 if (ple_gap) {
3564 vmcs_write32(PLE_GAP, ple_gap);
3565 vmcs_write32(PLE_WINDOW, ple_window);
3566 }
3567
Avi Kivityc7addb92007-09-16 18:58:32 +02003568 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf);
3569 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003570 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
3571
Avi Kivity9581d442010-10-19 16:46:55 +02003572 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
3573 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003574 vmx_set_constant_host_state();
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003575#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003576 rdmsrl(MSR_FS_BASE, a);
3577 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
3578 rdmsrl(MSR_GS_BASE, a);
3579 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
3580#else
3581 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
3582 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
3583#endif
3584
Eddie Dong2cc51562007-05-21 07:28:09 +03003585 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
3586 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003587 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03003588 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03003589 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003590
Sheng Yang468d4722008-10-09 16:01:55 +08003591 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03003592 u32 msr_low, msr_high;
3593 u64 host_pat;
Sheng Yang468d4722008-10-09 16:01:55 +08003594 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
3595 host_pat = msr_low | ((u64) msr_high << 32);
3596 /* Write the default value follow host pat */
3597 vmcs_write64(GUEST_IA32_PAT, host_pat);
3598 /* Keep arch.pat sync with GUEST_IA32_PAT */
3599 vmx->vcpu.arch.pat = host_pat;
3600 }
3601
Avi Kivity6aa8b732006-12-10 02:21:36 -08003602 for (i = 0; i < NR_VMX_MSR; ++i) {
3603 u32 index = vmx_msr_index[i];
3604 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003605 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003606
3607 if (rdmsr_safe(index, &data_low, &data_high) < 0)
3608 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08003609 if (wrmsr_safe(index, data_low, data_high) < 0)
3610 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03003611 vmx->guest_msrs[j].index = i;
3612 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02003613 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003614 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003615 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003616
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003617 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003618
3619 /* 22.2.1, 20.8.1 */
Yang, Sheng1c3d14f2007-07-29 11:07:42 +03003620 vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl);
3621
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003622 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03003623 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003624
Zachary Amsden99e3e302010-08-19 22:07:17 -10003625 kvm_write_tsc(&vmx->vcpu, 0);
Sheng Yangf78e0e22007-10-29 09:40:42 +08003626
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003627 return 0;
3628}
3629
3630static int vmx_vcpu_reset(struct kvm_vcpu *vcpu)
3631{
3632 struct vcpu_vmx *vmx = to_vmx(vcpu);
3633 u64 msr;
Xiao Guangrong4b9d3a02010-06-08 10:15:51 +08003634 int ret;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003635
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003636 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP));
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003637
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003638 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003639
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003640 vmx->soft_vnmi_blocked = 0;
3641
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003642 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Avi Kivity2d3ad1f2008-02-24 11:20:43 +02003643 kvm_set_cr8(&vmx->vcpu, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003644 msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003645 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003646 msr |= MSR_IA32_APICBASE_BSP;
3647 kvm_set_apic_base(&vmx->vcpu, msr);
3648
Jan Kiszka10ab25c2010-05-25 16:01:50 +02003649 ret = fx_init(&vmx->vcpu);
3650 if (ret != 0)
3651 goto out;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003652
Avi Kivity2fb92db2011-04-27 19:42:18 +03003653 vmx_segment_cache_clear(vmx);
3654
Avi Kivity5706be02008-08-20 15:07:31 +03003655 seg_setup(VCPU_SREG_CS);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003656 /*
3657 * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode
3658 * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh.
3659 */
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003660 if (kvm_vcpu_is_bsp(&vmx->vcpu)) {
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003661 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
3662 vmcs_writel(GUEST_CS_BASE, 0x000f0000);
3663 } else {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003664 vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8);
3665 vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003666 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003667
3668 seg_setup(VCPU_SREG_DS);
3669 seg_setup(VCPU_SREG_ES);
3670 seg_setup(VCPU_SREG_FS);
3671 seg_setup(VCPU_SREG_GS);
3672 seg_setup(VCPU_SREG_SS);
3673
3674 vmcs_write16(GUEST_TR_SELECTOR, 0);
3675 vmcs_writel(GUEST_TR_BASE, 0);
3676 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
3677 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3678
3679 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
3680 vmcs_writel(GUEST_LDTR_BASE, 0);
3681 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
3682 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
3683
3684 vmcs_write32(GUEST_SYSENTER_CS, 0);
3685 vmcs_writel(GUEST_SYSENTER_ESP, 0);
3686 vmcs_writel(GUEST_SYSENTER_EIP, 0);
3687
3688 vmcs_writel(GUEST_RFLAGS, 0x02);
Gleb Natapovc5af89b2009-06-09 15:56:26 +03003689 if (kvm_vcpu_is_bsp(&vmx->vcpu))
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003690 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003691 else
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003692 kvm_rip_write(vcpu, 0);
3693 kvm_register_write(vcpu, VCPU_REGS_RSP, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003694
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003695 vmcs_writel(GUEST_DR7, 0x400);
3696
3697 vmcs_writel(GUEST_GDTR_BASE, 0);
3698 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
3699
3700 vmcs_writel(GUEST_IDTR_BASE, 0);
3701 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
3702
Anthony Liguori443381a2010-12-06 10:53:38 -06003703 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003704 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
3705 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
3706
Avi Kivitye00c8cf2007-10-21 11:00:39 +02003707 /* Special registers */
3708 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
3709
3710 setup_msrs(vmx);
3711
Avi Kivity6aa8b732006-12-10 02:21:36 -08003712 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
3713
Sheng Yangf78e0e22007-10-29 09:40:42 +08003714 if (cpu_has_vmx_tpr_shadow()) {
3715 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
3716 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
3717 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Takuya Yoshikawaafc20182011-03-05 12:40:20 +09003718 __pa(vmx->vcpu.arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08003719 vmcs_write32(TPR_THRESHOLD, 0);
3720 }
3721
3722 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
3723 vmcs_write64(APIC_ACCESS_ADDR,
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003724 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003725
Sheng Yang2384d2b2008-01-17 15:14:33 +08003726 if (vmx->vpid != 0)
3727 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
3728
Eduardo Habkostfa400522009-10-24 02:49:58 -02003729 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Avi Kivity4d4ec082009-12-29 18:07:30 +02003730 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
Rusty Russell8b9cf982007-07-30 16:31:43 +10003731 vmx_set_cr4(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003732 vmx_set_efer(&vmx->vcpu, 0);
Rusty Russell8b9cf982007-07-30 16:31:43 +10003733 vmx_fpu_activate(&vmx->vcpu);
3734 update_exception_bitmap(&vmx->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003735
Gui Jianfengb9d762f2010-06-07 10:32:29 +08003736 vpid_sync_context(vmx);
Sheng Yang2384d2b2008-01-17 15:14:33 +08003737
Marcelo Tosatti3200f402008-03-29 20:17:59 -03003738 ret = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003739
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003740 /* HACK: Don't enable emulation on guest boot/reset */
3741 vmx->emulation_required = 0;
3742
Avi Kivity6aa8b732006-12-10 02:21:36 -08003743out:
3744 return ret;
3745}
3746
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003747static void enable_irq_window(struct kvm_vcpu *vcpu)
3748{
3749 u32 cpu_based_vm_exec_control;
3750
3751 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3752 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
3753 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3754}
3755
3756static void enable_nmi_window(struct kvm_vcpu *vcpu)
3757{
3758 u32 cpu_based_vm_exec_control;
3759
3760 if (!cpu_has_virtual_nmis()) {
3761 enable_irq_window(vcpu);
3762 return;
3763 }
3764
Avi Kivity30bd0c42010-11-01 23:20:48 +02003765 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
3766 enable_irq_window(vcpu);
3767 return;
3768 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003769 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
3770 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
3771 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
3772}
3773
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003774static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03003775{
Avi Kivity9c8cba32007-11-22 11:42:59 +02003776 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003777 uint32_t intr;
3778 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02003779
Marcelo Tosatti229456f2009-06-17 09:22:14 -03003780 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04003781
Avi Kivityfa89a812008-09-01 15:57:51 +03003782 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003783 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003784 int inc_eip = 0;
3785 if (vcpu->arch.interrupt.soft)
3786 inc_eip = vcpu->arch.event_exit_inst_len;
3787 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003788 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003789 return;
3790 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03003791 intr = irq | INTR_INFO_VALID_MASK;
3792 if (vcpu->arch.interrupt.soft) {
3793 intr |= INTR_TYPE_SOFT_INTR;
3794 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
3795 vmx->vcpu.arch.event_exit_inst_len);
3796 } else
3797 intr |= INTR_TYPE_EXT_INTR;
3798 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Anthony Liguori443381a2010-12-06 10:53:38 -06003799 vmx_clear_hlt(vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03003800}
3801
Sheng Yangf08864b2008-05-15 18:23:25 +08003802static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
3803{
Jan Kiszka66a5a342008-09-26 09:30:51 +02003804 struct vcpu_vmx *vmx = to_vmx(vcpu);
3805
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003806 if (!cpu_has_virtual_nmis()) {
3807 /*
3808 * Tracking the NMI-blocked state in software is built upon
3809 * finding the next open IRQ window. This, in turn, depends on
3810 * well-behaving guests: They have to keep IRQs disabled at
3811 * least as long as the NMI handler runs. Otherwise we may
3812 * cause NMI nesting, maybe breaking the guest. But as this is
3813 * highly unlikely, we can live with the residual risk.
3814 */
3815 vmx->soft_vnmi_blocked = 1;
3816 vmx->vnmi_blocked_time = 0;
3817 }
3818
Jan Kiszka487b3912008-09-26 09:30:56 +02003819 ++vcpu->stat.nmi_injections;
Avi Kivity9d58b932011-03-07 16:52:07 +02003820 vmx->nmi_known_unmasked = false;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003821 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05003822 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02003823 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02003824 return;
3825 }
Sheng Yangf08864b2008-05-15 18:23:25 +08003826 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
3827 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Anthony Liguori443381a2010-12-06 10:53:38 -06003828 vmx_clear_hlt(vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08003829}
3830
Gleb Natapovc4282df2009-04-21 17:45:07 +03003831static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
Jan Kiszka33f089c2008-09-26 09:30:49 +02003832{
Jan Kiszka3b86cd92008-09-26 09:30:57 +02003833 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
Gleb Natapovc4282df2009-04-21 17:45:07 +03003834 return 0;
Jan Kiszka33f089c2008-09-26 09:30:49 +02003835
Gleb Natapovc4282df2009-04-21 17:45:07 +03003836 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
Avi Kivity30bd0c42010-11-01 23:20:48 +02003837 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
3838 | GUEST_INTR_STATE_NMI));
Jan Kiszka33f089c2008-09-26 09:30:49 +02003839}
3840
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003841static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
3842{
3843 if (!cpu_has_virtual_nmis())
3844 return to_vmx(vcpu)->soft_vnmi_blocked;
Avi Kivity9d58b932011-03-07 16:52:07 +02003845 if (to_vmx(vcpu)->nmi_known_unmasked)
3846 return false;
Avi Kivityc332c832010-05-04 12:24:12 +03003847 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003848}
3849
3850static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
3851{
3852 struct vcpu_vmx *vmx = to_vmx(vcpu);
3853
3854 if (!cpu_has_virtual_nmis()) {
3855 if (vmx->soft_vnmi_blocked != masked) {
3856 vmx->soft_vnmi_blocked = masked;
3857 vmx->vnmi_blocked_time = 0;
3858 }
3859 } else {
Avi Kivity9d58b932011-03-07 16:52:07 +02003860 vmx->nmi_known_unmasked = !masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01003861 if (masked)
3862 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
3863 GUEST_INTR_STATE_NMI);
3864 else
3865 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
3866 GUEST_INTR_STATE_NMI);
3867 }
3868}
3869
Gleb Natapov78646122009-03-23 12:12:11 +02003870static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
3871{
Gleb Natapovc4282df2009-04-21 17:45:07 +03003872 return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
3873 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
3874 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02003875}
3876
Izik Eiduscbc94022007-10-25 00:29:55 +02003877static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
3878{
3879 int ret;
3880 struct kvm_userspace_memory_region tss_mem = {
Sheng Yang6fe63972008-10-16 17:30:58 +08003881 .slot = TSS_PRIVATE_MEMSLOT,
Izik Eiduscbc94022007-10-25 00:29:55 +02003882 .guest_phys_addr = addr,
3883 .memory_size = PAGE_SIZE * 3,
3884 .flags = 0,
3885 };
3886
3887 ret = kvm_set_memory_region(kvm, &tss_mem, 0);
3888 if (ret)
3889 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08003890 kvm->arch.tss_addr = addr;
Gleb Natapov93ea5382011-02-21 12:07:59 +02003891 if (!init_rmode_tss(kvm))
3892 return -ENOMEM;
3893
Izik Eiduscbc94022007-10-25 00:29:55 +02003894 return 0;
3895}
3896
Avi Kivity6aa8b732006-12-10 02:21:36 -08003897static int handle_rmode_exception(struct kvm_vcpu *vcpu,
3898 int vec, u32 err_code)
3899{
Nitin A Kambleb3f37702007-05-17 15:50:34 +03003900 /*
3901 * Instruction with address size override prefix opcode 0x67
3902 * Cause the #SS fault with 0 error code in VM86 mode.
3903 */
3904 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
Andre Przywara51d8b662010-12-21 11:12:02 +01003905 if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003906 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003907 /*
3908 * Forward all other exceptions that are valid in real mode.
3909 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
3910 * the required debugging infrastructure rework.
3911 */
3912 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003913 case DB_VECTOR:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003914 if (vcpu->guest_debug &
3915 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
3916 return 0;
3917 kvm_queue_exception(vcpu, vec);
3918 return 1;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003919 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01003920 /*
3921 * Update instruction length as we may reinject the exception
3922 * from user space while in guest debugging mode.
3923 */
3924 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
3925 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003926 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
3927 return 0;
3928 /* fall through */
3929 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02003930 case OF_VECTOR:
3931 case BR_VECTOR:
3932 case UD_VECTOR:
3933 case DF_VECTOR:
3934 case SS_VECTOR:
3935 case GP_VECTOR:
3936 case MF_VECTOR:
3937 kvm_queue_exception(vcpu, vec);
3938 return 1;
3939 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003940 return 0;
3941}
3942
Andi Kleena0861c02009-06-08 17:37:09 +08003943/*
3944 * Trigger machine check on the host. We assume all the MSRs are already set up
3945 * by the CPU and that we still run on the same CPU as the MCE occurred on.
3946 * We pass a fake environment to the machine check handler because we want
3947 * the guest to be always treated like user space, no matter what context
3948 * it used internally.
3949 */
3950static void kvm_machine_check(void)
3951{
3952#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
3953 struct pt_regs regs = {
3954 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
3955 .flags = X86_EFLAGS_IF,
3956 };
3957
3958 do_machine_check(&regs, 0);
3959#endif
3960}
3961
Avi Kivity851ba692009-08-24 11:10:17 +03003962static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08003963{
3964 /* already handled by vcpu_run */
3965 return 1;
3966}
3967
Avi Kivity851ba692009-08-24 11:10:17 +03003968static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003969{
Avi Kivity1155f762007-11-22 11:30:47 +02003970 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03003971 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01003972 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01003973 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003974 u32 vect_info;
3975 enum emulation_result er;
3976
Avi Kivity1155f762007-11-22 11:30:47 +02003977 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02003978 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003979
Andi Kleena0861c02009-06-08 17:37:09 +08003980 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03003981 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08003982
Avi Kivity6aa8b732006-12-10 02:21:36 -08003983 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
Avi Kivity65ac7262009-11-04 11:59:01 +02003984 !is_page_fault(intr_info)) {
3985 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3986 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
3987 vcpu->run->internal.ndata = 2;
3988 vcpu->run->internal.data[0] = vect_info;
3989 vcpu->run->internal.data[1] = intr_info;
3990 return 0;
3991 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003992
Jan Kiszkae4a41882008-09-26 09:30:46 +02003993 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
Avi Kivity1b6269d2007-10-09 12:12:19 +02003994 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003995
3996 if (is_no_device(intr_info)) {
Avi Kivity5fd86fc2007-05-02 20:40:00 +03003997 vmx_fpu_activate(vcpu);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03003998 return 1;
3999 }
4000
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004001 if (is_invalid_opcode(intr_info)) {
Andre Przywara51d8b662010-12-21 11:12:02 +01004002 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004003 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02004004 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004005 return 1;
4006 }
4007
Avi Kivity6aa8b732006-12-10 02:21:36 -08004008 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06004009 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004010 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
4011 if (is_page_fault(intr_info)) {
Sheng Yang14394422008-04-28 12:24:45 +08004012 /* EPT won't cause page fault directly */
Avi Kivity089d0342009-03-23 18:26:32 +02004013 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004014 BUG();
Avi Kivity6aa8b732006-12-10 02:21:36 -08004015 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004016 trace_kvm_page_fault(cr2, error_code);
4017
Gleb Natapov3298b752009-05-11 13:35:46 +03004018 if (kvm_event_needs_reinjection(vcpu))
Avi Kivity577bdc42008-07-19 08:57:05 +03004019 kvm_mmu_unprotect_page_virt(vcpu, cr2);
Andre Przywaradc25e892010-12-21 11:12:07 +01004020 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004021 }
4022
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004023 if (vmx->rmode.vm86_active &&
Avi Kivity6aa8b732006-12-10 02:21:36 -08004024 handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004025 error_code)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004026 if (vcpu->arch.halt_request) {
4027 vcpu->arch.halt_request = 0;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004028 return kvm_emulate_halt(vcpu);
4029 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004030 return 1;
Avi Kivity72d6e5a2007-06-05 16:15:51 +03004031 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004032
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004033 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004034 switch (ex_no) {
4035 case DB_VECTOR:
4036 dr6 = vmcs_readl(EXIT_QUALIFICATION);
4037 if (!(vcpu->guest_debug &
4038 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
4039 vcpu->arch.dr6 = dr6 | DR6_FIXED_1;
4040 kvm_queue_exception(vcpu, DB_VECTOR);
4041 return 1;
4042 }
4043 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4044 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
4045 /* fall through */
4046 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01004047 /*
4048 * Update instruction length as we may reinject #BP from
4049 * user space while in guest debugging mode. Reading it for
4050 * #DB as well causes no harm, it is not used in that case.
4051 */
4052 vmx->vcpu.arch.event_exit_inst_len =
4053 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004054 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03004055 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004056 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4057 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004058 break;
4059 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01004060 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4061 kvm_run->ex.exception = ex_no;
4062 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004063 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004065 return 0;
4066}
4067
Avi Kivity851ba692009-08-24 11:10:17 +03004068static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004069{
Avi Kivity1165f5f2007-04-19 17:27:43 +03004070 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071 return 1;
4072}
4073
Avi Kivity851ba692009-08-24 11:10:17 +03004074static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08004075{
Avi Kivity851ba692009-08-24 11:10:17 +03004076 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Avi Kivity988ad742007-02-12 00:54:36 -08004077 return 0;
4078}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004079
Avi Kivity851ba692009-08-24 11:10:17 +03004080static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004081{
He, Qingbfdaab02007-09-12 14:18:28 +08004082 unsigned long exit_qualification;
Jan Kiszka34c33d12009-02-08 13:28:15 +01004083 int size, in, string;
Avi Kivity039576c2007-03-20 12:46:50 +02004084 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004085
He, Qingbfdaab02007-09-12 14:18:28 +08004086 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02004087 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004088 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03004089
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004090 ++vcpu->stat.io_exits;
4091
4092 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01004093 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004094
4095 port = exit_qualification >> 16;
4096 size = (exit_qualification & 7) + 1;
Guillaume Thouvenine93f36b2008-10-28 10:51:30 +01004097 skip_emulated_instruction(vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02004098
4099 return kvm_fast_pio_out(vcpu, size, port);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004100}
4101
Ingo Molnar102d8322007-02-19 14:37:47 +02004102static void
4103vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4104{
4105 /*
4106 * Patch in the VMCALL instruction:
4107 */
4108 hypercall[0] = 0x0f;
4109 hypercall[1] = 0x01;
4110 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02004111}
4112
Avi Kivity851ba692009-08-24 11:10:17 +03004113static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004114{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004115 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004116 int cr;
4117 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03004118 int err;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004119
He, Qingbfdaab02007-09-12 14:18:28 +08004120 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004121 cr = exit_qualification & 15;
4122 reg = (exit_qualification >> 8) & 15;
4123 switch ((exit_qualification >> 4) & 3) {
4124 case 0: /* mov to cr */
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004125 val = kvm_register_read(vcpu, reg);
4126 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004127 switch (cr) {
4128 case 0:
Avi Kivity49a9b072010-06-10 17:02:14 +03004129 err = kvm_set_cr0(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004130 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004131 return 1;
4132 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03004133 err = kvm_set_cr3(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004134 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004135 return 1;
4136 case 4:
Avi Kivitya83b29c2010-06-10 17:02:15 +03004137 err = kvm_set_cr4(vcpu, val);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004138 kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004139 return 1;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004140 case 8: {
4141 u8 cr8_prev = kvm_get_cr8(vcpu);
4142 u8 cr8 = kvm_register_read(vcpu, reg);
Andre Przywaraeea1cff2010-12-21 11:12:00 +01004143 err = kvm_set_cr8(vcpu, cr8);
Andre Przywaradb8fcef2010-12-21 11:12:01 +01004144 kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004145 if (irqchip_in_kernel(vcpu->kvm))
4146 return 1;
4147 if (cr8_prev <= cr8)
4148 return 1;
Avi Kivity851ba692009-08-24 11:10:17 +03004149 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03004150 return 0;
4151 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004152 };
4153 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03004154 case 2: /* clts */
Avi Kivityedcafe32009-12-30 18:07:40 +02004155 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02004156 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Anthony Liguori25c4c272007-04-27 09:29:21 +03004157 skip_emulated_instruction(vcpu);
Avi Kivity6b52d182010-01-21 15:31:47 +02004158 vmx_fpu_activate(vcpu);
Anthony Liguori25c4c272007-04-27 09:29:21 +03004159 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004160 case 1: /*mov from cr*/
4161 switch (cr) {
4162 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02004163 val = kvm_read_cr3(vcpu);
4164 kvm_register_write(vcpu, reg, val);
4165 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004166 skip_emulated_instruction(vcpu);
4167 return 1;
4168 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004169 val = kvm_get_cr8(vcpu);
4170 kvm_register_write(vcpu, reg, val);
4171 trace_kvm_cr_read(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004172 skip_emulated_instruction(vcpu);
4173 return 1;
4174 }
4175 break;
4176 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02004177 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02004178 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02004179 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004180
4181 skip_emulated_instruction(vcpu);
4182 return 1;
4183 default:
4184 break;
4185 }
Avi Kivity851ba692009-08-24 11:10:17 +03004186 vcpu->run->exit_reason = 0;
Rusty Russellf0242472007-08-01 10:48:02 +10004187 pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08004188 (int)(exit_qualification >> 4) & 3, cr);
4189 return 0;
4190}
4191
Avi Kivity851ba692009-08-24 11:10:17 +03004192static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004193{
He, Qingbfdaab02007-09-12 14:18:28 +08004194 unsigned long exit_qualification;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004195 int dr, reg;
4196
Jan Kiszkaf2483412010-01-20 18:20:20 +01004197 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03004198 if (!kvm_require_cpl(vcpu, 0))
4199 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004200 dr = vmcs_readl(GUEST_DR7);
4201 if (dr & DR7_GD) {
4202 /*
4203 * As the vm-exit takes precedence over the debug trap, we
4204 * need to emulate the latter, either for the host or the
4205 * guest debugging itself.
4206 */
4207 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03004208 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
4209 vcpu->run->debug.arch.dr7 = dr;
4210 vcpu->run->debug.arch.pc =
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004211 vmcs_readl(GUEST_CS_BASE) +
4212 vmcs_readl(GUEST_RIP);
Avi Kivity851ba692009-08-24 11:10:17 +03004213 vcpu->run->debug.arch.exception = DB_VECTOR;
4214 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004215 return 0;
4216 } else {
4217 vcpu->arch.dr7 &= ~DR7_GD;
4218 vcpu->arch.dr6 |= DR6_BD;
4219 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
4220 kvm_queue_exception(vcpu, DB_VECTOR);
4221 return 1;
4222 }
4223 }
4224
He, Qingbfdaab02007-09-12 14:18:28 +08004225 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004226 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
4227 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
4228 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03004229 unsigned long val;
4230 if (!kvm_get_dr(vcpu, dr, &val))
4231 kvm_register_write(vcpu, reg, val);
4232 } else
4233 kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004234 skip_emulated_instruction(vcpu);
4235 return 1;
4236}
4237
Gleb Natapov020df072010-04-13 10:05:23 +03004238static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
4239{
4240 vmcs_writel(GUEST_DR7, val);
4241}
4242
Avi Kivity851ba692009-08-24 11:10:17 +03004243static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244{
Avi Kivity06465c52007-02-28 20:46:53 +02004245 kvm_emulate_cpuid(vcpu);
4246 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004247}
4248
Avi Kivity851ba692009-08-24 11:10:17 +03004249static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004250{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004251 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252 u64 data;
4253
4254 if (vmx_get_msr(vcpu, ecx, &data)) {
Avi Kivity59200272010-01-25 19:47:02 +02004255 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004256 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004257 return 1;
4258 }
4259
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004260 trace_kvm_msr_read(ecx, data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004261
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262 /* FIXME: handling of bits 32:63 of rax, rdx */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004263 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
4264 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004265 skip_emulated_instruction(vcpu);
4266 return 1;
4267}
4268
Avi Kivity851ba692009-08-24 11:10:17 +03004269static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004270{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004271 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
4272 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
4273 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004274
4275 if (vmx_set_msr(vcpu, ecx, data) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02004276 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02004277 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004278 return 1;
4279 }
4280
Avi Kivity59200272010-01-25 19:47:02 +02004281 trace_kvm_msr_write(ecx, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004282 skip_emulated_instruction(vcpu);
4283 return 1;
4284}
4285
Avi Kivity851ba692009-08-24 11:10:17 +03004286static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004287{
Avi Kivity3842d132010-07-27 12:30:24 +03004288 kvm_make_request(KVM_REQ_EVENT, vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08004289 return 1;
4290}
4291
Avi Kivity851ba692009-08-24 11:10:17 +03004292static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004293{
Eddie Dong85f455f2007-07-06 12:20:49 +03004294 u32 cpu_based_vm_exec_control;
4295
4296 /* clear pending irq */
4297 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4298 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
4299 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004300
Avi Kivity3842d132010-07-27 12:30:24 +03004301 kvm_make_request(KVM_REQ_EVENT, vcpu);
4302
Jan Kiszkaa26bf122008-09-26 09:30:45 +02004303 ++vcpu->stat.irq_window_exits;
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04004304
Dor Laorc1150d82007-01-05 16:36:24 -08004305 /*
4306 * If the user space waits to inject interrupts, exit as soon as
4307 * possible
4308 */
Gleb Natapov80618232009-04-21 17:44:56 +03004309 if (!irqchip_in_kernel(vcpu->kvm) &&
Avi Kivity851ba692009-08-24 11:10:17 +03004310 vcpu->run->request_interrupt_window &&
Gleb Natapov80618232009-04-21 17:44:56 +03004311 !kvm_cpu_has_interrupt(vcpu)) {
Avi Kivity851ba692009-08-24 11:10:17 +03004312 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
Dor Laorc1150d82007-01-05 16:36:24 -08004313 return 0;
4314 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004315 return 1;
4316}
4317
Avi Kivity851ba692009-08-24 11:10:17 +03004318static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319{
4320 skip_emulated_instruction(vcpu);
Avi Kivityd3bef152007-06-05 15:53:05 +03004321 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004322}
4323
Avi Kivity851ba692009-08-24 11:10:17 +03004324static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02004325{
Dor Laor510043d2007-02-19 18:25:43 +02004326 skip_emulated_instruction(vcpu);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05004327 kvm_emulate_hypercall(vcpu);
4328 return 1;
Ingo Molnarc21415e2007-02-19 14:37:47 +02004329}
4330
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004331static int handle_invd(struct kvm_vcpu *vcpu)
4332{
Andre Przywara51d8b662010-12-21 11:12:02 +01004333 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02004334}
4335
Avi Kivity851ba692009-08-24 11:10:17 +03004336static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03004337{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004338 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004339
4340 kvm_mmu_invlpg(vcpu, exit_qualification);
4341 skip_emulated_instruction(vcpu);
4342 return 1;
4343}
4344
Avi Kivity851ba692009-08-24 11:10:17 +03004345static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02004346{
4347 skip_emulated_instruction(vcpu);
Sheng Yangf5f48ee2010-06-30 12:25:15 +08004348 kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02004349 return 1;
4350}
4351
Dexuan Cui2acf9232010-06-10 11:27:12 +08004352static int handle_xsetbv(struct kvm_vcpu *vcpu)
4353{
4354 u64 new_bv = kvm_read_edx_eax(vcpu);
4355 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
4356
4357 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
4358 skip_emulated_instruction(vcpu);
4359 return 1;
4360}
4361
Avi Kivity851ba692009-08-24 11:10:17 +03004362static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004363{
Andre Przywara51d8b662010-12-21 11:12:02 +01004364 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004365}
4366
Avi Kivity851ba692009-08-24 11:10:17 +03004367static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02004368{
Jan Kiszka60637aa2008-09-26 09:30:47 +02004369 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02004370 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02004371 bool has_error_code = false;
4372 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02004373 u16 tss_selector;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004374 int reason, type, idt_v;
4375
4376 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
4377 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02004378
4379 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
4380
4381 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004382 if (reason == TASK_SWITCH_GATE && idt_v) {
4383 switch (type) {
4384 case INTR_TYPE_NMI_INTR:
4385 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02004386 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004387 break;
4388 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03004389 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004390 kvm_clear_interrupt_queue(vcpu);
4391 break;
4392 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02004393 if (vmx->idt_vectoring_info &
4394 VECTORING_INFO_DELIVER_CODE_MASK) {
4395 has_error_code = true;
4396 error_code =
4397 vmcs_read32(IDT_VECTORING_ERROR_CODE);
4398 }
4399 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004400 case INTR_TYPE_SOFT_EXCEPTION:
4401 kvm_clear_exception_queue(vcpu);
4402 break;
4403 default:
4404 break;
4405 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02004406 }
Izik Eidus37817f22008-03-24 23:14:53 +02004407 tss_selector = exit_qualification;
4408
Gleb Natapov64a7ec02009-03-30 16:03:29 +03004409 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
4410 type != INTR_TYPE_EXT_INTR &&
4411 type != INTR_TYPE_NMI_INTR))
4412 skip_emulated_instruction(vcpu);
4413
Gleb Natapovacb54512010-04-15 21:03:50 +03004414 if (kvm_task_switch(vcpu, tss_selector, reason,
4415 has_error_code, error_code) == EMULATE_FAIL) {
4416 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4417 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
4418 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004419 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03004420 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01004421
4422 /* clear all local breakpoint enable flags */
4423 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55);
4424
4425 /*
4426 * TODO: What about debug traps on tss switch?
4427 * Are we supposed to inject them and update dr6?
4428 */
4429
4430 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02004431}
4432
Avi Kivity851ba692009-08-24 11:10:17 +03004433static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08004434{
Sheng Yangf9c617f2009-03-25 10:08:52 +08004435 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08004436 gpa_t gpa;
Sheng Yang14394422008-04-28 12:24:45 +08004437 int gla_validity;
Sheng Yang14394422008-04-28 12:24:45 +08004438
Sheng Yangf9c617f2009-03-25 10:08:52 +08004439 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08004440
4441 if (exit_qualification & (1 << 6)) {
4442 printk(KERN_ERR "EPT: GPA exceeds GAW!\n");
Jan Kiszka7f582ab2009-07-22 23:53:01 +02004443 return -EINVAL;
Sheng Yang14394422008-04-28 12:24:45 +08004444 }
4445
4446 gla_validity = (exit_qualification >> 7) & 0x3;
4447 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
4448 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
4449 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
4450 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
Sheng Yangf9c617f2009-03-25 10:08:52 +08004451 vmcs_readl(GUEST_LINEAR_ADDRESS));
Sheng Yang14394422008-04-28 12:24:45 +08004452 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
4453 (long unsigned int)exit_qualification);
Avi Kivity851ba692009-08-24 11:10:17 +03004454 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4455 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
Avi Kivity596ae892009-06-03 14:12:10 +03004456 return 0;
Sheng Yang14394422008-04-28 12:24:45 +08004457 }
4458
4459 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03004460 trace_kvm_page_fault(gpa, exit_qualification);
Andre Przywaradc25e892010-12-21 11:12:07 +01004461 return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08004462}
4463
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004464static u64 ept_rsvd_mask(u64 spte, int level)
4465{
4466 int i;
4467 u64 mask = 0;
4468
4469 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
4470 mask |= (1ULL << i);
4471
4472 if (level > 2)
4473 /* bits 7:3 reserved */
4474 mask |= 0xf8;
4475 else if (level == 2) {
4476 if (spte & (1ULL << 7))
4477 /* 2MB ref, bits 20:12 reserved */
4478 mask |= 0x1ff000;
4479 else
4480 /* bits 6:3 reserved */
4481 mask |= 0x78;
4482 }
4483
4484 return mask;
4485}
4486
4487static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
4488 int level)
4489{
4490 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
4491
4492 /* 010b (write-only) */
4493 WARN_ON((spte & 0x7) == 0x2);
4494
4495 /* 110b (write/execute) */
4496 WARN_ON((spte & 0x7) == 0x6);
4497
4498 /* 100b (execute-only) and value not supported by logical processor */
4499 if (!cpu_has_vmx_ept_execute_only())
4500 WARN_ON((spte & 0x7) == 0x4);
4501
4502 /* not 000b */
4503 if ((spte & 0x7)) {
4504 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
4505
4506 if (rsvd_bits != 0) {
4507 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
4508 __func__, rsvd_bits);
4509 WARN_ON(1);
4510 }
4511
4512 if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) {
4513 u64 ept_mem_type = (spte & 0x38) >> 3;
4514
4515 if (ept_mem_type == 2 || ept_mem_type == 3 ||
4516 ept_mem_type == 7) {
4517 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
4518 __func__, ept_mem_type);
4519 WARN_ON(1);
4520 }
4521 }
4522 }
4523}
4524
Avi Kivity851ba692009-08-24 11:10:17 +03004525static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004526{
4527 u64 sptes[4];
4528 int nr_sptes, i;
4529 gpa_t gpa;
4530
4531 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
4532
4533 printk(KERN_ERR "EPT: Misconfiguration.\n");
4534 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
4535
4536 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
4537
4538 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
4539 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
4540
Avi Kivity851ba692009-08-24 11:10:17 +03004541 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
4542 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03004543
4544 return 0;
4545}
4546
Avi Kivity851ba692009-08-24 11:10:17 +03004547static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08004548{
4549 u32 cpu_based_vm_exec_control;
4550
4551 /* clear pending NMI */
4552 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4553 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
4554 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4555 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03004556 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08004557
4558 return 1;
4559}
4560
Mohammed Gamal80ced182009-09-01 12:48:18 +02004561static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004562{
Avi Kivity8b3079a2009-01-05 12:10:54 +02004563 struct vcpu_vmx *vmx = to_vmx(vcpu);
4564 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02004565 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02004566 u32 cpu_exec_ctrl;
4567 bool intr_window_requested;
4568
4569 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4570 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004571
4572 while (!guest_state_valid(vcpu)) {
Avi Kivity49e9d552010-09-19 14:34:08 +02004573 if (intr_window_requested
4574 && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF))
4575 return handle_interrupt_window(&vmx->vcpu);
4576
Andre Przywara51d8b662010-12-21 11:12:02 +01004577 err = emulate_instruction(vcpu, 0);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004578
Mohammed Gamal80ced182009-09-01 12:48:18 +02004579 if (err == EMULATE_DO_MMIO) {
4580 ret = 0;
4581 goto out;
4582 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01004583
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004584 if (err != EMULATE_DONE)
4585 return 0;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004586
4587 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02004588 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004589 if (need_resched())
4590 schedule();
4591 }
4592
Mohammed Gamal80ced182009-09-01 12:48:18 +02004593 vmx->emulation_required = 0;
4594out:
4595 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03004596}
4597
Avi Kivity6aa8b732006-12-10 02:21:36 -08004598/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004599 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
4600 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
4601 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03004602static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004603{
4604 skip_emulated_instruction(vcpu);
4605 kvm_vcpu_on_spin(vcpu);
4606
4607 return 1;
4608}
4609
Sheng Yang59708672009-12-15 13:29:54 +08004610static int handle_invalid_op(struct kvm_vcpu *vcpu)
4611{
4612 kvm_queue_exception(vcpu, UD_VECTOR);
4613 return 1;
4614}
4615
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08004616/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004617 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
4618 * We could reuse a single VMCS for all the L2 guests, but we also want the
4619 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
4620 * allows keeping them loaded on the processor, and in the future will allow
4621 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
4622 * every entry if they never change.
4623 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
4624 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
4625 *
4626 * The following functions allocate and free a vmcs02 in this pool.
4627 */
4628
4629/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
4630static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
4631{
4632 struct vmcs02_list *item;
4633 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4634 if (item->vmptr == vmx->nested.current_vmptr) {
4635 list_move(&item->list, &vmx->nested.vmcs02_pool);
4636 return &item->vmcs02;
4637 }
4638
4639 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
4640 /* Recycle the least recently used VMCS. */
4641 item = list_entry(vmx->nested.vmcs02_pool.prev,
4642 struct vmcs02_list, list);
4643 item->vmptr = vmx->nested.current_vmptr;
4644 list_move(&item->list, &vmx->nested.vmcs02_pool);
4645 return &item->vmcs02;
4646 }
4647
4648 /* Create a new VMCS */
4649 item = (struct vmcs02_list *)
4650 kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
4651 if (!item)
4652 return NULL;
4653 item->vmcs02.vmcs = alloc_vmcs();
4654 if (!item->vmcs02.vmcs) {
4655 kfree(item);
4656 return NULL;
4657 }
4658 loaded_vmcs_init(&item->vmcs02);
4659 item->vmptr = vmx->nested.current_vmptr;
4660 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
4661 vmx->nested.vmcs02_num++;
4662 return &item->vmcs02;
4663}
4664
4665/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
4666static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
4667{
4668 struct vmcs02_list *item;
4669 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
4670 if (item->vmptr == vmptr) {
4671 free_loaded_vmcs(&item->vmcs02);
4672 list_del(&item->list);
4673 kfree(item);
4674 vmx->nested.vmcs02_num--;
4675 return;
4676 }
4677}
4678
4679/*
4680 * Free all VMCSs saved for this vcpu, except the one pointed by
4681 * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one
4682 * currently used, if running L2), and vmcs01 when running L2.
4683 */
4684static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
4685{
4686 struct vmcs02_list *item, *n;
4687 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
4688 if (vmx->loaded_vmcs != &item->vmcs02)
4689 free_loaded_vmcs(&item->vmcs02);
4690 list_del(&item->list);
4691 kfree(item);
4692 }
4693 vmx->nested.vmcs02_num = 0;
4694
4695 if (vmx->loaded_vmcs != &vmx->vmcs01)
4696 free_loaded_vmcs(&vmx->vmcs01);
4697}
4698
4699/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004700 * Emulate the VMXON instruction.
4701 * Currently, we just remember that VMX is active, and do not save or even
4702 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4703 * do not currently need to store anything in that guest-allocated memory
4704 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
4705 * argument is different from the VMXON pointer (which the spec says they do).
4706 */
4707static int handle_vmon(struct kvm_vcpu *vcpu)
4708{
4709 struct kvm_segment cs;
4710 struct vcpu_vmx *vmx = to_vmx(vcpu);
4711
4712 /* The Intel VMX Instruction Reference lists a bunch of bits that
4713 * are prerequisite to running VMXON, most notably cr4.VMXE must be
4714 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
4715 * Otherwise, we should fail with #UD. We test these now:
4716 */
4717 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
4718 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
4719 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
4720 kvm_queue_exception(vcpu, UD_VECTOR);
4721 return 1;
4722 }
4723
4724 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4725 if (is_long_mode(vcpu) && !cs.l) {
4726 kvm_queue_exception(vcpu, UD_VECTOR);
4727 return 1;
4728 }
4729
4730 if (vmx_get_cpl(vcpu)) {
4731 kvm_inject_gp(vcpu, 0);
4732 return 1;
4733 }
4734
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004735 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
4736 vmx->nested.vmcs02_num = 0;
4737
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004738 vmx->nested.vmxon = true;
4739
4740 skip_emulated_instruction(vcpu);
4741 return 1;
4742}
4743
4744/*
4745 * Intel's VMX Instruction Reference specifies a common set of prerequisites
4746 * for running VMX instructions (except VMXON, whose prerequisites are
4747 * slightly different). It also specifies what exception to inject otherwise.
4748 */
4749static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
4750{
4751 struct kvm_segment cs;
4752 struct vcpu_vmx *vmx = to_vmx(vcpu);
4753
4754 if (!vmx->nested.vmxon) {
4755 kvm_queue_exception(vcpu, UD_VECTOR);
4756 return 0;
4757 }
4758
4759 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4760 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
4761 (is_long_mode(vcpu) && !cs.l)) {
4762 kvm_queue_exception(vcpu, UD_VECTOR);
4763 return 0;
4764 }
4765
4766 if (vmx_get_cpl(vcpu)) {
4767 kvm_inject_gp(vcpu, 0);
4768 return 0;
4769 }
4770
4771 return 1;
4772}
4773
4774/*
4775 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
4776 * just stops using VMX.
4777 */
4778static void free_nested(struct vcpu_vmx *vmx)
4779{
4780 if (!vmx->nested.vmxon)
4781 return;
4782 vmx->nested.vmxon = false;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03004783 if (vmx->nested.current_vmptr != -1ull) {
4784 kunmap(vmx->nested.current_vmcs12_page);
4785 nested_release_page(vmx->nested.current_vmcs12_page);
4786 vmx->nested.current_vmptr = -1ull;
4787 vmx->nested.current_vmcs12 = NULL;
4788 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03004789 /* Unpin physical memory we referred to in current vmcs02 */
4790 if (vmx->nested.apic_access_page) {
4791 nested_release_page(vmx->nested.apic_access_page);
4792 vmx->nested.apic_access_page = 0;
4793 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03004794
4795 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03004796}
4797
4798/* Emulate the VMXOFF instruction */
4799static int handle_vmoff(struct kvm_vcpu *vcpu)
4800{
4801 if (!nested_vmx_check_permission(vcpu))
4802 return 1;
4803 free_nested(to_vmx(vcpu));
4804 skip_emulated_instruction(vcpu);
4805 return 1;
4806}
4807
4808/*
Nadav Har'El064aea72011-05-25 23:04:56 +03004809 * Decode the memory-address operand of a vmx instruction, as recorded on an
4810 * exit caused by such an instruction (run by a guest hypervisor).
4811 * On success, returns 0. When the operand is invalid, returns 1 and throws
4812 * #UD or #GP.
4813 */
4814static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
4815 unsigned long exit_qualification,
4816 u32 vmx_instruction_info, gva_t *ret)
4817{
4818 /*
4819 * According to Vol. 3B, "Information for VM Exits Due to Instruction
4820 * Execution", on an exit, vmx_instruction_info holds most of the
4821 * addressing components of the operand. Only the displacement part
4822 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
4823 * For how an actual address is calculated from all these components,
4824 * refer to Vol. 1, "Operand Addressing".
4825 */
4826 int scaling = vmx_instruction_info & 3;
4827 int addr_size = (vmx_instruction_info >> 7) & 7;
4828 bool is_reg = vmx_instruction_info & (1u << 10);
4829 int seg_reg = (vmx_instruction_info >> 15) & 7;
4830 int index_reg = (vmx_instruction_info >> 18) & 0xf;
4831 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
4832 int base_reg = (vmx_instruction_info >> 23) & 0xf;
4833 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
4834
4835 if (is_reg) {
4836 kvm_queue_exception(vcpu, UD_VECTOR);
4837 return 1;
4838 }
4839
4840 /* Addr = segment_base + offset */
4841 /* offset = base + [index * scale] + displacement */
4842 *ret = vmx_get_segment_base(vcpu, seg_reg);
4843 if (base_is_valid)
4844 *ret += kvm_register_read(vcpu, base_reg);
4845 if (index_is_valid)
4846 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
4847 *ret += exit_qualification; /* holds the displacement */
4848
4849 if (addr_size == 1) /* 32 bit */
4850 *ret &= 0xffffffff;
4851
4852 /*
4853 * TODO: throw #GP (and return 1) in various cases that the VM*
4854 * instructions require it - e.g., offset beyond segment limit,
4855 * unusable or unreadable/unwritable segment, non-canonical 64-bit
4856 * address, and so on. Currently these are not checked.
4857 */
4858 return 0;
4859}
4860
4861/*
Nadav Har'El0140cae2011-05-25 23:06:28 +03004862 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
4863 * set the success or error code of an emulated VMX instruction, as specified
4864 * by Vol 2B, VMX Instruction Reference, "Conventions".
4865 */
4866static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
4867{
4868 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
4869 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
4870 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
4871}
4872
4873static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
4874{
4875 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
4876 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
4877 X86_EFLAGS_SF | X86_EFLAGS_OF))
4878 | X86_EFLAGS_CF);
4879}
4880
4881static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
4882 u32 vm_instruction_error)
4883{
4884 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
4885 /*
4886 * failValid writes the error number to the current VMCS, which
4887 * can't be done there isn't a current VMCS.
4888 */
4889 nested_vmx_failInvalid(vcpu);
4890 return;
4891 }
4892 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
4893 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
4894 X86_EFLAGS_SF | X86_EFLAGS_OF))
4895 | X86_EFLAGS_ZF);
4896 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
4897}
4898
Nadav Har'El27d6c862011-05-25 23:06:59 +03004899/* Emulate the VMCLEAR instruction */
4900static int handle_vmclear(struct kvm_vcpu *vcpu)
4901{
4902 struct vcpu_vmx *vmx = to_vmx(vcpu);
4903 gva_t gva;
4904 gpa_t vmptr;
4905 struct vmcs12 *vmcs12;
4906 struct page *page;
4907 struct x86_exception e;
4908
4909 if (!nested_vmx_check_permission(vcpu))
4910 return 1;
4911
4912 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
4913 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
4914 return 1;
4915
4916 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
4917 sizeof(vmptr), &e)) {
4918 kvm_inject_page_fault(vcpu, &e);
4919 return 1;
4920 }
4921
4922 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
4923 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
4924 skip_emulated_instruction(vcpu);
4925 return 1;
4926 }
4927
4928 if (vmptr == vmx->nested.current_vmptr) {
4929 kunmap(vmx->nested.current_vmcs12_page);
4930 nested_release_page(vmx->nested.current_vmcs12_page);
4931 vmx->nested.current_vmptr = -1ull;
4932 vmx->nested.current_vmcs12 = NULL;
4933 }
4934
4935 page = nested_get_page(vcpu, vmptr);
4936 if (page == NULL) {
4937 /*
4938 * For accurate processor emulation, VMCLEAR beyond available
4939 * physical memory should do nothing at all. However, it is
4940 * possible that a nested vmx bug, not a guest hypervisor bug,
4941 * resulted in this case, so let's shut down before doing any
4942 * more damage:
4943 */
4944 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
4945 return 1;
4946 }
4947 vmcs12 = kmap(page);
4948 vmcs12->launch_state = 0;
4949 kunmap(page);
4950 nested_release_page(page);
4951
4952 nested_free_vmcs02(vmx, vmptr);
4953
4954 skip_emulated_instruction(vcpu);
4955 nested_vmx_succeed(vcpu);
4956 return 1;
4957}
4958
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03004959static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
4960
4961/* Emulate the VMLAUNCH instruction */
4962static int handle_vmlaunch(struct kvm_vcpu *vcpu)
4963{
4964 return nested_vmx_run(vcpu, true);
4965}
4966
4967/* Emulate the VMRESUME instruction */
4968static int handle_vmresume(struct kvm_vcpu *vcpu)
4969{
4970
4971 return nested_vmx_run(vcpu, false);
4972}
4973
Nadav Har'El49f705c2011-05-25 23:08:30 +03004974enum vmcs_field_type {
4975 VMCS_FIELD_TYPE_U16 = 0,
4976 VMCS_FIELD_TYPE_U64 = 1,
4977 VMCS_FIELD_TYPE_U32 = 2,
4978 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
4979};
4980
4981static inline int vmcs_field_type(unsigned long field)
4982{
4983 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
4984 return VMCS_FIELD_TYPE_U32;
4985 return (field >> 13) & 0x3 ;
4986}
4987
4988static inline int vmcs_field_readonly(unsigned long field)
4989{
4990 return (((field >> 10) & 0x3) == 1);
4991}
4992
4993/*
4994 * Read a vmcs12 field. Since these can have varying lengths and we return
4995 * one type, we chose the biggest type (u64) and zero-extend the return value
4996 * to that size. Note that the caller, handle_vmread, might need to use only
4997 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
4998 * 64-bit fields are to be returned).
4999 */
5000static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu,
5001 unsigned long field, u64 *ret)
5002{
5003 short offset = vmcs_field_to_offset(field);
5004 char *p;
5005
5006 if (offset < 0)
5007 return 0;
5008
5009 p = ((char *)(get_vmcs12(vcpu))) + offset;
5010
5011 switch (vmcs_field_type(field)) {
5012 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5013 *ret = *((natural_width *)p);
5014 return 1;
5015 case VMCS_FIELD_TYPE_U16:
5016 *ret = *((u16 *)p);
5017 return 1;
5018 case VMCS_FIELD_TYPE_U32:
5019 *ret = *((u32 *)p);
5020 return 1;
5021 case VMCS_FIELD_TYPE_U64:
5022 *ret = *((u64 *)p);
5023 return 1;
5024 default:
5025 return 0; /* can never happen. */
5026 }
5027}
5028
5029/*
5030 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
5031 * used before) all generate the same failure when it is missing.
5032 */
5033static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
5034{
5035 struct vcpu_vmx *vmx = to_vmx(vcpu);
5036 if (vmx->nested.current_vmptr == -1ull) {
5037 nested_vmx_failInvalid(vcpu);
5038 skip_emulated_instruction(vcpu);
5039 return 0;
5040 }
5041 return 1;
5042}
5043
5044static int handle_vmread(struct kvm_vcpu *vcpu)
5045{
5046 unsigned long field;
5047 u64 field_value;
5048 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5049 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5050 gva_t gva = 0;
5051
5052 if (!nested_vmx_check_permission(vcpu) ||
5053 !nested_vmx_check_vmcs12(vcpu))
5054 return 1;
5055
5056 /* Decode instruction info and find the field to read */
5057 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5058 /* Read the field, zero-extended to a u64 field_value */
5059 if (!vmcs12_read_any(vcpu, field, &field_value)) {
5060 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5061 skip_emulated_instruction(vcpu);
5062 return 1;
5063 }
5064 /*
5065 * Now copy part of this value to register or memory, as requested.
5066 * Note that the number of bits actually copied is 32 or 64 depending
5067 * on the guest's mode (32 or 64 bit), not on the given field's length.
5068 */
5069 if (vmx_instruction_info & (1u << 10)) {
5070 kvm_register_write(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
5071 field_value);
5072 } else {
5073 if (get_vmx_mem_address(vcpu, exit_qualification,
5074 vmx_instruction_info, &gva))
5075 return 1;
5076 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
5077 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
5078 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
5079 }
5080
5081 nested_vmx_succeed(vcpu);
5082 skip_emulated_instruction(vcpu);
5083 return 1;
5084}
5085
5086
5087static int handle_vmwrite(struct kvm_vcpu *vcpu)
5088{
5089 unsigned long field;
5090 gva_t gva;
5091 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5092 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5093 char *p;
5094 short offset;
5095 /* The value to write might be 32 or 64 bits, depending on L1's long
5096 * mode, and eventually we need to write that into a field of several
5097 * possible lengths. The code below first zero-extends the value to 64
5098 * bit (field_value), and then copies only the approriate number of
5099 * bits into the vmcs12 field.
5100 */
5101 u64 field_value = 0;
5102 struct x86_exception e;
5103
5104 if (!nested_vmx_check_permission(vcpu) ||
5105 !nested_vmx_check_vmcs12(vcpu))
5106 return 1;
5107
5108 if (vmx_instruction_info & (1u << 10))
5109 field_value = kvm_register_read(vcpu,
5110 (((vmx_instruction_info) >> 3) & 0xf));
5111 else {
5112 if (get_vmx_mem_address(vcpu, exit_qualification,
5113 vmx_instruction_info, &gva))
5114 return 1;
5115 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
5116 &field_value, (is_long_mode(vcpu) ? 8 : 4), &e)) {
5117 kvm_inject_page_fault(vcpu, &e);
5118 return 1;
5119 }
5120 }
5121
5122
5123 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5124 if (vmcs_field_readonly(field)) {
5125 nested_vmx_failValid(vcpu,
5126 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
5127 skip_emulated_instruction(vcpu);
5128 return 1;
5129 }
5130
5131 offset = vmcs_field_to_offset(field);
5132 if (offset < 0) {
5133 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5134 skip_emulated_instruction(vcpu);
5135 return 1;
5136 }
5137 p = ((char *) get_vmcs12(vcpu)) + offset;
5138
5139 switch (vmcs_field_type(field)) {
5140 case VMCS_FIELD_TYPE_U16:
5141 *(u16 *)p = field_value;
5142 break;
5143 case VMCS_FIELD_TYPE_U32:
5144 *(u32 *)p = field_value;
5145 break;
5146 case VMCS_FIELD_TYPE_U64:
5147 *(u64 *)p = field_value;
5148 break;
5149 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
5150 *(natural_width *)p = field_value;
5151 break;
5152 default:
5153 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
5154 skip_emulated_instruction(vcpu);
5155 return 1;
5156 }
5157
5158 nested_vmx_succeed(vcpu);
5159 skip_emulated_instruction(vcpu);
5160 return 1;
5161}
5162
Nadav Har'El63846662011-05-25 23:07:29 +03005163/* Emulate the VMPTRLD instruction */
5164static int handle_vmptrld(struct kvm_vcpu *vcpu)
5165{
5166 struct vcpu_vmx *vmx = to_vmx(vcpu);
5167 gva_t gva;
5168 gpa_t vmptr;
5169 struct x86_exception e;
5170
5171 if (!nested_vmx_check_permission(vcpu))
5172 return 1;
5173
5174 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
5175 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
5176 return 1;
5177
5178 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
5179 sizeof(vmptr), &e)) {
5180 kvm_inject_page_fault(vcpu, &e);
5181 return 1;
5182 }
5183
5184 if (!IS_ALIGNED(vmptr, PAGE_SIZE)) {
5185 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
5186 skip_emulated_instruction(vcpu);
5187 return 1;
5188 }
5189
5190 if (vmx->nested.current_vmptr != vmptr) {
5191 struct vmcs12 *new_vmcs12;
5192 struct page *page;
5193 page = nested_get_page(vcpu, vmptr);
5194 if (page == NULL) {
5195 nested_vmx_failInvalid(vcpu);
5196 skip_emulated_instruction(vcpu);
5197 return 1;
5198 }
5199 new_vmcs12 = kmap(page);
5200 if (new_vmcs12->revision_id != VMCS12_REVISION) {
5201 kunmap(page);
5202 nested_release_page_clean(page);
5203 nested_vmx_failValid(vcpu,
5204 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
5205 skip_emulated_instruction(vcpu);
5206 return 1;
5207 }
5208 if (vmx->nested.current_vmptr != -1ull) {
5209 kunmap(vmx->nested.current_vmcs12_page);
5210 nested_release_page(vmx->nested.current_vmcs12_page);
5211 }
5212
5213 vmx->nested.current_vmptr = vmptr;
5214 vmx->nested.current_vmcs12 = new_vmcs12;
5215 vmx->nested.current_vmcs12_page = page;
5216 }
5217
5218 nested_vmx_succeed(vcpu);
5219 skip_emulated_instruction(vcpu);
5220 return 1;
5221}
5222
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005223/* Emulate the VMPTRST instruction */
5224static int handle_vmptrst(struct kvm_vcpu *vcpu)
5225{
5226 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5227 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5228 gva_t vmcs_gva;
5229 struct x86_exception e;
5230
5231 if (!nested_vmx_check_permission(vcpu))
5232 return 1;
5233
5234 if (get_vmx_mem_address(vcpu, exit_qualification,
5235 vmx_instruction_info, &vmcs_gva))
5236 return 1;
5237 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
5238 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
5239 (void *)&to_vmx(vcpu)->nested.current_vmptr,
5240 sizeof(u64), &e)) {
5241 kvm_inject_page_fault(vcpu, &e);
5242 return 1;
5243 }
5244 nested_vmx_succeed(vcpu);
5245 skip_emulated_instruction(vcpu);
5246 return 1;
5247}
5248
Nadav Har'El0140cae2011-05-25 23:06:28 +03005249/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005250 * The exit handlers return 1 if the exit was handled fully and guest execution
5251 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
5252 * to be done to userspace and return 0.
5253 */
Avi Kivity851ba692009-08-24 11:10:17 +03005254static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005255 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
5256 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08005257 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08005258 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005259 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005260 [EXIT_REASON_CR_ACCESS] = handle_cr,
5261 [EXIT_REASON_DR_ACCESS] = handle_dr,
5262 [EXIT_REASON_CPUID] = handle_cpuid,
5263 [EXIT_REASON_MSR_READ] = handle_rdmsr,
5264 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
5265 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
5266 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02005267 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03005268 [EXIT_REASON_INVLPG] = handle_invlpg,
Ingo Molnarc21415e2007-02-19 14:37:47 +02005269 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03005270 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005271 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03005272 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03005273 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005274 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03005275 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03005276 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005277 [EXIT_REASON_VMOFF] = handle_vmoff,
5278 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08005279 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
5280 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Eddie Donge5edaa02007-11-11 12:28:35 +02005281 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08005282 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02005283 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08005284 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03005285 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
5286 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005287 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Sheng Yang59708672009-12-15 13:29:54 +08005288 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op,
5289 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op,
Avi Kivity6aa8b732006-12-10 02:21:36 -08005290};
5291
5292static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04005293 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005294
Nadav Har'El644d7112011-05-25 23:12:35 +03005295/*
5296 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
5297 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
5298 * disinterest in the current event (read or write a specific MSR) by using an
5299 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
5300 */
5301static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
5302 struct vmcs12 *vmcs12, u32 exit_reason)
5303{
5304 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
5305 gpa_t bitmap;
5306
5307 if (!nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_USE_MSR_BITMAPS))
5308 return 1;
5309
5310 /*
5311 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
5312 * for the four combinations of read/write and low/high MSR numbers.
5313 * First we need to figure out which of the four to use:
5314 */
5315 bitmap = vmcs12->msr_bitmap;
5316 if (exit_reason == EXIT_REASON_MSR_WRITE)
5317 bitmap += 2048;
5318 if (msr_index >= 0xc0000000) {
5319 msr_index -= 0xc0000000;
5320 bitmap += 1024;
5321 }
5322
5323 /* Then read the msr_index'th bit from this bitmap: */
5324 if (msr_index < 1024*8) {
5325 unsigned char b;
5326 kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1);
5327 return 1 & (b >> (msr_index & 7));
5328 } else
5329 return 1; /* let L1 handle the wrong parameter */
5330}
5331
5332/*
5333 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
5334 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
5335 * intercept (via guest_host_mask etc.) the current event.
5336 */
5337static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
5338 struct vmcs12 *vmcs12)
5339{
5340 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5341 int cr = exit_qualification & 15;
5342 int reg = (exit_qualification >> 8) & 15;
5343 unsigned long val = kvm_register_read(vcpu, reg);
5344
5345 switch ((exit_qualification >> 4) & 3) {
5346 case 0: /* mov to cr */
5347 switch (cr) {
5348 case 0:
5349 if (vmcs12->cr0_guest_host_mask &
5350 (val ^ vmcs12->cr0_read_shadow))
5351 return 1;
5352 break;
5353 case 3:
5354 if ((vmcs12->cr3_target_count >= 1 &&
5355 vmcs12->cr3_target_value0 == val) ||
5356 (vmcs12->cr3_target_count >= 2 &&
5357 vmcs12->cr3_target_value1 == val) ||
5358 (vmcs12->cr3_target_count >= 3 &&
5359 vmcs12->cr3_target_value2 == val) ||
5360 (vmcs12->cr3_target_count >= 4 &&
5361 vmcs12->cr3_target_value3 == val))
5362 return 0;
5363 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
5364 return 1;
5365 break;
5366 case 4:
5367 if (vmcs12->cr4_guest_host_mask &
5368 (vmcs12->cr4_read_shadow ^ val))
5369 return 1;
5370 break;
5371 case 8:
5372 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
5373 return 1;
5374 break;
5375 }
5376 break;
5377 case 2: /* clts */
5378 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
5379 (vmcs12->cr0_read_shadow & X86_CR0_TS))
5380 return 1;
5381 break;
5382 case 1: /* mov from cr */
5383 switch (cr) {
5384 case 3:
5385 if (vmcs12->cpu_based_vm_exec_control &
5386 CPU_BASED_CR3_STORE_EXITING)
5387 return 1;
5388 break;
5389 case 8:
5390 if (vmcs12->cpu_based_vm_exec_control &
5391 CPU_BASED_CR8_STORE_EXITING)
5392 return 1;
5393 break;
5394 }
5395 break;
5396 case 3: /* lmsw */
5397 /*
5398 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
5399 * cr0. Other attempted changes are ignored, with no exit.
5400 */
5401 if (vmcs12->cr0_guest_host_mask & 0xe &
5402 (val ^ vmcs12->cr0_read_shadow))
5403 return 1;
5404 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
5405 !(vmcs12->cr0_read_shadow & 0x1) &&
5406 (val & 0x1))
5407 return 1;
5408 break;
5409 }
5410 return 0;
5411}
5412
5413/*
5414 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
5415 * should handle it ourselves in L0 (and then continue L2). Only call this
5416 * when in is_guest_mode (L2).
5417 */
5418static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
5419{
5420 u32 exit_reason = vmcs_read32(VM_EXIT_REASON);
5421 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
5422 struct vcpu_vmx *vmx = to_vmx(vcpu);
5423 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5424
5425 if (vmx->nested.nested_run_pending)
5426 return 0;
5427
5428 if (unlikely(vmx->fail)) {
5429 printk(KERN_INFO "%s failed vm entry %x\n",
5430 __func__, vmcs_read32(VM_INSTRUCTION_ERROR));
5431 return 1;
5432 }
5433
5434 switch (exit_reason) {
5435 case EXIT_REASON_EXCEPTION_NMI:
5436 if (!is_exception(intr_info))
5437 return 0;
5438 else if (is_page_fault(intr_info))
5439 return enable_ept;
5440 return vmcs12->exception_bitmap &
5441 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
5442 case EXIT_REASON_EXTERNAL_INTERRUPT:
5443 return 0;
5444 case EXIT_REASON_TRIPLE_FAULT:
5445 return 1;
5446 case EXIT_REASON_PENDING_INTERRUPT:
5447 case EXIT_REASON_NMI_WINDOW:
5448 /*
5449 * prepare_vmcs02() set the CPU_BASED_VIRTUAL_INTR_PENDING bit
5450 * (aka Interrupt Window Exiting) only when L1 turned it on,
5451 * so if we got a PENDING_INTERRUPT exit, this must be for L1.
5452 * Same for NMI Window Exiting.
5453 */
5454 return 1;
5455 case EXIT_REASON_TASK_SWITCH:
5456 return 1;
5457 case EXIT_REASON_CPUID:
5458 return 1;
5459 case EXIT_REASON_HLT:
5460 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
5461 case EXIT_REASON_INVD:
5462 return 1;
5463 case EXIT_REASON_INVLPG:
5464 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
5465 case EXIT_REASON_RDPMC:
5466 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
5467 case EXIT_REASON_RDTSC:
5468 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
5469 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
5470 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
5471 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
5472 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
5473 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
5474 /*
5475 * VMX instructions trap unconditionally. This allows L1 to
5476 * emulate them for its L2 guest, i.e., allows 3-level nesting!
5477 */
5478 return 1;
5479 case EXIT_REASON_CR_ACCESS:
5480 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
5481 case EXIT_REASON_DR_ACCESS:
5482 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
5483 case EXIT_REASON_IO_INSTRUCTION:
5484 /* TODO: support IO bitmaps */
5485 return 1;
5486 case EXIT_REASON_MSR_READ:
5487 case EXIT_REASON_MSR_WRITE:
5488 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
5489 case EXIT_REASON_INVALID_STATE:
5490 return 1;
5491 case EXIT_REASON_MWAIT_INSTRUCTION:
5492 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
5493 case EXIT_REASON_MONITOR_INSTRUCTION:
5494 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
5495 case EXIT_REASON_PAUSE_INSTRUCTION:
5496 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
5497 nested_cpu_has2(vmcs12,
5498 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
5499 case EXIT_REASON_MCE_DURING_VMENTRY:
5500 return 0;
5501 case EXIT_REASON_TPR_BELOW_THRESHOLD:
5502 return 1;
5503 case EXIT_REASON_APIC_ACCESS:
5504 return nested_cpu_has2(vmcs12,
5505 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
5506 case EXIT_REASON_EPT_VIOLATION:
5507 case EXIT_REASON_EPT_MISCONFIG:
5508 return 0;
5509 case EXIT_REASON_WBINVD:
5510 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
5511 case EXIT_REASON_XSETBV:
5512 return 1;
5513 default:
5514 return 1;
5515 }
5516}
5517
Avi Kivity586f9602010-11-18 13:09:54 +02005518static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
5519{
5520 *info1 = vmcs_readl(EXIT_QUALIFICATION);
5521 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
5522}
5523
Avi Kivity6aa8b732006-12-10 02:21:36 -08005524/*
5525 * The guest has exited. See if we can fix it or if we need userspace
5526 * assistance.
5527 */
Avi Kivity851ba692009-08-24 11:10:17 +03005528static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005529{
Avi Kivity29bd8a72007-09-10 17:27:03 +03005530 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005531 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02005532 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03005533
Avi Kivityaa179112010-11-17 18:44:19 +02005534 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005535
Mohammed Gamal80ced182009-09-01 12:48:18 +02005536 /* If guest state is invalid, start emulating */
5537 if (vmx->emulation_required && emulate_invalid_guest_state)
5538 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01005539
Nadav Har'El644d7112011-05-25 23:12:35 +03005540 if (exit_reason == EXIT_REASON_VMLAUNCH ||
5541 exit_reason == EXIT_REASON_VMRESUME)
5542 vmx->nested.nested_run_pending = 1;
5543 else
5544 vmx->nested.nested_run_pending = 0;
5545
5546 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
5547 nested_vmx_vmexit(vcpu);
5548 return 1;
5549 }
5550
Mohammed Gamal51207022010-05-31 22:40:54 +03005551 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
5552 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5553 vcpu->run->fail_entry.hardware_entry_failure_reason
5554 = exit_reason;
5555 return 0;
5556 }
5557
Avi Kivity29bd8a72007-09-10 17:27:03 +03005558 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03005559 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
5560 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03005561 = vmcs_read32(VM_INSTRUCTION_ERROR);
5562 return 0;
5563 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005564
Mike Dayd77c26f2007-10-08 09:02:08 -04005565 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08005566 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02005567 exit_reason != EXIT_REASON_EPT_VIOLATION &&
5568 exit_reason != EXIT_REASON_TASK_SWITCH))
5569 printk(KERN_WARNING "%s: unexpected, valid vectoring info "
5570 "(0x%x) and exit reason is 0x%x\n",
5571 __func__, vectoring_info, exit_reason);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005572
Nadav Har'El644d7112011-05-25 23:12:35 +03005573 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
5574 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
5575 get_vmcs12(vcpu), vcpu)))) {
Gleb Natapovc4282df2009-04-21 17:45:07 +03005576 if (vmx_interrupt_allowed(vcpu)) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005577 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005578 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
Jan Kiszka45312202008-12-11 16:54:54 +01005579 vcpu->arch.nmi_pending) {
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005580 /*
5581 * This CPU don't support us in finding the end of an
5582 * NMI-blocked window if the guest runs with IRQs
5583 * disabled. So we pull the trigger after 1 s of
5584 * futile waiting, but inform the user about this.
5585 */
5586 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
5587 "state on VCPU %d after 1 s timeout\n",
5588 __func__, vcpu->vcpu_id);
5589 vmx->soft_vnmi_blocked = 0;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005590 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005591 }
5592
Avi Kivity6aa8b732006-12-10 02:21:36 -08005593 if (exit_reason < kvm_vmx_max_exit_handlers
5594 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03005595 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005596 else {
Avi Kivity851ba692009-08-24 11:10:17 +03005597 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5598 vcpu->run->hw.hardware_exit_reason = exit_reason;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005599 }
5600 return 0;
5601}
5602
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005603static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005604{
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005605 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005606 vmcs_write32(TPR_THRESHOLD, 0);
5607 return;
5608 }
5609
Gleb Natapov95ba8273132009-04-21 17:45:08 +03005610 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005611}
5612
Avi Kivity51aa01d2010-07-20 14:31:20 +03005613static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03005614{
Avi Kivity00eba012011-03-07 17:24:54 +02005615 u32 exit_intr_info;
5616
5617 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
5618 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
5619 return;
5620
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005621 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivity00eba012011-03-07 17:24:54 +02005622 exit_intr_info = vmx->exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08005623
5624 /* Handle machine checks before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005625 if (is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08005626 kvm_machine_check();
5627
Gleb Natapov20f65982009-05-11 13:35:55 +03005628 /* We need to handle NMIs before interrupts are enabled */
Avi Kivity00eba012011-03-07 17:24:54 +02005629 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005630 (exit_intr_info & INTR_INFO_VALID_MASK)) {
5631 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03005632 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08005633 kvm_after_handle_nmi(&vmx->vcpu);
5634 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03005635}
Gleb Natapov20f65982009-05-11 13:35:55 +03005636
Avi Kivity51aa01d2010-07-20 14:31:20 +03005637static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
5638{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005639 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03005640 bool unblock_nmi;
5641 u8 vector;
5642 bool idtv_info_valid;
5643
5644 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03005645
Avi Kivitycf393f72008-07-01 16:20:21 +03005646 if (cpu_has_virtual_nmis()) {
Avi Kivity9d58b932011-03-07 16:52:07 +02005647 if (vmx->nmi_known_unmasked)
5648 return;
Avi Kivityc5ca8e52011-03-07 17:37:37 +02005649 /*
5650 * Can't use vmx->exit_intr_info since we're not sure what
5651 * the exit reason is.
5652 */
5653 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Avi Kivitycf393f72008-07-01 16:20:21 +03005654 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
5655 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
5656 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005657 * SDM 3: 27.7.1.2 (September 2008)
Avi Kivitycf393f72008-07-01 16:20:21 +03005658 * Re-set bit "block by NMI" before VM entry if vmexit caused by
5659 * a guest IRET fault.
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005660 * SDM 3: 23.2.2 (September 2008)
5661 * Bit 12 is undefined in any of the following cases:
5662 * If the VM exit sets the valid bit in the IDT-vectoring
5663 * information field.
5664 * If the VM exit is due to a double fault.
Avi Kivitycf393f72008-07-01 16:20:21 +03005665 */
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005666 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
5667 vector != DF_VECTOR && !idtv_info_valid)
Avi Kivitycf393f72008-07-01 16:20:21 +03005668 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5669 GUEST_INTR_STATE_NMI);
Avi Kivity9d58b932011-03-07 16:52:07 +02005670 else
5671 vmx->nmi_known_unmasked =
5672 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
5673 & GUEST_INTR_STATE_NMI);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005674 } else if (unlikely(vmx->soft_vnmi_blocked))
5675 vmx->vnmi_blocked_time +=
5676 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
Avi Kivity51aa01d2010-07-20 14:31:20 +03005677}
5678
Avi Kivity83422e12010-07-20 14:43:23 +03005679static void __vmx_complete_interrupts(struct vcpu_vmx *vmx,
5680 u32 idt_vectoring_info,
5681 int instr_len_field,
5682 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03005683{
Avi Kivity51aa01d2010-07-20 14:31:20 +03005684 u8 vector;
5685 int type;
5686 bool idtv_info_valid;
5687
5688 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03005689
Gleb Natapov37b96e92009-03-30 16:03:13 +03005690 vmx->vcpu.arch.nmi_injected = false;
5691 kvm_clear_exception_queue(&vmx->vcpu);
5692 kvm_clear_interrupt_queue(&vmx->vcpu);
5693
5694 if (!idtv_info_valid)
5695 return;
5696
Avi Kivity3842d132010-07-27 12:30:24 +03005697 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
5698
Avi Kivity668f6122008-07-02 09:28:55 +03005699 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
5700 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03005701
Gleb Natapov64a7ec02009-03-30 16:03:29 +03005702 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03005703 case INTR_TYPE_NMI_INTR:
5704 vmx->vcpu.arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03005705 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03005706 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03005707 * Clear bit "block by NMI" before VM entry if a NMI
5708 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03005709 */
Avi Kivity654f06f2011-03-23 15:02:47 +02005710 vmx_set_nmi_mask(&vmx->vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005711 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03005712 case INTR_TYPE_SOFT_EXCEPTION:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005713 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005714 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005715 /* fall through */
5716 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03005717 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03005718 u32 err = vmcs_read32(error_code_field);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005719 kvm_queue_exception_e(&vmx->vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03005720 } else
5721 kvm_queue_exception(&vmx->vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005722 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005723 case INTR_TYPE_SOFT_INTR:
5724 vmx->vcpu.arch.event_exit_inst_len =
Avi Kivity83422e12010-07-20 14:43:23 +03005725 vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005726 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03005727 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005728 kvm_queue_interrupt(&vmx->vcpu, vector,
5729 type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03005730 break;
5731 default:
5732 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03005733 }
Avi Kivitycf393f72008-07-01 16:20:21 +03005734}
5735
Avi Kivity83422e12010-07-20 14:43:23 +03005736static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
5737{
5738 __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info,
5739 VM_EXIT_INSTRUCTION_LEN,
5740 IDT_VECTORING_ERROR_CODE);
5741}
5742
Avi Kivityb463a6f2010-07-20 15:06:17 +03005743static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
5744{
5745 __vmx_complete_interrupts(to_vmx(vcpu),
5746 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
5747 VM_ENTRY_INSTRUCTION_LEN,
5748 VM_ENTRY_EXCEPTION_ERROR_CODE);
5749
5750 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
5751}
5752
Avi Kivityc8019492008-07-14 14:44:59 +03005753#ifdef CONFIG_X86_64
5754#define R "r"
5755#define Q "q"
5756#else
5757#define R "e"
5758#define Q "l"
5759#endif
5760
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08005761static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005762{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005763 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity104f2262010-11-18 13:12:52 +02005764
5765 /* Record the guest's net vcpu time for enforced NMI injections. */
5766 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
5767 vmx->entry_time = ktime_get();
5768
5769 /* Don't enter VMX if guest state is invalid, let the exit handler
5770 start emulation until we arrive back to a valid state */
5771 if (vmx->emulation_required && emulate_invalid_guest_state)
5772 return;
5773
5774 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
5775 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
5776 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
5777 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
5778
5779 /* When single-stepping over STI and MOV SS, we must clear the
5780 * corresponding interruptibility bits in the guest state. Otherwise
5781 * vmentry fails as it then expects bit 14 (BS) in pending debug
5782 * exceptions being set, but that's not correct for the guest debugging
5783 * case. */
5784 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
5785 vmx_set_interrupt_shadow(vcpu, 0);
5786
Nadav Har'Eld462b812011-05-24 15:26:10 +03005787 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02005788 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08005789 /* Store host registers */
Avi Kivityc8019492008-07-14 14:44:59 +03005790 "push %%"R"dx; push %%"R"bp;"
Avi Kivity40712fa2011-01-06 18:09:12 +02005791 "push %%"R"cx \n\t" /* placeholder for guest rcx */
Avi Kivityc8019492008-07-14 14:44:59 +03005792 "push %%"R"cx \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03005793 "cmp %%"R"sp, %c[host_rsp](%0) \n\t"
5794 "je 1f \n\t"
5795 "mov %%"R"sp, %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005796 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03005797 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03005798 /* Reload cr2 if changed */
5799 "mov %c[cr2](%0), %%"R"ax \n\t"
5800 "mov %%cr2, %%"R"dx \n\t"
5801 "cmp %%"R"ax, %%"R"dx \n\t"
5802 "je 2f \n\t"
5803 "mov %%"R"ax, %%cr2 \n\t"
5804 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005805 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02005806 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005807 /* Load guest registers. Don't clobber flags. */
Avi Kivityc8019492008-07-14 14:44:59 +03005808 "mov %c[rax](%0), %%"R"ax \n\t"
5809 "mov %c[rbx](%0), %%"R"bx \n\t"
5810 "mov %c[rdx](%0), %%"R"dx \n\t"
5811 "mov %c[rsi](%0), %%"R"si \n\t"
5812 "mov %c[rdi](%0), %%"R"di \n\t"
5813 "mov %c[rbp](%0), %%"R"bp \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005814#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02005815 "mov %c[r8](%0), %%r8 \n\t"
5816 "mov %c[r9](%0), %%r9 \n\t"
5817 "mov %c[r10](%0), %%r10 \n\t"
5818 "mov %c[r11](%0), %%r11 \n\t"
5819 "mov %c[r12](%0), %%r12 \n\t"
5820 "mov %c[r13](%0), %%r13 \n\t"
5821 "mov %c[r14](%0), %%r14 \n\t"
5822 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005823#endif
Avi Kivityc8019492008-07-14 14:44:59 +03005824 "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */
5825
Avi Kivity6aa8b732006-12-10 02:21:36 -08005826 /* Enter guest mode */
Avi Kivitycd2276a2007-05-14 20:41:13 +03005827 "jne .Llaunched \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005828 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03005829 "jmp .Lkvm_vmx_return \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03005830 ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
Avi Kivitycd2276a2007-05-14 20:41:13 +03005831 ".Lkvm_vmx_return: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08005832 /* Save guest registers, load host registers, keep flags */
Avi Kivity40712fa2011-01-06 18:09:12 +02005833 "mov %0, %c[wordsize](%%"R"sp) \n\t"
5834 "pop %0 \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03005835 "mov %%"R"ax, %c[rax](%0) \n\t"
5836 "mov %%"R"bx, %c[rbx](%0) \n\t"
Avi Kivity1c696d02011-01-06 18:09:11 +02005837 "pop"Q" %c[rcx](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03005838 "mov %%"R"dx, %c[rdx](%0) \n\t"
5839 "mov %%"R"si, %c[rsi](%0) \n\t"
5840 "mov %%"R"di, %c[rdi](%0) \n\t"
5841 "mov %%"R"bp, %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005842#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02005843 "mov %%r8, %c[r8](%0) \n\t"
5844 "mov %%r9, %c[r9](%0) \n\t"
5845 "mov %%r10, %c[r10](%0) \n\t"
5846 "mov %%r11, %c[r11](%0) \n\t"
5847 "mov %%r12, %c[r12](%0) \n\t"
5848 "mov %%r13, %c[r13](%0) \n\t"
5849 "mov %%r14, %c[r14](%0) \n\t"
5850 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08005851#endif
Avi Kivityc8019492008-07-14 14:44:59 +03005852 "mov %%cr2, %%"R"ax \n\t"
5853 "mov %%"R"ax, %c[cr2](%0) \n\t"
5854
Avi Kivity1c696d02011-01-06 18:09:11 +02005855 "pop %%"R"bp; pop %%"R"dx \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02005856 "setbe %c[fail](%0) \n\t"
5857 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03005858 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02005859 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03005860 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005861 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
5862 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
5863 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
5864 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
5865 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
5866 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
5867 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005868#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005869 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
5870 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
5871 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
5872 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
5873 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
5874 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
5875 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
5876 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08005877#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02005878 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
5879 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02005880 : "cc", "memory"
Jan Kiszka07d6f552010-09-28 16:37:42 +02005881 , R"ax", R"bx", R"di", R"si"
Laurent Vivierc2036302007-10-25 14:18:52 +02005882#ifdef CONFIG_X86_64
Laurent Vivierc2036302007-10-25 14:18:52 +02005883 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
5884#endif
5885 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08005886
Avi Kivity6de4f3ad2009-05-31 22:58:47 +03005887 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02005888 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivity69c73022011-03-07 15:26:44 +02005889 | (1 << VCPU_EXREG_CPL)
Avi Kivityaff48ba2010-12-05 18:56:11 +02005890 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03005891 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02005892 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03005893 vcpu->arch.regs_dirty = 0;
5894
Avi Kivity1155f762007-11-22 11:30:47 +02005895 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
5896
Mike Dayd77c26f2007-10-08 09:02:08 -04005897 asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS));
Nadav Har'Eld462b812011-05-24 15:26:10 +03005898 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02005899
Avi Kivity51aa01d2010-07-20 14:31:20 +03005900 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03005901
5902 vmx_complete_atomic_exit(vmx);
5903 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03005904 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005905}
5906
Avi Kivityc8019492008-07-14 14:44:59 +03005907#undef R
5908#undef Q
5909
Avi Kivity6aa8b732006-12-10 02:21:36 -08005910static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
5911{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005912 struct vcpu_vmx *vmx = to_vmx(vcpu);
5913
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005914 free_vpid(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03005915 free_nested(vmx);
Nadav Har'Eld462b812011-05-24 15:26:10 +03005916 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005917 kfree(vmx->guest_msrs);
5918 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10005919 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005920}
5921
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005922static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005923{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005924 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10005925 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03005926 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005927
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005928 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005929 return ERR_PTR(-ENOMEM);
5930
Sheng Yang2384d2b2008-01-17 15:14:33 +08005931 allocate_vpid(vmx);
5932
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005933 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
5934 if (err)
5935 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005936
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005937 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02005938 err = -ENOMEM;
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005939 if (!vmx->guest_msrs) {
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005940 goto uninit_vcpu;
5941 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08005942
Nadav Har'Eld462b812011-05-24 15:26:10 +03005943 vmx->loaded_vmcs = &vmx->vmcs01;
5944 vmx->loaded_vmcs->vmcs = alloc_vmcs();
5945 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005946 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03005947 if (!vmm_exclusive)
5948 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
5949 loaded_vmcs_init(vmx->loaded_vmcs);
5950 if (!vmm_exclusive)
5951 kvm_cpu_vmxoff();
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005952
Avi Kivity15ad7142007-07-11 18:17:21 +03005953 cpu = get_cpu();
5954 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10005955 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10005956 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005957 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03005958 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005959 if (err)
5960 goto free_vmcs;
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02005961 if (vm_need_virtualize_apic_accesses(kvm))
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02005962 err = alloc_apic_access_page(kvm);
5963 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02005964 goto free_vmcs;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005965
Sheng Yangb927a3c2009-07-21 10:42:48 +08005966 if (enable_ept) {
5967 if (!kvm->arch.ept_identity_map_addr)
5968 kvm->arch.ept_identity_map_addr =
5969 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Gleb Natapov93ea5382011-02-21 12:07:59 +02005970 err = -ENOMEM;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005971 if (alloc_identity_pagetable(kvm) != 0)
5972 goto free_vmcs;
Gleb Natapov93ea5382011-02-21 12:07:59 +02005973 if (!init_rmode_identity_map(kvm))
5974 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08005975 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08005976
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03005977 vmx->nested.current_vmptr = -1ull;
5978 vmx->nested.current_vmcs12 = NULL;
5979
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005980 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08005981
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005982free_vmcs:
Nadav Har'Eld462b812011-05-24 15:26:10 +03005983 free_vmcs(vmx->loaded_vmcs->vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005984free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005985 kfree(vmx->guest_msrs);
5986uninit_vcpu:
5987 kvm_vcpu_uninit(&vmx->vcpu);
5988free_vcpu:
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08005989 free_vpid(vmx);
Rusty Russella4770342007-08-01 14:46:11 +10005990 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10005991 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005992}
5993
Yang, Sheng002c7f72007-07-31 14:23:01 +03005994static void __init vmx_check_processor_compat(void *rtn)
5995{
5996 struct vmcs_config vmcs_conf;
5997
5998 *(int *)rtn = 0;
5999 if (setup_vmcs_config(&vmcs_conf) < 0)
6000 *(int *)rtn = -EIO;
6001 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
6002 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
6003 smp_processor_id());
6004 *(int *)rtn = -EIO;
6005 }
6006}
6007
Sheng Yang67253af2008-04-25 10:20:22 +08006008static int get_ept_level(void)
6009{
6010 return VMX_EPT_DEFAULT_GAW + 1;
6011}
6012
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006013static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08006014{
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006015 u64 ret;
6016
Sheng Yang522c68c2009-04-27 20:35:43 +08006017 /* For VT-d and EPT combination
6018 * 1. MMIO: always map as UC
6019 * 2. EPT with VT-d:
6020 * a. VT-d without snooping control feature: can't guarantee the
6021 * result, try to trust guest.
6022 * b. VT-d with snooping control feature: snooping control feature of
6023 * VT-d engine can guarantee the cache correctness. Just set it
6024 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08006025 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08006026 * consistent with host MTRR
6027 */
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006028 if (is_mmio)
6029 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang522c68c2009-04-27 20:35:43 +08006030 else if (vcpu->kvm->arch.iommu_domain &&
6031 !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY))
6032 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
6033 VMX_EPT_MT_EPTE_SHIFT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006034 else
Sheng Yang522c68c2009-04-27 20:35:43 +08006035 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
Sheng Yanga19a6d12010-02-09 16:41:53 +08006036 | VMX_EPT_IPAT_BIT;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006037
6038 return ret;
Sheng Yang64d4d522008-10-09 16:01:57 +08006039}
6040
Avi Kivityf4c9e872009-12-28 16:06:35 +02006041#define _ER(x) { EXIT_REASON_##x, #x }
6042
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006043static const struct trace_print_flags vmx_exit_reasons_str[] = {
Avi Kivityf4c9e872009-12-28 16:06:35 +02006044 _ER(EXCEPTION_NMI),
6045 _ER(EXTERNAL_INTERRUPT),
6046 _ER(TRIPLE_FAULT),
6047 _ER(PENDING_INTERRUPT),
6048 _ER(NMI_WINDOW),
6049 _ER(TASK_SWITCH),
6050 _ER(CPUID),
6051 _ER(HLT),
6052 _ER(INVLPG),
6053 _ER(RDPMC),
6054 _ER(RDTSC),
6055 _ER(VMCALL),
6056 _ER(VMCLEAR),
6057 _ER(VMLAUNCH),
6058 _ER(VMPTRLD),
6059 _ER(VMPTRST),
6060 _ER(VMREAD),
6061 _ER(VMRESUME),
6062 _ER(VMWRITE),
6063 _ER(VMOFF),
6064 _ER(VMON),
6065 _ER(CR_ACCESS),
6066 _ER(DR_ACCESS),
6067 _ER(IO_INSTRUCTION),
6068 _ER(MSR_READ),
6069 _ER(MSR_WRITE),
6070 _ER(MWAIT_INSTRUCTION),
6071 _ER(MONITOR_INSTRUCTION),
6072 _ER(PAUSE_INSTRUCTION),
6073 _ER(MCE_DURING_VMENTRY),
6074 _ER(TPR_BELOW_THRESHOLD),
6075 _ER(APIC_ACCESS),
6076 _ER(EPT_VIOLATION),
6077 _ER(EPT_MISCONFIG),
6078 _ER(WBINVD),
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006079 { -1, NULL }
6080};
6081
Avi Kivityf4c9e872009-12-28 16:06:35 +02006082#undef _ER
6083
Sheng Yang17cc3932010-01-05 19:02:27 +08006084static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02006085{
Sheng Yang878403b2010-01-05 19:02:29 +08006086 if (enable_ept && !cpu_has_vmx_ept_1g_page())
6087 return PT_DIRECTORY_LEVEL;
6088 else
6089 /* For shadow and EPT supported 1GB page */
6090 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02006091}
6092
Sheng Yang0e851882009-12-18 16:48:46 +08006093static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
6094{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006095 struct kvm_cpuid_entry2 *best;
6096 struct vcpu_vmx *vmx = to_vmx(vcpu);
6097 u32 exec_control;
6098
6099 vmx->rdtscp_enabled = false;
6100 if (vmx_rdtscp_supported()) {
6101 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6102 if (exec_control & SECONDARY_EXEC_RDTSCP) {
6103 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
6104 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
6105 vmx->rdtscp_enabled = true;
6106 else {
6107 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6108 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
6109 exec_control);
6110 }
6111 }
6112 }
Sheng Yang0e851882009-12-18 16:48:46 +08006113}
6114
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006115static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
6116{
6117}
6118
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03006119/*
6120 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
6121 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
6122 * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2
6123 * guest in a way that will both be appropriate to L1's requests, and our
6124 * needs. In addition to modifying the active vmcs (which is vmcs02), this
6125 * function also has additional necessary side-effects, like setting various
6126 * vcpu->arch fields.
6127 */
6128static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6129{
6130 struct vcpu_vmx *vmx = to_vmx(vcpu);
6131 u32 exec_control;
6132
6133 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
6134 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
6135 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
6136 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
6137 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
6138 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
6139 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
6140 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
6141 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
6142 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
6143 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
6144 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
6145 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
6146 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
6147 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
6148 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
6149 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
6150 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
6151 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
6152 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
6153 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
6154 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
6155 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
6156 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
6157 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
6158 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
6159 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
6160 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
6161 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
6162 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
6163 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
6164 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
6165 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
6166 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
6167 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
6168 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
6169
6170 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
6171 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
6172 vmcs12->vm_entry_intr_info_field);
6173 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
6174 vmcs12->vm_entry_exception_error_code);
6175 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
6176 vmcs12->vm_entry_instruction_len);
6177 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
6178 vmcs12->guest_interruptibility_info);
6179 vmcs_write32(GUEST_ACTIVITY_STATE, vmcs12->guest_activity_state);
6180 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
6181 vmcs_writel(GUEST_DR7, vmcs12->guest_dr7);
6182 vmcs_writel(GUEST_RFLAGS, vmcs12->guest_rflags);
6183 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
6184 vmcs12->guest_pending_dbg_exceptions);
6185 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
6186 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
6187
6188 vmcs_write64(VMCS_LINK_POINTER, -1ull);
6189
6190 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL,
6191 (vmcs_config.pin_based_exec_ctrl |
6192 vmcs12->pin_based_vm_exec_control));
6193
6194 /*
6195 * Whether page-faults are trapped is determined by a combination of
6196 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
6197 * If enable_ept, L0 doesn't care about page faults and we should
6198 * set all of these to L1's desires. However, if !enable_ept, L0 does
6199 * care about (at least some) page faults, and because it is not easy
6200 * (if at all possible?) to merge L0 and L1's desires, we simply ask
6201 * to exit on each and every L2 page fault. This is done by setting
6202 * MASK=MATCH=0 and (see below) EB.PF=1.
6203 * Note that below we don't need special code to set EB.PF beyond the
6204 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
6205 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
6206 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
6207 *
6208 * A problem with this approach (when !enable_ept) is that L1 may be
6209 * injected with more page faults than it asked for. This could have
6210 * caused problems, but in practice existing hypervisors don't care.
6211 * To fix this, we will need to emulate the PFEC checking (on the L1
6212 * page tables), using walk_addr(), when injecting PFs to L1.
6213 */
6214 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
6215 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
6216 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
6217 enable_ept ? vmcs12->page_fault_error_code_match : 0);
6218
6219 if (cpu_has_secondary_exec_ctrls()) {
6220 u32 exec_control = vmx_secondary_exec_control(vmx);
6221 if (!vmx->rdtscp_enabled)
6222 exec_control &= ~SECONDARY_EXEC_RDTSCP;
6223 /* Take the following fields only from vmcs12 */
6224 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6225 if (nested_cpu_has(vmcs12,
6226 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
6227 exec_control |= vmcs12->secondary_vm_exec_control;
6228
6229 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
6230 /*
6231 * Translate L1 physical address to host physical
6232 * address for vmcs02. Keep the page pinned, so this
6233 * physical address remains valid. We keep a reference
6234 * to it so we can release it later.
6235 */
6236 if (vmx->nested.apic_access_page) /* shouldn't happen */
6237 nested_release_page(vmx->nested.apic_access_page);
6238 vmx->nested.apic_access_page =
6239 nested_get_page(vcpu, vmcs12->apic_access_addr);
6240 /*
6241 * If translation failed, no matter: This feature asks
6242 * to exit when accessing the given address, and if it
6243 * can never be accessed, this feature won't do
6244 * anything anyway.
6245 */
6246 if (!vmx->nested.apic_access_page)
6247 exec_control &=
6248 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6249 else
6250 vmcs_write64(APIC_ACCESS_ADDR,
6251 page_to_phys(vmx->nested.apic_access_page));
6252 }
6253
6254 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
6255 }
6256
6257
6258 /*
6259 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
6260 * Some constant fields are set here by vmx_set_constant_host_state().
6261 * Other fields are different per CPU, and will be set later when
6262 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
6263 */
6264 vmx_set_constant_host_state();
6265
6266 /*
6267 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
6268 * entry, but only if the current (host) sp changed from the value
6269 * we wrote last (vmx->host_rsp). This cache is no longer relevant
6270 * if we switch vmcs, and rather than hold a separate cache per vmcs,
6271 * here we just force the write to happen on entry.
6272 */
6273 vmx->host_rsp = 0;
6274
6275 exec_control = vmx_exec_control(vmx); /* L0's desires */
6276 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
6277 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
6278 exec_control &= ~CPU_BASED_TPR_SHADOW;
6279 exec_control |= vmcs12->cpu_based_vm_exec_control;
6280 /*
6281 * Merging of IO and MSR bitmaps not currently supported.
6282 * Rather, exit every time.
6283 */
6284 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
6285 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
6286 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
6287
6288 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
6289
6290 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
6291 * bitwise-or of what L1 wants to trap for L2, and what we want to
6292 * trap. Note that CR0.TS also needs updating - we do this later.
6293 */
6294 update_exception_bitmap(vcpu);
6295 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
6296 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6297
6298 /* Note: IA32_MODE, LOAD_IA32_EFER are modified by vmx_set_efer below */
6299 vmcs_write32(VM_EXIT_CONTROLS,
6300 vmcs12->vm_exit_controls | vmcs_config.vmexit_ctrl);
6301 vmcs_write32(VM_ENTRY_CONTROLS, vmcs12->vm_entry_controls |
6302 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
6303
6304 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)
6305 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
6306 else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
6307 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
6308
6309
6310 set_cr4_guest_host_mask(vmx);
6311
6312 vmcs_write64(TSC_OFFSET,
6313 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
6314
6315 if (enable_vpid) {
6316 /*
6317 * Trivially support vpid by letting L2s share their parent
6318 * L1's vpid. TODO: move to a more elaborate solution, giving
6319 * each L2 its own vpid and exposing the vpid feature to L1.
6320 */
6321 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
6322 vmx_flush_tlb(vcpu);
6323 }
6324
6325 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
6326 vcpu->arch.efer = vmcs12->guest_ia32_efer;
6327 if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
6328 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6329 else
6330 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6331 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
6332 vmx_set_efer(vcpu, vcpu->arch.efer);
6333
6334 /*
6335 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
6336 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
6337 * The CR0_READ_SHADOW is what L2 should have expected to read given
6338 * the specifications by L1; It's not enough to take
6339 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
6340 * have more bits than L1 expected.
6341 */
6342 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
6343 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
6344
6345 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
6346 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
6347
6348 /* shadow page tables on either EPT or shadow page tables */
6349 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
6350 kvm_mmu_reset_context(vcpu);
6351
6352 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
6353 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
6354}
6355
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006356/*
6357 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
6358 * for running an L2 nested guest.
6359 */
6360static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
6361{
6362 struct vmcs12 *vmcs12;
6363 struct vcpu_vmx *vmx = to_vmx(vcpu);
6364 int cpu;
6365 struct loaded_vmcs *vmcs02;
6366
6367 if (!nested_vmx_check_permission(vcpu) ||
6368 !nested_vmx_check_vmcs12(vcpu))
6369 return 1;
6370
6371 skip_emulated_instruction(vcpu);
6372 vmcs12 = get_vmcs12(vcpu);
6373
Nadav Har'El7c177932011-05-25 23:12:04 +03006374 /*
6375 * The nested entry process starts with enforcing various prerequisites
6376 * on vmcs12 as required by the Intel SDM, and act appropriately when
6377 * they fail: As the SDM explains, some conditions should cause the
6378 * instruction to fail, while others will cause the instruction to seem
6379 * to succeed, but return an EXIT_REASON_INVALID_STATE.
6380 * To speed up the normal (success) code path, we should avoid checking
6381 * for misconfigurations which will anyway be caught by the processor
6382 * when using the merged vmcs02.
6383 */
6384 if (vmcs12->launch_state == launch) {
6385 nested_vmx_failValid(vcpu,
6386 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
6387 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
6388 return 1;
6389 }
6390
6391 if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) &&
6392 !IS_ALIGNED(vmcs12->msr_bitmap, PAGE_SIZE)) {
6393 /*TODO: Also verify bits beyond physical address width are 0*/
6394 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6395 return 1;
6396 }
6397
6398 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
6399 !IS_ALIGNED(vmcs12->apic_access_addr, PAGE_SIZE)) {
6400 /*TODO: Also verify bits beyond physical address width are 0*/
6401 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6402 return 1;
6403 }
6404
6405 if (vmcs12->vm_entry_msr_load_count > 0 ||
6406 vmcs12->vm_exit_msr_load_count > 0 ||
6407 vmcs12->vm_exit_msr_store_count > 0) {
6408 if (printk_ratelimit())
6409 printk(KERN_WARNING
6410 "%s: VMCS MSR_{LOAD,STORE} unsupported\n", __func__);
6411 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6412 return 1;
6413 }
6414
6415 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
6416 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high) ||
6417 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
6418 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) ||
6419 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
6420 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) ||
6421 !vmx_control_verify(vmcs12->vm_exit_controls,
6422 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high) ||
6423 !vmx_control_verify(vmcs12->vm_entry_controls,
6424 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high))
6425 {
6426 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
6427 return 1;
6428 }
6429
6430 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6431 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6432 nested_vmx_failValid(vcpu,
6433 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
6434 return 1;
6435 }
6436
6437 if (((vmcs12->guest_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
6438 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
6439 nested_vmx_entry_failure(vcpu, vmcs12,
6440 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
6441 return 1;
6442 }
6443 if (vmcs12->vmcs_link_pointer != -1ull) {
6444 nested_vmx_entry_failure(vcpu, vmcs12,
6445 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
6446 return 1;
6447 }
6448
6449 /*
6450 * We're finally done with prerequisite checking, and can start with
6451 * the nested entry.
6452 */
6453
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03006454 vmcs02 = nested_get_current_vmcs02(vmx);
6455 if (!vmcs02)
6456 return -ENOMEM;
6457
6458 enter_guest_mode(vcpu);
6459
6460 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
6461
6462 cpu = get_cpu();
6463 vmx->loaded_vmcs = vmcs02;
6464 vmx_vcpu_put(vcpu);
6465 vmx_vcpu_load(vcpu, cpu);
6466 vcpu->cpu = cpu;
6467 put_cpu();
6468
6469 vmcs12->launch_state = 1;
6470
6471 prepare_vmcs02(vcpu, vmcs12);
6472
6473 /*
6474 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
6475 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
6476 * returned as far as L1 is concerned. It will only return (and set
6477 * the success flag) when L2 exits (see nested_vmx_vmexit()).
6478 */
6479 return 1;
6480}
6481
Nadav Har'El4704d0b2011-05-25 23:11:34 +03006482/*
6483 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
6484 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
6485 * This function returns the new value we should put in vmcs12.guest_cr0.
6486 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
6487 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
6488 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
6489 * didn't trap the bit, because if L1 did, so would L0).
6490 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
6491 * been modified by L2, and L1 knows it. So just leave the old value of
6492 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
6493 * isn't relevant, because if L0 traps this bit it can set it to anything.
6494 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
6495 * changed these bits, and therefore they need to be updated, but L0
6496 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
6497 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
6498 */
6499static inline unsigned long
6500vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6501{
6502 return
6503 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
6504 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
6505 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
6506 vcpu->arch.cr0_guest_owned_bits));
6507}
6508
6509static inline unsigned long
6510vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6511{
6512 return
6513 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
6514 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
6515 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
6516 vcpu->arch.cr4_guest_owned_bits));
6517}
6518
6519/*
6520 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
6521 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
6522 * and this function updates it to reflect the changes to the guest state while
6523 * L2 was running (and perhaps made some exits which were handled directly by L0
6524 * without going back to L1), and to reflect the exit reason.
6525 * Note that we do not have to copy here all VMCS fields, just those that
6526 * could have changed by the L2 guest or the exit - i.e., the guest-state and
6527 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
6528 * which already writes to vmcs12 directly.
6529 */
6530void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6531{
6532 /* update guest state fields: */
6533 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
6534 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
6535
6536 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
6537 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
6538 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
6539 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
6540
6541 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
6542 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
6543 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
6544 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
6545 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
6546 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
6547 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
6548 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
6549 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
6550 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
6551 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
6552 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
6553 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
6554 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
6555 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
6556 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
6557 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
6558 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
6559 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
6560 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
6561 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
6562 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
6563 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
6564 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
6565 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
6566 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
6567 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
6568 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
6569 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
6570 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
6571 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
6572 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
6573 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
6574 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
6575 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
6576 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
6577
6578 vmcs12->guest_activity_state = vmcs_read32(GUEST_ACTIVITY_STATE);
6579 vmcs12->guest_interruptibility_info =
6580 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
6581 vmcs12->guest_pending_dbg_exceptions =
6582 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
6583
6584 /* TODO: These cannot have changed unless we have MSR bitmaps and
6585 * the relevant bit asks not to trap the change */
6586 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
6587 if (vmcs12->vm_entry_controls & VM_EXIT_SAVE_IA32_PAT)
6588 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
6589 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
6590 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
6591 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
6592
6593 /* update exit information fields: */
6594
6595 vmcs12->vm_exit_reason = vmcs_read32(VM_EXIT_REASON);
6596 vmcs12->exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6597
6598 vmcs12->vm_exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6599 vmcs12->vm_exit_intr_error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
6600 vmcs12->idt_vectoring_info_field =
6601 vmcs_read32(IDT_VECTORING_INFO_FIELD);
6602 vmcs12->idt_vectoring_error_code =
6603 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6604 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6605 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
6606
6607 /* clear vm-entry fields which are to be cleared on exit */
6608 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
6609 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
6610}
6611
6612/*
6613 * A part of what we need to when the nested L2 guest exits and we want to
6614 * run its L1 parent, is to reset L1's guest state to the host state specified
6615 * in vmcs12.
6616 * This function is to be called not only on normal nested exit, but also on
6617 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
6618 * Failures During or After Loading Guest State").
6619 * This function should be called when the active VMCS is L1's (vmcs01).
6620 */
6621void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
6622{
6623 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
6624 vcpu->arch.efer = vmcs12->host_ia32_efer;
6625 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
6626 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
6627 else
6628 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
6629 vmx_set_efer(vcpu, vcpu->arch.efer);
6630
6631 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
6632 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
6633 /*
6634 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
6635 * actually changed, because it depends on the current state of
6636 * fpu_active (which may have changed).
6637 * Note that vmx_set_cr0 refers to efer set above.
6638 */
6639 kvm_set_cr0(vcpu, vmcs12->host_cr0);
6640 /*
6641 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
6642 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
6643 * but we also need to update cr0_guest_host_mask and exception_bitmap.
6644 */
6645 update_exception_bitmap(vcpu);
6646 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
6647 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
6648
6649 /*
6650 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
6651 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
6652 */
6653 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
6654 kvm_set_cr4(vcpu, vmcs12->host_cr4);
6655
6656 /* shadow page tables on either EPT or shadow page tables */
6657 kvm_set_cr3(vcpu, vmcs12->host_cr3);
6658 kvm_mmu_reset_context(vcpu);
6659
6660 if (enable_vpid) {
6661 /*
6662 * Trivially support vpid by letting L2s share their parent
6663 * L1's vpid. TODO: move to a more elaborate solution, giving
6664 * each L2 its own vpid and exposing the vpid feature to L1.
6665 */
6666 vmx_flush_tlb(vcpu);
6667 }
6668
6669
6670 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
6671 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
6672 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
6673 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
6674 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
6675 vmcs_writel(GUEST_TR_BASE, vmcs12->host_tr_base);
6676 vmcs_writel(GUEST_GS_BASE, vmcs12->host_gs_base);
6677 vmcs_writel(GUEST_FS_BASE, vmcs12->host_fs_base);
6678 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->host_es_selector);
6679 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->host_cs_selector);
6680 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->host_ss_selector);
6681 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->host_ds_selector);
6682 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->host_fs_selector);
6683 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->host_gs_selector);
6684 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->host_tr_selector);
6685
6686 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT)
6687 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
6688 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
6689 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
6690 vmcs12->host_ia32_perf_global_ctrl);
6691}
6692
6693/*
6694 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
6695 * and modify vmcs12 to make it see what it would expect to see there if
6696 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
6697 */
6698static void nested_vmx_vmexit(struct kvm_vcpu *vcpu)
6699{
6700 struct vcpu_vmx *vmx = to_vmx(vcpu);
6701 int cpu;
6702 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6703
6704 leave_guest_mode(vcpu);
6705 prepare_vmcs12(vcpu, vmcs12);
6706
6707 cpu = get_cpu();
6708 vmx->loaded_vmcs = &vmx->vmcs01;
6709 vmx_vcpu_put(vcpu);
6710 vmx_vcpu_load(vcpu, cpu);
6711 vcpu->cpu = cpu;
6712 put_cpu();
6713
6714 /* if no vmcs02 cache requested, remove the one we used */
6715 if (VMCS02_POOL_SIZE == 0)
6716 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
6717
6718 load_vmcs12_host_state(vcpu, vmcs12);
6719
6720 /* Update TSC_OFFSET if vmx_adjust_tsc_offset() was used while L2 ran */
6721 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
6722
6723 /* This is needed for same reason as it was needed in prepare_vmcs02 */
6724 vmx->host_rsp = 0;
6725
6726 /* Unpin physical memory we referred to in vmcs02 */
6727 if (vmx->nested.apic_access_page) {
6728 nested_release_page(vmx->nested.apic_access_page);
6729 vmx->nested.apic_access_page = 0;
6730 }
6731
6732 /*
6733 * Exiting from L2 to L1, we're now back to L1 which thinks it just
6734 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
6735 * success or failure flag accordingly.
6736 */
6737 if (unlikely(vmx->fail)) {
6738 vmx->fail = 0;
6739 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
6740 } else
6741 nested_vmx_succeed(vcpu);
6742}
6743
Nadav Har'El7c177932011-05-25 23:12:04 +03006744/*
6745 * L1's failure to enter L2 is a subset of a normal exit, as explained in
6746 * 23.7 "VM-entry failures during or after loading guest state" (this also
6747 * lists the acceptable exit-reason and exit-qualification parameters).
6748 * It should only be called before L2 actually succeeded to run, and when
6749 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
6750 */
6751static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
6752 struct vmcs12 *vmcs12,
6753 u32 reason, unsigned long qualification)
6754{
6755 load_vmcs12_host_state(vcpu, vmcs12);
6756 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
6757 vmcs12->exit_qualification = qualification;
6758 nested_vmx_succeed(vcpu);
6759}
6760
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006761static int vmx_check_intercept(struct kvm_vcpu *vcpu,
6762 struct x86_instruction_info *info,
6763 enum x86_intercept_stage stage)
6764{
6765 return X86EMUL_CONTINUE;
6766}
6767
Christian Ehrhardtcbdd1be2007-09-09 15:41:59 +03006768static struct kvm_x86_ops vmx_x86_ops = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08006769 .cpu_has_kvm_support = cpu_has_kvm_support,
6770 .disabled_by_bios = vmx_disabled_by_bios,
6771 .hardware_setup = hardware_setup,
6772 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +03006773 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006774 .hardware_enable = hardware_enable,
6775 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +08006776 .cpu_has_accelerated_tpr = report_flexpriority,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006777
6778 .vcpu_create = vmx_create_vcpu,
6779 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +03006780 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006781
Avi Kivity04d2cc72007-09-10 18:10:54 +03006782 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006783 .vcpu_load = vmx_vcpu_load,
6784 .vcpu_put = vmx_vcpu_put,
6785
6786 .set_guest_debug = set_guest_debug,
6787 .get_msr = vmx_get_msr,
6788 .set_msr = vmx_set_msr,
6789 .get_segment_base = vmx_get_segment_base,
6790 .get_segment = vmx_get_segment,
6791 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +02006792 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006793 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +02006794 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +02006795 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +03006796 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006797 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006798 .set_cr3 = vmx_set_cr3,
6799 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006800 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006801 .get_idt = vmx_get_idt,
6802 .set_idt = vmx_set_idt,
6803 .get_gdt = vmx_get_gdt,
6804 .set_gdt = vmx_set_gdt,
Gleb Natapov020df072010-04-13 10:05:23 +03006805 .set_dr7 = vmx_set_dr7,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03006806 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006807 .get_rflags = vmx_get_rflags,
6808 .set_rflags = vmx_set_rflags,
Avi Kivityebcbab42010-02-07 11:56:52 +02006809 .fpu_activate = vmx_fpu_activate,
Avi Kivity02daab22009-12-30 12:40:26 +02006810 .fpu_deactivate = vmx_fpu_deactivate,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006811
6812 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006813
Avi Kivity6aa8b732006-12-10 02:21:36 -08006814 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +02006815 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006816 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -04006817 .set_interrupt_shadow = vmx_set_interrupt_shadow,
6818 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +02006819 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +03006820 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006821 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +02006822 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +03006823 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +02006824 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006825 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +01006826 .get_nmi_mask = vmx_get_nmi_mask,
6827 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006828 .enable_nmi_window = enable_nmi_window,
6829 .enable_irq_window = enable_irq_window,
6830 .update_cr8_intercept = update_cr8_intercept,
Gleb Natapov95ba8273132009-04-21 17:45:08 +03006831
Izik Eiduscbc94022007-10-25 00:29:55 +02006832 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +08006833 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006834 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006835
Avi Kivity586f9602010-11-18 13:09:54 +02006836 .get_exit_info = vmx_get_exit_info,
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006837 .exit_reasons_str = vmx_exit_reasons_str,
Avi Kivity586f9602010-11-18 13:09:54 +02006838
Sheng Yang17cc3932010-01-05 19:02:27 +08006839 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +08006840
6841 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +08006842
6843 .rdtscp_supported = vmx_rdtscp_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +02006844
6845 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +08006846
6847 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -10006848
Joerg Roedel4051b182011-03-25 09:44:49 +01006849 .set_tsc_khz = vmx_set_tsc_khz,
Zachary Amsden99e3e302010-08-19 22:07:17 -10006850 .write_tsc_offset = vmx_write_tsc_offset,
Zachary Amsdene48672f2010-08-19 22:07:23 -10006851 .adjust_tsc_offset = vmx_adjust_tsc_offset,
Joerg Roedel857e4092011-03-25 09:44:50 +01006852 .compute_tsc_offset = vmx_compute_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02006853
6854 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +02006855
6856 .check_intercept = vmx_check_intercept,
Avi Kivity6aa8b732006-12-10 02:21:36 -08006857};
6858
6859static int __init vmx_init(void)
6860{
Avi Kivity26bb0982009-09-07 11:14:12 +03006861 int r, i;
6862
6863 rdmsrl_safe(MSR_EFER, &host_efer);
6864
6865 for (i = 0; i < NR_VMX_MSR; ++i)
6866 kvm_define_shared_msr(i, vmx_msr_index[i]);
He, Qingfdef3ad2007-04-30 09:45:24 +03006867
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006868 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03006869 if (!vmx_io_bitmap_a)
6870 return -ENOMEM;
6871
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006872 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
He, Qingfdef3ad2007-04-30 09:45:24 +03006873 if (!vmx_io_bitmap_b) {
6874 r = -ENOMEM;
6875 goto out;
6876 }
6877
Avi Kivity58972972009-02-24 22:26:47 +02006878 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
6879 if (!vmx_msr_bitmap_legacy) {
Sheng Yang25c5f222008-03-28 13:18:56 +08006880 r = -ENOMEM;
6881 goto out1;
6882 }
6883
Avi Kivity58972972009-02-24 22:26:47 +02006884 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
6885 if (!vmx_msr_bitmap_longmode) {
6886 r = -ENOMEM;
6887 goto out2;
6888 }
6889
He, Qingfdef3ad2007-04-30 09:45:24 +03006890 /*
6891 * Allow direct access to the PC debug port (it is often used for I/O
6892 * delays, but the vmexits simply slow things down).
6893 */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006894 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6895 clear_bit(0x80, vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03006896
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006897 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
He, Qingfdef3ad2007-04-30 09:45:24 +03006898
Avi Kivity58972972009-02-24 22:26:47 +02006899 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6900 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
Sheng Yang25c5f222008-03-28 13:18:56 +08006901
Sheng Yang2384d2b2008-01-17 15:14:33 +08006902 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6903
Avi Kivity0ee75be2010-04-28 15:39:01 +03006904 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
6905 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +03006906 if (r)
Avi Kivity58972972009-02-24 22:26:47 +02006907 goto out3;
Sheng Yang25c5f222008-03-28 13:18:56 +08006908
Avi Kivity58972972009-02-24 22:26:47 +02006909 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6910 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6911 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6912 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6913 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6914 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
He, Qingfdef3ad2007-04-30 09:45:24 +03006915
Avi Kivity089d0342009-03-23 18:26:32 +02006916 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08006917 bypass_guest_pf = 0;
Sheng Yang534e38b2008-09-08 15:12:30 +08006918 kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull,
Sheng Yang4b12f0d2009-04-27 20:35:42 +08006919 VMX_EPT_EXECUTABLE_MASK);
Sheng Yang5fdbcb92008-07-16 09:25:40 +08006920 kvm_enable_tdp();
6921 } else
6922 kvm_disable_tdp();
Sheng Yang14394422008-04-28 12:24:45 +08006923
Avi Kivityc7addb92007-09-16 18:58:32 +02006924 if (bypass_guest_pf)
6925 kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull);
6926
He, Qingfdef3ad2007-04-30 09:45:24 +03006927 return 0;
6928
Avi Kivity58972972009-02-24 22:26:47 +02006929out3:
6930 free_page((unsigned long)vmx_msr_bitmap_longmode);
Sheng Yang25c5f222008-03-28 13:18:56 +08006931out2:
Avi Kivity58972972009-02-24 22:26:47 +02006932 free_page((unsigned long)vmx_msr_bitmap_legacy);
He, Qingfdef3ad2007-04-30 09:45:24 +03006933out1:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006934 free_page((unsigned long)vmx_io_bitmap_b);
He, Qingfdef3ad2007-04-30 09:45:24 +03006935out:
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006936 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03006937 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006938}
6939
6940static void __exit vmx_exit(void)
6941{
Avi Kivity58972972009-02-24 22:26:47 +02006942 free_page((unsigned long)vmx_msr_bitmap_legacy);
6943 free_page((unsigned long)vmx_msr_bitmap_longmode);
Avi Kivity3e7c73e2009-02-24 21:46:19 +02006944 free_page((unsigned long)vmx_io_bitmap_b);
6945 free_page((unsigned long)vmx_io_bitmap_a);
He, Qingfdef3ad2007-04-30 09:45:24 +03006946
Zhang Xiantaocb498ea2007-11-14 20:39:31 +08006947 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -08006948}
6949
6950module_init(vmx_init)
6951module_exit(vmx_exit)