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 | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 21 | #include "cpuid.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 22 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 23 | #include <linux/kvm_host.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 24 | #include <linux/module.h> |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 25 | #include <linux/kernel.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 26 | #include <linux/mm.h> |
| 27 | #include <linux/highmem.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 28 | #include <linux/sched.h> |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 29 | #include <linux/moduleparam.h> |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 30 | #include <linux/mod_devicetable.h> |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 31 | #include <linux/ftrace_event.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 33 | #include <linux/tboot.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 34 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 35 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 36 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 37 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 38 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 39 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 40 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 41 | #include <asm/mce.h> |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 42 | #include <asm/i387.h> |
| 43 | #include <asm/xcr.h> |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 44 | #include <asm/perf_event.h> |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 45 | #include <asm/kexec.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 46 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 47 | #include "trace.h" |
| 48 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 49 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 50 | #define __ex_clear(x, reg) \ |
| 51 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 52 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 53 | MODULE_AUTHOR("Qumranet"); |
| 54 | MODULE_LICENSE("GPL"); |
| 55 | |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 56 | static const struct x86_cpu_id vmx_cpu_id[] = { |
| 57 | X86_FEATURE_MATCH(X86_FEATURE_VMX), |
| 58 | {} |
| 59 | }; |
| 60 | MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id); |
| 61 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 62 | static bool __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 63 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 64 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 65 | static bool __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 66 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 67 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 68 | static bool __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 69 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 70 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 71 | static bool __read_mostly enable_unrestricted_guest = 1; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 72 | module_param_named(unrestricted_guest, |
| 73 | enable_unrestricted_guest, bool, S_IRUGO); |
| 74 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 75 | static bool __read_mostly enable_ept_ad_bits = 1; |
| 76 | module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO); |
| 77 | |
Avi Kivity | a27685c | 2012-06-12 20:30:18 +0300 | [diff] [blame] | 78 | static bool __read_mostly emulate_invalid_guest_state = true; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 79 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 80 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 81 | static bool __read_mostly vmm_exclusive = 1; |
Dongxiao Xu | b923e62 | 2010-05-11 18:29:45 +0800 | [diff] [blame] | 82 | module_param(vmm_exclusive, bool, S_IRUGO); |
| 83 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 84 | static bool __read_mostly fasteoi = 1; |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 85 | module_param(fasteoi, bool, S_IRUGO); |
| 86 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 87 | /* |
| 88 | * If nested=1, nested virtualization is supported, i.e., guests may use |
| 89 | * VMX and be a hypervisor for its own guests. If nested=0, guests may not |
| 90 | * use VMX instructions. |
| 91 | */ |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 92 | static bool __read_mostly nested = 0; |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 93 | module_param(nested, bool, S_IRUGO); |
| 94 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 95 | #define KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST \ |
| 96 | (X86_CR0_WP | X86_CR0_NE | X86_CR0_NW | X86_CR0_CD) |
| 97 | #define KVM_GUEST_CR0_MASK \ |
| 98 | (KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE) |
| 99 | #define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST \ |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 100 | (X86_CR0_WP | X86_CR0_NE) |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 101 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 102 | (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] | 103 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 104 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
| 105 | | X86_CR4_OSXMMEXCPT) |
| 106 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 107 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 108 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 109 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 110 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 111 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 112 | /* |
| 113 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 114 | * ple_gap: upper bound on the amount of time between two successive |
| 115 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 116 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 117 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 118 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 119 | * less than 2^12 cycles |
| 120 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 121 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 122 | */ |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 123 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 124 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 125 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 126 | module_param(ple_gap, int, S_IRUGO); |
| 127 | |
| 128 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 129 | module_param(ple_window, int, S_IRUGO); |
| 130 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 131 | extern const ulong vmx_return; |
| 132 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 133 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 134 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 135 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 136 | struct vmcs { |
| 137 | u32 revision_id; |
| 138 | u32 abort; |
| 139 | char data[0]; |
| 140 | }; |
| 141 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 142 | /* |
| 143 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 144 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 145 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 146 | */ |
| 147 | struct loaded_vmcs { |
| 148 | struct vmcs *vmcs; |
| 149 | int cpu; |
| 150 | int launched; |
| 151 | struct list_head loaded_vmcss_on_cpu_link; |
| 152 | }; |
| 153 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 154 | struct shared_msr_entry { |
| 155 | unsigned index; |
| 156 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 157 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 158 | }; |
| 159 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 160 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 161 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 162 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 163 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 164 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 165 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 166 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 167 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 168 | * underlying hardware which will be used to run L2. |
| 169 | * This structure is packed to ensure that its layout is identical across |
| 170 | * machines (necessary for live migration). |
| 171 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 172 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 173 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 174 | struct __packed vmcs12 { |
| 175 | /* According to the Intel spec, a VMCS region must start with the |
| 176 | * following two fields. Then follow implementation-specific data. |
| 177 | */ |
| 178 | u32 revision_id; |
| 179 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 180 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 181 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 182 | u32 padding[7]; /* room for future expansion */ |
| 183 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 184 | u64 io_bitmap_a; |
| 185 | u64 io_bitmap_b; |
| 186 | u64 msr_bitmap; |
| 187 | u64 vm_exit_msr_store_addr; |
| 188 | u64 vm_exit_msr_load_addr; |
| 189 | u64 vm_entry_msr_load_addr; |
| 190 | u64 tsc_offset; |
| 191 | u64 virtual_apic_page_addr; |
| 192 | u64 apic_access_addr; |
| 193 | u64 ept_pointer; |
| 194 | u64 guest_physical_address; |
| 195 | u64 vmcs_link_pointer; |
| 196 | u64 guest_ia32_debugctl; |
| 197 | u64 guest_ia32_pat; |
| 198 | u64 guest_ia32_efer; |
| 199 | u64 guest_ia32_perf_global_ctrl; |
| 200 | u64 guest_pdptr0; |
| 201 | u64 guest_pdptr1; |
| 202 | u64 guest_pdptr2; |
| 203 | u64 guest_pdptr3; |
| 204 | u64 host_ia32_pat; |
| 205 | u64 host_ia32_efer; |
| 206 | u64 host_ia32_perf_global_ctrl; |
| 207 | u64 padding64[8]; /* room for future expansion */ |
| 208 | /* |
| 209 | * To allow migration of L1 (complete with its L2 guests) between |
| 210 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 211 | * unsigned long fields with no explict size. We use u64 (aliased |
| 212 | * natural_width) instead. Luckily, x86 is little-endian. |
| 213 | */ |
| 214 | natural_width cr0_guest_host_mask; |
| 215 | natural_width cr4_guest_host_mask; |
| 216 | natural_width cr0_read_shadow; |
| 217 | natural_width cr4_read_shadow; |
| 218 | natural_width cr3_target_value0; |
| 219 | natural_width cr3_target_value1; |
| 220 | natural_width cr3_target_value2; |
| 221 | natural_width cr3_target_value3; |
| 222 | natural_width exit_qualification; |
| 223 | natural_width guest_linear_address; |
| 224 | natural_width guest_cr0; |
| 225 | natural_width guest_cr3; |
| 226 | natural_width guest_cr4; |
| 227 | natural_width guest_es_base; |
| 228 | natural_width guest_cs_base; |
| 229 | natural_width guest_ss_base; |
| 230 | natural_width guest_ds_base; |
| 231 | natural_width guest_fs_base; |
| 232 | natural_width guest_gs_base; |
| 233 | natural_width guest_ldtr_base; |
| 234 | natural_width guest_tr_base; |
| 235 | natural_width guest_gdtr_base; |
| 236 | natural_width guest_idtr_base; |
| 237 | natural_width guest_dr7; |
| 238 | natural_width guest_rsp; |
| 239 | natural_width guest_rip; |
| 240 | natural_width guest_rflags; |
| 241 | natural_width guest_pending_dbg_exceptions; |
| 242 | natural_width guest_sysenter_esp; |
| 243 | natural_width guest_sysenter_eip; |
| 244 | natural_width host_cr0; |
| 245 | natural_width host_cr3; |
| 246 | natural_width host_cr4; |
| 247 | natural_width host_fs_base; |
| 248 | natural_width host_gs_base; |
| 249 | natural_width host_tr_base; |
| 250 | natural_width host_gdtr_base; |
| 251 | natural_width host_idtr_base; |
| 252 | natural_width host_ia32_sysenter_esp; |
| 253 | natural_width host_ia32_sysenter_eip; |
| 254 | natural_width host_rsp; |
| 255 | natural_width host_rip; |
| 256 | natural_width paddingl[8]; /* room for future expansion */ |
| 257 | u32 pin_based_vm_exec_control; |
| 258 | u32 cpu_based_vm_exec_control; |
| 259 | u32 exception_bitmap; |
| 260 | u32 page_fault_error_code_mask; |
| 261 | u32 page_fault_error_code_match; |
| 262 | u32 cr3_target_count; |
| 263 | u32 vm_exit_controls; |
| 264 | u32 vm_exit_msr_store_count; |
| 265 | u32 vm_exit_msr_load_count; |
| 266 | u32 vm_entry_controls; |
| 267 | u32 vm_entry_msr_load_count; |
| 268 | u32 vm_entry_intr_info_field; |
| 269 | u32 vm_entry_exception_error_code; |
| 270 | u32 vm_entry_instruction_len; |
| 271 | u32 tpr_threshold; |
| 272 | u32 secondary_vm_exec_control; |
| 273 | u32 vm_instruction_error; |
| 274 | u32 vm_exit_reason; |
| 275 | u32 vm_exit_intr_info; |
| 276 | u32 vm_exit_intr_error_code; |
| 277 | u32 idt_vectoring_info_field; |
| 278 | u32 idt_vectoring_error_code; |
| 279 | u32 vm_exit_instruction_len; |
| 280 | u32 vmx_instruction_info; |
| 281 | u32 guest_es_limit; |
| 282 | u32 guest_cs_limit; |
| 283 | u32 guest_ss_limit; |
| 284 | u32 guest_ds_limit; |
| 285 | u32 guest_fs_limit; |
| 286 | u32 guest_gs_limit; |
| 287 | u32 guest_ldtr_limit; |
| 288 | u32 guest_tr_limit; |
| 289 | u32 guest_gdtr_limit; |
| 290 | u32 guest_idtr_limit; |
| 291 | u32 guest_es_ar_bytes; |
| 292 | u32 guest_cs_ar_bytes; |
| 293 | u32 guest_ss_ar_bytes; |
| 294 | u32 guest_ds_ar_bytes; |
| 295 | u32 guest_fs_ar_bytes; |
| 296 | u32 guest_gs_ar_bytes; |
| 297 | u32 guest_ldtr_ar_bytes; |
| 298 | u32 guest_tr_ar_bytes; |
| 299 | u32 guest_interruptibility_info; |
| 300 | u32 guest_activity_state; |
| 301 | u32 guest_sysenter_cs; |
| 302 | u32 host_ia32_sysenter_cs; |
| 303 | u32 padding32[8]; /* room for future expansion */ |
| 304 | u16 virtual_processor_id; |
| 305 | u16 guest_es_selector; |
| 306 | u16 guest_cs_selector; |
| 307 | u16 guest_ss_selector; |
| 308 | u16 guest_ds_selector; |
| 309 | u16 guest_fs_selector; |
| 310 | u16 guest_gs_selector; |
| 311 | u16 guest_ldtr_selector; |
| 312 | u16 guest_tr_selector; |
| 313 | u16 host_es_selector; |
| 314 | u16 host_cs_selector; |
| 315 | u16 host_ss_selector; |
| 316 | u16 host_ds_selector; |
| 317 | u16 host_fs_selector; |
| 318 | u16 host_gs_selector; |
| 319 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 320 | }; |
| 321 | |
| 322 | /* |
| 323 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 324 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 325 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 326 | */ |
| 327 | #define VMCS12_REVISION 0x11e57ed0 |
| 328 | |
| 329 | /* |
| 330 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 331 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 332 | * current implementation, 4K are reserved to avoid future complications. |
| 333 | */ |
| 334 | #define VMCS12_SIZE 0x1000 |
| 335 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 336 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 337 | struct vmcs02_list { |
| 338 | struct list_head list; |
| 339 | gpa_t vmptr; |
| 340 | struct loaded_vmcs vmcs02; |
| 341 | }; |
| 342 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 343 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 344 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 345 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 346 | */ |
| 347 | struct nested_vmx { |
| 348 | /* Has the level1 guest done vmxon? */ |
| 349 | bool vmxon; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 350 | |
| 351 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 352 | gpa_t current_vmptr; |
| 353 | /* The host-usable pointer to the above */ |
| 354 | struct page *current_vmcs12_page; |
| 355 | struct vmcs12 *current_vmcs12; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 356 | |
| 357 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 358 | struct list_head vmcs02_pool; |
| 359 | int vmcs02_num; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 360 | u64 vmcs01_tsc_offset; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 361 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 362 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 363 | /* |
| 364 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 365 | * we must keep them pinned while L2 runs. |
| 366 | */ |
| 367 | struct page *apic_access_page; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 368 | }; |
| 369 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 370 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 371 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 372 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 373 | u8 fail; |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 374 | u8 cpl; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 375 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 376 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 377 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 378 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 379 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 380 | int nmsrs; |
| 381 | int save_nmsrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 382 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 383 | u64 msr_host_kernel_gs_base; |
| 384 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 385 | #endif |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 386 | /* |
| 387 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 388 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 389 | * guest (L2), it points to a different VMCS. |
| 390 | */ |
| 391 | struct loaded_vmcs vmcs01; |
| 392 | struct loaded_vmcs *loaded_vmcs; |
| 393 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 394 | struct msr_autoload { |
| 395 | unsigned nr; |
| 396 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 397 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 398 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 399 | struct { |
| 400 | int loaded; |
| 401 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 402 | #ifdef CONFIG_X86_64 |
| 403 | u16 ds_sel, es_sel; |
| 404 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 405 | int gs_ldt_reload_needed; |
| 406 | int fs_reload_needed; |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 407 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 408 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 409 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 410 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 411 | struct kvm_segment segs[8]; |
| 412 | } rmode; |
| 413 | struct { |
| 414 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 415 | struct kvm_save_segment { |
| 416 | u16 selector; |
| 417 | unsigned long base; |
| 418 | u32 limit; |
| 419 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 420 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 421 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 422 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 423 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 424 | |
| 425 | /* Support for vnmi-less CPUs */ |
| 426 | int soft_vnmi_blocked; |
| 427 | ktime_t entry_time; |
| 428 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 429 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 430 | |
| 431 | bool rdtscp_enabled; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 432 | |
| 433 | /* Support for a guest hypervisor (nested VMX) */ |
| 434 | struct nested_vmx nested; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 435 | }; |
| 436 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 437 | enum segment_cache_field { |
| 438 | SEG_FIELD_SEL = 0, |
| 439 | SEG_FIELD_BASE = 1, |
| 440 | SEG_FIELD_LIMIT = 2, |
| 441 | SEG_FIELD_AR = 3, |
| 442 | |
| 443 | SEG_FIELD_NR = 4 |
| 444 | }; |
| 445 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 446 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 447 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 448 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 449 | } |
| 450 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 451 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 452 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 453 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 454 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 455 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 456 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 457 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
| 458 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 459 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 460 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 461 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 462 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 463 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 464 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 465 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
| 466 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 467 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 468 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 469 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 470 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 471 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 472 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 473 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 474 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 475 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 476 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 477 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 478 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 479 | FIELD64(TSC_OFFSET, tsc_offset), |
| 480 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 481 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
| 482 | FIELD64(EPT_POINTER, ept_pointer), |
| 483 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 484 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
| 485 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 486 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 487 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 488 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 489 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 490 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 491 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 492 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
| 493 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 494 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 495 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 496 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 497 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 498 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 499 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 500 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 501 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 502 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 503 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 504 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 505 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 506 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 507 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 508 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 509 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 510 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 511 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 512 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 513 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 514 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 515 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 516 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 517 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 518 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 519 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 520 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 521 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 522 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 523 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 524 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 525 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 526 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 527 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 528 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 529 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 530 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 531 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 532 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 533 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 534 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 535 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 536 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 537 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 538 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 539 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 540 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 541 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
| 542 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 543 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 544 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 545 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 546 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 547 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 548 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 549 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 550 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 551 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 552 | FIELD(GUEST_CR0, guest_cr0), |
| 553 | FIELD(GUEST_CR3, guest_cr3), |
| 554 | FIELD(GUEST_CR4, guest_cr4), |
| 555 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 556 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 557 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 558 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 559 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 560 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 561 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 562 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 563 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 564 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 565 | FIELD(GUEST_DR7, guest_dr7), |
| 566 | FIELD(GUEST_RSP, guest_rsp), |
| 567 | FIELD(GUEST_RIP, guest_rip), |
| 568 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 569 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 570 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 571 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 572 | FIELD(HOST_CR0, host_cr0), |
| 573 | FIELD(HOST_CR3, host_cr3), |
| 574 | FIELD(HOST_CR4, host_cr4), |
| 575 | FIELD(HOST_FS_BASE, host_fs_base), |
| 576 | FIELD(HOST_GS_BASE, host_gs_base), |
| 577 | FIELD(HOST_TR_BASE, host_tr_base), |
| 578 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 579 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 580 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 581 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 582 | FIELD(HOST_RSP, host_rsp), |
| 583 | FIELD(HOST_RIP, host_rip), |
| 584 | }; |
| 585 | static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table); |
| 586 | |
| 587 | static inline short vmcs_field_to_offset(unsigned long field) |
| 588 | { |
| 589 | if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0) |
| 590 | return -1; |
| 591 | return vmcs_field_to_offset_table[field]; |
| 592 | } |
| 593 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 594 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 595 | { |
| 596 | return to_vmx(vcpu)->nested.current_vmcs12; |
| 597 | } |
| 598 | |
| 599 | static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr) |
| 600 | { |
| 601 | struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 602 | if (is_error_page(page)) |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 603 | return NULL; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 604 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 605 | return page; |
| 606 | } |
| 607 | |
| 608 | static void nested_release_page(struct page *page) |
| 609 | { |
| 610 | kvm_release_page_dirty(page); |
| 611 | } |
| 612 | |
| 613 | static void nested_release_page_clean(struct page *page) |
| 614 | { |
| 615 | kvm_release_page_clean(page); |
| 616 | } |
| 617 | |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 618 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 619 | static void kvm_cpu_vmxon(u64 addr); |
| 620 | static void kvm_cpu_vmxoff(void); |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 621 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 622 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 623 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 624 | struct kvm_segment *var, int seg); |
| 625 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 626 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 627 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 628 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 629 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 630 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 631 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 632 | /* |
| 633 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 634 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 635 | */ |
| 636 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 637 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 638 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 639 | static unsigned long *vmx_io_bitmap_a; |
| 640 | static unsigned long *vmx_io_bitmap_b; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 641 | static unsigned long *vmx_msr_bitmap_legacy; |
| 642 | static unsigned long *vmx_msr_bitmap_longmode; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 643 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 644 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 645 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 646 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 647 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 648 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 649 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 650 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 651 | int size; |
| 652 | int order; |
| 653 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 654 | u32 pin_based_exec_ctrl; |
| 655 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 656 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 657 | u32 vmexit_ctrl; |
| 658 | u32 vmentry_ctrl; |
| 659 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 660 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 661 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 662 | u32 ept; |
| 663 | u32 vpid; |
| 664 | } vmx_capability; |
| 665 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 666 | #define VMX_SEGMENT_FIELD(seg) \ |
| 667 | [VCPU_SREG_##seg] = { \ |
| 668 | .selector = GUEST_##seg##_SELECTOR, \ |
| 669 | .base = GUEST_##seg##_BASE, \ |
| 670 | .limit = GUEST_##seg##_LIMIT, \ |
| 671 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 672 | } |
| 673 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 674 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 675 | unsigned selector; |
| 676 | unsigned base; |
| 677 | unsigned limit; |
| 678 | unsigned ar_bytes; |
| 679 | } kvm_vmx_segment_fields[] = { |
| 680 | VMX_SEGMENT_FIELD(CS), |
| 681 | VMX_SEGMENT_FIELD(DS), |
| 682 | VMX_SEGMENT_FIELD(ES), |
| 683 | VMX_SEGMENT_FIELD(FS), |
| 684 | VMX_SEGMENT_FIELD(GS), |
| 685 | VMX_SEGMENT_FIELD(SS), |
| 686 | VMX_SEGMENT_FIELD(TR), |
| 687 | VMX_SEGMENT_FIELD(LDTR), |
| 688 | }; |
| 689 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 690 | static u64 host_efer; |
| 691 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 692 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 693 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 694 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 695 | * 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] | 696 | * away by decrementing the array size. |
| 697 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 698 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 699 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 700 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 701 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 702 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 703 | }; |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 704 | #define NR_VMX_MSR ARRAY_SIZE(vmx_msr_index) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 705 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 706 | static inline bool is_page_fault(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_VECTOR_MASK | |
| 709 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 710 | (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 711 | } |
| 712 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 713 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 714 | { |
| 715 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 716 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 717 | (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 718 | } |
| 719 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 720 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 721 | { |
| 722 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 723 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 724 | (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 725 | } |
| 726 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 727 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 728 | { |
| 729 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 730 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 731 | } |
| 732 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 733 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 734 | { |
| 735 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 736 | INTR_INFO_VALID_MASK)) == |
| 737 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 738 | } |
| 739 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 740 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 741 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 742 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 743 | } |
| 744 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 745 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 746 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 747 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 748 | } |
| 749 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 750 | static inline bool vm_need_tpr_shadow(struct kvm *kvm) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 751 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 752 | return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 753 | } |
| 754 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 755 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 756 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 757 | return vmcs_config.cpu_based_exec_ctrl & |
| 758 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 759 | } |
| 760 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 761 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 762 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 763 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 764 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 765 | } |
| 766 | |
| 767 | static inline bool cpu_has_vmx_flexpriority(void) |
| 768 | { |
| 769 | return cpu_has_vmx_tpr_shadow() && |
| 770 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 771 | } |
| 772 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 773 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 774 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 775 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | static inline bool cpu_has_vmx_eptp_uncacheable(void) |
| 779 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 780 | return vmx_capability.ept & VMX_EPTP_UC_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | static inline bool cpu_has_vmx_eptp_writeback(void) |
| 784 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 785 | return vmx_capability.ept & VMX_EPTP_WB_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 789 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 790 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 791 | } |
| 792 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 793 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 794 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 795 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 796 | } |
| 797 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 798 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 799 | { |
| 800 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 801 | } |
| 802 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 803 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 804 | { |
| 805 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 806 | } |
| 807 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 808 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 809 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 810 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
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_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 814 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 815 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 816 | } |
| 817 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 818 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 819 | { |
| 820 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 821 | } |
| 822 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 823 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 824 | { |
| 825 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 826 | } |
| 827 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 828 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 829 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 830 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 831 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 832 | } |
| 833 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 834 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 835 | { |
| 836 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 837 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 838 | } |
| 839 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 840 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 841 | { |
| 842 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 843 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 844 | } |
| 845 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 846 | static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 847 | { |
Gui Jianfeng | 6d3e435 | 2010-01-29 15:36:59 +0800 | [diff] [blame] | 848 | return flexpriority_enabled && irqchip_in_kernel(kvm); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 849 | } |
| 850 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 851 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 852 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 853 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 854 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 855 | } |
| 856 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 857 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 858 | { |
| 859 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 860 | SECONDARY_EXEC_RDTSCP; |
| 861 | } |
| 862 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 863 | static inline bool cpu_has_vmx_invpcid(void) |
| 864 | { |
| 865 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 866 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 867 | } |
| 868 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 869 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 870 | { |
| 871 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 872 | } |
| 873 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 874 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 875 | { |
| 876 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 877 | SECONDARY_EXEC_WBINVD_EXITING; |
| 878 | } |
| 879 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 880 | static inline bool report_flexpriority(void) |
| 881 | { |
| 882 | return flexpriority_enabled; |
| 883 | } |
| 884 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 885 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 886 | { |
| 887 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 888 | } |
| 889 | |
| 890 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 891 | { |
| 892 | return (vmcs12->cpu_based_vm_exec_control & |
| 893 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 894 | (vmcs12->secondary_vm_exec_control & bit); |
| 895 | } |
| 896 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 897 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12, |
| 898 | struct kvm_vcpu *vcpu) |
| 899 | { |
| 900 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 901 | } |
| 902 | |
| 903 | static inline bool is_exception(u32 intr_info) |
| 904 | { |
| 905 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 906 | == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK); |
| 907 | } |
| 908 | |
| 909 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 910 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 911 | struct vmcs12 *vmcs12, |
| 912 | u32 reason, unsigned long qualification); |
| 913 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 914 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 915 | { |
| 916 | int i; |
| 917 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 918 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 919 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 920 | return i; |
| 921 | return -1; |
| 922 | } |
| 923 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 924 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 925 | { |
| 926 | struct { |
| 927 | u64 vpid : 16; |
| 928 | u64 rsvd : 48; |
| 929 | u64 gva; |
| 930 | } operand = { vpid, 0, gva }; |
| 931 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 932 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 933 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 934 | "; ja 1f ; ud2 ; 1:" |
| 935 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 936 | } |
| 937 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 938 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 939 | { |
| 940 | struct { |
| 941 | u64 eptp, gpa; |
| 942 | } operand = {eptp, gpa}; |
| 943 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 944 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 945 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 946 | "; ja 1f ; ud2 ; 1:\n" |
| 947 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 948 | } |
| 949 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 950 | 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] | 951 | { |
| 952 | int i; |
| 953 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 954 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 955 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 956 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 957 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 958 | } |
| 959 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 960 | static void vmcs_clear(struct vmcs *vmcs) |
| 961 | { |
| 962 | u64 phys_addr = __pa(vmcs); |
| 963 | u8 error; |
| 964 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 965 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 966 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 967 | : "cc", "memory"); |
| 968 | if (error) |
| 969 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 970 | vmcs, phys_addr); |
| 971 | } |
| 972 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 973 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 974 | { |
| 975 | vmcs_clear(loaded_vmcs->vmcs); |
| 976 | loaded_vmcs->cpu = -1; |
| 977 | loaded_vmcs->launched = 0; |
| 978 | } |
| 979 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 980 | static void vmcs_load(struct vmcs *vmcs) |
| 981 | { |
| 982 | u64 phys_addr = __pa(vmcs); |
| 983 | u8 error; |
| 984 | |
| 985 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 986 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 987 | : "cc", "memory"); |
| 988 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 989 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 990 | vmcs, phys_addr); |
| 991 | } |
| 992 | |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 993 | #ifdef CONFIG_KEXEC |
| 994 | /* |
| 995 | * This bitmap is used to indicate whether the vmclear |
| 996 | * operation is enabled on all cpus. All disabled by |
| 997 | * default. |
| 998 | */ |
| 999 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1000 | |
| 1001 | static inline void crash_enable_local_vmclear(int cpu) |
| 1002 | { |
| 1003 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1004 | } |
| 1005 | |
| 1006 | static inline void crash_disable_local_vmclear(int cpu) |
| 1007 | { |
| 1008 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1009 | } |
| 1010 | |
| 1011 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1012 | { |
| 1013 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1014 | } |
| 1015 | |
| 1016 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1017 | { |
| 1018 | int cpu = raw_smp_processor_id(); |
| 1019 | struct loaded_vmcs *v; |
| 1020 | |
| 1021 | if (!crash_local_vmclear_enabled(cpu)) |
| 1022 | return; |
| 1023 | |
| 1024 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1025 | loaded_vmcss_on_cpu_link) |
| 1026 | vmcs_clear(v->vmcs); |
| 1027 | } |
| 1028 | #else |
| 1029 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1030 | static inline void crash_disable_local_vmclear(int cpu) { } |
| 1031 | #endif /* CONFIG_KEXEC */ |
| 1032 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1033 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1034 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1035 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1036 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1037 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1038 | if (loaded_vmcs->cpu != cpu) |
| 1039 | return; /* vcpu migration can race with cpu offline */ |
| 1040 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1041 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1042 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1043 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1044 | |
| 1045 | /* |
| 1046 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1047 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1048 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1049 | * then adds the vmcs into percpu list before it is deleted. |
| 1050 | */ |
| 1051 | smp_wmb(); |
| 1052 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1053 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1054 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1055 | } |
| 1056 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1057 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1058 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1059 | int cpu = loaded_vmcs->cpu; |
| 1060 | |
| 1061 | if (cpu != -1) |
| 1062 | smp_call_function_single(cpu, |
| 1063 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1064 | } |
| 1065 | |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1066 | static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1067 | { |
| 1068 | if (vmx->vpid == 0) |
| 1069 | return; |
| 1070 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1071 | if (cpu_has_vmx_invvpid_single()) |
| 1072 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1073 | } |
| 1074 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1075 | static inline void vpid_sync_vcpu_global(void) |
| 1076 | { |
| 1077 | if (cpu_has_vmx_invvpid_global()) |
| 1078 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1079 | } |
| 1080 | |
| 1081 | static inline void vpid_sync_context(struct vcpu_vmx *vmx) |
| 1082 | { |
| 1083 | if (cpu_has_vmx_invvpid_single()) |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1084 | vpid_sync_vcpu_single(vmx); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1085 | else |
| 1086 | vpid_sync_vcpu_global(); |
| 1087 | } |
| 1088 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1089 | static inline void ept_sync_global(void) |
| 1090 | { |
| 1091 | if (cpu_has_vmx_invept_global()) |
| 1092 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1093 | } |
| 1094 | |
| 1095 | static inline void ept_sync_context(u64 eptp) |
| 1096 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1097 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1098 | if (cpu_has_vmx_invept_context()) |
| 1099 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1100 | else |
| 1101 | ept_sync_global(); |
| 1102 | } |
| 1103 | } |
| 1104 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1105 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1106 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1107 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1108 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1109 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1110 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1111 | return value; |
| 1112 | } |
| 1113 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1114 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1115 | { |
| 1116 | return vmcs_readl(field); |
| 1117 | } |
| 1118 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1119 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1120 | { |
| 1121 | return vmcs_readl(field); |
| 1122 | } |
| 1123 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1124 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1125 | { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1126 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1127 | return vmcs_readl(field); |
| 1128 | #else |
| 1129 | return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32); |
| 1130 | #endif |
| 1131 | } |
| 1132 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1133 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1134 | { |
| 1135 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1136 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1137 | dump_stack(); |
| 1138 | } |
| 1139 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1140 | static void vmcs_writel(unsigned long field, unsigned long value) |
| 1141 | { |
| 1142 | u8 error; |
| 1143 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1144 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1145 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1146 | if (unlikely(error)) |
| 1147 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | static void vmcs_write16(unsigned long field, u16 value) |
| 1151 | { |
| 1152 | vmcs_writel(field, value); |
| 1153 | } |
| 1154 | |
| 1155 | static void vmcs_write32(unsigned long field, u32 value) |
| 1156 | { |
| 1157 | vmcs_writel(field, value); |
| 1158 | } |
| 1159 | |
| 1160 | static void vmcs_write64(unsigned long field, u64 value) |
| 1161 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1162 | vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1163 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1164 | asm volatile (""); |
| 1165 | vmcs_writel(field+1, value >> 32); |
| 1166 | #endif |
| 1167 | } |
| 1168 | |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1169 | static void vmcs_clear_bits(unsigned long field, u32 mask) |
| 1170 | { |
| 1171 | vmcs_writel(field, vmcs_readl(field) & ~mask); |
| 1172 | } |
| 1173 | |
| 1174 | static void vmcs_set_bits(unsigned long field, u32 mask) |
| 1175 | { |
| 1176 | vmcs_writel(field, vmcs_readl(field) | mask); |
| 1177 | } |
| 1178 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1179 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1180 | { |
| 1181 | vmx->segment_cache.bitmask = 0; |
| 1182 | } |
| 1183 | |
| 1184 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1185 | unsigned field) |
| 1186 | { |
| 1187 | bool ret; |
| 1188 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1189 | |
| 1190 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1191 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1192 | vmx->segment_cache.bitmask = 0; |
| 1193 | } |
| 1194 | ret = vmx->segment_cache.bitmask & mask; |
| 1195 | vmx->segment_cache.bitmask |= mask; |
| 1196 | return ret; |
| 1197 | } |
| 1198 | |
| 1199 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1200 | { |
| 1201 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1202 | |
| 1203 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1204 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1205 | return *p; |
| 1206 | } |
| 1207 | |
| 1208 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1209 | { |
| 1210 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1211 | |
| 1212 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1213 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1214 | return *p; |
| 1215 | } |
| 1216 | |
| 1217 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1218 | { |
| 1219 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1220 | |
| 1221 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1222 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1223 | return *p; |
| 1224 | } |
| 1225 | |
| 1226 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1227 | { |
| 1228 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1229 | |
| 1230 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1231 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1232 | return *p; |
| 1233 | } |
| 1234 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1235 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1236 | { |
| 1237 | u32 eb; |
| 1238 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1239 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
| 1240 | (1u << NM_VECTOR) | (1u << DB_VECTOR); |
| 1241 | if ((vcpu->guest_debug & |
| 1242 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1243 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1244 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1245 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1246 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1247 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1248 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 1249 | if (vcpu->fpu_active) |
| 1250 | eb &= ~(1u << NM_VECTOR); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1251 | |
| 1252 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1253 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1254 | * them to L1. When running L2, we will only handle the exceptions |
| 1255 | * specified above if L1 did not want them. |
| 1256 | */ |
| 1257 | if (is_guest_mode(vcpu)) |
| 1258 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1259 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1260 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1261 | } |
| 1262 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1263 | static void clear_atomic_switch_msr_special(unsigned long entry, |
| 1264 | unsigned long exit) |
| 1265 | { |
| 1266 | vmcs_clear_bits(VM_ENTRY_CONTROLS, entry); |
| 1267 | vmcs_clear_bits(VM_EXIT_CONTROLS, exit); |
| 1268 | } |
| 1269 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1270 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1271 | { |
| 1272 | unsigned i; |
| 1273 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1274 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1275 | switch (msr) { |
| 1276 | case MSR_EFER: |
| 1277 | if (cpu_has_load_ia32_efer) { |
| 1278 | clear_atomic_switch_msr_special(VM_ENTRY_LOAD_IA32_EFER, |
| 1279 | VM_EXIT_LOAD_IA32_EFER); |
| 1280 | return; |
| 1281 | } |
| 1282 | break; |
| 1283 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1284 | if (cpu_has_load_perf_global_ctrl) { |
| 1285 | clear_atomic_switch_msr_special( |
| 1286 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1287 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1288 | return; |
| 1289 | } |
| 1290 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1291 | } |
| 1292 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1293 | for (i = 0; i < m->nr; ++i) |
| 1294 | if (m->guest[i].index == msr) |
| 1295 | break; |
| 1296 | |
| 1297 | if (i == m->nr) |
| 1298 | return; |
| 1299 | --m->nr; |
| 1300 | m->guest[i] = m->guest[m->nr]; |
| 1301 | m->host[i] = m->host[m->nr]; |
| 1302 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1303 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1304 | } |
| 1305 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1306 | static void add_atomic_switch_msr_special(unsigned long entry, |
| 1307 | unsigned long exit, unsigned long guest_val_vmcs, |
| 1308 | unsigned long host_val_vmcs, u64 guest_val, u64 host_val) |
| 1309 | { |
| 1310 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1311 | vmcs_write64(host_val_vmcs, host_val); |
| 1312 | vmcs_set_bits(VM_ENTRY_CONTROLS, entry); |
| 1313 | vmcs_set_bits(VM_EXIT_CONTROLS, exit); |
| 1314 | } |
| 1315 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1316 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1317 | u64 guest_val, u64 host_val) |
| 1318 | { |
| 1319 | unsigned i; |
| 1320 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1321 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1322 | switch (msr) { |
| 1323 | case MSR_EFER: |
| 1324 | if (cpu_has_load_ia32_efer) { |
| 1325 | add_atomic_switch_msr_special(VM_ENTRY_LOAD_IA32_EFER, |
| 1326 | VM_EXIT_LOAD_IA32_EFER, |
| 1327 | GUEST_IA32_EFER, |
| 1328 | HOST_IA32_EFER, |
| 1329 | guest_val, host_val); |
| 1330 | return; |
| 1331 | } |
| 1332 | break; |
| 1333 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1334 | if (cpu_has_load_perf_global_ctrl) { |
| 1335 | add_atomic_switch_msr_special( |
| 1336 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1337 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1338 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1339 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1340 | guest_val, host_val); |
| 1341 | return; |
| 1342 | } |
| 1343 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1344 | } |
| 1345 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1346 | for (i = 0; i < m->nr; ++i) |
| 1347 | if (m->guest[i].index == msr) |
| 1348 | break; |
| 1349 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1350 | if (i == NR_AUTOLOAD_MSRS) { |
| 1351 | printk_once(KERN_WARNING"Not enough mst switch entries. " |
| 1352 | "Can't add msr %x\n", msr); |
| 1353 | return; |
| 1354 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1355 | ++m->nr; |
| 1356 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1357 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1358 | } |
| 1359 | |
| 1360 | m->guest[i].index = msr; |
| 1361 | m->guest[i].value = guest_val; |
| 1362 | m->host[i].index = msr; |
| 1363 | m->host[i].value = host_val; |
| 1364 | } |
| 1365 | |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1366 | static void reload_tss(void) |
| 1367 | { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1368 | /* |
| 1369 | * VT restores TR but not its size. Useless. |
| 1370 | */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1371 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 1372 | struct desc_struct *descs; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1373 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1374 | descs = (void *)gdt->address; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1375 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
| 1376 | load_TR_desc(); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1377 | } |
| 1378 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1379 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1380 | { |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1381 | u64 guest_efer; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1382 | u64 ignore_bits; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1383 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1384 | guest_efer = vmx->vcpu.arch.efer; |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1385 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1386 | /* |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 1387 | * NX is emulated; LMA and LME handled by hardware; SCE meaningless |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1388 | * outside long mode |
| 1389 | */ |
| 1390 | ignore_bits = EFER_NX | EFER_SCE; |
| 1391 | #ifdef CONFIG_X86_64 |
| 1392 | ignore_bits |= EFER_LMA | EFER_LME; |
| 1393 | /* SCE is meaningful only in long mode on Intel */ |
| 1394 | if (guest_efer & EFER_LMA) |
| 1395 | ignore_bits &= ~(u64)EFER_SCE; |
| 1396 | #endif |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1397 | guest_efer &= ~ignore_bits; |
| 1398 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1399 | vmx->guest_msrs[efer_offset].data = guest_efer; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1400 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1401 | |
| 1402 | clear_atomic_switch_msr(vmx, MSR_EFER); |
| 1403 | /* On ept, can't emulate nx, and must switch nx atomically */ |
| 1404 | if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) { |
| 1405 | guest_efer = vmx->vcpu.arch.efer; |
| 1406 | if (!(guest_efer & EFER_LMA)) |
| 1407 | guest_efer &= ~EFER_LME; |
| 1408 | add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer); |
| 1409 | return false; |
| 1410 | } |
| 1411 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1412 | return true; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1413 | } |
| 1414 | |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1415 | static unsigned long segment_base(u16 selector) |
| 1416 | { |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1417 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1418 | struct desc_struct *d; |
| 1419 | unsigned long table_base; |
| 1420 | unsigned long v; |
| 1421 | |
| 1422 | if (!(selector & ~3)) |
| 1423 | return 0; |
| 1424 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1425 | table_base = gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1426 | |
| 1427 | if (selector & 4) { /* from ldt */ |
| 1428 | u16 ldt_selector = kvm_read_ldt(); |
| 1429 | |
| 1430 | if (!(ldt_selector & ~3)) |
| 1431 | return 0; |
| 1432 | |
| 1433 | table_base = segment_base(ldt_selector); |
| 1434 | } |
| 1435 | d = (struct desc_struct *)(table_base + (selector & ~7)); |
| 1436 | v = get_desc_base(d); |
| 1437 | #ifdef CONFIG_X86_64 |
| 1438 | if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11)) |
| 1439 | v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32; |
| 1440 | #endif |
| 1441 | return v; |
| 1442 | } |
| 1443 | |
| 1444 | static inline unsigned long kvm_read_tr_base(void) |
| 1445 | { |
| 1446 | u16 tr; |
| 1447 | asm("str %0" : "=g"(tr)); |
| 1448 | return segment_base(tr); |
| 1449 | } |
| 1450 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1451 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1452 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1453 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1454 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1455 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1456 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1457 | return; |
| 1458 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1459 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1460 | /* |
| 1461 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 1462 | * allow segment selectors with cpl > 0 or ti == 1. |
| 1463 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1464 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1465 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1466 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1467 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1468 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1469 | vmx->host_state.fs_reload_needed = 0; |
| 1470 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1471 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1472 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1473 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1474 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1475 | if (!(vmx->host_state.gs_sel & 7)) |
| 1476 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1477 | else { |
| 1478 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1479 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1480 | } |
| 1481 | |
| 1482 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1483 | savesegment(ds, vmx->host_state.ds_sel); |
| 1484 | savesegment(es, vmx->host_state.es_sel); |
| 1485 | #endif |
| 1486 | |
| 1487 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1488 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 1489 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 1490 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1491 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 1492 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1493 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1494 | |
| 1495 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1496 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 1497 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1498 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1499 | #endif |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1500 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 1501 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1502 | vmx->guest_msrs[i].data, |
| 1503 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1504 | } |
| 1505 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1506 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1507 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1508 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1509 | return; |
| 1510 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 1511 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1512 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1513 | #ifdef CONFIG_X86_64 |
| 1514 | if (is_long_mode(&vmx->vcpu)) |
| 1515 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 1516 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1517 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1518 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1519 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1520 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1521 | #else |
| 1522 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1523 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1524 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 1525 | if (vmx->host_state.fs_reload_needed) |
| 1526 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1527 | #ifdef CONFIG_X86_64 |
| 1528 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 1529 | loadsegment(ds, vmx->host_state.ds_sel); |
| 1530 | loadsegment(es, vmx->host_state.es_sel); |
| 1531 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1532 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1533 | reload_tss(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1534 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1535 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1536 | #endif |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1537 | /* |
| 1538 | * If the FPU is not active (through the host task or |
| 1539 | * the guest vcpu), then restore the cr0.TS bit. |
| 1540 | */ |
| 1541 | if (!user_has_fpu() && !vmx->vcpu.guest_fpu_loaded) |
| 1542 | stts(); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 1543 | load_gdt(&__get_cpu_var(host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1544 | } |
| 1545 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1546 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 1547 | { |
| 1548 | preempt_disable(); |
| 1549 | __vmx_load_host_state(vmx); |
| 1550 | preempt_enable(); |
| 1551 | } |
| 1552 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1553 | /* |
| 1554 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 1555 | * vcpu mutex is already taken. |
| 1556 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 1557 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1558 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1559 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1560 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1561 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1562 | if (!vmm_exclusive) |
| 1563 | kvm_cpu_vmxon(phys_addr); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1564 | else if (vmx->loaded_vmcs->cpu != cpu) |
| 1565 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1566 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1567 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 1568 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 1569 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1570 | } |
| 1571 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1572 | if (vmx->loaded_vmcs->cpu != cpu) { |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1573 | struct desc_ptr *gdt = &__get_cpu_var(host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1574 | unsigned long sysenter_esp; |
| 1575 | |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 1576 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1577 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1578 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1579 | |
| 1580 | /* |
| 1581 | * Read loaded_vmcs->cpu should be before fetching |
| 1582 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 1583 | * See the comments in __loaded_vmcs_clear(). |
| 1584 | */ |
| 1585 | smp_rmb(); |
| 1586 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1587 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 1588 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1589 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1590 | local_irq_enable(); |
| 1591 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1592 | /* |
| 1593 | * Linux uses per-cpu TSS and GDT, so set these when switching |
| 1594 | * processors. |
| 1595 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1596 | vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1597 | vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1598 | |
| 1599 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 1600 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1601 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1602 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1603 | } |
| 1604 | |
| 1605 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 1606 | { |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1607 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1608 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1609 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 1610 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1611 | kvm_cpu_vmxoff(); |
| 1612 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1613 | } |
| 1614 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1615 | static void vmx_fpu_activate(struct kvm_vcpu *vcpu) |
| 1616 | { |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1617 | ulong cr0; |
| 1618 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1619 | if (vcpu->fpu_active) |
| 1620 | return; |
| 1621 | vcpu->fpu_active = 1; |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1622 | cr0 = vmcs_readl(GUEST_CR0); |
| 1623 | cr0 &= ~(X86_CR0_TS | X86_CR0_MP); |
| 1624 | cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP); |
| 1625 | vmcs_writel(GUEST_CR0, cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1626 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1627 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1628 | if (is_guest_mode(vcpu)) |
| 1629 | vcpu->arch.cr0_guest_owned_bits &= |
| 1630 | ~get_vmcs12(vcpu)->cr0_guest_host_mask; |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1631 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1632 | } |
| 1633 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1634 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 1635 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1636 | /* |
| 1637 | * Return the cr0 value that a nested guest would read. This is a combination |
| 1638 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 1639 | * its hypervisor (cr0_read_shadow). |
| 1640 | */ |
| 1641 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 1642 | { |
| 1643 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 1644 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 1645 | } |
| 1646 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 1647 | { |
| 1648 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 1649 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 1650 | } |
| 1651 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1652 | static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu) |
| 1653 | { |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1654 | /* Note that there is no vcpu->fpu_active = 0 here. The caller must |
| 1655 | * set this *before* calling this function. |
| 1656 | */ |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1657 | vmx_decache_cr0_guest_bits(vcpu); |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1658 | vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1659 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1660 | vcpu->arch.cr0_guest_owned_bits = 0; |
| 1661 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1662 | if (is_guest_mode(vcpu)) { |
| 1663 | /* |
| 1664 | * L1's specified read shadow might not contain the TS bit, |
| 1665 | * so now that we turned on shadowing of this bit, we need to |
| 1666 | * set this bit of the shadow. Like in nested_vmx_run we need |
| 1667 | * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet |
| 1668 | * up-to-date here because we just decached cr0.TS (and we'll |
| 1669 | * only update vmcs12->guest_cr0 on nested exit). |
| 1670 | */ |
| 1671 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 1672 | vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) | |
| 1673 | (vcpu->arch.cr0 & X86_CR0_TS); |
| 1674 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 1675 | } else |
| 1676 | vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1677 | } |
| 1678 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1679 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 1680 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1681 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 1682 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1683 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 1684 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 1685 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 1686 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 1687 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 1688 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 1689 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 1690 | } |
| 1691 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1692 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1693 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1694 | } |
| 1695 | |
| 1696 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 1697 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 1698 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 1699 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1700 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 1701 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 1702 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 1703 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1704 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 1705 | } |
| 1706 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1707 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 1708 | { |
| 1709 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 1710 | int ret = 0; |
| 1711 | |
| 1712 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1713 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1714 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1715 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1716 | |
| 1717 | return ret & mask; |
| 1718 | } |
| 1719 | |
| 1720 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 1721 | { |
| 1722 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 1723 | u32 interruptibility = interruptibility_old; |
| 1724 | |
| 1725 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 1726 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1727 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1728 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 1729 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1730 | interruptibility |= GUEST_INTR_STATE_STI; |
| 1731 | |
| 1732 | if ((interruptibility != interruptibility_old)) |
| 1733 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 1734 | } |
| 1735 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1736 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 1737 | { |
| 1738 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1739 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 1740 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1741 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 1742 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1743 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 1744 | /* skipping an emulated instruction also counts */ |
| 1745 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1746 | } |
| 1747 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 1748 | /* |
| 1749 | * KVM wants to inject page-faults which it got to the guest. This function |
| 1750 | * checks whether in a nested guest, we need to inject them to L1 or L2. |
| 1751 | * This function assumes it is called with the exit reason in vmcs02 being |
| 1752 | * a #PF exception (this is the only case in which KVM injects a #PF when L2 |
| 1753 | * is running). |
| 1754 | */ |
| 1755 | static int nested_pf_handled(struct kvm_vcpu *vcpu) |
| 1756 | { |
| 1757 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 1758 | |
| 1759 | /* TODO: also check PFEC_MATCH/MASK, not just EB.PF. */ |
Nadav Har'El | 9587190 | 2012-03-06 16:39:22 +0200 | [diff] [blame] | 1760 | if (!(vmcs12->exception_bitmap & (1u << PF_VECTOR))) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 1761 | return 0; |
| 1762 | |
| 1763 | nested_vmx_vmexit(vcpu); |
| 1764 | return 1; |
| 1765 | } |
| 1766 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1767 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 1768 | bool has_error_code, u32 error_code, |
| 1769 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1770 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1771 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1772 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1773 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 1774 | if (nr == PF_VECTOR && is_guest_mode(vcpu) && |
| 1775 | nested_pf_handled(vcpu)) |
| 1776 | return; |
| 1777 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1778 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1779 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1780 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 1781 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1782 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1783 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 1784 | int inc_eip = 0; |
| 1785 | if (kvm_exception_is_soft(nr)) |
| 1786 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 1787 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 1788 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 1789 | return; |
| 1790 | } |
| 1791 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 1792 | if (kvm_exception_is_soft(nr)) { |
| 1793 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 1794 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 1795 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 1796 | } else |
| 1797 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 1798 | |
| 1799 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 1800 | } |
| 1801 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1802 | static bool vmx_rdtscp_supported(void) |
| 1803 | { |
| 1804 | return cpu_has_vmx_rdtscp(); |
| 1805 | } |
| 1806 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1807 | static bool vmx_invpcid_supported(void) |
| 1808 | { |
| 1809 | return cpu_has_vmx_invpcid() && enable_ept; |
| 1810 | } |
| 1811 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1812 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1813 | * Swap MSR entry in host/guest MSR entry array. |
| 1814 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1815 | 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] | 1816 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1817 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1818 | |
| 1819 | tmp = vmx->guest_msrs[to]; |
| 1820 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 1821 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1822 | } |
| 1823 | |
| 1824 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1825 | * Set up the vmcs to automatically save and restore system |
| 1826 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 1827 | * mode, as fiddling with msrs is very expensive. |
| 1828 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1829 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1830 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1831 | int save_nmsrs, index; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 1832 | unsigned long *msr_bitmap; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1833 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1834 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1835 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1836 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1837 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1838 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1839 | move_msr_up(vmx, index, save_nmsrs++); |
| 1840 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1841 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1842 | move_msr_up(vmx, index, save_nmsrs++); |
| 1843 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1844 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1845 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1846 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
| 1847 | if (index >= 0 && vmx->rdtscp_enabled) |
| 1848 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1849 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1850 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1851 | * if efer.sce is enabled. |
| 1852 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1853 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1854 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1855 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1856 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1857 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1858 | index = __find_msr_index(vmx, MSR_EFER); |
| 1859 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1860 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1861 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1862 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 1863 | |
| 1864 | if (cpu_has_vmx_msr_bitmap()) { |
| 1865 | if (is_long_mode(&vmx->vcpu)) |
| 1866 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 1867 | else |
| 1868 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 1869 | |
| 1870 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 1871 | } |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 1872 | } |
| 1873 | |
| 1874 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1875 | * reads and returns guest's timestamp counter "register" |
| 1876 | * guest_tsc = host_tsc + tsc_offset -- 21.3 |
| 1877 | */ |
| 1878 | static u64 guest_read_tsc(void) |
| 1879 | { |
| 1880 | u64 host_tsc, tsc_offset; |
| 1881 | |
| 1882 | rdtscll(host_tsc); |
| 1883 | tsc_offset = vmcs_read64(TSC_OFFSET); |
| 1884 | return host_tsc + tsc_offset; |
| 1885 | } |
| 1886 | |
| 1887 | /* |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 1888 | * Like guest_read_tsc, but always returns L1's notion of the timestamp |
| 1889 | * counter, even if a nested guest (L2) is currently running. |
| 1890 | */ |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 1891 | u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc) |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 1892 | { |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 1893 | u64 tsc_offset; |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 1894 | |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 1895 | tsc_offset = is_guest_mode(vcpu) ? |
| 1896 | to_vmx(vcpu)->nested.vmcs01_tsc_offset : |
| 1897 | vmcs_read64(TSC_OFFSET); |
| 1898 | return host_tsc + tsc_offset; |
| 1899 | } |
| 1900 | |
| 1901 | /* |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1902 | * Engage any workarounds for mis-matched TSC rates. Currently limited to |
| 1903 | * software catchup for faster rates on slower CPUs. |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 1904 | */ |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1905 | static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale) |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 1906 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1907 | if (!scale) |
| 1908 | return; |
| 1909 | |
| 1910 | if (user_tsc_khz > tsc_khz) { |
| 1911 | vcpu->arch.tsc_catchup = 1; |
| 1912 | vcpu->arch.tsc_always_catchup = 1; |
| 1913 | } else |
| 1914 | WARN(1, "user requested TSC rate below hardware speed\n"); |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 1915 | } |
| 1916 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1917 | static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu) |
| 1918 | { |
| 1919 | return vmcs_read64(TSC_OFFSET); |
| 1920 | } |
| 1921 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 1922 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1923 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1924 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1925 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1926 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 1927 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 1928 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 1929 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 1930 | * to the spec, this should set L1's TSC; The offset that L1 |
| 1931 | * set for L2 remains unchanged, and still needs to be added |
| 1932 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 1933 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 1934 | struct vmcs12 *vmcs12; |
| 1935 | to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset; |
| 1936 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 1937 | vmcs12 = get_vmcs12(vcpu); |
| 1938 | vmcs_write64(TSC_OFFSET, offset + |
| 1939 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 1940 | vmcs12->tsc_offset : 0)); |
| 1941 | } else { |
| 1942 | vmcs_write64(TSC_OFFSET, offset); |
| 1943 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1944 | } |
| 1945 | |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 1946 | static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment, bool host) |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 1947 | { |
| 1948 | u64 offset = vmcs_read64(TSC_OFFSET); |
| 1949 | vmcs_write64(TSC_OFFSET, offset + adjustment); |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 1950 | if (is_guest_mode(vcpu)) { |
| 1951 | /* Even when running L2, the adjustment needs to apply to L1 */ |
| 1952 | to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment; |
| 1953 | } |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 1954 | } |
| 1955 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1956 | static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 1957 | { |
| 1958 | return target_tsc - native_read_tsc(); |
| 1959 | } |
| 1960 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 1961 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 1962 | { |
| 1963 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 1964 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 1965 | } |
| 1966 | |
| 1967 | /* |
| 1968 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 1969 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 1970 | * all guests if the "nested" module option is off, and can also be disabled |
| 1971 | * for a single guest by disabling its VMX cpuid bit. |
| 1972 | */ |
| 1973 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 1974 | { |
| 1975 | return nested && guest_cpuid_has_vmx(vcpu); |
| 1976 | } |
| 1977 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1978 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 1979 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 1980 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 1981 | * The same values should also be used to verify that vmcs12 control fields are |
| 1982 | * valid during nested entry from L1 to L2. |
| 1983 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 1984 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 1985 | * bit in the high half is on if the corresponding bit in the control field |
| 1986 | * may be on. See also vmx_control_verify(). |
| 1987 | * TODO: allow these variables to be modified (downgraded) by module options |
| 1988 | * or other means. |
| 1989 | */ |
| 1990 | static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high; |
| 1991 | static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high; |
| 1992 | static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high; |
| 1993 | static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high; |
| 1994 | static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high; |
| 1995 | static __init void nested_vmx_setup_ctls_msrs(void) |
| 1996 | { |
| 1997 | /* |
| 1998 | * Note that as a general rule, the high half of the MSRs (bits in |
| 1999 | * the control fields which may be 1) should be initialized by the |
| 2000 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2001 | * can be supported) and the list of features we want to expose - |
| 2002 | * because they are known to be properly supported in our code. |
| 2003 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2004 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2005 | * reason is that if one of these bits is necessary, it will appear |
| 2006 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2007 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 2008 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 2009 | * These rules have exceptions below. |
| 2010 | */ |
| 2011 | |
| 2012 | /* pin-based controls */ |
| 2013 | /* |
| 2014 | * According to the Intel spec, if bit 55 of VMX_BASIC is off (as it is |
| 2015 | * in our case), bits 1, 2 and 4 (i.e., 0x16) must be 1 in this MSR. |
| 2016 | */ |
| 2017 | nested_vmx_pinbased_ctls_low = 0x16 ; |
| 2018 | nested_vmx_pinbased_ctls_high = 0x16 | |
| 2019 | PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING | |
| 2020 | PIN_BASED_VIRTUAL_NMIS; |
| 2021 | |
| 2022 | /* exit controls */ |
| 2023 | nested_vmx_exit_ctls_low = 0; |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 2024 | /* 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] | 2025 | #ifdef CONFIG_X86_64 |
| 2026 | nested_vmx_exit_ctls_high = VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 2027 | #else |
| 2028 | nested_vmx_exit_ctls_high = 0; |
| 2029 | #endif |
| 2030 | |
| 2031 | /* entry controls */ |
| 2032 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
| 2033 | nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high); |
| 2034 | nested_vmx_entry_ctls_low = 0; |
| 2035 | nested_vmx_entry_ctls_high &= |
| 2036 | VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_IA32E_MODE; |
| 2037 | |
| 2038 | /* cpu-based controls */ |
| 2039 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
| 2040 | nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high); |
| 2041 | nested_vmx_procbased_ctls_low = 0; |
| 2042 | nested_vmx_procbased_ctls_high &= |
| 2043 | CPU_BASED_VIRTUAL_INTR_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
| 2044 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2045 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2046 | CPU_BASED_CR3_STORE_EXITING | |
| 2047 | #ifdef CONFIG_X86_64 |
| 2048 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2049 | #endif |
| 2050 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
| 2051 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | dbcb4e7 | 2012-08-13 15:38:22 +0300 | [diff] [blame] | 2052 | CPU_BASED_RDPMC_EXITING | CPU_BASED_RDTSC_EXITING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2053 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
| 2054 | /* |
| 2055 | * We can allow some features even when not supported by the |
| 2056 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2057 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2058 | * without MSR bitmaps. |
| 2059 | */ |
| 2060 | nested_vmx_procbased_ctls_high |= CPU_BASED_USE_MSR_BITMAPS; |
| 2061 | |
| 2062 | /* secondary cpu-based controls */ |
| 2063 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
| 2064 | nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high); |
| 2065 | nested_vmx_secondary_ctls_low = 0; |
| 2066 | nested_vmx_secondary_ctls_high &= |
| 2067 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 2068 | } |
| 2069 | |
| 2070 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2071 | { |
| 2072 | /* |
| 2073 | * Bits 0 in high must be 0, and bits 1 in low must be 1. |
| 2074 | */ |
| 2075 | return ((control & high) | low) == control; |
| 2076 | } |
| 2077 | |
| 2078 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2079 | { |
| 2080 | return low | ((u64)high << 32); |
| 2081 | } |
| 2082 | |
| 2083 | /* |
| 2084 | * If we allow our guest to use VMX instructions (i.e., nested VMX), we should |
| 2085 | * also let it use VMX-specific MSRs. |
| 2086 | * vmx_get_vmx_msr() and vmx_set_vmx_msr() return 1 when we handled a |
| 2087 | * VMX-specific MSR, or 0 when we haven't (and the caller should handle it |
| 2088 | * like all other MSRs). |
| 2089 | */ |
| 2090 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2091 | { |
| 2092 | if (!nested_vmx_allowed(vcpu) && msr_index >= MSR_IA32_VMX_BASIC && |
| 2093 | msr_index <= MSR_IA32_VMX_TRUE_ENTRY_CTLS) { |
| 2094 | /* |
| 2095 | * According to the spec, processors which do not support VMX |
| 2096 | * should throw a #GP(0) when VMX capability MSRs are read. |
| 2097 | */ |
| 2098 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 2099 | return 1; |
| 2100 | } |
| 2101 | |
| 2102 | switch (msr_index) { |
| 2103 | case MSR_IA32_FEATURE_CONTROL: |
| 2104 | *pdata = 0; |
| 2105 | break; |
| 2106 | case MSR_IA32_VMX_BASIC: |
| 2107 | /* |
| 2108 | * This MSR reports some information about VMX support. We |
| 2109 | * should return information about the VMX we emulate for the |
| 2110 | * guest, and the VMCS structure we give it - not about the |
| 2111 | * VMX support of the underlying hardware. |
| 2112 | */ |
| 2113 | *pdata = VMCS12_REVISION | |
| 2114 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2115 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2116 | break; |
| 2117 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2118 | case MSR_IA32_VMX_PINBASED_CTLS: |
| 2119 | *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low, |
| 2120 | nested_vmx_pinbased_ctls_high); |
| 2121 | break; |
| 2122 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 2123 | case MSR_IA32_VMX_PROCBASED_CTLS: |
| 2124 | *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low, |
| 2125 | nested_vmx_procbased_ctls_high); |
| 2126 | break; |
| 2127 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 2128 | case MSR_IA32_VMX_EXIT_CTLS: |
| 2129 | *pdata = vmx_control_msr(nested_vmx_exit_ctls_low, |
| 2130 | nested_vmx_exit_ctls_high); |
| 2131 | break; |
| 2132 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 2133 | case MSR_IA32_VMX_ENTRY_CTLS: |
| 2134 | *pdata = vmx_control_msr(nested_vmx_entry_ctls_low, |
| 2135 | nested_vmx_entry_ctls_high); |
| 2136 | break; |
| 2137 | case MSR_IA32_VMX_MISC: |
| 2138 | *pdata = 0; |
| 2139 | break; |
| 2140 | /* |
| 2141 | * These MSRs specify bits which the guest must keep fixed (on or off) |
| 2142 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2143 | * We picked the standard core2 setting. |
| 2144 | */ |
| 2145 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2146 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2147 | case MSR_IA32_VMX_CR0_FIXED0: |
| 2148 | *pdata = VMXON_CR0_ALWAYSON; |
| 2149 | break; |
| 2150 | case MSR_IA32_VMX_CR0_FIXED1: |
| 2151 | *pdata = -1ULL; |
| 2152 | break; |
| 2153 | case MSR_IA32_VMX_CR4_FIXED0: |
| 2154 | *pdata = VMXON_CR4_ALWAYSON; |
| 2155 | break; |
| 2156 | case MSR_IA32_VMX_CR4_FIXED1: |
| 2157 | *pdata = -1ULL; |
| 2158 | break; |
| 2159 | case MSR_IA32_VMX_VMCS_ENUM: |
| 2160 | *pdata = 0x1f; |
| 2161 | break; |
| 2162 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 2163 | *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low, |
| 2164 | nested_vmx_secondary_ctls_high); |
| 2165 | break; |
| 2166 | case MSR_IA32_VMX_EPT_VPID_CAP: |
| 2167 | /* Currently, no nested ept or nested vpid */ |
| 2168 | *pdata = 0; |
| 2169 | break; |
| 2170 | default: |
| 2171 | return 0; |
| 2172 | } |
| 2173 | |
| 2174 | return 1; |
| 2175 | } |
| 2176 | |
| 2177 | static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data) |
| 2178 | { |
| 2179 | if (!nested_vmx_allowed(vcpu)) |
| 2180 | return 0; |
| 2181 | |
| 2182 | if (msr_index == MSR_IA32_FEATURE_CONTROL) |
| 2183 | /* TODO: the right thing. */ |
| 2184 | return 1; |
| 2185 | /* |
| 2186 | * No need to treat VMX capability MSRs specially: If we don't handle |
| 2187 | * them, handle_wrmsr will #GP(0), which is correct (they are readonly) |
| 2188 | */ |
| 2189 | return 0; |
| 2190 | } |
| 2191 | |
| 2192 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2193 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2194 | * Returns 0 on success, non-0 otherwise. |
| 2195 | * Assumes vcpu_load() was already called. |
| 2196 | */ |
| 2197 | static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2198 | { |
| 2199 | u64 data; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2200 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2201 | |
| 2202 | if (!pdata) { |
| 2203 | printk(KERN_ERR "BUG: get_msr called with NULL pdata\n"); |
| 2204 | return -EINVAL; |
| 2205 | } |
| 2206 | |
| 2207 | switch (msr_index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2208 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2209 | case MSR_FS_BASE: |
| 2210 | data = vmcs_readl(GUEST_FS_BASE); |
| 2211 | break; |
| 2212 | case MSR_GS_BASE: |
| 2213 | data = vmcs_readl(GUEST_GS_BASE); |
| 2214 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2215 | case MSR_KERNEL_GS_BASE: |
| 2216 | vmx_load_host_state(to_vmx(vcpu)); |
| 2217 | data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
| 2218 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2219 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2220 | case MSR_EFER: |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2221 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2222 | case MSR_IA32_TSC: |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2223 | data = guest_read_tsc(); |
| 2224 | break; |
| 2225 | case MSR_IA32_SYSENTER_CS: |
| 2226 | data = vmcs_read32(GUEST_SYSENTER_CS); |
| 2227 | break; |
| 2228 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2229 | data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2230 | break; |
| 2231 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2232 | data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2233 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2234 | case MSR_TSC_AUX: |
| 2235 | if (!to_vmx(vcpu)->rdtscp_enabled) |
| 2236 | return 1; |
| 2237 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2238 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2239 | if (vmx_get_vmx_msr(vcpu, msr_index, pdata)) |
| 2240 | return 0; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2241 | msr = find_msr_entry(to_vmx(vcpu), msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2242 | if (msr) { |
| 2243 | data = msr->data; |
| 2244 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2245 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2246 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2247 | } |
| 2248 | |
| 2249 | *pdata = data; |
| 2250 | return 0; |
| 2251 | } |
| 2252 | |
| 2253 | /* |
| 2254 | * Writes msr value into into the appropriate "register". |
| 2255 | * Returns 0 on success, non-0 otherwise. |
| 2256 | * Assumes vcpu_load() was already called. |
| 2257 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2258 | static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2259 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2260 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2261 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2262 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2263 | u32 msr_index = msr_info->index; |
| 2264 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2265 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2266 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2267 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2268 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2269 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 2270 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2271 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2272 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2273 | vmcs_writel(GUEST_FS_BASE, data); |
| 2274 | break; |
| 2275 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2276 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2277 | vmcs_writel(GUEST_GS_BASE, data); |
| 2278 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2279 | case MSR_KERNEL_GS_BASE: |
| 2280 | vmx_load_host_state(vmx); |
| 2281 | vmx->msr_guest_kernel_gs_base = data; |
| 2282 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2283 | #endif |
| 2284 | case MSR_IA32_SYSENTER_CS: |
| 2285 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 2286 | break; |
| 2287 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2288 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2289 | break; |
| 2290 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2291 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2292 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2293 | case MSR_IA32_TSC: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2294 | kvm_write_tsc(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2295 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2296 | case MSR_IA32_CR_PAT: |
| 2297 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
| 2298 | vmcs_write64(GUEST_IA32_PAT, data); |
| 2299 | vcpu->arch.pat = data; |
| 2300 | break; |
| 2301 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2302 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2303 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2304 | case MSR_IA32_TSC_ADJUST: |
| 2305 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2306 | break; |
| 2307 | case MSR_TSC_AUX: |
| 2308 | if (!vmx->rdtscp_enabled) |
| 2309 | return 1; |
| 2310 | /* Check reserved bit, higher 32 bits should be zero */ |
| 2311 | if ((data >> 32) != 0) |
| 2312 | return 1; |
| 2313 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2314 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2315 | if (vmx_set_vmx_msr(vcpu, msr_index, data)) |
| 2316 | break; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2317 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2318 | if (msr) { |
| 2319 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2320 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 2321 | preempt_disable(); |
Avi Kivity | 9ee7397 | 2012-03-06 14:16:33 +0200 | [diff] [blame] | 2322 | kvm_set_shared_msr(msr->index, msr->data, |
| 2323 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2324 | preempt_enable(); |
| 2325 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2326 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2327 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2328 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2329 | } |
| 2330 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2331 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2332 | } |
| 2333 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2334 | 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] | 2335 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2336 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 2337 | switch (reg) { |
| 2338 | case VCPU_REGS_RSP: |
| 2339 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 2340 | break; |
| 2341 | case VCPU_REGS_RIP: |
| 2342 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 2343 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2344 | case VCPU_EXREG_PDPTR: |
| 2345 | if (enable_ept) |
| 2346 | ept_save_pdptrs(vcpu); |
| 2347 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2348 | default: |
| 2349 | break; |
| 2350 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2351 | } |
| 2352 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2353 | static __init int cpu_has_kvm_support(void) |
| 2354 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 2355 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2356 | } |
| 2357 | |
| 2358 | static __init int vmx_disabled_by_bios(void) |
| 2359 | { |
| 2360 | u64 msr; |
| 2361 | |
| 2362 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2363 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2364 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2365 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 2366 | && tboot_enabled()) |
| 2367 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2368 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2369 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2370 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2371 | && !tboot_enabled()) { |
| 2372 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2373 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2374 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2375 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2376 | /* launched w/o TXT and VMX disabled */ |
| 2377 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 2378 | && !tboot_enabled()) |
| 2379 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2380 | } |
| 2381 | |
| 2382 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2383 | } |
| 2384 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2385 | static void kvm_cpu_vmxon(u64 addr) |
| 2386 | { |
| 2387 | asm volatile (ASM_VMX_VMXON_RAX |
| 2388 | : : "a"(&addr), "m"(addr) |
| 2389 | : "memory", "cc"); |
| 2390 | } |
| 2391 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2392 | static int hardware_enable(void *garbage) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2393 | { |
| 2394 | int cpu = raw_smp_processor_id(); |
| 2395 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2396 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2397 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2398 | if (read_cr4() & X86_CR4_VMXE) |
| 2399 | return -EBUSY; |
| 2400 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2401 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2402 | |
| 2403 | /* |
| 2404 | * Now we can enable the vmclear operation in kdump |
| 2405 | * since the loaded_vmcss_on_cpu list on this cpu |
| 2406 | * has been initialized. |
| 2407 | * |
| 2408 | * Though the cpu is not in VMX operation now, there |
| 2409 | * is no problem to enable the vmclear operation |
| 2410 | * for the loaded_vmcss_on_cpu list is empty! |
| 2411 | */ |
| 2412 | crash_enable_local_vmclear(cpu); |
| 2413 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2414 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2415 | |
| 2416 | test_bits = FEATURE_CONTROL_LOCKED; |
| 2417 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 2418 | if (tboot_enabled()) |
| 2419 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 2420 | |
| 2421 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2422 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2423 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 2424 | } |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2425 | write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */ |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2426 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2427 | if (vmm_exclusive) { |
| 2428 | kvm_cpu_vmxon(phys_addr); |
| 2429 | ept_sync_global(); |
| 2430 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2431 | |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 2432 | store_gdt(&__get_cpu_var(host_gdt)); |
| 2433 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2434 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2435 | } |
| 2436 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2437 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2438 | { |
| 2439 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2440 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2441 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2442 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 2443 | loaded_vmcss_on_cpu_link) |
| 2444 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2445 | } |
| 2446 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2447 | |
| 2448 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 2449 | * tricks. |
| 2450 | */ |
| 2451 | static void kvm_cpu_vmxoff(void) |
| 2452 | { |
| 2453 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2454 | } |
| 2455 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2456 | static void hardware_disable(void *garbage) |
| 2457 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2458 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2459 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2460 | kvm_cpu_vmxoff(); |
| 2461 | } |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2462 | write_cr4(read_cr4() & ~X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2463 | } |
| 2464 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2465 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 2466 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2467 | { |
| 2468 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2469 | u32 ctl = ctl_min | ctl_opt; |
| 2470 | |
| 2471 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2472 | |
| 2473 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 2474 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 2475 | |
| 2476 | /* Ensure minimum (required) set of control bits are supported. */ |
| 2477 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2478 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2479 | |
| 2480 | *result = ctl; |
| 2481 | return 0; |
| 2482 | } |
| 2483 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 2484 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 2485 | { |
| 2486 | u32 vmx_msr_low, vmx_msr_high; |
| 2487 | |
| 2488 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2489 | return vmx_msr_high & ctl; |
| 2490 | } |
| 2491 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2492 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2493 | { |
| 2494 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2495 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2496 | u32 _pin_based_exec_control = 0; |
| 2497 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2498 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2499 | u32 _vmexit_control = 0; |
| 2500 | u32 _vmentry_control = 0; |
| 2501 | |
| 2502 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 2503 | opt = PIN_BASED_VIRTUAL_NMIS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2504 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 2505 | &_pin_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2506 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2507 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 2508 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2509 | #ifdef CONFIG_X86_64 |
| 2510 | CPU_BASED_CR8_LOAD_EXITING | |
| 2511 | CPU_BASED_CR8_STORE_EXITING | |
| 2512 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2513 | CPU_BASED_CR3_LOAD_EXITING | |
| 2514 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2515 | CPU_BASED_USE_IO_BITMAPS | |
| 2516 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2517 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 2518 | CPU_BASED_MWAIT_EXITING | |
| 2519 | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 2520 | CPU_BASED_INVLPG_EXITING | |
| 2521 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 2522 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2523 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 2524 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2525 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2526 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 2527 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2528 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 2529 | #ifdef CONFIG_X86_64 |
| 2530 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 2531 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 2532 | ~CPU_BASED_CR8_STORE_EXITING; |
| 2533 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2534 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2535 | min2 = 0; |
| 2536 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2537 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2538 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2539 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 2540 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2541 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2542 | SECONDARY_EXEC_RDTSCP | |
| 2543 | SECONDARY_EXEC_ENABLE_INVPCID; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2544 | if (adjust_vmx_controls(min2, opt2, |
| 2545 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2546 | &_cpu_based_2nd_exec_control) < 0) |
| 2547 | return -EIO; |
| 2548 | } |
| 2549 | #ifndef CONFIG_X86_64 |
| 2550 | if (!(_cpu_based_2nd_exec_control & |
| 2551 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 2552 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 2553 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2554 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2555 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 2556 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 2557 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 2558 | CPU_BASED_CR3_STORE_EXITING | |
| 2559 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2560 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 2561 | vmx_capability.ept, vmx_capability.vpid); |
| 2562 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2563 | |
| 2564 | min = 0; |
| 2565 | #ifdef CONFIG_X86_64 |
| 2566 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 2567 | #endif |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2568 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2569 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 2570 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2571 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2572 | |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2573 | min = 0; |
| 2574 | opt = VM_ENTRY_LOAD_IA32_PAT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2575 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 2576 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2577 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2578 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 2579 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2580 | |
| 2581 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 2582 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2583 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2584 | |
| 2585 | #ifdef CONFIG_X86_64 |
| 2586 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 2587 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2588 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2589 | #endif |
| 2590 | |
| 2591 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 2592 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2593 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2594 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2595 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
| 2596 | vmcs_conf->order = get_order(vmcs_config.size); |
| 2597 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2598 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2599 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 2600 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2601 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2602 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 2603 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2604 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 2605 | cpu_has_load_ia32_efer = |
| 2606 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 2607 | VM_ENTRY_LOAD_IA32_EFER) |
| 2608 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 2609 | VM_EXIT_LOAD_IA32_EFER); |
| 2610 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 2611 | cpu_has_load_perf_global_ctrl = |
| 2612 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 2613 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 2614 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 2615 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 2616 | |
| 2617 | /* |
| 2618 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
| 2619 | * but due to arrata below it can't be used. Workaround is to use |
| 2620 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 2621 | * |
| 2622 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 2623 | * |
| 2624 | * AAK155 (model 26) |
| 2625 | * AAP115 (model 30) |
| 2626 | * AAT100 (model 37) |
| 2627 | * BC86,AAY89,BD102 (model 44) |
| 2628 | * BA97 (model 46) |
| 2629 | * |
| 2630 | */ |
| 2631 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 2632 | switch (boot_cpu_data.x86_model) { |
| 2633 | case 26: |
| 2634 | case 30: |
| 2635 | case 37: |
| 2636 | case 44: |
| 2637 | case 46: |
| 2638 | cpu_has_load_perf_global_ctrl = false; |
| 2639 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 2640 | "does not work properly. Using workaround\n"); |
| 2641 | break; |
| 2642 | default: |
| 2643 | break; |
| 2644 | } |
| 2645 | } |
| 2646 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2647 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 2648 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2649 | |
| 2650 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 2651 | { |
| 2652 | int node = cpu_to_node(cpu); |
| 2653 | struct page *pages; |
| 2654 | struct vmcs *vmcs; |
| 2655 | |
Mel Gorman | 6484eb3 | 2009-06-16 15:31:54 -0700 | [diff] [blame] | 2656 | pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2657 | if (!pages) |
| 2658 | return NULL; |
| 2659 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2660 | memset(vmcs, 0, vmcs_config.size); |
| 2661 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2662 | return vmcs; |
| 2663 | } |
| 2664 | |
| 2665 | static struct vmcs *alloc_vmcs(void) |
| 2666 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 2667 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2668 | } |
| 2669 | |
| 2670 | static void free_vmcs(struct vmcs *vmcs) |
| 2671 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2672 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2673 | } |
| 2674 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2675 | /* |
| 2676 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 2677 | */ |
| 2678 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 2679 | { |
| 2680 | if (!loaded_vmcs->vmcs) |
| 2681 | return; |
| 2682 | loaded_vmcs_clear(loaded_vmcs); |
| 2683 | free_vmcs(loaded_vmcs->vmcs); |
| 2684 | loaded_vmcs->vmcs = NULL; |
| 2685 | } |
| 2686 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 2687 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2688 | { |
| 2689 | int cpu; |
| 2690 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2691 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2692 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2693 | per_cpu(vmxarea, cpu) = NULL; |
| 2694 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2695 | } |
| 2696 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2697 | static __init int alloc_kvm_area(void) |
| 2698 | { |
| 2699 | int cpu; |
| 2700 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 2701 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2702 | struct vmcs *vmcs; |
| 2703 | |
| 2704 | vmcs = alloc_vmcs_cpu(cpu); |
| 2705 | if (!vmcs) { |
| 2706 | free_kvm_area(); |
| 2707 | return -ENOMEM; |
| 2708 | } |
| 2709 | |
| 2710 | per_cpu(vmxarea, cpu) = vmcs; |
| 2711 | } |
| 2712 | return 0; |
| 2713 | } |
| 2714 | |
| 2715 | static __init int hardware_setup(void) |
| 2716 | { |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2717 | if (setup_vmcs_config(&vmcs_config) < 0) |
| 2718 | return -EIO; |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 2719 | |
| 2720 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 2721 | kvm_enable_efer_bits(EFER_NX); |
| 2722 | |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2723 | if (!cpu_has_vmx_vpid()) |
| 2724 | enable_vpid = 0; |
| 2725 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 2726 | if (!cpu_has_vmx_ept() || |
| 2727 | !cpu_has_vmx_ept_4levels()) { |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2728 | enable_ept = 0; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2729 | enable_unrestricted_guest = 0; |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 2730 | enable_ept_ad_bits = 0; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2731 | } |
| 2732 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 2733 | if (!cpu_has_vmx_ept_ad_bits()) |
| 2734 | enable_ept_ad_bits = 0; |
| 2735 | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2736 | if (!cpu_has_vmx_unrestricted_guest()) |
| 2737 | enable_unrestricted_guest = 0; |
Sheng Yang | 93ba03c | 2009-04-01 15:52:32 +0800 | [diff] [blame] | 2738 | |
| 2739 | if (!cpu_has_vmx_flexpriority()) |
| 2740 | flexpriority_enabled = 0; |
| 2741 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 2742 | if (!cpu_has_vmx_tpr_shadow()) |
| 2743 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 2744 | |
Marcelo Tosatti | 54dee99 | 2009-06-11 12:07:44 -0300 | [diff] [blame] | 2745 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 2746 | kvm_disable_largepages(); |
| 2747 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 2748 | if (!cpu_has_vmx_ple()) |
| 2749 | ple_gap = 0; |
| 2750 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2751 | if (nested) |
| 2752 | nested_vmx_setup_ctls_msrs(); |
| 2753 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2754 | return alloc_kvm_area(); |
| 2755 | } |
| 2756 | |
| 2757 | static __exit void hardware_unsetup(void) |
| 2758 | { |
| 2759 | free_kvm_area(); |
| 2760 | } |
| 2761 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2762 | static void fix_pmode_dataseg(struct kvm_vcpu *vcpu, int seg, |
| 2763 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2764 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2765 | if (!emulate_invalid_guest_state) { |
| 2766 | /* |
| 2767 | * CS and SS RPL should be equal during guest entry according |
| 2768 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 2769 | * is in the middle of the transition from real mode to |
| 2770 | * protected mode it is safe to assume that RPL 0 is a good |
| 2771 | * default value. |
| 2772 | */ |
| 2773 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
| 2774 | save->selector &= ~SELECTOR_RPL_MASK; |
| 2775 | save->dpl = save->selector & SELECTOR_RPL_MASK; |
| 2776 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2777 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2778 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2779 | } |
| 2780 | |
| 2781 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 2782 | { |
| 2783 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2784 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2785 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2786 | /* |
| 2787 | * Update real mode segment cache. It may be not up-to-date if sement |
| 2788 | * register was written while vcpu was in a guest mode. |
| 2789 | */ |
| 2790 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 2791 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 2792 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 2793 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 2794 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 2795 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 2796 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2797 | vmx->emulation_required = 1; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2798 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2799 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2800 | vmx_segment_cache_clear(vmx); |
| 2801 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 2802 | vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2803 | |
| 2804 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2805 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2806 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2807 | vmcs_writel(GUEST_RFLAGS, flags); |
| 2808 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2809 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 2810 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2811 | |
| 2812 | update_exception_bitmap(vcpu); |
| 2813 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2814 | fix_pmode_dataseg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 2815 | fix_pmode_dataseg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 2816 | fix_pmode_dataseg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 2817 | fix_pmode_dataseg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 2818 | fix_pmode_dataseg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 2819 | fix_pmode_dataseg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
Gleb Natapov | 1f3141e | 2013-01-21 15:36:41 +0200 | [diff] [blame] | 2820 | |
| 2821 | /* CPL is always 0 when CPU enters protected mode */ |
| 2822 | __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
| 2823 | vmx->cpl = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2824 | } |
| 2825 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 2826 | static gva_t rmode_tss_base(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2827 | { |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 2828 | if (!kvm->arch.tss_addr) { |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 2829 | struct kvm_memslots *slots; |
Xiao Guangrong | 28a3754 | 2011-11-24 19:04:35 +0800 | [diff] [blame] | 2830 | struct kvm_memory_slot *slot; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 2831 | gfn_t base_gfn; |
| 2832 | |
Lai Jiangshan | 90d83dc | 2010-04-19 17:41:23 +0800 | [diff] [blame] | 2833 | slots = kvm_memslots(kvm); |
Xiao Guangrong | 28a3754 | 2011-11-24 19:04:35 +0800 | [diff] [blame] | 2834 | slot = id_to_memslot(slots, 0); |
| 2835 | base_gfn = slot->base_gfn + slot->npages - 3; |
| 2836 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 2837 | return base_gfn << PAGE_SHIFT; |
| 2838 | } |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 2839 | return kvm->arch.tss_addr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2840 | } |
| 2841 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 2842 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2843 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 2844 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2845 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2846 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2847 | var.dpl = 0x3; |
| 2848 | if (seg == VCPU_SREG_CS) |
| 2849 | var.type = 0x3; |
| 2850 | |
| 2851 | if (!emulate_invalid_guest_state) { |
| 2852 | var.selector = var.base >> 4; |
| 2853 | var.base = var.base & 0xffff0; |
| 2854 | var.limit = 0xffff; |
| 2855 | var.g = 0; |
| 2856 | var.db = 0; |
| 2857 | var.present = 1; |
| 2858 | var.s = 1; |
| 2859 | var.l = 0; |
| 2860 | var.unusable = 0; |
| 2861 | var.type = 0x3; |
| 2862 | var.avl = 0; |
| 2863 | if (save->base & 0xf) |
| 2864 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 2865 | "paragraph aligned when entering " |
| 2866 | "protected mode (seg=%d)", seg); |
| 2867 | } |
| 2868 | |
| 2869 | vmcs_write16(sf->selector, var.selector); |
| 2870 | vmcs_write32(sf->base, var.base); |
| 2871 | vmcs_write32(sf->limit, var.limit); |
| 2872 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2873 | } |
| 2874 | |
| 2875 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 2876 | { |
| 2877 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2878 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2879 | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 2880 | if (enable_unrestricted_guest) |
| 2881 | return; |
| 2882 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 2883 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 2884 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 2885 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 2886 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 2887 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 2888 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 2889 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 2890 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2891 | vmx->emulation_required = 1; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2892 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2893 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 2894 | /* |
| 2895 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
| 2896 | * vcpu. Call it here with phys address pointing 16M below 4G. |
| 2897 | */ |
| 2898 | if (!vcpu->kvm->arch.tss_addr) { |
| 2899 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 2900 | "called before entering vcpu\n"); |
| 2901 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 2902 | vmx_set_tss_addr(vcpu->kvm, 0xfeffd000); |
| 2903 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 2904 | } |
| 2905 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2906 | vmx_segment_cache_clear(vmx); |
| 2907 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2908 | vmcs_writel(GUEST_TR_BASE, rmode_tss_base(vcpu->kvm)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2909 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2910 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 2911 | |
| 2912 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2913 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2914 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2915 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2916 | |
| 2917 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 2918 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2919 | update_exception_bitmap(vcpu); |
| 2920 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 2921 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 2922 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 2923 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 2924 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 2925 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 2926 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 2927 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 2928 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2929 | } |
| 2930 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2931 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 2932 | { |
| 2933 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2934 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 2935 | |
| 2936 | if (!msr) |
| 2937 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2938 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2939 | /* |
| 2940 | * Force kernel_gs_base reloading before EFER changes, as control |
| 2941 | * of this msr depends on is_long_mode(). |
| 2942 | */ |
| 2943 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2944 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 2945 | if (efer & EFER_LMA) { |
| 2946 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2947 | vmcs_read32(VM_ENTRY_CONTROLS) | |
| 2948 | VM_ENTRY_IA32E_MODE); |
| 2949 | msr->data = efer; |
| 2950 | } else { |
| 2951 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2952 | vmcs_read32(VM_ENTRY_CONTROLS) & |
| 2953 | ~VM_ENTRY_IA32E_MODE); |
| 2954 | |
| 2955 | msr->data = efer & ~EFER_LME; |
| 2956 | } |
| 2957 | setup_msrs(vmx); |
| 2958 | } |
| 2959 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2960 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2961 | |
| 2962 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 2963 | { |
| 2964 | u32 guest_tr_ar; |
| 2965 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2966 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 2967 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2968 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
| 2969 | if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 2970 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 2971 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2972 | vmcs_write32(GUEST_TR_AR_BYTES, |
| 2973 | (guest_tr_ar & ~AR_TYPE_MASK) |
| 2974 | | AR_TYPE_BUSY_64_TSS); |
| 2975 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 2976 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2977 | } |
| 2978 | |
| 2979 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 2980 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2981 | vmcs_write32(VM_ENTRY_CONTROLS, |
| 2982 | vmcs_read32(VM_ENTRY_CONTROLS) |
Li, Xin B | 1e4e6e0 | 2007-08-01 21:49:10 +0300 | [diff] [blame] | 2983 | & ~VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 2984 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2985 | } |
| 2986 | |
| 2987 | #endif |
| 2988 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2989 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 2990 | { |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 2991 | vpid_sync_context(to_vmx(vcpu)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 2992 | if (enable_ept) { |
| 2993 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 2994 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 2995 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 2996 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 2997 | } |
| 2998 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 2999 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 3000 | { |
| 3001 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 3002 | |
| 3003 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 3004 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 3005 | } |
| 3006 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 3007 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 3008 | { |
| 3009 | if (enable_ept && is_paging(vcpu)) |
| 3010 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 3011 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 3012 | } |
| 3013 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 3014 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3015 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3016 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 3017 | |
| 3018 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 3019 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3020 | } |
| 3021 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3022 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 3023 | { |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3024 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 3025 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 3026 | return; |
| 3027 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3028 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 3029 | vmcs_write64(GUEST_PDPTR0, vcpu->arch.mmu.pdptrs[0]); |
| 3030 | vmcs_write64(GUEST_PDPTR1, vcpu->arch.mmu.pdptrs[1]); |
| 3031 | vmcs_write64(GUEST_PDPTR2, vcpu->arch.mmu.pdptrs[2]); |
| 3032 | vmcs_write64(GUEST_PDPTR3, vcpu->arch.mmu.pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3033 | } |
| 3034 | } |
| 3035 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3036 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 3037 | { |
| 3038 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 3039 | vcpu->arch.mmu.pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 3040 | vcpu->arch.mmu.pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 3041 | vcpu->arch.mmu.pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 3042 | vcpu->arch.mmu.pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3043 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3044 | |
| 3045 | __set_bit(VCPU_EXREG_PDPTR, |
| 3046 | (unsigned long *)&vcpu->arch.regs_avail); |
| 3047 | __set_bit(VCPU_EXREG_PDPTR, |
| 3048 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3049 | } |
| 3050 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3051 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3052 | |
| 3053 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 3054 | unsigned long cr0, |
| 3055 | struct kvm_vcpu *vcpu) |
| 3056 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 3057 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 3058 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3059 | if (!(cr0 & X86_CR0_PG)) { |
| 3060 | /* From paging/starting to nonpaging */ |
| 3061 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3062 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3063 | (CPU_BASED_CR3_LOAD_EXITING | |
| 3064 | CPU_BASED_CR3_STORE_EXITING)); |
| 3065 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3066 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3067 | } else if (!is_paging(vcpu)) { |
| 3068 | /* From nonpaging to paging */ |
| 3069 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3070 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3071 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3072 | CPU_BASED_CR3_STORE_EXITING)); |
| 3073 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3074 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3075 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 3076 | |
| 3077 | if (!(cr0 & X86_CR0_WP)) |
| 3078 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3079 | } |
| 3080 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3081 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 3082 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3083 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3084 | unsigned long hw_cr0; |
| 3085 | |
| 3086 | if (enable_unrestricted_guest) |
| 3087 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK_UNRESTRICTED_GUEST) |
| 3088 | | KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
| 3089 | else |
| 3090 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK) | KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3091 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3092 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3093 | enter_pmode(vcpu); |
| 3094 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3095 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3096 | enter_rmode(vcpu); |
| 3097 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3098 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3099 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3100 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3101 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3102 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3103 | exit_lmode(vcpu); |
| 3104 | } |
| 3105 | #endif |
| 3106 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3107 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3108 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 3109 | |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3110 | if (!vcpu->fpu_active) |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 3111 | hw_cr0 |= X86_CR0_TS | X86_CR0_MP; |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3112 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3113 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3114 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3115 | vcpu->arch.cr0 = cr0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3116 | } |
| 3117 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3118 | static u64 construct_eptp(unsigned long root_hpa) |
| 3119 | { |
| 3120 | u64 eptp; |
| 3121 | |
| 3122 | /* TODO write the value reading from MSR */ |
| 3123 | eptp = VMX_EPT_DEFAULT_MT | |
| 3124 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
Xudong Hao | b38f993 | 2012-05-28 19:33:36 +0800 | [diff] [blame] | 3125 | if (enable_ept_ad_bits) |
| 3126 | eptp |= VMX_EPT_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3127 | eptp |= (root_hpa & PAGE_MASK); |
| 3128 | |
| 3129 | return eptp; |
| 3130 | } |
| 3131 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3132 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 3133 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3134 | unsigned long guest_cr3; |
| 3135 | u64 eptp; |
| 3136 | |
| 3137 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3138 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3139 | eptp = construct_eptp(cr3); |
| 3140 | vmcs_write64(EPT_POINTER, eptp); |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 3141 | guest_cr3 = is_paging(vcpu) ? kvm_read_cr3(vcpu) : |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3142 | vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 3143 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3144 | } |
| 3145 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3146 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3147 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3148 | } |
| 3149 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3150 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3151 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3152 | unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ? |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3153 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
| 3154 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3155 | if (cr4 & X86_CR4_VMXE) { |
| 3156 | /* |
| 3157 | * To use VMXON (and later other VMX instructions), a guest |
| 3158 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 3159 | * So basically the check on whether to allow nested VMX |
| 3160 | * is here. |
| 3161 | */ |
| 3162 | if (!nested_vmx_allowed(vcpu)) |
| 3163 | return 1; |
| 3164 | } else if (to_vmx(vcpu)->nested.vmxon) |
| 3165 | return 1; |
| 3166 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3167 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3168 | if (enable_ept) { |
| 3169 | if (!is_paging(vcpu)) { |
| 3170 | hw_cr4 &= ~X86_CR4_PAE; |
| 3171 | hw_cr4 |= X86_CR4_PSE; |
| 3172 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 3173 | hw_cr4 &= ~X86_CR4_PAE; |
| 3174 | } |
| 3175 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3176 | |
| 3177 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 3178 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3179 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3180 | } |
| 3181 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3182 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 3183 | struct kvm_segment *var, int seg) |
| 3184 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3185 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3186 | u32 ar; |
| 3187 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 3188 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3189 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3190 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3191 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3192 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 3193 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3194 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3195 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3196 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3197 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3198 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 3199 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3200 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Avi Kivity | 9fd4a3b | 2009-01-04 23:43:42 +0200 | [diff] [blame] | 3201 | if ((ar & AR_UNUSABLE_MASK) && !emulate_invalid_guest_state) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3202 | ar = 0; |
| 3203 | var->type = ar & 15; |
| 3204 | var->s = (ar >> 4) & 1; |
| 3205 | var->dpl = (ar >> 5) & 3; |
| 3206 | var->present = (ar >> 7) & 1; |
| 3207 | var->avl = (ar >> 12) & 1; |
| 3208 | var->l = (ar >> 13) & 1; |
| 3209 | var->db = (ar >> 14) & 1; |
| 3210 | var->g = (ar >> 15) & 1; |
| 3211 | var->unusable = (ar >> 16) & 1; |
| 3212 | } |
| 3213 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3214 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 3215 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3216 | struct kvm_segment s; |
| 3217 | |
| 3218 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 3219 | vmx_get_segment(vcpu, &s, seg); |
| 3220 | return s.base; |
| 3221 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3222 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3223 | } |
| 3224 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3225 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3226 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3227 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3228 | |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 3229 | if (!is_protmode(vcpu)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3230 | return 0; |
| 3231 | |
Avi Kivity | f4c63e5 | 2011-03-07 14:54:28 +0200 | [diff] [blame] | 3232 | if (!is_long_mode(vcpu) |
| 3233 | && (kvm_get_rflags(vcpu) & X86_EFLAGS_VM)) /* if virtual 8086 */ |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3234 | return 3; |
| 3235 | |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3236 | if (!test_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail)) { |
| 3237 | __set_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3238 | vmx->cpl = vmx_read_guest_seg_selector(vmx, VCPU_SREG_CS) & 3; |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3239 | } |
Avi Kivity | d881e6f | 2012-06-06 18:36:48 +0300 | [diff] [blame] | 3240 | |
| 3241 | return vmx->cpl; |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3242 | } |
| 3243 | |
| 3244 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3245 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3246 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3247 | u32 ar; |
| 3248 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 3249 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3250 | ar = 1 << 16; |
| 3251 | else { |
| 3252 | ar = var->type & 15; |
| 3253 | ar |= (var->s & 1) << 4; |
| 3254 | ar |= (var->dpl & 3) << 5; |
| 3255 | ar |= (var->present & 1) << 7; |
| 3256 | ar |= (var->avl & 1) << 12; |
| 3257 | ar |= (var->l & 1) << 13; |
| 3258 | ar |= (var->db & 1) << 14; |
| 3259 | ar |= (var->g & 1) << 15; |
| 3260 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3261 | |
| 3262 | return ar; |
| 3263 | } |
| 3264 | |
| 3265 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 3266 | struct kvm_segment *var, int seg) |
| 3267 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3268 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3269 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3270 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3271 | vmx_segment_cache_clear(vmx); |
Gleb Natapov | 2f14324 | 2013-01-21 15:36:42 +0200 | [diff] [blame^] | 3272 | if (seg == VCPU_SREG_CS) |
| 3273 | __clear_bit(VCPU_EXREG_CPL, (ulong *)&vcpu->arch.regs_avail); |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3274 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3275 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 3276 | vmx->rmode.segs[seg] = *var; |
| 3277 | if (seg == VCPU_SREG_TR) |
| 3278 | vmcs_write16(sf->selector, var->selector); |
| 3279 | else if (var->s) |
| 3280 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3281 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3282 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3283 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3284 | vmcs_writel(sf->base, var->base); |
| 3285 | vmcs_write32(sf->limit, var->limit); |
| 3286 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3287 | |
| 3288 | /* |
| 3289 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 3290 | * qemu binaries. |
| 3291 | * IA32 arch specifies that at the time of processor reset the |
| 3292 | * "Accessed" bit in the AR field of segment registers is 1. And qemu |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 3293 | * is setting it to 0 in the userland code. This causes invalid guest |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3294 | * state vmexit when "unrestricted guest" mode is turned on. |
| 3295 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 3296 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 3297 | * kvm hack. |
| 3298 | */ |
| 3299 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3300 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3301 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3302 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3303 | |
| 3304 | out: |
| 3305 | if (!vmx->emulation_required) |
| 3306 | vmx->emulation_required = !guest_state_valid(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3307 | } |
| 3308 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3309 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 3310 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3311 | 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] | 3312 | |
| 3313 | *db = (ar >> 14) & 1; |
| 3314 | *l = (ar >> 13) & 1; |
| 3315 | } |
| 3316 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3317 | 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] | 3318 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3319 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 3320 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3321 | } |
| 3322 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3323 | 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] | 3324 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3325 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 3326 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3327 | } |
| 3328 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3329 | 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] | 3330 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3331 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 3332 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3333 | } |
| 3334 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3335 | 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] | 3336 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3337 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 3338 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3339 | } |
| 3340 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3341 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3342 | { |
| 3343 | struct kvm_segment var; |
| 3344 | u32 ar; |
| 3345 | |
| 3346 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3347 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 3348 | if (seg == VCPU_SREG_CS) |
| 3349 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3350 | ar = vmx_segment_access_rights(&var); |
| 3351 | |
| 3352 | if (var.base != (var.selector << 4)) |
| 3353 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 3354 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3355 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3356 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3357 | return false; |
| 3358 | |
| 3359 | return true; |
| 3360 | } |
| 3361 | |
| 3362 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 3363 | { |
| 3364 | struct kvm_segment cs; |
| 3365 | unsigned int cs_rpl; |
| 3366 | |
| 3367 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 3368 | cs_rpl = cs.selector & SELECTOR_RPL_MASK; |
| 3369 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3370 | if (cs.unusable) |
| 3371 | return false; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3372 | if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK)) |
| 3373 | return false; |
| 3374 | if (!cs.s) |
| 3375 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3376 | if (cs.type & AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3377 | if (cs.dpl > cs_rpl) |
| 3378 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3379 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3380 | if (cs.dpl != cs_rpl) |
| 3381 | return false; |
| 3382 | } |
| 3383 | if (!cs.present) |
| 3384 | return false; |
| 3385 | |
| 3386 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 3387 | return true; |
| 3388 | } |
| 3389 | |
| 3390 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 3391 | { |
| 3392 | struct kvm_segment ss; |
| 3393 | unsigned int ss_rpl; |
| 3394 | |
| 3395 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 3396 | ss_rpl = ss.selector & SELECTOR_RPL_MASK; |
| 3397 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3398 | if (ss.unusable) |
| 3399 | return true; |
| 3400 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3401 | return false; |
| 3402 | if (!ss.s) |
| 3403 | return false; |
| 3404 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 3405 | return false; |
| 3406 | if (!ss.present) |
| 3407 | return false; |
| 3408 | |
| 3409 | return true; |
| 3410 | } |
| 3411 | |
| 3412 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3413 | { |
| 3414 | struct kvm_segment var; |
| 3415 | unsigned int rpl; |
| 3416 | |
| 3417 | vmx_get_segment(vcpu, &var, seg); |
| 3418 | rpl = var.selector & SELECTOR_RPL_MASK; |
| 3419 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3420 | if (var.unusable) |
| 3421 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3422 | if (!var.s) |
| 3423 | return false; |
| 3424 | if (!var.present) |
| 3425 | return false; |
| 3426 | if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) { |
| 3427 | if (var.dpl < rpl) /* DPL < RPL */ |
| 3428 | return false; |
| 3429 | } |
| 3430 | |
| 3431 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 3432 | * rights flags |
| 3433 | */ |
| 3434 | return true; |
| 3435 | } |
| 3436 | |
| 3437 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 3438 | { |
| 3439 | struct kvm_segment tr; |
| 3440 | |
| 3441 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 3442 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3443 | if (tr.unusable) |
| 3444 | return false; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3445 | if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */ |
| 3446 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3447 | 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] | 3448 | return false; |
| 3449 | if (!tr.present) |
| 3450 | return false; |
| 3451 | |
| 3452 | return true; |
| 3453 | } |
| 3454 | |
| 3455 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 3456 | { |
| 3457 | struct kvm_segment ldtr; |
| 3458 | |
| 3459 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 3460 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3461 | if (ldtr.unusable) |
| 3462 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3463 | if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */ |
| 3464 | return false; |
| 3465 | if (ldtr.type != 2) |
| 3466 | return false; |
| 3467 | if (!ldtr.present) |
| 3468 | return false; |
| 3469 | |
| 3470 | return true; |
| 3471 | } |
| 3472 | |
| 3473 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 3474 | { |
| 3475 | struct kvm_segment cs, ss; |
| 3476 | |
| 3477 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 3478 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 3479 | |
| 3480 | return ((cs.selector & SELECTOR_RPL_MASK) == |
| 3481 | (ss.selector & SELECTOR_RPL_MASK)); |
| 3482 | } |
| 3483 | |
| 3484 | /* |
| 3485 | * Check if guest state is valid. Returns true if valid, false if |
| 3486 | * not. |
| 3487 | * We assume that registers are always usable |
| 3488 | */ |
| 3489 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 3490 | { |
| 3491 | /* real mode guest state checks */ |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 3492 | if (!is_protmode(vcpu)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3493 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 3494 | return false; |
| 3495 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 3496 | return false; |
| 3497 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 3498 | return false; |
| 3499 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 3500 | return false; |
| 3501 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 3502 | return false; |
| 3503 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 3504 | return false; |
| 3505 | } else { |
| 3506 | /* protected mode guest state checks */ |
| 3507 | if (!cs_ss_rpl_check(vcpu)) |
| 3508 | return false; |
| 3509 | if (!code_segment_valid(vcpu)) |
| 3510 | return false; |
| 3511 | if (!stack_segment_valid(vcpu)) |
| 3512 | return false; |
| 3513 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 3514 | return false; |
| 3515 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 3516 | return false; |
| 3517 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 3518 | return false; |
| 3519 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 3520 | return false; |
| 3521 | if (!tr_valid(vcpu)) |
| 3522 | return false; |
| 3523 | if (!ldtr_valid(vcpu)) |
| 3524 | return false; |
| 3525 | } |
| 3526 | /* TODO: |
| 3527 | * - Add checks on RIP |
| 3528 | * - Add checks on RFLAGS |
| 3529 | */ |
| 3530 | |
| 3531 | return true; |
| 3532 | } |
| 3533 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3534 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3535 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3536 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3537 | u16 data = 0; |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3538 | int r, idx, ret = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3539 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3540 | idx = srcu_read_lock(&kvm->srcu); |
| 3541 | fn = rmode_tss_base(kvm) >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3542 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 3543 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3544 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3545 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 3546 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 3547 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3548 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3549 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3550 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 3551 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3552 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3553 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 3554 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3555 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3556 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3557 | r = kvm_write_guest_page(kvm, fn, &data, |
| 3558 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 3559 | sizeof(u8)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 3560 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3561 | goto out; |
| 3562 | |
| 3563 | ret = 1; |
| 3564 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3565 | srcu_read_unlock(&kvm->srcu, idx); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3566 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3567 | } |
| 3568 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3569 | static int init_rmode_identity_map(struct kvm *kvm) |
| 3570 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3571 | int i, idx, r, ret; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3572 | pfn_t identity_map_pfn; |
| 3573 | u32 tmp; |
| 3574 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3575 | if (!enable_ept) |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3576 | return 1; |
| 3577 | if (unlikely(!kvm->arch.ept_identity_pagetable)) { |
| 3578 | printk(KERN_ERR "EPT: identity-mapping pagetable " |
| 3579 | "haven't been allocated!\n"); |
| 3580 | return 0; |
| 3581 | } |
| 3582 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
| 3583 | return 1; |
| 3584 | ret = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3585 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3586 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3587 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 3588 | if (r < 0) |
| 3589 | goto out; |
| 3590 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 3591 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 3592 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 3593 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 3594 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 3595 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 3596 | if (r < 0) |
| 3597 | goto out; |
| 3598 | } |
| 3599 | kvm->arch.ept_identity_pagetable_done = true; |
| 3600 | ret = 1; |
| 3601 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 3602 | srcu_read_unlock(&kvm->srcu, idx); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3603 | return ret; |
| 3604 | } |
| 3605 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3606 | static void seg_setup(int seg) |
| 3607 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3608 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3609 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3610 | |
| 3611 | vmcs_write16(sf->selector, 0); |
| 3612 | vmcs_writel(sf->base, 0); |
| 3613 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 3614 | ar = 0x93; |
| 3615 | if (seg == VCPU_SREG_CS) |
| 3616 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3617 | |
| 3618 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3619 | } |
| 3620 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3621 | static int alloc_apic_access_page(struct kvm *kvm) |
| 3622 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 3623 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3624 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 3625 | int r = 0; |
| 3626 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3627 | mutex_lock(&kvm->slots_lock); |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 3628 | if (kvm->arch.apic_access_page) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3629 | goto out; |
| 3630 | kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT; |
| 3631 | kvm_userspace_mem.flags = 0; |
| 3632 | kvm_userspace_mem.guest_phys_addr = 0xfee00000ULL; |
| 3633 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Alex Williamson | f82a8cf | 2012-12-10 10:33:21 -0700 | [diff] [blame] | 3634 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, false); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3635 | if (r) |
| 3636 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 3637 | |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 3638 | page = gfn_to_page(kvm, 0xfee00); |
| 3639 | if (is_error_page(page)) { |
| 3640 | r = -EFAULT; |
| 3641 | goto out; |
| 3642 | } |
| 3643 | |
| 3644 | kvm->arch.apic_access_page = page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3645 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3646 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3647 | return r; |
| 3648 | } |
| 3649 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3650 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 3651 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 3652 | struct page *page; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3653 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 3654 | int r = 0; |
| 3655 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3656 | mutex_lock(&kvm->slots_lock); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3657 | if (kvm->arch.ept_identity_pagetable) |
| 3658 | goto out; |
| 3659 | kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT; |
| 3660 | kvm_userspace_mem.flags = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3661 | kvm_userspace_mem.guest_phys_addr = |
| 3662 | kvm->arch.ept_identity_map_addr; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3663 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Alex Williamson | f82a8cf | 2012-12-10 10:33:21 -0700 | [diff] [blame] | 3664 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem, false); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3665 | if (r) |
| 3666 | goto out; |
| 3667 | |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 3668 | page = gfn_to_page(kvm, kvm->arch.ept_identity_map_addr >> PAGE_SHIFT); |
| 3669 | if (is_error_page(page)) { |
| 3670 | r = -EFAULT; |
| 3671 | goto out; |
| 3672 | } |
| 3673 | |
| 3674 | kvm->arch.ept_identity_pagetable = page; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3675 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3676 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 3677 | return r; |
| 3678 | } |
| 3679 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3680 | static void allocate_vpid(struct vcpu_vmx *vmx) |
| 3681 | { |
| 3682 | int vpid; |
| 3683 | |
| 3684 | vmx->vpid = 0; |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 3685 | if (!enable_vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3686 | return; |
| 3687 | spin_lock(&vmx_vpid_lock); |
| 3688 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 3689 | if (vpid < VMX_NR_VPIDS) { |
| 3690 | vmx->vpid = vpid; |
| 3691 | __set_bit(vpid, vmx_vpid_bitmap); |
| 3692 | } |
| 3693 | spin_unlock(&vmx_vpid_lock); |
| 3694 | } |
| 3695 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 3696 | static void free_vpid(struct vcpu_vmx *vmx) |
| 3697 | { |
| 3698 | if (!enable_vpid) |
| 3699 | return; |
| 3700 | spin_lock(&vmx_vpid_lock); |
| 3701 | if (vmx->vpid != 0) |
| 3702 | __clear_bit(vmx->vpid, vmx_vpid_bitmap); |
| 3703 | spin_unlock(&vmx_vpid_lock); |
| 3704 | } |
| 3705 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3706 | 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] | 3707 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3708 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3709 | |
| 3710 | if (!cpu_has_vmx_msr_bitmap()) |
| 3711 | return; |
| 3712 | |
| 3713 | /* |
| 3714 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 3715 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 3716 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 3717 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3718 | if (msr <= 0x1fff) { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3719 | __clear_bit(msr, msr_bitmap + 0x000 / f); /* read-low */ |
| 3720 | __clear_bit(msr, msr_bitmap + 0x800 / f); /* write-low */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3721 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 3722 | msr &= 0x1fff; |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3723 | __clear_bit(msr, msr_bitmap + 0x400 / f); /* read-high */ |
| 3724 | __clear_bit(msr, msr_bitmap + 0xc00 / f); /* write-high */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3725 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3726 | } |
| 3727 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3728 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 3729 | { |
| 3730 | if (!longmode_only) |
| 3731 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, msr); |
| 3732 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, msr); |
| 3733 | } |
| 3734 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3735 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3736 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 3737 | * will not change in the lifetime of the guest. |
| 3738 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 3739 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 3740 | */ |
| 3741 | static void vmx_set_constant_host_state(void) |
| 3742 | { |
| 3743 | u32 low32, high32; |
| 3744 | unsigned long tmpl; |
| 3745 | struct desc_ptr dt; |
| 3746 | |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 3747 | vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3748 | vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */ |
| 3749 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 3750 | |
| 3751 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 3752 | #ifdef CONFIG_X86_64 |
| 3753 | /* |
| 3754 | * Load null selectors, so we can avoid reloading them in |
| 3755 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 3756 | * too (the expected case). |
| 3757 | */ |
| 3758 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 3759 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 3760 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3761 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 3762 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 3763 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3764 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 3765 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 3766 | |
| 3767 | native_store_idt(&dt); |
| 3768 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
| 3769 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 3770 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3771 | |
| 3772 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 3773 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 3774 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 3775 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 3776 | |
| 3777 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 3778 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 3779 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 3780 | } |
| 3781 | } |
| 3782 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3783 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 3784 | { |
| 3785 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 3786 | if (enable_ept) |
| 3787 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 3788 | if (is_guest_mode(&vmx->vcpu)) |
| 3789 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 3790 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3791 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 3792 | } |
| 3793 | |
| 3794 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 3795 | { |
| 3796 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
| 3797 | if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) { |
| 3798 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3799 | #ifdef CONFIG_X86_64 |
| 3800 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 3801 | CPU_BASED_CR8_LOAD_EXITING; |
| 3802 | #endif |
| 3803 | } |
| 3804 | if (!enable_ept) |
| 3805 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 3806 | CPU_BASED_CR3_LOAD_EXITING | |
| 3807 | CPU_BASED_INVLPG_EXITING; |
| 3808 | return exec_control; |
| 3809 | } |
| 3810 | |
| 3811 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 3812 | { |
| 3813 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
| 3814 | if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) |
| 3815 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 3816 | if (vmx->vpid == 0) |
| 3817 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 3818 | if (!enable_ept) { |
| 3819 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 3820 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3821 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 3822 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3823 | } |
| 3824 | if (!enable_unrestricted_guest) |
| 3825 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 3826 | if (!ple_gap) |
| 3827 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 3828 | return exec_control; |
| 3829 | } |
| 3830 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3831 | static void ept_set_mmio_spte_mask(void) |
| 3832 | { |
| 3833 | /* |
| 3834 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 3835 | * of an EPT paging-structure entry is 110b (write/execute). |
| 3836 | * Also, magic bits (0xffull << 49) is set to quickly identify mmio |
| 3837 | * spte. |
| 3838 | */ |
| 3839 | kvm_mmu_set_mmio_spte_mask(0xffull << 49 | 0x6ull); |
| 3840 | } |
| 3841 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3842 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3843 | * Sets up the vmcs for emulated real mode. |
| 3844 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3845 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3846 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 3847 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3848 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 3849 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3850 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3851 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3852 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 3853 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 3854 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3855 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3856 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 3857 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3858 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3859 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 3860 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3861 | /* Control */ |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3862 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, |
| 3863 | vmcs_config.pin_based_exec_ctrl); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3864 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3865 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3866 | |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 3867 | if (cpu_has_secondary_exec_ctrls()) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3868 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 3869 | vmx_secondary_exec_control(vmx)); |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 3870 | } |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3871 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3872 | if (ple_gap) { |
| 3873 | vmcs_write32(PLE_GAP, ple_gap); |
| 3874 | vmcs_write32(PLE_WINDOW, ple_window); |
| 3875 | } |
| 3876 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 3877 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 3878 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3879 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 3880 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 3881 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 3882 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3883 | vmx_set_constant_host_state(); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3884 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3885 | rdmsrl(MSR_FS_BASE, a); |
| 3886 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 3887 | rdmsrl(MSR_GS_BASE, a); |
| 3888 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 3889 | #else |
| 3890 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 3891 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 3892 | #endif |
| 3893 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3894 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 3895 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 3896 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3897 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 3898 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3899 | |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3900 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 3901 | u32 msr_low, msr_high; |
| 3902 | u64 host_pat; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3903 | rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high); |
| 3904 | host_pat = msr_low | ((u64) msr_high << 32); |
| 3905 | /* Write the default value follow host pat */ |
| 3906 | vmcs_write64(GUEST_IA32_PAT, host_pat); |
| 3907 | /* Keep arch.pat sync with GUEST_IA32_PAT */ |
| 3908 | vmx->vcpu.arch.pat = host_pat; |
| 3909 | } |
| 3910 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3911 | for (i = 0; i < NR_VMX_MSR; ++i) { |
| 3912 | u32 index = vmx_msr_index[i]; |
| 3913 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3914 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3915 | |
| 3916 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 3917 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 3918 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 3919 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3920 | vmx->guest_msrs[j].index = i; |
| 3921 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 3922 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3923 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3924 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3925 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3926 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3927 | |
| 3928 | /* 22.2.1, 20.8.1 */ |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3929 | vmcs_write32(VM_ENTRY_CONTROLS, vmcs_config.vmentry_ctrl); |
| 3930 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3931 | vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 3932 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3933 | |
| 3934 | return 0; |
| 3935 | } |
| 3936 | |
| 3937 | static int vmx_vcpu_reset(struct kvm_vcpu *vcpu) |
| 3938 | { |
| 3939 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3940 | u64 msr; |
Xiao Guangrong | 4b9d3a0 | 2010-06-08 10:15:51 +0800 | [diff] [blame] | 3941 | int ret; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3942 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3943 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3944 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 3945 | vmx->soft_vnmi_blocked = 0; |
| 3946 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3947 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 3948 | kvm_set_cr8(&vmx->vcpu, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3949 | msr = 0xfee00000 | MSR_IA32_APICBASE_ENABLE; |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 3950 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3951 | msr |= MSR_IA32_APICBASE_BSP; |
| 3952 | kvm_set_apic_base(&vmx->vcpu, msr); |
| 3953 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3954 | vmx_segment_cache_clear(vmx); |
| 3955 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 3956 | seg_setup(VCPU_SREG_CS); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 3957 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3958 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 3959 | else { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3960 | vmcs_write16(GUEST_CS_SELECTOR, vmx->vcpu.arch.sipi_vector << 8); |
| 3961 | vmcs_writel(GUEST_CS_BASE, vmx->vcpu.arch.sipi_vector << 12); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3962 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3963 | |
| 3964 | seg_setup(VCPU_SREG_DS); |
| 3965 | seg_setup(VCPU_SREG_ES); |
| 3966 | seg_setup(VCPU_SREG_FS); |
| 3967 | seg_setup(VCPU_SREG_GS); |
| 3968 | seg_setup(VCPU_SREG_SS); |
| 3969 | |
| 3970 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 3971 | vmcs_writel(GUEST_TR_BASE, 0); |
| 3972 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 3973 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3974 | |
| 3975 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 3976 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 3977 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 3978 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 3979 | |
| 3980 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 3981 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 3982 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 3983 | |
| 3984 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 3985 | if (kvm_vcpu_is_bsp(&vmx->vcpu)) |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3986 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3987 | else |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3988 | kvm_rip_write(vcpu, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3989 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3990 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 3991 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 3992 | |
| 3993 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 3994 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 3995 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3996 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 3997 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
| 3998 | vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
| 3999 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4000 | /* Special registers */ |
| 4001 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 4002 | |
| 4003 | setup_msrs(vmx); |
| 4004 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4005 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 4006 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4007 | if (cpu_has_vmx_tpr_shadow()) { |
| 4008 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
| 4009 | if (vm_need_tpr_shadow(vmx->vcpu.kvm)) |
| 4010 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Takuya Yoshikawa | afc2018 | 2011-03-05 12:40:20 +0900 | [diff] [blame] | 4011 | __pa(vmx->vcpu.arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4012 | vmcs_write32(TPR_THRESHOLD, 0); |
| 4013 | } |
| 4014 | |
| 4015 | if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) |
| 4016 | vmcs_write64(APIC_ACCESS_ADDR, |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 4017 | page_to_phys(vmx->vcpu.kvm->arch.apic_access_page)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4018 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4019 | if (vmx->vpid != 0) |
| 4020 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 4021 | |
Eduardo Habkost | fa40052 | 2009-10-24 02:49:58 -0200 | [diff] [blame] | 4022 | vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
Marcelo Tosatti | 7a4f5ad | 2012-03-27 19:47:26 -0300 | [diff] [blame] | 4023 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 4024 | vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */ |
Marcelo Tosatti | 7a4f5ad | 2012-03-27 19:47:26 -0300 | [diff] [blame] | 4025 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4026 | vmx_set_cr4(&vmx->vcpu, 0); |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4027 | vmx_set_efer(&vmx->vcpu, 0); |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4028 | vmx_fpu_activate(&vmx->vcpu); |
| 4029 | update_exception_bitmap(&vmx->vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4030 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 4031 | vpid_sync_context(vmx); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4032 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 4033 | ret = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4034 | |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 4035 | /* HACK: Don't enable emulation on guest boot/reset */ |
| 4036 | vmx->emulation_required = 0; |
| 4037 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4038 | return ret; |
| 4039 | } |
| 4040 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4041 | /* |
| 4042 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 4043 | * For most existing hypervisors, this will always return true. |
| 4044 | */ |
| 4045 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 4046 | { |
| 4047 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4048 | PIN_BASED_EXT_INTR_MASK; |
| 4049 | } |
| 4050 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4051 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
| 4052 | { |
| 4053 | u32 cpu_based_vm_exec_control; |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 4054 | if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) { |
| 4055 | /* |
| 4056 | * We get here if vmx_interrupt_allowed() said we can't |
| 4057 | * inject to L1 now because L2 must run. Ask L2 to exit |
| 4058 | * right after entry, so we can inject to L1 more promptly. |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4059 | */ |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 4060 | kvm_make_request(KVM_REQ_IMMEDIATE_EXIT, vcpu); |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4061 | return; |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 4062 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4063 | |
| 4064 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4065 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4066 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4067 | } |
| 4068 | |
| 4069 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
| 4070 | { |
| 4071 | u32 cpu_based_vm_exec_control; |
| 4072 | |
| 4073 | if (!cpu_has_virtual_nmis()) { |
| 4074 | enable_irq_window(vcpu); |
| 4075 | return; |
| 4076 | } |
| 4077 | |
Avi Kivity | 30bd0c4 | 2010-11-01 23:20:48 +0200 | [diff] [blame] | 4078 | if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 4079 | enable_irq_window(vcpu); |
| 4080 | return; |
| 4081 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4082 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4083 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4084 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4085 | } |
| 4086 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4087 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4088 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4089 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4090 | uint32_t intr; |
| 4091 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4092 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4093 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4094 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 4095 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4096 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4097 | int inc_eip = 0; |
| 4098 | if (vcpu->arch.interrupt.soft) |
| 4099 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 4100 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4101 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4102 | return; |
| 4103 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4104 | intr = irq | INTR_INFO_VALID_MASK; |
| 4105 | if (vcpu->arch.interrupt.soft) { |
| 4106 | intr |= INTR_TYPE_SOFT_INTR; |
| 4107 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 4108 | vmx->vcpu.arch.event_exit_inst_len); |
| 4109 | } else |
| 4110 | intr |= INTR_TYPE_EXT_INTR; |
| 4111 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4112 | } |
| 4113 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4114 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 4115 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 4116 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4117 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 4118 | if (is_guest_mode(vcpu)) |
| 4119 | return; |
| 4120 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4121 | if (!cpu_has_virtual_nmis()) { |
| 4122 | /* |
| 4123 | * Tracking the NMI-blocked state in software is built upon |
| 4124 | * finding the next open IRQ window. This, in turn, depends on |
| 4125 | * well-behaving guests: They have to keep IRQs disabled at |
| 4126 | * least as long as the NMI handler runs. Otherwise we may |
| 4127 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 4128 | * highly unlikely, we can live with the residual risk. |
| 4129 | */ |
| 4130 | vmx->soft_vnmi_blocked = 1; |
| 4131 | vmx->vnmi_blocked_time = 0; |
| 4132 | } |
| 4133 | |
Jan Kiszka | 487b391 | 2008-09-26 09:30:56 +0200 | [diff] [blame] | 4134 | ++vcpu->stat.nmi_injections; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4135 | vmx->nmi_known_unmasked = false; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4136 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4137 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4138 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 4139 | return; |
| 4140 | } |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4141 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 4142 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4143 | } |
| 4144 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 4145 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 4146 | { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4147 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 4148 | return 0; |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 4149 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 4150 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
Avi Kivity | 30bd0c4 | 2010-11-01 23:20:48 +0200 | [diff] [blame] | 4151 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 4152 | | GUEST_INTR_STATE_NMI)); |
Jan Kiszka | 33f089c | 2008-09-26 09:30:49 +0200 | [diff] [blame] | 4153 | } |
| 4154 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4155 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 4156 | { |
| 4157 | if (!cpu_has_virtual_nmis()) |
| 4158 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4159 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 4160 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 4161 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4162 | } |
| 4163 | |
| 4164 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 4165 | { |
| 4166 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4167 | |
| 4168 | if (!cpu_has_virtual_nmis()) { |
| 4169 | if (vmx->soft_vnmi_blocked != masked) { |
| 4170 | vmx->soft_vnmi_blocked = masked; |
| 4171 | vmx->vnmi_blocked_time = 0; |
| 4172 | } |
| 4173 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4174 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4175 | if (masked) |
| 4176 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 4177 | GUEST_INTR_STATE_NMI); |
| 4178 | else |
| 4179 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 4180 | GUEST_INTR_STATE_NMI); |
| 4181 | } |
| 4182 | } |
| 4183 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 4184 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 4185 | { |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4186 | if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu)) { |
Nadav Har'El | 51cfe38 | 2011-09-22 13:53:26 +0300 | [diff] [blame] | 4187 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 4188 | if (to_vmx(vcpu)->nested.nested_run_pending || |
| 4189 | (vmcs12->idt_vectoring_info_field & |
| 4190 | VECTORING_INFO_VALID_MASK)) |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4191 | return 0; |
| 4192 | nested_vmx_vmexit(vcpu); |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4193 | vmcs12->vm_exit_reason = EXIT_REASON_EXTERNAL_INTERRUPT; |
| 4194 | vmcs12->vm_exit_intr_info = 0; |
| 4195 | /* fall through to normal code, but now in L1, not L2 */ |
| 4196 | } |
| 4197 | |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 4198 | return (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
| 4199 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 4200 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 4201 | } |
| 4202 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4203 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 4204 | { |
| 4205 | int ret; |
| 4206 | struct kvm_userspace_memory_region tss_mem = { |
Sheng Yang | 6fe6397 | 2008-10-16 17:30:58 +0800 | [diff] [blame] | 4207 | .slot = TSS_PRIVATE_MEMSLOT, |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4208 | .guest_phys_addr = addr, |
| 4209 | .memory_size = PAGE_SIZE * 3, |
| 4210 | .flags = 0, |
| 4211 | }; |
| 4212 | |
Alex Williamson | f82a8cf | 2012-12-10 10:33:21 -0700 | [diff] [blame] | 4213 | ret = kvm_set_memory_region(kvm, &tss_mem, false); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4214 | if (ret) |
| 4215 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 4216 | kvm->arch.tss_addr = addr; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 4217 | if (!init_rmode_tss(kvm)) |
| 4218 | return -ENOMEM; |
| 4219 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4220 | return 0; |
| 4221 | } |
| 4222 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4223 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4224 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4225 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4226 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 4227 | /* |
| 4228 | * Update instruction length as we may reinject the exception |
| 4229 | * from user space while in guest debugging mode. |
| 4230 | */ |
| 4231 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 4232 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4233 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4234 | return false; |
| 4235 | /* fall through */ |
| 4236 | case DB_VECTOR: |
| 4237 | if (vcpu->guest_debug & |
| 4238 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 4239 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4240 | /* fall through */ |
| 4241 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4242 | case OF_VECTOR: |
| 4243 | case BR_VECTOR: |
| 4244 | case UD_VECTOR: |
| 4245 | case DF_VECTOR: |
| 4246 | case SS_VECTOR: |
| 4247 | case GP_VECTOR: |
| 4248 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4249 | return true; |
| 4250 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4251 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4252 | return false; |
| 4253 | } |
| 4254 | |
| 4255 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 4256 | int vec, u32 err_code) |
| 4257 | { |
| 4258 | /* |
| 4259 | * Instruction with address size override prefix opcode 0x67 |
| 4260 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 4261 | */ |
| 4262 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 4263 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 4264 | if (vcpu->arch.halt_request) { |
| 4265 | vcpu->arch.halt_request = 0; |
| 4266 | return kvm_emulate_halt(vcpu); |
| 4267 | } |
| 4268 | return 1; |
| 4269 | } |
| 4270 | return 0; |
| 4271 | } |
| 4272 | |
| 4273 | /* |
| 4274 | * Forward all other exceptions that are valid in real mode. |
| 4275 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 4276 | * the required debugging infrastructure rework. |
| 4277 | */ |
| 4278 | kvm_queue_exception(vcpu, vec); |
| 4279 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4280 | } |
| 4281 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4282 | /* |
| 4283 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 4284 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 4285 | * We pass a fake environment to the machine check handler because we want |
| 4286 | * the guest to be always treated like user space, no matter what context |
| 4287 | * it used internally. |
| 4288 | */ |
| 4289 | static void kvm_machine_check(void) |
| 4290 | { |
| 4291 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 4292 | struct pt_regs regs = { |
| 4293 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 4294 | .flags = X86_EFLAGS_IF, |
| 4295 | }; |
| 4296 | |
| 4297 | do_machine_check(®s, 0); |
| 4298 | #endif |
| 4299 | } |
| 4300 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4301 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4302 | { |
| 4303 | /* already handled by vcpu_run */ |
| 4304 | return 1; |
| 4305 | } |
| 4306 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4307 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4308 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 4309 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4310 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4311 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4312 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4313 | u32 vect_info; |
| 4314 | enum emulation_result er; |
| 4315 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 4316 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 4317 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4318 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4319 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4320 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 4321 | |
Jan Kiszka | e4a4188 | 2008-09-26 09:30:46 +0200 | [diff] [blame] | 4322 | if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 4323 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 4324 | |
| 4325 | if (is_no_device(intr_info)) { |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 4326 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 4327 | return 1; |
| 4328 | } |
| 4329 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4330 | if (is_invalid_opcode(intr_info)) { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4331 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4332 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 4333 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4334 | return 1; |
| 4335 | } |
| 4336 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4337 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 4338 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4339 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 4340 | |
| 4341 | /* |
| 4342 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 4343 | * MMIO, it is better to report an internal error. |
| 4344 | * See the comments in vmx_handle_exit. |
| 4345 | */ |
| 4346 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 4347 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 4348 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 4349 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
| 4350 | vcpu->run->internal.ndata = 2; |
| 4351 | vcpu->run->internal.data[0] = vect_info; |
| 4352 | vcpu->run->internal.data[1] = intr_info; |
| 4353 | return 0; |
| 4354 | } |
| 4355 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4356 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4357 | /* EPT won't cause page fault directly */ |
Julia Lawall | cf3ace7 | 2011-08-02 12:34:57 +0200 | [diff] [blame] | 4358 | BUG_ON(enable_ept); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4359 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4360 | trace_kvm_page_fault(cr2, error_code); |
| 4361 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 4362 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 4363 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 4364 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4365 | } |
| 4366 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4367 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4368 | |
| 4369 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 4370 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 4371 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4372 | switch (ex_no) { |
| 4373 | case DB_VECTOR: |
| 4374 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 4375 | if (!(vcpu->guest_debug & |
| 4376 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
| 4377 | vcpu->arch.dr6 = dr6 | DR6_FIXED_1; |
| 4378 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 4379 | return 1; |
| 4380 | } |
| 4381 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 4382 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 4383 | /* fall through */ |
| 4384 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 4385 | /* |
| 4386 | * Update instruction length as we may reinject #BP from |
| 4387 | * user space while in guest debugging mode. Reading it for |
| 4388 | * #DB as well causes no harm, it is not used in that case. |
| 4389 | */ |
| 4390 | vmx->vcpu.arch.event_exit_inst_len = |
| 4391 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4392 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 4393 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4394 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 4395 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4396 | break; |
| 4397 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4398 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 4399 | kvm_run->ex.exception = ex_no; |
| 4400 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4401 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4402 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4403 | return 0; |
| 4404 | } |
| 4405 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4406 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4407 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 4408 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4409 | return 1; |
| 4410 | } |
| 4411 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4412 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 4413 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4414 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 4415 | return 0; |
| 4416 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4417 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4418 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4419 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4420 | unsigned long exit_qualification; |
Jan Kiszka | 34c33d1 | 2009-02-08 13:28:15 +0100 | [diff] [blame] | 4421 | int size, in, string; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 4422 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4423 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4424 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 4425 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 4426 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 4427 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4428 | ++vcpu->stat.io_exits; |
| 4429 | |
| 4430 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4431 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4432 | |
| 4433 | port = exit_qualification >> 16; |
| 4434 | size = (exit_qualification & 7) + 1; |
Guillaume Thouvenin | e93f36b | 2008-10-28 10:51:30 +0100 | [diff] [blame] | 4435 | skip_emulated_instruction(vcpu); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4436 | |
| 4437 | return kvm_fast_pio_out(vcpu, size, port); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4438 | } |
| 4439 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4440 | static void |
| 4441 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 4442 | { |
| 4443 | /* |
| 4444 | * Patch in the VMCALL instruction: |
| 4445 | */ |
| 4446 | hypercall[0] = 0x0f; |
| 4447 | hypercall[1] = 0x01; |
| 4448 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4449 | } |
| 4450 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 4451 | /* called to set cr0 as appropriate for a mov-to-cr0 exit. */ |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 4452 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 4453 | { |
| 4454 | if (to_vmx(vcpu)->nested.vmxon && |
| 4455 | ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON)) |
| 4456 | return 1; |
| 4457 | |
| 4458 | if (is_guest_mode(vcpu)) { |
| 4459 | /* |
| 4460 | * We get here when L2 changed cr0 in a way that did not change |
| 4461 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
| 4462 | * but did change L0 shadowed bits. This can currently happen |
| 4463 | * with the TS bit: L0 may want to leave TS on (for lazy fpu |
| 4464 | * loading) while pretending to allow the guest to change it. |
| 4465 | */ |
| 4466 | if (kvm_set_cr0(vcpu, (val & vcpu->arch.cr0_guest_owned_bits) | |
| 4467 | (vcpu->arch.cr0 & ~vcpu->arch.cr0_guest_owned_bits))) |
| 4468 | return 1; |
| 4469 | vmcs_writel(CR0_READ_SHADOW, val); |
| 4470 | return 0; |
| 4471 | } else |
| 4472 | return kvm_set_cr0(vcpu, val); |
| 4473 | } |
| 4474 | |
| 4475 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 4476 | { |
| 4477 | if (is_guest_mode(vcpu)) { |
| 4478 | if (kvm_set_cr4(vcpu, (val & vcpu->arch.cr4_guest_owned_bits) | |
| 4479 | (vcpu->arch.cr4 & ~vcpu->arch.cr4_guest_owned_bits))) |
| 4480 | return 1; |
| 4481 | vmcs_writel(CR4_READ_SHADOW, val); |
| 4482 | return 0; |
| 4483 | } else |
| 4484 | return kvm_set_cr4(vcpu, val); |
| 4485 | } |
| 4486 | |
| 4487 | /* called to set cr0 as approriate for clts instruction exit. */ |
| 4488 | static void handle_clts(struct kvm_vcpu *vcpu) |
| 4489 | { |
| 4490 | if (is_guest_mode(vcpu)) { |
| 4491 | /* |
| 4492 | * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS |
| 4493 | * but we did (!fpu_active). We need to keep GUEST_CR0.TS on, |
| 4494 | * just pretend it's off (also in arch.cr0 for fpu_activate). |
| 4495 | */ |
| 4496 | vmcs_writel(CR0_READ_SHADOW, |
| 4497 | vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS); |
| 4498 | vcpu->arch.cr0 &= ~X86_CR0_TS; |
| 4499 | } else |
| 4500 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
| 4501 | } |
| 4502 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4503 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4504 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4505 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4506 | int cr; |
| 4507 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 4508 | int err; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4509 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4510 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4511 | cr = exit_qualification & 15; |
| 4512 | reg = (exit_qualification >> 8) & 15; |
| 4513 | switch ((exit_qualification >> 4) & 3) { |
| 4514 | case 0: /* mov to cr */ |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4515 | val = kvm_register_read(vcpu, reg); |
| 4516 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4517 | switch (cr) { |
| 4518 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 4519 | err = handle_set_cr0(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4520 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4521 | return 1; |
| 4522 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 4523 | err = kvm_set_cr3(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4524 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4525 | return 1; |
| 4526 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 4527 | err = handle_set_cr4(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4528 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4529 | return 1; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4530 | case 8: { |
| 4531 | u8 cr8_prev = kvm_get_cr8(vcpu); |
| 4532 | u8 cr8 = kvm_register_read(vcpu, reg); |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 4533 | err = kvm_set_cr8(vcpu, cr8); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 4534 | kvm_complete_insn_gp(vcpu, err); |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4535 | if (irqchip_in_kernel(vcpu->kvm)) |
| 4536 | return 1; |
| 4537 | if (cr8_prev <= cr8) |
| 4538 | return 1; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4539 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 4540 | return 0; |
| 4541 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 4542 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4543 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4544 | case 2: /* clts */ |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 4545 | handle_clts(vcpu); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 4546 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4547 | skip_emulated_instruction(vcpu); |
Avi Kivity | 6b52d18 | 2010-01-21 15:31:47 +0200 | [diff] [blame] | 4548 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4549 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4550 | case 1: /*mov from cr*/ |
| 4551 | switch (cr) { |
| 4552 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 4553 | val = kvm_read_cr3(vcpu); |
| 4554 | kvm_register_write(vcpu, reg, val); |
| 4555 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4556 | skip_emulated_instruction(vcpu); |
| 4557 | return 1; |
| 4558 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4559 | val = kvm_get_cr8(vcpu); |
| 4560 | kvm_register_write(vcpu, reg, val); |
| 4561 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4562 | skip_emulated_instruction(vcpu); |
| 4563 | return 1; |
| 4564 | } |
| 4565 | break; |
| 4566 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 4567 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 4568 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 4569 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4570 | |
| 4571 | skip_emulated_instruction(vcpu); |
| 4572 | return 1; |
| 4573 | default: |
| 4574 | break; |
| 4575 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4576 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 4577 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4578 | (int)(exit_qualification >> 4) & 3, cr); |
| 4579 | return 0; |
| 4580 | } |
| 4581 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4582 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4583 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4584 | unsigned long exit_qualification; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4585 | int dr, reg; |
| 4586 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 4587 | /* 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] | 4588 | if (!kvm_require_cpl(vcpu, 0)) |
| 4589 | return 1; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4590 | dr = vmcs_readl(GUEST_DR7); |
| 4591 | if (dr & DR7_GD) { |
| 4592 | /* |
| 4593 | * As the vm-exit takes precedence over the debug trap, we |
| 4594 | * need to emulate the latter, either for the host or the |
| 4595 | * guest debugging itself. |
| 4596 | */ |
| 4597 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4598 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
| 4599 | vcpu->run->debug.arch.dr7 = dr; |
| 4600 | vcpu->run->debug.arch.pc = |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4601 | vmcs_readl(GUEST_CS_BASE) + |
| 4602 | vmcs_readl(GUEST_RIP); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4603 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 4604 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4605 | return 0; |
| 4606 | } else { |
| 4607 | vcpu->arch.dr7 &= ~DR7_GD; |
| 4608 | vcpu->arch.dr6 |= DR6_BD; |
| 4609 | vmcs_writel(GUEST_DR7, vcpu->arch.dr7); |
| 4610 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 4611 | return 1; |
| 4612 | } |
| 4613 | } |
| 4614 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 4615 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4616 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 4617 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 4618 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 4619 | unsigned long val; |
| 4620 | if (!kvm_get_dr(vcpu, dr, &val)) |
| 4621 | kvm_register_write(vcpu, reg, val); |
| 4622 | } else |
| 4623 | kvm_set_dr(vcpu, dr, vcpu->arch.regs[reg]); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4624 | skip_emulated_instruction(vcpu); |
| 4625 | return 1; |
| 4626 | } |
| 4627 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 4628 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 4629 | { |
| 4630 | vmcs_writel(GUEST_DR7, val); |
| 4631 | } |
| 4632 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4633 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4634 | { |
Avi Kivity | 06465c5 | 2007-02-28 20:46:53 +0200 | [diff] [blame] | 4635 | kvm_emulate_cpuid(vcpu); |
| 4636 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4637 | } |
| 4638 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4639 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4640 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4641 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4642 | u64 data; |
| 4643 | |
| 4644 | if (vmx_get_msr(vcpu, ecx, &data)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4645 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 4646 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4647 | return 1; |
| 4648 | } |
| 4649 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4650 | trace_kvm_msr_read(ecx, data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4651 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4652 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4653 | vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u; |
| 4654 | vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4655 | skip_emulated_instruction(vcpu); |
| 4656 | return 1; |
| 4657 | } |
| 4658 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4659 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4660 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 4661 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4662 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 4663 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 4664 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4665 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 4666 | msr.data = data; |
| 4667 | msr.index = ecx; |
| 4668 | msr.host_initiated = false; |
| 4669 | if (vmx_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4670 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 4671 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4672 | return 1; |
| 4673 | } |
| 4674 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 4675 | trace_kvm_msr_write(ecx, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4676 | skip_emulated_instruction(vcpu); |
| 4677 | return 1; |
| 4678 | } |
| 4679 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4680 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4681 | { |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4682 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4683 | return 1; |
| 4684 | } |
| 4685 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4686 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4687 | { |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4688 | u32 cpu_based_vm_exec_control; |
| 4689 | |
| 4690 | /* clear pending irq */ |
| 4691 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4692 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4693 | 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] | 4694 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4695 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4696 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 4697 | ++vcpu->stat.irq_window_exits; |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4698 | |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 4699 | /* |
| 4700 | * If the user space waits to inject interrupts, exit as soon as |
| 4701 | * possible |
| 4702 | */ |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 4703 | if (!irqchip_in_kernel(vcpu->kvm) && |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4704 | vcpu->run->request_interrupt_window && |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 4705 | !kvm_cpu_has_interrupt(vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4706 | vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 4707 | return 0; |
| 4708 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4709 | return 1; |
| 4710 | } |
| 4711 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4712 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4713 | { |
| 4714 | skip_emulated_instruction(vcpu); |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 4715 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4716 | } |
| 4717 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4718 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4719 | { |
Dor Laor | 510043d | 2007-02-19 18:25:43 +0200 | [diff] [blame] | 4720 | skip_emulated_instruction(vcpu); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 4721 | kvm_emulate_hypercall(vcpu); |
| 4722 | return 1; |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 4723 | } |
| 4724 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 4725 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 4726 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4727 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 4728 | } |
| 4729 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4730 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4731 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4732 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4733 | |
| 4734 | kvm_mmu_invlpg(vcpu, exit_qualification); |
| 4735 | skip_emulated_instruction(vcpu); |
| 4736 | return 1; |
| 4737 | } |
| 4738 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 4739 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 4740 | { |
| 4741 | int err; |
| 4742 | |
| 4743 | err = kvm_rdpmc(vcpu); |
| 4744 | kvm_complete_insn_gp(vcpu, err); |
| 4745 | |
| 4746 | return 1; |
| 4747 | } |
| 4748 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4749 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 4750 | { |
| 4751 | skip_emulated_instruction(vcpu); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4752 | kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 4753 | return 1; |
| 4754 | } |
| 4755 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 4756 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 4757 | { |
| 4758 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 4759 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 4760 | |
| 4761 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
| 4762 | skip_emulated_instruction(vcpu); |
| 4763 | return 1; |
| 4764 | } |
| 4765 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4766 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4767 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 4768 | if (likely(fasteoi)) { |
| 4769 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 4770 | int access_type, offset; |
| 4771 | |
| 4772 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 4773 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 4774 | /* |
| 4775 | * Sane guest uses MOV to write EOI, with written value |
| 4776 | * not cared. So make a short-circuit here by avoiding |
| 4777 | * heavy instruction emulation. |
| 4778 | */ |
| 4779 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 4780 | (offset == APIC_EOI)) { |
| 4781 | kvm_lapic_set_eoi(vcpu); |
| 4782 | skip_emulated_instruction(vcpu); |
| 4783 | return 1; |
| 4784 | } |
| 4785 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 4786 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4787 | } |
| 4788 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4789 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4790 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 4791 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4792 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 4793 | bool has_error_code = false; |
| 4794 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4795 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 4796 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4797 | |
| 4798 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 4799 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4800 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4801 | |
| 4802 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 4803 | |
| 4804 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4805 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 4806 | switch (type) { |
| 4807 | case INTR_TYPE_NMI_INTR: |
| 4808 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 4809 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4810 | break; |
| 4811 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4812 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4813 | kvm_clear_interrupt_queue(vcpu); |
| 4814 | break; |
| 4815 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 4816 | if (vmx->idt_vectoring_info & |
| 4817 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 4818 | has_error_code = true; |
| 4819 | error_code = |
| 4820 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 4821 | } |
| 4822 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4823 | case INTR_TYPE_SOFT_EXCEPTION: |
| 4824 | kvm_clear_exception_queue(vcpu); |
| 4825 | break; |
| 4826 | default: |
| 4827 | break; |
| 4828 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 4829 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4830 | tss_selector = exit_qualification; |
| 4831 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 4832 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 4833 | type != INTR_TYPE_EXT_INTR && |
| 4834 | type != INTR_TYPE_NMI_INTR)) |
| 4835 | skip_emulated_instruction(vcpu); |
| 4836 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 4837 | if (kvm_task_switch(vcpu, tss_selector, |
| 4838 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 4839 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 4840 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 4841 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 4842 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4843 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 4844 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4845 | |
| 4846 | /* clear all local breakpoint enable flags */ |
| 4847 | vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~55); |
| 4848 | |
| 4849 | /* |
| 4850 | * TODO: What about debug traps on tss switch? |
| 4851 | * Are we supposed to inject them and update dr6? |
| 4852 | */ |
| 4853 | |
| 4854 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 4855 | } |
| 4856 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4857 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4858 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4859 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4860 | gpa_t gpa; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 4861 | u32 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4862 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4863 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4864 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4865 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4866 | gla_validity = (exit_qualification >> 7) & 0x3; |
| 4867 | if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) { |
| 4868 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 4869 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 4870 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 4871 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4872 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 4873 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4874 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 4875 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 4876 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4877 | } |
| 4878 | |
| 4879 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4880 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 4881 | |
| 4882 | /* It is a write fault? */ |
| 4883 | error_code = exit_qualification & (1U << 1); |
| 4884 | /* ept page table is present? */ |
| 4885 | error_code |= (exit_qualification >> 3) & 0x1; |
| 4886 | |
| 4887 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4888 | } |
| 4889 | |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4890 | static u64 ept_rsvd_mask(u64 spte, int level) |
| 4891 | { |
| 4892 | int i; |
| 4893 | u64 mask = 0; |
| 4894 | |
| 4895 | for (i = 51; i > boot_cpu_data.x86_phys_bits; i--) |
| 4896 | mask |= (1ULL << i); |
| 4897 | |
| 4898 | if (level > 2) |
| 4899 | /* bits 7:3 reserved */ |
| 4900 | mask |= 0xf8; |
| 4901 | else if (level == 2) { |
| 4902 | if (spte & (1ULL << 7)) |
| 4903 | /* 2MB ref, bits 20:12 reserved */ |
| 4904 | mask |= 0x1ff000; |
| 4905 | else |
| 4906 | /* bits 6:3 reserved */ |
| 4907 | mask |= 0x78; |
| 4908 | } |
| 4909 | |
| 4910 | return mask; |
| 4911 | } |
| 4912 | |
| 4913 | static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte, |
| 4914 | int level) |
| 4915 | { |
| 4916 | printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level); |
| 4917 | |
| 4918 | /* 010b (write-only) */ |
| 4919 | WARN_ON((spte & 0x7) == 0x2); |
| 4920 | |
| 4921 | /* 110b (write/execute) */ |
| 4922 | WARN_ON((spte & 0x7) == 0x6); |
| 4923 | |
| 4924 | /* 100b (execute-only) and value not supported by logical processor */ |
| 4925 | if (!cpu_has_vmx_ept_execute_only()) |
| 4926 | WARN_ON((spte & 0x7) == 0x4); |
| 4927 | |
| 4928 | /* not 000b */ |
| 4929 | if ((spte & 0x7)) { |
| 4930 | u64 rsvd_bits = spte & ept_rsvd_mask(spte, level); |
| 4931 | |
| 4932 | if (rsvd_bits != 0) { |
| 4933 | printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n", |
| 4934 | __func__, rsvd_bits); |
| 4935 | WARN_ON(1); |
| 4936 | } |
| 4937 | |
| 4938 | if (level == 1 || (level == 2 && (spte & (1ULL << 7)))) { |
| 4939 | u64 ept_mem_type = (spte & 0x38) >> 3; |
| 4940 | |
| 4941 | if (ept_mem_type == 2 || ept_mem_type == 3 || |
| 4942 | ept_mem_type == 7) { |
| 4943 | printk(KERN_ERR "%s: ept_mem_type=0x%llx\n", |
| 4944 | __func__, ept_mem_type); |
| 4945 | WARN_ON(1); |
| 4946 | } |
| 4947 | } |
| 4948 | } |
| 4949 | } |
| 4950 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4951 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4952 | { |
| 4953 | u64 sptes[4]; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4954 | int nr_sptes, i, ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4955 | gpa_t gpa; |
| 4956 | |
| 4957 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
| 4958 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4959 | ret = handle_mmio_page_fault_common(vcpu, gpa, true); |
| 4960 | if (likely(ret == 1)) |
| 4961 | return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) == |
| 4962 | EMULATE_DONE; |
| 4963 | if (unlikely(!ret)) |
| 4964 | return 1; |
| 4965 | |
| 4966 | /* It is the real ept misconfig */ |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4967 | printk(KERN_ERR "EPT: Misconfiguration.\n"); |
| 4968 | printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa); |
| 4969 | |
| 4970 | nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes); |
| 4971 | |
| 4972 | for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i) |
| 4973 | ept_misconfig_inspect_spte(vcpu, sptes[i-1], i); |
| 4974 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4975 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 4976 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 4977 | |
| 4978 | return 0; |
| 4979 | } |
| 4980 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 4981 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4982 | { |
| 4983 | u32 cpu_based_vm_exec_control; |
| 4984 | |
| 4985 | /* clear pending NMI */ |
| 4986 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4987 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4988 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4989 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 4990 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4991 | |
| 4992 | return 1; |
| 4993 | } |
| 4994 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4995 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 4996 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 4997 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4998 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 4999 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5000 | u32 cpu_exec_ctrl; |
| 5001 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 5002 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5003 | |
| 5004 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5005 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5006 | |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 5007 | while (!guest_state_valid(vcpu) && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 5008 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5009 | return handle_interrupt_window(&vmx->vcpu); |
| 5010 | |
Avi Kivity | de87dcdd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 5011 | if (test_bit(KVM_REQ_EVENT, &vcpu->requests)) |
| 5012 | return 1; |
| 5013 | |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5014 | err = emulate_instruction(vcpu, 0); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5015 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5016 | if (err == EMULATE_DO_MMIO) { |
| 5017 | ret = 0; |
| 5018 | goto out; |
| 5019 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5020 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5021 | if (err != EMULATE_DONE) { |
| 5022 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5023 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5024 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5025 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5026 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5027 | |
| 5028 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5029 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5030 | if (need_resched()) |
| 5031 | schedule(); |
| 5032 | } |
| 5033 | |
Avi Kivity | 7c068e4 | 2012-06-10 18:09:27 +0300 | [diff] [blame] | 5034 | vmx->emulation_required = !guest_state_valid(vcpu); |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5035 | out: |
| 5036 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5037 | } |
| 5038 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5039 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5040 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 5041 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 5042 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 5043 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5044 | { |
| 5045 | skip_emulated_instruction(vcpu); |
| 5046 | kvm_vcpu_on_spin(vcpu); |
| 5047 | |
| 5048 | return 1; |
| 5049 | } |
| 5050 | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 5051 | static int handle_invalid_op(struct kvm_vcpu *vcpu) |
| 5052 | { |
| 5053 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5054 | return 1; |
| 5055 | } |
| 5056 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5057 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 5058 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 5059 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 5060 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 5061 | * allows keeping them loaded on the processor, and in the future will allow |
| 5062 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 5063 | * every entry if they never change. |
| 5064 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 5065 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 5066 | * |
| 5067 | * The following functions allocate and free a vmcs02 in this pool. |
| 5068 | */ |
| 5069 | |
| 5070 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 5071 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 5072 | { |
| 5073 | struct vmcs02_list *item; |
| 5074 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 5075 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 5076 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 5077 | return &item->vmcs02; |
| 5078 | } |
| 5079 | |
| 5080 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 5081 | /* Recycle the least recently used VMCS. */ |
| 5082 | item = list_entry(vmx->nested.vmcs02_pool.prev, |
| 5083 | struct vmcs02_list, list); |
| 5084 | item->vmptr = vmx->nested.current_vmptr; |
| 5085 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 5086 | return &item->vmcs02; |
| 5087 | } |
| 5088 | |
| 5089 | /* Create a new VMCS */ |
| 5090 | item = (struct vmcs02_list *) |
| 5091 | kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
| 5092 | if (!item) |
| 5093 | return NULL; |
| 5094 | item->vmcs02.vmcs = alloc_vmcs(); |
| 5095 | if (!item->vmcs02.vmcs) { |
| 5096 | kfree(item); |
| 5097 | return NULL; |
| 5098 | } |
| 5099 | loaded_vmcs_init(&item->vmcs02); |
| 5100 | item->vmptr = vmx->nested.current_vmptr; |
| 5101 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 5102 | vmx->nested.vmcs02_num++; |
| 5103 | return &item->vmcs02; |
| 5104 | } |
| 5105 | |
| 5106 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 5107 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 5108 | { |
| 5109 | struct vmcs02_list *item; |
| 5110 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 5111 | if (item->vmptr == vmptr) { |
| 5112 | free_loaded_vmcs(&item->vmcs02); |
| 5113 | list_del(&item->list); |
| 5114 | kfree(item); |
| 5115 | vmx->nested.vmcs02_num--; |
| 5116 | return; |
| 5117 | } |
| 5118 | } |
| 5119 | |
| 5120 | /* |
| 5121 | * Free all VMCSs saved for this vcpu, except the one pointed by |
| 5122 | * vmx->loaded_vmcs. These include the VMCSs in vmcs02_pool (except the one |
| 5123 | * currently used, if running L2), and vmcs01 when running L2. |
| 5124 | */ |
| 5125 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 5126 | { |
| 5127 | struct vmcs02_list *item, *n; |
| 5128 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
| 5129 | if (vmx->loaded_vmcs != &item->vmcs02) |
| 5130 | free_loaded_vmcs(&item->vmcs02); |
| 5131 | list_del(&item->list); |
| 5132 | kfree(item); |
| 5133 | } |
| 5134 | vmx->nested.vmcs02_num = 0; |
| 5135 | |
| 5136 | if (vmx->loaded_vmcs != &vmx->vmcs01) |
| 5137 | free_loaded_vmcs(&vmx->vmcs01); |
| 5138 | } |
| 5139 | |
| 5140 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5141 | * Emulate the VMXON instruction. |
| 5142 | * Currently, we just remember that VMX is active, and do not save or even |
| 5143 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 5144 | * do not currently need to store anything in that guest-allocated memory |
| 5145 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 5146 | * argument is different from the VMXON pointer (which the spec says they do). |
| 5147 | */ |
| 5148 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 5149 | { |
| 5150 | struct kvm_segment cs; |
| 5151 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5152 | |
| 5153 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 5154 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 5155 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 5156 | * Otherwise, we should fail with #UD. We test these now: |
| 5157 | */ |
| 5158 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 5159 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 5160 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 5161 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5162 | return 1; |
| 5163 | } |
| 5164 | |
| 5165 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 5166 | if (is_long_mode(vcpu) && !cs.l) { |
| 5167 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5168 | return 1; |
| 5169 | } |
| 5170 | |
| 5171 | if (vmx_get_cpl(vcpu)) { |
| 5172 | kvm_inject_gp(vcpu, 0); |
| 5173 | return 1; |
| 5174 | } |
| 5175 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 5176 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 5177 | vmx->nested.vmcs02_num = 0; |
| 5178 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5179 | vmx->nested.vmxon = true; |
| 5180 | |
| 5181 | skip_emulated_instruction(vcpu); |
| 5182 | return 1; |
| 5183 | } |
| 5184 | |
| 5185 | /* |
| 5186 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 5187 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 5188 | * slightly different). It also specifies what exception to inject otherwise. |
| 5189 | */ |
| 5190 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 5191 | { |
| 5192 | struct kvm_segment cs; |
| 5193 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5194 | |
| 5195 | if (!vmx->nested.vmxon) { |
| 5196 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5197 | return 0; |
| 5198 | } |
| 5199 | |
| 5200 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 5201 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 5202 | (is_long_mode(vcpu) && !cs.l)) { |
| 5203 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5204 | return 0; |
| 5205 | } |
| 5206 | |
| 5207 | if (vmx_get_cpl(vcpu)) { |
| 5208 | kvm_inject_gp(vcpu, 0); |
| 5209 | return 0; |
| 5210 | } |
| 5211 | |
| 5212 | return 1; |
| 5213 | } |
| 5214 | |
| 5215 | /* |
| 5216 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 5217 | * just stops using VMX. |
| 5218 | */ |
| 5219 | static void free_nested(struct vcpu_vmx *vmx) |
| 5220 | { |
| 5221 | if (!vmx->nested.vmxon) |
| 5222 | return; |
| 5223 | vmx->nested.vmxon = false; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 5224 | if (vmx->nested.current_vmptr != -1ull) { |
| 5225 | kunmap(vmx->nested.current_vmcs12_page); |
| 5226 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 5227 | vmx->nested.current_vmptr = -1ull; |
| 5228 | vmx->nested.current_vmcs12 = NULL; |
| 5229 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 5230 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 5231 | if (vmx->nested.apic_access_page) { |
| 5232 | nested_release_page(vmx->nested.apic_access_page); |
| 5233 | vmx->nested.apic_access_page = 0; |
| 5234 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 5235 | |
| 5236 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5237 | } |
| 5238 | |
| 5239 | /* Emulate the VMXOFF instruction */ |
| 5240 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 5241 | { |
| 5242 | if (!nested_vmx_check_permission(vcpu)) |
| 5243 | return 1; |
| 5244 | free_nested(to_vmx(vcpu)); |
| 5245 | skip_emulated_instruction(vcpu); |
| 5246 | return 1; |
| 5247 | } |
| 5248 | |
| 5249 | /* |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 5250 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 5251 | * exit caused by such an instruction (run by a guest hypervisor). |
| 5252 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 5253 | * #UD or #GP. |
| 5254 | */ |
| 5255 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 5256 | unsigned long exit_qualification, |
| 5257 | u32 vmx_instruction_info, gva_t *ret) |
| 5258 | { |
| 5259 | /* |
| 5260 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 5261 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 5262 | * addressing components of the operand. Only the displacement part |
| 5263 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 5264 | * For how an actual address is calculated from all these components, |
| 5265 | * refer to Vol. 1, "Operand Addressing". |
| 5266 | */ |
| 5267 | int scaling = vmx_instruction_info & 3; |
| 5268 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 5269 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 5270 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 5271 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 5272 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 5273 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 5274 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 5275 | |
| 5276 | if (is_reg) { |
| 5277 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5278 | return 1; |
| 5279 | } |
| 5280 | |
| 5281 | /* Addr = segment_base + offset */ |
| 5282 | /* offset = base + [index * scale] + displacement */ |
| 5283 | *ret = vmx_get_segment_base(vcpu, seg_reg); |
| 5284 | if (base_is_valid) |
| 5285 | *ret += kvm_register_read(vcpu, base_reg); |
| 5286 | if (index_is_valid) |
| 5287 | *ret += kvm_register_read(vcpu, index_reg)<<scaling; |
| 5288 | *ret += exit_qualification; /* holds the displacement */ |
| 5289 | |
| 5290 | if (addr_size == 1) /* 32 bit */ |
| 5291 | *ret &= 0xffffffff; |
| 5292 | |
| 5293 | /* |
| 5294 | * TODO: throw #GP (and return 1) in various cases that the VM* |
| 5295 | * instructions require it - e.g., offset beyond segment limit, |
| 5296 | * unusable or unreadable/unwritable segment, non-canonical 64-bit |
| 5297 | * address, and so on. Currently these are not checked. |
| 5298 | */ |
| 5299 | return 0; |
| 5300 | } |
| 5301 | |
| 5302 | /* |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 5303 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 5304 | * set the success or error code of an emulated VMX instruction, as specified |
| 5305 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 5306 | */ |
| 5307 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 5308 | { |
| 5309 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 5310 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 5311 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 5312 | } |
| 5313 | |
| 5314 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 5315 | { |
| 5316 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 5317 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 5318 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 5319 | | X86_EFLAGS_CF); |
| 5320 | } |
| 5321 | |
| 5322 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
| 5323 | u32 vm_instruction_error) |
| 5324 | { |
| 5325 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 5326 | /* |
| 5327 | * failValid writes the error number to the current VMCS, which |
| 5328 | * can't be done there isn't a current VMCS. |
| 5329 | */ |
| 5330 | nested_vmx_failInvalid(vcpu); |
| 5331 | return; |
| 5332 | } |
| 5333 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 5334 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 5335 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 5336 | | X86_EFLAGS_ZF); |
| 5337 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 5338 | } |
| 5339 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 5340 | /* Emulate the VMCLEAR instruction */ |
| 5341 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 5342 | { |
| 5343 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5344 | gva_t gva; |
| 5345 | gpa_t vmptr; |
| 5346 | struct vmcs12 *vmcs12; |
| 5347 | struct page *page; |
| 5348 | struct x86_exception e; |
| 5349 | |
| 5350 | if (!nested_vmx_check_permission(vcpu)) |
| 5351 | return 1; |
| 5352 | |
| 5353 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 5354 | vmcs_read32(VMX_INSTRUCTION_INFO), &gva)) |
| 5355 | return 1; |
| 5356 | |
| 5357 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 5358 | sizeof(vmptr), &e)) { |
| 5359 | kvm_inject_page_fault(vcpu, &e); |
| 5360 | return 1; |
| 5361 | } |
| 5362 | |
| 5363 | if (!IS_ALIGNED(vmptr, PAGE_SIZE)) { |
| 5364 | nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 5365 | skip_emulated_instruction(vcpu); |
| 5366 | return 1; |
| 5367 | } |
| 5368 | |
| 5369 | if (vmptr == vmx->nested.current_vmptr) { |
| 5370 | kunmap(vmx->nested.current_vmcs12_page); |
| 5371 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 5372 | vmx->nested.current_vmptr = -1ull; |
| 5373 | vmx->nested.current_vmcs12 = NULL; |
| 5374 | } |
| 5375 | |
| 5376 | page = nested_get_page(vcpu, vmptr); |
| 5377 | if (page == NULL) { |
| 5378 | /* |
| 5379 | * For accurate processor emulation, VMCLEAR beyond available |
| 5380 | * physical memory should do nothing at all. However, it is |
| 5381 | * possible that a nested vmx bug, not a guest hypervisor bug, |
| 5382 | * resulted in this case, so let's shut down before doing any |
| 5383 | * more damage: |
| 5384 | */ |
| 5385 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 5386 | return 1; |
| 5387 | } |
| 5388 | vmcs12 = kmap(page); |
| 5389 | vmcs12->launch_state = 0; |
| 5390 | kunmap(page); |
| 5391 | nested_release_page(page); |
| 5392 | |
| 5393 | nested_free_vmcs02(vmx, vmptr); |
| 5394 | |
| 5395 | skip_emulated_instruction(vcpu); |
| 5396 | nested_vmx_succeed(vcpu); |
| 5397 | return 1; |
| 5398 | } |
| 5399 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5400 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 5401 | |
| 5402 | /* Emulate the VMLAUNCH instruction */ |
| 5403 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 5404 | { |
| 5405 | return nested_vmx_run(vcpu, true); |
| 5406 | } |
| 5407 | |
| 5408 | /* Emulate the VMRESUME instruction */ |
| 5409 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 5410 | { |
| 5411 | |
| 5412 | return nested_vmx_run(vcpu, false); |
| 5413 | } |
| 5414 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5415 | enum vmcs_field_type { |
| 5416 | VMCS_FIELD_TYPE_U16 = 0, |
| 5417 | VMCS_FIELD_TYPE_U64 = 1, |
| 5418 | VMCS_FIELD_TYPE_U32 = 2, |
| 5419 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 5420 | }; |
| 5421 | |
| 5422 | static inline int vmcs_field_type(unsigned long field) |
| 5423 | { |
| 5424 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 5425 | return VMCS_FIELD_TYPE_U32; |
| 5426 | return (field >> 13) & 0x3 ; |
| 5427 | } |
| 5428 | |
| 5429 | static inline int vmcs_field_readonly(unsigned long field) |
| 5430 | { |
| 5431 | return (((field >> 10) & 0x3) == 1); |
| 5432 | } |
| 5433 | |
| 5434 | /* |
| 5435 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 5436 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 5437 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 5438 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 5439 | * 64-bit fields are to be returned). |
| 5440 | */ |
| 5441 | static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 5442 | unsigned long field, u64 *ret) |
| 5443 | { |
| 5444 | short offset = vmcs_field_to_offset(field); |
| 5445 | char *p; |
| 5446 | |
| 5447 | if (offset < 0) |
| 5448 | return 0; |
| 5449 | |
| 5450 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 5451 | |
| 5452 | switch (vmcs_field_type(field)) { |
| 5453 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 5454 | *ret = *((natural_width *)p); |
| 5455 | return 1; |
| 5456 | case VMCS_FIELD_TYPE_U16: |
| 5457 | *ret = *((u16 *)p); |
| 5458 | return 1; |
| 5459 | case VMCS_FIELD_TYPE_U32: |
| 5460 | *ret = *((u32 *)p); |
| 5461 | return 1; |
| 5462 | case VMCS_FIELD_TYPE_U64: |
| 5463 | *ret = *((u64 *)p); |
| 5464 | return 1; |
| 5465 | default: |
| 5466 | return 0; /* can never happen. */ |
| 5467 | } |
| 5468 | } |
| 5469 | |
| 5470 | /* |
| 5471 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 5472 | * used before) all generate the same failure when it is missing. |
| 5473 | */ |
| 5474 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 5475 | { |
| 5476 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5477 | if (vmx->nested.current_vmptr == -1ull) { |
| 5478 | nested_vmx_failInvalid(vcpu); |
| 5479 | skip_emulated_instruction(vcpu); |
| 5480 | return 0; |
| 5481 | } |
| 5482 | return 1; |
| 5483 | } |
| 5484 | |
| 5485 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 5486 | { |
| 5487 | unsigned long field; |
| 5488 | u64 field_value; |
| 5489 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5490 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5491 | gva_t gva = 0; |
| 5492 | |
| 5493 | if (!nested_vmx_check_permission(vcpu) || |
| 5494 | !nested_vmx_check_vmcs12(vcpu)) |
| 5495 | return 1; |
| 5496 | |
| 5497 | /* Decode instruction info and find the field to read */ |
| 5498 | field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
| 5499 | /* Read the field, zero-extended to a u64 field_value */ |
| 5500 | if (!vmcs12_read_any(vcpu, field, &field_value)) { |
| 5501 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5502 | skip_emulated_instruction(vcpu); |
| 5503 | return 1; |
| 5504 | } |
| 5505 | /* |
| 5506 | * Now copy part of this value to register or memory, as requested. |
| 5507 | * Note that the number of bits actually copied is 32 or 64 depending |
| 5508 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 5509 | */ |
| 5510 | if (vmx_instruction_info & (1u << 10)) { |
| 5511 | kvm_register_write(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
| 5512 | field_value); |
| 5513 | } else { |
| 5514 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5515 | vmx_instruction_info, &gva)) |
| 5516 | return 1; |
| 5517 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 5518 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 5519 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 5520 | } |
| 5521 | |
| 5522 | nested_vmx_succeed(vcpu); |
| 5523 | skip_emulated_instruction(vcpu); |
| 5524 | return 1; |
| 5525 | } |
| 5526 | |
| 5527 | |
| 5528 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 5529 | { |
| 5530 | unsigned long field; |
| 5531 | gva_t gva; |
| 5532 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5533 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5534 | char *p; |
| 5535 | short offset; |
| 5536 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 5537 | * mode, and eventually we need to write that into a field of several |
| 5538 | * possible lengths. The code below first zero-extends the value to 64 |
| 5539 | * bit (field_value), and then copies only the approriate number of |
| 5540 | * bits into the vmcs12 field. |
| 5541 | */ |
| 5542 | u64 field_value = 0; |
| 5543 | struct x86_exception e; |
| 5544 | |
| 5545 | if (!nested_vmx_check_permission(vcpu) || |
| 5546 | !nested_vmx_check_vmcs12(vcpu)) |
| 5547 | return 1; |
| 5548 | |
| 5549 | if (vmx_instruction_info & (1u << 10)) |
| 5550 | field_value = kvm_register_read(vcpu, |
| 5551 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 5552 | else { |
| 5553 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5554 | vmx_instruction_info, &gva)) |
| 5555 | return 1; |
| 5556 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
| 5557 | &field_value, (is_long_mode(vcpu) ? 8 : 4), &e)) { |
| 5558 | kvm_inject_page_fault(vcpu, &e); |
| 5559 | return 1; |
| 5560 | } |
| 5561 | } |
| 5562 | |
| 5563 | |
| 5564 | field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
| 5565 | if (vmcs_field_readonly(field)) { |
| 5566 | nested_vmx_failValid(vcpu, |
| 5567 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
| 5568 | skip_emulated_instruction(vcpu); |
| 5569 | return 1; |
| 5570 | } |
| 5571 | |
| 5572 | offset = vmcs_field_to_offset(field); |
| 5573 | if (offset < 0) { |
| 5574 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5575 | skip_emulated_instruction(vcpu); |
| 5576 | return 1; |
| 5577 | } |
| 5578 | p = ((char *) get_vmcs12(vcpu)) + offset; |
| 5579 | |
| 5580 | switch (vmcs_field_type(field)) { |
| 5581 | case VMCS_FIELD_TYPE_U16: |
| 5582 | *(u16 *)p = field_value; |
| 5583 | break; |
| 5584 | case VMCS_FIELD_TYPE_U32: |
| 5585 | *(u32 *)p = field_value; |
| 5586 | break; |
| 5587 | case VMCS_FIELD_TYPE_U64: |
| 5588 | *(u64 *)p = field_value; |
| 5589 | break; |
| 5590 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 5591 | *(natural_width *)p = field_value; |
| 5592 | break; |
| 5593 | default: |
| 5594 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 5595 | skip_emulated_instruction(vcpu); |
| 5596 | return 1; |
| 5597 | } |
| 5598 | |
| 5599 | nested_vmx_succeed(vcpu); |
| 5600 | skip_emulated_instruction(vcpu); |
| 5601 | return 1; |
| 5602 | } |
| 5603 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 5604 | /* Emulate the VMPTRLD instruction */ |
| 5605 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 5606 | { |
| 5607 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5608 | gva_t gva; |
| 5609 | gpa_t vmptr; |
| 5610 | struct x86_exception e; |
| 5611 | |
| 5612 | if (!nested_vmx_check_permission(vcpu)) |
| 5613 | return 1; |
| 5614 | |
| 5615 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 5616 | vmcs_read32(VMX_INSTRUCTION_INFO), &gva)) |
| 5617 | return 1; |
| 5618 | |
| 5619 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 5620 | sizeof(vmptr), &e)) { |
| 5621 | kvm_inject_page_fault(vcpu, &e); |
| 5622 | return 1; |
| 5623 | } |
| 5624 | |
| 5625 | if (!IS_ALIGNED(vmptr, PAGE_SIZE)) { |
| 5626 | nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 5627 | skip_emulated_instruction(vcpu); |
| 5628 | return 1; |
| 5629 | } |
| 5630 | |
| 5631 | if (vmx->nested.current_vmptr != vmptr) { |
| 5632 | struct vmcs12 *new_vmcs12; |
| 5633 | struct page *page; |
| 5634 | page = nested_get_page(vcpu, vmptr); |
| 5635 | if (page == NULL) { |
| 5636 | nested_vmx_failInvalid(vcpu); |
| 5637 | skip_emulated_instruction(vcpu); |
| 5638 | return 1; |
| 5639 | } |
| 5640 | new_vmcs12 = kmap(page); |
| 5641 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 5642 | kunmap(page); |
| 5643 | nested_release_page_clean(page); |
| 5644 | nested_vmx_failValid(vcpu, |
| 5645 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
| 5646 | skip_emulated_instruction(vcpu); |
| 5647 | return 1; |
| 5648 | } |
| 5649 | if (vmx->nested.current_vmptr != -1ull) { |
| 5650 | kunmap(vmx->nested.current_vmcs12_page); |
| 5651 | nested_release_page(vmx->nested.current_vmcs12_page); |
| 5652 | } |
| 5653 | |
| 5654 | vmx->nested.current_vmptr = vmptr; |
| 5655 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 5656 | vmx->nested.current_vmcs12_page = page; |
| 5657 | } |
| 5658 | |
| 5659 | nested_vmx_succeed(vcpu); |
| 5660 | skip_emulated_instruction(vcpu); |
| 5661 | return 1; |
| 5662 | } |
| 5663 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 5664 | /* Emulate the VMPTRST instruction */ |
| 5665 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 5666 | { |
| 5667 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5668 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 5669 | gva_t vmcs_gva; |
| 5670 | struct x86_exception e; |
| 5671 | |
| 5672 | if (!nested_vmx_check_permission(vcpu)) |
| 5673 | return 1; |
| 5674 | |
| 5675 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 5676 | vmx_instruction_info, &vmcs_gva)) |
| 5677 | return 1; |
| 5678 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 5679 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 5680 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 5681 | sizeof(u64), &e)) { |
| 5682 | kvm_inject_page_fault(vcpu, &e); |
| 5683 | return 1; |
| 5684 | } |
| 5685 | nested_vmx_succeed(vcpu); |
| 5686 | skip_emulated_instruction(vcpu); |
| 5687 | return 1; |
| 5688 | } |
| 5689 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 5690 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5691 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 5692 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 5693 | * to be done to userspace and return 0. |
| 5694 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 5695 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5696 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 5697 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5698 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5699 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5700 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5701 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 5702 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 5703 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 5704 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 5705 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 5706 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 5707 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5708 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5709 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 5710 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5711 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 5712 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5713 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 5714 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 5715 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5716 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 5717 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 5718 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 5719 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 5720 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5721 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 5722 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5723 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5724 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5725 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5726 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5727 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 5728 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5729 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 5730 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_invalid_op, |
| 5731 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_invalid_op, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5732 | }; |
| 5733 | |
| 5734 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 5735 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5736 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5737 | /* |
| 5738 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 5739 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 5740 | * disinterest in the current event (read or write a specific MSR) by using an |
| 5741 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 5742 | */ |
| 5743 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 5744 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 5745 | { |
| 5746 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 5747 | gpa_t bitmap; |
| 5748 | |
| 5749 | if (!nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_USE_MSR_BITMAPS)) |
| 5750 | return 1; |
| 5751 | |
| 5752 | /* |
| 5753 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 5754 | * for the four combinations of read/write and low/high MSR numbers. |
| 5755 | * First we need to figure out which of the four to use: |
| 5756 | */ |
| 5757 | bitmap = vmcs12->msr_bitmap; |
| 5758 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 5759 | bitmap += 2048; |
| 5760 | if (msr_index >= 0xc0000000) { |
| 5761 | msr_index -= 0xc0000000; |
| 5762 | bitmap += 1024; |
| 5763 | } |
| 5764 | |
| 5765 | /* Then read the msr_index'th bit from this bitmap: */ |
| 5766 | if (msr_index < 1024*8) { |
| 5767 | unsigned char b; |
| 5768 | kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1); |
| 5769 | return 1 & (b >> (msr_index & 7)); |
| 5770 | } else |
| 5771 | return 1; /* let L1 handle the wrong parameter */ |
| 5772 | } |
| 5773 | |
| 5774 | /* |
| 5775 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 5776 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 5777 | * intercept (via guest_host_mask etc.) the current event. |
| 5778 | */ |
| 5779 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 5780 | struct vmcs12 *vmcs12) |
| 5781 | { |
| 5782 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5783 | int cr = exit_qualification & 15; |
| 5784 | int reg = (exit_qualification >> 8) & 15; |
| 5785 | unsigned long val = kvm_register_read(vcpu, reg); |
| 5786 | |
| 5787 | switch ((exit_qualification >> 4) & 3) { |
| 5788 | case 0: /* mov to cr */ |
| 5789 | switch (cr) { |
| 5790 | case 0: |
| 5791 | if (vmcs12->cr0_guest_host_mask & |
| 5792 | (val ^ vmcs12->cr0_read_shadow)) |
| 5793 | return 1; |
| 5794 | break; |
| 5795 | case 3: |
| 5796 | if ((vmcs12->cr3_target_count >= 1 && |
| 5797 | vmcs12->cr3_target_value0 == val) || |
| 5798 | (vmcs12->cr3_target_count >= 2 && |
| 5799 | vmcs12->cr3_target_value1 == val) || |
| 5800 | (vmcs12->cr3_target_count >= 3 && |
| 5801 | vmcs12->cr3_target_value2 == val) || |
| 5802 | (vmcs12->cr3_target_count >= 4 && |
| 5803 | vmcs12->cr3_target_value3 == val)) |
| 5804 | return 0; |
| 5805 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
| 5806 | return 1; |
| 5807 | break; |
| 5808 | case 4: |
| 5809 | if (vmcs12->cr4_guest_host_mask & |
| 5810 | (vmcs12->cr4_read_shadow ^ val)) |
| 5811 | return 1; |
| 5812 | break; |
| 5813 | case 8: |
| 5814 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
| 5815 | return 1; |
| 5816 | break; |
| 5817 | } |
| 5818 | break; |
| 5819 | case 2: /* clts */ |
| 5820 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 5821 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
| 5822 | return 1; |
| 5823 | break; |
| 5824 | case 1: /* mov from cr */ |
| 5825 | switch (cr) { |
| 5826 | case 3: |
| 5827 | if (vmcs12->cpu_based_vm_exec_control & |
| 5828 | CPU_BASED_CR3_STORE_EXITING) |
| 5829 | return 1; |
| 5830 | break; |
| 5831 | case 8: |
| 5832 | if (vmcs12->cpu_based_vm_exec_control & |
| 5833 | CPU_BASED_CR8_STORE_EXITING) |
| 5834 | return 1; |
| 5835 | break; |
| 5836 | } |
| 5837 | break; |
| 5838 | case 3: /* lmsw */ |
| 5839 | /* |
| 5840 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 5841 | * cr0. Other attempted changes are ignored, with no exit. |
| 5842 | */ |
| 5843 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 5844 | (val ^ vmcs12->cr0_read_shadow)) |
| 5845 | return 1; |
| 5846 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 5847 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 5848 | (val & 0x1)) |
| 5849 | return 1; |
| 5850 | break; |
| 5851 | } |
| 5852 | return 0; |
| 5853 | } |
| 5854 | |
| 5855 | /* |
| 5856 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 5857 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 5858 | * when in is_guest_mode (L2). |
| 5859 | */ |
| 5860 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 5861 | { |
| 5862 | u32 exit_reason = vmcs_read32(VM_EXIT_REASON); |
| 5863 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 5864 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5865 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5866 | |
| 5867 | if (vmx->nested.nested_run_pending) |
| 5868 | return 0; |
| 5869 | |
| 5870 | if (unlikely(vmx->fail)) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 5871 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 5872 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5873 | return 1; |
| 5874 | } |
| 5875 | |
| 5876 | switch (exit_reason) { |
| 5877 | case EXIT_REASON_EXCEPTION_NMI: |
| 5878 | if (!is_exception(intr_info)) |
| 5879 | return 0; |
| 5880 | else if (is_page_fault(intr_info)) |
| 5881 | return enable_ept; |
| 5882 | return vmcs12->exception_bitmap & |
| 5883 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 5884 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
| 5885 | return 0; |
| 5886 | case EXIT_REASON_TRIPLE_FAULT: |
| 5887 | return 1; |
| 5888 | case EXIT_REASON_PENDING_INTERRUPT: |
| 5889 | case EXIT_REASON_NMI_WINDOW: |
| 5890 | /* |
| 5891 | * prepare_vmcs02() set the CPU_BASED_VIRTUAL_INTR_PENDING bit |
| 5892 | * (aka Interrupt Window Exiting) only when L1 turned it on, |
| 5893 | * so if we got a PENDING_INTERRUPT exit, this must be for L1. |
| 5894 | * Same for NMI Window Exiting. |
| 5895 | */ |
| 5896 | return 1; |
| 5897 | case EXIT_REASON_TASK_SWITCH: |
| 5898 | return 1; |
| 5899 | case EXIT_REASON_CPUID: |
| 5900 | return 1; |
| 5901 | case EXIT_REASON_HLT: |
| 5902 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 5903 | case EXIT_REASON_INVD: |
| 5904 | return 1; |
| 5905 | case EXIT_REASON_INVLPG: |
| 5906 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 5907 | case EXIT_REASON_RDPMC: |
| 5908 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
| 5909 | case EXIT_REASON_RDTSC: |
| 5910 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 5911 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 5912 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 5913 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 5914 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 5915 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
| 5916 | /* |
| 5917 | * VMX instructions trap unconditionally. This allows L1 to |
| 5918 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 5919 | */ |
| 5920 | return 1; |
| 5921 | case EXIT_REASON_CR_ACCESS: |
| 5922 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 5923 | case EXIT_REASON_DR_ACCESS: |
| 5924 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 5925 | case EXIT_REASON_IO_INSTRUCTION: |
| 5926 | /* TODO: support IO bitmaps */ |
| 5927 | return 1; |
| 5928 | case EXIT_REASON_MSR_READ: |
| 5929 | case EXIT_REASON_MSR_WRITE: |
| 5930 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 5931 | case EXIT_REASON_INVALID_STATE: |
| 5932 | return 1; |
| 5933 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 5934 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
| 5935 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 5936 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 5937 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 5938 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 5939 | nested_cpu_has2(vmcs12, |
| 5940 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 5941 | case EXIT_REASON_MCE_DURING_VMENTRY: |
| 5942 | return 0; |
| 5943 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
| 5944 | return 1; |
| 5945 | case EXIT_REASON_APIC_ACCESS: |
| 5946 | return nested_cpu_has2(vmcs12, |
| 5947 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 5948 | case EXIT_REASON_EPT_VIOLATION: |
| 5949 | case EXIT_REASON_EPT_MISCONFIG: |
| 5950 | return 0; |
| 5951 | case EXIT_REASON_WBINVD: |
| 5952 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 5953 | case EXIT_REASON_XSETBV: |
| 5954 | return 1; |
| 5955 | default: |
| 5956 | return 1; |
| 5957 | } |
| 5958 | } |
| 5959 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 5960 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 5961 | { |
| 5962 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 5963 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 5964 | } |
| 5965 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5966 | /* |
| 5967 | * The guest has exited. See if we can fix it or if we need userspace |
| 5968 | * assistance. |
| 5969 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5970 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5971 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5972 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5973 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5974 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 5975 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5976 | /* If guest state is invalid, start emulating */ |
| 5977 | if (vmx->emulation_required && emulate_invalid_guest_state) |
| 5978 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5979 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 5980 | /* |
| 5981 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 5982 | * we did not inject a still-pending event to L1 now because of |
| 5983 | * nested_run_pending, we need to re-enable this bit. |
| 5984 | */ |
| 5985 | if (vmx->nested.nested_run_pending) |
| 5986 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5987 | |
Nadav Har'El | 509c75e | 2011-06-02 11:54:52 +0300 | [diff] [blame] | 5988 | if (!is_guest_mode(vcpu) && (exit_reason == EXIT_REASON_VMLAUNCH || |
| 5989 | exit_reason == EXIT_REASON_VMRESUME)) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 5990 | vmx->nested.nested_run_pending = 1; |
| 5991 | else |
| 5992 | vmx->nested.nested_run_pending = 0; |
| 5993 | |
| 5994 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
| 5995 | nested_vmx_vmexit(vcpu); |
| 5996 | return 1; |
| 5997 | } |
| 5998 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 5999 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
| 6000 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 6001 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 6002 | = exit_reason; |
| 6003 | return 0; |
| 6004 | } |
| 6005 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 6006 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6007 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 6008 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 6009 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 6010 | return 0; |
| 6011 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6012 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 6013 | /* |
| 6014 | * Note: |
| 6015 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 6016 | * delivery event since it indicates guest is accessing MMIO. |
| 6017 | * The vm-exit can be triggered again after return to guest that |
| 6018 | * will cause infinite loop. |
| 6019 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 6020 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6021 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 6022 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 6023 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 6024 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6025 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
| 6026 | vcpu->run->internal.ndata = 2; |
| 6027 | vcpu->run->internal.data[0] = vectoring_info; |
| 6028 | vcpu->run->internal.data[1] = exit_reason; |
| 6029 | return 0; |
| 6030 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6031 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 6032 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 6033 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
| 6034 | get_vmcs12(vcpu), vcpu)))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 6035 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6036 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6037 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 6038 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6039 | /* |
| 6040 | * This CPU don't support us in finding the end of an |
| 6041 | * NMI-blocked window if the guest runs with IRQs |
| 6042 | * disabled. So we pull the trigger after 1 s of |
| 6043 | * futile waiting, but inform the user about this. |
| 6044 | */ |
| 6045 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 6046 | "state on VCPU %d after 1 s timeout\n", |
| 6047 | __func__, vcpu->vcpu_id); |
| 6048 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6049 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6050 | } |
| 6051 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6052 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 6053 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6054 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6055 | else { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6056 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 6057 | vcpu->run->hw.hardware_exit_reason = exit_reason; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6058 | } |
| 6059 | return 0; |
| 6060 | } |
| 6061 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6062 | 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] | 6063 | { |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6064 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6065 | vmcs_write32(TPR_THRESHOLD, 0); |
| 6066 | return; |
| 6067 | } |
| 6068 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6069 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6070 | } |
| 6071 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6072 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6073 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 6074 | u32 exit_intr_info; |
| 6075 | |
| 6076 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 6077 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 6078 | return; |
| 6079 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 6080 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 6081 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 6082 | |
| 6083 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 6084 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 6085 | kvm_machine_check(); |
| 6086 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 6087 | /* We need to handle NMIs before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 6088 | 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] | 6089 | (exit_intr_info & INTR_INFO_VALID_MASK)) { |
| 6090 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 6091 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 6092 | kvm_after_handle_nmi(&vmx->vcpu); |
| 6093 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6094 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 6095 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6096 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 6097 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 6098 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6099 | bool unblock_nmi; |
| 6100 | u8 vector; |
| 6101 | bool idtv_info_valid; |
| 6102 | |
| 6103 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 6104 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6105 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 6106 | if (vmx->nmi_known_unmasked) |
| 6107 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 6108 | /* |
| 6109 | * Can't use vmx->exit_intr_info since we're not sure what |
| 6110 | * the exit reason is. |
| 6111 | */ |
| 6112 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6113 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 6114 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 6115 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 6116 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6117 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 6118 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 6119 | * SDM 3: 23.2.2 (September 2008) |
| 6120 | * Bit 12 is undefined in any of the following cases: |
| 6121 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 6122 | * information field. |
| 6123 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6124 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 6125 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 6126 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6127 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 6128 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 6129 | else |
| 6130 | vmx->nmi_known_unmasked = |
| 6131 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 6132 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 6133 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 6134 | vmx->vnmi_blocked_time += |
| 6135 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6136 | } |
| 6137 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6138 | static void __vmx_complete_interrupts(struct vcpu_vmx *vmx, |
| 6139 | u32 idt_vectoring_info, |
| 6140 | int instr_len_field, |
| 6141 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6142 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6143 | u8 vector; |
| 6144 | int type; |
| 6145 | bool idtv_info_valid; |
| 6146 | |
| 6147 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 6148 | |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6149 | vmx->vcpu.arch.nmi_injected = false; |
| 6150 | kvm_clear_exception_queue(&vmx->vcpu); |
| 6151 | kvm_clear_interrupt_queue(&vmx->vcpu); |
| 6152 | |
| 6153 | if (!idtv_info_valid) |
| 6154 | return; |
| 6155 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6156 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 6157 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 6158 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 6159 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6160 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6161 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6162 | case INTR_TYPE_NMI_INTR: |
| 6163 | vmx->vcpu.arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 6164 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 6165 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6166 | * Clear bit "block by NMI" before VM entry if a NMI |
| 6167 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 6168 | */ |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 6169 | vmx_set_nmi_mask(&vmx->vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6170 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6171 | case INTR_TYPE_SOFT_EXCEPTION: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6172 | vmx->vcpu.arch.event_exit_inst_len = |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6173 | vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6174 | /* fall through */ |
| 6175 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 6176 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6177 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6178 | kvm_queue_exception_e(&vmx->vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 6179 | } else |
| 6180 | kvm_queue_exception(&vmx->vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6181 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6182 | case INTR_TYPE_SOFT_INTR: |
| 6183 | vmx->vcpu.arch.event_exit_inst_len = |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6184 | vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6185 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6186 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6187 | kvm_queue_interrupt(&vmx->vcpu, vector, |
| 6188 | type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 6189 | break; |
| 6190 | default: |
| 6191 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 6192 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6193 | } |
| 6194 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6195 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 6196 | { |
Nadav Har'El | 66c78ae | 2011-05-25 23:14:07 +0300 | [diff] [blame] | 6197 | if (is_guest_mode(&vmx->vcpu)) |
| 6198 | return; |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 6199 | __vmx_complete_interrupts(vmx, vmx->idt_vectoring_info, |
| 6200 | VM_EXIT_INSTRUCTION_LEN, |
| 6201 | IDT_VECTORING_ERROR_CODE); |
| 6202 | } |
| 6203 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 6204 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 6205 | { |
Nadav Har'El | 66c78ae | 2011-05-25 23:14:07 +0300 | [diff] [blame] | 6206 | if (is_guest_mode(vcpu)) |
| 6207 | return; |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 6208 | __vmx_complete_interrupts(to_vmx(vcpu), |
| 6209 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 6210 | VM_ENTRY_INSTRUCTION_LEN, |
| 6211 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 6212 | |
| 6213 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 6214 | } |
| 6215 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 6216 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 6217 | { |
| 6218 | int i, nr_msrs; |
| 6219 | struct perf_guest_switch_msr *msrs; |
| 6220 | |
| 6221 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 6222 | |
| 6223 | if (!msrs) |
| 6224 | return; |
| 6225 | |
| 6226 | for (i = 0; i < nr_msrs; i++) |
| 6227 | if (msrs[i].host == msrs[i].guest) |
| 6228 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 6229 | else |
| 6230 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 6231 | msrs[i].host); |
| 6232 | } |
| 6233 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 6234 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6235 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 6236 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 6237 | unsigned long debugctlmsr; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 6238 | |
Nadav Har'El | 66c78ae | 2011-05-25 23:14:07 +0300 | [diff] [blame] | 6239 | if (is_guest_mode(vcpu) && !vmx->nested.nested_run_pending) { |
| 6240 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 6241 | if (vmcs12->idt_vectoring_info_field & |
| 6242 | VECTORING_INFO_VALID_MASK) { |
| 6243 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 6244 | vmcs12->idt_vectoring_info_field); |
| 6245 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 6246 | vmcs12->vm_exit_instruction_len); |
| 6247 | if (vmcs12->idt_vectoring_info_field & |
| 6248 | VECTORING_INFO_DELIVER_CODE_MASK) |
| 6249 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 6250 | vmcs12->idt_vectoring_error_code); |
| 6251 | } |
| 6252 | } |
| 6253 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 6254 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 6255 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 6256 | vmx->entry_time = ktime_get(); |
| 6257 | |
| 6258 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 6259 | start emulation until we arrive back to a valid state */ |
| 6260 | if (vmx->emulation_required && emulate_invalid_guest_state) |
| 6261 | return; |
| 6262 | |
| 6263 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 6264 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 6265 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 6266 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 6267 | |
| 6268 | /* When single-stepping over STI and MOV SS, we must clear the |
| 6269 | * corresponding interruptibility bits in the guest state. Otherwise |
| 6270 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 6271 | * exceptions being set, but that's not correct for the guest debugging |
| 6272 | * case. */ |
| 6273 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 6274 | vmx_set_interrupt_shadow(vcpu, 0); |
| 6275 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 6276 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 6277 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 6278 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6279 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 6280 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6281 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6282 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 6283 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 6284 | "push %%" _ASM_CX " \n\t" |
| 6285 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 6286 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6287 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 6288 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 6289 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 6290 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6291 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 6292 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 6293 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 6294 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6295 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 6296 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6297 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6298 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6299 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6300 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 6301 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 6302 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 6303 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 6304 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 6305 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 6306 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6307 | "mov %c[r8](%0), %%r8 \n\t" |
| 6308 | "mov %c[r9](%0), %%r9 \n\t" |
| 6309 | "mov %c[r10](%0), %%r10 \n\t" |
| 6310 | "mov %c[r11](%0), %%r11 \n\t" |
| 6311 | "mov %c[r12](%0), %%r12 \n\t" |
| 6312 | "mov %c[r13](%0), %%r13 \n\t" |
| 6313 | "mov %c[r14](%0), %%r14 \n\t" |
| 6314 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6315 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6316 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 6317 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6318 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 6319 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 6320 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 6321 | "jmp 2f \n\t" |
| 6322 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 6323 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6324 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6325 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 6326 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6327 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 6328 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 6329 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 6330 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 6331 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 6332 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 6333 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 6334 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6335 | "mov %%r8, %c[r8](%0) \n\t" |
| 6336 | "mov %%r9, %c[r9](%0) \n\t" |
| 6337 | "mov %%r10, %c[r10](%0) \n\t" |
| 6338 | "mov %%r11, %c[r11](%0) \n\t" |
| 6339 | "mov %%r12, %c[r12](%0) \n\t" |
| 6340 | "mov %%r13, %c[r13](%0) \n\t" |
| 6341 | "mov %%r14, %c[r14](%0) \n\t" |
| 6342 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6343 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6344 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 6345 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 6346 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6347 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6348 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 6349 | ".pushsection .rodata \n\t" |
| 6350 | ".global vmx_return \n\t" |
| 6351 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 6352 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6353 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6354 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 6355 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 6356 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6357 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 6358 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 6359 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 6360 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 6361 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 6362 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 6363 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 6364 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6365 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 6366 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 6367 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 6368 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 6369 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 6370 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 6371 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 6372 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6373 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 6374 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 6375 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 6376 | : "cc", "memory" |
| 6377 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6378 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 6379 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 6380 | #else |
| 6381 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 6382 | #endif |
| 6383 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6384 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 6385 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 6386 | if (debugctlmsr) |
| 6387 | update_debugctlmsr(debugctlmsr); |
| 6388 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 6389 | #ifndef CONFIG_X86_64 |
| 6390 | /* |
| 6391 | * The sysexit path does not restore ds/es, so we must set them to |
| 6392 | * a reasonable value ourselves. |
| 6393 | * |
| 6394 | * We can't defer this to vmx_load_host_state() since that function |
| 6395 | * may be executed in interrupt context, which saves and restore segments |
| 6396 | * around it, nullifying its effect. |
| 6397 | */ |
| 6398 | loadsegment(ds, __USER_DS); |
| 6399 | loadsegment(es, __USER_DS); |
| 6400 | #endif |
| 6401 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 6402 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 6403 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 6404 | | (1 << VCPU_EXREG_CPL) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 6405 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 6406 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 6407 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6408 | vcpu->arch.regs_dirty = 0; |
| 6409 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 6410 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 6411 | |
Nadav Har'El | 66c78ae | 2011-05-25 23:14:07 +0300 | [diff] [blame] | 6412 | if (is_guest_mode(vcpu)) { |
| 6413 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 6414 | vmcs12->idt_vectoring_info_field = vmx->idt_vectoring_info; |
| 6415 | if (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK) { |
| 6416 | vmcs12->idt_vectoring_error_code = |
| 6417 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 6418 | vmcs12->vm_exit_instruction_len = |
| 6419 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 6420 | } |
| 6421 | } |
| 6422 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6423 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 6424 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6425 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Jan Kiszka | 1e2b1dd | 2011-09-12 10:52:24 +0200 | [diff] [blame] | 6426 | trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 6427 | |
| 6428 | vmx_complete_atomic_exit(vmx); |
| 6429 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 6430 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6431 | } |
| 6432 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6433 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 6434 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6435 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6436 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 6437 | free_vpid(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6438 | free_nested(vmx); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6439 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6440 | kfree(vmx->guest_msrs); |
| 6441 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 6442 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6443 | } |
| 6444 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6445 | 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] | 6446 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6447 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 6448 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 6449 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6450 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 6451 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6452 | return ERR_PTR(-ENOMEM); |
| 6453 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 6454 | allocate_vpid(vmx); |
| 6455 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6456 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 6457 | if (err) |
| 6458 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6459 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 6460 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 6461 | err = -ENOMEM; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6462 | if (!vmx->guest_msrs) { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6463 | goto uninit_vcpu; |
| 6464 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6465 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6466 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 6467 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
| 6468 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6469 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 6470 | if (!vmm_exclusive) |
| 6471 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 6472 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 6473 | if (!vmm_exclusive) |
| 6474 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 6475 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 6476 | cpu = get_cpu(); |
| 6477 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 6478 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 6479 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6480 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 6481 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6482 | if (err) |
| 6483 | goto free_vmcs; |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 6484 | if (vm_need_virtualize_apic_accesses(kvm)) |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 6485 | err = alloc_apic_access_page(kvm); |
| 6486 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 6487 | goto free_vmcs; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6488 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 6489 | if (enable_ept) { |
| 6490 | if (!kvm->arch.ept_identity_map_addr) |
| 6491 | kvm->arch.ept_identity_map_addr = |
| 6492 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 6493 | err = -ENOMEM; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 6494 | if (alloc_identity_pagetable(kvm) != 0) |
| 6495 | goto free_vmcs; |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 6496 | if (!init_rmode_identity_map(kvm)) |
| 6497 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 6498 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 6499 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 6500 | vmx->nested.current_vmptr = -1ull; |
| 6501 | vmx->nested.current_vmcs12 = NULL; |
| 6502 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6503 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 6504 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6505 | free_vmcs: |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 6506 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6507 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6508 | kfree(vmx->guest_msrs); |
| 6509 | uninit_vcpu: |
| 6510 | kvm_vcpu_uninit(&vmx->vcpu); |
| 6511 | free_vcpu: |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 6512 | free_vpid(vmx); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 6513 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 6514 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6515 | } |
| 6516 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 6517 | static void __init vmx_check_processor_compat(void *rtn) |
| 6518 | { |
| 6519 | struct vmcs_config vmcs_conf; |
| 6520 | |
| 6521 | *(int *)rtn = 0; |
| 6522 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 6523 | *(int *)rtn = -EIO; |
| 6524 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 6525 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 6526 | smp_processor_id()); |
| 6527 | *(int *)rtn = -EIO; |
| 6528 | } |
| 6529 | } |
| 6530 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 6531 | static int get_ept_level(void) |
| 6532 | { |
| 6533 | return VMX_EPT_DEFAULT_GAW + 1; |
| 6534 | } |
| 6535 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6536 | 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] | 6537 | { |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6538 | u64 ret; |
| 6539 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6540 | /* For VT-d and EPT combination |
| 6541 | * 1. MMIO: always map as UC |
| 6542 | * 2. EPT with VT-d: |
| 6543 | * a. VT-d without snooping control feature: can't guarantee the |
| 6544 | * result, try to trust guest. |
| 6545 | * b. VT-d with snooping control feature: snooping control feature of |
| 6546 | * VT-d engine can guarantee the cache correctness. Just set it |
| 6547 | * 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] | 6548 | * 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] | 6549 | * consistent with host MTRR |
| 6550 | */ |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6551 | if (is_mmio) |
| 6552 | ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT; |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6553 | else if (vcpu->kvm->arch.iommu_domain && |
| 6554 | !(vcpu->kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)) |
| 6555 | ret = kvm_get_guest_memory_type(vcpu, gfn) << |
| 6556 | VMX_EPT_MT_EPTE_SHIFT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6557 | else |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 6558 | ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT) |
Sheng Yang | a19a6d1 | 2010-02-09 16:41:53 +0800 | [diff] [blame] | 6559 | | VMX_EPT_IPAT_BIT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 6560 | |
| 6561 | return ret; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 6562 | } |
| 6563 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 6564 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 6565 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 6566 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 6567 | return PT_DIRECTORY_LEVEL; |
| 6568 | else |
| 6569 | /* For shadow and EPT supported 1GB page */ |
| 6570 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 6571 | } |
| 6572 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 6573 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 6574 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 6575 | struct kvm_cpuid_entry2 *best; |
| 6576 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6577 | u32 exec_control; |
| 6578 | |
| 6579 | vmx->rdtscp_enabled = false; |
| 6580 | if (vmx_rdtscp_supported()) { |
| 6581 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 6582 | if (exec_control & SECONDARY_EXEC_RDTSCP) { |
| 6583 | best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
| 6584 | if (best && (best->edx & bit(X86_FEATURE_RDTSCP))) |
| 6585 | vmx->rdtscp_enabled = true; |
| 6586 | else { |
| 6587 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 6588 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 6589 | exec_control); |
| 6590 | } |
| 6591 | } |
| 6592 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6593 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6594 | /* Exposing INVPCID only when PCID is exposed */ |
| 6595 | best = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 6596 | if (vmx_invpcid_supported() && |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 6597 | best && (best->ebx & bit(X86_FEATURE_INVPCID)) && |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6598 | guest_cpuid_has_pcid(vcpu)) { |
Takashi Iwai | 29282fd | 2012-11-09 15:20:17 +0100 | [diff] [blame] | 6599 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6600 | exec_control |= SECONDARY_EXEC_ENABLE_INVPCID; |
| 6601 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 6602 | exec_control); |
| 6603 | } else { |
Takashi Iwai | 29282fd | 2012-11-09 15:20:17 +0100 | [diff] [blame] | 6604 | if (cpu_has_secondary_exec_ctrls()) { |
| 6605 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 6606 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
| 6607 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 6608 | exec_control); |
| 6609 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6610 | if (best) |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 6611 | best->ebx &= ~bit(X86_FEATURE_INVPCID); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 6612 | } |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 6613 | } |
| 6614 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 6615 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 6616 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 6617 | if (func == 1 && nested) |
| 6618 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 6619 | } |
| 6620 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6621 | /* |
| 6622 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 6623 | * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it |
| 6624 | * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2 |
| 6625 | * guest in a way that will both be appropriate to L1's requests, and our |
| 6626 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 6627 | * function also has additional necessary side-effects, like setting various |
| 6628 | * vcpu->arch fields. |
| 6629 | */ |
| 6630 | static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 6631 | { |
| 6632 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6633 | u32 exec_control; |
| 6634 | |
| 6635 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 6636 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 6637 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 6638 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 6639 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 6640 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 6641 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 6642 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 6643 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 6644 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 6645 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 6646 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 6647 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 6648 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 6649 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 6650 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 6651 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 6652 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 6653 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 6654 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 6655 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 6656 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 6657 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 6658 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 6659 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 6660 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 6661 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 6662 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 6663 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 6664 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 6665 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 6666 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 6667 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 6668 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 6669 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 6670 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 6671 | |
| 6672 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 6673 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 6674 | vmcs12->vm_entry_intr_info_field); |
| 6675 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 6676 | vmcs12->vm_entry_exception_error_code); |
| 6677 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 6678 | vmcs12->vm_entry_instruction_len); |
| 6679 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 6680 | vmcs12->guest_interruptibility_info); |
| 6681 | vmcs_write32(GUEST_ACTIVITY_STATE, vmcs12->guest_activity_state); |
| 6682 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
| 6683 | vmcs_writel(GUEST_DR7, vmcs12->guest_dr7); |
| 6684 | vmcs_writel(GUEST_RFLAGS, vmcs12->guest_rflags); |
| 6685 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 6686 | vmcs12->guest_pending_dbg_exceptions); |
| 6687 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 6688 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 6689 | |
| 6690 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 6691 | |
| 6692 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, |
| 6693 | (vmcs_config.pin_based_exec_ctrl | |
| 6694 | vmcs12->pin_based_vm_exec_control)); |
| 6695 | |
| 6696 | /* |
| 6697 | * Whether page-faults are trapped is determined by a combination of |
| 6698 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 6699 | * If enable_ept, L0 doesn't care about page faults and we should |
| 6700 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 6701 | * care about (at least some) page faults, and because it is not easy |
| 6702 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 6703 | * to exit on each and every L2 page fault. This is done by setting |
| 6704 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 6705 | * Note that below we don't need special code to set EB.PF beyond the |
| 6706 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 6707 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 6708 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 6709 | * |
| 6710 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 6711 | * injected with more page faults than it asked for. This could have |
| 6712 | * caused problems, but in practice existing hypervisors don't care. |
| 6713 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 6714 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 6715 | */ |
| 6716 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 6717 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 6718 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 6719 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 6720 | |
| 6721 | if (cpu_has_secondary_exec_ctrls()) { |
| 6722 | u32 exec_control = vmx_secondary_exec_control(vmx); |
| 6723 | if (!vmx->rdtscp_enabled) |
| 6724 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 6725 | /* Take the following fields only from vmcs12 */ |
| 6726 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 6727 | if (nested_cpu_has(vmcs12, |
| 6728 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 6729 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 6730 | |
| 6731 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) { |
| 6732 | /* |
| 6733 | * Translate L1 physical address to host physical |
| 6734 | * address for vmcs02. Keep the page pinned, so this |
| 6735 | * physical address remains valid. We keep a reference |
| 6736 | * to it so we can release it later. |
| 6737 | */ |
| 6738 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 6739 | nested_release_page(vmx->nested.apic_access_page); |
| 6740 | vmx->nested.apic_access_page = |
| 6741 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
| 6742 | /* |
| 6743 | * If translation failed, no matter: This feature asks |
| 6744 | * to exit when accessing the given address, and if it |
| 6745 | * can never be accessed, this feature won't do |
| 6746 | * anything anyway. |
| 6747 | */ |
| 6748 | if (!vmx->nested.apic_access_page) |
| 6749 | exec_control &= |
| 6750 | ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 6751 | else |
| 6752 | vmcs_write64(APIC_ACCESS_ADDR, |
| 6753 | page_to_phys(vmx->nested.apic_access_page)); |
| 6754 | } |
| 6755 | |
| 6756 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 6757 | } |
| 6758 | |
| 6759 | |
| 6760 | /* |
| 6761 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 6762 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 6763 | * Other fields are different per CPU, and will be set later when |
| 6764 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 6765 | */ |
| 6766 | vmx_set_constant_host_state(); |
| 6767 | |
| 6768 | /* |
| 6769 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 6770 | * entry, but only if the current (host) sp changed from the value |
| 6771 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 6772 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 6773 | * here we just force the write to happen on entry. |
| 6774 | */ |
| 6775 | vmx->host_rsp = 0; |
| 6776 | |
| 6777 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 6778 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 6779 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 6780 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 6781 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
| 6782 | /* |
| 6783 | * Merging of IO and MSR bitmaps not currently supported. |
| 6784 | * Rather, exit every time. |
| 6785 | */ |
| 6786 | exec_control &= ~CPU_BASED_USE_MSR_BITMAPS; |
| 6787 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 6788 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 6789 | |
| 6790 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 6791 | |
| 6792 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 6793 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 6794 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 6795 | */ |
| 6796 | update_exception_bitmap(vcpu); |
| 6797 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 6798 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 6799 | |
| 6800 | /* Note: IA32_MODE, LOAD_IA32_EFER are modified by vmx_set_efer below */ |
| 6801 | vmcs_write32(VM_EXIT_CONTROLS, |
| 6802 | vmcs12->vm_exit_controls | vmcs_config.vmexit_ctrl); |
| 6803 | vmcs_write32(VM_ENTRY_CONTROLS, vmcs12->vm_entry_controls | |
| 6804 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 6805 | |
| 6806 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) |
| 6807 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
| 6808 | else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 6809 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
| 6810 | |
| 6811 | |
| 6812 | set_cr4_guest_host_mask(vmx); |
| 6813 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 6814 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 6815 | vmcs_write64(TSC_OFFSET, |
| 6816 | vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset); |
| 6817 | else |
| 6818 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6819 | |
| 6820 | if (enable_vpid) { |
| 6821 | /* |
| 6822 | * Trivially support vpid by letting L2s share their parent |
| 6823 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 6824 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 6825 | */ |
| 6826 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 6827 | vmx_flush_tlb(vcpu); |
| 6828 | } |
| 6829 | |
| 6830 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) |
| 6831 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
| 6832 | if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
| 6833 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 6834 | else |
| 6835 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 6836 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 6837 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 6838 | |
| 6839 | /* |
| 6840 | * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified |
| 6841 | * TS bit (for lazy fpu) and bits which we consider mandatory enabled. |
| 6842 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 6843 | * the specifications by L1; It's not enough to take |
| 6844 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 6845 | * have more bits than L1 expected. |
| 6846 | */ |
| 6847 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 6848 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 6849 | |
| 6850 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 6851 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 6852 | |
| 6853 | /* shadow page tables on either EPT or shadow page tables */ |
| 6854 | kvm_set_cr3(vcpu, vmcs12->guest_cr3); |
| 6855 | kvm_mmu_reset_context(vcpu); |
| 6856 | |
| 6857 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 6858 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
| 6859 | } |
| 6860 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6861 | /* |
| 6862 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 6863 | * for running an L2 nested guest. |
| 6864 | */ |
| 6865 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 6866 | { |
| 6867 | struct vmcs12 *vmcs12; |
| 6868 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6869 | int cpu; |
| 6870 | struct loaded_vmcs *vmcs02; |
| 6871 | |
| 6872 | if (!nested_vmx_check_permission(vcpu) || |
| 6873 | !nested_vmx_check_vmcs12(vcpu)) |
| 6874 | return 1; |
| 6875 | |
| 6876 | skip_emulated_instruction(vcpu); |
| 6877 | vmcs12 = get_vmcs12(vcpu); |
| 6878 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 6879 | /* |
| 6880 | * The nested entry process starts with enforcing various prerequisites |
| 6881 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 6882 | * they fail: As the SDM explains, some conditions should cause the |
| 6883 | * instruction to fail, while others will cause the instruction to seem |
| 6884 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 6885 | * To speed up the normal (success) code path, we should avoid checking |
| 6886 | * for misconfigurations which will anyway be caught by the processor |
| 6887 | * when using the merged vmcs02. |
| 6888 | */ |
| 6889 | if (vmcs12->launch_state == launch) { |
| 6890 | nested_vmx_failValid(vcpu, |
| 6891 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 6892 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
| 6893 | return 1; |
| 6894 | } |
| 6895 | |
| 6896 | if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) && |
| 6897 | !IS_ALIGNED(vmcs12->msr_bitmap, PAGE_SIZE)) { |
| 6898 | /*TODO: Also verify bits beyond physical address width are 0*/ |
| 6899 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6900 | return 1; |
| 6901 | } |
| 6902 | |
| 6903 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) && |
| 6904 | !IS_ALIGNED(vmcs12->apic_access_addr, PAGE_SIZE)) { |
| 6905 | /*TODO: Also verify bits beyond physical address width are 0*/ |
| 6906 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6907 | return 1; |
| 6908 | } |
| 6909 | |
| 6910 | if (vmcs12->vm_entry_msr_load_count > 0 || |
| 6911 | vmcs12->vm_exit_msr_load_count > 0 || |
| 6912 | vmcs12->vm_exit_msr_store_count > 0) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 6913 | pr_warn_ratelimited("%s: VMCS MSR_{LOAD,STORE} unsupported\n", |
| 6914 | __func__); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 6915 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6916 | return 1; |
| 6917 | } |
| 6918 | |
| 6919 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
| 6920 | nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high) || |
| 6921 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
| 6922 | nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) || |
| 6923 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
| 6924 | nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) || |
| 6925 | !vmx_control_verify(vmcs12->vm_exit_controls, |
| 6926 | nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high) || |
| 6927 | !vmx_control_verify(vmcs12->vm_entry_controls, |
| 6928 | nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high)) |
| 6929 | { |
| 6930 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 6931 | return 1; |
| 6932 | } |
| 6933 | |
| 6934 | if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 6935 | ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 6936 | nested_vmx_failValid(vcpu, |
| 6937 | VMXERR_ENTRY_INVALID_HOST_STATE_FIELD); |
| 6938 | return 1; |
| 6939 | } |
| 6940 | |
| 6941 | if (((vmcs12->guest_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 6942 | ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 6943 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 6944 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 6945 | return 1; |
| 6946 | } |
| 6947 | if (vmcs12->vmcs_link_pointer != -1ull) { |
| 6948 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 6949 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR); |
| 6950 | return 1; |
| 6951 | } |
| 6952 | |
| 6953 | /* |
| 6954 | * We're finally done with prerequisite checking, and can start with |
| 6955 | * the nested entry. |
| 6956 | */ |
| 6957 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6958 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 6959 | if (!vmcs02) |
| 6960 | return -ENOMEM; |
| 6961 | |
| 6962 | enter_guest_mode(vcpu); |
| 6963 | |
| 6964 | vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET); |
| 6965 | |
| 6966 | cpu = get_cpu(); |
| 6967 | vmx->loaded_vmcs = vmcs02; |
| 6968 | vmx_vcpu_put(vcpu); |
| 6969 | vmx_vcpu_load(vcpu, cpu); |
| 6970 | vcpu->cpu = cpu; |
| 6971 | put_cpu(); |
| 6972 | |
| 6973 | vmcs12->launch_state = 1; |
| 6974 | |
| 6975 | prepare_vmcs02(vcpu, vmcs12); |
| 6976 | |
| 6977 | /* |
| 6978 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 6979 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 6980 | * returned as far as L1 is concerned. It will only return (and set |
| 6981 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 6982 | */ |
| 6983 | return 1; |
| 6984 | } |
| 6985 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 6986 | /* |
| 6987 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 6988 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 6989 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 6990 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 6991 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 6992 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 6993 | * didn't trap the bit, because if L1 did, so would L0). |
| 6994 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 6995 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 6996 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 6997 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 6998 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 6999 | * changed these bits, and therefore they need to be updated, but L0 |
| 7000 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 7001 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 7002 | */ |
| 7003 | static inline unsigned long |
| 7004 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 7005 | { |
| 7006 | return |
| 7007 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 7008 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 7009 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 7010 | vcpu->arch.cr0_guest_owned_bits)); |
| 7011 | } |
| 7012 | |
| 7013 | static inline unsigned long |
| 7014 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 7015 | { |
| 7016 | return |
| 7017 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 7018 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 7019 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 7020 | vcpu->arch.cr4_guest_owned_bits)); |
| 7021 | } |
| 7022 | |
| 7023 | /* |
| 7024 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 7025 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 7026 | * and this function updates it to reflect the changes to the guest state while |
| 7027 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 7028 | * without going back to L1), and to reflect the exit reason. |
| 7029 | * Note that we do not have to copy here all VMCS fields, just those that |
| 7030 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 7031 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 7032 | * which already writes to vmcs12 directly. |
| 7033 | */ |
| 7034 | void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 7035 | { |
| 7036 | /* update guest state fields: */ |
| 7037 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 7038 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 7039 | |
| 7040 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 7041 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 7042 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 7043 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 7044 | |
| 7045 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 7046 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 7047 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 7048 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 7049 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 7050 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 7051 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 7052 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 7053 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 7054 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 7055 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 7056 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 7057 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 7058 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 7059 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 7060 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 7061 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 7062 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 7063 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 7064 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 7065 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 7066 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 7067 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 7068 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 7069 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 7070 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 7071 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 7072 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 7073 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 7074 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 7075 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 7076 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 7077 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 7078 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 7079 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 7080 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 7081 | |
| 7082 | vmcs12->guest_activity_state = vmcs_read32(GUEST_ACTIVITY_STATE); |
| 7083 | vmcs12->guest_interruptibility_info = |
| 7084 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 7085 | vmcs12->guest_pending_dbg_exceptions = |
| 7086 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
| 7087 | |
| 7088 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 7089 | * the relevant bit asks not to trap the change */ |
| 7090 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 7091 | if (vmcs12->vm_entry_controls & VM_EXIT_SAVE_IA32_PAT) |
| 7092 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
| 7093 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 7094 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 7095 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
| 7096 | |
| 7097 | /* update exit information fields: */ |
| 7098 | |
| 7099 | vmcs12->vm_exit_reason = vmcs_read32(VM_EXIT_REASON); |
| 7100 | vmcs12->exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7101 | |
| 7102 | vmcs12->vm_exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7103 | vmcs12->vm_exit_intr_error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
| 7104 | vmcs12->idt_vectoring_info_field = |
| 7105 | vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 7106 | vmcs12->idt_vectoring_error_code = |
| 7107 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 7108 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 7109 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7110 | |
| 7111 | /* clear vm-entry fields which are to be cleared on exit */ |
| 7112 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) |
| 7113 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
| 7114 | } |
| 7115 | |
| 7116 | /* |
| 7117 | * A part of what we need to when the nested L2 guest exits and we want to |
| 7118 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 7119 | * in vmcs12. |
| 7120 | * This function is to be called not only on normal nested exit, but also on |
| 7121 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 7122 | * Failures During or After Loading Guest State"). |
| 7123 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 7124 | */ |
| 7125 | void load_vmcs12_host_state(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 7126 | { |
| 7127 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 7128 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
| 7129 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 7130 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 7131 | else |
| 7132 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 7133 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 7134 | |
| 7135 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 7136 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
| 7137 | /* |
| 7138 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
| 7139 | * actually changed, because it depends on the current state of |
| 7140 | * fpu_active (which may have changed). |
| 7141 | * Note that vmx_set_cr0 refers to efer set above. |
| 7142 | */ |
| 7143 | kvm_set_cr0(vcpu, vmcs12->host_cr0); |
| 7144 | /* |
| 7145 | * If we did fpu_activate()/fpu_deactivate() during L2's run, we need |
| 7146 | * to apply the same changes to L1's vmcs. We just set cr0 correctly, |
| 7147 | * but we also need to update cr0_guest_host_mask and exception_bitmap. |
| 7148 | */ |
| 7149 | update_exception_bitmap(vcpu); |
| 7150 | vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0); |
| 7151 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 7152 | |
| 7153 | /* |
| 7154 | * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01 |
| 7155 | * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); |
| 7156 | */ |
| 7157 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 7158 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 7159 | |
| 7160 | /* shadow page tables on either EPT or shadow page tables */ |
| 7161 | kvm_set_cr3(vcpu, vmcs12->host_cr3); |
| 7162 | kvm_mmu_reset_context(vcpu); |
| 7163 | |
| 7164 | if (enable_vpid) { |
| 7165 | /* |
| 7166 | * Trivially support vpid by letting L2s share their parent |
| 7167 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 7168 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 7169 | */ |
| 7170 | vmx_flush_tlb(vcpu); |
| 7171 | } |
| 7172 | |
| 7173 | |
| 7174 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 7175 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 7176 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 7177 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 7178 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
| 7179 | vmcs_writel(GUEST_TR_BASE, vmcs12->host_tr_base); |
| 7180 | vmcs_writel(GUEST_GS_BASE, vmcs12->host_gs_base); |
| 7181 | vmcs_writel(GUEST_FS_BASE, vmcs12->host_fs_base); |
| 7182 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->host_es_selector); |
| 7183 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->host_cs_selector); |
| 7184 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->host_ss_selector); |
| 7185 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->host_ds_selector); |
| 7186 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->host_fs_selector); |
| 7187 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->host_gs_selector); |
| 7188 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->host_tr_selector); |
| 7189 | |
| 7190 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) |
| 7191 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
| 7192 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7193 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 7194 | vmcs12->host_ia32_perf_global_ctrl); |
| 7195 | } |
| 7196 | |
| 7197 | /* |
| 7198 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 7199 | * and modify vmcs12 to make it see what it would expect to see there if |
| 7200 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 7201 | */ |
| 7202 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu) |
| 7203 | { |
| 7204 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7205 | int cpu; |
| 7206 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 7207 | |
| 7208 | leave_guest_mode(vcpu); |
| 7209 | prepare_vmcs12(vcpu, vmcs12); |
| 7210 | |
| 7211 | cpu = get_cpu(); |
| 7212 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 7213 | vmx_vcpu_put(vcpu); |
| 7214 | vmx_vcpu_load(vcpu, cpu); |
| 7215 | vcpu->cpu = cpu; |
| 7216 | put_cpu(); |
| 7217 | |
| 7218 | /* if no vmcs02 cache requested, remove the one we used */ |
| 7219 | if (VMCS02_POOL_SIZE == 0) |
| 7220 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 7221 | |
| 7222 | load_vmcs12_host_state(vcpu, vmcs12); |
| 7223 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 7224 | /* Update TSC_OFFSET if TSC was changed while L2 ran */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 7225 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
| 7226 | |
| 7227 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 7228 | vmx->host_rsp = 0; |
| 7229 | |
| 7230 | /* Unpin physical memory we referred to in vmcs02 */ |
| 7231 | if (vmx->nested.apic_access_page) { |
| 7232 | nested_release_page(vmx->nested.apic_access_page); |
| 7233 | vmx->nested.apic_access_page = 0; |
| 7234 | } |
| 7235 | |
| 7236 | /* |
| 7237 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 7238 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 7239 | * success or failure flag accordingly. |
| 7240 | */ |
| 7241 | if (unlikely(vmx->fail)) { |
| 7242 | vmx->fail = 0; |
| 7243 | nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 7244 | } else |
| 7245 | nested_vmx_succeed(vcpu); |
| 7246 | } |
| 7247 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 7248 | /* |
| 7249 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 7250 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 7251 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 7252 | * It should only be called before L2 actually succeeded to run, and when |
| 7253 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 7254 | */ |
| 7255 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 7256 | struct vmcs12 *vmcs12, |
| 7257 | u32 reason, unsigned long qualification) |
| 7258 | { |
| 7259 | load_vmcs12_host_state(vcpu, vmcs12); |
| 7260 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 7261 | vmcs12->exit_qualification = qualification; |
| 7262 | nested_vmx_succeed(vcpu); |
| 7263 | } |
| 7264 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 7265 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 7266 | struct x86_instruction_info *info, |
| 7267 | enum x86_intercept_stage stage) |
| 7268 | { |
| 7269 | return X86EMUL_CONTINUE; |
| 7270 | } |
| 7271 | |
Christian Ehrhardt | cbdd1be | 2007-09-09 15:41:59 +0300 | [diff] [blame] | 7272 | static struct kvm_x86_ops vmx_x86_ops = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7273 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 7274 | .disabled_by_bios = vmx_disabled_by_bios, |
| 7275 | .hardware_setup = hardware_setup, |
| 7276 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 7277 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7278 | .hardware_enable = hardware_enable, |
| 7279 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 7280 | .cpu_has_accelerated_tpr = report_flexpriority, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7281 | |
| 7282 | .vcpu_create = vmx_create_vcpu, |
| 7283 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 7284 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7285 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 7286 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7287 | .vcpu_load = vmx_vcpu_load, |
| 7288 | .vcpu_put = vmx_vcpu_put, |
| 7289 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7290 | .update_db_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7291 | .get_msr = vmx_get_msr, |
| 7292 | .set_msr = vmx_set_msr, |
| 7293 | .get_segment_base = vmx_get_segment_base, |
| 7294 | .get_segment = vmx_get_segment, |
| 7295 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 7296 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7297 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 7298 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 7299 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 7300 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7301 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7302 | .set_cr3 = vmx_set_cr3, |
| 7303 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7304 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7305 | .get_idt = vmx_get_idt, |
| 7306 | .set_idt = vmx_set_idt, |
| 7307 | .get_gdt = vmx_get_gdt, |
| 7308 | .set_gdt = vmx_set_gdt, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 7309 | .set_dr7 = vmx_set_dr7, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 7310 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7311 | .get_rflags = vmx_get_rflags, |
| 7312 | .set_rflags = vmx_set_rflags, |
Avi Kivity | ebcbab4 | 2010-02-07 11:56:52 +0200 | [diff] [blame] | 7313 | .fpu_activate = vmx_fpu_activate, |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 7314 | .fpu_deactivate = vmx_fpu_deactivate, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7315 | |
| 7316 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7317 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7318 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 7319 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7320 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 7321 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 7322 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 7323 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 7324 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7325 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 7326 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 7327 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 7328 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7329 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 7330 | .get_nmi_mask = vmx_get_nmi_mask, |
| 7331 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7332 | .enable_nmi_window = enable_nmi_window, |
| 7333 | .enable_irq_window = enable_irq_window, |
| 7334 | .update_cr8_intercept = update_cr8_intercept, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7335 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 7336 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 7337 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 7338 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 7339 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 7340 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 7341 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 7342 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 7343 | |
| 7344 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 7345 | |
| 7346 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 7347 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 7348 | |
| 7349 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7350 | |
| 7351 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 7352 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 7353 | .set_tsc_khz = vmx_set_tsc_khz, |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 7354 | .read_tsc_offset = vmx_read_tsc_offset, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 7355 | .write_tsc_offset = vmx_write_tsc_offset, |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 7356 | .adjust_tsc_offset = vmx_adjust_tsc_offset, |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 7357 | .compute_tsc_offset = vmx_compute_tsc_offset, |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 7358 | .read_l1_tsc = vmx_read_l1_tsc, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 7359 | |
| 7360 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 7361 | |
| 7362 | .check_intercept = vmx_check_intercept, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7363 | }; |
| 7364 | |
| 7365 | static int __init vmx_init(void) |
| 7366 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 7367 | int r, i; |
| 7368 | |
| 7369 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 7370 | |
| 7371 | for (i = 0; i < NR_VMX_MSR; ++i) |
| 7372 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7373 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7374 | vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7375 | if (!vmx_io_bitmap_a) |
| 7376 | return -ENOMEM; |
| 7377 | |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7378 | r = -ENOMEM; |
| 7379 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7380 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7381 | if (!vmx_io_bitmap_b) |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7382 | goto out; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7383 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7384 | vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL); |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7385 | if (!vmx_msr_bitmap_legacy) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 7386 | goto out1; |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7387 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 7388 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7389 | vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL); |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7390 | if (!vmx_msr_bitmap_longmode) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7391 | goto out2; |
Guo Chao | 2106a54 | 2012-06-15 11:31:56 +0800 | [diff] [blame] | 7392 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7393 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7394 | /* |
| 7395 | * Allow direct access to the PC debug port (it is often used for I/O |
| 7396 | * delays, but the vmexits simply slow things down). |
| 7397 | */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7398 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 7399 | clear_bit(0x80, vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7400 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7401 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7402 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7403 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 7404 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 7405 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 7406 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 7407 | |
Avi Kivity | 0ee75be | 2010-04-28 15:39:01 +0300 | [diff] [blame] | 7408 | r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 7409 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7410 | if (r) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7411 | goto out3; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 7412 | |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 7413 | #ifdef CONFIG_KEXEC |
| 7414 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 7415 | crash_vmclear_local_loaded_vmcss); |
| 7416 | #endif |
| 7417 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7418 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 7419 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 7420 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 7421 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 7422 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 7423 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7424 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 7425 | if (enable_ept) { |
Xudong Hao | 3f6d8c8 | 2012-05-22 11:23:15 +0800 | [diff] [blame] | 7426 | kvm_mmu_set_mask_ptes(0ull, |
| 7427 | (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull, |
| 7428 | (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull, |
| 7429 | 0ull, VMX_EPT_EXECUTABLE_MASK); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 7430 | ept_set_mmio_spte_mask(); |
Sheng Yang | 5fdbcb9 | 2008-07-16 09:25:40 +0800 | [diff] [blame] | 7431 | kvm_enable_tdp(); |
| 7432 | } else |
| 7433 | kvm_disable_tdp(); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 7434 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7435 | return 0; |
| 7436 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7437 | out3: |
| 7438 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 7439 | out2: |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7440 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7441 | out1: |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7442 | free_page((unsigned long)vmx_io_bitmap_b); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7443 | out: |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7444 | free_page((unsigned long)vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7445 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7446 | } |
| 7447 | |
| 7448 | static void __exit vmx_exit(void) |
| 7449 | { |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 7450 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 7451 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 7452 | free_page((unsigned long)vmx_io_bitmap_b); |
| 7453 | free_page((unsigned long)vmx_io_bitmap_a); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 7454 | |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 7455 | #ifdef CONFIG_KEXEC |
| 7456 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, NULL); |
| 7457 | synchronize_rcu(); |
| 7458 | #endif |
| 7459 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 7460 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7461 | } |
| 7462 | |
| 7463 | module_init(vmx_init) |
| 7464 | module_exit(vmx_exit) |