Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1 | /* |
| 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 Kaiser | 9611c18 | 2010-10-06 14:23:22 +0200 | [diff] [blame] | 8 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9 | * |
| 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 Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 19 | #include "irq.h" |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 20 | #include "mmu.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 21 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 22 | #include <linux/kvm_host.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 23 | #include <linux/module.h> |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 24 | #include <linux/kernel.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 25 | #include <linux/mm.h> |
| 26 | #include <linux/highmem.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 27 | #include <linux/sched.h> |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 28 | #include <linux/moduleparam.h> |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 29 | #include <linux/ftrace_event.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 31 | #include <linux/tboot.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 32 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 33 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 34 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 35 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 36 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 37 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 38 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 39 | #include <asm/mce.h> |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 40 | #include <asm/i387.h> |
| 41 | #include <asm/xcr.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 42 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 43 | #include "trace.h" |
| 44 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 45 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 46 | #define __ex_clear(x, reg) \ |
| 47 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 48 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 49 | MODULE_AUTHOR("Qumranet"); |
| 50 | MODULE_LICENSE("GPL"); |
| 51 | |
Avi Kivity | 4462d21 | 2009-03-23 17:53:37 +0200 | [diff] [blame] | 52 | static int __read_mostly bypass_guest_pf = 1; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 53 | module_param(bypass_guest_pf, bool, S_IRUGO); |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 54 | |
Avi Kivity | 4462d21 | 2009-03-23 17:53:37 +0200 | [diff] [blame] | 55 | static int __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 56 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 57 | |
Avi Kivity | 4462d21 | 2009-03-23 17:53:37 +0200 | [diff] [blame] | 58 | static int __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 59 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 60 | |
Avi Kivity | 4462d21 | 2009-03-23 17:53:37 +0200 | [diff] [blame] | 61 | static int __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 62 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 63 | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 64 | static int __read_mostly enable_unrestricted_guest = 1; |
| 65 | module_param_named(unrestricted_guest, |
| 66 | enable_unrestricted_guest, bool, S_IRUGO); |
| 67 | |
Avi Kivity | 4462d21 | 2009-03-23 17:53:37 +0200 | [diff] [blame] | 68 | static int __read_mostly emulate_invalid_guest_state = 0; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 69 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 70 | |
Dongxiao Xu | b923e62 | 2010-05-11 18:29:45 +0800 | [diff] [blame] | 71 | static int __read_mostly vmm_exclusive = 1; |
| 72 | module_param(vmm_exclusive, bool, S_IRUGO); |
| 73 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 74 | static int __read_mostly yield_on_hlt = 1; |
| 75 | module_param(yield_on_hlt, bool, S_IRUGO); |
| 76 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 77 | /* |
| 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 | */ |
| 82 | static int __read_mostly nested = 0; |
| 83 | module_param(nested, bool, S_IRUGO); |
| 84 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 85 | #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 Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 90 | (X86_CR0_WP | X86_CR0_NE) |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 91 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 92 | (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 93 | #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 Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 97 | #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 Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 100 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 101 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 102 | /* |
| 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 Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 106 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 107 | * 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 Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 113 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 114 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 115 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 116 | module_param(ple_gap, int, S_IRUGO); |
| 117 | |
| 118 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 119 | module_param(ple_window, int, S_IRUGO); |
| 120 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 121 | #define NR_AUTOLOAD_MSRS 1 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 122 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 123 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 124 | struct vmcs { |
| 125 | u32 revision_id; |
| 126 | u32 abort; |
| 127 | char data[0]; |
| 128 | }; |
| 129 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 130 | /* |
| 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 | */ |
| 135 | struct loaded_vmcs { |
| 136 | struct vmcs *vmcs; |
| 137 | int cpu; |
| 138 | int launched; |
| 139 | struct list_head loaded_vmcss_on_cpu_link; |
| 140 | }; |
| 141 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 142 | struct shared_msr_entry { |
| 143 | unsigned index; |
| 144 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 145 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 146 | }; |
| 147 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 148 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 149 | * 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'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 161 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 162 | struct __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'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 168 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 169 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 170 | u32 padding[7]; /* room for future expansion */ |
| 171 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 172 | 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'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 308 | }; |
| 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'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 324 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 325 | struct vmcs02_list { |
| 326 | struct list_head list; |
| 327 | gpa_t vmptr; |
| 328 | struct loaded_vmcs vmcs02; |
| 329 | }; |
| 330 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 331 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 332 | * 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 | */ |
| 335 | struct nested_vmx { |
| 336 | /* Has the level1 guest done vmxon? */ |
| 337 | bool vmxon; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 338 | |
| 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'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 344 | |
| 345 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 346 | struct list_head vmcs02_pool; |
| 347 | int vmcs02_num; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 348 | u64 vmcs01_tsc_offset; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 349 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 350 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 351 | /* |
| 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'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 356 | }; |
| 357 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 358 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 359 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 360 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 361 | u8 fail; |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 362 | u8 cpl; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 363 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 364 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 365 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 366 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 367 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 368 | int nmsrs; |
| 369 | int save_nmsrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 370 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 371 | u64 msr_host_kernel_gs_base; |
| 372 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 373 | #endif |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 374 | /* |
| 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 Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 382 | 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 Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 387 | struct { |
| 388 | int loaded; |
| 389 | u16 fs_sel, gs_sel, ldt_sel; |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 390 | int gs_ldt_reload_needed; |
| 391 | int fs_reload_needed; |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 392 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 393 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 394 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 395 | ulong save_rflags; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 396 | struct kvm_save_segment { |
| 397 | u16 selector; |
| 398 | unsigned long base; |
| 399 | u32 limit; |
| 400 | u32 ar; |
| 401 | } tr, es, ds, fs, gs; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 402 | } rmode; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 403 | struct { |
| 404 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
| 405 | struct kvm_save_segment seg[8]; |
| 406 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 407 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 408 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 409 | |
| 410 | /* Support for vnmi-less CPUs */ |
| 411 | int soft_vnmi_blocked; |
| 412 | ktime_t entry_time; |
| 413 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 414 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 415 | |
| 416 | bool rdtscp_enabled; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 417 | |
| 418 | /* Support for a guest hypervisor (nested VMX) */ |
| 419 | struct nested_vmx nested; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 420 | }; |
| 421 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 422 | enum 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 Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 431 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 432 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 433 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 434 | } |
| 435 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 436 | #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 | |
| 441 | static 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 | }; |
| 570 | static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table); |
| 571 | |
| 572 | static 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'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 579 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 580 | { |
| 581 | return to_vmx(vcpu)->nested.current_vmcs12; |
| 582 | } |
| 583 | |
| 584 | static 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 | |
| 594 | static void nested_release_page(struct page *page) |
| 595 | { |
| 596 | kvm_release_page_dirty(page); |
| 597 | } |
| 598 | |
| 599 | static void nested_release_page_clean(struct page *page) |
| 600 | { |
| 601 | kvm_release_page_clean(page); |
| 602 | } |
| 603 | |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 604 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 605 | static void kvm_cpu_vmxon(u64 addr); |
| 606 | static void kvm_cpu_vmxoff(void); |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 607 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 608 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 609 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 610 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 611 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 612 | /* |
| 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 | */ |
| 616 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 617 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 618 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 619 | static unsigned long *vmx_io_bitmap_a; |
| 620 | static unsigned long *vmx_io_bitmap_b; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 621 | static unsigned long *vmx_msr_bitmap_legacy; |
| 622 | static unsigned long *vmx_msr_bitmap_longmode; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 623 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 624 | static bool cpu_has_load_ia32_efer; |
| 625 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 626 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 627 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 628 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 629 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 630 | int size; |
| 631 | int order; |
| 632 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 633 | u32 pin_based_exec_ctrl; |
| 634 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 635 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 636 | u32 vmexit_ctrl; |
| 637 | u32 vmentry_ctrl; |
| 638 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 639 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 640 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 641 | u32 ept; |
| 642 | u32 vpid; |
| 643 | } vmx_capability; |
| 644 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 645 | #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 | |
| 653 | static 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 Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 669 | static u64 host_efer; |
| 670 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 671 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 672 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 673 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 674 | * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 675 | * away by decrementing the array size. |
| 676 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 677 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 678 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 679 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 680 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 681 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 682 | }; |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 683 | #define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 684 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 685 | static inline bool is_page_fault(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 686 | { |
| 687 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 688 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 689 | (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 690 | } |
| 691 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 692 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 693 | { |
| 694 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 695 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 696 | (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 697 | } |
| 698 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 699 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 700 | { |
| 701 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 702 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 703 | (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 704 | } |
| 705 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 706 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 707 | { |
| 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 Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 712 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 713 | { |
| 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 Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 719 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 720 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 721 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 722 | } |
| 723 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 724 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 725 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 726 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 727 | } |
| 728 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 729 | static inline bool vm_need_tpr_shadow(struct kvm *kvm) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 730 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 731 | return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 732 | } |
| 733 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 734 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 735 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 736 | return vmcs_config.cpu_based_exec_ctrl & |
| 737 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 738 | } |
| 739 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 740 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 741 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 742 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 743 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 744 | } |
| 745 | |
| 746 | static inline bool cpu_has_vmx_flexpriority(void) |
| 747 | { |
| 748 | return cpu_has_vmx_tpr_shadow() && |
| 749 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 750 | } |
| 751 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 752 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 753 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 754 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | static inline bool cpu_has_vmx_eptp_uncacheable(void) |
| 758 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 759 | return vmx_capability.ept & VMX_EPTP_UC_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | static inline bool cpu_has_vmx_eptp_writeback(void) |
| 763 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 764 | return vmx_capability.ept & VMX_EPTP_WB_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 768 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 769 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 770 | } |
| 771 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 772 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 773 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 774 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 775 | } |
| 776 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 777 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 778 | { |
| 779 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 780 | } |
| 781 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 782 | static inline bool cpu_has_vmx_invept_individual_addr(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 783 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 784 | return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 785 | } |
| 786 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 787 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 788 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 789 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 790 | } |
| 791 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 792 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 793 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 794 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 795 | } |
| 796 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 797 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 798 | { |
| 799 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 800 | } |
| 801 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 802 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 803 | { |
| 804 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 805 | } |
| 806 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 807 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 808 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 809 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 810 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 811 | } |
| 812 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 813 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 814 | { |
| 815 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 816 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 817 | } |
| 818 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 819 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 820 | { |
| 821 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 822 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 823 | } |
| 824 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 825 | static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 826 | { |
Gui Jianfeng | 6d3e435 | 2010-01-29 15:36:59 +0800 | [diff] [blame] | 827 | return flexpriority_enabled && irqchip_in_kernel(kvm); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 828 | } |
| 829 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 830 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 831 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 832 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 833 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 834 | } |
| 835 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 836 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 837 | { |
| 838 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 839 | SECONDARY_EXEC_RDTSCP; |
| 840 | } |
| 841 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 842 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 843 | { |
| 844 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 845 | } |
| 846 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 847 | static 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 Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 853 | static inline bool report_flexpriority(void) |
| 854 | { |
| 855 | return flexpriority_enabled; |
| 856 | } |
| 857 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 858 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 859 | { |
| 860 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 861 | } |
| 862 | |
| 863 | static 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'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 870 | static 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 | |
| 876 | static 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 | |
| 882 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 883 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 884 | struct vmcs12 *vmcs12, |
| 885 | u32 reason, unsigned long qualification); |
| 886 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 887 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 888 | { |
| 889 | int i; |
| 890 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 891 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 892 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 893 | return i; |
| 894 | return -1; |
| 895 | } |
| 896 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 897 | static 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 Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 905 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 906 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 907 | "; ja 1f ; ud2 ; 1:" |
| 908 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 909 | } |
| 910 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 911 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 912 | { |
| 913 | struct { |
| 914 | u64 eptp, gpa; |
| 915 | } operand = {eptp, gpa}; |
| 916 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 917 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 918 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 919 | "; ja 1f ; ud2 ; 1:\n" |
| 920 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 921 | } |
| 922 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 923 | static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 924 | { |
| 925 | int i; |
| 926 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 927 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 928 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 929 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 930 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 931 | } |
| 932 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 933 | static void vmcs_clear(struct vmcs *vmcs) |
| 934 | { |
| 935 | u64 phys_addr = __pa(vmcs); |
| 936 | u8 error; |
| 937 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 938 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 939 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 940 | : "cc", "memory"); |
| 941 | if (error) |
| 942 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 943 | vmcs, phys_addr); |
| 944 | } |
| 945 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 946 | static 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 Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 953 | static 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 Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 959 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 960 | : "cc", "memory"); |
| 961 | if (error) |
| 962 | printk(KERN_ERR "kvm: vmptrld %p/%llx fail\n", |
| 963 | vmcs, phys_addr); |
| 964 | } |
| 965 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 966 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 967 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 968 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 969 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 970 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 971 | 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 Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 974 | per_cpu(current_vmcs, cpu) = NULL; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 975 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
| 976 | loaded_vmcs_init(loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 977 | } |
| 978 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 979 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 980 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 981 | if (loaded_vmcs->cpu != -1) |
| 982 | smp_call_function_single( |
| 983 | loaded_vmcs->cpu, __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 984 | } |
| 985 | |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 986 | static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 987 | { |
| 988 | if (vmx->vpid == 0) |
| 989 | return; |
| 990 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 991 | if (cpu_has_vmx_invvpid_single()) |
| 992 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 993 | } |
| 994 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 995 | static 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 | |
| 1001 | static inline void vpid_sync_context(struct vcpu_vmx *vmx) |
| 1002 | { |
| 1003 | if (cpu_has_vmx_invvpid_single()) |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1004 | vpid_sync_vcpu_single(vmx); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1005 | else |
| 1006 | vpid_sync_vcpu_global(); |
| 1007 | } |
| 1008 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1009 | static inline void ept_sync_global(void) |
| 1010 | { |
| 1011 | if (cpu_has_vmx_invept_global()) |
| 1012 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1013 | } |
| 1014 | |
| 1015 | static inline void ept_sync_context(u64 eptp) |
| 1016 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1017 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1018 | if (cpu_has_vmx_invept_context()) |
| 1019 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1020 | else |
| 1021 | ept_sync_global(); |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa) |
| 1026 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1027 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1028 | 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 Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1036 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1037 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1038 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1039 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1040 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1041 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1042 | return value; |
| 1043 | } |
| 1044 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1045 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1046 | { |
| 1047 | return vmcs_readl(field); |
| 1048 | } |
| 1049 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1050 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1051 | { |
| 1052 | return vmcs_readl(field); |
| 1053 | } |
| 1054 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1055 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1056 | { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1057 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1058 | return vmcs_readl(field); |
| 1059 | #else |
| 1060 | return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32); |
| 1061 | #endif |
| 1062 | } |
| 1063 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1064 | static 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 Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1071 | static void vmcs_writel(unsigned long field, unsigned long value) |
| 1072 | { |
| 1073 | u8 error; |
| 1074 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1075 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1076 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1077 | if (unlikely(error)) |
| 1078 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | static void vmcs_write16(unsigned long field, u16 value) |
| 1082 | { |
| 1083 | vmcs_writel(field, value); |
| 1084 | } |
| 1085 | |
| 1086 | static void vmcs_write32(unsigned long field, u32 value) |
| 1087 | { |
| 1088 | vmcs_writel(field, value); |
| 1089 | } |
| 1090 | |
| 1091 | static void vmcs_write64(unsigned long field, u64 value) |
| 1092 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1093 | vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1094 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1095 | asm volatile (""); |
| 1096 | vmcs_writel(field+1, value >> 32); |
| 1097 | #endif |
| 1098 | } |
| 1099 | |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1100 | static void vmcs_clear_bits(unsigned long field, u32 mask) |
| 1101 | { |
| 1102 | vmcs_writel(field, vmcs_readl(field) & ~mask); |
| 1103 | } |
| 1104 | |
| 1105 | static void vmcs_set_bits(unsigned long field, u32 mask) |
| 1106 | { |
| 1107 | vmcs_writel(field, vmcs_readl(field) | mask); |
| 1108 | } |
| 1109 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1110 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1111 | { |
| 1112 | vmx->segment_cache.bitmask = 0; |
| 1113 | } |
| 1114 | |
| 1115 | static 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 | |
| 1130 | static 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 | |
| 1139 | static 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 | |
| 1148 | static 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 | |
| 1157 | static 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 Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1166 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1167 | { |
| 1168 | u32 eb; |
| 1169 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1170 | 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 Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1176 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1177 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1178 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1179 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 1180 | if (vcpu->fpu_active) |
| 1181 | eb &= ~(1u << NM_VECTOR); |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1182 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1183 | } |
| 1184 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1185 | static 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 Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1190 | 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 Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1196 | 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 | |
| 1209 | static 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 Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1215 | 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 Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1223 | 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 Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1239 | static void reload_tss(void) |
| 1240 | { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1241 | /* |
| 1242 | * VT restores TR but not its size. Useless. |
| 1243 | */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1244 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 1245 | struct desc_struct *descs; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1246 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1247 | descs = (void *)gdt->address; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1248 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
| 1249 | load_TR_desc(); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1250 | } |
| 1251 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1252 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1253 | { |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1254 | u64 guest_efer; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1255 | u64 ignore_bits; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1256 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1257 | guest_efer = vmx->vcpu.arch.efer; |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1258 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1259 | /* |
| 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 Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1270 | guest_efer &= ~ignore_bits; |
| 1271 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1272 | vmx->guest_msrs[efer_offset].data = guest_efer; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1273 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1274 | |
| 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 Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1285 | return true; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1286 | } |
| 1287 | |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1288 | static unsigned long segment_base(u16 selector) |
| 1289 | { |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1290 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1291 | struct desc_struct *d; |
| 1292 | unsigned long table_base; |
| 1293 | unsigned long v; |
| 1294 | |
| 1295 | if (!(selector & ~3)) |
| 1296 | return 0; |
| 1297 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1298 | table_base = gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1299 | |
| 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 | |
| 1317 | static 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 Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1324 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1325 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1326 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1327 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1328 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1329 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1330 | return; |
| 1331 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1332 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1333 | /* |
| 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 Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1337 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1338 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1339 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1340 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1341 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1342 | vmx->host_state.fs_reload_needed = 0; |
| 1343 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1344 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1345 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1346 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1347 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1348 | if (!(vmx->host_state.gs_sel & 7)) |
| 1349 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1350 | else { |
| 1351 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1352 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1353 | } |
| 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 Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1359 | 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 Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1361 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1362 | |
| 1363 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1364 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 1365 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1366 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1367 | #endif |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1368 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 1369 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1370 | vmx->guest_msrs[i].data, |
| 1371 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1372 | } |
| 1373 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1374 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1375 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1376 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1377 | return; |
| 1378 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 1379 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1380 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1381 | #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 Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1385 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1386 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1387 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1388 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1389 | #else |
| 1390 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1391 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1392 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 1393 | if (vmx->host_state.fs_reload_needed) |
| 1394 | loadsegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1395 | reload_tss(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1396 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1397 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1398 | #endif |
Avi Kivity | 1c11e71 | 2010-05-03 16:05:44 +0300 | [diff] [blame] | 1399 | if (current_thread_info()->status & TS_USEDFPU) |
| 1400 | clts(); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 1401 | load_gdt(&__get_cpu_var(host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1402 | } |
| 1403 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1404 | static 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 Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1411 | /* |
| 1412 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 1413 | * vcpu mutex is already taken. |
| 1414 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 1415 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1416 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1417 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1418 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1419 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1420 | if (!vmm_exclusive) |
| 1421 | kvm_cpu_vmxon(phys_addr); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1422 | else if (vmx->loaded_vmcs->cpu != cpu) |
| 1423 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1424 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1425 | 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 Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1428 | } |
| 1429 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1430 | if (vmx->loaded_vmcs->cpu != cpu) { |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1431 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1432 | unsigned long sysenter_esp; |
| 1433 | |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 1434 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1435 | local_irq_disable(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1436 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 1437 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1438 | local_irq_enable(); |
| 1439 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1440 | /* |
| 1441 | * Linux uses per-cpu TSS and GDT, so set these when switching |
| 1442 | * processors. |
| 1443 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1444 | vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1445 | vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1446 | |
| 1447 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 1448 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1449 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1450 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 1454 | { |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1455 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1456 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1457 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 1458 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1459 | kvm_cpu_vmxoff(); |
| 1460 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1461 | } |
| 1462 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1463 | static void vmx_fpu_activate(struct kvm_vcpu *vcpu) |
| 1464 | { |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1465 | ulong cr0; |
| 1466 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1467 | if (vcpu->fpu_active) |
| 1468 | return; |
| 1469 | vcpu->fpu_active = 1; |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1470 | 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 Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1474 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1475 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
| 1476 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1477 | } |
| 1478 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1479 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 1480 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1481 | /* |
| 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 | */ |
| 1486 | static 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 | } |
| 1491 | static 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 Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1497 | static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu) |
| 1498 | { |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1499 | vmx_decache_cr0_guest_bits(vcpu); |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1500 | vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1501 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1502 | 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 Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1505 | } |
| 1506 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1507 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 1508 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1509 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 1510 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1511 | 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 Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1520 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1521 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1522 | } |
| 1523 | |
| 1524 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 1525 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1526 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 1527 | __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1528 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1529 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 1530 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 1531 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1532 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1533 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 1534 | } |
| 1535 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1536 | static 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 Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1542 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1543 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1544 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1545 | |
| 1546 | return ret & mask; |
| 1547 | } |
| 1548 | |
| 1549 | static 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 Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1556 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1557 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1558 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1559 | interruptibility |= GUEST_INTR_STATE_STI; |
| 1560 | |
| 1561 | if ((interruptibility != interruptibility_old)) |
| 1562 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 1563 | } |
| 1564 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1565 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 1566 | { |
| 1567 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1568 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 1569 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1570 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 1571 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1572 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1573 | /* skipping an emulated instruction also counts */ |
| 1574 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1575 | } |
| 1576 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 1577 | static 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 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame^] | 1588 | /* |
| 1589 | * KVM wants to inject page-faults which it got to the guest. This function |
| 1590 | * checks whether in a nested guest, we need to inject them to L1 or L2. |
| 1591 | * This function assumes it is called with the exit reason in vmcs02 being |
| 1592 | * a #PF exception (this is the only case in which KVM injects a #PF when L2 |
| 1593 | * is running). |
| 1594 | */ |
| 1595 | static int nested_pf_handled(struct kvm_vcpu *vcpu) |
| 1596 | { |
| 1597 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 1598 | |
| 1599 | /* TODO: also check PFEC_MATCH/MASK, not just EB.PF. */ |
| 1600 | if (!(vmcs12->exception_bitmap & PF_VECTOR)) |
| 1601 | return 0; |
| 1602 | |
| 1603 | nested_vmx_vmexit(vcpu); |
| 1604 | return 1; |
| 1605 | } |
| 1606 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1607 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 1608 | bool has_error_code, u32 error_code, |
| 1609 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1610 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1611 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1612 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1613 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame^] | 1614 | if (nr == PF_VECTOR && is_guest_mode(vcpu) && |
| 1615 | nested_pf_handled(vcpu)) |
| 1616 | return; |
| 1617 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1618 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1619 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1620 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 1621 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1622 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1623 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 1624 | int inc_eip = 0; |
| 1625 | if (kvm_exception_is_soft(nr)) |
| 1626 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 1627 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 1628 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1629 | return; |
| 1630 | } |
| 1631 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 1632 | if (kvm_exception_is_soft(nr)) { |
| 1633 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 1634 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1635 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 1636 | } else |
| 1637 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 1638 | |
| 1639 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 1640 | vmx_clear_hlt(vcpu); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1641 | } |
| 1642 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1643 | static bool vmx_rdtscp_supported(void) |
| 1644 | { |
| 1645 | return cpu_has_vmx_rdtscp(); |
| 1646 | } |
| 1647 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1648 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1649 | * Swap MSR entry in host/guest MSR entry array. |
| 1650 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1651 | static void move_msr_up(struct vcpu_vmx *vmx, int from, int to) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1652 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1653 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1654 | |
| 1655 | tmp = vmx->guest_msrs[to]; |
| 1656 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 1657 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1658 | } |
| 1659 | |
| 1660 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1661 | * Set up the vmcs to automatically save and restore system |
| 1662 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 1663 | * mode, as fiddling with msrs is very expensive. |
| 1664 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1665 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1666 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1667 | int save_nmsrs, index; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 1668 | unsigned long *msr_bitmap; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1669 | |
Avi Kivity | 33f9c50 | 2008-02-27 16:06:57 +0200 | [diff] [blame] | 1670 | vmx_load_host_state(vmx); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1671 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1672 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1673 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1674 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1675 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1676 | move_msr_up(vmx, index, save_nmsrs++); |
| 1677 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1678 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1679 | move_msr_up(vmx, index, save_nmsrs++); |
| 1680 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1681 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1682 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1683 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
| 1684 | if (index >= 0 && vmx->rdtscp_enabled) |
| 1685 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1686 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1687 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1688 | * if efer.sce is enabled. |
| 1689 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1690 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1691 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1692 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1693 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1694 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1695 | index = __find_msr_index(vmx, MSR_EFER); |
| 1696 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1697 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1698 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1699 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 1700 | |
| 1701 | if (cpu_has_vmx_msr_bitmap()) { |
| 1702 | if (is_long_mode(&vmx->vcpu)) |
| 1703 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 1704 | else |
| 1705 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 1706 | |
| 1707 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 1708 | } |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1709 | } |
| 1710 | |
| 1711 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1712 | * reads and returns guest's timestamp counter "register" |
| 1713 | * guest_tsc = host_tsc + tsc_offset -- 21.3 |
| 1714 | */ |
| 1715 | static u64 guest_read_tsc(void) |
| 1716 | { |
| 1717 | u64 host_tsc, tsc_offset; |
| 1718 | |
| 1719 | rdtscll(host_tsc); |
| 1720 | tsc_offset = vmcs_read64(TSC_OFFSET); |
| 1721 | return host_tsc + tsc_offset; |
| 1722 | } |
| 1723 | |
| 1724 | /* |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 1725 | * Empty call-back. Needs to be implemented when VMX enables the SET_TSC_KHZ |
| 1726 | * ioctl. In this case the call-back should update internal vmx state to make |
| 1727 | * the changes effective. |
| 1728 | */ |
| 1729 | static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz) |
| 1730 | { |
| 1731 | /* Nothing to do here */ |
| 1732 | } |
| 1733 | |
| 1734 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1735 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1736 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1737 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1738 | { |
Zachary Amsden | f4e1b3c | 2010-08-19 22:07:16 -1000 | [diff] [blame] | 1739 | vmcs_write64(TSC_OFFSET, offset); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1740 | } |
| 1741 | |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 1742 | static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment) |
| 1743 | { |
| 1744 | u64 offset = vmcs_read64(TSC_OFFSET); |
| 1745 | vmcs_write64(TSC_OFFSET, offset + adjustment); |
| 1746 | } |
| 1747 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1748 | static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 1749 | { |
| 1750 | return target_tsc - native_read_tsc(); |
| 1751 | } |
| 1752 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 1753 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 1754 | { |
| 1755 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 1756 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 1757 | } |
| 1758 | |
| 1759 | /* |
| 1760 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 1761 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 1762 | * all guests if the "nested" module option is off, and can also be disabled |
| 1763 | * for a single guest by disabling its VMX cpuid bit. |
| 1764 | */ |
| 1765 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 1766 | { |
| 1767 | return nested && guest_cpuid_has_vmx(vcpu); |
| 1768 | } |
| 1769 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1770 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 1771 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 1772 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 1773 | * The same values should also be used to verify that vmcs12 control fields are |
| 1774 | * valid during nested entry from L1 to L2. |
| 1775 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 1776 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 1777 | * bit in the high half is on if the corresponding bit in the control field |
| 1778 | * may be on. See also vmx_control_verify(). |
| 1779 | * TODO: allow these variables to be modified (downgraded) by module options |
| 1780 | * or other means. |
| 1781 | */ |
| 1782 | static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high; |
| 1783 | static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high; |
| 1784 | static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high; |
| 1785 | static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high; |
| 1786 | static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high; |
| 1787 | static __init void nested_vmx_setup_ctls_msrs(void) |
| 1788 | { |
| 1789 | /* |
| 1790 | * Note that as a general rule, the high half of the MSRs (bits in |
| 1791 | * the control fields which may be 1) should be initialized by the |
| 1792 | * intersection of the underlying hardware's MSR (i.e., features which |
| 1793 | * can be supported) and the list of features we want to expose - |
| 1794 | * because they are known to be properly supported in our code. |
| 1795 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 1796 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 1797 | * reason is that if one of these bits is necessary, it will appear |
| 1798 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 1799 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 1800 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 1801 | * These rules have exceptions below. |
| 1802 | */ |
| 1803 | |
| 1804 | /* pin-based controls */ |
| 1805 | /* |
| 1806 | * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is |
| 1807 | * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR. |
| 1808 | */ |
| 1809 | nested_vmx_pinbased_ctls_low = 0x16 ; |
| 1810 | nested_vmx_pinbased_ctls_high = 0x16 | |
| 1811 | PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING | |
| 1812 | PIN_BASED_VIRTUAL_NMIS; |
| 1813 | |
| 1814 | /* exit controls */ |
| 1815 | nested_vmx_exit_ctls_low = 0; |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 1816 | /* Note that guest use of VM_EXIT_ACK_INTR_ON_EXIT is not supported. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 1817 | #ifdef CONFIG_X86_64 |
| 1818 | nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 1819 | #else |
| 1820 | nested_vmx_exit_ctls_high = 0; |
| 1821 | #endif |
| 1822 | |
| 1823 | /* entry controls */ |
| 1824 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
| 1825 | nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high); |
| 1826 | nested_vmx_entry_ctls_low = 0; |
| 1827 | nested_vmx_entry_ctls_high &= |
| 1828 | VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE; |
| 1829 | |
| 1830 | /* cpu-based controls */ |
| 1831 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
| 1832 | nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high); |
| 1833 | nested_vmx_procbased_ctls_low = 0; |
| 1834 | nested_vmx_procbased_ctls_high &= |
| 1835 | CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
| 1836 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 1837 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 1838 | CPU_BASED_CR3_STORE_EXITING | |
| 1839 | #ifdef CONFIG_X86_64 |
| 1840 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 1841 | #endif |
| 1842 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
| 1843 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING | |
| 1844 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
| 1845 | /* |
| 1846 | * We can allow some features even when not supported by the |
| 1847 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 1848 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 1849 | * without MSR bitmaps. |
| 1850 | */ |
| 1851 | nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS; |
| 1852 | |
| 1853 | /* secondary cpu-based controls */ |
| 1854 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
| 1855 | nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high); |
| 1856 | nested_vmx_secondary_ctls_low = 0; |
| 1857 | nested_vmx_secondary_ctls_high &= |
| 1858 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 1859 | } |
| 1860 | |
| 1861 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 1862 | { |
| 1863 | /* |
| 1864 | * Bits 0 in high must be 0, and bits 1 in low must be 1. |
| 1865 | */ |
| 1866 | return ((control & high) | low) == control; |
| 1867 | } |
| 1868 | |
| 1869 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 1870 | { |
| 1871 | return low | ((u64)high << 32); |
| 1872 | } |
| 1873 | |
| 1874 | /* |
| 1875 | * If we allow our guest to use VMX instructions (i.e., nested VMX), we should |
| 1876 | * also let it use VMX-specific MSRs. |
| 1877 | * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a |
| 1878 | * VMX-specific MSR, or 0 when we haven't (and the caller should handle it |
| 1879 | * like all other MSRs). |
| 1880 | */ |
| 1881 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 1882 | { |
| 1883 | if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC && |
| 1884 | msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) { |
| 1885 | /* |
| 1886 | * According to the spec, processors which do not support VMX |
| 1887 | * should throw a #GP(0) when VMX capability MSRs are read. |
| 1888 | */ |
| 1889 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 1890 | return 1; |
| 1891 | } |
| 1892 | |
| 1893 | switch (msr_index) { |
| 1894 | case MSR_IA32_FEATURE_CONTROL: |
| 1895 | *pdata = 0; |
| 1896 | break; |
| 1897 | case MSR_IA32_VMX_BASIC: |
| 1898 | /* |
| 1899 | * This MSR reports some information about VMX support. We |
| 1900 | * should return information about the VMX we emulate for the |
| 1901 | * guest, and the VMCS structure we give it - not about the |
| 1902 | * VMX support of the underlying hardware. |
| 1903 | */ |
| 1904 | *pdata = VMCS12_REVISION | |
| 1905 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 1906 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 1907 | break; |
| 1908 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 1909 | case MSR_IA32_VMX_PINBASED_CTLS: |
| 1910 | *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low, |
| 1911 | nested_vmx_pinbased_ctls_high); |
| 1912 | break; |
| 1913 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 1914 | case MSR_IA32_VMX_PROCBASED_CTLS: |
| 1915 | *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low, |
| 1916 | nested_vmx_procbased_ctls_high); |
| 1917 | break; |
| 1918 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 1919 | case MSR_IA32_VMX_EXIT_CTLS: |
| 1920 | *pdata = vmx_control_msr(nested_vmx_exit_ctls_low, |
| 1921 | nested_vmx_exit_ctls_high); |
| 1922 | break; |
| 1923 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 1924 | case MSR_IA32_VMX_ENTRY_CTLS: |
| 1925 | *pdata = vmx_control_msr(nested_vmx_entry_ctls_low, |
| 1926 | nested_vmx_entry_ctls_high); |
| 1927 | break; |
| 1928 | case MSR_IA32_VMX_MISC: |
| 1929 | *pdata = 0; |
| 1930 | break; |
| 1931 | /* |
| 1932 | * These MSRs specify bits which the guest must keep fixed (on or off) |
| 1933 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 1934 | * We picked the standard core2 setting. |
| 1935 | */ |
| 1936 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 1937 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 1938 | case MSR_IA32_VMX_CR0_FIXED0: |
| 1939 | *pdata = VMXON_CR0_ALWAYSON; |
| 1940 | break; |
| 1941 | case MSR_IA32_VMX_CR0_FIXED1: |
| 1942 | *pdata = -1ULL; |
| 1943 | break; |
| 1944 | case MSR_IA32_VMX_CR4_FIXED0: |
| 1945 | *pdata = VMXON_CR4_ALWAYSON; |
| 1946 | break; |
| 1947 | case MSR_IA32_VMX_CR4_FIXED1: |
| 1948 | *pdata = -1ULL; |
| 1949 | break; |
| 1950 | case MSR_IA32_VMX_VMCS_ENUM: |
| 1951 | *pdata = 0x1f; |
| 1952 | break; |
| 1953 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 1954 | *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low, |
| 1955 | nested_vmx_secondary_ctls_high); |
| 1956 | break; |
| 1957 | case MSR_IA32_VMX_EPT_VPID_CAP: |
| 1958 | /* Currently, no nested ept or nested vpid */ |
| 1959 | *pdata = 0; |
| 1960 | break; |
| 1961 | default: |
| 1962 | return 0; |
| 1963 | } |
| 1964 | |
| 1965 | return 1; |
| 1966 | } |
| 1967 | |
| 1968 | static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data) |
| 1969 | { |
| 1970 | if (!nested_vmx_allowed(vcpu)) |
| 1971 | return 0; |
| 1972 | |
| 1973 | if (msr_index == MSR_IA32_FEATURE_CONTROL) |
| 1974 | /* TODO: the right thing. */ |
| 1975 | return 1; |
| 1976 | /* |
| 1977 | * No need to treat VMX capability MSRs specially: If we don't handle |
| 1978 | * them, handle_wrmsr will #GP(0), which is correct (they are readonly) |
| 1979 | */ |
| 1980 | return 0; |
| 1981 | } |
| 1982 | |
| 1983 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1984 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 1985 | * Returns 0 on success, non-0 otherwise. |
| 1986 | * Assumes vcpu_load() was already called. |
| 1987 | */ |
| 1988 | static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 1989 | { |
| 1990 | u64 data; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1991 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1992 | |
| 1993 | if (!pdata) { |
| 1994 | printk(KERN_ERR "BUG: get_msr called with NULL pdata\n"); |
| 1995 | return -EINVAL; |
| 1996 | } |
| 1997 | |
| 1998 | switch (msr_index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1999 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2000 | case MSR_FS_BASE: |
| 2001 | data = vmcs_readl(GUEST_FS_BASE); |
| 2002 | break; |
| 2003 | case MSR_GS_BASE: |
| 2004 | data = vmcs_readl(GUEST_GS_BASE); |
| 2005 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2006 | case MSR_KERNEL_GS_BASE: |
| 2007 | vmx_load_host_state(to_vmx(vcpu)); |
| 2008 | data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
| 2009 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2010 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2011 | case MSR_EFER: |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2012 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2013 | case MSR_IA32_TSC: |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2014 | data = guest_read_tsc(); |
| 2015 | break; |
| 2016 | case MSR_IA32_SYSENTER_CS: |
| 2017 | data = vmcs_read32(GUEST_SYSENTER_CS); |
| 2018 | break; |
| 2019 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2020 | data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2021 | break; |
| 2022 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2023 | data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2024 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2025 | case MSR_TSC_AUX: |
| 2026 | if (!to_vmx(vcpu)->rdtscp_enabled) |
| 2027 | return 1; |
| 2028 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2029 | default: |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2030 | vmx_load_host_state(to_vmx(vcpu)); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2031 | if (vmx_get_vmx_msr(vcpu, msr_index, pdata)) |
| 2032 | return 0; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2033 | msr = find_msr_entry(to_vmx(vcpu), msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2034 | if (msr) { |
Gleb Natapov | 542423b | 2009-08-27 15:07:30 +0300 | [diff] [blame] | 2035 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2036 | data = msr->data; |
| 2037 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2038 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2039 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | *pdata = data; |
| 2043 | return 0; |
| 2044 | } |
| 2045 | |
| 2046 | /* |
| 2047 | * Writes msr value into into the appropriate "register". |
| 2048 | * Returns 0 on success, non-0 otherwise. |
| 2049 | * Assumes vcpu_load() was already called. |
| 2050 | */ |
| 2051 | static int vmx_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data) |
| 2052 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2053 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2054 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2055 | int ret = 0; |
| 2056 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2057 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2058 | case MSR_EFER: |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2059 | vmx_load_host_state(vmx); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2060 | ret = kvm_set_msr_common(vcpu, msr_index, data); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2061 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 2062 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2063 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2064 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2065 | vmcs_writel(GUEST_FS_BASE, data); |
| 2066 | break; |
| 2067 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2068 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2069 | vmcs_writel(GUEST_GS_BASE, data); |
| 2070 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2071 | case MSR_KERNEL_GS_BASE: |
| 2072 | vmx_load_host_state(vmx); |
| 2073 | vmx->msr_guest_kernel_gs_base = data; |
| 2074 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2075 | #endif |
| 2076 | case MSR_IA32_SYSENTER_CS: |
| 2077 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 2078 | break; |
| 2079 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2080 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2081 | break; |
| 2082 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2083 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2084 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2085 | case MSR_IA32_TSC: |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2086 | kvm_write_tsc(vcpu, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2087 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2088 | case MSR_IA32_CR_PAT: |
| 2089 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
| 2090 | vmcs_write64(GUEST_IA32_PAT, data); |
| 2091 | vcpu->arch.pat = data; |
| 2092 | break; |
| 2093 | } |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2094 | ret = kvm_set_msr_common(vcpu, msr_index, data); |
| 2095 | break; |
| 2096 | case MSR_TSC_AUX: |
| 2097 | if (!vmx->rdtscp_enabled) |
| 2098 | return 1; |
| 2099 | /* Check reserved bit, higher 32 bits should be zero */ |
| 2100 | if ((data >> 32) != 0) |
| 2101 | return 1; |
| 2102 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2103 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2104 | if (vmx_set_vmx_msr(vcpu, msr_index, data)) |
| 2105 | break; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2106 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2107 | if (msr) { |
Gleb Natapov | 542423b | 2009-08-27 15:07:30 +0300 | [diff] [blame] | 2108 | vmx_load_host_state(vmx); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2109 | msr->data = data; |
| 2110 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2111 | } |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2112 | ret = kvm_set_msr_common(vcpu, msr_index, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2113 | } |
| 2114 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2115 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2116 | } |
| 2117 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2118 | static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2119 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2120 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 2121 | switch (reg) { |
| 2122 | case VCPU_REGS_RSP: |
| 2123 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 2124 | break; |
| 2125 | case VCPU_REGS_RIP: |
| 2126 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 2127 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2128 | case VCPU_EXREG_PDPTR: |
| 2129 | if (enable_ept) |
| 2130 | ept_save_pdptrs(vcpu); |
| 2131 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2132 | default: |
| 2133 | break; |
| 2134 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2135 | } |
| 2136 | |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 2137 | static void set_guest_debug(struct kvm_vcpu *vcpu, struct kvm_guest_debug *dbg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2138 | { |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2139 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 2140 | vmcs_writel(GUEST_DR7, dbg->arch.debugreg[7]); |
| 2141 | else |
| 2142 | vmcs_writel(GUEST_DR7, vcpu->arch.dr7); |
| 2143 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 2144 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2145 | } |
| 2146 | |
| 2147 | static __init int cpu_has_kvm_support(void) |
| 2148 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 2149 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2150 | } |
| 2151 | |
| 2152 | static __init int vmx_disabled_by_bios(void) |
| 2153 | { |
| 2154 | u64 msr; |
| 2155 | |
| 2156 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2157 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2158 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2159 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 2160 | && tboot_enabled()) |
| 2161 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2162 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2163 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2164 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2165 | && !tboot_enabled()) { |
| 2166 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2167 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2168 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2169 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2170 | /* launched w/o TXT and VMX disabled */ |
| 2171 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 2172 | && !tboot_enabled()) |
| 2173 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2177 | } |
| 2178 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2179 | static void kvm_cpu_vmxon(u64 addr) |
| 2180 | { |
| 2181 | asm volatile (ASM_VMX_VMXON_RAX |
| 2182 | : : "a"(&addr), "m"(addr) |
| 2183 | : "memory", "cc"); |
| 2184 | } |
| 2185 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2186 | static int hardware_enable(void *garbage) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2187 | { |
| 2188 | int cpu = raw_smp_processor_id(); |
| 2189 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2190 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2191 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2192 | if (read_cr4() & X86_CR4_VMXE) |
| 2193 | return -EBUSY; |
| 2194 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2195 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2196 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2197 | |
| 2198 | test_bits = FEATURE_CONTROL_LOCKED; |
| 2199 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 2200 | if (tboot_enabled()) |
| 2201 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 2202 | |
| 2203 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2204 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2205 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 2206 | } |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2207 | write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */ |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2208 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2209 | if (vmm_exclusive) { |
| 2210 | kvm_cpu_vmxon(phys_addr); |
| 2211 | ept_sync_global(); |
| 2212 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2213 | |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 2214 | store_gdt(&__get_cpu_var(host_gdt)); |
| 2215 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2216 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2217 | } |
| 2218 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2219 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2220 | { |
| 2221 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2222 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2223 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2224 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 2225 | loaded_vmcss_on_cpu_link) |
| 2226 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2227 | } |
| 2228 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2229 | |
| 2230 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 2231 | * tricks. |
| 2232 | */ |
| 2233 | static void kvm_cpu_vmxoff(void) |
| 2234 | { |
| 2235 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2236 | } |
| 2237 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2238 | static void hardware_disable(void *garbage) |
| 2239 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2240 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2241 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2242 | kvm_cpu_vmxoff(); |
| 2243 | } |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2244 | write_cr4(read_cr4() & ~X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2245 | } |
| 2246 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2247 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 2248 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2249 | { |
| 2250 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2251 | u32 ctl = ctl_min | ctl_opt; |
| 2252 | |
| 2253 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2254 | |
| 2255 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 2256 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 2257 | |
| 2258 | /* Ensure minimum (required) set of control bits are supported. */ |
| 2259 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2260 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2261 | |
| 2262 | *result = ctl; |
| 2263 | return 0; |
| 2264 | } |
| 2265 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 2266 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 2267 | { |
| 2268 | u32 vmx_msr_low, vmx_msr_high; |
| 2269 | |
| 2270 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2271 | return vmx_msr_high & ctl; |
| 2272 | } |
| 2273 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2274 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2275 | { |
| 2276 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2277 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2278 | u32 _pin_based_exec_control = 0; |
| 2279 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2280 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2281 | u32 _vmexit_control = 0; |
| 2282 | u32 _vmentry_control = 0; |
| 2283 | |
| 2284 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 2285 | opt = PIN_BASED_VIRTUAL_NMIS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2286 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 2287 | &_pin_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2288 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2289 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 2290 | min = |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2291 | #ifdef CONFIG_X86_64 |
| 2292 | CPU_BASED_CR8_LOAD_EXITING | |
| 2293 | CPU_BASED_CR8_STORE_EXITING | |
| 2294 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2295 | CPU_BASED_CR3_LOAD_EXITING | |
| 2296 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2297 | CPU_BASED_USE_IO_BITMAPS | |
| 2298 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2299 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 2300 | CPU_BASED_MWAIT_EXITING | |
| 2301 | CPU_BASED_MONITOR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2302 | CPU_BASED_INVLPG_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 2303 | |
| 2304 | if (yield_on_hlt) |
| 2305 | min |= CPU_BASED_HLT_EXITING; |
| 2306 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2307 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 2308 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2309 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2310 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 2311 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2312 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 2313 | #ifdef CONFIG_X86_64 |
| 2314 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 2315 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 2316 | ~CPU_BASED_CR8_STORE_EXITING; |
| 2317 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2318 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2319 | min2 = 0; |
| 2320 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2321 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2322 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2323 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 2324 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2325 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
| 2326 | SECONDARY_EXEC_RDTSCP; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2327 | if (adjust_vmx_controls(min2, opt2, |
| 2328 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2329 | &_cpu_based_2nd_exec_control) < 0) |
| 2330 | return -EIO; |
| 2331 | } |
| 2332 | #ifndef CONFIG_X86_64 |
| 2333 | if (!(_cpu_based_2nd_exec_control & |
| 2334 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 2335 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 2336 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2337 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2338 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 2339 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 2340 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 2341 | CPU_BASED_CR3_STORE_EXITING | |
| 2342 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2343 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 2344 | vmx_capability.ept, vmx_capability.vpid); |
| 2345 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2346 | |
| 2347 | min = 0; |
| 2348 | #ifdef CONFIG_X86_64 |
| 2349 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 2350 | #endif |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2351 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2352 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 2353 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2354 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2355 | |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2356 | min = 0; |
| 2357 | opt = VM_ENTRY_LOAD_IA32_PAT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2358 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 2359 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2360 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2361 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 2362 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2363 | |
| 2364 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 2365 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2366 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2367 | |
| 2368 | #ifdef CONFIG_X86_64 |
| 2369 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 2370 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2371 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2372 | #endif |
| 2373 | |
| 2374 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 2375 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2376 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2377 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2378 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
| 2379 | vmcs_conf->order = get_order(vmcs_config.size); |
| 2380 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2381 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2382 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 2383 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2384 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2385 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 2386 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2387 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 2388 | cpu_has_load_ia32_efer = |
| 2389 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 2390 | VM_ENTRY_LOAD_IA32_EFER) |
| 2391 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 2392 | VM_EXIT_LOAD_IA32_EFER); |
| 2393 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2394 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 2395 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2396 | |
| 2397 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 2398 | { |
| 2399 | int node = cpu_to_node(cpu); |
| 2400 | struct page *pages; |
| 2401 | struct vmcs *vmcs; |
| 2402 | |
Mel Gorman | 6484eb3 | 2009-06-16 15:31:54 -0700 | [diff] [blame] | 2403 | pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2404 | if (!pages) |
| 2405 | return NULL; |
| 2406 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2407 | memset(vmcs, 0, vmcs_config.size); |
| 2408 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2409 | return vmcs; |
| 2410 | } |
| 2411 | |
| 2412 | static struct vmcs *alloc_vmcs(void) |
| 2413 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 2414 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2415 | } |
| 2416 | |
| 2417 | static void free_vmcs(struct vmcs *vmcs) |
| 2418 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2419 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2420 | } |
| 2421 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2422 | /* |
| 2423 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 2424 | */ |
| 2425 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 2426 | { |
| 2427 | if (!loaded_vmcs->vmcs) |
| 2428 | return; |
| 2429 | loaded_vmcs_clear(loaded_vmcs); |
| 2430 | free_vmcs(loaded_vmcs->vmcs); |
| 2431 | loaded_vmcs->vmcs = NULL; |
| 2432 | } |
| 2433 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 2434 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2435 | { |
| 2436 | int cpu; |
| 2437 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2438 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2439 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2440 | per_cpu(vmxarea, cpu) = NULL; |
| 2441 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2442 | } |
| 2443 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2444 | static __init int alloc_kvm_area(void) |
| 2445 | { |
| 2446 | int cpu; |
| 2447 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2448 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2449 | struct vmcs *vmcs; |
| 2450 | |
| 2451 | vmcs = alloc_vmcs_cpu(cpu); |
| 2452 | if (!vmcs) { |
| 2453 | free_kvm_area(); |
| 2454 | return -ENOMEM; |
| 2455 | } |
| 2456 | |
| 2457 | per_cpu(vmxarea, cpu) = vmcs; |
| 2458 | } |
| 2459 | return 0; |
| 2460 | } |
| 2461 | |
| 2462 | static __init int hardware_setup(void) |
| 2463 | { |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2464 | if (setup_vmcs_config(&vmcs_config) < 0) |
| 2465 | return -EIO; |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 2466 | |
| 2467 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 2468 | kvm_enable_efer_bits(EFER_NX); |
| 2469 | |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2470 | if (!cpu_has_vmx_vpid()) |
| 2471 | enable_vpid = 0; |
| 2472 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 2473 | if (!cpu_has_vmx_ept() || |
| 2474 | !cpu_has_vmx_ept_4levels()) { |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2475 | enable_ept = 0; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2476 | enable_unrestricted_guest = 0; |
| 2477 | } |
| 2478 | |
| 2479 | if (!cpu_has_vmx_unrestricted_guest()) |
| 2480 | enable_unrestricted_guest = 0; |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2481 | |
| 2482 | if (!cpu_has_vmx_flexpriority()) |
| 2483 | flexpriority_enabled = 0; |
| 2484 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 2485 | if (!cpu_has_vmx_tpr_shadow()) |
| 2486 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 2487 | |
Marcelo Tosatti | 54dee99 | 2009-06-11 12:07:44 -0300 | [diff] [blame] | 2488 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 2489 | kvm_disable_largepages(); |
| 2490 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 2491 | if (!cpu_has_vmx_ple()) |
| 2492 | ple_gap = 0; |
| 2493 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2494 | if (nested) |
| 2495 | nested_vmx_setup_ctls_msrs(); |
| 2496 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2497 | return alloc_kvm_area(); |
| 2498 | } |
| 2499 | |
| 2500 | static __exit void hardware_unsetup(void) |
| 2501 | { |
| 2502 | free_kvm_area(); |
| 2503 | } |
| 2504 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2505 | static void fix_pmode_dataseg(int seg, struct kvm_save_segment *save) |
| 2506 | { |
| 2507 | struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
| 2508 | |
Avi Kivity | 6af11b9 | 2007-03-19 13:18:10 +0200 | [diff] [blame] | 2509 | if (vmcs_readl(sf->base) == save->base && (save->base & AR_S_MASK)) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2510 | vmcs_write16(sf->selector, save->selector); |
| 2511 | vmcs_writel(sf->base, save->base); |
| 2512 | vmcs_write32(sf->limit, save->limit); |
| 2513 | vmcs_write32(sf->ar_bytes, save->ar); |
| 2514 | } else { |
| 2515 | u32 dpl = (vmcs_read16(sf->selector) & SELECTOR_RPL_MASK) |
| 2516 | << AR_DPL_SHIFT; |
| 2517 | vmcs_write32(sf->ar_bytes, 0x93 | dpl); |
| 2518 | } |
| 2519 | } |
| 2520 | |
| 2521 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 2522 | { |
| 2523 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2524 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2525 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2526 | vmx->emulation_required = 1; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2527 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2528 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2529 | vmx_segment_cache_clear(vmx); |
| 2530 | |
Avi Kivity | d0ba64f | 2011-01-03 14:28:51 +0200 | [diff] [blame] | 2531 | vmcs_write16(GUEST_TR_SELECTOR, vmx->rmode.tr.selector); |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2532 | vmcs_writel(GUEST_TR_BASE, vmx->rmode.tr.base); |
| 2533 | vmcs_write32(GUEST_TR_LIMIT, vmx->rmode.tr.limit); |
| 2534 | vmcs_write32(GUEST_TR_AR_BYTES, vmx->rmode.tr.ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2535 | |
| 2536 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2537 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2538 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2539 | vmcs_writel(GUEST_RFLAGS, flags); |
| 2540 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2541 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 2542 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2543 | |
| 2544 | update_exception_bitmap(vcpu); |
| 2545 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2546 | if (emulate_invalid_guest_state) |
| 2547 | return; |
| 2548 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2549 | fix_pmode_dataseg(VCPU_SREG_ES, &vmx->rmode.es); |
| 2550 | fix_pmode_dataseg(VCPU_SREG_DS, &vmx->rmode.ds); |
| 2551 | fix_pmode_dataseg(VCPU_SREG_GS, &vmx->rmode.gs); |
| 2552 | fix_pmode_dataseg(VCPU_SREG_FS, &vmx->rmode.fs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2553 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2554 | vmx_segment_cache_clear(vmx); |
| 2555 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2556 | vmcs_write16(GUEST_SS_SELECTOR, 0); |
| 2557 | vmcs_write32(GUEST_SS_AR_BYTES, 0x93); |
| 2558 | |
| 2559 | vmcs_write16(GUEST_CS_SELECTOR, |
| 2560 | vmcs_read16(GUEST_CS_SELECTOR) & ~SELECTOR_RPL_MASK); |
| 2561 | vmcs_write32(GUEST_CS_AR_BYTES, 0x9b); |
| 2562 | } |
| 2563 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 2564 | static gva_t rmode_tss_base(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2565 | { |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 2566 | if (!kvm->arch.tss_addr) { |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 2567 | struct kvm_memslots *slots; |
| 2568 | gfn_t base_gfn; |
| 2569 | |
Lai Jiangshan | 90d83dc | 2010-04-19 17:41:23 +0800 | [diff] [blame] | 2570 | slots = kvm_memslots(kvm); |
Avi Kivity | f495c6e | 2010-06-10 17:21:29 +0300 | [diff] [blame] | 2571 | base_gfn = slots->memslots[0].base_gfn + |
Marcelo Tosatti | 46a26bf | 2009-12-23 14:35:16 -0200 | [diff] [blame] | 2572 | kvm->memslots->memslots[0].npages - 3; |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 2573 | return base_gfn << PAGE_SHIFT; |
| 2574 | } |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 2575 | return kvm->arch.tss_addr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2576 | } |
| 2577 | |
| 2578 | static void fix_rmode_seg(int seg, struct kvm_save_segment *save) |
| 2579 | { |
| 2580 | struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
| 2581 | |
| 2582 | save->selector = vmcs_read16(sf->selector); |
| 2583 | save->base = vmcs_readl(sf->base); |
| 2584 | save->limit = vmcs_read32(sf->limit); |
| 2585 | save->ar = vmcs_read32(sf->ar_bytes); |
Jan Kiszka | 15b00f3 | 2007-11-19 10:21:45 +0100 | [diff] [blame] | 2586 | vmcs_write16(sf->selector, save->base >> 4); |
Gleb Natapov | 444e863 | 2010-12-27 17:25:04 +0200 | [diff] [blame] | 2587 | vmcs_write32(sf->base, save->base & 0xffff0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2588 | vmcs_write32(sf->limit, 0xffff); |
| 2589 | vmcs_write32(sf->ar_bytes, 0xf3); |
Gleb Natapov | 444e863 | 2010-12-27 17:25:04 +0200 | [diff] [blame] | 2590 | if (save->base & 0xf) |
| 2591 | printk_once(KERN_WARNING "kvm: segment base is not paragraph" |
| 2592 | " aligned when entering protected mode (seg=%d)", |
| 2593 | seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2594 | } |
| 2595 | |
| 2596 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 2597 | { |
| 2598 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2599 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2600 | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2601 | if (enable_unrestricted_guest) |
| 2602 | return; |
| 2603 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2604 | vmx->emulation_required = 1; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2605 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2606 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 2607 | /* |
| 2608 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
| 2609 | * vcpu. Call it here with phys address pointing 16M below 4G. |
| 2610 | */ |
| 2611 | if (!vcpu->kvm->arch.tss_addr) { |
| 2612 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 2613 | "called before entering vcpu\n"); |
| 2614 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 2615 | vmx_set_tss_addr(vcpu->kvm, 0xfeffd000); |
| 2616 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 2617 | } |
| 2618 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2619 | vmx_segment_cache_clear(vmx); |
| 2620 | |
Avi Kivity | d0ba64f | 2011-01-03 14:28:51 +0200 | [diff] [blame] | 2621 | vmx->rmode.tr.selector = vmcs_read16(GUEST_TR_SELECTOR); |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2622 | vmx->rmode.tr.base = vmcs_readl(GUEST_TR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2623 | vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm)); |
| 2624 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2625 | vmx->rmode.tr.limit = vmcs_read32(GUEST_TR_LIMIT); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2626 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
| 2627 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2628 | vmx->rmode.tr.ar = vmcs_read32(GUEST_TR_AR_BYTES); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2629 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 2630 | |
| 2631 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2632 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2633 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2634 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2635 | |
| 2636 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2637 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2638 | update_exception_bitmap(vcpu); |
| 2639 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2640 | if (emulate_invalid_guest_state) |
| 2641 | goto continue_rmode; |
| 2642 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2643 | vmcs_write16(GUEST_SS_SELECTOR, vmcs_readl(GUEST_SS_BASE) >> 4); |
| 2644 | vmcs_write32(GUEST_SS_LIMIT, 0xffff); |
| 2645 | vmcs_write32(GUEST_SS_AR_BYTES, 0xf3); |
| 2646 | |
| 2647 | vmcs_write32(GUEST_CS_AR_BYTES, 0xf3); |
Michael Riepe | abacf8d | 2006-12-22 01:05:45 -0800 | [diff] [blame] | 2648 | vmcs_write32(GUEST_CS_LIMIT, 0xffff); |
Avi Kivity | 8cb5b03 | 2007-03-20 18:40:40 +0200 | [diff] [blame] | 2649 | if (vmcs_readl(GUEST_CS_BASE) == 0xffff0000) |
| 2650 | vmcs_writel(GUEST_CS_BASE, 0xf0000); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2651 | vmcs_write16(GUEST_CS_SELECTOR, vmcs_readl(GUEST_CS_BASE) >> 4); |
| 2652 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2653 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.es); |
| 2654 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.ds); |
| 2655 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.gs); |
| 2656 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.fs); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 2657 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2658 | continue_rmode: |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 2659 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2660 | } |
| 2661 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2662 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 2663 | { |
| 2664 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2665 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 2666 | |
| 2667 | if (!msr) |
| 2668 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2669 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2670 | /* |
| 2671 | * Force kernel_gs_base reloading before EFER changes, as control |
| 2672 | * of this msr depends on is_long_mode(). |
| 2673 | */ |
| 2674 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2675 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2676 | if (efer & EFER_LMA) { |
| 2677 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2678 | vmcs_read32(VM_ENTRY_CONTROLS) | |
| 2679 | VM_ENTRY_IA32E_MODE); |
| 2680 | msr->data = efer; |
| 2681 | } else { |
| 2682 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2683 | vmcs_read32(VM_ENTRY_CONTROLS) & |
| 2684 | ~VM_ENTRY_IA32E_MODE); |
| 2685 | |
| 2686 | msr->data = efer & ~EFER_LME; |
| 2687 | } |
| 2688 | setup_msrs(vmx); |
| 2689 | } |
| 2690 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2691 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2692 | |
| 2693 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 2694 | { |
| 2695 | u32 guest_tr_ar; |
| 2696 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2697 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 2698 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2699 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
| 2700 | if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) { |
| 2701 | printk(KERN_DEBUG "%s: tss fixup for long mode. \n", |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 2702 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2703 | vmcs_write32(GUEST_TR_AR_BYTES, |
| 2704 | (guest_tr_ar & ~AR_TYPE_MASK) |
| 2705 | | AR_TYPE_BUSY_64_TSS); |
| 2706 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 2707 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2708 | } |
| 2709 | |
| 2710 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 2711 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2712 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2713 | vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B | 1e4e6e0 | 2007-08-01 21:49:10 +0300 | [diff] [blame] | 2714 | & ~VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 2715 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2716 | } |
| 2717 | |
| 2718 | #endif |
| 2719 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2720 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 2721 | { |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 2722 | vpid_sync_context(to_vmx(vcpu)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 2723 | if (enable_ept) { |
| 2724 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 2725 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 2726 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 2727 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2728 | } |
| 2729 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 2730 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 2731 | { |
| 2732 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 2733 | |
| 2734 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 2735 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 2736 | } |
| 2737 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 2738 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 2739 | { |
| 2740 | if (enable_ept && is_paging(vcpu)) |
| 2741 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 2742 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 2743 | } |
| 2744 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 2745 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 2746 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 2747 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 2748 | |
| 2749 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 2750 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 2751 | } |
| 2752 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2753 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 2754 | { |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2755 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 2756 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 2757 | return; |
| 2758 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2759 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 2760 | vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]); |
| 2761 | vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]); |
| 2762 | vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]); |
| 2763 | vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2764 | } |
| 2765 | } |
| 2766 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 2767 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 2768 | { |
| 2769 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 2770 | vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 2771 | vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 2772 | vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 2773 | vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 2774 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2775 | |
| 2776 | __set_bit(VCPU_EXREG_PDPTR, |
| 2777 | (unsigned long *)&vcpu->arch.regs_avail); |
| 2778 | __set_bit(VCPU_EXREG_PDPTR, |
| 2779 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 2780 | } |
| 2781 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 2782 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2783 | |
| 2784 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 2785 | unsigned long cr0, |
| 2786 | struct kvm_vcpu *vcpu) |
| 2787 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 2788 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 2789 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2790 | if (!(cr0 & X86_CR0_PG)) { |
| 2791 | /* From paging/starting to nonpaging */ |
| 2792 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 2793 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2794 | (CPU_BASED_CR3_LOAD_EXITING | |
| 2795 | CPU_BASED_CR3_STORE_EXITING)); |
| 2796 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 2797 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2798 | } else if (!is_paging(vcpu)) { |
| 2799 | /* From nonpaging to paging */ |
| 2800 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 2801 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2802 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 2803 | CPU_BASED_CR3_STORE_EXITING)); |
| 2804 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 2805 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2806 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 2807 | |
| 2808 | if (!(cr0 & X86_CR0_WP)) |
| 2809 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2810 | } |
| 2811 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2812 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 2813 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2814 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2815 | unsigned long hw_cr0; |
| 2816 | |
| 2817 | if (enable_unrestricted_guest) |
| 2818 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST) |
| 2819 | | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
| 2820 | else |
| 2821 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2822 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2823 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2824 | enter_pmode(vcpu); |
| 2825 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2826 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2827 | enter_rmode(vcpu); |
| 2828 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2829 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2830 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 2831 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2832 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 2833 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2834 | exit_lmode(vcpu); |
| 2835 | } |
| 2836 | #endif |
| 2837 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 2838 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2839 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 2840 | |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 2841 | if (!vcpu->fpu_active) |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2842 | hw_cr0 |= X86_CR0_TS | X86_CR0_MP; |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 2843 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2844 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2845 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2846 | vcpu->arch.cr0 = cr0; |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 2847 | __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2848 | } |
| 2849 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2850 | static u64 construct_eptp(unsigned long root_hpa) |
| 2851 | { |
| 2852 | u64 eptp; |
| 2853 | |
| 2854 | /* TODO write the value reading from MSR */ |
| 2855 | eptp = VMX_EPT_DEFAULT_MT | |
| 2856 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
| 2857 | eptp |= (root_hpa & PAGE_MASK); |
| 2858 | |
| 2859 | return eptp; |
| 2860 | } |
| 2861 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2862 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 2863 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2864 | unsigned long guest_cr3; |
| 2865 | u64 eptp; |
| 2866 | |
| 2867 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 2868 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2869 | eptp = construct_eptp(cr3); |
| 2870 | vmcs_write64(EPT_POINTER, eptp); |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 2871 | guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) : |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 2872 | vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 2873 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2874 | } |
| 2875 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2876 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2877 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2878 | } |
| 2879 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 2880 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2881 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2882 | unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ? |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2883 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
| 2884 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 2885 | if (cr4 & X86_CR4_VMXE) { |
| 2886 | /* |
| 2887 | * To use VMXON (and later other VMX instructions), a guest |
| 2888 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 2889 | * So basically the check on whether to allow nested VMX |
| 2890 | * is here. |
| 2891 | */ |
| 2892 | if (!nested_vmx_allowed(vcpu)) |
| 2893 | return 1; |
| 2894 | } else if (to_vmx(vcpu)->nested.vmxon) |
| 2895 | return 1; |
| 2896 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2897 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 2898 | if (enable_ept) { |
| 2899 | if (!is_paging(vcpu)) { |
| 2900 | hw_cr4 &= ~X86_CR4_PAE; |
| 2901 | hw_cr4 |= X86_CR4_PSE; |
| 2902 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 2903 | hw_cr4 &= ~X86_CR4_PAE; |
| 2904 | } |
| 2905 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 2906 | |
| 2907 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 2908 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 2909 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2910 | } |
| 2911 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2912 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 2913 | struct kvm_segment *var, int seg) |
| 2914 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2915 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2916 | struct kvm_save_segment *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2917 | u32 ar; |
| 2918 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2919 | if (vmx->rmode.vm86_active |
| 2920 | && (seg == VCPU_SREG_TR || seg == VCPU_SREG_ES |
| 2921 | || seg == VCPU_SREG_DS || seg == VCPU_SREG_FS |
| 2922 | || seg == VCPU_SREG_GS) |
| 2923 | && !emulate_invalid_guest_state) { |
| 2924 | switch (seg) { |
| 2925 | case VCPU_SREG_TR: save = &vmx->rmode.tr; break; |
| 2926 | case VCPU_SREG_ES: save = &vmx->rmode.es; break; |
| 2927 | case VCPU_SREG_DS: save = &vmx->rmode.ds; break; |
| 2928 | case VCPU_SREG_FS: save = &vmx->rmode.fs; break; |
| 2929 | case VCPU_SREG_GS: save = &vmx->rmode.gs; break; |
| 2930 | default: BUG(); |
| 2931 | } |
| 2932 | var->selector = save->selector; |
| 2933 | var->base = save->base; |
| 2934 | var->limit = save->limit; |
| 2935 | ar = save->ar; |
| 2936 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2937 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2938 | goto use_saved_rmode_seg; |
| 2939 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2940 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 2941 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 2942 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 2943 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2944 | use_saved_rmode_seg: |
Avi Kivity | 9fd4a3b | 2009-01-04 23:43:42 +0200 | [diff] [blame] | 2945 | if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2946 | ar = 0; |
| 2947 | var->type = ar & 15; |
| 2948 | var->s = (ar >> 4) & 1; |
| 2949 | var->dpl = (ar >> 5) & 3; |
| 2950 | var->present = (ar >> 7) & 1; |
| 2951 | var->avl = (ar >> 12) & 1; |
| 2952 | var->l = (ar >> 13) & 1; |
| 2953 | var->db = (ar >> 14) & 1; |
| 2954 | var->g = (ar >> 15) & 1; |
| 2955 | var->unusable = (ar >> 16) & 1; |
| 2956 | } |
| 2957 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2958 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 2959 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2960 | struct kvm_segment s; |
| 2961 | |
| 2962 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2963 | vmx_get_segment(vcpu, &s, seg); |
| 2964 | return s.base; |
| 2965 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2966 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 2967 | } |
| 2968 | |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 2969 | static int __vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 2970 | { |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 2971 | if (!is_protmode(vcpu)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 2972 | return 0; |
| 2973 | |
Avi Kivity | f4c63e5 | 2011-03-07 14:54:28 +0200 | [diff] [blame] | 2974 | if (!is_long_mode(vcpu) |
| 2975 | && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */ |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 2976 | return 3; |
| 2977 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2978 | return vmx_read_guest_seg_selector(to_vmx(vcpu), VCPU_SREG_CS) & 3; |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 2979 | } |
| 2980 | |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 2981 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
| 2982 | { |
| 2983 | if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) { |
| 2984 | __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
| 2985 | to_vmx(vcpu)->cpl = __vmx_get_cpl(vcpu); |
| 2986 | } |
| 2987 | return to_vmx(vcpu)->cpl; |
| 2988 | } |
| 2989 | |
| 2990 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 2991 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2992 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2993 | u32 ar; |
| 2994 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 2995 | if (var->unusable) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2996 | ar = 1 << 16; |
| 2997 | else { |
| 2998 | ar = var->type & 15; |
| 2999 | ar |= (var->s & 1) << 4; |
| 3000 | ar |= (var->dpl & 3) << 5; |
| 3001 | ar |= (var->present & 1) << 7; |
| 3002 | ar |= (var->avl & 1) << 12; |
| 3003 | ar |= (var->l & 1) << 13; |
| 3004 | ar |= (var->db & 1) << 14; |
| 3005 | ar |= (var->g & 1) << 15; |
| 3006 | } |
Uri Lublin | f7fbf1f | 2006-12-13 00:34:00 -0800 | [diff] [blame] | 3007 | if (ar == 0) /* a 0 value means unusable */ |
| 3008 | ar = AR_UNUSABLE_MASK; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3009 | |
| 3010 | return ar; |
| 3011 | } |
| 3012 | |
| 3013 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 3014 | struct kvm_segment *var, int seg) |
| 3015 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3016 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3017 | struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
| 3018 | u32 ar; |
| 3019 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3020 | vmx_segment_cache_clear(vmx); |
| 3021 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3022 | if (vmx->rmode.vm86_active && seg == VCPU_SREG_TR) { |
Gleb Natapov | a8ba6c2 | 2011-02-21 12:07:58 +0200 | [diff] [blame] | 3023 | vmcs_write16(sf->selector, var->selector); |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3024 | vmx->rmode.tr.selector = var->selector; |
| 3025 | vmx->rmode.tr.base = var->base; |
| 3026 | vmx->rmode.tr.limit = var->limit; |
| 3027 | vmx->rmode.tr.ar = vmx_segment_access_rights(var); |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3028 | return; |
| 3029 | } |
| 3030 | vmcs_writel(sf->base, var->base); |
| 3031 | vmcs_write32(sf->limit, var->limit); |
| 3032 | vmcs_write16(sf->selector, var->selector); |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3033 | if (vmx->rmode.vm86_active && var->s) { |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3034 | /* |
| 3035 | * Hack real-mode segments into vm86 compatibility. |
| 3036 | */ |
| 3037 | if (var->base == 0xffff0000 && var->selector == 0xf000) |
| 3038 | vmcs_writel(sf->base, 0xf0000); |
| 3039 | ar = 0xf3; |
| 3040 | } else |
| 3041 | ar = vmx_segment_access_rights(var); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3042 | |
| 3043 | /* |
| 3044 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 3045 | * qemu binaries. |
| 3046 | * IA32 arch specifies that at the time of processor reset the |
| 3047 | * "Accessed" bit in the AR field of segment registers is 1. And qemu |
| 3048 | * is setting it to 0 in the usedland code. This causes invalid guest |
| 3049 | * state vmexit when "unrestricted guest" mode is turned on. |
| 3050 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 3051 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 3052 | * kvm hack. |
| 3053 | */ |
| 3054 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
| 3055 | ar |= 0x1; /* Accessed */ |
| 3056 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3057 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3058 | __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3059 | } |
| 3060 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3061 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 3062 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3063 | u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3064 | |
| 3065 | *db = (ar >> 14) & 1; |
| 3066 | *l = (ar >> 13) & 1; |
| 3067 | } |
| 3068 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3069 | static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3070 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3071 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 3072 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3073 | } |
| 3074 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3075 | static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3076 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3077 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 3078 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3079 | } |
| 3080 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3081 | static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3082 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3083 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 3084 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3085 | } |
| 3086 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3087 | static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3088 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3089 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 3090 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3091 | } |
| 3092 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3093 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3094 | { |
| 3095 | struct kvm_segment var; |
| 3096 | u32 ar; |
| 3097 | |
| 3098 | vmx_get_segment(vcpu, &var, seg); |
| 3099 | ar = vmx_segment_access_rights(&var); |
| 3100 | |
| 3101 | if (var.base != (var.selector << 4)) |
| 3102 | return false; |
| 3103 | if (var.limit != 0xffff) |
| 3104 | return false; |
| 3105 | if (ar != 0xf3) |
| 3106 | return false; |
| 3107 | |
| 3108 | return true; |
| 3109 | } |
| 3110 | |
| 3111 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 3112 | { |
| 3113 | struct kvm_segment cs; |
| 3114 | unsigned int cs_rpl; |
| 3115 | |
| 3116 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 3117 | cs_rpl = cs.selector & SELECTOR_RPL_MASK; |
| 3118 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3119 | if (cs.unusable) |
| 3120 | return false; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3121 | if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK)) |
| 3122 | return false; |
| 3123 | if (!cs.s) |
| 3124 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3125 | if (cs.type & AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3126 | if (cs.dpl > cs_rpl) |
| 3127 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3128 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3129 | if (cs.dpl != cs_rpl) |
| 3130 | return false; |
| 3131 | } |
| 3132 | if (!cs.present) |
| 3133 | return false; |
| 3134 | |
| 3135 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 3136 | return true; |
| 3137 | } |
| 3138 | |
| 3139 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 3140 | { |
| 3141 | struct kvm_segment ss; |
| 3142 | unsigned int ss_rpl; |
| 3143 | |
| 3144 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 3145 | ss_rpl = ss.selector & SELECTOR_RPL_MASK; |
| 3146 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3147 | if (ss.unusable) |
| 3148 | return true; |
| 3149 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3150 | return false; |
| 3151 | if (!ss.s) |
| 3152 | return false; |
| 3153 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 3154 | return false; |
| 3155 | if (!ss.present) |
| 3156 | return false; |
| 3157 | |
| 3158 | return true; |
| 3159 | } |
| 3160 | |
| 3161 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3162 | { |
| 3163 | struct kvm_segment var; |
| 3164 | unsigned int rpl; |
| 3165 | |
| 3166 | vmx_get_segment(vcpu, &var, seg); |
| 3167 | rpl = var.selector & SELECTOR_RPL_MASK; |
| 3168 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3169 | if (var.unusable) |
| 3170 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3171 | if (!var.s) |
| 3172 | return false; |
| 3173 | if (!var.present) |
| 3174 | return false; |
| 3175 | if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) { |
| 3176 | if (var.dpl < rpl) /* DPL < RPL */ |
| 3177 | return false; |
| 3178 | } |
| 3179 | |
| 3180 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 3181 | * rights flags |
| 3182 | */ |
| 3183 | return true; |
| 3184 | } |
| 3185 | |
| 3186 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 3187 | { |
| 3188 | struct kvm_segment tr; |
| 3189 | |
| 3190 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 3191 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3192 | if (tr.unusable) |
| 3193 | return false; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3194 | if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */ |
| 3195 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3196 | if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3197 | return false; |
| 3198 | if (!tr.present) |
| 3199 | return false; |
| 3200 | |
| 3201 | return true; |
| 3202 | } |
| 3203 | |
| 3204 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 3205 | { |
| 3206 | struct kvm_segment ldtr; |
| 3207 | |
| 3208 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 3209 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3210 | if (ldtr.unusable) |
| 3211 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3212 | if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */ |
| 3213 | return false; |
| 3214 | if (ldtr.type != 2) |
| 3215 | return false; |
| 3216 | if (!ldtr.present) |
| 3217 | return false; |
| 3218 | |
| 3219 | return true; |
| 3220 | } |
| 3221 | |
| 3222 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 3223 | { |
| 3224 | struct kvm_segment cs, ss; |
| 3225 | |
| 3226 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 3227 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 3228 | |
| 3229 | return ((cs.selector & SELECTOR_RPL_MASK) == |
| 3230 | (ss.selector & SELECTOR_RPL_MASK)); |
| 3231 | } |
| 3232 | |
| 3233 | /* |
| 3234 | * Check if guest state is valid. Returns true if valid, false if |
| 3235 | * not. |
| 3236 | * We assume that registers are always usable |
| 3237 | */ |
| 3238 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 3239 | { |
| 3240 | /* real mode guest state checks */ |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 3241 | if (!is_protmode(vcpu)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3242 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 3243 | return false; |
| 3244 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 3245 | return false; |
| 3246 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 3247 | return false; |
| 3248 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 3249 | return false; |
| 3250 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 3251 | return false; |
| 3252 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 3253 | return false; |
| 3254 | } else { |
| 3255 | /* protected mode guest state checks */ |
| 3256 | if (!cs_ss_rpl_check(vcpu)) |
| 3257 | return false; |
| 3258 | if (!code_segment_valid(vcpu)) |
| 3259 | return false; |
| 3260 | if (!stack_segment_valid(vcpu)) |
| 3261 | return false; |
| 3262 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 3263 | return false; |
| 3264 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 3265 | return false; |
| 3266 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 3267 | return false; |
| 3268 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 3269 | return false; |
| 3270 | if (!tr_valid(vcpu)) |
| 3271 | return false; |
| 3272 | if (!ldtr_valid(vcpu)) |
| 3273 | return false; |
| 3274 | } |
| 3275 | /* TODO: |
| 3276 | * - Add checks on RIP |
| 3277 | * - Add checks on RFLAGS |
| 3278 | */ |
| 3279 | |
| 3280 | return true; |
| 3281 | } |
| 3282 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3283 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3284 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3285 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3286 | u16 data = 0; |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3287 | int r, idx, ret = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3288 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3289 | idx = srcu_read_lock(&kvm->srcu); |
| 3290 | fn = rmode_tss_base(kvm) >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3291 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 3292 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3293 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3294 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 3295 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 3296 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3297 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3298 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3299 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 3300 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3301 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3302 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 3303 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3304 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3305 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3306 | r = kvm_write_guest_page(kvm, fn, &data, |
| 3307 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 3308 | sizeof(u8)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3309 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3310 | goto out; |
| 3311 | |
| 3312 | ret = 1; |
| 3313 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3314 | srcu_read_unlock(&kvm->srcu, idx); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3315 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3316 | } |
| 3317 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3318 | static int init_rmode_identity_map(struct kvm *kvm) |
| 3319 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3320 | int i, idx, r, ret; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3321 | pfn_t identity_map_pfn; |
| 3322 | u32 tmp; |
| 3323 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3324 | if (!enable_ept) |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3325 | return 1; |
| 3326 | if (unlikely(!kvm->arch.ept_identity_pagetable)) { |
| 3327 | printk(KERN_ERR "EPT: identity-mapping pagetable " |
| 3328 | "haven't been allocated!\n"); |
| 3329 | return 0; |
| 3330 | } |
| 3331 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
| 3332 | return 1; |
| 3333 | ret = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3334 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3335 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3336 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 3337 | if (r < 0) |
| 3338 | goto out; |
| 3339 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 3340 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 3341 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 3342 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 3343 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 3344 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 3345 | if (r < 0) |
| 3346 | goto out; |
| 3347 | } |
| 3348 | kvm->arch.ept_identity_pagetable_done = true; |
| 3349 | ret = 1; |
| 3350 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3351 | srcu_read_unlock(&kvm->srcu, idx); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3352 | return ret; |
| 3353 | } |
| 3354 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3355 | static void seg_setup(int seg) |
| 3356 | { |
| 3357 | struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3358 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3359 | |
| 3360 | vmcs_write16(sf->selector, 0); |
| 3361 | vmcs_writel(sf->base, 0); |
| 3362 | vmcs_write32(sf->limit, 0xffff); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3363 | if (enable_unrestricted_guest) { |
| 3364 | ar = 0x93; |
| 3365 | if (seg == VCPU_SREG_CS) |
| 3366 | ar |= 0x08; /* code segment */ |
| 3367 | } else |
| 3368 | ar = 0xf3; |
| 3369 | |
| 3370 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3371 | } |
| 3372 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3373 | static int alloc_apic_access_page(struct kvm *kvm) |
| 3374 | { |
| 3375 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 3376 | int r = 0; |
| 3377 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3378 | mutex_lock(&kvm->slots_lock); |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 3379 | if (kvm->arch.apic_access_page) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3380 | goto out; |
| 3381 | kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT; |
| 3382 | kvm_userspace_mem.flags = 0; |
| 3383 | kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL; |
| 3384 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
| 3385 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0); |
| 3386 | if (r) |
| 3387 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 3388 | |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 3389 | kvm->arch.apic_access_page = gfn_to_page(kvm, 0xfee00); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3390 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3391 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3392 | return r; |
| 3393 | } |
| 3394 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3395 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 3396 | { |
| 3397 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 3398 | int r = 0; |
| 3399 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3400 | mutex_lock(&kvm->slots_lock); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3401 | if (kvm->arch.ept_identity_pagetable) |
| 3402 | goto out; |
| 3403 | kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT; |
| 3404 | kvm_userspace_mem.flags = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3405 | kvm_userspace_mem.guest_phys_addr = |
| 3406 | kvm->arch.ept_identity_map_addr; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3407 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
| 3408 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, 0); |
| 3409 | if (r) |
| 3410 | goto out; |
| 3411 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3412 | kvm->arch.ept_identity_pagetable = gfn_to_page(kvm, |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3413 | kvm->arch.ept_identity_map_addr >> PAGE_SHIFT); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3414 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3415 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3416 | return r; |
| 3417 | } |
| 3418 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3419 | static void allocate_vpid(struct vcpu_vmx *vmx) |
| 3420 | { |
| 3421 | int vpid; |
| 3422 | |
| 3423 | vmx->vpid = 0; |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 3424 | if (!enable_vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3425 | return; |
| 3426 | spin_lock(&vmx_vpid_lock); |
| 3427 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 3428 | if (vpid < VMX_NR_VPIDS) { |
| 3429 | vmx->vpid = vpid; |
| 3430 | __set_bit(vpid, vmx_vpid_bitmap); |
| 3431 | } |
| 3432 | spin_unlock(&vmx_vpid_lock); |
| 3433 | } |
| 3434 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 3435 | static void free_vpid(struct vcpu_vmx *vmx) |
| 3436 | { |
| 3437 | if (!enable_vpid) |
| 3438 | return; |
| 3439 | spin_lock(&vmx_vpid_lock); |
| 3440 | if (vmx->vpid != 0) |
| 3441 | __clear_bit(vmx->vpid, vmx_vpid_bitmap); |
| 3442 | spin_unlock(&vmx_vpid_lock); |
| 3443 | } |
| 3444 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3445 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, u32 msr) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3446 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3447 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3448 | |
| 3449 | if (!cpu_has_vmx_msr_bitmap()) |
| 3450 | return; |
| 3451 | |
| 3452 | /* |
| 3453 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 3454 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 3455 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 3456 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3457 | if (msr <= 0x1fff) { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3458 | __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */ |
| 3459 | __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3460 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 3461 | msr &= 0x1fff; |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3462 | __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */ |
| 3463 | __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3464 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3465 | } |
| 3466 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3467 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 3468 | { |
| 3469 | if (!longmode_only) |
| 3470 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr); |
| 3471 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr); |
| 3472 | } |
| 3473 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3474 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3475 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 3476 | * will not change in the lifetime of the guest. |
| 3477 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 3478 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 3479 | */ |
| 3480 | static void vmx_set_constant_host_state(void) |
| 3481 | { |
| 3482 | u32 low32, high32; |
| 3483 | unsigned long tmpl; |
| 3484 | struct desc_ptr dt; |
| 3485 | |
| 3486 | vmcs_writel(HOST_CR0, read_cr0() | X86_CR0_TS); /* 22.2.3 */ |
| 3487 | vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */ |
| 3488 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 3489 | |
| 3490 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
| 3491 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 3492 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 3493 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 3494 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 3495 | |
| 3496 | native_store_idt(&dt); |
| 3497 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
| 3498 | |
| 3499 | asm("mov $.Lkvm_vmx_return, %0" : "=r"(tmpl)); |
| 3500 | vmcs_writel(HOST_RIP, tmpl); /* 22.2.5 */ |
| 3501 | |
| 3502 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 3503 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 3504 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 3505 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 3506 | |
| 3507 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 3508 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 3509 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 3510 | } |
| 3511 | } |
| 3512 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3513 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 3514 | { |
| 3515 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 3516 | if (enable_ept) |
| 3517 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 3518 | if (is_guest_mode(&vmx->vcpu)) |
| 3519 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 3520 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3521 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 3522 | } |
| 3523 | |
| 3524 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 3525 | { |
| 3526 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
| 3527 | if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) { |
| 3528 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3529 | #ifdef CONFIG_X86_64 |
| 3530 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 3531 | CPU_BASED_CR8_LOAD_EXITING; |
| 3532 | #endif |
| 3533 | } |
| 3534 | if (!enable_ept) |
| 3535 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 3536 | CPU_BASED_CR3_LOAD_EXITING | |
| 3537 | CPU_BASED_INVLPG_EXITING; |
| 3538 | return exec_control; |
| 3539 | } |
| 3540 | |
| 3541 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 3542 | { |
| 3543 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
| 3544 | if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) |
| 3545 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 3546 | if (vmx->vpid == 0) |
| 3547 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 3548 | if (!enable_ept) { |
| 3549 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 3550 | enable_unrestricted_guest = 0; |
| 3551 | } |
| 3552 | if (!enable_unrestricted_guest) |
| 3553 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 3554 | if (!ple_gap) |
| 3555 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 3556 | return exec_control; |
| 3557 | } |
| 3558 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3559 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3560 | * Sets up the vmcs for emulated real mode. |
| 3561 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3562 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3563 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3564 | unsigned long a; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3565 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3566 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3567 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3568 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 3569 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3570 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3571 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3572 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3573 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3574 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 3575 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3576 | /* Control */ |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3577 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, |
| 3578 | vmcs_config.pin_based_exec_ctrl); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3579 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3580 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3581 | |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 3582 | if (cpu_has_secondary_exec_ctrls()) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3583 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 3584 | vmx_secondary_exec_control(vmx)); |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 3585 | } |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3586 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3587 | if (ple_gap) { |
| 3588 | vmcs_write32(PLE_GAP, ple_gap); |
| 3589 | vmcs_write32(PLE_WINDOW, ple_window); |
| 3590 | } |
| 3591 | |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 3592 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, !!bypass_guest_pf); |
| 3593 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, !!bypass_guest_pf); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3594 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 3595 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 3596 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 3597 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3598 | vmx_set_constant_host_state(); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3599 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3600 | rdmsrl(MSR_FS_BASE, a); |
| 3601 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 3602 | rdmsrl(MSR_GS_BASE, a); |
| 3603 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 3604 | #else |
| 3605 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 3606 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 3607 | #endif |
| 3608 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3609 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 3610 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 3611 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3612 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 3613 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3614 | |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3615 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3616 | u32 msr_low, msr_high; |
| 3617 | u64 host_pat; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3618 | rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high); |
| 3619 | host_pat = msr_low | ((u64) msr_high << 32); |
| 3620 | /* Write the default value follow host pat */ |
| 3621 | vmcs_write64(GUEST_IA32_PAT, host_pat); |
| 3622 | /* Keep arch.pat sync with GUEST_IA32_PAT */ |
| 3623 | vmx->vcpu.arch.pat = host_pat; |
| 3624 | } |
| 3625 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3626 | for (i = 0; i < NR_VMX_MSR; ++i) { |
| 3627 | u32 index = vmx_msr_index[i]; |
| 3628 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3629 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3630 | |
| 3631 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 3632 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 3633 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 3634 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3635 | vmx->guest_msrs[j].index = i; |
| 3636 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 3637 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3638 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3639 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3640 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3641 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3642 | |
| 3643 | /* 22.2.1, 20.8.1 */ |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3644 | vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl); |
| 3645 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3646 | vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3647 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3648 | |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 3649 | kvm_write_tsc(&vmx->vcpu, 0); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3650 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3651 | return 0; |
| 3652 | } |
| 3653 | |
| 3654 | static int vmx_vcpu_reset(struct kvm_vcpu *vcpu) |
| 3655 | { |
| 3656 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3657 | u64 msr; |
Xiao Guangrong | 4b9d3a0 | 2010-06-08 10:15:51 +0800 | [diff] [blame] | 3658 | int ret; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3659 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3660 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3661 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3662 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3663 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3664 | vmx->soft_vnmi_blocked = 0; |
| 3665 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3666 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 3667 | kvm_set_cr8(&vmx->vcpu, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3668 | msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE; |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 3669 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3670 | msr |= MSR_IA32_APICBASE_BSP; |
| 3671 | kvm_set_apic_base(&vmx->vcpu, msr); |
| 3672 | |
Jan Kiszka | 10ab25c | 2010-05-25 16:01:50 +0200 | [diff] [blame] | 3673 | ret = fx_init(&vmx->vcpu); |
| 3674 | if (ret != 0) |
| 3675 | goto out; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3676 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3677 | vmx_segment_cache_clear(vmx); |
| 3678 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 3679 | seg_setup(VCPU_SREG_CS); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3680 | /* |
| 3681 | * GUEST_CS_BASE should really be 0xffff0000, but VT vm86 mode |
| 3682 | * insists on having GUEST_CS_BASE == GUEST_CS_SELECTOR << 4. Sigh. |
| 3683 | */ |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 3684 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) { |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3685 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
| 3686 | vmcs_writel(GUEST_CS_BASE, 0x000f0000); |
| 3687 | } else { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3688 | vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8); |
| 3689 | vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3690 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3691 | |
| 3692 | seg_setup(VCPU_SREG_DS); |
| 3693 | seg_setup(VCPU_SREG_ES); |
| 3694 | seg_setup(VCPU_SREG_FS); |
| 3695 | seg_setup(VCPU_SREG_GS); |
| 3696 | seg_setup(VCPU_SREG_SS); |
| 3697 | |
| 3698 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 3699 | vmcs_writel(GUEST_TR_BASE, 0); |
| 3700 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 3701 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3702 | |
| 3703 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 3704 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 3705 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 3706 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 3707 | |
| 3708 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 3709 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 3710 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 3711 | |
| 3712 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 3713 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3714 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3715 | else |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3716 | kvm_rip_write(vcpu, 0); |
| 3717 | kvm_register_write(vcpu, VCPU_REGS_RSP, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3718 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3719 | vmcs_writel(GUEST_DR7, 0x400); |
| 3720 | |
| 3721 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 3722 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 3723 | |
| 3724 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 3725 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 3726 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3727 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3728 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
| 3729 | vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
| 3730 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3731 | /* Special registers */ |
| 3732 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 3733 | |
| 3734 | setup_msrs(vmx); |
| 3735 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3736 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 3737 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3738 | if (cpu_has_vmx_tpr_shadow()) { |
| 3739 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
| 3740 | if (vm_need_tpr_shadow(vmx->vcpu.kvm)) |
| 3741 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Takuya Yoshikawa | afc2018 | 2011-03-05 12:40:20 +0900 | [diff] [blame] | 3742 | __pa(vmx->vcpu.arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3743 | vmcs_write32(TPR_THRESHOLD, 0); |
| 3744 | } |
| 3745 | |
| 3746 | if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) |
| 3747 | vmcs_write64(APIC_ACCESS_ADDR, |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 3748 | page_to_phys(vmx->vcpu.kvm->arch.apic_access_page)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3749 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3750 | if (vmx->vpid != 0) |
| 3751 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 3752 | |
Eduardo Habkost | fa40052 | 2009-10-24 02:49:58 -0200 | [diff] [blame] | 3753 | vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 3754 | vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3755 | vmx_set_cr4(&vmx->vcpu, 0); |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3756 | vmx_set_efer(&vmx->vcpu, 0); |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3757 | vmx_fpu_activate(&vmx->vcpu); |
| 3758 | update_exception_bitmap(&vmx->vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3759 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 3760 | vpid_sync_context(vmx); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3761 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 3762 | ret = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3763 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3764 | /* HACK: Don't enable emulation on guest boot/reset */ |
| 3765 | vmx->emulation_required = 0; |
| 3766 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3767 | out: |
| 3768 | return ret; |
| 3769 | } |
| 3770 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 3771 | /* |
| 3772 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 3773 | * For most existing hypervisors, this will always return true. |
| 3774 | */ |
| 3775 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 3776 | { |
| 3777 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 3778 | PIN_BASED_EXT_INTR_MASK; |
| 3779 | } |
| 3780 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3781 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
| 3782 | { |
| 3783 | u32 cpu_based_vm_exec_control; |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 3784 | if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) |
| 3785 | /* We can get here when nested_run_pending caused |
| 3786 | * vmx_interrupt_allowed() to return false. In this case, do |
| 3787 | * nothing - the interrupt will be injected later. |
| 3788 | */ |
| 3789 | return; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3790 | |
| 3791 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 3792 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING; |
| 3793 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 3794 | } |
| 3795 | |
| 3796 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
| 3797 | { |
| 3798 | u32 cpu_based_vm_exec_control; |
| 3799 | |
| 3800 | if (!cpu_has_virtual_nmis()) { |
| 3801 | enable_irq_window(vcpu); |
| 3802 | return; |
| 3803 | } |
| 3804 | |
Avi Kivity | 30bd0c4 | 2010-11-01 23:20:48 +0200 | [diff] [blame] | 3805 | if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 3806 | enable_irq_window(vcpu); |
| 3807 | return; |
| 3808 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3809 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 3810 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING; |
| 3811 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 3812 | } |
| 3813 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 3814 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 3815 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 3816 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 3817 | uint32_t intr; |
| 3818 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 3819 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 3820 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 3821 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 3822 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3823 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 3824 | int inc_eip = 0; |
| 3825 | if (vcpu->arch.interrupt.soft) |
| 3826 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 3827 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 3828 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 3829 | return; |
| 3830 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 3831 | intr = irq | INTR_INFO_VALID_MASK; |
| 3832 | if (vcpu->arch.interrupt.soft) { |
| 3833 | intr |= INTR_TYPE_SOFT_INTR; |
| 3834 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 3835 | vmx->vcpu.arch.event_exit_inst_len); |
| 3836 | } else |
| 3837 | intr |= INTR_TYPE_EXT_INTR; |
| 3838 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3839 | vmx_clear_hlt(vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 3840 | } |
| 3841 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 3842 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 3843 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 3844 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3845 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame^] | 3846 | if (is_guest_mode(vcpu)) |
| 3847 | return; |
| 3848 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3849 | if (!cpu_has_virtual_nmis()) { |
| 3850 | /* |
| 3851 | * Tracking the NMI-blocked state in software is built upon |
| 3852 | * finding the next open IRQ window. This, in turn, depends on |
| 3853 | * well-behaving guests: They have to keep IRQs disabled at |
| 3854 | * least as long as the NMI handler runs. Otherwise we may |
| 3855 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 3856 | * highly unlikely, we can live with the residual risk. |
| 3857 | */ |
| 3858 | vmx->soft_vnmi_blocked = 1; |
| 3859 | vmx->vnmi_blocked_time = 0; |
| 3860 | } |
| 3861 | |
Jan Kiszka | 487b391 | 2008-09-26 09:30:56 +0200 | [diff] [blame] | 3862 | ++vcpu->stat.nmi_injections; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 3863 | vmx->nmi_known_unmasked = false; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3864 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 3865 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 3866 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 3867 | return; |
| 3868 | } |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 3869 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 3870 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3871 | vmx_clear_hlt(vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 3872 | } |
| 3873 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 3874 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 3875 | { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3876 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 3877 | return 0; |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 3878 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 3879 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
Avi Kivity | 30bd0c4 | 2010-11-01 23:20:48 +0200 | [diff] [blame] | 3880 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 3881 | | GUEST_INTR_STATE_NMI)); |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 3882 | } |
| 3883 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3884 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 3885 | { |
| 3886 | if (!cpu_has_virtual_nmis()) |
| 3887 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 3888 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 3889 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 3890 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3891 | } |
| 3892 | |
| 3893 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 3894 | { |
| 3895 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3896 | |
| 3897 | if (!cpu_has_virtual_nmis()) { |
| 3898 | if (vmx->soft_vnmi_blocked != masked) { |
| 3899 | vmx->soft_vnmi_blocked = masked; |
| 3900 | vmx->vnmi_blocked_time = 0; |
| 3901 | } |
| 3902 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 3903 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3904 | if (masked) |
| 3905 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 3906 | GUEST_INTR_STATE_NMI); |
| 3907 | else |
| 3908 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 3909 | GUEST_INTR_STATE_NMI); |
| 3910 | } |
| 3911 | } |
| 3912 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 3913 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 3914 | { |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 3915 | if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) { |
| 3916 | struct vmcs12 *vmcs12; |
| 3917 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 3918 | return 0; |
| 3919 | nested_vmx_vmexit(vcpu); |
| 3920 | vmcs12 = get_vmcs12(vcpu); |
| 3921 | vmcs12->vm_exit_reason = EXIT_REASON_EXTERNAL_INTERRUPT; |
| 3922 | vmcs12->vm_exit_intr_info = 0; |
| 3923 | /* fall through to normal code, but now in L1, not L2 */ |
| 3924 | } |
| 3925 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 3926 | return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
| 3927 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 3928 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 3929 | } |
| 3930 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 3931 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 3932 | { |
| 3933 | int ret; |
| 3934 | struct kvm_userspace_memory_region tss_mem = { |
Sheng Yang | 6fe6397 | 2008-10-16 17:30:58 +0800 | [diff] [blame] | 3935 | .slot = TSS_PRIVATE_MEMSLOT, |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 3936 | .guest_phys_addr = addr, |
| 3937 | .memory_size = PAGE_SIZE * 3, |
| 3938 | .flags = 0, |
| 3939 | }; |
| 3940 | |
| 3941 | ret = kvm_set_memory_region(kvm, &tss_mem, 0); |
| 3942 | if (ret) |
| 3943 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 3944 | kvm->arch.tss_addr = addr; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 3945 | if (!init_rmode_tss(kvm)) |
| 3946 | return -ENOMEM; |
| 3947 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 3948 | return 0; |
| 3949 | } |
| 3950 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3951 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 3952 | int vec, u32 err_code) |
| 3953 | { |
Nitin A Kamble | b3f3770 | 2007-05-17 15:50:34 +0300 | [diff] [blame] | 3954 | /* |
| 3955 | * Instruction with address size override prefix opcode 0x67 |
| 3956 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 3957 | */ |
| 3958 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 3959 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3960 | return 1; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 3961 | /* |
| 3962 | * Forward all other exceptions that are valid in real mode. |
| 3963 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 3964 | * the required debugging infrastructure rework. |
| 3965 | */ |
| 3966 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 3967 | case DB_VECTOR: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 3968 | if (vcpu->guest_debug & |
| 3969 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 3970 | return 0; |
| 3971 | kvm_queue_exception(vcpu, vec); |
| 3972 | return 1; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 3973 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 3974 | /* |
| 3975 | * Update instruction length as we may reinject the exception |
| 3976 | * from user space while in guest debugging mode. |
| 3977 | */ |
| 3978 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 3979 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 3980 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
| 3981 | return 0; |
| 3982 | /* fall through */ |
| 3983 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 3984 | case OF_VECTOR: |
| 3985 | case BR_VECTOR: |
| 3986 | case UD_VECTOR: |
| 3987 | case DF_VECTOR: |
| 3988 | case SS_VECTOR: |
| 3989 | case GP_VECTOR: |
| 3990 | case MF_VECTOR: |
| 3991 | kvm_queue_exception(vcpu, vec); |
| 3992 | return 1; |
| 3993 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3994 | return 0; |
| 3995 | } |
| 3996 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 3997 | /* |
| 3998 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 3999 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 4000 | * We pass a fake environment to the machine check handler because we want |
| 4001 | * the guest to be always treated like user space, no matter what context |
| 4002 | * it used internally. |
| 4003 | */ |
| 4004 | static void kvm_machine_check(void) |
| 4005 | { |
| 4006 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 4007 | struct pt_regs regs = { |
| 4008 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 4009 | .flags = X86_EFLAGS_IF, |
| 4010 | }; |
| 4011 | |
| 4012 | do_machine_check(®s, 0); |
| 4013 | #endif |
| 4014 | } |
| 4015 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4016 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4017 | { |
| 4018 | /* already handled by vcpu_run */ |
| 4019 | return 1; |
| 4020 | } |
| 4021 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4022 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4023 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 4024 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4025 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4026 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4027 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4028 | u32 vect_info; |
| 4029 | enum emulation_result er; |
| 4030 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 4031 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 4032 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4033 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4034 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4035 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4036 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4037 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
Avi Kivity | 65ac726 | 2009-11-04 11:59:01 +0200 | [diff] [blame] | 4038 | !is_page_fault(intr_info)) { |
| 4039 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 4040 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
| 4041 | vcpu->run->internal.ndata = 2; |
| 4042 | vcpu->run->internal.data[0] = vect_info; |
| 4043 | vcpu->run->internal.data[1] = intr_info; |
| 4044 | return 0; |
| 4045 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4046 | |
Jan Kiszka | e4a4188 | 2008-09-26 09:30:46 +0200 | [diff] [blame] | 4047 | if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 4048 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 4049 | |
| 4050 | if (is_no_device(intr_info)) { |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 4051 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 4052 | return 1; |
| 4053 | } |
| 4054 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4055 | if (is_invalid_opcode(intr_info)) { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4056 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4057 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 4058 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4059 | return 1; |
| 4060 | } |
| 4061 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4062 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 4063 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4064 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
| 4065 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4066 | /* EPT won't cause page fault directly */ |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4067 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4068 | BUG(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4069 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4070 | trace_kvm_page_fault(cr2, error_code); |
| 4071 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 4072 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 4073 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 4074 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4075 | } |
| 4076 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4077 | if (vmx->rmode.vm86_active && |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4078 | handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK, |
Avi Kivity | 72d6e5a | 2007-06-05 16:15:51 +0300 | [diff] [blame] | 4079 | error_code)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4080 | if (vcpu->arch.halt_request) { |
| 4081 | vcpu->arch.halt_request = 0; |
Avi Kivity | 72d6e5a | 2007-06-05 16:15:51 +0300 | [diff] [blame] | 4082 | return kvm_emulate_halt(vcpu); |
| 4083 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4084 | return 1; |
Avi Kivity | 72d6e5a | 2007-06-05 16:15:51 +0300 | [diff] [blame] | 4085 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4086 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4087 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4088 | switch (ex_no) { |
| 4089 | case DB_VECTOR: |
| 4090 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 4091 | if (!(vcpu->guest_debug & |
| 4092 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
| 4093 | vcpu->arch.dr6 = dr6 | DR6_FIXED_1; |
| 4094 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 4095 | return 1; |
| 4096 | } |
| 4097 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 4098 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 4099 | /* fall through */ |
| 4100 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 4101 | /* |
| 4102 | * Update instruction length as we may reinject #BP from |
| 4103 | * user space while in guest debugging mode. Reading it for |
| 4104 | * #DB as well causes no harm, it is not used in that case. |
| 4105 | */ |
| 4106 | vmx->vcpu.arch.event_exit_inst_len = |
| 4107 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4108 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 4109 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4110 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 4111 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4112 | break; |
| 4113 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4114 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 4115 | kvm_run->ex.exception = ex_no; |
| 4116 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4117 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4118 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4119 | return 0; |
| 4120 | } |
| 4121 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4122 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4123 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 4124 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4125 | return 1; |
| 4126 | } |
| 4127 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4128 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 4129 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4130 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 4131 | return 0; |
| 4132 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4133 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4134 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4135 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4136 | unsigned long exit_qualification; |
Jan Kiszka | 34c33d1 | 2009-02-08 13:28:15 +0100 | [diff] [blame] | 4137 | int size, in, string; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 4138 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4139 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4140 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 4141 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 4142 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 4143 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4144 | ++vcpu->stat.io_exits; |
| 4145 | |
| 4146 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4147 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4148 | |
| 4149 | port = exit_qualification >> 16; |
| 4150 | size = (exit_qualification & 7) + 1; |
Guillaume Thouvenin | e93f36b | 2008-10-28 10:51:30 +0100 | [diff] [blame] | 4151 | skip_emulated_instruction(vcpu); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4152 | |
| 4153 | return kvm_fast_pio_out(vcpu, size, port); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4154 | } |
| 4155 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4156 | static void |
| 4157 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 4158 | { |
| 4159 | /* |
| 4160 | * Patch in the VMCALL instruction: |
| 4161 | */ |
| 4162 | hypercall[0] = 0x0f; |
| 4163 | hypercall[1] = 0x01; |
| 4164 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4165 | } |
| 4166 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4167 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4168 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4169 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4170 | int cr; |
| 4171 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 4172 | int err; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4173 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4174 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4175 | cr = exit_qualification & 15; |
| 4176 | reg = (exit_qualification >> 8) & 15; |
| 4177 | switch ((exit_qualification >> 4) & 3) { |
| 4178 | case 0: /* mov to cr */ |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4179 | val = kvm_register_read(vcpu, reg); |
| 4180 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4181 | switch (cr) { |
| 4182 | case 0: |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 4183 | err = kvm_set_cr0(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4184 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4185 | return 1; |
| 4186 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 4187 | err = kvm_set_cr3(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4188 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4189 | return 1; |
| 4190 | case 4: |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 4191 | err = kvm_set_cr4(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4192 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4193 | return 1; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4194 | case 8: { |
| 4195 | u8 cr8_prev = kvm_get_cr8(vcpu); |
| 4196 | u8 cr8 = kvm_register_read(vcpu, reg); |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 4197 | err = kvm_set_cr8(vcpu, cr8); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4198 | kvm_complete_insn_gp(vcpu, err); |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4199 | if (irqchip_in_kernel(vcpu->kvm)) |
| 4200 | return 1; |
| 4201 | if (cr8_prev <= cr8) |
| 4202 | return 1; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4203 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4204 | return 0; |
| 4205 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4206 | }; |
| 4207 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4208 | case 2: /* clts */ |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 4209 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 4210 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4211 | skip_emulated_instruction(vcpu); |
Avi Kivity | 6b52d18 | 2010-01-21 15:31:47 +0200 | [diff] [blame] | 4212 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4213 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4214 | case 1: /*mov from cr*/ |
| 4215 | switch (cr) { |
| 4216 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 4217 | val = kvm_read_cr3(vcpu); |
| 4218 | kvm_register_write(vcpu, reg, val); |
| 4219 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4220 | skip_emulated_instruction(vcpu); |
| 4221 | return 1; |
| 4222 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4223 | val = kvm_get_cr8(vcpu); |
| 4224 | kvm_register_write(vcpu, reg, val); |
| 4225 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4226 | skip_emulated_instruction(vcpu); |
| 4227 | return 1; |
| 4228 | } |
| 4229 | break; |
| 4230 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 4231 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 4232 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 4233 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4234 | |
| 4235 | skip_emulated_instruction(vcpu); |
| 4236 | return 1; |
| 4237 | default: |
| 4238 | break; |
| 4239 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4240 | vcpu->run->exit_reason = 0; |
Rusty Russell | f024247 | 2007-08-01 10:48:02 +1000 | [diff] [blame] | 4241 | pr_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4242 | (int)(exit_qualification >> 4) & 3, cr); |
| 4243 | return 0; |
| 4244 | } |
| 4245 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4246 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4247 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4248 | unsigned long exit_qualification; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4249 | int dr, reg; |
| 4250 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 4251 | /* Do not handle if the CPL > 0, will trigger GP on re-entry */ |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 4252 | if (!kvm_require_cpl(vcpu, 0)) |
| 4253 | return 1; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4254 | dr = vmcs_readl(GUEST_DR7); |
| 4255 | if (dr & DR7_GD) { |
| 4256 | /* |
| 4257 | * As the vm-exit takes precedence over the debug trap, we |
| 4258 | * need to emulate the latter, either for the host or the |
| 4259 | * guest debugging itself. |
| 4260 | */ |
| 4261 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4262 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
| 4263 | vcpu->run->debug.arch.dr7 = dr; |
| 4264 | vcpu->run->debug.arch.pc = |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4265 | vmcs_readl(GUEST_CS_BASE) + |
| 4266 | vmcs_readl(GUEST_RIP); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4267 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 4268 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4269 | return 0; |
| 4270 | } else { |
| 4271 | vcpu->arch.dr7 &= ~DR7_GD; |
| 4272 | vcpu->arch.dr6 |= DR6_BD; |
| 4273 | vmcs_writel(GUEST_DR7, vcpu->arch.dr7); |
| 4274 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 4275 | return 1; |
| 4276 | } |
| 4277 | } |
| 4278 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4279 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4280 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 4281 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 4282 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 4283 | unsigned long val; |
| 4284 | if (!kvm_get_dr(vcpu, dr, &val)) |
| 4285 | kvm_register_write(vcpu, reg, val); |
| 4286 | } else |
| 4287 | kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4288 | skip_emulated_instruction(vcpu); |
| 4289 | return 1; |
| 4290 | } |
| 4291 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 4292 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 4293 | { |
| 4294 | vmcs_writel(GUEST_DR7, val); |
| 4295 | } |
| 4296 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4297 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4298 | { |
Avi Kivity | 06465c5 | 2007-02-28 20:46:53 +0200 | [diff] [blame] | 4299 | kvm_emulate_cpuid(vcpu); |
| 4300 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4301 | } |
| 4302 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4303 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4304 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4305 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4306 | u64 data; |
| 4307 | |
| 4308 | if (vmx_get_msr(vcpu, ecx, &data)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4309 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 4310 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4311 | return 1; |
| 4312 | } |
| 4313 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4314 | trace_kvm_msr_read(ecx, data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4315 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4316 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4317 | vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u; |
| 4318 | vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4319 | skip_emulated_instruction(vcpu); |
| 4320 | return 1; |
| 4321 | } |
| 4322 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4323 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4324 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4325 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 4326 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 4327 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4328 | |
| 4329 | if (vmx_set_msr(vcpu, ecx, data) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4330 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 4331 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4332 | return 1; |
| 4333 | } |
| 4334 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4335 | trace_kvm_msr_write(ecx, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4336 | skip_emulated_instruction(vcpu); |
| 4337 | return 1; |
| 4338 | } |
| 4339 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4340 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4341 | { |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4342 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4343 | return 1; |
| 4344 | } |
| 4345 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4346 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4347 | { |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4348 | u32 cpu_based_vm_exec_control; |
| 4349 | |
| 4350 | /* clear pending irq */ |
| 4351 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4352 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4353 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4354 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4355 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4356 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 4357 | ++vcpu->stat.irq_window_exits; |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4358 | |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 4359 | /* |
| 4360 | * If the user space waits to inject interrupts, exit as soon as |
| 4361 | * possible |
| 4362 | */ |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 4363 | if (!irqchip_in_kernel(vcpu->kvm) && |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4364 | vcpu->run->request_interrupt_window && |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 4365 | !kvm_cpu_has_interrupt(vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4366 | vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 4367 | return 0; |
| 4368 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4369 | return 1; |
| 4370 | } |
| 4371 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4372 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4373 | { |
| 4374 | skip_emulated_instruction(vcpu); |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 4375 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4376 | } |
| 4377 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4378 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4379 | { |
Dor Laor | 510043d | 2007-02-19 18:25:43 +0200 | [diff] [blame] | 4380 | skip_emulated_instruction(vcpu); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4381 | kvm_emulate_hypercall(vcpu); |
| 4382 | return 1; |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4383 | } |
| 4384 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 4385 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 4386 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4387 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 4388 | } |
| 4389 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4390 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4391 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4392 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4393 | |
| 4394 | kvm_mmu_invlpg(vcpu, exit_qualification); |
| 4395 | skip_emulated_instruction(vcpu); |
| 4396 | return 1; |
| 4397 | } |
| 4398 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4399 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 4400 | { |
| 4401 | skip_emulated_instruction(vcpu); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4402 | kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 4403 | return 1; |
| 4404 | } |
| 4405 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 4406 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 4407 | { |
| 4408 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 4409 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 4410 | |
| 4411 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
| 4412 | skip_emulated_instruction(vcpu); |
| 4413 | return 1; |
| 4414 | } |
| 4415 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4416 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4417 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4418 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4419 | } |
| 4420 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4421 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4422 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 4423 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4424 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 4425 | bool has_error_code = false; |
| 4426 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4427 | u16 tss_selector; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4428 | int reason, type, idt_v; |
| 4429 | |
| 4430 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
| 4431 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4432 | |
| 4433 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 4434 | |
| 4435 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4436 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 4437 | switch (type) { |
| 4438 | case INTR_TYPE_NMI_INTR: |
| 4439 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 4440 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4441 | break; |
| 4442 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4443 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4444 | kvm_clear_interrupt_queue(vcpu); |
| 4445 | break; |
| 4446 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 4447 | if (vmx->idt_vectoring_info & |
| 4448 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 4449 | has_error_code = true; |
| 4450 | error_code = |
| 4451 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 4452 | } |
| 4453 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4454 | case INTR_TYPE_SOFT_EXCEPTION: |
| 4455 | kvm_clear_exception_queue(vcpu); |
| 4456 | break; |
| 4457 | default: |
| 4458 | break; |
| 4459 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 4460 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4461 | tss_selector = exit_qualification; |
| 4462 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4463 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 4464 | type != INTR_TYPE_EXT_INTR && |
| 4465 | type != INTR_TYPE_NMI_INTR)) |
| 4466 | skip_emulated_instruction(vcpu); |
| 4467 | |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 4468 | if (kvm_task_switch(vcpu, tss_selector, reason, |
| 4469 | has_error_code, error_code) == EMULATE_FAIL) { |
| 4470 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 4471 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 4472 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4473 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 4474 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4475 | |
| 4476 | /* clear all local breakpoint enable flags */ |
| 4477 | vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55); |
| 4478 | |
| 4479 | /* |
| 4480 | * TODO: What about debug traps on tss switch? |
| 4481 | * Are we supposed to inject them and update dr6? |
| 4482 | */ |
| 4483 | |
| 4484 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4485 | } |
| 4486 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4487 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4488 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4489 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4490 | gpa_t gpa; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4491 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4492 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4493 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4494 | |
| 4495 | if (exit_qualification & (1 << 6)) { |
| 4496 | printk(KERN_ERR "EPT: GPA exceeds GAW!\n"); |
Jan Kiszka | 7f582ab | 2009-07-22 23:53:01 +0200 | [diff] [blame] | 4497 | return -EINVAL; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4498 | } |
| 4499 | |
| 4500 | gla_validity = (exit_qualification >> 7) & 0x3; |
| 4501 | if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) { |
| 4502 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 4503 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 4504 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4505 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4506 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 4507 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4508 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 4509 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 4510 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4511 | } |
| 4512 | |
| 4513 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4514 | trace_kvm_page_fault(gpa, exit_qualification); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 4515 | return kvm_mmu_page_fault(vcpu, gpa, exit_qualification & 0x3, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4516 | } |
| 4517 | |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4518 | static u64 ept_rsvd_mask(u64 spte, int level) |
| 4519 | { |
| 4520 | int i; |
| 4521 | u64 mask = 0; |
| 4522 | |
| 4523 | for (i = 51; i > boot_cpu_data.x86_phys_bits; i--) |
| 4524 | mask |= (1ULL << i); |
| 4525 | |
| 4526 | if (level > 2) |
| 4527 | /* bits 7:3 reserved */ |
| 4528 | mask |= 0xf8; |
| 4529 | else if (level == 2) { |
| 4530 | if (spte & (1ULL << 7)) |
| 4531 | /* 2MB ref, bits 20:12 reserved */ |
| 4532 | mask |= 0x1ff000; |
| 4533 | else |
| 4534 | /* bits 6:3 reserved */ |
| 4535 | mask |= 0x78; |
| 4536 | } |
| 4537 | |
| 4538 | return mask; |
| 4539 | } |
| 4540 | |
| 4541 | static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte, |
| 4542 | int level) |
| 4543 | { |
| 4544 | printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level); |
| 4545 | |
| 4546 | /* 010b (write-only) */ |
| 4547 | WARN_ON((spte & 0x7) == 0x2); |
| 4548 | |
| 4549 | /* 110b (write/execute) */ |
| 4550 | WARN_ON((spte & 0x7) == 0x6); |
| 4551 | |
| 4552 | /* 100b (execute-only) and value not supported by logical processor */ |
| 4553 | if (!cpu_has_vmx_ept_execute_only()) |
| 4554 | WARN_ON((spte & 0x7) == 0x4); |
| 4555 | |
| 4556 | /* not 000b */ |
| 4557 | if ((spte & 0x7)) { |
| 4558 | u64 rsvd_bits = spte & ept_rsvd_mask(spte, level); |
| 4559 | |
| 4560 | if (rsvd_bits != 0) { |
| 4561 | printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n", |
| 4562 | __func__, rsvd_bits); |
| 4563 | WARN_ON(1); |
| 4564 | } |
| 4565 | |
| 4566 | if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) { |
| 4567 | u64 ept_mem_type = (spte & 0x38) >> 3; |
| 4568 | |
| 4569 | if (ept_mem_type == 2 || ept_mem_type == 3 || |
| 4570 | ept_mem_type == 7) { |
| 4571 | printk(KERN_ERR "%s: ept_mem_type=0x%llx\n", |
| 4572 | __func__, ept_mem_type); |
| 4573 | WARN_ON(1); |
| 4574 | } |
| 4575 | } |
| 4576 | } |
| 4577 | } |
| 4578 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4579 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4580 | { |
| 4581 | u64 sptes[4]; |
| 4582 | int nr_sptes, i; |
| 4583 | gpa_t gpa; |
| 4584 | |
| 4585 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
| 4586 | |
| 4587 | printk(KERN_ERR "EPT: Misconfiguration.\n"); |
| 4588 | printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa); |
| 4589 | |
| 4590 | nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes); |
| 4591 | |
| 4592 | for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i) |
| 4593 | ept_misconfig_inspect_spte(vcpu, sptes[i-1], i); |
| 4594 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4595 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 4596 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4597 | |
| 4598 | return 0; |
| 4599 | } |
| 4600 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4601 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4602 | { |
| 4603 | u32 cpu_based_vm_exec_control; |
| 4604 | |
| 4605 | /* clear pending NMI */ |
| 4606 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4607 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4608 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4609 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4610 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4611 | |
| 4612 | return 1; |
| 4613 | } |
| 4614 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4615 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4616 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 4617 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4618 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4619 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 4620 | u32 cpu_exec_ctrl; |
| 4621 | bool intr_window_requested; |
| 4622 | |
| 4623 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4624 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4625 | |
| 4626 | while (!guest_state_valid(vcpu)) { |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 4627 | if (intr_window_requested |
| 4628 | && (kvm_get_rflags(&vmx->vcpu) & X86_EFLAGS_IF)) |
| 4629 | return handle_interrupt_window(&vmx->vcpu); |
| 4630 | |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4631 | err = emulate_instruction(vcpu, 0); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4632 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4633 | if (err == EMULATE_DO_MMIO) { |
| 4634 | ret = 0; |
| 4635 | goto out; |
| 4636 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 4637 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 4638 | if (err != EMULATE_DONE) |
| 4639 | return 0; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4640 | |
| 4641 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4642 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4643 | if (need_resched()) |
| 4644 | schedule(); |
| 4645 | } |
| 4646 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4647 | vmx->emulation_required = 0; |
| 4648 | out: |
| 4649 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4650 | } |
| 4651 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4652 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4653 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 4654 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 4655 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 4656 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4657 | { |
| 4658 | skip_emulated_instruction(vcpu); |
| 4659 | kvm_vcpu_on_spin(vcpu); |
| 4660 | |
| 4661 | return 1; |
| 4662 | } |
| 4663 | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 4664 | static int handle_invalid_op(struct kvm_vcpu *vcpu) |
| 4665 | { |
| 4666 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4667 | return 1; |
| 4668 | } |
| 4669 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4670 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 4671 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 4672 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 4673 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 4674 | * allows keeping them loaded on the processor, and in the future will allow |
| 4675 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 4676 | * every entry if they never change. |
| 4677 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 4678 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 4679 | * |
| 4680 | * The following functions allocate and free a vmcs02 in this pool. |
| 4681 | */ |
| 4682 | |
| 4683 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 4684 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 4685 | { |
| 4686 | struct vmcs02_list *item; |
| 4687 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 4688 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 4689 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 4690 | return &item->vmcs02; |
| 4691 | } |
| 4692 | |
| 4693 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 4694 | /* Recycle the least recently used VMCS. */ |
| 4695 | item = list_entry(vmx->nested.vmcs02_pool.prev, |
| 4696 | struct vmcs02_list, list); |
| 4697 | item->vmptr = vmx->nested.current_vmptr; |
| 4698 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 4699 | return &item->vmcs02; |
| 4700 | } |
| 4701 | |
| 4702 | /* Create a new VMCS */ |
| 4703 | item = (struct vmcs02_list *) |
| 4704 | kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
| 4705 | if (!item) |
| 4706 | return NULL; |
| 4707 | item->vmcs02.vmcs = alloc_vmcs(); |
| 4708 | if (!item->vmcs02.vmcs) { |
| 4709 | kfree(item); |
| 4710 | return NULL; |
| 4711 | } |
| 4712 | loaded_vmcs_init(&item->vmcs02); |
| 4713 | item->vmptr = vmx->nested.current_vmptr; |
| 4714 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 4715 | vmx->nested.vmcs02_num++; |
| 4716 | return &item->vmcs02; |
| 4717 | } |
| 4718 | |
| 4719 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 4720 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 4721 | { |
| 4722 | struct vmcs02_list *item; |
| 4723 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 4724 | if (item->vmptr == vmptr) { |
| 4725 | free_loaded_vmcs(&item->vmcs02); |
| 4726 | list_del(&item->list); |
| 4727 | kfree(item); |
| 4728 | vmx->nested.vmcs02_num--; |
| 4729 | return; |
| 4730 | } |
| 4731 | } |
| 4732 | |
| 4733 | /* |
| 4734 | * Free all VMCSs saved for this vcpu, except the one pointed by |
| 4735 | * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one |
| 4736 | * currently used, if running L2), and vmcs01 when running L2. |
| 4737 | */ |
| 4738 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 4739 | { |
| 4740 | struct vmcs02_list *item, *n; |
| 4741 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
| 4742 | if (vmx->loaded_vmcs != &item->vmcs02) |
| 4743 | free_loaded_vmcs(&item->vmcs02); |
| 4744 | list_del(&item->list); |
| 4745 | kfree(item); |
| 4746 | } |
| 4747 | vmx->nested.vmcs02_num = 0; |
| 4748 | |
| 4749 | if (vmx->loaded_vmcs != &vmx->vmcs01) |
| 4750 | free_loaded_vmcs(&vmx->vmcs01); |
| 4751 | } |
| 4752 | |
| 4753 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 4754 | * Emulate the VMXON instruction. |
| 4755 | * Currently, we just remember that VMX is active, and do not save or even |
| 4756 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 4757 | * do not currently need to store anything in that guest-allocated memory |
| 4758 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 4759 | * argument is different from the VMXON pointer (which the spec says they do). |
| 4760 | */ |
| 4761 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 4762 | { |
| 4763 | struct kvm_segment cs; |
| 4764 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4765 | |
| 4766 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 4767 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 4768 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 4769 | * Otherwise, we should fail with #UD. We test these now: |
| 4770 | */ |
| 4771 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 4772 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 4773 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 4774 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4775 | return 1; |
| 4776 | } |
| 4777 | |
| 4778 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4779 | if (is_long_mode(vcpu) && !cs.l) { |
| 4780 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4781 | return 1; |
| 4782 | } |
| 4783 | |
| 4784 | if (vmx_get_cpl(vcpu)) { |
| 4785 | kvm_inject_gp(vcpu, 0); |
| 4786 | return 1; |
| 4787 | } |
| 4788 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 4789 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 4790 | vmx->nested.vmcs02_num = 0; |
| 4791 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 4792 | vmx->nested.vmxon = true; |
| 4793 | |
| 4794 | skip_emulated_instruction(vcpu); |
| 4795 | return 1; |
| 4796 | } |
| 4797 | |
| 4798 | /* |
| 4799 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 4800 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 4801 | * slightly different). It also specifies what exception to inject otherwise. |
| 4802 | */ |
| 4803 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 4804 | { |
| 4805 | struct kvm_segment cs; |
| 4806 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4807 | |
| 4808 | if (!vmx->nested.vmxon) { |
| 4809 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4810 | return 0; |
| 4811 | } |
| 4812 | |
| 4813 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4814 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 4815 | (is_long_mode(vcpu) && !cs.l)) { |
| 4816 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4817 | return 0; |
| 4818 | } |
| 4819 | |
| 4820 | if (vmx_get_cpl(vcpu)) { |
| 4821 | kvm_inject_gp(vcpu, 0); |
| 4822 | return 0; |
| 4823 | } |
| 4824 | |
| 4825 | return 1; |
| 4826 | } |
| 4827 | |
| 4828 | /* |
| 4829 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 4830 | * just stops using VMX. |
| 4831 | */ |
| 4832 | static void free_nested(struct vcpu_vmx *vmx) |
| 4833 | { |
| 4834 | if (!vmx->nested.vmxon) |
| 4835 | return; |
| 4836 | vmx->nested.vmxon = false; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 4837 | if (vmx->nested.current_vmptr != -1ull) { |
| 4838 | kunmap(vmx->nested.current_vmcs12_page); |
| 4839 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 4840 | vmx->nested.current_vmptr = -1ull; |
| 4841 | vmx->nested.current_vmcs12 = NULL; |
| 4842 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 4843 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 4844 | if (vmx->nested.apic_access_page) { |
| 4845 | nested_release_page(vmx->nested.apic_access_page); |
| 4846 | vmx->nested.apic_access_page = 0; |
| 4847 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 4848 | |
| 4849 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 4850 | } |
| 4851 | |
| 4852 | /* Emulate the VMXOFF instruction */ |
| 4853 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 4854 | { |
| 4855 | if (!nested_vmx_check_permission(vcpu)) |
| 4856 | return 1; |
| 4857 | free_nested(to_vmx(vcpu)); |
| 4858 | skip_emulated_instruction(vcpu); |
| 4859 | return 1; |
| 4860 | } |
| 4861 | |
| 4862 | /* |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 4863 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 4864 | * exit caused by such an instruction (run by a guest hypervisor). |
| 4865 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 4866 | * #UD or #GP. |
| 4867 | */ |
| 4868 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 4869 | unsigned long exit_qualification, |
| 4870 | u32 vmx_instruction_info, gva_t *ret) |
| 4871 | { |
| 4872 | /* |
| 4873 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 4874 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 4875 | * addressing components of the operand. Only the displacement part |
| 4876 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 4877 | * For how an actual address is calculated from all these components, |
| 4878 | * refer to Vol. 1, "Operand Addressing". |
| 4879 | */ |
| 4880 | int scaling = vmx_instruction_info & 3; |
| 4881 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 4882 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 4883 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 4884 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 4885 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 4886 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 4887 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 4888 | |
| 4889 | if (is_reg) { |
| 4890 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 4891 | return 1; |
| 4892 | } |
| 4893 | |
| 4894 | /* Addr = segment_base + offset */ |
| 4895 | /* offset = base + [index * scale] + displacement */ |
| 4896 | *ret = vmx_get_segment_base(vcpu, seg_reg); |
| 4897 | if (base_is_valid) |
| 4898 | *ret += kvm_register_read(vcpu, base_reg); |
| 4899 | if (index_is_valid) |
| 4900 | *ret += kvm_register_read(vcpu, index_reg)<<scaling; |
| 4901 | *ret += exit_qualification; /* holds the displacement */ |
| 4902 | |
| 4903 | if (addr_size == 1) /* 32 bit */ |
| 4904 | *ret &= 0xffffffff; |
| 4905 | |
| 4906 | /* |
| 4907 | * TODO: throw #GP (and return 1) in various cases that the VM* |
| 4908 | * instructions require it - e.g., offset beyond segment limit, |
| 4909 | * unusable or unreadable/unwritable segment, non-canonical 64-bit |
| 4910 | * address, and so on. Currently these are not checked. |
| 4911 | */ |
| 4912 | return 0; |
| 4913 | } |
| 4914 | |
| 4915 | /* |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 4916 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 4917 | * set the success or error code of an emulated VMX instruction, as specified |
| 4918 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 4919 | */ |
| 4920 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 4921 | { |
| 4922 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 4923 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 4924 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 4925 | } |
| 4926 | |
| 4927 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 4928 | { |
| 4929 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 4930 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 4931 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 4932 | | X86_EFLAGS_CF); |
| 4933 | } |
| 4934 | |
| 4935 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
| 4936 | u32 vm_instruction_error) |
| 4937 | { |
| 4938 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 4939 | /* |
| 4940 | * failValid writes the error number to the current VMCS, which |
| 4941 | * can't be done there isn't a current VMCS. |
| 4942 | */ |
| 4943 | nested_vmx_failInvalid(vcpu); |
| 4944 | return; |
| 4945 | } |
| 4946 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 4947 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 4948 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 4949 | | X86_EFLAGS_ZF); |
| 4950 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 4951 | } |
| 4952 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 4953 | /* Emulate the VMCLEAR instruction */ |
| 4954 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 4955 | { |
| 4956 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4957 | gva_t gva; |
| 4958 | gpa_t vmptr; |
| 4959 | struct vmcs12 *vmcs12; |
| 4960 | struct page *page; |
| 4961 | struct x86_exception e; |
| 4962 | |
| 4963 | if (!nested_vmx_check_permission(vcpu)) |
| 4964 | return 1; |
| 4965 | |
| 4966 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 4967 | vmcs_read32(VMX_INSTRUCTION_INFO), &gva)) |
| 4968 | return 1; |
| 4969 | |
| 4970 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 4971 | sizeof(vmptr), &e)) { |
| 4972 | kvm_inject_page_fault(vcpu, &e); |
| 4973 | return 1; |
| 4974 | } |
| 4975 | |
| 4976 | if (!IS_ALIGNED(vmptr, PAGE_SIZE)) { |
| 4977 | nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 4978 | skip_emulated_instruction(vcpu); |
| 4979 | return 1; |
| 4980 | } |
| 4981 | |
| 4982 | if (vmptr == vmx->nested.current_vmptr) { |
| 4983 | kunmap(vmx->nested.current_vmcs12_page); |
| 4984 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 4985 | vmx->nested.current_vmptr = -1ull; |
| 4986 | vmx->nested.current_vmcs12 = NULL; |
| 4987 | } |
| 4988 | |
| 4989 | page = nested_get_page(vcpu, vmptr); |
| 4990 | if (page == NULL) { |
| 4991 | /* |
| 4992 | * For accurate processor emulation, VMCLEAR beyond available |
| 4993 | * physical memory should do nothing at all. However, it is |
| 4994 | * possible that a nested vmx bug, not a guest hypervisor bug, |
| 4995 | * resulted in this case, so let's shut down before doing any |
| 4996 | * more damage: |
| 4997 | */ |
| 4998 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 4999 | return 1; |
| 5000 | } |
| 5001 | vmcs12 = kmap(page); |
| 5002 | vmcs12->launch_state = 0; |
| 5003 | kunmap(page); |
| 5004 | nested_release_page(page); |
| 5005 | |
| 5006 | nested_free_vmcs02(vmx, vmptr); |
| 5007 | |
| 5008 | skip_emulated_instruction(vcpu); |
| 5009 | nested_vmx_succeed(vcpu); |
| 5010 | return 1; |
| 5011 | } |
| 5012 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5013 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 5014 | |
| 5015 | /* Emulate the VMLAUNCH instruction */ |
| 5016 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 5017 | { |
| 5018 | return nested_vmx_run(vcpu, true); |
| 5019 | } |
| 5020 | |
| 5021 | /* Emulate the VMRESUME instruction */ |
| 5022 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 5023 | { |
| 5024 | |
| 5025 | return nested_vmx_run(vcpu, false); |
| 5026 | } |
| 5027 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5028 | enum vmcs_field_type { |
| 5029 | VMCS_FIELD_TYPE_U16 = 0, |
| 5030 | VMCS_FIELD_TYPE_U64 = 1, |
| 5031 | VMCS_FIELD_TYPE_U32 = 2, |
| 5032 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 5033 | }; |
| 5034 | |
| 5035 | static inline int vmcs_field_type(unsigned long field) |
| 5036 | { |
| 5037 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 5038 | return VMCS_FIELD_TYPE_U32; |
| 5039 | return (field >> 13) & 0x3 ; |
| 5040 | } |
| 5041 | |
| 5042 | static inline int vmcs_field_readonly(unsigned long field) |
| 5043 | { |
| 5044 | return (((field >> 10) & 0x3) == 1); |
| 5045 | } |
| 5046 | |
| 5047 | /* |
| 5048 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 5049 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 5050 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 5051 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 5052 | * 64-bit fields are to be returned). |
| 5053 | */ |
| 5054 | static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 5055 | unsigned long field, u64 *ret) |
| 5056 | { |
| 5057 | short offset = vmcs_field_to_offset(field); |
| 5058 | char *p; |
| 5059 | |
| 5060 | if (offset < 0) |
| 5061 | return 0; |
| 5062 | |
| 5063 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 5064 | |
| 5065 | switch (vmcs_field_type(field)) { |
| 5066 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 5067 | *ret = *((natural_width *)p); |
| 5068 | return 1; |
| 5069 | case VMCS_FIELD_TYPE_U16: |
| 5070 | *ret = *((u16 *)p); |
| 5071 | return 1; |
| 5072 | case VMCS_FIELD_TYPE_U32: |
| 5073 | *ret = *((u32 *)p); |
| 5074 | return 1; |
| 5075 | case VMCS_FIELD_TYPE_U64: |
| 5076 | *ret = *((u64 *)p); |
| 5077 | return 1; |
| 5078 | default: |
| 5079 | return 0; /* can never happen. */ |
| 5080 | } |
| 5081 | } |
| 5082 | |
| 5083 | /* |
| 5084 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 5085 | * used before) all generate the same failure when it is missing. |
| 5086 | */ |
| 5087 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 5088 | { |
| 5089 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5090 | if (vmx->nested.current_vmptr == -1ull) { |
| 5091 | nested_vmx_failInvalid(vcpu); |
| 5092 | skip_emulated_instruction(vcpu); |
| 5093 | return 0; |
| 5094 | } |
| 5095 | return 1; |
| 5096 | } |
| 5097 | |
| 5098 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 5099 | { |
| 5100 | unsigned long field; |
| 5101 | u64 field_value; |
| 5102 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5103 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5104 | gva_t gva = 0; |
| 5105 | |
| 5106 | if (!nested_vmx_check_permission(vcpu) || |
| 5107 | !nested_vmx_check_vmcs12(vcpu)) |
| 5108 | return 1; |
| 5109 | |
| 5110 | /* Decode instruction info and find the field to read */ |
| 5111 | field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
| 5112 | /* Read the field, zero-extended to a u64 field_value */ |
| 5113 | if (!vmcs12_read_any(vcpu, field, &field_value)) { |
| 5114 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5115 | skip_emulated_instruction(vcpu); |
| 5116 | return 1; |
| 5117 | } |
| 5118 | /* |
| 5119 | * Now copy part of this value to register or memory, as requested. |
| 5120 | * Note that the number of bits actually copied is 32 or 64 depending |
| 5121 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 5122 | */ |
| 5123 | if (vmx_instruction_info & (1u << 10)) { |
| 5124 | kvm_register_write(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
| 5125 | field_value); |
| 5126 | } else { |
| 5127 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5128 | vmx_instruction_info, &gva)) |
| 5129 | return 1; |
| 5130 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 5131 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 5132 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 5133 | } |
| 5134 | |
| 5135 | nested_vmx_succeed(vcpu); |
| 5136 | skip_emulated_instruction(vcpu); |
| 5137 | return 1; |
| 5138 | } |
| 5139 | |
| 5140 | |
| 5141 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 5142 | { |
| 5143 | unsigned long field; |
| 5144 | gva_t gva; |
| 5145 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5146 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5147 | char *p; |
| 5148 | short offset; |
| 5149 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 5150 | * mode, and eventually we need to write that into a field of several |
| 5151 | * possible lengths. The code below first zero-extends the value to 64 |
| 5152 | * bit (field_value), and then copies only the approriate number of |
| 5153 | * bits into the vmcs12 field. |
| 5154 | */ |
| 5155 | u64 field_value = 0; |
| 5156 | struct x86_exception e; |
| 5157 | |
| 5158 | if (!nested_vmx_check_permission(vcpu) || |
| 5159 | !nested_vmx_check_vmcs12(vcpu)) |
| 5160 | return 1; |
| 5161 | |
| 5162 | if (vmx_instruction_info & (1u << 10)) |
| 5163 | field_value = kvm_register_read(vcpu, |
| 5164 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 5165 | else { |
| 5166 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5167 | vmx_instruction_info, &gva)) |
| 5168 | return 1; |
| 5169 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
| 5170 | &field_value, (is_long_mode(vcpu) ? 8 : 4), &e)) { |
| 5171 | kvm_inject_page_fault(vcpu, &e); |
| 5172 | return 1; |
| 5173 | } |
| 5174 | } |
| 5175 | |
| 5176 | |
| 5177 | field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
| 5178 | if (vmcs_field_readonly(field)) { |
| 5179 | nested_vmx_failValid(vcpu, |
| 5180 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
| 5181 | skip_emulated_instruction(vcpu); |
| 5182 | return 1; |
| 5183 | } |
| 5184 | |
| 5185 | offset = vmcs_field_to_offset(field); |
| 5186 | if (offset < 0) { |
| 5187 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5188 | skip_emulated_instruction(vcpu); |
| 5189 | return 1; |
| 5190 | } |
| 5191 | p = ((char *) get_vmcs12(vcpu)) + offset; |
| 5192 | |
| 5193 | switch (vmcs_field_type(field)) { |
| 5194 | case VMCS_FIELD_TYPE_U16: |
| 5195 | *(u16 *)p = field_value; |
| 5196 | break; |
| 5197 | case VMCS_FIELD_TYPE_U32: |
| 5198 | *(u32 *)p = field_value; |
| 5199 | break; |
| 5200 | case VMCS_FIELD_TYPE_U64: |
| 5201 | *(u64 *)p = field_value; |
| 5202 | break; |
| 5203 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 5204 | *(natural_width *)p = field_value; |
| 5205 | break; |
| 5206 | default: |
| 5207 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5208 | skip_emulated_instruction(vcpu); |
| 5209 | return 1; |
| 5210 | } |
| 5211 | |
| 5212 | nested_vmx_succeed(vcpu); |
| 5213 | skip_emulated_instruction(vcpu); |
| 5214 | return 1; |
| 5215 | } |
| 5216 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 5217 | /* Emulate the VMPTRLD instruction */ |
| 5218 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 5219 | { |
| 5220 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5221 | gva_t gva; |
| 5222 | gpa_t vmptr; |
| 5223 | struct x86_exception e; |
| 5224 | |
| 5225 | if (!nested_vmx_check_permission(vcpu)) |
| 5226 | return 1; |
| 5227 | |
| 5228 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 5229 | vmcs_read32(VMX_INSTRUCTION_INFO), &gva)) |
| 5230 | return 1; |
| 5231 | |
| 5232 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 5233 | sizeof(vmptr), &e)) { |
| 5234 | kvm_inject_page_fault(vcpu, &e); |
| 5235 | return 1; |
| 5236 | } |
| 5237 | |
| 5238 | if (!IS_ALIGNED(vmptr, PAGE_SIZE)) { |
| 5239 | nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 5240 | skip_emulated_instruction(vcpu); |
| 5241 | return 1; |
| 5242 | } |
| 5243 | |
| 5244 | if (vmx->nested.current_vmptr != vmptr) { |
| 5245 | struct vmcs12 *new_vmcs12; |
| 5246 | struct page *page; |
| 5247 | page = nested_get_page(vcpu, vmptr); |
| 5248 | if (page == NULL) { |
| 5249 | nested_vmx_failInvalid(vcpu); |
| 5250 | skip_emulated_instruction(vcpu); |
| 5251 | return 1; |
| 5252 | } |
| 5253 | new_vmcs12 = kmap(page); |
| 5254 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 5255 | kunmap(page); |
| 5256 | nested_release_page_clean(page); |
| 5257 | nested_vmx_failValid(vcpu, |
| 5258 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
| 5259 | skip_emulated_instruction(vcpu); |
| 5260 | return 1; |
| 5261 | } |
| 5262 | if (vmx->nested.current_vmptr != -1ull) { |
| 5263 | kunmap(vmx->nested.current_vmcs12_page); |
| 5264 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 5265 | } |
| 5266 | |
| 5267 | vmx->nested.current_vmptr = vmptr; |
| 5268 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 5269 | vmx->nested.current_vmcs12_page = page; |
| 5270 | } |
| 5271 | |
| 5272 | nested_vmx_succeed(vcpu); |
| 5273 | skip_emulated_instruction(vcpu); |
| 5274 | return 1; |
| 5275 | } |
| 5276 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 5277 | /* Emulate the VMPTRST instruction */ |
| 5278 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 5279 | { |
| 5280 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5281 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5282 | gva_t vmcs_gva; |
| 5283 | struct x86_exception e; |
| 5284 | |
| 5285 | if (!nested_vmx_check_permission(vcpu)) |
| 5286 | return 1; |
| 5287 | |
| 5288 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5289 | vmx_instruction_info, &vmcs_gva)) |
| 5290 | return 1; |
| 5291 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 5292 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 5293 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 5294 | sizeof(u64), &e)) { |
| 5295 | kvm_inject_page_fault(vcpu, &e); |
| 5296 | return 1; |
| 5297 | } |
| 5298 | nested_vmx_succeed(vcpu); |
| 5299 | skip_emulated_instruction(vcpu); |
| 5300 | return 1; |
| 5301 | } |
| 5302 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 5303 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5304 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 5305 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 5306 | * to be done to userspace and return 0. |
| 5307 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5308 | static int (*kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5309 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 5310 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5311 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5312 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5313 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5314 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 5315 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 5316 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 5317 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 5318 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 5319 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 5320 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5321 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5322 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5323 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 5324 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5325 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 5326 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 5327 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5328 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5329 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5330 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5331 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 5332 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5333 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 5334 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5335 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5336 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5337 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5338 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5339 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 5340 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5341 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 5342 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op, |
| 5343 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5344 | }; |
| 5345 | |
| 5346 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 5347 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5348 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5349 | /* |
| 5350 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 5351 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 5352 | * disinterest in the current event (read or write a specific MSR) by using an |
| 5353 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 5354 | */ |
| 5355 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 5356 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 5357 | { |
| 5358 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 5359 | gpa_t bitmap; |
| 5360 | |
| 5361 | if (!nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_USE_MSR_BITMAPS)) |
| 5362 | return 1; |
| 5363 | |
| 5364 | /* |
| 5365 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 5366 | * for the four combinations of read/write and low/high MSR numbers. |
| 5367 | * First we need to figure out which of the four to use: |
| 5368 | */ |
| 5369 | bitmap = vmcs12->msr_bitmap; |
| 5370 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 5371 | bitmap += 2048; |
| 5372 | if (msr_index >= 0xc0000000) { |
| 5373 | msr_index -= 0xc0000000; |
| 5374 | bitmap += 1024; |
| 5375 | } |
| 5376 | |
| 5377 | /* Then read the msr_index'th bit from this bitmap: */ |
| 5378 | if (msr_index < 1024*8) { |
| 5379 | unsigned char b; |
| 5380 | kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1); |
| 5381 | return 1 & (b >> (msr_index & 7)); |
| 5382 | } else |
| 5383 | return 1; /* let L1 handle the wrong parameter */ |
| 5384 | } |
| 5385 | |
| 5386 | /* |
| 5387 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 5388 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 5389 | * intercept (via guest_host_mask etc.) the current event. |
| 5390 | */ |
| 5391 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 5392 | struct vmcs12 *vmcs12) |
| 5393 | { |
| 5394 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5395 | int cr = exit_qualification & 15; |
| 5396 | int reg = (exit_qualification >> 8) & 15; |
| 5397 | unsigned long val = kvm_register_read(vcpu, reg); |
| 5398 | |
| 5399 | switch ((exit_qualification >> 4) & 3) { |
| 5400 | case 0: /* mov to cr */ |
| 5401 | switch (cr) { |
| 5402 | case 0: |
| 5403 | if (vmcs12->cr0_guest_host_mask & |
| 5404 | (val ^ vmcs12->cr0_read_shadow)) |
| 5405 | return 1; |
| 5406 | break; |
| 5407 | case 3: |
| 5408 | if ((vmcs12->cr3_target_count >= 1 && |
| 5409 | vmcs12->cr3_target_value0 == val) || |
| 5410 | (vmcs12->cr3_target_count >= 2 && |
| 5411 | vmcs12->cr3_target_value1 == val) || |
| 5412 | (vmcs12->cr3_target_count >= 3 && |
| 5413 | vmcs12->cr3_target_value2 == val) || |
| 5414 | (vmcs12->cr3_target_count >= 4 && |
| 5415 | vmcs12->cr3_target_value3 == val)) |
| 5416 | return 0; |
| 5417 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
| 5418 | return 1; |
| 5419 | break; |
| 5420 | case 4: |
| 5421 | if (vmcs12->cr4_guest_host_mask & |
| 5422 | (vmcs12->cr4_read_shadow ^ val)) |
| 5423 | return 1; |
| 5424 | break; |
| 5425 | case 8: |
| 5426 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
| 5427 | return 1; |
| 5428 | break; |
| 5429 | } |
| 5430 | break; |
| 5431 | case 2: /* clts */ |
| 5432 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 5433 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
| 5434 | return 1; |
| 5435 | break; |
| 5436 | case 1: /* mov from cr */ |
| 5437 | switch (cr) { |
| 5438 | case 3: |
| 5439 | if (vmcs12->cpu_based_vm_exec_control & |
| 5440 | CPU_BASED_CR3_STORE_EXITING) |
| 5441 | return 1; |
| 5442 | break; |
| 5443 | case 8: |
| 5444 | if (vmcs12->cpu_based_vm_exec_control & |
| 5445 | CPU_BASED_CR8_STORE_EXITING) |
| 5446 | return 1; |
| 5447 | break; |
| 5448 | } |
| 5449 | break; |
| 5450 | case 3: /* lmsw */ |
| 5451 | /* |
| 5452 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 5453 | * cr0. Other attempted changes are ignored, with no exit. |
| 5454 | */ |
| 5455 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 5456 | (val ^ vmcs12->cr0_read_shadow)) |
| 5457 | return 1; |
| 5458 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 5459 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 5460 | (val & 0x1)) |
| 5461 | return 1; |
| 5462 | break; |
| 5463 | } |
| 5464 | return 0; |
| 5465 | } |
| 5466 | |
| 5467 | /* |
| 5468 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 5469 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 5470 | * when in is_guest_mode (L2). |
| 5471 | */ |
| 5472 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 5473 | { |
| 5474 | u32 exit_reason = vmcs_read32(VM_EXIT_REASON); |
| 5475 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 5476 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5477 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5478 | |
| 5479 | if (vmx->nested.nested_run_pending) |
| 5480 | return 0; |
| 5481 | |
| 5482 | if (unlikely(vmx->fail)) { |
| 5483 | printk(KERN_INFO "%s failed vm entry %x\n", |
| 5484 | __func__, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 5485 | return 1; |
| 5486 | } |
| 5487 | |
| 5488 | switch (exit_reason) { |
| 5489 | case EXIT_REASON_EXCEPTION_NMI: |
| 5490 | if (!is_exception(intr_info)) |
| 5491 | return 0; |
| 5492 | else if (is_page_fault(intr_info)) |
| 5493 | return enable_ept; |
| 5494 | return vmcs12->exception_bitmap & |
| 5495 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 5496 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
| 5497 | return 0; |
| 5498 | case EXIT_REASON_TRIPLE_FAULT: |
| 5499 | return 1; |
| 5500 | case EXIT_REASON_PENDING_INTERRUPT: |
| 5501 | case EXIT_REASON_NMI_WINDOW: |
| 5502 | /* |
| 5503 | * prepare_vmcs02() set the CPU_BASED_VIRTUAL_INTR_PENDING bit |
| 5504 | * (aka Interrupt Window Exiting) only when L1 turned it on, |
| 5505 | * so if we got a PENDING_INTERRUPT exit, this must be for L1. |
| 5506 | * Same for NMI Window Exiting. |
| 5507 | */ |
| 5508 | return 1; |
| 5509 | case EXIT_REASON_TASK_SWITCH: |
| 5510 | return 1; |
| 5511 | case EXIT_REASON_CPUID: |
| 5512 | return 1; |
| 5513 | case EXIT_REASON_HLT: |
| 5514 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 5515 | case EXIT_REASON_INVD: |
| 5516 | return 1; |
| 5517 | case EXIT_REASON_INVLPG: |
| 5518 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 5519 | case EXIT_REASON_RDPMC: |
| 5520 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
| 5521 | case EXIT_REASON_RDTSC: |
| 5522 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 5523 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 5524 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 5525 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 5526 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 5527 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
| 5528 | /* |
| 5529 | * VMX instructions trap unconditionally. This allows L1 to |
| 5530 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 5531 | */ |
| 5532 | return 1; |
| 5533 | case EXIT_REASON_CR_ACCESS: |
| 5534 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 5535 | case EXIT_REASON_DR_ACCESS: |
| 5536 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 5537 | case EXIT_REASON_IO_INSTRUCTION: |
| 5538 | /* TODO: support IO bitmaps */ |
| 5539 | return 1; |
| 5540 | case EXIT_REASON_MSR_READ: |
| 5541 | case EXIT_REASON_MSR_WRITE: |
| 5542 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 5543 | case EXIT_REASON_INVALID_STATE: |
| 5544 | return 1; |
| 5545 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 5546 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
| 5547 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 5548 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 5549 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 5550 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 5551 | nested_cpu_has2(vmcs12, |
| 5552 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 5553 | case EXIT_REASON_MCE_DURING_VMENTRY: |
| 5554 | return 0; |
| 5555 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
| 5556 | return 1; |
| 5557 | case EXIT_REASON_APIC_ACCESS: |
| 5558 | return nested_cpu_has2(vmcs12, |
| 5559 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 5560 | case EXIT_REASON_EPT_VIOLATION: |
| 5561 | case EXIT_REASON_EPT_MISCONFIG: |
| 5562 | return 0; |
| 5563 | case EXIT_REASON_WBINVD: |
| 5564 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 5565 | case EXIT_REASON_XSETBV: |
| 5566 | return 1; |
| 5567 | default: |
| 5568 | return 1; |
| 5569 | } |
| 5570 | } |
| 5571 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 5572 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 5573 | { |
| 5574 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 5575 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 5576 | } |
| 5577 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5578 | /* |
| 5579 | * The guest has exited. See if we can fix it or if we need userspace |
| 5580 | * assistance. |
| 5581 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5582 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5583 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5584 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5585 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5586 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5587 | |
Avi Kivity | aa17911 | 2010-11-17 18:44:19 +0200 | [diff] [blame] | 5588 | trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5589 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5590 | /* If guest state is invalid, start emulating */ |
| 5591 | if (vmx->emulation_required && emulate_invalid_guest_state) |
| 5592 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5593 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 5594 | /* |
| 5595 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 5596 | * we did not inject a still-pending event to L1 now because of |
| 5597 | * nested_run_pending, we need to re-enable this bit. |
| 5598 | */ |
| 5599 | if (vmx->nested.nested_run_pending) |
| 5600 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5601 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5602 | if (exit_reason == EXIT_REASON_VMLAUNCH || |
| 5603 | exit_reason == EXIT_REASON_VMRESUME) |
| 5604 | vmx->nested.nested_run_pending = 1; |
| 5605 | else |
| 5606 | vmx->nested.nested_run_pending = 0; |
| 5607 | |
| 5608 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
| 5609 | nested_vmx_vmexit(vcpu); |
| 5610 | return 1; |
| 5611 | } |
| 5612 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 5613 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
| 5614 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 5615 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 5616 | = exit_reason; |
| 5617 | return 0; |
| 5618 | } |
| 5619 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5620 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5621 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 5622 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5623 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 5624 | return 0; |
| 5625 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5626 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 5627 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5628 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5629 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
| 5630 | exit_reason != EXIT_REASON_TASK_SWITCH)) |
| 5631 | printk(KERN_WARNING "%s: unexpected, valid vectoring info " |
| 5632 | "(0x%x) and exit reason is 0x%x\n", |
| 5633 | __func__, vectoring_info, exit_reason); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5634 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5635 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 5636 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
| 5637 | get_vmcs12(vcpu), vcpu)))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 5638 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5639 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5640 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 5641 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5642 | /* |
| 5643 | * This CPU don't support us in finding the end of an |
| 5644 | * NMI-blocked window if the guest runs with IRQs |
| 5645 | * disabled. So we pull the trigger after 1 s of |
| 5646 | * futile waiting, but inform the user about this. |
| 5647 | */ |
| 5648 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 5649 | "state on VCPU %d after 1 s timeout\n", |
| 5650 | __func__, vcpu->vcpu_id); |
| 5651 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5652 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5653 | } |
| 5654 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5655 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 5656 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5657 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5658 | else { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5659 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5660 | vcpu->run->hw.hardware_exit_reason = exit_reason; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5661 | } |
| 5662 | return 0; |
| 5663 | } |
| 5664 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 5665 | static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5666 | { |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 5667 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5668 | vmcs_write32(TPR_THRESHOLD, 0); |
| 5669 | return; |
| 5670 | } |
| 5671 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 5672 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5673 | } |
| 5674 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5675 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5676 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 5677 | u32 exit_intr_info; |
| 5678 | |
| 5679 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 5680 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 5681 | return; |
| 5682 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 5683 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 5684 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5685 | |
| 5686 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 5687 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5688 | kvm_machine_check(); |
| 5689 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 5690 | /* We need to handle NMIs before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 5691 | if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR && |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5692 | (exit_intr_info & INTR_INFO_VALID_MASK)) { |
| 5693 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 5694 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5695 | kvm_after_handle_nmi(&vmx->vcpu); |
| 5696 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5697 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 5698 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5699 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 5700 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 5701 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5702 | bool unblock_nmi; |
| 5703 | u8 vector; |
| 5704 | bool idtv_info_valid; |
| 5705 | |
| 5706 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 5707 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5708 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5709 | if (vmx->nmi_known_unmasked) |
| 5710 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 5711 | /* |
| 5712 | * Can't use vmx->exit_intr_info since we're not sure what |
| 5713 | * the exit reason is. |
| 5714 | */ |
| 5715 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5716 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 5717 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 5718 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 5719 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5720 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 5721 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 5722 | * SDM 3: 23.2.2 (September 2008) |
| 5723 | * Bit 12 is undefined in any of the following cases: |
| 5724 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 5725 | * information field. |
| 5726 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5727 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 5728 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 5729 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5730 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5731 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5732 | else |
| 5733 | vmx->nmi_known_unmasked = |
| 5734 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 5735 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5736 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 5737 | vmx->vnmi_blocked_time += |
| 5738 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5739 | } |
| 5740 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 5741 | static void __vmx_complete_interrupts(struct vcpu_vmx *vmx, |
| 5742 | u32 idt_vectoring_info, |
| 5743 | int instr_len_field, |
| 5744 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5745 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5746 | u8 vector; |
| 5747 | int type; |
| 5748 | bool idtv_info_valid; |
| 5749 | |
| 5750 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 5751 | |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5752 | vmx->vcpu.arch.nmi_injected = false; |
| 5753 | kvm_clear_exception_queue(&vmx->vcpu); |
| 5754 | kvm_clear_interrupt_queue(&vmx->vcpu); |
| 5755 | |
| 5756 | if (!idtv_info_valid) |
| 5757 | return; |
| 5758 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5759 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 5760 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 5761 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 5762 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5763 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5764 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5765 | case INTR_TYPE_NMI_INTR: |
| 5766 | vmx->vcpu.arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 5767 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 5768 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5769 | * Clear bit "block by NMI" before VM entry if a NMI |
| 5770 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 5771 | */ |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 5772 | vmx_set_nmi_mask(&vmx->vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5773 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5774 | case INTR_TYPE_SOFT_EXCEPTION: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5775 | vmx->vcpu.arch.event_exit_inst_len = |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 5776 | vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5777 | /* fall through */ |
| 5778 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 5779 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 5780 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5781 | kvm_queue_exception_e(&vmx->vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 5782 | } else |
| 5783 | kvm_queue_exception(&vmx->vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5784 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5785 | case INTR_TYPE_SOFT_INTR: |
| 5786 | vmx->vcpu.arch.event_exit_inst_len = |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 5787 | vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5788 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5789 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5790 | kvm_queue_interrupt(&vmx->vcpu, vector, |
| 5791 | type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 5792 | break; |
| 5793 | default: |
| 5794 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 5795 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5796 | } |
| 5797 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 5798 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 5799 | { |
| 5800 | __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info, |
| 5801 | VM_EXIT_INSTRUCTION_LEN, |
| 5802 | IDT_VECTORING_ERROR_CODE); |
| 5803 | } |
| 5804 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 5805 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 5806 | { |
| 5807 | __vmx_complete_interrupts(to_vmx(vcpu), |
| 5808 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 5809 | VM_ENTRY_INSTRUCTION_LEN, |
| 5810 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 5811 | |
| 5812 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 5813 | } |
| 5814 | |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5815 | #ifdef CONFIG_X86_64 |
| 5816 | #define R "r" |
| 5817 | #define Q "q" |
| 5818 | #else |
| 5819 | #define R "e" |
| 5820 | #define Q "l" |
| 5821 | #endif |
| 5822 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 5823 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5824 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5825 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 5826 | |
| 5827 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 5828 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 5829 | vmx->entry_time = ktime_get(); |
| 5830 | |
| 5831 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 5832 | start emulation until we arrive back to a valid state */ |
| 5833 | if (vmx->emulation_required && emulate_invalid_guest_state) |
| 5834 | return; |
| 5835 | |
| 5836 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 5837 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 5838 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 5839 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 5840 | |
| 5841 | /* When single-stepping over STI and MOV SS, we must clear the |
| 5842 | * corresponding interruptibility bits in the guest state. Otherwise |
| 5843 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 5844 | * exceptions being set, but that's not correct for the guest debugging |
| 5845 | * case. */ |
| 5846 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 5847 | vmx_set_interrupt_shadow(vcpu, 0); |
| 5848 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 5849 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 5850 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5851 | /* Store host registers */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5852 | "push %%"R"dx; push %%"R"bp;" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 5853 | "push %%"R"cx \n\t" /* placeholder for guest rcx */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5854 | "push %%"R"cx \n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 5855 | "cmp %%"R"sp, %c[host_rsp](%0) \n\t" |
| 5856 | "je 1f \n\t" |
| 5857 | "mov %%"R"sp, %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 5858 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 5859 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 5860 | /* Reload cr2 if changed */ |
| 5861 | "mov %c[cr2](%0), %%"R"ax \n\t" |
| 5862 | "mov %%cr2, %%"R"dx \n\t" |
| 5863 | "cmp %%"R"ax, %%"R"dx \n\t" |
| 5864 | "je 2f \n\t" |
| 5865 | "mov %%"R"ax, %%cr2 \n\t" |
| 5866 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5867 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 5868 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5869 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5870 | "mov %c[rax](%0), %%"R"ax \n\t" |
| 5871 | "mov %c[rbx](%0), %%"R"bx \n\t" |
| 5872 | "mov %c[rdx](%0), %%"R"dx \n\t" |
| 5873 | "mov %c[rsi](%0), %%"R"si \n\t" |
| 5874 | "mov %c[rdi](%0), %%"R"di \n\t" |
| 5875 | "mov %c[rbp](%0), %%"R"bp \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 5876 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 5877 | "mov %c[r8](%0), %%r8 \n\t" |
| 5878 | "mov %c[r9](%0), %%r9 \n\t" |
| 5879 | "mov %c[r10](%0), %%r10 \n\t" |
| 5880 | "mov %c[r11](%0), %%r11 \n\t" |
| 5881 | "mov %c[r12](%0), %%r12 \n\t" |
| 5882 | "mov %c[r13](%0), %%r13 \n\t" |
| 5883 | "mov %c[r14](%0), %%r14 \n\t" |
| 5884 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5885 | #endif |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5886 | "mov %c[rcx](%0), %%"R"cx \n\t" /* kills %0 (ecx) */ |
| 5887 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5888 | /* Enter guest mode */ |
Avi Kivity | cd2276a | 2007-05-14 20:41:13 +0300 | [diff] [blame] | 5889 | "jne .Llaunched \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 5890 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | cd2276a | 2007-05-14 20:41:13 +0300 | [diff] [blame] | 5891 | "jmp .Lkvm_vmx_return \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 5892 | ".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t" |
Avi Kivity | cd2276a | 2007-05-14 20:41:13 +0300 | [diff] [blame] | 5893 | ".Lkvm_vmx_return: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5894 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 5895 | "mov %0, %c[wordsize](%%"R"sp) \n\t" |
| 5896 | "pop %0 \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5897 | "mov %%"R"ax, %c[rax](%0) \n\t" |
| 5898 | "mov %%"R"bx, %c[rbx](%0) \n\t" |
Avi Kivity | 1c696d0 | 2011-01-06 18:09:11 +0200 | [diff] [blame] | 5899 | "pop"Q" %c[rcx](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5900 | "mov %%"R"dx, %c[rdx](%0) \n\t" |
| 5901 | "mov %%"R"si, %c[rsi](%0) \n\t" |
| 5902 | "mov %%"R"di, %c[rdi](%0) \n\t" |
| 5903 | "mov %%"R"bp, %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 5904 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 5905 | "mov %%r8, %c[r8](%0) \n\t" |
| 5906 | "mov %%r9, %c[r9](%0) \n\t" |
| 5907 | "mov %%r10, %c[r10](%0) \n\t" |
| 5908 | "mov %%r11, %c[r11](%0) \n\t" |
| 5909 | "mov %%r12, %c[r12](%0) \n\t" |
| 5910 | "mov %%r13, %c[r13](%0) \n\t" |
| 5911 | "mov %%r14, %c[r14](%0) \n\t" |
| 5912 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5913 | #endif |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5914 | "mov %%cr2, %%"R"ax \n\t" |
| 5915 | "mov %%"R"ax, %c[cr2](%0) \n\t" |
| 5916 | |
Avi Kivity | 1c696d0 | 2011-01-06 18:09:11 +0200 | [diff] [blame] | 5917 | "pop %%"R"bp; pop %%"R"dx \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 5918 | "setbe %c[fail](%0) \n\t" |
| 5919 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 5920 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 5921 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 5922 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5923 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 5924 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 5925 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 5926 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 5927 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 5928 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 5929 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 5930 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5931 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 5932 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 5933 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 5934 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 5935 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 5936 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 5937 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 5938 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5939 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 5940 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 5941 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 5942 | : "cc", "memory" |
Jan Kiszka | 07d6f55 | 2010-09-28 16:37:42 +0200 | [diff] [blame] | 5943 | , R"ax", R"bx", R"di", R"si" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 5944 | #ifdef CONFIG_X86_64 |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 5945 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
| 5946 | #endif |
| 5947 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5948 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 5949 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 5950 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 5951 | | (1 << VCPU_EXREG_CPL) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 5952 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 5953 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 5954 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 5955 | vcpu->arch.regs_dirty = 0; |
| 5956 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5957 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 5958 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 5959 | asm("mov %0, %%ds; mov %0, %%es" : : "r"(__USER_DS)); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 5960 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5961 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5962 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 5963 | |
| 5964 | vmx_complete_atomic_exit(vmx); |
| 5965 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 5966 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5967 | } |
| 5968 | |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 5969 | #undef R |
| 5970 | #undef Q |
| 5971 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5972 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 5973 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5974 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5975 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 5976 | free_vpid(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5977 | free_nested(vmx); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 5978 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5979 | kfree(vmx->guest_msrs); |
| 5980 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 5981 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5982 | } |
| 5983 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5984 | static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5985 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5986 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 5987 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 5988 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5989 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5990 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5991 | return ERR_PTR(-ENOMEM); |
| 5992 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 5993 | allocate_vpid(vmx); |
| 5994 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 5995 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 5996 | if (err) |
| 5997 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 5998 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5999 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 6000 | err = -ENOMEM; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6001 | if (!vmx->guest_msrs) { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6002 | goto uninit_vcpu; |
| 6003 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6004 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6005 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 6006 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
| 6007 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6008 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6009 | if (!vmm_exclusive) |
| 6010 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 6011 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 6012 | if (!vmm_exclusive) |
| 6013 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 6014 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 6015 | cpu = get_cpu(); |
| 6016 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 6017 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 6018 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6019 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 6020 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6021 | if (err) |
| 6022 | goto free_vmcs; |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 6023 | if (vm_need_virtualize_apic_accesses(kvm)) |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 6024 | err = alloc_apic_access_page(kvm); |
| 6025 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 6026 | goto free_vmcs; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6027 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 6028 | if (enable_ept) { |
| 6029 | if (!kvm->arch.ept_identity_map_addr) |
| 6030 | kvm->arch.ept_identity_map_addr = |
| 6031 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 6032 | err = -ENOMEM; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 6033 | if (alloc_identity_pagetable(kvm) != 0) |
| 6034 | goto free_vmcs; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 6035 | if (!init_rmode_identity_map(kvm)) |
| 6036 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 6037 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 6038 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 6039 | vmx->nested.current_vmptr = -1ull; |
| 6040 | vmx->nested.current_vmcs12 = NULL; |
| 6041 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6042 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6043 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6044 | free_vmcs: |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6045 | free_vmcs(vmx->loaded_vmcs->vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6046 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6047 | kfree(vmx->guest_msrs); |
| 6048 | uninit_vcpu: |
| 6049 | kvm_vcpu_uninit(&vmx->vcpu); |
| 6050 | free_vcpu: |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 6051 | free_vpid(vmx); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 6052 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6053 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6054 | } |
| 6055 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 6056 | static void __init vmx_check_processor_compat(void *rtn) |
| 6057 | { |
| 6058 | struct vmcs_config vmcs_conf; |
| 6059 | |
| 6060 | *(int *)rtn = 0; |
| 6061 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 6062 | *(int *)rtn = -EIO; |
| 6063 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 6064 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 6065 | smp_processor_id()); |
| 6066 | *(int *)rtn = -EIO; |
| 6067 | } |
| 6068 | } |
| 6069 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 6070 | static int get_ept_level(void) |
| 6071 | { |
| 6072 | return VMX_EPT_DEFAULT_GAW + 1; |
| 6073 | } |
| 6074 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6075 | static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio) |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 6076 | { |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6077 | u64 ret; |
| 6078 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6079 | /* For VT-d and EPT combination |
| 6080 | * 1. MMIO: always map as UC |
| 6081 | * 2. EPT with VT-d: |
| 6082 | * a. VT-d without snooping control feature: can't guarantee the |
| 6083 | * result, try to trust guest. |
| 6084 | * b. VT-d with snooping control feature: snooping control feature of |
| 6085 | * VT-d engine can guarantee the cache correctness. Just set it |
| 6086 | * to WB to keep consistent with host. So the same as item 3. |
Sheng Yang | a19a6d1 | 2010-02-09 16:41:53 +0800 | [diff] [blame] | 6087 | * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6088 | * consistent with host MTRR |
| 6089 | */ |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6090 | if (is_mmio) |
| 6091 | ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT; |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6092 | else if (vcpu->kvm->arch.iommu_domain && |
| 6093 | !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)) |
| 6094 | ret = kvm_get_guest_memory_type(vcpu, gfn) << |
| 6095 | VMX_EPT_MT_EPTE_SHIFT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6096 | else |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6097 | ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT) |
Sheng Yang | a19a6d1 | 2010-02-09 16:41:53 +0800 | [diff] [blame] | 6098 | | VMX_EPT_IPAT_BIT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6099 | |
| 6100 | return ret; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 6101 | } |
| 6102 | |
Avi Kivity | f4c9e87 | 2009-12-28 16:06:35 +0200 | [diff] [blame] | 6103 | #define _ER(x) { EXIT_REASON_##x, #x } |
| 6104 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6105 | static const struct trace_print_flags vmx_exit_reasons_str[] = { |
Avi Kivity | f4c9e87 | 2009-12-28 16:06:35 +0200 | [diff] [blame] | 6106 | _ER(EXCEPTION_NMI), |
| 6107 | _ER(EXTERNAL_INTERRUPT), |
| 6108 | _ER(TRIPLE_FAULT), |
| 6109 | _ER(PENDING_INTERRUPT), |
| 6110 | _ER(NMI_WINDOW), |
| 6111 | _ER(TASK_SWITCH), |
| 6112 | _ER(CPUID), |
| 6113 | _ER(HLT), |
| 6114 | _ER(INVLPG), |
| 6115 | _ER(RDPMC), |
| 6116 | _ER(RDTSC), |
| 6117 | _ER(VMCALL), |
| 6118 | _ER(VMCLEAR), |
| 6119 | _ER(VMLAUNCH), |
| 6120 | _ER(VMPTRLD), |
| 6121 | _ER(VMPTRST), |
| 6122 | _ER(VMREAD), |
| 6123 | _ER(VMRESUME), |
| 6124 | _ER(VMWRITE), |
| 6125 | _ER(VMOFF), |
| 6126 | _ER(VMON), |
| 6127 | _ER(CR_ACCESS), |
| 6128 | _ER(DR_ACCESS), |
| 6129 | _ER(IO_INSTRUCTION), |
| 6130 | _ER(MSR_READ), |
| 6131 | _ER(MSR_WRITE), |
| 6132 | _ER(MWAIT_INSTRUCTION), |
| 6133 | _ER(MONITOR_INSTRUCTION), |
| 6134 | _ER(PAUSE_INSTRUCTION), |
| 6135 | _ER(MCE_DURING_VMENTRY), |
| 6136 | _ER(TPR_BELOW_THRESHOLD), |
| 6137 | _ER(APIC_ACCESS), |
| 6138 | _ER(EPT_VIOLATION), |
| 6139 | _ER(EPT_MISCONFIG), |
| 6140 | _ER(WBINVD), |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6141 | { -1, NULL } |
| 6142 | }; |
| 6143 | |
Avi Kivity | f4c9e87 | 2009-12-28 16:06:35 +0200 | [diff] [blame] | 6144 | #undef _ER |
| 6145 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 6146 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 6147 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 6148 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 6149 | return PT_DIRECTORY_LEVEL; |
| 6150 | else |
| 6151 | /* For shadow and EPT supported 1GB page */ |
| 6152 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 6153 | } |
| 6154 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 6155 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 6156 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 6157 | struct kvm_cpuid_entry2 *best; |
| 6158 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6159 | u32 exec_control; |
| 6160 | |
| 6161 | vmx->rdtscp_enabled = false; |
| 6162 | if (vmx_rdtscp_supported()) { |
| 6163 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 6164 | if (exec_control & SECONDARY_EXEC_RDTSCP) { |
| 6165 | best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
| 6166 | if (best && (best->edx & bit(X86_FEATURE_RDTSCP))) |
| 6167 | vmx->rdtscp_enabled = true; |
| 6168 | else { |
| 6169 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 6170 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 6171 | exec_control); |
| 6172 | } |
| 6173 | } |
| 6174 | } |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 6175 | } |
| 6176 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 6177 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 6178 | { |
| 6179 | } |
| 6180 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6181 | /* |
| 6182 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 6183 | * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it |
| 6184 | * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2 |
| 6185 | * guest in a way that will both be appropriate to L1's requests, and our |
| 6186 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 6187 | * function also has additional necessary side-effects, like setting various |
| 6188 | * vcpu->arch fields. |
| 6189 | */ |
| 6190 | static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6191 | { |
| 6192 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6193 | u32 exec_control; |
| 6194 | |
| 6195 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 6196 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 6197 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 6198 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 6199 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 6200 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 6201 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 6202 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 6203 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 6204 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 6205 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 6206 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 6207 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 6208 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 6209 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 6210 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 6211 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 6212 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 6213 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 6214 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 6215 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 6216 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 6217 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 6218 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 6219 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 6220 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 6221 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 6222 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 6223 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 6224 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 6225 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 6226 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 6227 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 6228 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 6229 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 6230 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 6231 | |
| 6232 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 6233 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 6234 | vmcs12->vm_entry_intr_info_field); |
| 6235 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 6236 | vmcs12->vm_entry_exception_error_code); |
| 6237 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 6238 | vmcs12->vm_entry_instruction_len); |
| 6239 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 6240 | vmcs12->guest_interruptibility_info); |
| 6241 | vmcs_write32(GUEST_ACTIVITY_STATE, vmcs12->guest_activity_state); |
| 6242 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
| 6243 | vmcs_writel(GUEST_DR7, vmcs12->guest_dr7); |
| 6244 | vmcs_writel(GUEST_RFLAGS, vmcs12->guest_rflags); |
| 6245 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 6246 | vmcs12->guest_pending_dbg_exceptions); |
| 6247 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 6248 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 6249 | |
| 6250 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 6251 | |
| 6252 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, |
| 6253 | (vmcs_config.pin_based_exec_ctrl | |
| 6254 | vmcs12->pin_based_vm_exec_control)); |
| 6255 | |
| 6256 | /* |
| 6257 | * Whether page-faults are trapped is determined by a combination of |
| 6258 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 6259 | * If enable_ept, L0 doesn't care about page faults and we should |
| 6260 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 6261 | * care about (at least some) page faults, and because it is not easy |
| 6262 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 6263 | * to exit on each and every L2 page fault. This is done by setting |
| 6264 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 6265 | * Note that below we don't need special code to set EB.PF beyond the |
| 6266 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 6267 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 6268 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 6269 | * |
| 6270 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 6271 | * injected with more page faults than it asked for. This could have |
| 6272 | * caused problems, but in practice existing hypervisors don't care. |
| 6273 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 6274 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 6275 | */ |
| 6276 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 6277 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 6278 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 6279 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 6280 | |
| 6281 | if (cpu_has_secondary_exec_ctrls()) { |
| 6282 | u32 exec_control = vmx_secondary_exec_control(vmx); |
| 6283 | if (!vmx->rdtscp_enabled) |
| 6284 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 6285 | /* Take the following fields only from vmcs12 */ |
| 6286 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 6287 | if (nested_cpu_has(vmcs12, |
| 6288 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 6289 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 6290 | |
| 6291 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) { |
| 6292 | /* |
| 6293 | * Translate L1 physical address to host physical |
| 6294 | * address for vmcs02. Keep the page pinned, so this |
| 6295 | * physical address remains valid. We keep a reference |
| 6296 | * to it so we can release it later. |
| 6297 | */ |
| 6298 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 6299 | nested_release_page(vmx->nested.apic_access_page); |
| 6300 | vmx->nested.apic_access_page = |
| 6301 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
| 6302 | /* |
| 6303 | * If translation failed, no matter: This feature asks |
| 6304 | * to exit when accessing the given address, and if it |
| 6305 | * can never be accessed, this feature won't do |
| 6306 | * anything anyway. |
| 6307 | */ |
| 6308 | if (!vmx->nested.apic_access_page) |
| 6309 | exec_control &= |
| 6310 | ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 6311 | else |
| 6312 | vmcs_write64(APIC_ACCESS_ADDR, |
| 6313 | page_to_phys(vmx->nested.apic_access_page)); |
| 6314 | } |
| 6315 | |
| 6316 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 6317 | } |
| 6318 | |
| 6319 | |
| 6320 | /* |
| 6321 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 6322 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 6323 | * Other fields are different per CPU, and will be set later when |
| 6324 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 6325 | */ |
| 6326 | vmx_set_constant_host_state(); |
| 6327 | |
| 6328 | /* |
| 6329 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 6330 | * entry, but only if the current (host) sp changed from the value |
| 6331 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 6332 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 6333 | * here we just force the write to happen on entry. |
| 6334 | */ |
| 6335 | vmx->host_rsp = 0; |
| 6336 | |
| 6337 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 6338 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 6339 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 6340 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 6341 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
| 6342 | /* |
| 6343 | * Merging of IO and MSR bitmaps not currently supported. |
| 6344 | * Rather, exit every time. |
| 6345 | */ |
| 6346 | exec_control &= ~CPU_BASED_USE_MSR_BITMAPS; |
| 6347 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 6348 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 6349 | |
| 6350 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 6351 | |
| 6352 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 6353 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 6354 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 6355 | */ |
| 6356 | update_exception_bitmap(vcpu); |
| 6357 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 6358 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 6359 | |
| 6360 | /* Note: IA32_MODE, LOAD_IA32_EFER are modified by vmx_set_efer below */ |
| 6361 | vmcs_write32(VM_EXIT_CONTROLS, |
| 6362 | vmcs12->vm_exit_controls | vmcs_config.vmexit_ctrl); |
| 6363 | vmcs_write32(VM_ENTRY_CONTROLS, vmcs12->vm_entry_controls | |
| 6364 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 6365 | |
| 6366 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) |
| 6367 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
| 6368 | else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 6369 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
| 6370 | |
| 6371 | |
| 6372 | set_cr4_guest_host_mask(vmx); |
| 6373 | |
| 6374 | vmcs_write64(TSC_OFFSET, |
| 6375 | vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset); |
| 6376 | |
| 6377 | if (enable_vpid) { |
| 6378 | /* |
| 6379 | * Trivially support vpid by letting L2s share their parent |
| 6380 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 6381 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 6382 | */ |
| 6383 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 6384 | vmx_flush_tlb(vcpu); |
| 6385 | } |
| 6386 | |
| 6387 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) |
| 6388 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
| 6389 | if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
| 6390 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 6391 | else |
| 6392 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 6393 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 6394 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 6395 | |
| 6396 | /* |
| 6397 | * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified |
| 6398 | * TS bit (for lazy fpu) and bits which we consider mandatory enabled. |
| 6399 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 6400 | * the specifications by L1; It's not enough to take |
| 6401 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 6402 | * have more bits than L1 expected. |
| 6403 | */ |
| 6404 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 6405 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 6406 | |
| 6407 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 6408 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 6409 | |
| 6410 | /* shadow page tables on either EPT or shadow page tables */ |
| 6411 | kvm_set_cr3(vcpu, vmcs12->guest_cr3); |
| 6412 | kvm_mmu_reset_context(vcpu); |
| 6413 | |
| 6414 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 6415 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
| 6416 | } |
| 6417 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6418 | /* |
| 6419 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 6420 | * for running an L2 nested guest. |
| 6421 | */ |
| 6422 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 6423 | { |
| 6424 | struct vmcs12 *vmcs12; |
| 6425 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6426 | int cpu; |
| 6427 | struct loaded_vmcs *vmcs02; |
| 6428 | |
| 6429 | if (!nested_vmx_check_permission(vcpu) || |
| 6430 | !nested_vmx_check_vmcs12(vcpu)) |
| 6431 | return 1; |
| 6432 | |
| 6433 | skip_emulated_instruction(vcpu); |
| 6434 | vmcs12 = get_vmcs12(vcpu); |
| 6435 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 6436 | /* |
| 6437 | * The nested entry process starts with enforcing various prerequisites |
| 6438 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 6439 | * they fail: As the SDM explains, some conditions should cause the |
| 6440 | * instruction to fail, while others will cause the instruction to seem |
| 6441 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 6442 | * To speed up the normal (success) code path, we should avoid checking |
| 6443 | * for misconfigurations which will anyway be caught by the processor |
| 6444 | * when using the merged vmcs02. |
| 6445 | */ |
| 6446 | if (vmcs12->launch_state == launch) { |
| 6447 | nested_vmx_failValid(vcpu, |
| 6448 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 6449 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
| 6450 | return 1; |
| 6451 | } |
| 6452 | |
| 6453 | if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) && |
| 6454 | !IS_ALIGNED(vmcs12->msr_bitmap, PAGE_SIZE)) { |
| 6455 | /*TODO: Also verify bits beyond physical address width are 0*/ |
| 6456 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6457 | return 1; |
| 6458 | } |
| 6459 | |
| 6460 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) && |
| 6461 | !IS_ALIGNED(vmcs12->apic_access_addr, PAGE_SIZE)) { |
| 6462 | /*TODO: Also verify bits beyond physical address width are 0*/ |
| 6463 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6464 | return 1; |
| 6465 | } |
| 6466 | |
| 6467 | if (vmcs12->vm_entry_msr_load_count > 0 || |
| 6468 | vmcs12->vm_exit_msr_load_count > 0 || |
| 6469 | vmcs12->vm_exit_msr_store_count > 0) { |
| 6470 | if (printk_ratelimit()) |
| 6471 | printk(KERN_WARNING |
| 6472 | "%s: VMCS MSR_{LOAD,STORE} unsupported\n", __func__); |
| 6473 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6474 | return 1; |
| 6475 | } |
| 6476 | |
| 6477 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
| 6478 | nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high) || |
| 6479 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
| 6480 | nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) || |
| 6481 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
| 6482 | nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) || |
| 6483 | !vmx_control_verify(vmcs12->vm_exit_controls, |
| 6484 | nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high) || |
| 6485 | !vmx_control_verify(vmcs12->vm_entry_controls, |
| 6486 | nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high)) |
| 6487 | { |
| 6488 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6489 | return 1; |
| 6490 | } |
| 6491 | |
| 6492 | if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 6493 | ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 6494 | nested_vmx_failValid(vcpu, |
| 6495 | VMXERR_ENTRY_INVALID_HOST_STATE_FIELD); |
| 6496 | return 1; |
| 6497 | } |
| 6498 | |
| 6499 | if (((vmcs12->guest_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 6500 | ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 6501 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 6502 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 6503 | return 1; |
| 6504 | } |
| 6505 | if (vmcs12->vmcs_link_pointer != -1ull) { |
| 6506 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 6507 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR); |
| 6508 | return 1; |
| 6509 | } |
| 6510 | |
| 6511 | /* |
| 6512 | * We're finally done with prerequisite checking, and can start with |
| 6513 | * the nested entry. |
| 6514 | */ |
| 6515 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6516 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 6517 | if (!vmcs02) |
| 6518 | return -ENOMEM; |
| 6519 | |
| 6520 | enter_guest_mode(vcpu); |
| 6521 | |
| 6522 | vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET); |
| 6523 | |
| 6524 | cpu = get_cpu(); |
| 6525 | vmx->loaded_vmcs = vmcs02; |
| 6526 | vmx_vcpu_put(vcpu); |
| 6527 | vmx_vcpu_load(vcpu, cpu); |
| 6528 | vcpu->cpu = cpu; |
| 6529 | put_cpu(); |
| 6530 | |
| 6531 | vmcs12->launch_state = 1; |
| 6532 | |
| 6533 | prepare_vmcs02(vcpu, vmcs12); |
| 6534 | |
| 6535 | /* |
| 6536 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 6537 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 6538 | * returned as far as L1 is concerned. It will only return (and set |
| 6539 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 6540 | */ |
| 6541 | return 1; |
| 6542 | } |
| 6543 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 6544 | /* |
| 6545 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 6546 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 6547 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 6548 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 6549 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 6550 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 6551 | * didn't trap the bit, because if L1 did, so would L0). |
| 6552 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 6553 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 6554 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 6555 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 6556 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 6557 | * changed these bits, and therefore they need to be updated, but L0 |
| 6558 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 6559 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 6560 | */ |
| 6561 | static inline unsigned long |
| 6562 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6563 | { |
| 6564 | return |
| 6565 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 6566 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 6567 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 6568 | vcpu->arch.cr0_guest_owned_bits)); |
| 6569 | } |
| 6570 | |
| 6571 | static inline unsigned long |
| 6572 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6573 | { |
| 6574 | return |
| 6575 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 6576 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 6577 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 6578 | vcpu->arch.cr4_guest_owned_bits)); |
| 6579 | } |
| 6580 | |
| 6581 | /* |
| 6582 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 6583 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 6584 | * and this function updates it to reflect the changes to the guest state while |
| 6585 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 6586 | * without going back to L1), and to reflect the exit reason. |
| 6587 | * Note that we do not have to copy here all VMCS fields, just those that |
| 6588 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 6589 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 6590 | * which already writes to vmcs12 directly. |
| 6591 | */ |
| 6592 | void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6593 | { |
| 6594 | /* update guest state fields: */ |
| 6595 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 6596 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 6597 | |
| 6598 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 6599 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 6600 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 6601 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 6602 | |
| 6603 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 6604 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 6605 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 6606 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 6607 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 6608 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 6609 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 6610 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 6611 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 6612 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 6613 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 6614 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 6615 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 6616 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 6617 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 6618 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 6619 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 6620 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 6621 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 6622 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 6623 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 6624 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 6625 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 6626 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 6627 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 6628 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 6629 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 6630 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 6631 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 6632 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 6633 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 6634 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 6635 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 6636 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 6637 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 6638 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 6639 | |
| 6640 | vmcs12->guest_activity_state = vmcs_read32(GUEST_ACTIVITY_STATE); |
| 6641 | vmcs12->guest_interruptibility_info = |
| 6642 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 6643 | vmcs12->guest_pending_dbg_exceptions = |
| 6644 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
| 6645 | |
| 6646 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 6647 | * the relevant bit asks not to trap the change */ |
| 6648 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 6649 | if (vmcs12->vm_entry_controls & VM_EXIT_SAVE_IA32_PAT) |
| 6650 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
| 6651 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 6652 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 6653 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
| 6654 | |
| 6655 | /* update exit information fields: */ |
| 6656 | |
| 6657 | vmcs12->vm_exit_reason = vmcs_read32(VM_EXIT_REASON); |
| 6658 | vmcs12->exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6659 | |
| 6660 | vmcs12->vm_exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 6661 | vmcs12->vm_exit_intr_error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
| 6662 | vmcs12->idt_vectoring_info_field = |
| 6663 | vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 6664 | vmcs12->idt_vectoring_error_code = |
| 6665 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 6666 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 6667 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 6668 | |
| 6669 | /* clear vm-entry fields which are to be cleared on exit */ |
| 6670 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) |
| 6671 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
| 6672 | } |
| 6673 | |
| 6674 | /* |
| 6675 | * A part of what we need to when the nested L2 guest exits and we want to |
| 6676 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 6677 | * in vmcs12. |
| 6678 | * This function is to be called not only on normal nested exit, but also on |
| 6679 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 6680 | * Failures During or After Loading Guest State"). |
| 6681 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 6682 | */ |
| 6683 | void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6684 | { |
| 6685 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 6686 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
| 6687 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 6688 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 6689 | else |
| 6690 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 6691 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 6692 | |
| 6693 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 6694 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
| 6695 | /* |
| 6696 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
| 6697 | * actually changed, because it depends on the current state of |
| 6698 | * fpu_active (which may have changed). |
| 6699 | * Note that vmx_set_cr0 refers to efer set above. |
| 6700 | */ |
| 6701 | kvm_set_cr0(vcpu, vmcs12->host_cr0); |
| 6702 | /* |
| 6703 | * If we did fpu_activate()/fpu_deactivate() during L2's run, we need |
| 6704 | * to apply the same changes to L1's vmcs. We just set cr0 correctly, |
| 6705 | * but we also need to update cr0_guest_host_mask and exception_bitmap. |
| 6706 | */ |
| 6707 | update_exception_bitmap(vcpu); |
| 6708 | vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0); |
| 6709 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 6710 | |
| 6711 | /* |
| 6712 | * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01 |
| 6713 | * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); |
| 6714 | */ |
| 6715 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 6716 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 6717 | |
| 6718 | /* shadow page tables on either EPT or shadow page tables */ |
| 6719 | kvm_set_cr3(vcpu, vmcs12->host_cr3); |
| 6720 | kvm_mmu_reset_context(vcpu); |
| 6721 | |
| 6722 | if (enable_vpid) { |
| 6723 | /* |
| 6724 | * Trivially support vpid by letting L2s share their parent |
| 6725 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 6726 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 6727 | */ |
| 6728 | vmx_flush_tlb(vcpu); |
| 6729 | } |
| 6730 | |
| 6731 | |
| 6732 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 6733 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 6734 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 6735 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 6736 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
| 6737 | vmcs_writel(GUEST_TR_BASE, vmcs12->host_tr_base); |
| 6738 | vmcs_writel(GUEST_GS_BASE, vmcs12->host_gs_base); |
| 6739 | vmcs_writel(GUEST_FS_BASE, vmcs12->host_fs_base); |
| 6740 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->host_es_selector); |
| 6741 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->host_cs_selector); |
| 6742 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->host_ss_selector); |
| 6743 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->host_ds_selector); |
| 6744 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->host_fs_selector); |
| 6745 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->host_gs_selector); |
| 6746 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->host_tr_selector); |
| 6747 | |
| 6748 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) |
| 6749 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
| 6750 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 6751 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 6752 | vmcs12->host_ia32_perf_global_ctrl); |
| 6753 | } |
| 6754 | |
| 6755 | /* |
| 6756 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 6757 | * and modify vmcs12 to make it see what it would expect to see there if |
| 6758 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 6759 | */ |
| 6760 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu) |
| 6761 | { |
| 6762 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6763 | int cpu; |
| 6764 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 6765 | |
| 6766 | leave_guest_mode(vcpu); |
| 6767 | prepare_vmcs12(vcpu, vmcs12); |
| 6768 | |
| 6769 | cpu = get_cpu(); |
| 6770 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 6771 | vmx_vcpu_put(vcpu); |
| 6772 | vmx_vcpu_load(vcpu, cpu); |
| 6773 | vcpu->cpu = cpu; |
| 6774 | put_cpu(); |
| 6775 | |
| 6776 | /* if no vmcs02 cache requested, remove the one we used */ |
| 6777 | if (VMCS02_POOL_SIZE == 0) |
| 6778 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 6779 | |
| 6780 | load_vmcs12_host_state(vcpu, vmcs12); |
| 6781 | |
| 6782 | /* Update TSC_OFFSET if vmx_adjust_tsc_offset() was used while L2 ran */ |
| 6783 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
| 6784 | |
| 6785 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 6786 | vmx->host_rsp = 0; |
| 6787 | |
| 6788 | /* Unpin physical memory we referred to in vmcs02 */ |
| 6789 | if (vmx->nested.apic_access_page) { |
| 6790 | nested_release_page(vmx->nested.apic_access_page); |
| 6791 | vmx->nested.apic_access_page = 0; |
| 6792 | } |
| 6793 | |
| 6794 | /* |
| 6795 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 6796 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 6797 | * success or failure flag accordingly. |
| 6798 | */ |
| 6799 | if (unlikely(vmx->fail)) { |
| 6800 | vmx->fail = 0; |
| 6801 | nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 6802 | } else |
| 6803 | nested_vmx_succeed(vcpu); |
| 6804 | } |
| 6805 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 6806 | /* |
| 6807 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 6808 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 6809 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 6810 | * It should only be called before L2 actually succeeded to run, and when |
| 6811 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 6812 | */ |
| 6813 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 6814 | struct vmcs12 *vmcs12, |
| 6815 | u32 reason, unsigned long qualification) |
| 6816 | { |
| 6817 | load_vmcs12_host_state(vcpu, vmcs12); |
| 6818 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 6819 | vmcs12->exit_qualification = qualification; |
| 6820 | nested_vmx_succeed(vcpu); |
| 6821 | } |
| 6822 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 6823 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 6824 | struct x86_instruction_info *info, |
| 6825 | enum x86_intercept_stage stage) |
| 6826 | { |
| 6827 | return X86EMUL_CONTINUE; |
| 6828 | } |
| 6829 | |
Christian Ehrhardt | cbdd1be | 2007-09-09 15:41:59 +0300 | [diff] [blame] | 6830 | static struct kvm_x86_ops vmx_x86_ops = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6831 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 6832 | .disabled_by_bios = vmx_disabled_by_bios, |
| 6833 | .hardware_setup = hardware_setup, |
| 6834 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 6835 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6836 | .hardware_enable = hardware_enable, |
| 6837 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 6838 | .cpu_has_accelerated_tpr = report_flexpriority, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6839 | |
| 6840 | .vcpu_create = vmx_create_vcpu, |
| 6841 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 6842 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6843 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 6844 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6845 | .vcpu_load = vmx_vcpu_load, |
| 6846 | .vcpu_put = vmx_vcpu_put, |
| 6847 | |
| 6848 | .set_guest_debug = set_guest_debug, |
| 6849 | .get_msr = vmx_get_msr, |
| 6850 | .set_msr = vmx_set_msr, |
| 6851 | .get_segment_base = vmx_get_segment_base, |
| 6852 | .get_segment = vmx_get_segment, |
| 6853 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 6854 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6855 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 6856 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 6857 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 6858 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6859 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6860 | .set_cr3 = vmx_set_cr3, |
| 6861 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6862 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6863 | .get_idt = vmx_get_idt, |
| 6864 | .set_idt = vmx_set_idt, |
| 6865 | .get_gdt = vmx_get_gdt, |
| 6866 | .set_gdt = vmx_set_gdt, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 6867 | .set_dr7 = vmx_set_dr7, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6868 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6869 | .get_rflags = vmx_get_rflags, |
| 6870 | .set_rflags = vmx_set_rflags, |
Avi Kivity | ebcbab4 | 2010-02-07 11:56:52 +0200 | [diff] [blame] | 6871 | .fpu_activate = vmx_fpu_activate, |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 6872 | .fpu_deactivate = vmx_fpu_deactivate, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6873 | |
| 6874 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6875 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6876 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 6877 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6878 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 6879 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 6880 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6881 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 6882 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6883 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 6884 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 6885 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 6886 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6887 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 6888 | .get_nmi_mask = vmx_get_nmi_mask, |
| 6889 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6890 | .enable_nmi_window = enable_nmi_window, |
| 6891 | .enable_irq_window = enable_irq_window, |
| 6892 | .update_cr8_intercept = update_cr8_intercept, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6893 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 6894 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 6895 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6896 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6897 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 6898 | .get_exit_info = vmx_get_exit_info, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6899 | .exit_reasons_str = vmx_exit_reasons_str, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 6900 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 6901 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 6902 | |
| 6903 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 6904 | |
| 6905 | .rdtscp_supported = vmx_rdtscp_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 6906 | |
| 6907 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 6908 | |
| 6909 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 6910 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 6911 | .set_tsc_khz = vmx_set_tsc_khz, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 6912 | .write_tsc_offset = vmx_write_tsc_offset, |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 6913 | .adjust_tsc_offset = vmx_adjust_tsc_offset, |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 6914 | .compute_tsc_offset = vmx_compute_tsc_offset, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 6915 | |
| 6916 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 6917 | |
| 6918 | .check_intercept = vmx_check_intercept, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6919 | }; |
| 6920 | |
| 6921 | static int __init vmx_init(void) |
| 6922 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 6923 | int r, i; |
| 6924 | |
| 6925 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6926 | |
| 6927 | for (i = 0; i < NR_VMX_MSR; ++i) |
| 6928 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6929 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6930 | vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6931 | if (!vmx_io_bitmap_a) |
| 6932 | return -ENOMEM; |
| 6933 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6934 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6935 | if (!vmx_io_bitmap_b) { |
| 6936 | r = -ENOMEM; |
| 6937 | goto out; |
| 6938 | } |
| 6939 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6940 | vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6941 | if (!vmx_msr_bitmap_legacy) { |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 6942 | r = -ENOMEM; |
| 6943 | goto out1; |
| 6944 | } |
| 6945 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6946 | vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6947 | if (!vmx_msr_bitmap_longmode) { |
| 6948 | r = -ENOMEM; |
| 6949 | goto out2; |
| 6950 | } |
| 6951 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6952 | /* |
| 6953 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6954 | * delays, but the vmexits simply slow things down). |
| 6955 | */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6956 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6957 | clear_bit(0x80, vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6958 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6959 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6960 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6961 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6962 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 6963 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 6964 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 6965 | |
Avi Kivity | 0ee75be | 2010-04-28 15:39:01 +0300 | [diff] [blame] | 6966 | r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 6967 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6968 | if (r) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6969 | goto out3; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 6970 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6971 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6972 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6973 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6974 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6975 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6976 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6977 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 6978 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6979 | bypass_guest_pf = 0; |
Sheng Yang | 534e38b | 2008-09-08 15:12:30 +0800 | [diff] [blame] | 6980 | kvm_mmu_set_mask_ptes(0ull, 0ull, 0ull, 0ull, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6981 | VMX_EPT_EXECUTABLE_MASK); |
Sheng Yang | 5fdbcb9 | 2008-07-16 09:25:40 +0800 | [diff] [blame] | 6982 | kvm_enable_tdp(); |
| 6983 | } else |
| 6984 | kvm_disable_tdp(); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6985 | |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 6986 | if (bypass_guest_pf) |
| 6987 | kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull); |
| 6988 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6989 | return 0; |
| 6990 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6991 | out3: |
| 6992 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 6993 | out2: |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 6994 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6995 | out1: |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6996 | free_page((unsigned long)vmx_io_bitmap_b); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6997 | out: |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 6998 | free_page((unsigned long)vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 6999 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7000 | } |
| 7001 | |
| 7002 | static void __exit vmx_exit(void) |
| 7003 | { |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7004 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 7005 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7006 | free_page((unsigned long)vmx_io_bitmap_b); |
| 7007 | free_page((unsigned long)vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7008 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 7009 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7010 | } |
| 7011 | |
| 7012 | module_init(vmx_init) |
| 7013 | module_exit(vmx_exit) |