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> |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 34 | #include <linux/hrtimer.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 35 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 36 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 37 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 38 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 39 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 40 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 41 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 42 | #include <asm/mce.h> |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 43 | #include <asm/i387.h> |
| 44 | #include <asm/xcr.h> |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 45 | #include <asm/perf_event.h> |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 46 | #include <asm/debugreg.h> |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 47 | #include <asm/kexec.h> |
Radim Krčmář | dab2087 | 2015-02-09 22:44:07 +0100 | [diff] [blame] | 48 | #include <asm/apic.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 49 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 50 | #include "trace.h" |
| 51 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 52 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 53 | #define __ex_clear(x, reg) \ |
| 54 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 55 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 56 | MODULE_AUTHOR("Qumranet"); |
| 57 | MODULE_LICENSE("GPL"); |
| 58 | |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 59 | static const struct x86_cpu_id vmx_cpu_id[] = { |
| 60 | X86_FEATURE_MATCH(X86_FEATURE_VMX), |
| 61 | {} |
| 62 | }; |
| 63 | MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id); |
| 64 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 65 | static bool __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 66 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 67 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 68 | static bool __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 69 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 70 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 71 | static bool __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 72 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 73 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 74 | static bool __read_mostly enable_unrestricted_guest = 1; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 75 | module_param_named(unrestricted_guest, |
| 76 | enable_unrestricted_guest, bool, S_IRUGO); |
| 77 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 78 | static bool __read_mostly enable_ept_ad_bits = 1; |
| 79 | module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO); |
| 80 | |
Avi Kivity | a27685c | 2012-06-12 20:30:18 +0300 | [diff] [blame] | 81 | static bool __read_mostly emulate_invalid_guest_state = true; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 82 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 83 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 84 | static bool __read_mostly vmm_exclusive = 1; |
Dongxiao Xu | b923e62 | 2010-05-11 18:29:45 +0800 | [diff] [blame] | 85 | module_param(vmm_exclusive, bool, S_IRUGO); |
| 86 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 87 | static bool __read_mostly fasteoi = 1; |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 88 | module_param(fasteoi, bool, S_IRUGO); |
| 89 | |
Yang Zhang | 5a71785 | 2013-04-11 19:25:16 +0800 | [diff] [blame] | 90 | static bool __read_mostly enable_apicv = 1; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 91 | module_param(enable_apicv, bool, S_IRUGO); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 92 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 93 | static bool __read_mostly enable_shadow_vmcs = 1; |
| 94 | module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO); |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 95 | /* |
| 96 | * If nested=1, nested virtualization is supported, i.e., guests may use |
| 97 | * VMX and be a hypervisor for its own guests. If nested=0, guests may not |
| 98 | * use VMX instructions. |
| 99 | */ |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 100 | static bool __read_mostly nested = 0; |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 101 | module_param(nested, bool, S_IRUGO); |
| 102 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 103 | static u64 __read_mostly host_xss; |
| 104 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 105 | static bool __read_mostly enable_pml = 1; |
| 106 | module_param_named(pml, enable_pml, bool, S_IRUGO); |
| 107 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 108 | #define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD) |
| 109 | #define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE) |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 110 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 111 | (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] | 112 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 113 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
Andy Lutomirski | 52ce3c2 | 2014-10-07 17:16:21 -0700 | [diff] [blame] | 114 | | X86_CR4_OSXMMEXCPT | X86_CR4_TSD) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 115 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 116 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 117 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 118 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 119 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 120 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 121 | #define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5 |
| 122 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 123 | /* |
| 124 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 125 | * ple_gap: upper bound on the amount of time between two successive |
| 126 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 127 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 128 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 129 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 130 | * less than 2^12 cycles |
| 131 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 132 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 133 | */ |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 134 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
| 135 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 136 | #define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2 |
| 137 | #define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0 |
| 138 | #define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \ |
| 139 | INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW |
| 140 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 141 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 142 | module_param(ple_gap, int, S_IRUGO); |
| 143 | |
| 144 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 145 | module_param(ple_window, int, S_IRUGO); |
| 146 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 147 | /* Default doubles per-vcpu window every exit. */ |
| 148 | static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW; |
| 149 | module_param(ple_window_grow, int, S_IRUGO); |
| 150 | |
| 151 | /* Default resets per-vcpu window every exit to ple_window. */ |
| 152 | static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK; |
| 153 | module_param(ple_window_shrink, int, S_IRUGO); |
| 154 | |
| 155 | /* Default is to compute the maximum so we can never overflow. */ |
| 156 | static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 157 | static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 158 | module_param(ple_window_max, int, S_IRUGO); |
| 159 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 160 | extern const ulong vmx_return; |
| 161 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 162 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 163 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 164 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 165 | struct vmcs { |
| 166 | u32 revision_id; |
| 167 | u32 abort; |
| 168 | char data[0]; |
| 169 | }; |
| 170 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 171 | /* |
| 172 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 173 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 174 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 175 | */ |
| 176 | struct loaded_vmcs { |
| 177 | struct vmcs *vmcs; |
| 178 | int cpu; |
| 179 | int launched; |
| 180 | struct list_head loaded_vmcss_on_cpu_link; |
| 181 | }; |
| 182 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 183 | struct shared_msr_entry { |
| 184 | unsigned index; |
| 185 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 186 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 187 | }; |
| 188 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 189 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 190 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 191 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 192 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 193 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 194 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 195 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 196 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 197 | * underlying hardware which will be used to run L2. |
| 198 | * This structure is packed to ensure that its layout is identical across |
| 199 | * machines (necessary for live migration). |
| 200 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 201 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 202 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 203 | struct __packed vmcs12 { |
| 204 | /* According to the Intel spec, a VMCS region must start with the |
| 205 | * following two fields. Then follow implementation-specific data. |
| 206 | */ |
| 207 | u32 revision_id; |
| 208 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 209 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 210 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 211 | u32 padding[7]; /* room for future expansion */ |
| 212 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 213 | u64 io_bitmap_a; |
| 214 | u64 io_bitmap_b; |
| 215 | u64 msr_bitmap; |
| 216 | u64 vm_exit_msr_store_addr; |
| 217 | u64 vm_exit_msr_load_addr; |
| 218 | u64 vm_entry_msr_load_addr; |
| 219 | u64 tsc_offset; |
| 220 | u64 virtual_apic_page_addr; |
| 221 | u64 apic_access_addr; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 222 | u64 posted_intr_desc_addr; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 223 | u64 ept_pointer; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 224 | u64 eoi_exit_bitmap0; |
| 225 | u64 eoi_exit_bitmap1; |
| 226 | u64 eoi_exit_bitmap2; |
| 227 | u64 eoi_exit_bitmap3; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 228 | u64 xss_exit_bitmap; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 229 | u64 guest_physical_address; |
| 230 | u64 vmcs_link_pointer; |
| 231 | u64 guest_ia32_debugctl; |
| 232 | u64 guest_ia32_pat; |
| 233 | u64 guest_ia32_efer; |
| 234 | u64 guest_ia32_perf_global_ctrl; |
| 235 | u64 guest_pdptr0; |
| 236 | u64 guest_pdptr1; |
| 237 | u64 guest_pdptr2; |
| 238 | u64 guest_pdptr3; |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 239 | u64 guest_bndcfgs; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 240 | u64 host_ia32_pat; |
| 241 | u64 host_ia32_efer; |
| 242 | u64 host_ia32_perf_global_ctrl; |
| 243 | u64 padding64[8]; /* room for future expansion */ |
| 244 | /* |
| 245 | * To allow migration of L1 (complete with its L2 guests) between |
| 246 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 247 | * unsigned long fields with no explict size. We use u64 (aliased |
| 248 | * natural_width) instead. Luckily, x86 is little-endian. |
| 249 | */ |
| 250 | natural_width cr0_guest_host_mask; |
| 251 | natural_width cr4_guest_host_mask; |
| 252 | natural_width cr0_read_shadow; |
| 253 | natural_width cr4_read_shadow; |
| 254 | natural_width cr3_target_value0; |
| 255 | natural_width cr3_target_value1; |
| 256 | natural_width cr3_target_value2; |
| 257 | natural_width cr3_target_value3; |
| 258 | natural_width exit_qualification; |
| 259 | natural_width guest_linear_address; |
| 260 | natural_width guest_cr0; |
| 261 | natural_width guest_cr3; |
| 262 | natural_width guest_cr4; |
| 263 | natural_width guest_es_base; |
| 264 | natural_width guest_cs_base; |
| 265 | natural_width guest_ss_base; |
| 266 | natural_width guest_ds_base; |
| 267 | natural_width guest_fs_base; |
| 268 | natural_width guest_gs_base; |
| 269 | natural_width guest_ldtr_base; |
| 270 | natural_width guest_tr_base; |
| 271 | natural_width guest_gdtr_base; |
| 272 | natural_width guest_idtr_base; |
| 273 | natural_width guest_dr7; |
| 274 | natural_width guest_rsp; |
| 275 | natural_width guest_rip; |
| 276 | natural_width guest_rflags; |
| 277 | natural_width guest_pending_dbg_exceptions; |
| 278 | natural_width guest_sysenter_esp; |
| 279 | natural_width guest_sysenter_eip; |
| 280 | natural_width host_cr0; |
| 281 | natural_width host_cr3; |
| 282 | natural_width host_cr4; |
| 283 | natural_width host_fs_base; |
| 284 | natural_width host_gs_base; |
| 285 | natural_width host_tr_base; |
| 286 | natural_width host_gdtr_base; |
| 287 | natural_width host_idtr_base; |
| 288 | natural_width host_ia32_sysenter_esp; |
| 289 | natural_width host_ia32_sysenter_eip; |
| 290 | natural_width host_rsp; |
| 291 | natural_width host_rip; |
| 292 | natural_width paddingl[8]; /* room for future expansion */ |
| 293 | u32 pin_based_vm_exec_control; |
| 294 | u32 cpu_based_vm_exec_control; |
| 295 | u32 exception_bitmap; |
| 296 | u32 page_fault_error_code_mask; |
| 297 | u32 page_fault_error_code_match; |
| 298 | u32 cr3_target_count; |
| 299 | u32 vm_exit_controls; |
| 300 | u32 vm_exit_msr_store_count; |
| 301 | u32 vm_exit_msr_load_count; |
| 302 | u32 vm_entry_controls; |
| 303 | u32 vm_entry_msr_load_count; |
| 304 | u32 vm_entry_intr_info_field; |
| 305 | u32 vm_entry_exception_error_code; |
| 306 | u32 vm_entry_instruction_len; |
| 307 | u32 tpr_threshold; |
| 308 | u32 secondary_vm_exec_control; |
| 309 | u32 vm_instruction_error; |
| 310 | u32 vm_exit_reason; |
| 311 | u32 vm_exit_intr_info; |
| 312 | u32 vm_exit_intr_error_code; |
| 313 | u32 idt_vectoring_info_field; |
| 314 | u32 idt_vectoring_error_code; |
| 315 | u32 vm_exit_instruction_len; |
| 316 | u32 vmx_instruction_info; |
| 317 | u32 guest_es_limit; |
| 318 | u32 guest_cs_limit; |
| 319 | u32 guest_ss_limit; |
| 320 | u32 guest_ds_limit; |
| 321 | u32 guest_fs_limit; |
| 322 | u32 guest_gs_limit; |
| 323 | u32 guest_ldtr_limit; |
| 324 | u32 guest_tr_limit; |
| 325 | u32 guest_gdtr_limit; |
| 326 | u32 guest_idtr_limit; |
| 327 | u32 guest_es_ar_bytes; |
| 328 | u32 guest_cs_ar_bytes; |
| 329 | u32 guest_ss_ar_bytes; |
| 330 | u32 guest_ds_ar_bytes; |
| 331 | u32 guest_fs_ar_bytes; |
| 332 | u32 guest_gs_ar_bytes; |
| 333 | u32 guest_ldtr_ar_bytes; |
| 334 | u32 guest_tr_ar_bytes; |
| 335 | u32 guest_interruptibility_info; |
| 336 | u32 guest_activity_state; |
| 337 | u32 guest_sysenter_cs; |
| 338 | u32 host_ia32_sysenter_cs; |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 339 | u32 vmx_preemption_timer_value; |
| 340 | u32 padding32[7]; /* room for future expansion */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 341 | u16 virtual_processor_id; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 342 | u16 posted_intr_nv; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 343 | u16 guest_es_selector; |
| 344 | u16 guest_cs_selector; |
| 345 | u16 guest_ss_selector; |
| 346 | u16 guest_ds_selector; |
| 347 | u16 guest_fs_selector; |
| 348 | u16 guest_gs_selector; |
| 349 | u16 guest_ldtr_selector; |
| 350 | u16 guest_tr_selector; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 351 | u16 guest_intr_status; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 352 | u16 host_es_selector; |
| 353 | u16 host_cs_selector; |
| 354 | u16 host_ss_selector; |
| 355 | u16 host_ds_selector; |
| 356 | u16 host_fs_selector; |
| 357 | u16 host_gs_selector; |
| 358 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 359 | }; |
| 360 | |
| 361 | /* |
| 362 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 363 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 364 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 365 | */ |
| 366 | #define VMCS12_REVISION 0x11e57ed0 |
| 367 | |
| 368 | /* |
| 369 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 370 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 371 | * current implementation, 4K are reserved to avoid future complications. |
| 372 | */ |
| 373 | #define VMCS12_SIZE 0x1000 |
| 374 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 375 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 376 | struct vmcs02_list { |
| 377 | struct list_head list; |
| 378 | gpa_t vmptr; |
| 379 | struct loaded_vmcs vmcs02; |
| 380 | }; |
| 381 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 382 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 383 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 384 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 385 | */ |
| 386 | struct nested_vmx { |
| 387 | /* Has the level1 guest done vmxon? */ |
| 388 | bool vmxon; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 389 | gpa_t vmxon_ptr; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 390 | |
| 391 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 392 | gpa_t current_vmptr; |
| 393 | /* The host-usable pointer to the above */ |
| 394 | struct page *current_vmcs12_page; |
| 395 | struct vmcs12 *current_vmcs12; |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 396 | struct vmcs *current_shadow_vmcs; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 397 | /* |
| 398 | * Indicates if the shadow vmcs must be updated with the |
| 399 | * data hold by vmcs12 |
| 400 | */ |
| 401 | bool sync_shadow_vmcs; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 402 | |
| 403 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 404 | struct list_head vmcs02_pool; |
| 405 | int vmcs02_num; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 406 | u64 vmcs01_tsc_offset; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 407 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 408 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 409 | /* |
| 410 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 411 | * we must keep them pinned while L2 runs. |
| 412 | */ |
| 413 | struct page *apic_access_page; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 414 | struct page *virtual_apic_page; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 415 | struct page *pi_desc_page; |
| 416 | struct pi_desc *pi_desc; |
| 417 | bool pi_pending; |
| 418 | u16 posted_intr_nv; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 419 | u64 msr_ia32_feature_control; |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 420 | |
| 421 | struct hrtimer preemption_timer; |
| 422 | bool preemption_timer_expired; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 423 | |
| 424 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 425 | u64 vmcs01_debugctl; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 426 | |
| 427 | u32 nested_vmx_procbased_ctls_low; |
| 428 | u32 nested_vmx_procbased_ctls_high; |
| 429 | u32 nested_vmx_true_procbased_ctls_low; |
| 430 | u32 nested_vmx_secondary_ctls_low; |
| 431 | u32 nested_vmx_secondary_ctls_high; |
| 432 | u32 nested_vmx_pinbased_ctls_low; |
| 433 | u32 nested_vmx_pinbased_ctls_high; |
| 434 | u32 nested_vmx_exit_ctls_low; |
| 435 | u32 nested_vmx_exit_ctls_high; |
| 436 | u32 nested_vmx_true_exit_ctls_low; |
| 437 | u32 nested_vmx_entry_ctls_low; |
| 438 | u32 nested_vmx_entry_ctls_high; |
| 439 | u32 nested_vmx_true_entry_ctls_low; |
| 440 | u32 nested_vmx_misc_low; |
| 441 | u32 nested_vmx_misc_high; |
| 442 | u32 nested_vmx_ept_caps; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 443 | }; |
| 444 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 445 | #define POSTED_INTR_ON 0 |
| 446 | /* Posted-Interrupt Descriptor */ |
| 447 | struct pi_desc { |
| 448 | u32 pir[8]; /* Posted interrupt requested */ |
| 449 | u32 control; /* bit 0 of control is outstanding notification bit */ |
| 450 | u32 rsvd[7]; |
| 451 | } __aligned(64); |
| 452 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 453 | static bool pi_test_and_set_on(struct pi_desc *pi_desc) |
| 454 | { |
| 455 | return test_and_set_bit(POSTED_INTR_ON, |
| 456 | (unsigned long *)&pi_desc->control); |
| 457 | } |
| 458 | |
| 459 | static bool pi_test_and_clear_on(struct pi_desc *pi_desc) |
| 460 | { |
| 461 | return test_and_clear_bit(POSTED_INTR_ON, |
| 462 | (unsigned long *)&pi_desc->control); |
| 463 | } |
| 464 | |
| 465 | static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc) |
| 466 | { |
| 467 | return test_and_set_bit(vector, (unsigned long *)pi_desc->pir); |
| 468 | } |
| 469 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 470 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 471 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 472 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 473 | u8 fail; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 474 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 475 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 476 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 477 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 478 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 479 | int nmsrs; |
| 480 | int save_nmsrs; |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 481 | unsigned long host_idt_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 482 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 483 | u64 msr_host_kernel_gs_base; |
| 484 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 485 | #endif |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 486 | u32 vm_entry_controls_shadow; |
| 487 | u32 vm_exit_controls_shadow; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 488 | /* |
| 489 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 490 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 491 | * guest (L2), it points to a different VMCS. |
| 492 | */ |
| 493 | struct loaded_vmcs vmcs01; |
| 494 | struct loaded_vmcs *loaded_vmcs; |
| 495 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 496 | struct msr_autoload { |
| 497 | unsigned nr; |
| 498 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 499 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 500 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 501 | struct { |
| 502 | int loaded; |
| 503 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 504 | #ifdef CONFIG_X86_64 |
| 505 | u16 ds_sel, es_sel; |
| 506 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 507 | int gs_ldt_reload_needed; |
| 508 | int fs_reload_needed; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 509 | u64 msr_host_bndcfgs; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 510 | unsigned long vmcs_host_cr4; /* May not match real cr4 */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 511 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 512 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 513 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 514 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 515 | struct kvm_segment segs[8]; |
| 516 | } rmode; |
| 517 | struct { |
| 518 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 519 | struct kvm_save_segment { |
| 520 | u16 selector; |
| 521 | unsigned long base; |
| 522 | u32 limit; |
| 523 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 524 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 525 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 526 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 527 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 528 | |
| 529 | /* Support for vnmi-less CPUs */ |
| 530 | int soft_vnmi_blocked; |
| 531 | ktime_t entry_time; |
| 532 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 533 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 534 | |
| 535 | bool rdtscp_enabled; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 536 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 537 | /* Posted interrupt descriptor */ |
| 538 | struct pi_desc pi_desc; |
| 539 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 540 | /* Support for a guest hypervisor (nested VMX) */ |
| 541 | struct nested_vmx nested; |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 542 | |
| 543 | /* Dynamic PLE window. */ |
| 544 | int ple_window; |
| 545 | bool ple_window_dirty; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 546 | |
| 547 | /* Support for PML */ |
| 548 | #define PML_ENTITY_NUM 512 |
| 549 | struct page *pml_pg; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 550 | }; |
| 551 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 552 | enum segment_cache_field { |
| 553 | SEG_FIELD_SEL = 0, |
| 554 | SEG_FIELD_BASE = 1, |
| 555 | SEG_FIELD_LIMIT = 2, |
| 556 | SEG_FIELD_AR = 3, |
| 557 | |
| 558 | SEG_FIELD_NR = 4 |
| 559 | }; |
| 560 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 561 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 562 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 563 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 564 | } |
| 565 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 566 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 567 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 568 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 569 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 570 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 571 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 572 | static unsigned long shadow_read_only_fields[] = { |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 573 | /* |
| 574 | * We do NOT shadow fields that are modified when L0 |
| 575 | * traps and emulates any vmx instruction (e.g. VMPTRLD, |
| 576 | * VMXON...) executed by L1. |
| 577 | * For example, VM_INSTRUCTION_ERROR is read |
| 578 | * by L1 if a vmx instruction fails (part of the error path). |
| 579 | * Note the code assumes this logic. If for some reason |
| 580 | * we start shadowing these fields then we need to |
| 581 | * force a shadow sync when L0 emulates vmx instructions |
| 582 | * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified |
| 583 | * by nested_vmx_failValid) |
| 584 | */ |
| 585 | VM_EXIT_REASON, |
| 586 | VM_EXIT_INTR_INFO, |
| 587 | VM_EXIT_INSTRUCTION_LEN, |
| 588 | IDT_VECTORING_INFO_FIELD, |
| 589 | IDT_VECTORING_ERROR_CODE, |
| 590 | VM_EXIT_INTR_ERROR_CODE, |
| 591 | EXIT_QUALIFICATION, |
| 592 | GUEST_LINEAR_ADDRESS, |
| 593 | GUEST_PHYSICAL_ADDRESS |
| 594 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 595 | static int max_shadow_read_only_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 596 | ARRAY_SIZE(shadow_read_only_fields); |
| 597 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 598 | static unsigned long shadow_read_write_fields[] = { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 599 | TPR_THRESHOLD, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 600 | GUEST_RIP, |
| 601 | GUEST_RSP, |
| 602 | GUEST_CR0, |
| 603 | GUEST_CR3, |
| 604 | GUEST_CR4, |
| 605 | GUEST_INTERRUPTIBILITY_INFO, |
| 606 | GUEST_RFLAGS, |
| 607 | GUEST_CS_SELECTOR, |
| 608 | GUEST_CS_AR_BYTES, |
| 609 | GUEST_CS_LIMIT, |
| 610 | GUEST_CS_BASE, |
| 611 | GUEST_ES_BASE, |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 612 | GUEST_BNDCFGS, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 613 | CR0_GUEST_HOST_MASK, |
| 614 | CR0_READ_SHADOW, |
| 615 | CR4_READ_SHADOW, |
| 616 | TSC_OFFSET, |
| 617 | EXCEPTION_BITMAP, |
| 618 | CPU_BASED_VM_EXEC_CONTROL, |
| 619 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 620 | VM_ENTRY_INTR_INFO_FIELD, |
| 621 | VM_ENTRY_INSTRUCTION_LEN, |
| 622 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 623 | HOST_FS_BASE, |
| 624 | HOST_GS_BASE, |
| 625 | HOST_FS_SELECTOR, |
| 626 | HOST_GS_SELECTOR |
| 627 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 628 | static int max_shadow_read_write_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 629 | ARRAY_SIZE(shadow_read_write_fields); |
| 630 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 631 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 632 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 633 | FIELD(POSTED_INTR_NV, posted_intr_nv), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 634 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 635 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 636 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 637 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 638 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 639 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 640 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 641 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 642 | FIELD(GUEST_INTR_STATUS, guest_intr_status), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 643 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 644 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 645 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 646 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 647 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 648 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 649 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 650 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 651 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 652 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 653 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 654 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 655 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 656 | FIELD64(TSC_OFFSET, tsc_offset), |
| 657 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 658 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 659 | FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 660 | FIELD64(EPT_POINTER, ept_pointer), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 661 | FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0), |
| 662 | FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1), |
| 663 | FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2), |
| 664 | FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3), |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 665 | FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 666 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 667 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
| 668 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 669 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 670 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 671 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 672 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 673 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 674 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 675 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 676 | FIELD64(GUEST_BNDCFGS, guest_bndcfgs), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 677 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 678 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 679 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 680 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 681 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 682 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 683 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 684 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 685 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 686 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 687 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 688 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 689 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 690 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 691 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 692 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 693 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 694 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 695 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 696 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 697 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 698 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 699 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 700 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 701 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 702 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 703 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 704 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 705 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 706 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 707 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 708 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 709 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 710 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 711 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 712 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 713 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 714 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 715 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 716 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 717 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 718 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 719 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 720 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 721 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 722 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 723 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 724 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 725 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 726 | FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 727 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 728 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 729 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 730 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 731 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 732 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 733 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 734 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 735 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 736 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 737 | FIELD(GUEST_CR0, guest_cr0), |
| 738 | FIELD(GUEST_CR3, guest_cr3), |
| 739 | FIELD(GUEST_CR4, guest_cr4), |
| 740 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 741 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 742 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 743 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 744 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 745 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 746 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 747 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 748 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 749 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 750 | FIELD(GUEST_DR7, guest_dr7), |
| 751 | FIELD(GUEST_RSP, guest_rsp), |
| 752 | FIELD(GUEST_RIP, guest_rip), |
| 753 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 754 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 755 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 756 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 757 | FIELD(HOST_CR0, host_cr0), |
| 758 | FIELD(HOST_CR3, host_cr3), |
| 759 | FIELD(HOST_CR4, host_cr4), |
| 760 | FIELD(HOST_FS_BASE, host_fs_base), |
| 761 | FIELD(HOST_GS_BASE, host_gs_base), |
| 762 | FIELD(HOST_TR_BASE, host_tr_base), |
| 763 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 764 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 765 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 766 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 767 | FIELD(HOST_RSP, host_rsp), |
| 768 | FIELD(HOST_RIP, host_rip), |
| 769 | }; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 770 | |
| 771 | static inline short vmcs_field_to_offset(unsigned long field) |
| 772 | { |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 773 | BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX); |
| 774 | |
| 775 | if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) || |
| 776 | vmcs_field_to_offset_table[field] == 0) |
| 777 | return -ENOENT; |
| 778 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 779 | return vmcs_field_to_offset_table[field]; |
| 780 | } |
| 781 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 782 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 783 | { |
| 784 | return to_vmx(vcpu)->nested.current_vmcs12; |
| 785 | } |
| 786 | |
| 787 | static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr) |
| 788 | { |
| 789 | struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 790 | if (is_error_page(page)) |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 791 | return NULL; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 792 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 793 | return page; |
| 794 | } |
| 795 | |
| 796 | static void nested_release_page(struct page *page) |
| 797 | { |
| 798 | kvm_release_page_dirty(page); |
| 799 | } |
| 800 | |
| 801 | static void nested_release_page_clean(struct page *page) |
| 802 | { |
| 803 | kvm_release_page_clean(page); |
| 804 | } |
| 805 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 806 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu); |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 807 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 808 | static void kvm_cpu_vmxon(u64 addr); |
| 809 | static void kvm_cpu_vmxoff(void); |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 810 | static bool vmx_mpx_supported(void); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 811 | static bool vmx_xsaves_supported(void); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 812 | static int vmx_vm_has_apicv(struct kvm *kvm); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 813 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 814 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 815 | struct kvm_segment *var, int seg); |
| 816 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 817 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 818 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 819 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 820 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu); |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 821 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 822 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 823 | static int alloc_identity_pagetable(struct kvm *kvm); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 824 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 825 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 826 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 827 | /* |
| 828 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 829 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 830 | */ |
| 831 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 832 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 833 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 834 | static unsigned long *vmx_io_bitmap_a; |
| 835 | static unsigned long *vmx_io_bitmap_b; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 836 | static unsigned long *vmx_msr_bitmap_legacy; |
| 837 | static unsigned long *vmx_msr_bitmap_longmode; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 838 | static unsigned long *vmx_msr_bitmap_legacy_x2apic; |
| 839 | static unsigned long *vmx_msr_bitmap_longmode_x2apic; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 840 | static unsigned long *vmx_msr_bitmap_nested; |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 841 | static unsigned long *vmx_vmread_bitmap; |
| 842 | static unsigned long *vmx_vmwrite_bitmap; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 843 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 844 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 845 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 846 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 847 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 848 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 849 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 850 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 851 | int size; |
| 852 | int order; |
| 853 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 854 | u32 pin_based_exec_ctrl; |
| 855 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 856 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 857 | u32 vmexit_ctrl; |
| 858 | u32 vmentry_ctrl; |
| 859 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 860 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 861 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 862 | u32 ept; |
| 863 | u32 vpid; |
| 864 | } vmx_capability; |
| 865 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 866 | #define VMX_SEGMENT_FIELD(seg) \ |
| 867 | [VCPU_SREG_##seg] = { \ |
| 868 | .selector = GUEST_##seg##_SELECTOR, \ |
| 869 | .base = GUEST_##seg##_BASE, \ |
| 870 | .limit = GUEST_##seg##_LIMIT, \ |
| 871 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 872 | } |
| 873 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 874 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 875 | unsigned selector; |
| 876 | unsigned base; |
| 877 | unsigned limit; |
| 878 | unsigned ar_bytes; |
| 879 | } kvm_vmx_segment_fields[] = { |
| 880 | VMX_SEGMENT_FIELD(CS), |
| 881 | VMX_SEGMENT_FIELD(DS), |
| 882 | VMX_SEGMENT_FIELD(ES), |
| 883 | VMX_SEGMENT_FIELD(FS), |
| 884 | VMX_SEGMENT_FIELD(GS), |
| 885 | VMX_SEGMENT_FIELD(SS), |
| 886 | VMX_SEGMENT_FIELD(TR), |
| 887 | VMX_SEGMENT_FIELD(LDTR), |
| 888 | }; |
| 889 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 890 | static u64 host_efer; |
| 891 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 892 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 893 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 894 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 895 | * 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] | 896 | * away by decrementing the array size. |
| 897 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 898 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 899 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 900 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 901 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 902 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 903 | }; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 904 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 905 | static inline bool is_page_fault(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 906 | { |
| 907 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 908 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 909 | (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 910 | } |
| 911 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 912 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 913 | { |
| 914 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 915 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 916 | (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 917 | } |
| 918 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 919 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 920 | { |
| 921 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 922 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 923 | (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 924 | } |
| 925 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 926 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 927 | { |
| 928 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 929 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 930 | } |
| 931 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 932 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 933 | { |
| 934 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 935 | INTR_INFO_VALID_MASK)) == |
| 936 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 937 | } |
| 938 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 939 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 940 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 941 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 942 | } |
| 943 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 944 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 945 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 946 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 947 | } |
| 948 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 949 | static inline bool vm_need_tpr_shadow(struct kvm *kvm) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 950 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 951 | return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm)); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 952 | } |
| 953 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 954 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 955 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 956 | return vmcs_config.cpu_based_exec_ctrl & |
| 957 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 958 | } |
| 959 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 960 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 961 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 962 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 963 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 964 | } |
| 965 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 966 | static inline bool cpu_has_vmx_virtualize_x2apic_mode(void) |
| 967 | { |
| 968 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 969 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 970 | } |
| 971 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 972 | static inline bool cpu_has_vmx_apic_register_virt(void) |
| 973 | { |
| 974 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 975 | SECONDARY_EXEC_APIC_REGISTER_VIRT; |
| 976 | } |
| 977 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 978 | static inline bool cpu_has_vmx_virtual_intr_delivery(void) |
| 979 | { |
| 980 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 981 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY; |
| 982 | } |
| 983 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 984 | static inline bool cpu_has_vmx_posted_intr(void) |
| 985 | { |
| 986 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; |
| 987 | } |
| 988 | |
| 989 | static inline bool cpu_has_vmx_apicv(void) |
| 990 | { |
| 991 | return cpu_has_vmx_apic_register_virt() && |
| 992 | cpu_has_vmx_virtual_intr_delivery() && |
| 993 | cpu_has_vmx_posted_intr(); |
| 994 | } |
| 995 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 996 | static inline bool cpu_has_vmx_flexpriority(void) |
| 997 | { |
| 998 | return cpu_has_vmx_tpr_shadow() && |
| 999 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1000 | } |
| 1001 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1002 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 1003 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1004 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1005 | } |
| 1006 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1007 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 1008 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1009 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1010 | } |
| 1011 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1012 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 1013 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1014 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1015 | } |
| 1016 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 1017 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 1018 | { |
| 1019 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 1020 | } |
| 1021 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 1022 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 1023 | { |
| 1024 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 1025 | } |
| 1026 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1027 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1028 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1029 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1030 | } |
| 1031 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1032 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1033 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1034 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1035 | } |
| 1036 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1037 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 1038 | { |
| 1039 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 1040 | } |
| 1041 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1042 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 1043 | { |
| 1044 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 1045 | } |
| 1046 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1047 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1048 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1049 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1050 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1051 | } |
| 1052 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1053 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 1054 | { |
| 1055 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1056 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 1057 | } |
| 1058 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1059 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 1060 | { |
| 1061 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1062 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 1063 | } |
| 1064 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1065 | static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1066 | { |
Gui Jianfeng | 6d3e435 | 2010-01-29 15:36:59 +0800 | [diff] [blame] | 1067 | return flexpriority_enabled && irqchip_in_kernel(kvm); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1068 | } |
| 1069 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1070 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1071 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1072 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1073 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1074 | } |
| 1075 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1076 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1077 | { |
| 1078 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1079 | SECONDARY_EXEC_RDTSCP; |
| 1080 | } |
| 1081 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1082 | static inline bool cpu_has_vmx_invpcid(void) |
| 1083 | { |
| 1084 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1085 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 1086 | } |
| 1087 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1088 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 1089 | { |
| 1090 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 1091 | } |
| 1092 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1093 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 1094 | { |
| 1095 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1096 | SECONDARY_EXEC_WBINVD_EXITING; |
| 1097 | } |
| 1098 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 1099 | static inline bool cpu_has_vmx_shadow_vmcs(void) |
| 1100 | { |
| 1101 | u64 vmx_msr; |
| 1102 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 1103 | /* check if the cpu supports writing r/o exit information fields */ |
| 1104 | if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS)) |
| 1105 | return false; |
| 1106 | |
| 1107 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1108 | SECONDARY_EXEC_SHADOW_VMCS; |
| 1109 | } |
| 1110 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 1111 | static inline bool cpu_has_vmx_pml(void) |
| 1112 | { |
| 1113 | return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML; |
| 1114 | } |
| 1115 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1116 | static inline bool report_flexpriority(void) |
| 1117 | { |
| 1118 | return flexpriority_enabled; |
| 1119 | } |
| 1120 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1121 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 1122 | { |
| 1123 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 1124 | } |
| 1125 | |
| 1126 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 1127 | { |
| 1128 | return (vmcs12->cpu_based_vm_exec_control & |
| 1129 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 1130 | (vmcs12->secondary_vm_exec_control & bit); |
| 1131 | } |
| 1132 | |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 1133 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1134 | { |
| 1135 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 1136 | } |
| 1137 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 1138 | static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12) |
| 1139 | { |
| 1140 | return vmcs12->pin_based_vm_exec_control & |
| 1141 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1142 | } |
| 1143 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 1144 | static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12) |
| 1145 | { |
| 1146 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT); |
| 1147 | } |
| 1148 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1149 | static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12) |
| 1150 | { |
| 1151 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) && |
| 1152 | vmx_xsaves_supported(); |
| 1153 | } |
| 1154 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 1155 | static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12) |
| 1156 | { |
| 1157 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE); |
| 1158 | } |
| 1159 | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 1160 | static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12) |
| 1161 | { |
| 1162 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT); |
| 1163 | } |
| 1164 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 1165 | static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12) |
| 1166 | { |
| 1167 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 1168 | } |
| 1169 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 1170 | static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12) |
| 1171 | { |
| 1172 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; |
| 1173 | } |
| 1174 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1175 | static inline bool is_exception(u32 intr_info) |
| 1176 | { |
| 1177 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 1178 | == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK); |
| 1179 | } |
| 1180 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 1181 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 1182 | u32 exit_intr_info, |
| 1183 | unsigned long exit_qualification); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 1184 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 1185 | struct vmcs12 *vmcs12, |
| 1186 | u32 reason, unsigned long qualification); |
| 1187 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1188 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1189 | { |
| 1190 | int i; |
| 1191 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1192 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1193 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1194 | return i; |
| 1195 | return -1; |
| 1196 | } |
| 1197 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1198 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 1199 | { |
| 1200 | struct { |
| 1201 | u64 vpid : 16; |
| 1202 | u64 rsvd : 48; |
| 1203 | u64 gva; |
| 1204 | } operand = { vpid, 0, gva }; |
| 1205 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1206 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1207 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1208 | "; ja 1f ; ud2 ; 1:" |
| 1209 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 1210 | } |
| 1211 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1212 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 1213 | { |
| 1214 | struct { |
| 1215 | u64 eptp, gpa; |
| 1216 | } operand = {eptp, gpa}; |
| 1217 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1218 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1219 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1220 | "; ja 1f ; ud2 ; 1:\n" |
| 1221 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 1222 | } |
| 1223 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1224 | 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] | 1225 | { |
| 1226 | int i; |
| 1227 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1228 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1229 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1230 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 1231 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1232 | } |
| 1233 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1234 | static void vmcs_clear(struct vmcs *vmcs) |
| 1235 | { |
| 1236 | u64 phys_addr = __pa(vmcs); |
| 1237 | u8 error; |
| 1238 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1239 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1240 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1241 | : "cc", "memory"); |
| 1242 | if (error) |
| 1243 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 1244 | vmcs, phys_addr); |
| 1245 | } |
| 1246 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1247 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 1248 | { |
| 1249 | vmcs_clear(loaded_vmcs->vmcs); |
| 1250 | loaded_vmcs->cpu = -1; |
| 1251 | loaded_vmcs->launched = 0; |
| 1252 | } |
| 1253 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1254 | static void vmcs_load(struct vmcs *vmcs) |
| 1255 | { |
| 1256 | u64 phys_addr = __pa(vmcs); |
| 1257 | u8 error; |
| 1258 | |
| 1259 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1260 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1261 | : "cc", "memory"); |
| 1262 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 1263 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1264 | vmcs, phys_addr); |
| 1265 | } |
| 1266 | |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1267 | #ifdef CONFIG_KEXEC |
| 1268 | /* |
| 1269 | * This bitmap is used to indicate whether the vmclear |
| 1270 | * operation is enabled on all cpus. All disabled by |
| 1271 | * default. |
| 1272 | */ |
| 1273 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1274 | |
| 1275 | static inline void crash_enable_local_vmclear(int cpu) |
| 1276 | { |
| 1277 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1278 | } |
| 1279 | |
| 1280 | static inline void crash_disable_local_vmclear(int cpu) |
| 1281 | { |
| 1282 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1283 | } |
| 1284 | |
| 1285 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1286 | { |
| 1287 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1288 | } |
| 1289 | |
| 1290 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1291 | { |
| 1292 | int cpu = raw_smp_processor_id(); |
| 1293 | struct loaded_vmcs *v; |
| 1294 | |
| 1295 | if (!crash_local_vmclear_enabled(cpu)) |
| 1296 | return; |
| 1297 | |
| 1298 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1299 | loaded_vmcss_on_cpu_link) |
| 1300 | vmcs_clear(v->vmcs); |
| 1301 | } |
| 1302 | #else |
| 1303 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1304 | static inline void crash_disable_local_vmclear(int cpu) { } |
| 1305 | #endif /* CONFIG_KEXEC */ |
| 1306 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1307 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1308 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1309 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1310 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1311 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1312 | if (loaded_vmcs->cpu != cpu) |
| 1313 | return; /* vcpu migration can race with cpu offline */ |
| 1314 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1315 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1316 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1317 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1318 | |
| 1319 | /* |
| 1320 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1321 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1322 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1323 | * then adds the vmcs into percpu list before it is deleted. |
| 1324 | */ |
| 1325 | smp_wmb(); |
| 1326 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1327 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1328 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1329 | } |
| 1330 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1331 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1332 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1333 | int cpu = loaded_vmcs->cpu; |
| 1334 | |
| 1335 | if (cpu != -1) |
| 1336 | smp_call_function_single(cpu, |
| 1337 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1338 | } |
| 1339 | |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1340 | static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1341 | { |
| 1342 | if (vmx->vpid == 0) |
| 1343 | return; |
| 1344 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1345 | if (cpu_has_vmx_invvpid_single()) |
| 1346 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1347 | } |
| 1348 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1349 | static inline void vpid_sync_vcpu_global(void) |
| 1350 | { |
| 1351 | if (cpu_has_vmx_invvpid_global()) |
| 1352 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1353 | } |
| 1354 | |
| 1355 | static inline void vpid_sync_context(struct vcpu_vmx *vmx) |
| 1356 | { |
| 1357 | if (cpu_has_vmx_invvpid_single()) |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1358 | vpid_sync_vcpu_single(vmx); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1359 | else |
| 1360 | vpid_sync_vcpu_global(); |
| 1361 | } |
| 1362 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1363 | static inline void ept_sync_global(void) |
| 1364 | { |
| 1365 | if (cpu_has_vmx_invept_global()) |
| 1366 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1367 | } |
| 1368 | |
| 1369 | static inline void ept_sync_context(u64 eptp) |
| 1370 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1371 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1372 | if (cpu_has_vmx_invept_context()) |
| 1373 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1374 | else |
| 1375 | ept_sync_global(); |
| 1376 | } |
| 1377 | } |
| 1378 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1379 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1380 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1381 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1382 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1383 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1384 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1385 | return value; |
| 1386 | } |
| 1387 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1388 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1389 | { |
| 1390 | return vmcs_readl(field); |
| 1391 | } |
| 1392 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1393 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1394 | { |
| 1395 | return vmcs_readl(field); |
| 1396 | } |
| 1397 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1398 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1399 | { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1400 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1401 | return vmcs_readl(field); |
| 1402 | #else |
| 1403 | return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32); |
| 1404 | #endif |
| 1405 | } |
| 1406 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1407 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1408 | { |
| 1409 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1410 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1411 | dump_stack(); |
| 1412 | } |
| 1413 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1414 | static void vmcs_writel(unsigned long field, unsigned long value) |
| 1415 | { |
| 1416 | u8 error; |
| 1417 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1418 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1419 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1420 | if (unlikely(error)) |
| 1421 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | static void vmcs_write16(unsigned long field, u16 value) |
| 1425 | { |
| 1426 | vmcs_writel(field, value); |
| 1427 | } |
| 1428 | |
| 1429 | static void vmcs_write32(unsigned long field, u32 value) |
| 1430 | { |
| 1431 | vmcs_writel(field, value); |
| 1432 | } |
| 1433 | |
| 1434 | static void vmcs_write64(unsigned long field, u64 value) |
| 1435 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1436 | vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1437 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1438 | asm volatile (""); |
| 1439 | vmcs_writel(field+1, value >> 32); |
| 1440 | #endif |
| 1441 | } |
| 1442 | |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1443 | static void vmcs_clear_bits(unsigned long field, u32 mask) |
| 1444 | { |
| 1445 | vmcs_writel(field, vmcs_readl(field) & ~mask); |
| 1446 | } |
| 1447 | |
| 1448 | static void vmcs_set_bits(unsigned long field, u32 mask) |
| 1449 | { |
| 1450 | vmcs_writel(field, vmcs_readl(field) | mask); |
| 1451 | } |
| 1452 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1453 | static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1454 | { |
| 1455 | vmcs_write32(VM_ENTRY_CONTROLS, val); |
| 1456 | vmx->vm_entry_controls_shadow = val; |
| 1457 | } |
| 1458 | |
| 1459 | static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1460 | { |
| 1461 | if (vmx->vm_entry_controls_shadow != val) |
| 1462 | vm_entry_controls_init(vmx, val); |
| 1463 | } |
| 1464 | |
| 1465 | static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx) |
| 1466 | { |
| 1467 | return vmx->vm_entry_controls_shadow; |
| 1468 | } |
| 1469 | |
| 1470 | |
| 1471 | static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1472 | { |
| 1473 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val); |
| 1474 | } |
| 1475 | |
| 1476 | static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1477 | { |
| 1478 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val); |
| 1479 | } |
| 1480 | |
| 1481 | static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1482 | { |
| 1483 | vmcs_write32(VM_EXIT_CONTROLS, val); |
| 1484 | vmx->vm_exit_controls_shadow = val; |
| 1485 | } |
| 1486 | |
| 1487 | static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1488 | { |
| 1489 | if (vmx->vm_exit_controls_shadow != val) |
| 1490 | vm_exit_controls_init(vmx, val); |
| 1491 | } |
| 1492 | |
| 1493 | static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx) |
| 1494 | { |
| 1495 | return vmx->vm_exit_controls_shadow; |
| 1496 | } |
| 1497 | |
| 1498 | |
| 1499 | static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1500 | { |
| 1501 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val); |
| 1502 | } |
| 1503 | |
| 1504 | static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1505 | { |
| 1506 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val); |
| 1507 | } |
| 1508 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1509 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1510 | { |
| 1511 | vmx->segment_cache.bitmask = 0; |
| 1512 | } |
| 1513 | |
| 1514 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1515 | unsigned field) |
| 1516 | { |
| 1517 | bool ret; |
| 1518 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1519 | |
| 1520 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1521 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1522 | vmx->segment_cache.bitmask = 0; |
| 1523 | } |
| 1524 | ret = vmx->segment_cache.bitmask & mask; |
| 1525 | vmx->segment_cache.bitmask |= mask; |
| 1526 | return ret; |
| 1527 | } |
| 1528 | |
| 1529 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1530 | { |
| 1531 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1532 | |
| 1533 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1534 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1535 | return *p; |
| 1536 | } |
| 1537 | |
| 1538 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1539 | { |
| 1540 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1541 | |
| 1542 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1543 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1544 | return *p; |
| 1545 | } |
| 1546 | |
| 1547 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1548 | { |
| 1549 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1550 | |
| 1551 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1552 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1553 | return *p; |
| 1554 | } |
| 1555 | |
| 1556 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1557 | { |
| 1558 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1559 | |
| 1560 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1561 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1562 | return *p; |
| 1563 | } |
| 1564 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1565 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1566 | { |
| 1567 | u32 eb; |
| 1568 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1569 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
| 1570 | (1u << NM_VECTOR) | (1u << DB_VECTOR); |
| 1571 | if ((vcpu->guest_debug & |
| 1572 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1573 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1574 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1575 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1576 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1577 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1578 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 1579 | if (vcpu->fpu_active) |
| 1580 | eb &= ~(1u << NM_VECTOR); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1581 | |
| 1582 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1583 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1584 | * them to L1. When running L2, we will only handle the exceptions |
| 1585 | * specified above if L1 did not want them. |
| 1586 | */ |
| 1587 | if (is_guest_mode(vcpu)) |
| 1588 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1589 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1590 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1591 | } |
| 1592 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1593 | static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1594 | unsigned long entry, unsigned long exit) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1595 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1596 | vm_entry_controls_clearbit(vmx, entry); |
| 1597 | vm_exit_controls_clearbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1598 | } |
| 1599 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1600 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1601 | { |
| 1602 | unsigned i; |
| 1603 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1604 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1605 | switch (msr) { |
| 1606 | case MSR_EFER: |
| 1607 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1608 | clear_atomic_switch_msr_special(vmx, |
| 1609 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1610 | VM_EXIT_LOAD_IA32_EFER); |
| 1611 | return; |
| 1612 | } |
| 1613 | break; |
| 1614 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1615 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1616 | clear_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1617 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1618 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1619 | return; |
| 1620 | } |
| 1621 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1622 | } |
| 1623 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1624 | for (i = 0; i < m->nr; ++i) |
| 1625 | if (m->guest[i].index == msr) |
| 1626 | break; |
| 1627 | |
| 1628 | if (i == m->nr) |
| 1629 | return; |
| 1630 | --m->nr; |
| 1631 | m->guest[i] = m->guest[m->nr]; |
| 1632 | m->host[i] = m->host[m->nr]; |
| 1633 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1634 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1635 | } |
| 1636 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1637 | static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1638 | unsigned long entry, unsigned long exit, |
| 1639 | unsigned long guest_val_vmcs, unsigned long host_val_vmcs, |
| 1640 | u64 guest_val, u64 host_val) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1641 | { |
| 1642 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1643 | vmcs_write64(host_val_vmcs, host_val); |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1644 | vm_entry_controls_setbit(vmx, entry); |
| 1645 | vm_exit_controls_setbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1646 | } |
| 1647 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1648 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1649 | u64 guest_val, u64 host_val) |
| 1650 | { |
| 1651 | unsigned i; |
| 1652 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1653 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1654 | switch (msr) { |
| 1655 | case MSR_EFER: |
| 1656 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1657 | add_atomic_switch_msr_special(vmx, |
| 1658 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1659 | VM_EXIT_LOAD_IA32_EFER, |
| 1660 | GUEST_IA32_EFER, |
| 1661 | HOST_IA32_EFER, |
| 1662 | guest_val, host_val); |
| 1663 | return; |
| 1664 | } |
| 1665 | break; |
| 1666 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1667 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1668 | add_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1669 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1670 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1671 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1672 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1673 | guest_val, host_val); |
| 1674 | return; |
| 1675 | } |
| 1676 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1677 | } |
| 1678 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1679 | for (i = 0; i < m->nr; ++i) |
| 1680 | if (m->guest[i].index == msr) |
| 1681 | break; |
| 1682 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1683 | if (i == NR_AUTOLOAD_MSRS) { |
Michael S. Tsirkin | 6026620 | 2013-10-31 00:34:56 +0200 | [diff] [blame] | 1684 | printk_once(KERN_WARNING "Not enough msr switch entries. " |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1685 | "Can't add msr %x\n", msr); |
| 1686 | return; |
| 1687 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1688 | ++m->nr; |
| 1689 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1690 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1691 | } |
| 1692 | |
| 1693 | m->guest[i].index = msr; |
| 1694 | m->guest[i].value = guest_val; |
| 1695 | m->host[i].index = msr; |
| 1696 | m->host[i].value = host_val; |
| 1697 | } |
| 1698 | |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1699 | static void reload_tss(void) |
| 1700 | { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1701 | /* |
| 1702 | * VT restores TR but not its size. Useless. |
| 1703 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1704 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 1705 | struct desc_struct *descs; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1706 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1707 | descs = (void *)gdt->address; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1708 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
| 1709 | load_TR_desc(); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1710 | } |
| 1711 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1712 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1713 | { |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1714 | u64 guest_efer; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1715 | u64 ignore_bits; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1716 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1717 | guest_efer = vmx->vcpu.arch.efer; |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1718 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1719 | /* |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 1720 | * NX is emulated; LMA and LME handled by hardware; SCE meaningless |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1721 | * outside long mode |
| 1722 | */ |
| 1723 | ignore_bits = EFER_NX | EFER_SCE; |
| 1724 | #ifdef CONFIG_X86_64 |
| 1725 | ignore_bits |= EFER_LMA | EFER_LME; |
| 1726 | /* SCE is meaningful only in long mode on Intel */ |
| 1727 | if (guest_efer & EFER_LMA) |
| 1728 | ignore_bits &= ~(u64)EFER_SCE; |
| 1729 | #endif |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1730 | guest_efer &= ~ignore_bits; |
| 1731 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1732 | vmx->guest_msrs[efer_offset].data = guest_efer; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1733 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1734 | |
| 1735 | clear_atomic_switch_msr(vmx, MSR_EFER); |
Andy Lutomirski | f6577a5f | 2014-11-07 18:25:18 -0800 | [diff] [blame] | 1736 | |
| 1737 | /* |
| 1738 | * On EPT, we can't emulate NX, so we must switch EFER atomically. |
| 1739 | * On CPUs that support "load IA32_EFER", always switch EFER |
| 1740 | * atomically, since it's faster than switching it manually. |
| 1741 | */ |
| 1742 | if (cpu_has_load_ia32_efer || |
| 1743 | (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) { |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1744 | guest_efer = vmx->vcpu.arch.efer; |
| 1745 | if (!(guest_efer & EFER_LMA)) |
| 1746 | guest_efer &= ~EFER_LME; |
Andy Lutomirski | 54b98bf | 2014-11-10 11:19:15 -0800 | [diff] [blame] | 1747 | if (guest_efer != host_efer) |
| 1748 | add_atomic_switch_msr(vmx, MSR_EFER, |
| 1749 | guest_efer, host_efer); |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1750 | return false; |
| 1751 | } |
| 1752 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1753 | return true; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1754 | } |
| 1755 | |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1756 | static unsigned long segment_base(u16 selector) |
| 1757 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1758 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1759 | struct desc_struct *d; |
| 1760 | unsigned long table_base; |
| 1761 | unsigned long v; |
| 1762 | |
| 1763 | if (!(selector & ~3)) |
| 1764 | return 0; |
| 1765 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1766 | table_base = gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1767 | |
| 1768 | if (selector & 4) { /* from ldt */ |
| 1769 | u16 ldt_selector = kvm_read_ldt(); |
| 1770 | |
| 1771 | if (!(ldt_selector & ~3)) |
| 1772 | return 0; |
| 1773 | |
| 1774 | table_base = segment_base(ldt_selector); |
| 1775 | } |
| 1776 | d = (struct desc_struct *)(table_base + (selector & ~7)); |
| 1777 | v = get_desc_base(d); |
| 1778 | #ifdef CONFIG_X86_64 |
| 1779 | if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11)) |
| 1780 | v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32; |
| 1781 | #endif |
| 1782 | return v; |
| 1783 | } |
| 1784 | |
| 1785 | static inline unsigned long kvm_read_tr_base(void) |
| 1786 | { |
| 1787 | u16 tr; |
| 1788 | asm("str %0" : "=g"(tr)); |
| 1789 | return segment_base(tr); |
| 1790 | } |
| 1791 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1792 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1793 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1794 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1795 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1796 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1797 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1798 | return; |
| 1799 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1800 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1801 | /* |
| 1802 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 1803 | * allow segment selectors with cpl > 0 or ti == 1. |
| 1804 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1805 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1806 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1807 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1808 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1809 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1810 | vmx->host_state.fs_reload_needed = 0; |
| 1811 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1812 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1813 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1814 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1815 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1816 | if (!(vmx->host_state.gs_sel & 7)) |
| 1817 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1818 | else { |
| 1819 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1820 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1824 | savesegment(ds, vmx->host_state.ds_sel); |
| 1825 | savesegment(es, vmx->host_state.es_sel); |
| 1826 | #endif |
| 1827 | |
| 1828 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1829 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 1830 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 1831 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1832 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 1833 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1834 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1835 | |
| 1836 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1837 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 1838 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1839 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1840 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1841 | if (boot_cpu_has(X86_FEATURE_MPX)) |
| 1842 | rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1843 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 1844 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1845 | vmx->guest_msrs[i].data, |
| 1846 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1847 | } |
| 1848 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1849 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1850 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1851 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1852 | return; |
| 1853 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 1854 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1855 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1856 | #ifdef CONFIG_X86_64 |
| 1857 | if (is_long_mode(&vmx->vcpu)) |
| 1858 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 1859 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1860 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1861 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1862 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1863 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1864 | #else |
| 1865 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1866 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1867 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 1868 | if (vmx->host_state.fs_reload_needed) |
| 1869 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1870 | #ifdef CONFIG_X86_64 |
| 1871 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 1872 | loadsegment(ds, vmx->host_state.ds_sel); |
| 1873 | loadsegment(es, vmx->host_state.es_sel); |
| 1874 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1875 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1876 | reload_tss(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1877 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1878 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1879 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1880 | if (vmx->host_state.msr_host_bndcfgs) |
| 1881 | wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1882 | /* |
| 1883 | * If the FPU is not active (through the host task or |
| 1884 | * the guest vcpu), then restore the cr0.TS bit. |
| 1885 | */ |
| 1886 | if (!user_has_fpu() && !vmx->vcpu.guest_fpu_loaded) |
| 1887 | stts(); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1888 | load_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1889 | } |
| 1890 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1891 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 1892 | { |
| 1893 | preempt_disable(); |
| 1894 | __vmx_load_host_state(vmx); |
| 1895 | preempt_enable(); |
| 1896 | } |
| 1897 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1898 | /* |
| 1899 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 1900 | * vcpu mutex is already taken. |
| 1901 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 1902 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1903 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1904 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1905 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1906 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1907 | if (!vmm_exclusive) |
| 1908 | kvm_cpu_vmxon(phys_addr); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1909 | else if (vmx->loaded_vmcs->cpu != cpu) |
| 1910 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1911 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1912 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 1913 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 1914 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1915 | } |
| 1916 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1917 | if (vmx->loaded_vmcs->cpu != cpu) { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1918 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1919 | unsigned long sysenter_esp; |
| 1920 | |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 1921 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1922 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1923 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1924 | |
| 1925 | /* |
| 1926 | * Read loaded_vmcs->cpu should be before fetching |
| 1927 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 1928 | * See the comments in __loaded_vmcs_clear(). |
| 1929 | */ |
| 1930 | smp_rmb(); |
| 1931 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1932 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 1933 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1934 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 1935 | local_irq_enable(); |
| 1936 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1937 | /* |
| 1938 | * Linux uses per-cpu TSS and GDT, so set these when switching |
| 1939 | * processors. |
| 1940 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1941 | vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1942 | vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1943 | |
| 1944 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 1945 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1946 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1947 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1948 | } |
| 1949 | |
| 1950 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 1951 | { |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1952 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1953 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1954 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 1955 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 1956 | kvm_cpu_vmxoff(); |
| 1957 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1958 | } |
| 1959 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1960 | static void vmx_fpu_activate(struct kvm_vcpu *vcpu) |
| 1961 | { |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1962 | ulong cr0; |
| 1963 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1964 | if (vcpu->fpu_active) |
| 1965 | return; |
| 1966 | vcpu->fpu_active = 1; |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 1967 | cr0 = vmcs_readl(GUEST_CR0); |
| 1968 | cr0 &= ~(X86_CR0_TS | X86_CR0_MP); |
| 1969 | cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP); |
| 1970 | vmcs_writel(GUEST_CR0, cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1971 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1972 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1973 | if (is_guest_mode(vcpu)) |
| 1974 | vcpu->arch.cr0_guest_owned_bits &= |
| 1975 | ~get_vmcs12(vcpu)->cr0_guest_host_mask; |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1976 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1977 | } |
| 1978 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 1979 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 1980 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1981 | /* |
| 1982 | * Return the cr0 value that a nested guest would read. This is a combination |
| 1983 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 1984 | * its hypervisor (cr0_read_shadow). |
| 1985 | */ |
| 1986 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 1987 | { |
| 1988 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 1989 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 1990 | } |
| 1991 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 1992 | { |
| 1993 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 1994 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 1995 | } |
| 1996 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 1997 | static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu) |
| 1998 | { |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1999 | /* Note that there is no vcpu->fpu_active = 0 here. The caller must |
| 2000 | * set this *before* calling this function. |
| 2001 | */ |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2002 | vmx_decache_cr0_guest_bits(vcpu); |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2003 | vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2004 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2005 | vcpu->arch.cr0_guest_owned_bits = 0; |
| 2006 | 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] | 2007 | if (is_guest_mode(vcpu)) { |
| 2008 | /* |
| 2009 | * L1's specified read shadow might not contain the TS bit, |
| 2010 | * so now that we turned on shadowing of this bit, we need to |
| 2011 | * set this bit of the shadow. Like in nested_vmx_run we need |
| 2012 | * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet |
| 2013 | * up-to-date here because we just decached cr0.TS (and we'll |
| 2014 | * only update vmcs12->guest_cr0 on nested exit). |
| 2015 | */ |
| 2016 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2017 | vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) | |
| 2018 | (vcpu->arch.cr0 & X86_CR0_TS); |
| 2019 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 2020 | } else |
| 2021 | vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2022 | } |
| 2023 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2024 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 2025 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2026 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 2027 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2028 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 2029 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2030 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 2031 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2032 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2033 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 2034 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2035 | } |
| 2036 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2037 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2038 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2039 | } |
| 2040 | |
| 2041 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 2042 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2043 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2044 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2045 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2046 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2047 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2048 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2049 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 2050 | } |
| 2051 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2052 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2053 | { |
| 2054 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2055 | int ret = 0; |
| 2056 | |
| 2057 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2058 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2059 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2060 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2061 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2062 | return ret; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2063 | } |
| 2064 | |
| 2065 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 2066 | { |
| 2067 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2068 | u32 interruptibility = interruptibility_old; |
| 2069 | |
| 2070 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 2071 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2072 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2073 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2074 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2075 | interruptibility |= GUEST_INTR_STATE_STI; |
| 2076 | |
| 2077 | if ((interruptibility != interruptibility_old)) |
| 2078 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 2079 | } |
| 2080 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2081 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 2082 | { |
| 2083 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2084 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2085 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2086 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2087 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2088 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2089 | /* skipping an emulated instruction also counts */ |
| 2090 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2091 | } |
| 2092 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2093 | /* |
| 2094 | * KVM wants to inject page-faults which it got to the guest. This function |
| 2095 | * checks whether in a nested guest, we need to inject them to L1 or L2. |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2096 | */ |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2097 | static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2098 | { |
| 2099 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2100 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2101 | if (!(vmcs12->exception_bitmap & (1u << nr))) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2102 | return 0; |
| 2103 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 2104 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 2105 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 2106 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2107 | return 1; |
| 2108 | } |
| 2109 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2110 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 2111 | bool has_error_code, u32 error_code, |
| 2112 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2113 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2114 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2115 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2116 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2117 | if (!reinject && is_guest_mode(vcpu) && |
| 2118 | nested_vmx_check_exception(vcpu, nr)) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2119 | return; |
| 2120 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2121 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2122 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2123 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2124 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2125 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2126 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 2127 | int inc_eip = 0; |
| 2128 | if (kvm_exception_is_soft(nr)) |
| 2129 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 2130 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 2131 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2132 | return; |
| 2133 | } |
| 2134 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2135 | if (kvm_exception_is_soft(nr)) { |
| 2136 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 2137 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2138 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2139 | } else |
| 2140 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2141 | |
| 2142 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2143 | } |
| 2144 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2145 | static bool vmx_rdtscp_supported(void) |
| 2146 | { |
| 2147 | return cpu_has_vmx_rdtscp(); |
| 2148 | } |
| 2149 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2150 | static bool vmx_invpcid_supported(void) |
| 2151 | { |
| 2152 | return cpu_has_vmx_invpcid() && enable_ept; |
| 2153 | } |
| 2154 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2155 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2156 | * Swap MSR entry in host/guest MSR entry array. |
| 2157 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2158 | 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] | 2159 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2160 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2161 | |
| 2162 | tmp = vmx->guest_msrs[to]; |
| 2163 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 2164 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2165 | } |
| 2166 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2167 | static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu) |
| 2168 | { |
| 2169 | unsigned long *msr_bitmap; |
| 2170 | |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 2171 | if (is_guest_mode(vcpu)) |
| 2172 | msr_bitmap = vmx_msr_bitmap_nested; |
| 2173 | else if (irqchip_in_kernel(vcpu->kvm) && |
| 2174 | apic_x2apic_mode(vcpu->arch.apic)) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2175 | if (is_long_mode(vcpu)) |
| 2176 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic; |
| 2177 | else |
| 2178 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic; |
| 2179 | } else { |
| 2180 | if (is_long_mode(vcpu)) |
| 2181 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 2182 | else |
| 2183 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 2184 | } |
| 2185 | |
| 2186 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 2187 | } |
| 2188 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2189 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2190 | * Set up the vmcs to automatically save and restore system |
| 2191 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 2192 | * mode, as fiddling with msrs is very expensive. |
| 2193 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2194 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2195 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2196 | int save_nmsrs, index; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2197 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2198 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2199 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2200 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2201 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2202 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2203 | move_msr_up(vmx, index, save_nmsrs++); |
| 2204 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2205 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2206 | move_msr_up(vmx, index, save_nmsrs++); |
| 2207 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2208 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2209 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2210 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
| 2211 | if (index >= 0 && vmx->rdtscp_enabled) |
| 2212 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2213 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2214 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2215 | * if efer.sce is enabled. |
| 2216 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2217 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2218 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2219 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2220 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2221 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2222 | index = __find_msr_index(vmx, MSR_EFER); |
| 2223 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2224 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2225 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2226 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 2227 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2228 | if (cpu_has_vmx_msr_bitmap()) |
| 2229 | vmx_set_msr_bitmap(&vmx->vcpu); |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2230 | } |
| 2231 | |
| 2232 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2233 | * reads and returns guest's timestamp counter "register" |
| 2234 | * guest_tsc = host_tsc + tsc_offset -- 21.3 |
| 2235 | */ |
| 2236 | static u64 guest_read_tsc(void) |
| 2237 | { |
| 2238 | u64 host_tsc, tsc_offset; |
| 2239 | |
| 2240 | rdtscll(host_tsc); |
| 2241 | tsc_offset = vmcs_read64(TSC_OFFSET); |
| 2242 | return host_tsc + tsc_offset; |
| 2243 | } |
| 2244 | |
| 2245 | /* |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2246 | * Like guest_read_tsc, but always returns L1's notion of the timestamp |
| 2247 | * counter, even if a nested guest (L2) is currently running. |
| 2248 | */ |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 2249 | static 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] | 2250 | { |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 2251 | u64 tsc_offset; |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2252 | |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2253 | tsc_offset = is_guest_mode(vcpu) ? |
| 2254 | to_vmx(vcpu)->nested.vmcs01_tsc_offset : |
| 2255 | vmcs_read64(TSC_OFFSET); |
| 2256 | return host_tsc + tsc_offset; |
| 2257 | } |
| 2258 | |
| 2259 | /* |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2260 | * Engage any workarounds for mis-matched TSC rates. Currently limited to |
| 2261 | * software catchup for faster rates on slower CPUs. |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2262 | */ |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2263 | 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] | 2264 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2265 | if (!scale) |
| 2266 | return; |
| 2267 | |
| 2268 | if (user_tsc_khz > tsc_khz) { |
| 2269 | vcpu->arch.tsc_catchup = 1; |
| 2270 | vcpu->arch.tsc_always_catchup = 1; |
| 2271 | } else |
| 2272 | WARN(1, "user requested TSC rate below hardware speed\n"); |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2273 | } |
| 2274 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2275 | static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu) |
| 2276 | { |
| 2277 | return vmcs_read64(TSC_OFFSET); |
| 2278 | } |
| 2279 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2280 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2281 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2282 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2283 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2284 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2285 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2286 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2287 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 2288 | * to the spec, this should set L1's TSC; The offset that L1 |
| 2289 | * set for L2 remains unchanged, and still needs to be added |
| 2290 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2291 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2292 | struct vmcs12 *vmcs12; |
| 2293 | to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset; |
| 2294 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 2295 | vmcs12 = get_vmcs12(vcpu); |
| 2296 | vmcs_write64(TSC_OFFSET, offset + |
| 2297 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 2298 | vmcs12->tsc_offset : 0)); |
| 2299 | } else { |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2300 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, |
| 2301 | vmcs_read64(TSC_OFFSET), offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2302 | vmcs_write64(TSC_OFFSET, offset); |
| 2303 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2304 | } |
| 2305 | |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 2306 | 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] | 2307 | { |
| 2308 | u64 offset = vmcs_read64(TSC_OFFSET); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2309 | |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2310 | vmcs_write64(TSC_OFFSET, offset + adjustment); |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2311 | if (is_guest_mode(vcpu)) { |
| 2312 | /* Even when running L2, the adjustment needs to apply to L1 */ |
| 2313 | to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment; |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2314 | } else |
| 2315 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset, |
| 2316 | offset + adjustment); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2317 | } |
| 2318 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 2319 | static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 2320 | { |
| 2321 | return target_tsc - native_read_tsc(); |
| 2322 | } |
| 2323 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2324 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 2325 | { |
| 2326 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 2327 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 2328 | } |
| 2329 | |
| 2330 | /* |
| 2331 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 2332 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 2333 | * all guests if the "nested" module option is off, and can also be disabled |
| 2334 | * for a single guest by disabling its VMX cpuid bit. |
| 2335 | */ |
| 2336 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 2337 | { |
| 2338 | return nested && guest_cpuid_has_vmx(vcpu); |
| 2339 | } |
| 2340 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2341 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2342 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 2343 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 2344 | * The same values should also be used to verify that vmcs12 control fields are |
| 2345 | * valid during nested entry from L1 to L2. |
| 2346 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 2347 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 2348 | * bit in the high half is on if the corresponding bit in the control field |
| 2349 | * may be on. See also vmx_control_verify(). |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2350 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2351 | static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx) |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2352 | { |
| 2353 | /* |
| 2354 | * Note that as a general rule, the high half of the MSRs (bits in |
| 2355 | * the control fields which may be 1) should be initialized by the |
| 2356 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2357 | * can be supported) and the list of features we want to expose - |
| 2358 | * because they are known to be properly supported in our code. |
| 2359 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2360 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2361 | * reason is that if one of these bits is necessary, it will appear |
| 2362 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2363 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 2364 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 2365 | * These rules have exceptions below. |
| 2366 | */ |
| 2367 | |
| 2368 | /* pin-based controls */ |
Jan Kiszka | eabeaac | 2013-03-13 11:30:50 +0100 | [diff] [blame] | 2369 | rdmsr(MSR_IA32_VMX_PINBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2370 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2371 | vmx->nested.nested_vmx_pinbased_ctls_high); |
| 2372 | vmx->nested.nested_vmx_pinbased_ctls_low |= |
| 2373 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2374 | vmx->nested.nested_vmx_pinbased_ctls_high &= |
| 2375 | PIN_BASED_EXT_INTR_MASK | |
| 2376 | PIN_BASED_NMI_EXITING | |
| 2377 | PIN_BASED_VIRTUAL_NMIS; |
| 2378 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2379 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 2380 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 2381 | if (vmx_vm_has_apicv(vmx->vcpu.kvm)) |
| 2382 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2383 | PIN_BASED_POSTED_INTR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2384 | |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2385 | /* exit controls */ |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2386 | rdmsr(MSR_IA32_VMX_EXIT_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2387 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2388 | vmx->nested.nested_vmx_exit_ctls_high); |
| 2389 | vmx->nested.nested_vmx_exit_ctls_low = |
| 2390 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2391 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2392 | vmx->nested.nested_vmx_exit_ctls_high &= |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2393 | #ifdef CONFIG_X86_64 |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2394 | VM_EXIT_HOST_ADDR_SPACE_SIZE | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2395 | #endif |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2396 | VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2397 | vmx->nested.nested_vmx_exit_ctls_high |= |
| 2398 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2399 | VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2400 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; |
| 2401 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2402 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2403 | vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2404 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2405 | /* We support free control of debug control saving. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2406 | vmx->nested.nested_vmx_true_exit_ctls_low = |
| 2407 | vmx->nested.nested_vmx_exit_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2408 | ~VM_EXIT_SAVE_DEBUG_CONTROLS; |
| 2409 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2410 | /* entry controls */ |
| 2411 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2412 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2413 | vmx->nested.nested_vmx_entry_ctls_high); |
| 2414 | vmx->nested.nested_vmx_entry_ctls_low = |
| 2415 | VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2416 | vmx->nested.nested_vmx_entry_ctls_high &= |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2417 | #ifdef CONFIG_X86_64 |
| 2418 | VM_ENTRY_IA32E_MODE | |
| 2419 | #endif |
| 2420 | VM_ENTRY_LOAD_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2421 | vmx->nested.nested_vmx_entry_ctls_high |= |
| 2422 | (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2423 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2424 | vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2425 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2426 | /* We support free control of debug control loading. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2427 | vmx->nested.nested_vmx_true_entry_ctls_low = |
| 2428 | vmx->nested.nested_vmx_entry_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2429 | ~VM_ENTRY_LOAD_DEBUG_CONTROLS; |
| 2430 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2431 | /* cpu-based controls */ |
| 2432 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2433 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2434 | vmx->nested.nested_vmx_procbased_ctls_high); |
| 2435 | vmx->nested.nested_vmx_procbased_ctls_low = |
| 2436 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2437 | vmx->nested.nested_vmx_procbased_ctls_high &= |
Jan Kiszka | a294c9b | 2013-10-23 17:43:09 +0100 | [diff] [blame] | 2438 | CPU_BASED_VIRTUAL_INTR_PENDING | |
| 2439 | CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2440 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2441 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2442 | CPU_BASED_CR3_STORE_EXITING | |
| 2443 | #ifdef CONFIG_X86_64 |
| 2444 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2445 | #endif |
| 2446 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
| 2447 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | dbcb4e7 | 2012-08-13 15:38:22 +0300 | [diff] [blame] | 2448 | CPU_BASED_RDPMC_EXITING | CPU_BASED_RDTSC_EXITING | |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 2449 | CPU_BASED_PAUSE_EXITING | CPU_BASED_TPR_SHADOW | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2450 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
| 2451 | /* |
| 2452 | * We can allow some features even when not supported by the |
| 2453 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2454 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2455 | * without MSR bitmaps. |
| 2456 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2457 | vmx->nested.nested_vmx_procbased_ctls_high |= |
| 2458 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 560b7ee | 2014-06-16 13:59:42 +0200 | [diff] [blame] | 2459 | CPU_BASED_USE_MSR_BITMAPS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2460 | |
Jan Kiszka | 3dcdf3e | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2461 | /* We support free control of CR3 access interception. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2462 | vmx->nested.nested_vmx_true_procbased_ctls_low = |
| 2463 | vmx->nested.nested_vmx_procbased_ctls_low & |
Jan Kiszka | 3dcdf3e | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2464 | ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING); |
| 2465 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2466 | /* secondary cpu-based controls */ |
| 2467 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2468 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2469 | vmx->nested.nested_vmx_secondary_ctls_high); |
| 2470 | vmx->nested.nested_vmx_secondary_ctls_low = 0; |
| 2471 | vmx->nested.nested_vmx_secondary_ctls_high &= |
Jan Kiszka | d6851fb | 2013-02-23 22:34:39 +0100 | [diff] [blame] | 2472 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 2473 | SECONDARY_EXEC_RDTSCP | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 2474 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 2475 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 2476 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 2477 | SECONDARY_EXEC_WBINVD_EXITING | |
| 2478 | SECONDARY_EXEC_XSAVES; |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2479 | |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2480 | if (enable_ept) { |
| 2481 | /* nested EPT: emulate EPT also to L1 */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2482 | vmx->nested.nested_vmx_secondary_ctls_high |= |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2483 | SECONDARY_EXEC_ENABLE_EPT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2484 | vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT | |
Jan Kiszka | d3134db | 2013-10-23 14:40:31 +0100 | [diff] [blame] | 2485 | VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT | |
| 2486 | VMX_EPT_INVEPT_BIT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2487 | vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept; |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2488 | /* |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 2489 | * For nested guests, we don't do anything specific |
| 2490 | * for single context invalidation. Hence, only advertise |
| 2491 | * support for global context invalidation. |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2492 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2493 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT; |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2494 | } else |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2495 | vmx->nested.nested_vmx_ept_caps = 0; |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2496 | |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2497 | if (enable_unrestricted_guest) |
| 2498 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2499 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 2500 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2501 | /* miscellaneous data */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2502 | rdmsr(MSR_IA32_VMX_MISC, |
| 2503 | vmx->nested.nested_vmx_misc_low, |
| 2504 | vmx->nested.nested_vmx_misc_high); |
| 2505 | vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA; |
| 2506 | vmx->nested.nested_vmx_misc_low |= |
| 2507 | VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2508 | VMX_MISC_ACTIVITY_HLT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2509 | vmx->nested.nested_vmx_misc_high = 0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2510 | } |
| 2511 | |
| 2512 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2513 | { |
| 2514 | /* |
| 2515 | * Bits 0 in high must be 0, and bits 1 in low must be 1. |
| 2516 | */ |
| 2517 | return ((control & high) | low) == control; |
| 2518 | } |
| 2519 | |
| 2520 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2521 | { |
| 2522 | return low | ((u64)high << 32); |
| 2523 | } |
| 2524 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2525 | /* Returns 0 on success, non-0 otherwise. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2526 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2527 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2528 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 2529 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2530 | switch (msr_index) { |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2531 | case MSR_IA32_VMX_BASIC: |
| 2532 | /* |
| 2533 | * This MSR reports some information about VMX support. We |
| 2534 | * should return information about the VMX we emulate for the |
| 2535 | * guest, and the VMCS structure we give it - not about the |
| 2536 | * VMX support of the underlying hardware. |
| 2537 | */ |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2538 | *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2539 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2540 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2541 | break; |
| 2542 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2543 | case MSR_IA32_VMX_PINBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2544 | *pdata = vmx_control_msr( |
| 2545 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2546 | vmx->nested.nested_vmx_pinbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2547 | break; |
| 2548 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2549 | *pdata = vmx_control_msr( |
| 2550 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 2551 | vmx->nested.nested_vmx_procbased_ctls_high); |
Jan Kiszka | 3dcdf3e | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2552 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2553 | case MSR_IA32_VMX_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2554 | *pdata = vmx_control_msr( |
| 2555 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2556 | vmx->nested.nested_vmx_procbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2557 | break; |
| 2558 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2559 | *pdata = vmx_control_msr( |
| 2560 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 2561 | vmx->nested.nested_vmx_exit_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2562 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2563 | case MSR_IA32_VMX_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2564 | *pdata = vmx_control_msr( |
| 2565 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2566 | vmx->nested.nested_vmx_exit_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2567 | break; |
| 2568 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2569 | *pdata = vmx_control_msr( |
| 2570 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 2571 | vmx->nested.nested_vmx_entry_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2572 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2573 | case MSR_IA32_VMX_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2574 | *pdata = vmx_control_msr( |
| 2575 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2576 | vmx->nested.nested_vmx_entry_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2577 | break; |
| 2578 | case MSR_IA32_VMX_MISC: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2579 | *pdata = vmx_control_msr( |
| 2580 | vmx->nested.nested_vmx_misc_low, |
| 2581 | vmx->nested.nested_vmx_misc_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2582 | break; |
| 2583 | /* |
| 2584 | * These MSRs specify bits which the guest must keep fixed (on or off) |
| 2585 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2586 | * We picked the standard core2 setting. |
| 2587 | */ |
| 2588 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2589 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2590 | case MSR_IA32_VMX_CR0_FIXED0: |
| 2591 | *pdata = VMXON_CR0_ALWAYSON; |
| 2592 | break; |
| 2593 | case MSR_IA32_VMX_CR0_FIXED1: |
| 2594 | *pdata = -1ULL; |
| 2595 | break; |
| 2596 | case MSR_IA32_VMX_CR4_FIXED0: |
| 2597 | *pdata = VMXON_CR4_ALWAYSON; |
| 2598 | break; |
| 2599 | case MSR_IA32_VMX_CR4_FIXED1: |
| 2600 | *pdata = -1ULL; |
| 2601 | break; |
| 2602 | case MSR_IA32_VMX_VMCS_ENUM: |
Jan Kiszka | 5381417 | 2014-06-16 13:59:44 +0200 | [diff] [blame] | 2603 | *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2604 | break; |
| 2605 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2606 | *pdata = vmx_control_msr( |
| 2607 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2608 | vmx->nested.nested_vmx_secondary_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2609 | break; |
| 2610 | case MSR_IA32_VMX_EPT_VPID_CAP: |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2611 | /* Currently, no nested vpid support */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2612 | *pdata = vmx->nested.nested_vmx_ept_caps; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2613 | break; |
| 2614 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2615 | return 1; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 2616 | } |
| 2617 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2618 | return 0; |
| 2619 | } |
| 2620 | |
| 2621 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2622 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2623 | * Returns 0 on success, non-0 otherwise. |
| 2624 | * Assumes vcpu_load() was already called. |
| 2625 | */ |
| 2626 | static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2627 | { |
| 2628 | u64 data; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2629 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2630 | |
| 2631 | if (!pdata) { |
| 2632 | printk(KERN_ERR "BUG: get_msr called with NULL pdata\n"); |
| 2633 | return -EINVAL; |
| 2634 | } |
| 2635 | |
| 2636 | switch (msr_index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2637 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2638 | case MSR_FS_BASE: |
| 2639 | data = vmcs_readl(GUEST_FS_BASE); |
| 2640 | break; |
| 2641 | case MSR_GS_BASE: |
| 2642 | data = vmcs_readl(GUEST_GS_BASE); |
| 2643 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2644 | case MSR_KERNEL_GS_BASE: |
| 2645 | vmx_load_host_state(to_vmx(vcpu)); |
| 2646 | data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
| 2647 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2648 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2649 | case MSR_EFER: |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2650 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2651 | case MSR_IA32_TSC: |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2652 | data = guest_read_tsc(); |
| 2653 | break; |
| 2654 | case MSR_IA32_SYSENTER_CS: |
| 2655 | data = vmcs_read32(GUEST_SYSENTER_CS); |
| 2656 | break; |
| 2657 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2658 | data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2659 | break; |
| 2660 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2661 | data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2662 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2663 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2664 | if (!vmx_mpx_supported()) |
| 2665 | return 1; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2666 | data = vmcs_read64(GUEST_BNDCFGS); |
| 2667 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2668 | case MSR_IA32_FEATURE_CONTROL: |
| 2669 | if (!nested_vmx_allowed(vcpu)) |
| 2670 | return 1; |
| 2671 | data = to_vmx(vcpu)->nested.msr_ia32_feature_control; |
| 2672 | break; |
| 2673 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2674 | if (!nested_vmx_allowed(vcpu)) |
| 2675 | return 1; |
| 2676 | return vmx_get_vmx_msr(vcpu, msr_index, pdata); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2677 | case MSR_IA32_XSS: |
| 2678 | if (!vmx_xsaves_supported()) |
| 2679 | return 1; |
| 2680 | data = vcpu->arch.ia32_xss; |
| 2681 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2682 | case MSR_TSC_AUX: |
| 2683 | if (!to_vmx(vcpu)->rdtscp_enabled) |
| 2684 | return 1; |
| 2685 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2686 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2687 | msr = find_msr_entry(to_vmx(vcpu), msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2688 | if (msr) { |
| 2689 | data = msr->data; |
| 2690 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2691 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2692 | return kvm_get_msr_common(vcpu, msr_index, pdata); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2693 | } |
| 2694 | |
| 2695 | *pdata = data; |
| 2696 | return 0; |
| 2697 | } |
| 2698 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2699 | static void vmx_leave_nested(struct kvm_vcpu *vcpu); |
| 2700 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2701 | /* |
| 2702 | * Writes msr value into into the appropriate "register". |
| 2703 | * Returns 0 on success, non-0 otherwise. |
| 2704 | * Assumes vcpu_load() was already called. |
| 2705 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2706 | 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] | 2707 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2708 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2709 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2710 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2711 | u32 msr_index = msr_info->index; |
| 2712 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2713 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2714 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2715 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2716 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2717 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 2718 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2719 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2720 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2721 | vmcs_writel(GUEST_FS_BASE, data); |
| 2722 | break; |
| 2723 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2724 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2725 | vmcs_writel(GUEST_GS_BASE, data); |
| 2726 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2727 | case MSR_KERNEL_GS_BASE: |
| 2728 | vmx_load_host_state(vmx); |
| 2729 | vmx->msr_guest_kernel_gs_base = data; |
| 2730 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2731 | #endif |
| 2732 | case MSR_IA32_SYSENTER_CS: |
| 2733 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 2734 | break; |
| 2735 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2736 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2737 | break; |
| 2738 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2739 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2740 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2741 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2742 | if (!vmx_mpx_supported()) |
| 2743 | return 1; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2744 | vmcs_write64(GUEST_BNDCFGS, data); |
| 2745 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2746 | case MSR_IA32_TSC: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2747 | kvm_write_tsc(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2748 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2749 | case MSR_IA32_CR_PAT: |
| 2750 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Amit | 4566654 | 2014-09-18 22:39:44 +0300 | [diff] [blame] | 2751 | if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data)) |
| 2752 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2753 | vmcs_write64(GUEST_IA32_PAT, data); |
| 2754 | vcpu->arch.pat = data; |
| 2755 | break; |
| 2756 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2757 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2758 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2759 | case MSR_IA32_TSC_ADJUST: |
| 2760 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2761 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2762 | case MSR_IA32_FEATURE_CONTROL: |
| 2763 | if (!nested_vmx_allowed(vcpu) || |
| 2764 | (to_vmx(vcpu)->nested.msr_ia32_feature_control & |
| 2765 | FEATURE_CONTROL_LOCKED && !msr_info->host_initiated)) |
| 2766 | return 1; |
| 2767 | vmx->nested.msr_ia32_feature_control = data; |
| 2768 | if (msr_info->host_initiated && data == 0) |
| 2769 | vmx_leave_nested(vcpu); |
| 2770 | break; |
| 2771 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2772 | return 1; /* they are read-only */ |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2773 | case MSR_IA32_XSS: |
| 2774 | if (!vmx_xsaves_supported()) |
| 2775 | return 1; |
| 2776 | /* |
| 2777 | * The only supported bit as of Skylake is bit 8, but |
| 2778 | * it is not supported on KVM. |
| 2779 | */ |
| 2780 | if (data != 0) |
| 2781 | return 1; |
| 2782 | vcpu->arch.ia32_xss = data; |
| 2783 | if (vcpu->arch.ia32_xss != host_xss) |
| 2784 | add_atomic_switch_msr(vmx, MSR_IA32_XSS, |
| 2785 | vcpu->arch.ia32_xss, host_xss); |
| 2786 | else |
| 2787 | clear_atomic_switch_msr(vmx, MSR_IA32_XSS); |
| 2788 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2789 | case MSR_TSC_AUX: |
| 2790 | if (!vmx->rdtscp_enabled) |
| 2791 | return 1; |
| 2792 | /* Check reserved bit, higher 32 bits should be zero */ |
| 2793 | if ((data >> 32) != 0) |
| 2794 | return 1; |
| 2795 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2796 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2797 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2798 | if (msr) { |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2799 | u64 old_msr_data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2800 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2801 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 2802 | preempt_disable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2803 | ret = kvm_set_shared_msr(msr->index, msr->data, |
| 2804 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2805 | preempt_enable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2806 | if (ret) |
| 2807 | msr->data = old_msr_data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2808 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2809 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2810 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2811 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2812 | } |
| 2813 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2814 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2815 | } |
| 2816 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2817 | 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] | 2818 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2819 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 2820 | switch (reg) { |
| 2821 | case VCPU_REGS_RSP: |
| 2822 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 2823 | break; |
| 2824 | case VCPU_REGS_RIP: |
| 2825 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 2826 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2827 | case VCPU_EXREG_PDPTR: |
| 2828 | if (enable_ept) |
| 2829 | ept_save_pdptrs(vcpu); |
| 2830 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2831 | default: |
| 2832 | break; |
| 2833 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2834 | } |
| 2835 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2836 | static __init int cpu_has_kvm_support(void) |
| 2837 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 2838 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2839 | } |
| 2840 | |
| 2841 | static __init int vmx_disabled_by_bios(void) |
| 2842 | { |
| 2843 | u64 msr; |
| 2844 | |
| 2845 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2846 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2847 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2848 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 2849 | && tboot_enabled()) |
| 2850 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2851 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2852 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2853 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2854 | && !tboot_enabled()) { |
| 2855 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2856 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2857 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2858 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2859 | /* launched w/o TXT and VMX disabled */ |
| 2860 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 2861 | && !tboot_enabled()) |
| 2862 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2863 | } |
| 2864 | |
| 2865 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2866 | } |
| 2867 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2868 | static void kvm_cpu_vmxon(u64 addr) |
| 2869 | { |
| 2870 | asm volatile (ASM_VMX_VMXON_RAX |
| 2871 | : : "a"(&addr), "m"(addr) |
| 2872 | : "memory", "cc"); |
| 2873 | } |
| 2874 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 2875 | static int hardware_enable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2876 | { |
| 2877 | int cpu = raw_smp_processor_id(); |
| 2878 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2879 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2880 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 2881 | if (cr4_read_shadow() & X86_CR4_VMXE) |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2882 | return -EBUSY; |
| 2883 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2884 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2885 | |
| 2886 | /* |
| 2887 | * Now we can enable the vmclear operation in kdump |
| 2888 | * since the loaded_vmcss_on_cpu list on this cpu |
| 2889 | * has been initialized. |
| 2890 | * |
| 2891 | * Though the cpu is not in VMX operation now, there |
| 2892 | * is no problem to enable the vmclear operation |
| 2893 | * for the loaded_vmcss_on_cpu list is empty! |
| 2894 | */ |
| 2895 | crash_enable_local_vmclear(cpu); |
| 2896 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2897 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2898 | |
| 2899 | test_bits = FEATURE_CONTROL_LOCKED; |
| 2900 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 2901 | if (tboot_enabled()) |
| 2902 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 2903 | |
| 2904 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2905 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2906 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 2907 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 2908 | cr4_set_bits(X86_CR4_VMXE); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2909 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2910 | if (vmm_exclusive) { |
| 2911 | kvm_cpu_vmxon(phys_addr); |
| 2912 | ept_sync_global(); |
| 2913 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2914 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 2915 | native_store_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 2916 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2917 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2918 | } |
| 2919 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2920 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2921 | { |
| 2922 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2923 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2924 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2925 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 2926 | loaded_vmcss_on_cpu_link) |
| 2927 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 2928 | } |
| 2929 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2930 | |
| 2931 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 2932 | * tricks. |
| 2933 | */ |
| 2934 | static void kvm_cpu_vmxoff(void) |
| 2935 | { |
| 2936 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 2937 | } |
| 2938 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 2939 | static void hardware_disable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2940 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2941 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2942 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2943 | kvm_cpu_vmxoff(); |
| 2944 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 2945 | cr4_clear_bits(X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2946 | } |
| 2947 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2948 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 2949 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2950 | { |
| 2951 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2952 | u32 ctl = ctl_min | ctl_opt; |
| 2953 | |
| 2954 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2955 | |
| 2956 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 2957 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 2958 | |
| 2959 | /* Ensure minimum (required) set of control bits are supported. */ |
| 2960 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2961 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2962 | |
| 2963 | *result = ctl; |
| 2964 | return 0; |
| 2965 | } |
| 2966 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 2967 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 2968 | { |
| 2969 | u32 vmx_msr_low, vmx_msr_high; |
| 2970 | |
| 2971 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 2972 | return vmx_msr_high & ctl; |
| 2973 | } |
| 2974 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 2975 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2976 | { |
| 2977 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2978 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2979 | u32 _pin_based_exec_control = 0; |
| 2980 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 2981 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2982 | u32 _vmexit_control = 0; |
| 2983 | u32 _vmentry_control = 0; |
| 2984 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 2985 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2986 | #ifdef CONFIG_X86_64 |
| 2987 | CPU_BASED_CR8_LOAD_EXITING | |
| 2988 | CPU_BASED_CR8_STORE_EXITING | |
| 2989 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 2990 | CPU_BASED_CR3_LOAD_EXITING | |
| 2991 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 2992 | CPU_BASED_USE_IO_BITMAPS | |
| 2993 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2994 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 2995 | CPU_BASED_MWAIT_EXITING | |
| 2996 | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 2997 | CPU_BASED_INVLPG_EXITING | |
| 2998 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 2999 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3000 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3001 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3002 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3003 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 3004 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3005 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3006 | #ifdef CONFIG_X86_64 |
| 3007 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3008 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 3009 | ~CPU_BASED_CR8_STORE_EXITING; |
| 3010 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3011 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3012 | min2 = 0; |
| 3013 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3014 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3015 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3016 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3017 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3018 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3019 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3020 | SECONDARY_EXEC_RDTSCP | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3021 | SECONDARY_EXEC_ENABLE_INVPCID | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3022 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 3023 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3024 | SECONDARY_EXEC_SHADOW_VMCS | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 3025 | SECONDARY_EXEC_XSAVES | |
| 3026 | SECONDARY_EXEC_ENABLE_PML; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3027 | if (adjust_vmx_controls(min2, opt2, |
| 3028 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3029 | &_cpu_based_2nd_exec_control) < 0) |
| 3030 | return -EIO; |
| 3031 | } |
| 3032 | #ifndef CONFIG_X86_64 |
| 3033 | if (!(_cpu_based_2nd_exec_control & |
| 3034 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 3035 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3036 | #endif |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3037 | |
| 3038 | if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3039 | _cpu_based_2nd_exec_control &= ~( |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3040 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3041 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 3042 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3043 | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3044 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3045 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 3046 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 3047 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3048 | CPU_BASED_CR3_STORE_EXITING | |
| 3049 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3050 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 3051 | vmx_capability.ept, vmx_capability.vpid); |
| 3052 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3053 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 3054 | min = VM_EXIT_SAVE_DEBUG_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3055 | #ifdef CONFIG_X86_64 |
| 3056 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 3057 | #endif |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 3058 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3059 | VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3060 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 3061 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3062 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3063 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3064 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
| 3065 | opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR; |
| 3066 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 3067 | &_pin_based_exec_control) < 0) |
| 3068 | return -EIO; |
| 3069 | |
| 3070 | if (!(_cpu_based_2nd_exec_control & |
| 3071 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) || |
| 3072 | !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT)) |
| 3073 | _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR; |
| 3074 | |
Paolo Bonzini | c845f9c | 2014-02-21 10:55:44 +0100 | [diff] [blame] | 3075 | min = VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3076 | opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3077 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 3078 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3079 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3080 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3081 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3082 | |
| 3083 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 3084 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3085 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3086 | |
| 3087 | #ifdef CONFIG_X86_64 |
| 3088 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 3089 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3090 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3091 | #endif |
| 3092 | |
| 3093 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 3094 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3095 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3096 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3097 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
| 3098 | vmcs_conf->order = get_order(vmcs_config.size); |
| 3099 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3100 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3101 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 3102 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3103 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3104 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 3105 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3106 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3107 | cpu_has_load_ia32_efer = |
| 3108 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3109 | VM_ENTRY_LOAD_IA32_EFER) |
| 3110 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3111 | VM_EXIT_LOAD_IA32_EFER); |
| 3112 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3113 | cpu_has_load_perf_global_ctrl = |
| 3114 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3115 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 3116 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3117 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 3118 | |
| 3119 | /* |
| 3120 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
| 3121 | * but due to arrata below it can't be used. Workaround is to use |
| 3122 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 3123 | * |
| 3124 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 3125 | * |
| 3126 | * AAK155 (model 26) |
| 3127 | * AAP115 (model 30) |
| 3128 | * AAT100 (model 37) |
| 3129 | * BC86,AAY89,BD102 (model 44) |
| 3130 | * BA97 (model 46) |
| 3131 | * |
| 3132 | */ |
| 3133 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 3134 | switch (boot_cpu_data.x86_model) { |
| 3135 | case 26: |
| 3136 | case 30: |
| 3137 | case 37: |
| 3138 | case 44: |
| 3139 | case 46: |
| 3140 | cpu_has_load_perf_global_ctrl = false; |
| 3141 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 3142 | "does not work properly. Using workaround\n"); |
| 3143 | break; |
| 3144 | default: |
| 3145 | break; |
| 3146 | } |
| 3147 | } |
| 3148 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3149 | if (cpu_has_xsaves) |
| 3150 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 3151 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3152 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3153 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3154 | |
| 3155 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 3156 | { |
| 3157 | int node = cpu_to_node(cpu); |
| 3158 | struct page *pages; |
| 3159 | struct vmcs *vmcs; |
| 3160 | |
Mel Gorman | 6484eb3 | 2009-06-16 15:31:54 -0700 | [diff] [blame] | 3161 | pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3162 | if (!pages) |
| 3163 | return NULL; |
| 3164 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3165 | memset(vmcs, 0, vmcs_config.size); |
| 3166 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3167 | return vmcs; |
| 3168 | } |
| 3169 | |
| 3170 | static struct vmcs *alloc_vmcs(void) |
| 3171 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 3172 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3173 | } |
| 3174 | |
| 3175 | static void free_vmcs(struct vmcs *vmcs) |
| 3176 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3177 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3178 | } |
| 3179 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3180 | /* |
| 3181 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 3182 | */ |
| 3183 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 3184 | { |
| 3185 | if (!loaded_vmcs->vmcs) |
| 3186 | return; |
| 3187 | loaded_vmcs_clear(loaded_vmcs); |
| 3188 | free_vmcs(loaded_vmcs->vmcs); |
| 3189 | loaded_vmcs->vmcs = NULL; |
| 3190 | } |
| 3191 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 3192 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3193 | { |
| 3194 | int cpu; |
| 3195 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3196 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3197 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3198 | per_cpu(vmxarea, cpu) = NULL; |
| 3199 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3200 | } |
| 3201 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3202 | static void init_vmcs_shadow_fields(void) |
| 3203 | { |
| 3204 | int i, j; |
| 3205 | |
| 3206 | /* No checks for read only fields yet */ |
| 3207 | |
| 3208 | for (i = j = 0; i < max_shadow_read_write_fields; i++) { |
| 3209 | switch (shadow_read_write_fields[i]) { |
| 3210 | case GUEST_BNDCFGS: |
| 3211 | if (!vmx_mpx_supported()) |
| 3212 | continue; |
| 3213 | break; |
| 3214 | default: |
| 3215 | break; |
| 3216 | } |
| 3217 | |
| 3218 | if (j < i) |
| 3219 | shadow_read_write_fields[j] = |
| 3220 | shadow_read_write_fields[i]; |
| 3221 | j++; |
| 3222 | } |
| 3223 | max_shadow_read_write_fields = j; |
| 3224 | |
| 3225 | /* shadowed fields guest access without vmexit */ |
| 3226 | for (i = 0; i < max_shadow_read_write_fields; i++) { |
| 3227 | clear_bit(shadow_read_write_fields[i], |
| 3228 | vmx_vmwrite_bitmap); |
| 3229 | clear_bit(shadow_read_write_fields[i], |
| 3230 | vmx_vmread_bitmap); |
| 3231 | } |
| 3232 | for (i = 0; i < max_shadow_read_only_fields; i++) |
| 3233 | clear_bit(shadow_read_only_fields[i], |
| 3234 | vmx_vmread_bitmap); |
| 3235 | } |
| 3236 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3237 | static __init int alloc_kvm_area(void) |
| 3238 | { |
| 3239 | int cpu; |
| 3240 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3241 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3242 | struct vmcs *vmcs; |
| 3243 | |
| 3244 | vmcs = alloc_vmcs_cpu(cpu); |
| 3245 | if (!vmcs) { |
| 3246 | free_kvm_area(); |
| 3247 | return -ENOMEM; |
| 3248 | } |
| 3249 | |
| 3250 | per_cpu(vmxarea, cpu) = vmcs; |
| 3251 | } |
| 3252 | return 0; |
| 3253 | } |
| 3254 | |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3255 | static bool emulation_required(struct kvm_vcpu *vcpu) |
| 3256 | { |
| 3257 | return emulate_invalid_guest_state && !guest_state_valid(vcpu); |
| 3258 | } |
| 3259 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3260 | static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg, |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3261 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3262 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3263 | if (!emulate_invalid_guest_state) { |
| 3264 | /* |
| 3265 | * CS and SS RPL should be equal during guest entry according |
| 3266 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 3267 | * is in the middle of the transition from real mode to |
| 3268 | * protected mode it is safe to assume that RPL 0 is a good |
| 3269 | * default value. |
| 3270 | */ |
| 3271 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3272 | save->selector &= ~SEGMENT_RPL_MASK; |
| 3273 | save->dpl = save->selector & SEGMENT_RPL_MASK; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3274 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3275 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3276 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3277 | } |
| 3278 | |
| 3279 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 3280 | { |
| 3281 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3282 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3283 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3284 | /* |
| 3285 | * Update real mode segment cache. It may be not up-to-date if sement |
| 3286 | * register was written while vcpu was in a guest mode. |
| 3287 | */ |
| 3288 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3289 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3290 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3291 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 3292 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3293 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 3294 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3295 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3296 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3297 | vmx_segment_cache_clear(vmx); |
| 3298 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3299 | 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] | 3300 | |
| 3301 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3302 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 3303 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3304 | vmcs_writel(GUEST_RFLAGS, flags); |
| 3305 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3306 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 3307 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3308 | |
| 3309 | update_exception_bitmap(vcpu); |
| 3310 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3311 | fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3312 | fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3313 | fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3314 | fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3315 | fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 3316 | fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3317 | } |
| 3318 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3319 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3320 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3321 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3322 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3323 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3324 | var.dpl = 0x3; |
| 3325 | if (seg == VCPU_SREG_CS) |
| 3326 | var.type = 0x3; |
| 3327 | |
| 3328 | if (!emulate_invalid_guest_state) { |
| 3329 | var.selector = var.base >> 4; |
| 3330 | var.base = var.base & 0xffff0; |
| 3331 | var.limit = 0xffff; |
| 3332 | var.g = 0; |
| 3333 | var.db = 0; |
| 3334 | var.present = 1; |
| 3335 | var.s = 1; |
| 3336 | var.l = 0; |
| 3337 | var.unusable = 0; |
| 3338 | var.type = 0x3; |
| 3339 | var.avl = 0; |
| 3340 | if (save->base & 0xf) |
| 3341 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 3342 | "paragraph aligned when entering " |
| 3343 | "protected mode (seg=%d)", seg); |
| 3344 | } |
| 3345 | |
| 3346 | vmcs_write16(sf->selector, var.selector); |
| 3347 | vmcs_write32(sf->base, var.base); |
| 3348 | vmcs_write32(sf->limit, var.limit); |
| 3349 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3350 | } |
| 3351 | |
| 3352 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 3353 | { |
| 3354 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3355 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3356 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3357 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 3358 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3359 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3360 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3361 | 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] | 3362 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3363 | 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] | 3364 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3365 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3366 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3367 | /* |
| 3368 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3369 | * vcpu. Warn the user that an update is overdue. |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3370 | */ |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3371 | if (!vcpu->kvm->arch.tss_addr) |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3372 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 3373 | "called before entering vcpu\n"); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3374 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3375 | vmx_segment_cache_clear(vmx); |
| 3376 | |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3377 | vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3378 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3379 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3380 | |
| 3381 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3382 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3383 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 3384 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3385 | |
| 3386 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3387 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3388 | update_exception_bitmap(vcpu); |
| 3389 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3390 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3391 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3392 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3393 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3394 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 3395 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3396 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 3397 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3398 | } |
| 3399 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3400 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 3401 | { |
| 3402 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3403 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 3404 | |
| 3405 | if (!msr) |
| 3406 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3407 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3408 | /* |
| 3409 | * Force kernel_gs_base reloading before EFER changes, as control |
| 3410 | * of this msr depends on is_long_mode(). |
| 3411 | */ |
| 3412 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3413 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3414 | if (efer & EFER_LMA) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3415 | vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3416 | msr->data = efer; |
| 3417 | } else { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3418 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3419 | |
| 3420 | msr->data = efer & ~EFER_LME; |
| 3421 | } |
| 3422 | setup_msrs(vmx); |
| 3423 | } |
| 3424 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3425 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3426 | |
| 3427 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 3428 | { |
| 3429 | u32 guest_tr_ar; |
| 3430 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3431 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 3432 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3433 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
| 3434 | if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 3435 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 3436 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3437 | vmcs_write32(GUEST_TR_AR_BYTES, |
| 3438 | (guest_tr_ar & ~AR_TYPE_MASK) |
| 3439 | | AR_TYPE_BUSY_64_TSS); |
| 3440 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3441 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3442 | } |
| 3443 | |
| 3444 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 3445 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3446 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3447 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3448 | } |
| 3449 | |
| 3450 | #endif |
| 3451 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3452 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 3453 | { |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 3454 | vpid_sync_context(to_vmx(vcpu)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3455 | if (enable_ept) { |
| 3456 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3457 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 3458 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3459 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3460 | } |
| 3461 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 3462 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 3463 | { |
| 3464 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 3465 | |
| 3466 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 3467 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 3468 | } |
| 3469 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 3470 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 3471 | { |
| 3472 | if (enable_ept && is_paging(vcpu)) |
| 3473 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 3474 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 3475 | } |
| 3476 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 3477 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3478 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3479 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 3480 | |
| 3481 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 3482 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3483 | } |
| 3484 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3485 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 3486 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3487 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3488 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3489 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 3490 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 3491 | return; |
| 3492 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3493 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3494 | vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]); |
| 3495 | vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]); |
| 3496 | vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]); |
| 3497 | vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3498 | } |
| 3499 | } |
| 3500 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3501 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 3502 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3503 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3504 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3505 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3506 | mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 3507 | mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 3508 | mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 3509 | mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3510 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3511 | |
| 3512 | __set_bit(VCPU_EXREG_PDPTR, |
| 3513 | (unsigned long *)&vcpu->arch.regs_avail); |
| 3514 | __set_bit(VCPU_EXREG_PDPTR, |
| 3515 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3516 | } |
| 3517 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3518 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3519 | |
| 3520 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 3521 | unsigned long cr0, |
| 3522 | struct kvm_vcpu *vcpu) |
| 3523 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 3524 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 3525 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3526 | if (!(cr0 & X86_CR0_PG)) { |
| 3527 | /* From paging/starting to nonpaging */ |
| 3528 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3529 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3530 | (CPU_BASED_CR3_LOAD_EXITING | |
| 3531 | CPU_BASED_CR3_STORE_EXITING)); |
| 3532 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3533 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3534 | } else if (!is_paging(vcpu)) { |
| 3535 | /* From nonpaging to paging */ |
| 3536 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3537 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3538 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3539 | CPU_BASED_CR3_STORE_EXITING)); |
| 3540 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3541 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3542 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 3543 | |
| 3544 | if (!(cr0 & X86_CR0_WP)) |
| 3545 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3546 | } |
| 3547 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3548 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 3549 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3550 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3551 | unsigned long hw_cr0; |
| 3552 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3553 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3554 | if (enable_unrestricted_guest) |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3555 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3556 | else { |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3557 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3558 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3559 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
| 3560 | enter_pmode(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3561 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3562 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
| 3563 | enter_rmode(vcpu); |
| 3564 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3565 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3566 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3567 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3568 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3569 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3570 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3571 | exit_lmode(vcpu); |
| 3572 | } |
| 3573 | #endif |
| 3574 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3575 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3576 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 3577 | |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3578 | if (!vcpu->fpu_active) |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 3579 | hw_cr0 |= X86_CR0_TS | X86_CR0_MP; |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3580 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3581 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3582 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3583 | vcpu->arch.cr0 = cr0; |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3584 | |
| 3585 | /* depends on vcpu->arch.cr0 to be set to a new value */ |
| 3586 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3587 | } |
| 3588 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3589 | static u64 construct_eptp(unsigned long root_hpa) |
| 3590 | { |
| 3591 | u64 eptp; |
| 3592 | |
| 3593 | /* TODO write the value reading from MSR */ |
| 3594 | eptp = VMX_EPT_DEFAULT_MT | |
| 3595 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
Xudong Hao | b38f993 | 2012-05-28 19:33:36 +0800 | [diff] [blame] | 3596 | if (enable_ept_ad_bits) |
| 3597 | eptp |= VMX_EPT_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3598 | eptp |= (root_hpa & PAGE_MASK); |
| 3599 | |
| 3600 | return eptp; |
| 3601 | } |
| 3602 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3603 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 3604 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3605 | unsigned long guest_cr3; |
| 3606 | u64 eptp; |
| 3607 | |
| 3608 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3609 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3610 | eptp = construct_eptp(cr3); |
| 3611 | vmcs_write64(EPT_POINTER, eptp); |
Jan Kiszka | 59ab5a8 | 2013-08-08 16:26:29 +0200 | [diff] [blame] | 3612 | if (is_paging(vcpu) || is_guest_mode(vcpu)) |
| 3613 | guest_cr3 = kvm_read_cr3(vcpu); |
| 3614 | else |
| 3615 | guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 3616 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3617 | } |
| 3618 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3619 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3620 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3621 | } |
| 3622 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3623 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3624 | { |
Ben Serebrin | 085e68e | 2015-04-16 11:58:05 -0700 | [diff] [blame] | 3625 | /* |
| 3626 | * Pass through host's Machine Check Enable value to hw_cr4, which |
| 3627 | * is in force while we are in guest mode. Do not let guests control |
| 3628 | * this bit, even if host CR4.MCE == 0. |
| 3629 | */ |
| 3630 | unsigned long hw_cr4 = |
| 3631 | (cr4_read_shadow() & X86_CR4_MCE) | |
| 3632 | (cr4 & ~X86_CR4_MCE) | |
| 3633 | (to_vmx(vcpu)->rmode.vm86_active ? |
| 3634 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3635 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3636 | if (cr4 & X86_CR4_VMXE) { |
| 3637 | /* |
| 3638 | * To use VMXON (and later other VMX instructions), a guest |
| 3639 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 3640 | * So basically the check on whether to allow nested VMX |
| 3641 | * is here. |
| 3642 | */ |
| 3643 | if (!nested_vmx_allowed(vcpu)) |
| 3644 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 3645 | } |
| 3646 | if (to_vmx(vcpu)->nested.vmxon && |
| 3647 | ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3648 | return 1; |
| 3649 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3650 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3651 | if (enable_ept) { |
| 3652 | if (!is_paging(vcpu)) { |
| 3653 | hw_cr4 &= ~X86_CR4_PAE; |
| 3654 | hw_cr4 |= X86_CR4_PSE; |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3655 | /* |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3656 | * SMEP/SMAP is disabled if CPU is in non-paging mode |
| 3657 | * in hardware. However KVM always uses paging mode to |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3658 | * emulate guest non-paging mode with TDP. |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3659 | * To emulate this behavior, SMEP/SMAP needs to be |
| 3660 | * manually disabled when guest switches to non-paging |
| 3661 | * mode. |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3662 | */ |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3663 | hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP); |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3664 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 3665 | hw_cr4 &= ~X86_CR4_PAE; |
| 3666 | } |
| 3667 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3668 | |
| 3669 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 3670 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3671 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3672 | } |
| 3673 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3674 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 3675 | struct kvm_segment *var, int seg) |
| 3676 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3677 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3678 | u32 ar; |
| 3679 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 3680 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3681 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3682 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3683 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3684 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 3685 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3686 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3687 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3688 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3689 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3690 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 3691 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3692 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3693 | var->unusable = (ar >> 16) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3694 | var->type = ar & 15; |
| 3695 | var->s = (ar >> 4) & 1; |
| 3696 | var->dpl = (ar >> 5) & 3; |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3697 | /* |
| 3698 | * Some userspaces do not preserve unusable property. Since usable |
| 3699 | * segment has to be present according to VMX spec we can use present |
| 3700 | * property to amend userspace bug by making unusable segment always |
| 3701 | * nonpresent. vmx_segment_access_rights() already marks nonpresent |
| 3702 | * segment as unusable. |
| 3703 | */ |
| 3704 | var->present = !var->unusable; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3705 | var->avl = (ar >> 12) & 1; |
| 3706 | var->l = (ar >> 13) & 1; |
| 3707 | var->db = (ar >> 14) & 1; |
| 3708 | var->g = (ar >> 15) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3709 | } |
| 3710 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3711 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 3712 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3713 | struct kvm_segment s; |
| 3714 | |
| 3715 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 3716 | vmx_get_segment(vcpu, &s, seg); |
| 3717 | return s.base; |
| 3718 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3719 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3720 | } |
| 3721 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3722 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3723 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3724 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3725 | |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3726 | if (unlikely(vmx->rmode.vm86_active)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3727 | return 0; |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3728 | else { |
| 3729 | int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS); |
| 3730 | return AR_DPL(ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3731 | } |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3732 | } |
| 3733 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3734 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3735 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3736 | u32 ar; |
| 3737 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 3738 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3739 | ar = 1 << 16; |
| 3740 | else { |
| 3741 | ar = var->type & 15; |
| 3742 | ar |= (var->s & 1) << 4; |
| 3743 | ar |= (var->dpl & 3) << 5; |
| 3744 | ar |= (var->present & 1) << 7; |
| 3745 | ar |= (var->avl & 1) << 12; |
| 3746 | ar |= (var->l & 1) << 13; |
| 3747 | ar |= (var->db & 1) << 14; |
| 3748 | ar |= (var->g & 1) << 15; |
| 3749 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3750 | |
| 3751 | return ar; |
| 3752 | } |
| 3753 | |
| 3754 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 3755 | struct kvm_segment *var, int seg) |
| 3756 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3757 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3758 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3759 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3760 | vmx_segment_cache_clear(vmx); |
| 3761 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3762 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 3763 | vmx->rmode.segs[seg] = *var; |
| 3764 | if (seg == VCPU_SREG_TR) |
| 3765 | vmcs_write16(sf->selector, var->selector); |
| 3766 | else if (var->s) |
| 3767 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3768 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3769 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3770 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3771 | vmcs_writel(sf->base, var->base); |
| 3772 | vmcs_write32(sf->limit, var->limit); |
| 3773 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3774 | |
| 3775 | /* |
| 3776 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 3777 | * qemu binaries. |
| 3778 | * IA32 arch specifies that at the time of processor reset the |
| 3779 | * "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] | 3780 | * 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] | 3781 | * state vmexit when "unrestricted guest" mode is turned on. |
| 3782 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 3783 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 3784 | * kvm hack. |
| 3785 | */ |
| 3786 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3787 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3788 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3789 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3790 | |
| 3791 | out: |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 3792 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3793 | } |
| 3794 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3795 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 3796 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3797 | 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] | 3798 | |
| 3799 | *db = (ar >> 14) & 1; |
| 3800 | *l = (ar >> 13) & 1; |
| 3801 | } |
| 3802 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3803 | 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] | 3804 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3805 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 3806 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3807 | } |
| 3808 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3809 | 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] | 3810 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3811 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 3812 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3813 | } |
| 3814 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3815 | 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] | 3816 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3817 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 3818 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3819 | } |
| 3820 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3821 | 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] | 3822 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3823 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 3824 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3825 | } |
| 3826 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3827 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3828 | { |
| 3829 | struct kvm_segment var; |
| 3830 | u32 ar; |
| 3831 | |
| 3832 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3833 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 3834 | if (seg == VCPU_SREG_CS) |
| 3835 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3836 | ar = vmx_segment_access_rights(&var); |
| 3837 | |
| 3838 | if (var.base != (var.selector << 4)) |
| 3839 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 3840 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3841 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3842 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3843 | return false; |
| 3844 | |
| 3845 | return true; |
| 3846 | } |
| 3847 | |
| 3848 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 3849 | { |
| 3850 | struct kvm_segment cs; |
| 3851 | unsigned int cs_rpl; |
| 3852 | |
| 3853 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3854 | cs_rpl = cs.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3855 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3856 | if (cs.unusable) |
| 3857 | return false; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3858 | if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK)) |
| 3859 | return false; |
| 3860 | if (!cs.s) |
| 3861 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3862 | if (cs.type & AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3863 | if (cs.dpl > cs_rpl) |
| 3864 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3865 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3866 | if (cs.dpl != cs_rpl) |
| 3867 | return false; |
| 3868 | } |
| 3869 | if (!cs.present) |
| 3870 | return false; |
| 3871 | |
| 3872 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 3873 | return true; |
| 3874 | } |
| 3875 | |
| 3876 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 3877 | { |
| 3878 | struct kvm_segment ss; |
| 3879 | unsigned int ss_rpl; |
| 3880 | |
| 3881 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3882 | ss_rpl = ss.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3883 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3884 | if (ss.unusable) |
| 3885 | return true; |
| 3886 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3887 | return false; |
| 3888 | if (!ss.s) |
| 3889 | return false; |
| 3890 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 3891 | return false; |
| 3892 | if (!ss.present) |
| 3893 | return false; |
| 3894 | |
| 3895 | return true; |
| 3896 | } |
| 3897 | |
| 3898 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3899 | { |
| 3900 | struct kvm_segment var; |
| 3901 | unsigned int rpl; |
| 3902 | |
| 3903 | vmx_get_segment(vcpu, &var, seg); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3904 | rpl = var.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3905 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3906 | if (var.unusable) |
| 3907 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3908 | if (!var.s) |
| 3909 | return false; |
| 3910 | if (!var.present) |
| 3911 | return false; |
| 3912 | if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) { |
| 3913 | if (var.dpl < rpl) /* DPL < RPL */ |
| 3914 | return false; |
| 3915 | } |
| 3916 | |
| 3917 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 3918 | * rights flags |
| 3919 | */ |
| 3920 | return true; |
| 3921 | } |
| 3922 | |
| 3923 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 3924 | { |
| 3925 | struct kvm_segment tr; |
| 3926 | |
| 3927 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 3928 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3929 | if (tr.unusable) |
| 3930 | return false; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3931 | if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3932 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3933 | 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] | 3934 | return false; |
| 3935 | if (!tr.present) |
| 3936 | return false; |
| 3937 | |
| 3938 | return true; |
| 3939 | } |
| 3940 | |
| 3941 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 3942 | { |
| 3943 | struct kvm_segment ldtr; |
| 3944 | |
| 3945 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 3946 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3947 | if (ldtr.unusable) |
| 3948 | return true; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3949 | if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3950 | return false; |
| 3951 | if (ldtr.type != 2) |
| 3952 | return false; |
| 3953 | if (!ldtr.present) |
| 3954 | return false; |
| 3955 | |
| 3956 | return true; |
| 3957 | } |
| 3958 | |
| 3959 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 3960 | { |
| 3961 | struct kvm_segment cs, ss; |
| 3962 | |
| 3963 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 3964 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 3965 | |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3966 | return ((cs.selector & SEGMENT_RPL_MASK) == |
| 3967 | (ss.selector & SEGMENT_RPL_MASK)); |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3968 | } |
| 3969 | |
| 3970 | /* |
| 3971 | * Check if guest state is valid. Returns true if valid, false if |
| 3972 | * not. |
| 3973 | * We assume that registers are always usable |
| 3974 | */ |
| 3975 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 3976 | { |
Gleb Natapov | c5e97c8 | 2013-01-21 15:36:43 +0200 | [diff] [blame] | 3977 | if (enable_unrestricted_guest) |
| 3978 | return true; |
| 3979 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3980 | /* real mode guest state checks */ |
Gleb Natapov | f13882d | 2013-04-14 16:07:37 +0300 | [diff] [blame] | 3981 | if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3982 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 3983 | return false; |
| 3984 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 3985 | return false; |
| 3986 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 3987 | return false; |
| 3988 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 3989 | return false; |
| 3990 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 3991 | return false; |
| 3992 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 3993 | return false; |
| 3994 | } else { |
| 3995 | /* protected mode guest state checks */ |
| 3996 | if (!cs_ss_rpl_check(vcpu)) |
| 3997 | return false; |
| 3998 | if (!code_segment_valid(vcpu)) |
| 3999 | return false; |
| 4000 | if (!stack_segment_valid(vcpu)) |
| 4001 | return false; |
| 4002 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4003 | return false; |
| 4004 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4005 | return false; |
| 4006 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4007 | return false; |
| 4008 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4009 | return false; |
| 4010 | if (!tr_valid(vcpu)) |
| 4011 | return false; |
| 4012 | if (!ldtr_valid(vcpu)) |
| 4013 | return false; |
| 4014 | } |
| 4015 | /* TODO: |
| 4016 | * - Add checks on RIP |
| 4017 | * - Add checks on RFLAGS |
| 4018 | */ |
| 4019 | |
| 4020 | return true; |
| 4021 | } |
| 4022 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 4023 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4024 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4025 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4026 | u16 data = 0; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4027 | int idx, r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4028 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4029 | idx = srcu_read_lock(&kvm->srcu); |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4030 | fn = kvm->arch.tss_addr >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4031 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4032 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4033 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4034 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 4035 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 4036 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4037 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4038 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4039 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 4040 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4041 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4042 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4043 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4044 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4045 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4046 | r = kvm_write_guest_page(kvm, fn, &data, |
| 4047 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 4048 | sizeof(u8)); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4049 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4050 | srcu_read_unlock(&kvm->srcu, idx); |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4051 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4052 | } |
| 4053 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4054 | static int init_rmode_identity_map(struct kvm *kvm) |
| 4055 | { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4056 | int i, idx, r = 0; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4057 | pfn_t identity_map_pfn; |
| 4058 | u32 tmp; |
| 4059 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4060 | if (!enable_ept) |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4061 | return 0; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4062 | |
| 4063 | /* Protect kvm->arch.ept_identity_pagetable_done. */ |
| 4064 | mutex_lock(&kvm->slots_lock); |
| 4065 | |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4066 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4067 | goto out2; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4068 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4069 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4070 | |
| 4071 | r = alloc_identity_pagetable(kvm); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4072 | if (r < 0) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4073 | goto out2; |
| 4074 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4075 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4076 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 4077 | if (r < 0) |
| 4078 | goto out; |
| 4079 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 4080 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 4081 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 4082 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 4083 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 4084 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 4085 | if (r < 0) |
| 4086 | goto out; |
| 4087 | } |
| 4088 | kvm->arch.ept_identity_pagetable_done = true; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4089 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4090 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4091 | srcu_read_unlock(&kvm->srcu, idx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4092 | |
| 4093 | out2: |
| 4094 | mutex_unlock(&kvm->slots_lock); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4095 | return r; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4096 | } |
| 4097 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4098 | static void seg_setup(int seg) |
| 4099 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4100 | 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] | 4101 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4102 | |
| 4103 | vmcs_write16(sf->selector, 0); |
| 4104 | vmcs_writel(sf->base, 0); |
| 4105 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 4106 | ar = 0x93; |
| 4107 | if (seg == VCPU_SREG_CS) |
| 4108 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4109 | |
| 4110 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4111 | } |
| 4112 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4113 | static int alloc_apic_access_page(struct kvm *kvm) |
| 4114 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4115 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4116 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 4117 | int r = 0; |
| 4118 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4119 | mutex_lock(&kvm->slots_lock); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4120 | if (kvm->arch.apic_access_page_done) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4121 | goto out; |
| 4122 | kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT; |
| 4123 | kvm_userspace_mem.flags = 0; |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4124 | kvm_userspace_mem.guest_phys_addr = APIC_DEFAULT_PHYS_BASE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4125 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Takuya Yoshikawa | 47ae31e | 2013-02-27 19:43:00 +0900 | [diff] [blame] | 4126 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4127 | if (r) |
| 4128 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4129 | |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4130 | page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4131 | if (is_error_page(page)) { |
| 4132 | r = -EFAULT; |
| 4133 | goto out; |
| 4134 | } |
| 4135 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4136 | /* |
| 4137 | * Do not pin the page in memory, so that memory hot-unplug |
| 4138 | * is able to migrate it. |
| 4139 | */ |
| 4140 | put_page(page); |
| 4141 | kvm->arch.apic_access_page_done = true; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4142 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4143 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4144 | return r; |
| 4145 | } |
| 4146 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4147 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 4148 | { |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4149 | /* Called with kvm->slots_lock held. */ |
| 4150 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4151 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 4152 | int r = 0; |
| 4153 | |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4154 | BUG_ON(kvm->arch.ept_identity_pagetable_done); |
| 4155 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4156 | kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT; |
| 4157 | kvm_userspace_mem.flags = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4158 | kvm_userspace_mem.guest_phys_addr = |
| 4159 | kvm->arch.ept_identity_map_addr; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4160 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Takuya Yoshikawa | 47ae31e | 2013-02-27 19:43:00 +0900 | [diff] [blame] | 4161 | r = __kvm_set_memory_region(kvm, &kvm_userspace_mem); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4162 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4163 | return r; |
| 4164 | } |
| 4165 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4166 | static void allocate_vpid(struct vcpu_vmx *vmx) |
| 4167 | { |
| 4168 | int vpid; |
| 4169 | |
| 4170 | vmx->vpid = 0; |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 4171 | if (!enable_vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4172 | return; |
| 4173 | spin_lock(&vmx_vpid_lock); |
| 4174 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 4175 | if (vpid < VMX_NR_VPIDS) { |
| 4176 | vmx->vpid = vpid; |
| 4177 | __set_bit(vpid, vmx_vpid_bitmap); |
| 4178 | } |
| 4179 | spin_unlock(&vmx_vpid_lock); |
| 4180 | } |
| 4181 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4182 | static void free_vpid(struct vcpu_vmx *vmx) |
| 4183 | { |
| 4184 | if (!enable_vpid) |
| 4185 | return; |
| 4186 | spin_lock(&vmx_vpid_lock); |
| 4187 | if (vmx->vpid != 0) |
| 4188 | __clear_bit(vmx->vpid, vmx_vpid_bitmap); |
| 4189 | spin_unlock(&vmx_vpid_lock); |
| 4190 | } |
| 4191 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4192 | #define MSR_TYPE_R 1 |
| 4193 | #define MSR_TYPE_W 2 |
| 4194 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4195 | u32 msr, int type) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4196 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4197 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4198 | |
| 4199 | if (!cpu_has_vmx_msr_bitmap()) |
| 4200 | return; |
| 4201 | |
| 4202 | /* |
| 4203 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4204 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4205 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4206 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4207 | if (msr <= 0x1fff) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4208 | if (type & MSR_TYPE_R) |
| 4209 | /* read-low */ |
| 4210 | __clear_bit(msr, msr_bitmap + 0x000 / f); |
| 4211 | |
| 4212 | if (type & MSR_TYPE_W) |
| 4213 | /* write-low */ |
| 4214 | __clear_bit(msr, msr_bitmap + 0x800 / f); |
| 4215 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4216 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4217 | msr &= 0x1fff; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4218 | if (type & MSR_TYPE_R) |
| 4219 | /* read-high */ |
| 4220 | __clear_bit(msr, msr_bitmap + 0x400 / f); |
| 4221 | |
| 4222 | if (type & MSR_TYPE_W) |
| 4223 | /* write-high */ |
| 4224 | __clear_bit(msr, msr_bitmap + 0xc00 / f); |
| 4225 | |
| 4226 | } |
| 4227 | } |
| 4228 | |
| 4229 | static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4230 | u32 msr, int type) |
| 4231 | { |
| 4232 | int f = sizeof(unsigned long); |
| 4233 | |
| 4234 | if (!cpu_has_vmx_msr_bitmap()) |
| 4235 | return; |
| 4236 | |
| 4237 | /* |
| 4238 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4239 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4240 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4241 | */ |
| 4242 | if (msr <= 0x1fff) { |
| 4243 | if (type & MSR_TYPE_R) |
| 4244 | /* read-low */ |
| 4245 | __set_bit(msr, msr_bitmap + 0x000 / f); |
| 4246 | |
| 4247 | if (type & MSR_TYPE_W) |
| 4248 | /* write-low */ |
| 4249 | __set_bit(msr, msr_bitmap + 0x800 / f); |
| 4250 | |
| 4251 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4252 | msr &= 0x1fff; |
| 4253 | if (type & MSR_TYPE_R) |
| 4254 | /* read-high */ |
| 4255 | __set_bit(msr, msr_bitmap + 0x400 / f); |
| 4256 | |
| 4257 | if (type & MSR_TYPE_W) |
| 4258 | /* write-high */ |
| 4259 | __set_bit(msr, msr_bitmap + 0xc00 / f); |
| 4260 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4261 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4262 | } |
| 4263 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 4264 | /* |
| 4265 | * If a msr is allowed by L0, we should check whether it is allowed by L1. |
| 4266 | * The corresponding bit will be cleared unless both of L0 and L1 allow it. |
| 4267 | */ |
| 4268 | static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1, |
| 4269 | unsigned long *msr_bitmap_nested, |
| 4270 | u32 msr, int type) |
| 4271 | { |
| 4272 | int f = sizeof(unsigned long); |
| 4273 | |
| 4274 | if (!cpu_has_vmx_msr_bitmap()) { |
| 4275 | WARN_ON(1); |
| 4276 | return; |
| 4277 | } |
| 4278 | |
| 4279 | /* |
| 4280 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4281 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4282 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4283 | */ |
| 4284 | if (msr <= 0x1fff) { |
| 4285 | if (type & MSR_TYPE_R && |
| 4286 | !test_bit(msr, msr_bitmap_l1 + 0x000 / f)) |
| 4287 | /* read-low */ |
| 4288 | __clear_bit(msr, msr_bitmap_nested + 0x000 / f); |
| 4289 | |
| 4290 | if (type & MSR_TYPE_W && |
| 4291 | !test_bit(msr, msr_bitmap_l1 + 0x800 / f)) |
| 4292 | /* write-low */ |
| 4293 | __clear_bit(msr, msr_bitmap_nested + 0x800 / f); |
| 4294 | |
| 4295 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4296 | msr &= 0x1fff; |
| 4297 | if (type & MSR_TYPE_R && |
| 4298 | !test_bit(msr, msr_bitmap_l1 + 0x400 / f)) |
| 4299 | /* read-high */ |
| 4300 | __clear_bit(msr, msr_bitmap_nested + 0x400 / f); |
| 4301 | |
| 4302 | if (type & MSR_TYPE_W && |
| 4303 | !test_bit(msr, msr_bitmap_l1 + 0xc00 / f)) |
| 4304 | /* write-high */ |
| 4305 | __clear_bit(msr, msr_bitmap_nested + 0xc00 / f); |
| 4306 | |
| 4307 | } |
| 4308 | } |
| 4309 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4310 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 4311 | { |
| 4312 | if (!longmode_only) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4313 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, |
| 4314 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4315 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, |
| 4316 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4317 | } |
| 4318 | |
| 4319 | static void vmx_enable_intercept_msr_read_x2apic(u32 msr) |
| 4320 | { |
| 4321 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4322 | msr, MSR_TYPE_R); |
| 4323 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4324 | msr, MSR_TYPE_R); |
| 4325 | } |
| 4326 | |
| 4327 | static void vmx_disable_intercept_msr_read_x2apic(u32 msr) |
| 4328 | { |
| 4329 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4330 | msr, MSR_TYPE_R); |
| 4331 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4332 | msr, MSR_TYPE_R); |
| 4333 | } |
| 4334 | |
| 4335 | static void vmx_disable_intercept_msr_write_x2apic(u32 msr) |
| 4336 | { |
| 4337 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4338 | msr, MSR_TYPE_W); |
| 4339 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4340 | msr, MSR_TYPE_W); |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4341 | } |
| 4342 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4343 | static int vmx_vm_has_apicv(struct kvm *kvm) |
| 4344 | { |
| 4345 | return enable_apicv && irqchip_in_kernel(kvm); |
| 4346 | } |
| 4347 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4348 | static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4349 | { |
| 4350 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4351 | int max_irr; |
| 4352 | void *vapic_page; |
| 4353 | u16 status; |
| 4354 | |
| 4355 | if (vmx->nested.pi_desc && |
| 4356 | vmx->nested.pi_pending) { |
| 4357 | vmx->nested.pi_pending = false; |
| 4358 | if (!pi_test_and_clear_on(vmx->nested.pi_desc)) |
| 4359 | return 0; |
| 4360 | |
| 4361 | max_irr = find_last_bit( |
| 4362 | (unsigned long *)vmx->nested.pi_desc->pir, 256); |
| 4363 | |
| 4364 | if (max_irr == 256) |
| 4365 | return 0; |
| 4366 | |
| 4367 | vapic_page = kmap(vmx->nested.virtual_apic_page); |
| 4368 | if (!vapic_page) { |
| 4369 | WARN_ON(1); |
| 4370 | return -ENOMEM; |
| 4371 | } |
| 4372 | __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page); |
| 4373 | kunmap(vmx->nested.virtual_apic_page); |
| 4374 | |
| 4375 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 4376 | if ((u8)max_irr > ((u8)status & 0xff)) { |
| 4377 | status &= ~0xff; |
| 4378 | status |= (u8)max_irr; |
| 4379 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 4380 | } |
| 4381 | } |
| 4382 | return 0; |
| 4383 | } |
| 4384 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4385 | static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4386 | { |
| 4387 | #ifdef CONFIG_SMP |
| 4388 | if (vcpu->mode == IN_GUEST_MODE) { |
| 4389 | apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), |
| 4390 | POSTED_INTR_VECTOR); |
| 4391 | return true; |
| 4392 | } |
| 4393 | #endif |
| 4394 | return false; |
| 4395 | } |
| 4396 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4397 | static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu, |
| 4398 | int vector) |
| 4399 | { |
| 4400 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4401 | |
| 4402 | if (is_guest_mode(vcpu) && |
| 4403 | vector == vmx->nested.posted_intr_nv) { |
| 4404 | /* the PIR and ON have been set by L1. */ |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4405 | kvm_vcpu_trigger_posted_interrupt(vcpu); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4406 | /* |
| 4407 | * If a posted intr is not recognized by hardware, |
| 4408 | * we will accomplish it in the next vmentry. |
| 4409 | */ |
| 4410 | vmx->nested.pi_pending = true; |
| 4411 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4412 | return 0; |
| 4413 | } |
| 4414 | return -1; |
| 4415 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4416 | /* |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4417 | * Send interrupt to vcpu via posted interrupt way. |
| 4418 | * 1. If target vcpu is running(non-root mode), send posted interrupt |
| 4419 | * notification to vcpu and hardware will sync PIR to vIRR atomically. |
| 4420 | * 2. If target vcpu isn't running(root mode), kick it to pick up the |
| 4421 | * interrupt from PIR in next vmentry. |
| 4422 | */ |
| 4423 | static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector) |
| 4424 | { |
| 4425 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4426 | int r; |
| 4427 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4428 | r = vmx_deliver_nested_posted_interrupt(vcpu, vector); |
| 4429 | if (!r) |
| 4430 | return; |
| 4431 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4432 | if (pi_test_and_set_pir(vector, &vmx->pi_desc)) |
| 4433 | return; |
| 4434 | |
| 4435 | r = pi_test_and_set_on(&vmx->pi_desc); |
| 4436 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4437 | if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu)) |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4438 | kvm_vcpu_kick(vcpu); |
| 4439 | } |
| 4440 | |
| 4441 | static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu) |
| 4442 | { |
| 4443 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4444 | |
| 4445 | if (!pi_test_and_clear_on(&vmx->pi_desc)) |
| 4446 | return; |
| 4447 | |
| 4448 | kvm_apic_update_irr(vcpu, vmx->pi_desc.pir); |
| 4449 | } |
| 4450 | |
| 4451 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu) |
| 4452 | { |
| 4453 | return; |
| 4454 | } |
| 4455 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4456 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4457 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 4458 | * will not change in the lifetime of the guest. |
| 4459 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 4460 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 4461 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4462 | static void vmx_set_constant_host_state(struct vcpu_vmx *vmx) |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4463 | { |
| 4464 | u32 low32, high32; |
| 4465 | unsigned long tmpl; |
| 4466 | struct desc_ptr dt; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4467 | unsigned long cr4; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4468 | |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 4469 | 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] | 4470 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 4471 | |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4472 | /* Save the most likely value for this task's CR4 in the VMCS. */ |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 4473 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4474 | vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */ |
| 4475 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 4476 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4477 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4478 | #ifdef CONFIG_X86_64 |
| 4479 | /* |
| 4480 | * Load null selectors, so we can avoid reloading them in |
| 4481 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 4482 | * too (the expected case). |
| 4483 | */ |
| 4484 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 4485 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 4486 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4487 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4488 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4489 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4490 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4491 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 4492 | |
| 4493 | native_store_idt(&dt); |
| 4494 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4495 | vmx->host_idt_base = dt.address; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4496 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 4497 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4498 | |
| 4499 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 4500 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 4501 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 4502 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 4503 | |
| 4504 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 4505 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 4506 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 4507 | } |
| 4508 | } |
| 4509 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4510 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 4511 | { |
| 4512 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 4513 | if (enable_ept) |
| 4514 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 4515 | if (is_guest_mode(&vmx->vcpu)) |
| 4516 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 4517 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4518 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 4519 | } |
| 4520 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4521 | static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx) |
| 4522 | { |
| 4523 | u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; |
| 4524 | |
| 4525 | if (!vmx_vm_has_apicv(vmx->vcpu.kvm)) |
| 4526 | pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; |
| 4527 | return pin_based_exec_ctrl; |
| 4528 | } |
| 4529 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4530 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 4531 | { |
| 4532 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
Paolo Bonzini | d16c293 | 2014-02-21 10:36:37 +0100 | [diff] [blame] | 4533 | |
| 4534 | if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT) |
| 4535 | exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 4536 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4537 | if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) { |
| 4538 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 4539 | #ifdef CONFIG_X86_64 |
| 4540 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 4541 | CPU_BASED_CR8_LOAD_EXITING; |
| 4542 | #endif |
| 4543 | } |
| 4544 | if (!enable_ept) |
| 4545 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 4546 | CPU_BASED_CR3_LOAD_EXITING | |
| 4547 | CPU_BASED_INVLPG_EXITING; |
| 4548 | return exec_control; |
| 4549 | } |
| 4550 | |
| 4551 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 4552 | { |
| 4553 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
| 4554 | if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) |
| 4555 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 4556 | if (vmx->vpid == 0) |
| 4557 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 4558 | if (!enable_ept) { |
| 4559 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 4560 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 4561 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 4562 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4563 | } |
| 4564 | if (!enable_unrestricted_guest) |
| 4565 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 4566 | if (!ple_gap) |
| 4567 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4568 | if (!vmx_vm_has_apicv(vmx->vcpu.kvm)) |
| 4569 | exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 4570 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4571 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 4572 | /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD |
| 4573 | (handle_vmptrld). |
| 4574 | We can NOT enable shadow_vmcs here because we don't have yet |
| 4575 | a current VMCS12 |
| 4576 | */ |
| 4577 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 4578 | /* PML is enabled/disabled in creating/destorying vcpu */ |
| 4579 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
| 4580 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4581 | return exec_control; |
| 4582 | } |
| 4583 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4584 | static void ept_set_mmio_spte_mask(void) |
| 4585 | { |
| 4586 | /* |
| 4587 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 4588 | * of an EPT paging-structure entry is 110b (write/execute). |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4589 | * Also, magic bits (0x3ull << 62) is set to quickly identify mmio |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4590 | * spte. |
| 4591 | */ |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4592 | kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4593 | } |
| 4594 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4595 | #define VMX_XSS_EXIT_BITMAP 0 |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4596 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4597 | * Sets up the vmcs for emulated real mode. |
| 4598 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4599 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4600 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4601 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4602 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4603 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4604 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4605 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4606 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4607 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 4608 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4609 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 4610 | if (enable_shadow_vmcs) { |
| 4611 | vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap)); |
| 4612 | vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap)); |
| 4613 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4614 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4615 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4616 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4617 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 4618 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4619 | /* Control */ |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4620 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx)); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4621 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4622 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4623 | |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 4624 | if (cpu_has_secondary_exec_ctrls()) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4625 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 4626 | vmx_secondary_exec_control(vmx)); |
Sheng Yang | 83ff3b9 | 2007-11-21 14:33:25 +0800 | [diff] [blame] | 4627 | } |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4628 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4629 | if (vmx_vm_has_apicv(vmx->vcpu.kvm)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4630 | vmcs_write64(EOI_EXIT_BITMAP0, 0); |
| 4631 | vmcs_write64(EOI_EXIT_BITMAP1, 0); |
| 4632 | vmcs_write64(EOI_EXIT_BITMAP2, 0); |
| 4633 | vmcs_write64(EOI_EXIT_BITMAP3, 0); |
| 4634 | |
| 4635 | vmcs_write16(GUEST_INTR_STATUS, 0); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4636 | |
| 4637 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 4638 | vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4639 | } |
| 4640 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4641 | if (ple_gap) { |
| 4642 | vmcs_write32(PLE_GAP, ple_gap); |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 4643 | vmx->ple_window = ple_window; |
| 4644 | vmx->ple_window_dirty = true; |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4645 | } |
| 4646 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 4647 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 4648 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4649 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 4650 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 4651 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 4652 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4653 | vmx_set_constant_host_state(vmx); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4654 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4655 | rdmsrl(MSR_FS_BASE, a); |
| 4656 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 4657 | rdmsrl(MSR_GS_BASE, a); |
| 4658 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 4659 | #else |
| 4660 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 4661 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 4662 | #endif |
| 4663 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4664 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 4665 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4666 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4667 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4668 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4669 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 4670 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 4671 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 4672 | |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 4673 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4674 | u32 index = vmx_msr_index[i]; |
| 4675 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4676 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4677 | |
| 4678 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 4679 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 4680 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 4681 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 4682 | vmx->guest_msrs[j].index = i; |
| 4683 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 4684 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4685 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4686 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4687 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4688 | |
| 4689 | vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4690 | |
| 4691 | /* 22.2.1, 20.8.1 */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4692 | vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 4693 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4694 | vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4695 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4696 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4697 | if (vmx_xsaves_supported()) |
| 4698 | vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP); |
| 4699 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4700 | return 0; |
| 4701 | } |
| 4702 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4703 | static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4704 | { |
| 4705 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 4706 | struct msr_data apic_base_msr; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4707 | u64 cr0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4708 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4709 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4710 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4711 | vmx->soft_vnmi_blocked = 0; |
| 4712 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4713 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4714 | kvm_set_cr8(vcpu, 0); |
| 4715 | |
| 4716 | if (!init_event) { |
| 4717 | apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | |
| 4718 | MSR_IA32_APICBASE_ENABLE; |
| 4719 | if (kvm_vcpu_is_reset_bsp(vcpu)) |
| 4720 | apic_base_msr.data |= MSR_IA32_APICBASE_BSP; |
| 4721 | apic_base_msr.host_initiated = true; |
| 4722 | kvm_set_apic_base(vcpu, &apic_base_msr); |
| 4723 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4724 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4725 | vmx_segment_cache_clear(vmx); |
| 4726 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 4727 | seg_setup(VCPU_SREG_CS); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4728 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Paolo Bonzini | 04b6683 | 2013-03-19 16:30:26 +0100 | [diff] [blame] | 4729 | vmcs_write32(GUEST_CS_BASE, 0xffff0000); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4730 | |
| 4731 | seg_setup(VCPU_SREG_DS); |
| 4732 | seg_setup(VCPU_SREG_ES); |
| 4733 | seg_setup(VCPU_SREG_FS); |
| 4734 | seg_setup(VCPU_SREG_GS); |
| 4735 | seg_setup(VCPU_SREG_SS); |
| 4736 | |
| 4737 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 4738 | vmcs_writel(GUEST_TR_BASE, 0); |
| 4739 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 4740 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 4741 | |
| 4742 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 4743 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 4744 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 4745 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 4746 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4747 | if (!init_event) { |
| 4748 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 4749 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 4750 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 4751 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 4752 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4753 | |
| 4754 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4755 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4756 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4757 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 4758 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 4759 | |
| 4760 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 4761 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 4762 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 4763 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4764 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
| 4765 | vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
| 4766 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4767 | setup_msrs(vmx); |
| 4768 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4769 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 4770 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4771 | if (cpu_has_vmx_tpr_shadow() && !init_event) { |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4772 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4773 | if (vm_need_tpr_shadow(vcpu->kvm)) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4774 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4775 | __pa(vcpu->arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4776 | vmcs_write32(TPR_THRESHOLD, 0); |
| 4777 | } |
| 4778 | |
Paolo Bonzini | a73896c | 2014-11-02 07:54:30 +0100 | [diff] [blame] | 4779 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4780 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4781 | if (vmx_vm_has_apicv(vcpu->kvm)) |
| 4782 | memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); |
| 4783 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4784 | if (vmx->vpid != 0) |
| 4785 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 4786 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4787 | cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
| 4788 | vmx_set_cr0(vcpu, cr0); /* enter rmode */ |
| 4789 | vmx->vcpu.arch.cr0 = cr0; |
| 4790 | vmx_set_cr4(vcpu, 0); |
| 4791 | if (!init_event) |
| 4792 | vmx_set_efer(vcpu, 0); |
| 4793 | vmx_fpu_activate(vcpu); |
| 4794 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4795 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 4796 | vpid_sync_context(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4797 | } |
| 4798 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4799 | /* |
| 4800 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 4801 | * For most existing hypervisors, this will always return true. |
| 4802 | */ |
| 4803 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 4804 | { |
| 4805 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4806 | PIN_BASED_EXT_INTR_MASK; |
| 4807 | } |
| 4808 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 4809 | /* |
| 4810 | * In nested virtualization, check if L1 has set |
| 4811 | * VM_EXIT_ACK_INTR_ON_EXIT |
| 4812 | */ |
| 4813 | static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu) |
| 4814 | { |
| 4815 | return get_vmcs12(vcpu)->vm_exit_controls & |
| 4816 | VM_EXIT_ACK_INTR_ON_EXIT; |
| 4817 | } |
| 4818 | |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 4819 | static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu) |
| 4820 | { |
| 4821 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4822 | PIN_BASED_NMI_EXITING; |
| 4823 | } |
| 4824 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4825 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4826 | { |
| 4827 | u32 cpu_based_vm_exec_control; |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 4828 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4829 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4830 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4831 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4832 | } |
| 4833 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4834 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4835 | { |
| 4836 | u32 cpu_based_vm_exec_control; |
| 4837 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4838 | if (!cpu_has_virtual_nmis() || |
| 4839 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 4840 | enable_irq_window(vcpu); |
| 4841 | return; |
| 4842 | } |
Jan Kiszka | 03b28f8 | 2013-04-29 16:46:42 +0200 | [diff] [blame] | 4843 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4844 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4845 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4846 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4847 | } |
| 4848 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4849 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4850 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4851 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4852 | uint32_t intr; |
| 4853 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4854 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4855 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4856 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 4857 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4858 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4859 | int inc_eip = 0; |
| 4860 | if (vcpu->arch.interrupt.soft) |
| 4861 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 4862 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4863 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4864 | return; |
| 4865 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4866 | intr = irq | INTR_INFO_VALID_MASK; |
| 4867 | if (vcpu->arch.interrupt.soft) { |
| 4868 | intr |= INTR_TYPE_SOFT_INTR; |
| 4869 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 4870 | vmx->vcpu.arch.event_exit_inst_len); |
| 4871 | } else |
| 4872 | intr |= INTR_TYPE_EXT_INTR; |
| 4873 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4874 | } |
| 4875 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4876 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 4877 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 4878 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4879 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 4880 | if (is_guest_mode(vcpu)) |
| 4881 | return; |
| 4882 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4883 | if (!cpu_has_virtual_nmis()) { |
| 4884 | /* |
| 4885 | * Tracking the NMI-blocked state in software is built upon |
| 4886 | * finding the next open IRQ window. This, in turn, depends on |
| 4887 | * well-behaving guests: They have to keep IRQs disabled at |
| 4888 | * least as long as the NMI handler runs. Otherwise we may |
| 4889 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 4890 | * highly unlikely, we can live with the residual risk. |
| 4891 | */ |
| 4892 | vmx->soft_vnmi_blocked = 1; |
| 4893 | vmx->vnmi_blocked_time = 0; |
| 4894 | } |
| 4895 | |
Jan Kiszka | 487b391 | 2008-09-26 09:30:56 +0200 | [diff] [blame] | 4896 | ++vcpu->stat.nmi_injections; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4897 | vmx->nmi_known_unmasked = false; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4898 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4899 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4900 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 4901 | return; |
| 4902 | } |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4903 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 4904 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 4905 | } |
| 4906 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4907 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 4908 | { |
| 4909 | if (!cpu_has_virtual_nmis()) |
| 4910 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4911 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 4912 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 4913 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4914 | } |
| 4915 | |
| 4916 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 4917 | { |
| 4918 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4919 | |
| 4920 | if (!cpu_has_virtual_nmis()) { |
| 4921 | if (vmx->soft_vnmi_blocked != masked) { |
| 4922 | vmx->soft_vnmi_blocked = masked; |
| 4923 | vmx->vnmi_blocked_time = 0; |
| 4924 | } |
| 4925 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 4926 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4927 | if (masked) |
| 4928 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 4929 | GUEST_INTR_STATE_NMI); |
| 4930 | else |
| 4931 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 4932 | GUEST_INTR_STATE_NMI); |
| 4933 | } |
| 4934 | } |
| 4935 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 4936 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
| 4937 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 4938 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 4939 | return 0; |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 4940 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 4941 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
| 4942 | return 0; |
| 4943 | |
| 4944 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 4945 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 4946 | | GUEST_INTR_STATE_NMI)); |
| 4947 | } |
| 4948 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 4949 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 4950 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 4951 | return (!to_vmx(vcpu)->nested.nested_run_pending && |
| 4952 | vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 4953 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 4954 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 4955 | } |
| 4956 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4957 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 4958 | { |
| 4959 | int ret; |
| 4960 | struct kvm_userspace_memory_region tss_mem = { |
Sheng Yang | 6fe6397 | 2008-10-16 17:30:58 +0800 | [diff] [blame] | 4961 | .slot = TSS_PRIVATE_MEMSLOT, |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4962 | .guest_phys_addr = addr, |
| 4963 | .memory_size = PAGE_SIZE * 3, |
| 4964 | .flags = 0, |
| 4965 | }; |
| 4966 | |
Takuya Yoshikawa | 47ae31e | 2013-02-27 19:43:00 +0900 | [diff] [blame] | 4967 | ret = kvm_set_memory_region(kvm, &tss_mem); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4968 | if (ret) |
| 4969 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 4970 | kvm->arch.tss_addr = addr; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4971 | return init_rmode_tss(kvm); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 4972 | } |
| 4973 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4974 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4975 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4976 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4977 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 4978 | /* |
| 4979 | * Update instruction length as we may reinject the exception |
| 4980 | * from user space while in guest debugging mode. |
| 4981 | */ |
| 4982 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 4983 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4984 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 4985 | return false; |
| 4986 | /* fall through */ |
| 4987 | case DB_VECTOR: |
| 4988 | if (vcpu->guest_debug & |
| 4989 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 4990 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 4991 | /* fall through */ |
| 4992 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 4993 | case OF_VECTOR: |
| 4994 | case BR_VECTOR: |
| 4995 | case UD_VECTOR: |
| 4996 | case DF_VECTOR: |
| 4997 | case SS_VECTOR: |
| 4998 | case GP_VECTOR: |
| 4999 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5000 | return true; |
| 5001 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5002 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5003 | return false; |
| 5004 | } |
| 5005 | |
| 5006 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 5007 | int vec, u32 err_code) |
| 5008 | { |
| 5009 | /* |
| 5010 | * Instruction with address size override prefix opcode 0x67 |
| 5011 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 5012 | */ |
| 5013 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 5014 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 5015 | if (vcpu->arch.halt_request) { |
| 5016 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5017 | return kvm_vcpu_halt(vcpu); |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5018 | } |
| 5019 | return 1; |
| 5020 | } |
| 5021 | return 0; |
| 5022 | } |
| 5023 | |
| 5024 | /* |
| 5025 | * Forward all other exceptions that are valid in real mode. |
| 5026 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 5027 | * the required debugging infrastructure rework. |
| 5028 | */ |
| 5029 | kvm_queue_exception(vcpu, vec); |
| 5030 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5031 | } |
| 5032 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5033 | /* |
| 5034 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 5035 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 5036 | * We pass a fake environment to the machine check handler because we want |
| 5037 | * the guest to be always treated like user space, no matter what context |
| 5038 | * it used internally. |
| 5039 | */ |
| 5040 | static void kvm_machine_check(void) |
| 5041 | { |
| 5042 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 5043 | struct pt_regs regs = { |
| 5044 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 5045 | .flags = X86_EFLAGS_IF, |
| 5046 | }; |
| 5047 | |
| 5048 | do_machine_check(®s, 0); |
| 5049 | #endif |
| 5050 | } |
| 5051 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5052 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5053 | { |
| 5054 | /* already handled by vcpu_run */ |
| 5055 | return 1; |
| 5056 | } |
| 5057 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5058 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5059 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5060 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5061 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5062 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5063 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5064 | u32 vect_info; |
| 5065 | enum emulation_result er; |
| 5066 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5067 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 5068 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5069 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5070 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5071 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5072 | |
Jan Kiszka | e4a4188 | 2008-09-26 09:30:46 +0200 | [diff] [blame] | 5073 | if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5074 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5075 | |
| 5076 | if (is_no_device(intr_info)) { |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 5077 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5078 | return 1; |
| 5079 | } |
| 5080 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5081 | if (is_invalid_opcode(intr_info)) { |
Jan Kiszka | ae1f576 | 2015-03-09 20:56:43 +0100 | [diff] [blame] | 5082 | if (is_guest_mode(vcpu)) { |
| 5083 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5084 | return 1; |
| 5085 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5086 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5087 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 5088 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5089 | return 1; |
| 5090 | } |
| 5091 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5092 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 5093 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5094 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5095 | |
| 5096 | /* |
| 5097 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 5098 | * MMIO, it is better to report an internal error. |
| 5099 | * See the comments in vmx_handle_exit. |
| 5100 | */ |
| 5101 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 5102 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 5103 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5104 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5105 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5106 | vcpu->run->internal.data[0] = vect_info; |
| 5107 | vcpu->run->internal.data[1] = intr_info; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5108 | vcpu->run->internal.data[2] = error_code; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5109 | return 0; |
| 5110 | } |
| 5111 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5112 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5113 | /* EPT won't cause page fault directly */ |
Julia Lawall | cf3ace7 | 2011-08-02 12:34:57 +0200 | [diff] [blame] | 5114 | BUG_ON(enable_ept); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5115 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5116 | trace_kvm_page_fault(cr2, error_code); |
| 5117 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 5118 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 5119 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5120 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5121 | } |
| 5122 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5123 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5124 | |
| 5125 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 5126 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 5127 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5128 | switch (ex_no) { |
| 5129 | case DB_VECTOR: |
| 5130 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 5131 | if (!(vcpu->guest_debug & |
| 5132 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
Jan Kiszka | 8246bf5 | 2014-01-04 18:47:17 +0100 | [diff] [blame] | 5133 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5134 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Huw Davies | fd2a445 | 2014-04-16 10:02:51 +0100 | [diff] [blame] | 5135 | if (!(dr6 & ~DR6_RESERVED)) /* icebp */ |
| 5136 | skip_emulated_instruction(vcpu); |
| 5137 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5138 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5139 | return 1; |
| 5140 | } |
| 5141 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 5142 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5143 | /* fall through */ |
| 5144 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5145 | /* |
| 5146 | * Update instruction length as we may reinject #BP from |
| 5147 | * user space while in guest debugging mode. Reading it for |
| 5148 | * #DB as well causes no harm, it is not used in that case. |
| 5149 | */ |
| 5150 | vmx->vcpu.arch.event_exit_inst_len = |
| 5151 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5152 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 5153 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5154 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 5155 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5156 | break; |
| 5157 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5158 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 5159 | kvm_run->ex.exception = ex_no; |
| 5160 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5161 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5162 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5163 | return 0; |
| 5164 | } |
| 5165 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5166 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5167 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 5168 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5169 | return 1; |
| 5170 | } |
| 5171 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5172 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5173 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5174 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5175 | return 0; |
| 5176 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5177 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5178 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5179 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5180 | unsigned long exit_qualification; |
Jan Kiszka | 34c33d1 | 2009-02-08 13:28:15 +0100 | [diff] [blame] | 5181 | int size, in, string; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5182 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5183 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5184 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5185 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5186 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5187 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5188 | ++vcpu->stat.io_exits; |
| 5189 | |
| 5190 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5191 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5192 | |
| 5193 | port = exit_qualification >> 16; |
| 5194 | size = (exit_qualification & 7) + 1; |
Guillaume Thouvenin | e93f36b | 2008-10-28 10:51:30 +0100 | [diff] [blame] | 5195 | skip_emulated_instruction(vcpu); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5196 | |
| 5197 | return kvm_fast_pio_out(vcpu, size, port); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5198 | } |
| 5199 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5200 | static void |
| 5201 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 5202 | { |
| 5203 | /* |
| 5204 | * Patch in the VMCALL instruction: |
| 5205 | */ |
| 5206 | hypercall[0] = 0x0f; |
| 5207 | hypercall[1] = 0x01; |
| 5208 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5209 | } |
| 5210 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5211 | static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5212 | { |
| 5213 | unsigned long always_on = VMXON_CR0_ALWAYSON; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5214 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5215 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5216 | if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high & |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5217 | SECONDARY_EXEC_UNRESTRICTED_GUEST && |
| 5218 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST)) |
| 5219 | always_on &= ~(X86_CR0_PE | X86_CR0_PG); |
| 5220 | return (val & always_on) == always_on; |
| 5221 | } |
| 5222 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 5223 | /* 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] | 5224 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 5225 | { |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5226 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5227 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5228 | unsigned long orig_val = val; |
| 5229 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5230 | /* |
| 5231 | * We get here when L2 changed cr0 in a way that did not change |
| 5232 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5233 | * but did change L0 shadowed bits. So we first calculate the |
| 5234 | * effective cr0 value that L1 would like to write into the |
| 5235 | * hardware. It consists of the L2-owned bits from the new |
| 5236 | * value combined with the L1-owned bits from L1's guest_cr0. |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5237 | */ |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5238 | val = (val & ~vmcs12->cr0_guest_host_mask) | |
| 5239 | (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask); |
| 5240 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5241 | if (!nested_cr0_valid(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5242 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5243 | |
| 5244 | if (kvm_set_cr0(vcpu, val)) |
| 5245 | return 1; |
| 5246 | vmcs_writel(CR0_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5247 | return 0; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5248 | } else { |
| 5249 | if (to_vmx(vcpu)->nested.vmxon && |
| 5250 | ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON)) |
| 5251 | return 1; |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5252 | return kvm_set_cr0(vcpu, val); |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5253 | } |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5254 | } |
| 5255 | |
| 5256 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 5257 | { |
| 5258 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5259 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5260 | unsigned long orig_val = val; |
| 5261 | |
| 5262 | /* analogously to handle_set_cr0 */ |
| 5263 | val = (val & ~vmcs12->cr4_guest_host_mask) | |
| 5264 | (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask); |
| 5265 | if (kvm_set_cr4(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5266 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5267 | vmcs_writel(CR4_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5268 | return 0; |
| 5269 | } else |
| 5270 | return kvm_set_cr4(vcpu, val); |
| 5271 | } |
| 5272 | |
| 5273 | /* called to set cr0 as approriate for clts instruction exit. */ |
| 5274 | static void handle_clts(struct kvm_vcpu *vcpu) |
| 5275 | { |
| 5276 | if (is_guest_mode(vcpu)) { |
| 5277 | /* |
| 5278 | * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS |
| 5279 | * but we did (!fpu_active). We need to keep GUEST_CR0.TS on, |
| 5280 | * just pretend it's off (also in arch.cr0 for fpu_activate). |
| 5281 | */ |
| 5282 | vmcs_writel(CR0_READ_SHADOW, |
| 5283 | vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS); |
| 5284 | vcpu->arch.cr0 &= ~X86_CR0_TS; |
| 5285 | } else |
| 5286 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
| 5287 | } |
| 5288 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5289 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5290 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5291 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5292 | int cr; |
| 5293 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 5294 | int err; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5295 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5296 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5297 | cr = exit_qualification & 15; |
| 5298 | reg = (exit_qualification >> 8) & 15; |
| 5299 | switch ((exit_qualification >> 4) & 3) { |
| 5300 | case 0: /* mov to cr */ |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5301 | val = kvm_register_readl(vcpu, reg); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5302 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5303 | switch (cr) { |
| 5304 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5305 | err = handle_set_cr0(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5306 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5307 | return 1; |
| 5308 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 5309 | err = kvm_set_cr3(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5310 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5311 | return 1; |
| 5312 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5313 | err = handle_set_cr4(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5314 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5315 | return 1; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5316 | case 8: { |
| 5317 | u8 cr8_prev = kvm_get_cr8(vcpu); |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5318 | u8 cr8 = (u8)val; |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 5319 | err = kvm_set_cr8(vcpu, cr8); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5320 | kvm_complete_insn_gp(vcpu, err); |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5321 | if (irqchip_in_kernel(vcpu->kvm)) |
| 5322 | return 1; |
| 5323 | if (cr8_prev <= cr8) |
| 5324 | return 1; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5325 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5326 | return 0; |
| 5327 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 5328 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5329 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5330 | case 2: /* clts */ |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5331 | handle_clts(vcpu); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5332 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5333 | skip_emulated_instruction(vcpu); |
Avi Kivity | 6b52d18 | 2010-01-21 15:31:47 +0200 | [diff] [blame] | 5334 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5335 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5336 | case 1: /*mov from cr*/ |
| 5337 | switch (cr) { |
| 5338 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 5339 | val = kvm_read_cr3(vcpu); |
| 5340 | kvm_register_write(vcpu, reg, val); |
| 5341 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5342 | skip_emulated_instruction(vcpu); |
| 5343 | return 1; |
| 5344 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5345 | val = kvm_get_cr8(vcpu); |
| 5346 | kvm_register_write(vcpu, reg, val); |
| 5347 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5348 | skip_emulated_instruction(vcpu); |
| 5349 | return 1; |
| 5350 | } |
| 5351 | break; |
| 5352 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5353 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5354 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5355 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5356 | |
| 5357 | skip_emulated_instruction(vcpu); |
| 5358 | return 1; |
| 5359 | default: |
| 5360 | break; |
| 5361 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5362 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 5363 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5364 | (int)(exit_qualification >> 4) & 3, cr); |
| 5365 | return 0; |
| 5366 | } |
| 5367 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5368 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5369 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5370 | unsigned long exit_qualification; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5371 | int dr, dr7, reg; |
| 5372 | |
| 5373 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5374 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 5375 | |
| 5376 | /* First, if DR does not exist, trigger UD */ |
| 5377 | if (!kvm_require_dr(vcpu, dr)) |
| 5378 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5379 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 5380 | /* 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] | 5381 | if (!kvm_require_cpl(vcpu, 0)) |
| 5382 | return 1; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5383 | dr7 = vmcs_readl(GUEST_DR7); |
| 5384 | if (dr7 & DR7_GD) { |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5385 | /* |
| 5386 | * As the vm-exit takes precedence over the debug trap, we |
| 5387 | * need to emulate the latter, either for the host or the |
| 5388 | * guest debugging itself. |
| 5389 | */ |
| 5390 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5391 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5392 | vcpu->run->debug.arch.dr7 = dr7; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5393 | vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5394 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 5395 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5396 | return 0; |
| 5397 | } else { |
Nadav Amit | 7305eb5 | 2014-11-02 11:54:44 +0200 | [diff] [blame] | 5398 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5399 | vcpu->arch.dr6 |= DR6_BD | DR6_RTM; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5400 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5401 | return 1; |
| 5402 | } |
| 5403 | } |
| 5404 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5405 | if (vcpu->guest_debug == 0) { |
| 5406 | u32 cpu_based_vm_exec_control; |
| 5407 | |
| 5408 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5409 | cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 5410 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5411 | |
| 5412 | /* |
| 5413 | * No more DR vmexits; force a reload of the debug registers |
| 5414 | * and reenter on this instruction. The next vmexit will |
| 5415 | * retrieve the full state of the debug registers. |
| 5416 | */ |
| 5417 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT; |
| 5418 | return 1; |
| 5419 | } |
| 5420 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5421 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 5422 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5423 | unsigned long val; |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5424 | |
| 5425 | if (kvm_get_dr(vcpu, dr, &val)) |
| 5426 | return 1; |
| 5427 | kvm_register_write(vcpu, reg, val); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5428 | } else |
Nadav Amit | 5777392 | 2014-06-18 17:19:23 +0300 | [diff] [blame] | 5429 | if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg))) |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5430 | return 1; |
| 5431 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5432 | skip_emulated_instruction(vcpu); |
| 5433 | return 1; |
| 5434 | } |
| 5435 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 5436 | static u64 vmx_get_dr6(struct kvm_vcpu *vcpu) |
| 5437 | { |
| 5438 | return vcpu->arch.dr6; |
| 5439 | } |
| 5440 | |
| 5441 | static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val) |
| 5442 | { |
| 5443 | } |
| 5444 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5445 | static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu) |
| 5446 | { |
| 5447 | u32 cpu_based_vm_exec_control; |
| 5448 | |
| 5449 | get_debugreg(vcpu->arch.db[0], 0); |
| 5450 | get_debugreg(vcpu->arch.db[1], 1); |
| 5451 | get_debugreg(vcpu->arch.db[2], 2); |
| 5452 | get_debugreg(vcpu->arch.db[3], 3); |
| 5453 | get_debugreg(vcpu->arch.dr6, 6); |
| 5454 | vcpu->arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5455 | |
| 5456 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT; |
| 5457 | |
| 5458 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5459 | cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING; |
| 5460 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5461 | } |
| 5462 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5463 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 5464 | { |
| 5465 | vmcs_writel(GUEST_DR7, val); |
| 5466 | } |
| 5467 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5468 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5469 | { |
Avi Kivity | 06465c5 | 2007-02-28 20:46:53 +0200 | [diff] [blame] | 5470 | kvm_emulate_cpuid(vcpu); |
| 5471 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5472 | } |
| 5473 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5474 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5475 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5476 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5477 | u64 data; |
| 5478 | |
| 5479 | if (vmx_get_msr(vcpu, ecx, &data)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5480 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5481 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5482 | return 1; |
| 5483 | } |
| 5484 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5485 | trace_kvm_msr_read(ecx, data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5486 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5487 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5488 | vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u; |
| 5489 | vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5490 | skip_emulated_instruction(vcpu); |
| 5491 | return 1; |
| 5492 | } |
| 5493 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5494 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5495 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5496 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5497 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 5498 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 5499 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5500 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5501 | msr.data = data; |
| 5502 | msr.index = ecx; |
| 5503 | msr.host_initiated = false; |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 5504 | if (kvm_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5505 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5506 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5507 | return 1; |
| 5508 | } |
| 5509 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5510 | trace_kvm_msr_write(ecx, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5511 | skip_emulated_instruction(vcpu); |
| 5512 | return 1; |
| 5513 | } |
| 5514 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5515 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5516 | { |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5517 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5518 | return 1; |
| 5519 | } |
| 5520 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5521 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5522 | { |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5523 | u32 cpu_based_vm_exec_control; |
| 5524 | |
| 5525 | /* clear pending irq */ |
| 5526 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5527 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 5528 | 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] | 5529 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5530 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5531 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 5532 | ++vcpu->stat.irq_window_exits; |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5533 | |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 5534 | /* |
| 5535 | * If the user space waits to inject interrupts, exit as soon as |
| 5536 | * possible |
| 5537 | */ |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 5538 | if (!irqchip_in_kernel(vcpu->kvm) && |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5539 | vcpu->run->request_interrupt_window && |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 5540 | !kvm_cpu_has_interrupt(vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5541 | vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; |
Dor Laor | c1150d8 | 2007-01-05 16:36:24 -0800 | [diff] [blame] | 5542 | return 0; |
| 5543 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5544 | return 1; |
| 5545 | } |
| 5546 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5547 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5548 | { |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 5549 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5550 | } |
| 5551 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5552 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5553 | { |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5554 | kvm_emulate_hypercall(vcpu); |
| 5555 | return 1; |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5556 | } |
| 5557 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5558 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 5559 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5560 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5561 | } |
| 5562 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5563 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5564 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5565 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5566 | |
| 5567 | kvm_mmu_invlpg(vcpu, exit_qualification); |
| 5568 | skip_emulated_instruction(vcpu); |
| 5569 | return 1; |
| 5570 | } |
| 5571 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 5572 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 5573 | { |
| 5574 | int err; |
| 5575 | |
| 5576 | err = kvm_rdpmc(vcpu); |
| 5577 | kvm_complete_insn_gp(vcpu, err); |
| 5578 | |
| 5579 | return 1; |
| 5580 | } |
| 5581 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5582 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5583 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 5584 | kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5585 | return 1; |
| 5586 | } |
| 5587 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5588 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 5589 | { |
| 5590 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 5591 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5592 | |
| 5593 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
| 5594 | skip_emulated_instruction(vcpu); |
| 5595 | return 1; |
| 5596 | } |
| 5597 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5598 | static int handle_xsaves(struct kvm_vcpu *vcpu) |
| 5599 | { |
| 5600 | skip_emulated_instruction(vcpu); |
| 5601 | WARN(1, "this should never happen\n"); |
| 5602 | return 1; |
| 5603 | } |
| 5604 | |
| 5605 | static int handle_xrstors(struct kvm_vcpu *vcpu) |
| 5606 | { |
| 5607 | skip_emulated_instruction(vcpu); |
| 5608 | WARN(1, "this should never happen\n"); |
| 5609 | return 1; |
| 5610 | } |
| 5611 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5612 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5613 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 5614 | if (likely(fasteoi)) { |
| 5615 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5616 | int access_type, offset; |
| 5617 | |
| 5618 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 5619 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 5620 | /* |
| 5621 | * Sane guest uses MOV to write EOI, with written value |
| 5622 | * not cared. So make a short-circuit here by avoiding |
| 5623 | * heavy instruction emulation. |
| 5624 | */ |
| 5625 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 5626 | (offset == APIC_EOI)) { |
| 5627 | kvm_lapic_set_eoi(vcpu); |
| 5628 | skip_emulated_instruction(vcpu); |
| 5629 | return 1; |
| 5630 | } |
| 5631 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5632 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5633 | } |
| 5634 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5635 | static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu) |
| 5636 | { |
| 5637 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5638 | int vector = exit_qualification & 0xff; |
| 5639 | |
| 5640 | /* EOI-induced VM exit is trap-like and thus no need to adjust IP */ |
| 5641 | kvm_apic_set_eoi_accelerated(vcpu, vector); |
| 5642 | return 1; |
| 5643 | } |
| 5644 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 5645 | static int handle_apic_write(struct kvm_vcpu *vcpu) |
| 5646 | { |
| 5647 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5648 | u32 offset = exit_qualification & 0xfff; |
| 5649 | |
| 5650 | /* APIC-write VM exit is trap-like and thus no need to adjust IP */ |
| 5651 | kvm_apic_write_nodecode(vcpu, offset); |
| 5652 | return 1; |
| 5653 | } |
| 5654 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5655 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5656 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5657 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5658 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5659 | bool has_error_code = false; |
| 5660 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5661 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5662 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5663 | |
| 5664 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5665 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5666 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5667 | |
| 5668 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5669 | |
| 5670 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5671 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 5672 | switch (type) { |
| 5673 | case INTR_TYPE_NMI_INTR: |
| 5674 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 5675 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5676 | break; |
| 5677 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5678 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5679 | kvm_clear_interrupt_queue(vcpu); |
| 5680 | break; |
| 5681 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5682 | if (vmx->idt_vectoring_info & |
| 5683 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 5684 | has_error_code = true; |
| 5685 | error_code = |
| 5686 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 5687 | } |
| 5688 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5689 | case INTR_TYPE_SOFT_EXCEPTION: |
| 5690 | kvm_clear_exception_queue(vcpu); |
| 5691 | break; |
| 5692 | default: |
| 5693 | break; |
| 5694 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5695 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5696 | tss_selector = exit_qualification; |
| 5697 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5698 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 5699 | type != INTR_TYPE_EXT_INTR && |
| 5700 | type != INTR_TYPE_NMI_INTR)) |
| 5701 | skip_emulated_instruction(vcpu); |
| 5702 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5703 | if (kvm_task_switch(vcpu, tss_selector, |
| 5704 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 5705 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5706 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5707 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5708 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5709 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5710 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5711 | |
| 5712 | /* clear all local breakpoint enable flags */ |
Nadav Amit | 0e8a0996 | 2014-10-03 01:10:02 +0300 | [diff] [blame] | 5713 | vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~0x155); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5714 | |
| 5715 | /* |
| 5716 | * TODO: What about debug traps on tss switch? |
| 5717 | * Are we supposed to inject them and update dr6? |
| 5718 | */ |
| 5719 | |
| 5720 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5721 | } |
| 5722 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5723 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5724 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5725 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5726 | gpa_t gpa; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5727 | u32 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5728 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5729 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5730 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5731 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5732 | gla_validity = (exit_qualification >> 7) & 0x3; |
| 5733 | if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) { |
| 5734 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 5735 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 5736 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5737 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5738 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 5739 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5740 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5741 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 5742 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5743 | } |
| 5744 | |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5745 | /* |
| 5746 | * EPT violation happened while executing iret from NMI, |
| 5747 | * "blocked by NMI" bit has to be set before next VM entry. |
| 5748 | * There are errata that may cause this bit to not be set: |
| 5749 | * AAK134, BY25. |
| 5750 | */ |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 5751 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 5752 | cpu_has_virtual_nmis() && |
| 5753 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5754 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI); |
| 5755 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5756 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5757 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5758 | |
| 5759 | /* It is a write fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5760 | error_code = exit_qualification & PFERR_WRITE_MASK; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5761 | /* It is a fetch fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5762 | error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5763 | /* ept page table is present? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5764 | error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5765 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5766 | vcpu->arch.exit_qualification = exit_qualification; |
| 5767 | |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5768 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5769 | } |
| 5770 | |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5771 | static u64 ept_rsvd_mask(u64 spte, int level) |
| 5772 | { |
| 5773 | int i; |
| 5774 | u64 mask = 0; |
| 5775 | |
| 5776 | for (i = 51; i > boot_cpu_data.x86_phys_bits; i--) |
| 5777 | mask |= (1ULL << i); |
| 5778 | |
Wanpeng Li | a32e845 | 2014-08-20 15:31:53 +0800 | [diff] [blame] | 5779 | if (level == 4) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5780 | /* bits 7:3 reserved */ |
| 5781 | mask |= 0xf8; |
Wanpeng Li | a32e845 | 2014-08-20 15:31:53 +0800 | [diff] [blame] | 5782 | else if (spte & (1ULL << 7)) |
| 5783 | /* |
| 5784 | * 1GB/2MB page, bits 29:12 or 20:12 reserved respectively, |
| 5785 | * level == 1 if the hypervisor is using the ignored bit 7. |
| 5786 | */ |
| 5787 | mask |= (PAGE_SIZE << ((level - 1) * 9)) - PAGE_SIZE; |
| 5788 | else if (level > 1) |
| 5789 | /* bits 6:3 reserved */ |
| 5790 | mask |= 0x78; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5791 | |
| 5792 | return mask; |
| 5793 | } |
| 5794 | |
| 5795 | static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte, |
| 5796 | int level) |
| 5797 | { |
| 5798 | printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level); |
| 5799 | |
| 5800 | /* 010b (write-only) */ |
| 5801 | WARN_ON((spte & 0x7) == 0x2); |
| 5802 | |
| 5803 | /* 110b (write/execute) */ |
| 5804 | WARN_ON((spte & 0x7) == 0x6); |
| 5805 | |
| 5806 | /* 100b (execute-only) and value not supported by logical processor */ |
| 5807 | if (!cpu_has_vmx_ept_execute_only()) |
| 5808 | WARN_ON((spte & 0x7) == 0x4); |
| 5809 | |
| 5810 | /* not 000b */ |
| 5811 | if ((spte & 0x7)) { |
| 5812 | u64 rsvd_bits = spte & ept_rsvd_mask(spte, level); |
| 5813 | |
| 5814 | if (rsvd_bits != 0) { |
| 5815 | printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n", |
| 5816 | __func__, rsvd_bits); |
| 5817 | WARN_ON(1); |
| 5818 | } |
| 5819 | |
Wanpeng Li | a32e845 | 2014-08-20 15:31:53 +0800 | [diff] [blame] | 5820 | /* bits 5:3 are _not_ reserved for large page or leaf page */ |
| 5821 | if ((rsvd_bits & 0x38) == 0) { |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5822 | u64 ept_mem_type = (spte & 0x38) >> 3; |
| 5823 | |
| 5824 | if (ept_mem_type == 2 || ept_mem_type == 3 || |
| 5825 | ept_mem_type == 7) { |
| 5826 | printk(KERN_ERR "%s: ept_mem_type=0x%llx\n", |
| 5827 | __func__, ept_mem_type); |
| 5828 | WARN_ON(1); |
| 5829 | } |
| 5830 | } |
| 5831 | } |
| 5832 | } |
| 5833 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5834 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5835 | { |
| 5836 | u64 sptes[4]; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5837 | int nr_sptes, i, ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5838 | gpa_t gpa; |
| 5839 | |
| 5840 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 5841 | if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) { |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 5842 | skip_emulated_instruction(vcpu); |
| 5843 | return 1; |
| 5844 | } |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5845 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5846 | ret = handle_mmio_page_fault_common(vcpu, gpa, true); |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5847 | if (likely(ret == RET_MMIO_PF_EMULATE)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5848 | return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) == |
| 5849 | EMULATE_DONE; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5850 | |
| 5851 | if (unlikely(ret == RET_MMIO_PF_INVALID)) |
| 5852 | return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0); |
| 5853 | |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5854 | if (unlikely(ret == RET_MMIO_PF_RETRY)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5855 | return 1; |
| 5856 | |
| 5857 | /* It is the real ept misconfig */ |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5858 | printk(KERN_ERR "EPT: Misconfiguration.\n"); |
| 5859 | printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa); |
| 5860 | |
| 5861 | nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes); |
| 5862 | |
| 5863 | for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i) |
| 5864 | ept_misconfig_inspect_spte(vcpu, sptes[i-1], i); |
| 5865 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5866 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5867 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5868 | |
| 5869 | return 0; |
| 5870 | } |
| 5871 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5872 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5873 | { |
| 5874 | u32 cpu_based_vm_exec_control; |
| 5875 | |
| 5876 | /* clear pending NMI */ |
| 5877 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5878 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 5879 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5880 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5881 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5882 | |
| 5883 | return 1; |
| 5884 | } |
| 5885 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5886 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5887 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 5888 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5889 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5890 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5891 | u32 cpu_exec_ctrl; |
| 5892 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 5893 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5894 | |
| 5895 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5896 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5897 | |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 5898 | while (vmx->emulation_required && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 5899 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5900 | return handle_interrupt_window(&vmx->vcpu); |
| 5901 | |
Avi Kivity | de87dcd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 5902 | if (test_bit(KVM_REQ_EVENT, &vcpu->requests)) |
| 5903 | return 1; |
| 5904 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5905 | err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5906 | |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5907 | if (err == EMULATE_USER_EXIT) { |
Paolo Bonzini | 94452b9 | 2013-08-27 15:41:42 +0200 | [diff] [blame] | 5908 | ++vcpu->stat.mmio_exits; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5909 | ret = 0; |
| 5910 | goto out; |
| 5911 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5912 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5913 | if (err != EMULATE_DONE) { |
| 5914 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5915 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5916 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5917 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5918 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5919 | |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5920 | if (vcpu->arch.halt_request) { |
| 5921 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5922 | ret = kvm_vcpu_halt(vcpu); |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5923 | goto out; |
| 5924 | } |
| 5925 | |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5926 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5927 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5928 | if (need_resched()) |
| 5929 | schedule(); |
| 5930 | } |
| 5931 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5932 | out: |
| 5933 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5934 | } |
| 5935 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 5936 | static int __grow_ple_window(int val) |
| 5937 | { |
| 5938 | if (ple_window_grow < 1) |
| 5939 | return ple_window; |
| 5940 | |
| 5941 | val = min(val, ple_window_actual_max); |
| 5942 | |
| 5943 | if (ple_window_grow < ple_window) |
| 5944 | val *= ple_window_grow; |
| 5945 | else |
| 5946 | val += ple_window_grow; |
| 5947 | |
| 5948 | return val; |
| 5949 | } |
| 5950 | |
| 5951 | static int __shrink_ple_window(int val, int modifier, int minimum) |
| 5952 | { |
| 5953 | if (modifier < 1) |
| 5954 | return ple_window; |
| 5955 | |
| 5956 | if (modifier < ple_window) |
| 5957 | val /= modifier; |
| 5958 | else |
| 5959 | val -= modifier; |
| 5960 | |
| 5961 | return max(val, minimum); |
| 5962 | } |
| 5963 | |
| 5964 | static void grow_ple_window(struct kvm_vcpu *vcpu) |
| 5965 | { |
| 5966 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5967 | int old = vmx->ple_window; |
| 5968 | |
| 5969 | vmx->ple_window = __grow_ple_window(old); |
| 5970 | |
| 5971 | if (vmx->ple_window != old) |
| 5972 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 5973 | |
| 5974 | trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old); |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 5975 | } |
| 5976 | |
| 5977 | static void shrink_ple_window(struct kvm_vcpu *vcpu) |
| 5978 | { |
| 5979 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5980 | int old = vmx->ple_window; |
| 5981 | |
| 5982 | vmx->ple_window = __shrink_ple_window(old, |
| 5983 | ple_window_shrink, ple_window); |
| 5984 | |
| 5985 | if (vmx->ple_window != old) |
| 5986 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 5987 | |
| 5988 | trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old); |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 5989 | } |
| 5990 | |
| 5991 | /* |
| 5992 | * ple_window_actual_max is computed to be one grow_ple_window() below |
| 5993 | * ple_window_max. (See __grow_ple_window for the reason.) |
| 5994 | * This prevents overflows, because ple_window_max is int. |
| 5995 | * ple_window_max effectively rounded down to a multiple of ple_window_grow in |
| 5996 | * this process. |
| 5997 | * ple_window_max is also prevented from setting vmx->ple_window < ple_window. |
| 5998 | */ |
| 5999 | static void update_ple_window_actual_max(void) |
| 6000 | { |
| 6001 | ple_window_actual_max = |
| 6002 | __shrink_ple_window(max(ple_window_max, ple_window), |
| 6003 | ple_window_grow, INT_MIN); |
| 6004 | } |
| 6005 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6006 | static __init int hardware_setup(void) |
| 6007 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6008 | int r = -ENOMEM, i, msr; |
| 6009 | |
| 6010 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6011 | |
| 6012 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) |
| 6013 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
| 6014 | |
| 6015 | vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6016 | if (!vmx_io_bitmap_a) |
| 6017 | return r; |
| 6018 | |
| 6019 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6020 | if (!vmx_io_bitmap_b) |
| 6021 | goto out; |
| 6022 | |
| 6023 | vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6024 | if (!vmx_msr_bitmap_legacy) |
| 6025 | goto out1; |
| 6026 | |
| 6027 | vmx_msr_bitmap_legacy_x2apic = |
| 6028 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6029 | if (!vmx_msr_bitmap_legacy_x2apic) |
| 6030 | goto out2; |
| 6031 | |
| 6032 | vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6033 | if (!vmx_msr_bitmap_longmode) |
| 6034 | goto out3; |
| 6035 | |
| 6036 | vmx_msr_bitmap_longmode_x2apic = |
| 6037 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6038 | if (!vmx_msr_bitmap_longmode_x2apic) |
| 6039 | goto out4; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6040 | |
| 6041 | if (nested) { |
| 6042 | vmx_msr_bitmap_nested = |
| 6043 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6044 | if (!vmx_msr_bitmap_nested) |
| 6045 | goto out5; |
| 6046 | } |
| 6047 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6048 | vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6049 | if (!vmx_vmread_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6050 | goto out6; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6051 | |
| 6052 | vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6053 | if (!vmx_vmwrite_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6054 | goto out7; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6055 | |
| 6056 | memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE); |
| 6057 | memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE); |
| 6058 | |
| 6059 | /* |
| 6060 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6061 | * delays, but the vmexits simply slow things down). |
| 6062 | */ |
| 6063 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6064 | clear_bit(0x80, vmx_io_bitmap_a); |
| 6065 | |
| 6066 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
| 6067 | |
| 6068 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6069 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6070 | if (nested) |
| 6071 | memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6072 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6073 | if (setup_vmcs_config(&vmcs_config) < 0) { |
| 6074 | r = -EIO; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6075 | goto out8; |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6076 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6077 | |
| 6078 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 6079 | kvm_enable_efer_bits(EFER_NX); |
| 6080 | |
| 6081 | if (!cpu_has_vmx_vpid()) |
| 6082 | enable_vpid = 0; |
| 6083 | if (!cpu_has_vmx_shadow_vmcs()) |
| 6084 | enable_shadow_vmcs = 0; |
| 6085 | if (enable_shadow_vmcs) |
| 6086 | init_vmcs_shadow_fields(); |
| 6087 | |
| 6088 | if (!cpu_has_vmx_ept() || |
| 6089 | !cpu_has_vmx_ept_4levels()) { |
| 6090 | enable_ept = 0; |
| 6091 | enable_unrestricted_guest = 0; |
| 6092 | enable_ept_ad_bits = 0; |
| 6093 | } |
| 6094 | |
| 6095 | if (!cpu_has_vmx_ept_ad_bits()) |
| 6096 | enable_ept_ad_bits = 0; |
| 6097 | |
| 6098 | if (!cpu_has_vmx_unrestricted_guest()) |
| 6099 | enable_unrestricted_guest = 0; |
| 6100 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6101 | if (!cpu_has_vmx_flexpriority()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6102 | flexpriority_enabled = 0; |
| 6103 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6104 | /* |
| 6105 | * set_apic_access_page_addr() is used to reload apic access |
| 6106 | * page upon invalidation. No need to do anything if not |
| 6107 | * using the APIC_ACCESS_ADDR VMCS field. |
| 6108 | */ |
| 6109 | if (!flexpriority_enabled) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6110 | kvm_x86_ops->set_apic_access_page_addr = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6111 | |
| 6112 | if (!cpu_has_vmx_tpr_shadow()) |
| 6113 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6114 | |
| 6115 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 6116 | kvm_disable_largepages(); |
| 6117 | |
| 6118 | if (!cpu_has_vmx_ple()) |
| 6119 | ple_gap = 0; |
| 6120 | |
| 6121 | if (!cpu_has_vmx_apicv()) |
| 6122 | enable_apicv = 0; |
| 6123 | |
| 6124 | if (enable_apicv) |
| 6125 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6126 | else { |
| 6127 | kvm_x86_ops->hwapic_irr_update = NULL; |
Tiejun Chen | b4eef9b | 2014-12-22 10:32:57 +0100 | [diff] [blame] | 6128 | kvm_x86_ops->hwapic_isr_update = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6129 | kvm_x86_ops->deliver_posted_interrupt = NULL; |
| 6130 | kvm_x86_ops->sync_pir_to_irr = vmx_sync_pir_to_irr_dummy; |
| 6131 | } |
| 6132 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6133 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6134 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6135 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6136 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6137 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6138 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
| 6139 | vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); |
| 6140 | |
| 6141 | memcpy(vmx_msr_bitmap_legacy_x2apic, |
| 6142 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6143 | memcpy(vmx_msr_bitmap_longmode_x2apic, |
| 6144 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
| 6145 | |
| 6146 | if (enable_apicv) { |
| 6147 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 6148 | vmx_disable_intercept_msr_read_x2apic(msr); |
| 6149 | |
| 6150 | /* According SDM, in x2apic mode, the whole id reg is used. |
| 6151 | * But in KVM, it only use the highest eight bits. Need to |
| 6152 | * intercept it */ |
| 6153 | vmx_enable_intercept_msr_read_x2apic(0x802); |
| 6154 | /* TMCCT */ |
| 6155 | vmx_enable_intercept_msr_read_x2apic(0x839); |
| 6156 | /* TPR */ |
| 6157 | vmx_disable_intercept_msr_write_x2apic(0x808); |
| 6158 | /* EOI */ |
| 6159 | vmx_disable_intercept_msr_write_x2apic(0x80b); |
| 6160 | /* SELF-IPI */ |
| 6161 | vmx_disable_intercept_msr_write_x2apic(0x83f); |
| 6162 | } |
| 6163 | |
| 6164 | if (enable_ept) { |
| 6165 | kvm_mmu_set_mask_ptes(0ull, |
| 6166 | (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull, |
| 6167 | (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull, |
| 6168 | 0ull, VMX_EPT_EXECUTABLE_MASK); |
| 6169 | ept_set_mmio_spte_mask(); |
| 6170 | kvm_enable_tdp(); |
| 6171 | } else |
| 6172 | kvm_disable_tdp(); |
| 6173 | |
| 6174 | update_ple_window_actual_max(); |
| 6175 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 6176 | /* |
| 6177 | * Only enable PML when hardware supports PML feature, and both EPT |
| 6178 | * and EPT A/D bit features are enabled -- PML depends on them to work. |
| 6179 | */ |
| 6180 | if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml()) |
| 6181 | enable_pml = 0; |
| 6182 | |
| 6183 | if (!enable_pml) { |
| 6184 | kvm_x86_ops->slot_enable_log_dirty = NULL; |
| 6185 | kvm_x86_ops->slot_disable_log_dirty = NULL; |
| 6186 | kvm_x86_ops->flush_log_dirty = NULL; |
| 6187 | kvm_x86_ops->enable_log_dirty_pt_masked = NULL; |
| 6188 | } |
| 6189 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6190 | return alloc_kvm_area(); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6191 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6192 | out8: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6193 | free_page((unsigned long)vmx_vmwrite_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6194 | out7: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6195 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6196 | out6: |
| 6197 | if (nested) |
| 6198 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6199 | out5: |
| 6200 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6201 | out4: |
| 6202 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6203 | out3: |
| 6204 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6205 | out2: |
| 6206 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6207 | out1: |
| 6208 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6209 | out: |
| 6210 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6211 | |
| 6212 | return r; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6213 | } |
| 6214 | |
| 6215 | static __exit void hardware_unsetup(void) |
| 6216 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6217 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6218 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6219 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6220 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6221 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6222 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6223 | free_page((unsigned long)vmx_vmwrite_bitmap); |
| 6224 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6225 | if (nested) |
| 6226 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6227 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6228 | free_kvm_area(); |
| 6229 | } |
| 6230 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6231 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6232 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 6233 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 6234 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 6235 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6236 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6237 | if (ple_gap) |
| 6238 | grow_ple_window(vcpu); |
| 6239 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6240 | skip_emulated_instruction(vcpu); |
| 6241 | kvm_vcpu_on_spin(vcpu); |
| 6242 | |
| 6243 | return 1; |
| 6244 | } |
| 6245 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6246 | static int handle_nop(struct kvm_vcpu *vcpu) |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6247 | { |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6248 | skip_emulated_instruction(vcpu); |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6249 | return 1; |
| 6250 | } |
| 6251 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6252 | static int handle_mwait(struct kvm_vcpu *vcpu) |
| 6253 | { |
| 6254 | printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n"); |
| 6255 | return handle_nop(vcpu); |
| 6256 | } |
| 6257 | |
| 6258 | static int handle_monitor(struct kvm_vcpu *vcpu) |
| 6259 | { |
| 6260 | printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n"); |
| 6261 | return handle_nop(vcpu); |
| 6262 | } |
| 6263 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6264 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6265 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 6266 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 6267 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 6268 | * allows keeping them loaded on the processor, and in the future will allow |
| 6269 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 6270 | * every entry if they never change. |
| 6271 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 6272 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 6273 | * |
| 6274 | * The following functions allocate and free a vmcs02 in this pool. |
| 6275 | */ |
| 6276 | |
| 6277 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 6278 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 6279 | { |
| 6280 | struct vmcs02_list *item; |
| 6281 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6282 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 6283 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6284 | return &item->vmcs02; |
| 6285 | } |
| 6286 | |
| 6287 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 6288 | /* Recycle the least recently used VMCS. */ |
| 6289 | item = list_entry(vmx->nested.vmcs02_pool.prev, |
| 6290 | struct vmcs02_list, list); |
| 6291 | item->vmptr = vmx->nested.current_vmptr; |
| 6292 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6293 | return &item->vmcs02; |
| 6294 | } |
| 6295 | |
| 6296 | /* Create a new VMCS */ |
Ioan Orghici | 0fa24ce | 2013-03-10 15:46:00 +0200 | [diff] [blame] | 6297 | item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6298 | if (!item) |
| 6299 | return NULL; |
| 6300 | item->vmcs02.vmcs = alloc_vmcs(); |
| 6301 | if (!item->vmcs02.vmcs) { |
| 6302 | kfree(item); |
| 6303 | return NULL; |
| 6304 | } |
| 6305 | loaded_vmcs_init(&item->vmcs02); |
| 6306 | item->vmptr = vmx->nested.current_vmptr; |
| 6307 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 6308 | vmx->nested.vmcs02_num++; |
| 6309 | return &item->vmcs02; |
| 6310 | } |
| 6311 | |
| 6312 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 6313 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 6314 | { |
| 6315 | struct vmcs02_list *item; |
| 6316 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6317 | if (item->vmptr == vmptr) { |
| 6318 | free_loaded_vmcs(&item->vmcs02); |
| 6319 | list_del(&item->list); |
| 6320 | kfree(item); |
| 6321 | vmx->nested.vmcs02_num--; |
| 6322 | return; |
| 6323 | } |
| 6324 | } |
| 6325 | |
| 6326 | /* |
| 6327 | * Free all VMCSs saved for this vcpu, except the one pointed by |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6328 | * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs |
| 6329 | * must be &vmx->vmcs01. |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6330 | */ |
| 6331 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 6332 | { |
| 6333 | struct vmcs02_list *item, *n; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6334 | |
| 6335 | WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6336 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6337 | /* |
| 6338 | * Something will leak if the above WARN triggers. Better than |
| 6339 | * a use-after-free. |
| 6340 | */ |
| 6341 | if (vmx->loaded_vmcs == &item->vmcs02) |
| 6342 | continue; |
| 6343 | |
| 6344 | free_loaded_vmcs(&item->vmcs02); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6345 | list_del(&item->list); |
| 6346 | kfree(item); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6347 | vmx->nested.vmcs02_num--; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6348 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6349 | } |
| 6350 | |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6351 | /* |
| 6352 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 6353 | * set the success or error code of an emulated VMX instruction, as specified |
| 6354 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 6355 | */ |
| 6356 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 6357 | { |
| 6358 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 6359 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6360 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 6361 | } |
| 6362 | |
| 6363 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 6364 | { |
| 6365 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6366 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 6367 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6368 | | X86_EFLAGS_CF); |
| 6369 | } |
| 6370 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6371 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6372 | u32 vm_instruction_error) |
| 6373 | { |
| 6374 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 6375 | /* |
| 6376 | * failValid writes the error number to the current VMCS, which |
| 6377 | * can't be done there isn't a current VMCS. |
| 6378 | */ |
| 6379 | nested_vmx_failInvalid(vcpu); |
| 6380 | return; |
| 6381 | } |
| 6382 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6383 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6384 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6385 | | X86_EFLAGS_ZF); |
| 6386 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 6387 | /* |
| 6388 | * We don't need to force a shadow sync because |
| 6389 | * VM_INSTRUCTION_ERROR is not shadowed |
| 6390 | */ |
| 6391 | } |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6392 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 6393 | static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator) |
| 6394 | { |
| 6395 | /* TODO: not to reset guest simply here. */ |
| 6396 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6397 | pr_warn("kvm: nested vmx abort, indicator %d\n", indicator); |
| 6398 | } |
| 6399 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6400 | static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer) |
| 6401 | { |
| 6402 | struct vcpu_vmx *vmx = |
| 6403 | container_of(timer, struct vcpu_vmx, nested.preemption_timer); |
| 6404 | |
| 6405 | vmx->nested.preemption_timer_expired = true; |
| 6406 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 6407 | kvm_vcpu_kick(&vmx->vcpu); |
| 6408 | |
| 6409 | return HRTIMER_NORESTART; |
| 6410 | } |
| 6411 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6412 | /* |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6413 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 6414 | * exit caused by such an instruction (run by a guest hypervisor). |
| 6415 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 6416 | * #UD or #GP. |
| 6417 | */ |
| 6418 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 6419 | unsigned long exit_qualification, |
| 6420 | u32 vmx_instruction_info, gva_t *ret) |
| 6421 | { |
| 6422 | /* |
| 6423 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 6424 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 6425 | * addressing components of the operand. Only the displacement part |
| 6426 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 6427 | * For how an actual address is calculated from all these components, |
| 6428 | * refer to Vol. 1, "Operand Addressing". |
| 6429 | */ |
| 6430 | int scaling = vmx_instruction_info & 3; |
| 6431 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 6432 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 6433 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 6434 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 6435 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 6436 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 6437 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 6438 | |
| 6439 | if (is_reg) { |
| 6440 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6441 | return 1; |
| 6442 | } |
| 6443 | |
| 6444 | /* Addr = segment_base + offset */ |
| 6445 | /* offset = base + [index * scale] + displacement */ |
| 6446 | *ret = vmx_get_segment_base(vcpu, seg_reg); |
| 6447 | if (base_is_valid) |
| 6448 | *ret += kvm_register_read(vcpu, base_reg); |
| 6449 | if (index_is_valid) |
| 6450 | *ret += kvm_register_read(vcpu, index_reg)<<scaling; |
| 6451 | *ret += exit_qualification; /* holds the displacement */ |
| 6452 | |
| 6453 | if (addr_size == 1) /* 32 bit */ |
| 6454 | *ret &= 0xffffffff; |
| 6455 | |
| 6456 | /* |
| 6457 | * TODO: throw #GP (and return 1) in various cases that the VM* |
| 6458 | * instructions require it - e.g., offset beyond segment limit, |
| 6459 | * unusable or unreadable/unwritable segment, non-canonical 64-bit |
| 6460 | * address, and so on. Currently these are not checked. |
| 6461 | */ |
| 6462 | return 0; |
| 6463 | } |
| 6464 | |
| 6465 | /* |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6466 | * This function performs the various checks including |
| 6467 | * - if it's 4KB aligned |
| 6468 | * - No bits beyond the physical address width are set |
| 6469 | * - Returns 0 on success or else 1 |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6470 | * (Intel SDM Section 30.3) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6471 | */ |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6472 | static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason, |
| 6473 | gpa_t *vmpointer) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6474 | { |
| 6475 | gva_t gva; |
| 6476 | gpa_t vmptr; |
| 6477 | struct x86_exception e; |
| 6478 | struct page *page; |
| 6479 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6480 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 6481 | |
| 6482 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 6483 | vmcs_read32(VMX_INSTRUCTION_INFO), &gva)) |
| 6484 | return 1; |
| 6485 | |
| 6486 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 6487 | sizeof(vmptr), &e)) { |
| 6488 | kvm_inject_page_fault(vcpu, &e); |
| 6489 | return 1; |
| 6490 | } |
| 6491 | |
| 6492 | switch (exit_reason) { |
| 6493 | case EXIT_REASON_VMON: |
| 6494 | /* |
| 6495 | * SDM 3: 24.11.5 |
| 6496 | * The first 4 bytes of VMXON region contain the supported |
| 6497 | * VMCS revision identifier |
| 6498 | * |
| 6499 | * Note - IA32_VMX_BASIC[48] will never be 1 |
| 6500 | * for the nested case; |
| 6501 | * which replaces physical address width with 32 |
| 6502 | * |
| 6503 | */ |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6504 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6505 | nested_vmx_failInvalid(vcpu); |
| 6506 | skip_emulated_instruction(vcpu); |
| 6507 | return 1; |
| 6508 | } |
| 6509 | |
| 6510 | page = nested_get_page(vcpu, vmptr); |
| 6511 | if (page == NULL || |
| 6512 | *(u32 *)kmap(page) != VMCS12_REVISION) { |
| 6513 | nested_vmx_failInvalid(vcpu); |
| 6514 | kunmap(page); |
| 6515 | skip_emulated_instruction(vcpu); |
| 6516 | return 1; |
| 6517 | } |
| 6518 | kunmap(page); |
| 6519 | vmx->nested.vmxon_ptr = vmptr; |
| 6520 | break; |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6521 | case EXIT_REASON_VMCLEAR: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6522 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6523 | nested_vmx_failValid(vcpu, |
| 6524 | VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 6525 | skip_emulated_instruction(vcpu); |
| 6526 | return 1; |
| 6527 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6528 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6529 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6530 | nested_vmx_failValid(vcpu, |
| 6531 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6532 | skip_emulated_instruction(vcpu); |
| 6533 | return 1; |
| 6534 | } |
| 6535 | break; |
| 6536 | case EXIT_REASON_VMPTRLD: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6537 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6538 | nested_vmx_failValid(vcpu, |
| 6539 | VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 6540 | skip_emulated_instruction(vcpu); |
| 6541 | return 1; |
| 6542 | } |
| 6543 | |
| 6544 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6545 | nested_vmx_failValid(vcpu, |
| 6546 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6547 | skip_emulated_instruction(vcpu); |
| 6548 | return 1; |
| 6549 | } |
| 6550 | break; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6551 | default: |
| 6552 | return 1; /* shouldn't happen */ |
| 6553 | } |
| 6554 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6555 | if (vmpointer) |
| 6556 | *vmpointer = vmptr; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6557 | return 0; |
| 6558 | } |
| 6559 | |
| 6560 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6561 | * Emulate the VMXON instruction. |
| 6562 | * Currently, we just remember that VMX is active, and do not save or even |
| 6563 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 6564 | * do not currently need to store anything in that guest-allocated memory |
| 6565 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 6566 | * argument is different from the VMXON pointer (which the spec says they do). |
| 6567 | */ |
| 6568 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 6569 | { |
| 6570 | struct kvm_segment cs; |
| 6571 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6572 | struct vmcs *shadow_vmcs; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6573 | const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED |
| 6574 | | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6575 | |
| 6576 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 6577 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 6578 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 6579 | * Otherwise, we should fail with #UD. We test these now: |
| 6580 | */ |
| 6581 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 6582 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 6583 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 6584 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6585 | return 1; |
| 6586 | } |
| 6587 | |
| 6588 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6589 | if (is_long_mode(vcpu) && !cs.l) { |
| 6590 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6591 | return 1; |
| 6592 | } |
| 6593 | |
| 6594 | if (vmx_get_cpl(vcpu)) { |
| 6595 | kvm_inject_gp(vcpu, 0); |
| 6596 | return 1; |
| 6597 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6598 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6599 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6600 | return 1; |
| 6601 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6602 | if (vmx->nested.vmxon) { |
| 6603 | nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION); |
| 6604 | skip_emulated_instruction(vcpu); |
| 6605 | return 1; |
| 6606 | } |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6607 | |
| 6608 | if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES) |
| 6609 | != VMXON_NEEDED_FEATURES) { |
| 6610 | kvm_inject_gp(vcpu, 0); |
| 6611 | return 1; |
| 6612 | } |
| 6613 | |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6614 | if (enable_shadow_vmcs) { |
| 6615 | shadow_vmcs = alloc_vmcs(); |
| 6616 | if (!shadow_vmcs) |
| 6617 | return -ENOMEM; |
| 6618 | /* mark vmcs as shadow */ |
| 6619 | shadow_vmcs->revision_id |= (1u << 31); |
| 6620 | /* init shadow vmcs */ |
| 6621 | vmcs_clear(shadow_vmcs); |
| 6622 | vmx->nested.current_shadow_vmcs = shadow_vmcs; |
| 6623 | } |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6624 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6625 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 6626 | vmx->nested.vmcs02_num = 0; |
| 6627 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6628 | hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC, |
| 6629 | HRTIMER_MODE_REL); |
| 6630 | vmx->nested.preemption_timer.function = vmx_preemption_timer_fn; |
| 6631 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6632 | vmx->nested.vmxon = true; |
| 6633 | |
| 6634 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6635 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6636 | return 1; |
| 6637 | } |
| 6638 | |
| 6639 | /* |
| 6640 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 6641 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 6642 | * slightly different). It also specifies what exception to inject otherwise. |
| 6643 | */ |
| 6644 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 6645 | { |
| 6646 | struct kvm_segment cs; |
| 6647 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6648 | |
| 6649 | if (!vmx->nested.vmxon) { |
| 6650 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6651 | return 0; |
| 6652 | } |
| 6653 | |
| 6654 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6655 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 6656 | (is_long_mode(vcpu) && !cs.l)) { |
| 6657 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6658 | return 0; |
| 6659 | } |
| 6660 | |
| 6661 | if (vmx_get_cpl(vcpu)) { |
| 6662 | kvm_inject_gp(vcpu, 0); |
| 6663 | return 0; |
| 6664 | } |
| 6665 | |
| 6666 | return 1; |
| 6667 | } |
| 6668 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6669 | static inline void nested_release_vmcs12(struct vcpu_vmx *vmx) |
| 6670 | { |
Abel Gordon | 8a1b9dd | 2013-04-18 14:39:55 +0300 | [diff] [blame] | 6671 | u32 exec_control; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6672 | if (vmx->nested.current_vmptr == -1ull) |
| 6673 | return; |
| 6674 | |
| 6675 | /* current_vmptr and current_vmcs12 are always set/reset together */ |
| 6676 | if (WARN_ON(vmx->nested.current_vmcs12 == NULL)) |
| 6677 | return; |
| 6678 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6679 | if (enable_shadow_vmcs) { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6680 | /* copy to memory all shadowed fields in case |
| 6681 | they were modified */ |
| 6682 | copy_shadow_to_vmcs12(vmx); |
| 6683 | vmx->nested.sync_shadow_vmcs = false; |
| 6684 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 6685 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
| 6686 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 6687 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6688 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6689 | vmx->nested.posted_intr_nv = -1; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6690 | kunmap(vmx->nested.current_vmcs12_page); |
| 6691 | nested_release_page(vmx->nested.current_vmcs12_page); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6692 | vmx->nested.current_vmptr = -1ull; |
| 6693 | vmx->nested.current_vmcs12 = NULL; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6694 | } |
| 6695 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6696 | /* |
| 6697 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 6698 | * just stops using VMX. |
| 6699 | */ |
| 6700 | static void free_nested(struct vcpu_vmx *vmx) |
| 6701 | { |
| 6702 | if (!vmx->nested.vmxon) |
| 6703 | return; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6704 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6705 | vmx->nested.vmxon = false; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6706 | nested_release_vmcs12(vmx); |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6707 | if (enable_shadow_vmcs) |
| 6708 | free_vmcs(vmx->nested.current_shadow_vmcs); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6709 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 6710 | if (vmx->nested.apic_access_page) { |
| 6711 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6712 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6713 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6714 | if (vmx->nested.virtual_apic_page) { |
| 6715 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6716 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6717 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6718 | if (vmx->nested.pi_desc_page) { |
| 6719 | kunmap(vmx->nested.pi_desc_page); |
| 6720 | nested_release_page(vmx->nested.pi_desc_page); |
| 6721 | vmx->nested.pi_desc_page = NULL; |
| 6722 | vmx->nested.pi_desc = NULL; |
| 6723 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6724 | |
| 6725 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6726 | } |
| 6727 | |
| 6728 | /* Emulate the VMXOFF instruction */ |
| 6729 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 6730 | { |
| 6731 | if (!nested_vmx_check_permission(vcpu)) |
| 6732 | return 1; |
| 6733 | free_nested(to_vmx(vcpu)); |
| 6734 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6735 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6736 | return 1; |
| 6737 | } |
| 6738 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6739 | /* Emulate the VMCLEAR instruction */ |
| 6740 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 6741 | { |
| 6742 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6743 | gpa_t vmptr; |
| 6744 | struct vmcs12 *vmcs12; |
| 6745 | struct page *page; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6746 | |
| 6747 | if (!nested_vmx_check_permission(vcpu)) |
| 6748 | return 1; |
| 6749 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6750 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr)) |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6751 | return 1; |
| 6752 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6753 | if (vmptr == vmx->nested.current_vmptr) |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6754 | nested_release_vmcs12(vmx); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6755 | |
| 6756 | page = nested_get_page(vcpu, vmptr); |
| 6757 | if (page == NULL) { |
| 6758 | /* |
| 6759 | * For accurate processor emulation, VMCLEAR beyond available |
| 6760 | * physical memory should do nothing at all. However, it is |
| 6761 | * possible that a nested vmx bug, not a guest hypervisor bug, |
| 6762 | * resulted in this case, so let's shut down before doing any |
| 6763 | * more damage: |
| 6764 | */ |
| 6765 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6766 | return 1; |
| 6767 | } |
| 6768 | vmcs12 = kmap(page); |
| 6769 | vmcs12->launch_state = 0; |
| 6770 | kunmap(page); |
| 6771 | nested_release_page(page); |
| 6772 | |
| 6773 | nested_free_vmcs02(vmx, vmptr); |
| 6774 | |
| 6775 | skip_emulated_instruction(vcpu); |
| 6776 | nested_vmx_succeed(vcpu); |
| 6777 | return 1; |
| 6778 | } |
| 6779 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6780 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 6781 | |
| 6782 | /* Emulate the VMLAUNCH instruction */ |
| 6783 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 6784 | { |
| 6785 | return nested_vmx_run(vcpu, true); |
| 6786 | } |
| 6787 | |
| 6788 | /* Emulate the VMRESUME instruction */ |
| 6789 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 6790 | { |
| 6791 | |
| 6792 | return nested_vmx_run(vcpu, false); |
| 6793 | } |
| 6794 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6795 | enum vmcs_field_type { |
| 6796 | VMCS_FIELD_TYPE_U16 = 0, |
| 6797 | VMCS_FIELD_TYPE_U64 = 1, |
| 6798 | VMCS_FIELD_TYPE_U32 = 2, |
| 6799 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 6800 | }; |
| 6801 | |
| 6802 | static inline int vmcs_field_type(unsigned long field) |
| 6803 | { |
| 6804 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 6805 | return VMCS_FIELD_TYPE_U32; |
| 6806 | return (field >> 13) & 0x3 ; |
| 6807 | } |
| 6808 | |
| 6809 | static inline int vmcs_field_readonly(unsigned long field) |
| 6810 | { |
| 6811 | return (((field >> 10) & 0x3) == 1); |
| 6812 | } |
| 6813 | |
| 6814 | /* |
| 6815 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 6816 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 6817 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 6818 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 6819 | * 64-bit fields are to be returned). |
| 6820 | */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6821 | static inline int vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 6822 | unsigned long field, u64 *ret) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6823 | { |
| 6824 | short offset = vmcs_field_to_offset(field); |
| 6825 | char *p; |
| 6826 | |
| 6827 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6828 | return offset; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6829 | |
| 6830 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 6831 | |
| 6832 | switch (vmcs_field_type(field)) { |
| 6833 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6834 | *ret = *((natural_width *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6835 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6836 | case VMCS_FIELD_TYPE_U16: |
| 6837 | *ret = *((u16 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6838 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6839 | case VMCS_FIELD_TYPE_U32: |
| 6840 | *ret = *((u32 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6841 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6842 | case VMCS_FIELD_TYPE_U64: |
| 6843 | *ret = *((u64 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6844 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6845 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6846 | WARN_ON(1); |
| 6847 | return -ENOENT; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6848 | } |
| 6849 | } |
| 6850 | |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6851 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6852 | static inline int vmcs12_write_any(struct kvm_vcpu *vcpu, |
| 6853 | unsigned long field, u64 field_value){ |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6854 | short offset = vmcs_field_to_offset(field); |
| 6855 | char *p = ((char *) get_vmcs12(vcpu)) + offset; |
| 6856 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6857 | return offset; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6858 | |
| 6859 | switch (vmcs_field_type(field)) { |
| 6860 | case VMCS_FIELD_TYPE_U16: |
| 6861 | *(u16 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6862 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6863 | case VMCS_FIELD_TYPE_U32: |
| 6864 | *(u32 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6865 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6866 | case VMCS_FIELD_TYPE_U64: |
| 6867 | *(u64 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6868 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6869 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6870 | *(natural_width *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6871 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6872 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6873 | WARN_ON(1); |
| 6874 | return -ENOENT; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6875 | } |
| 6876 | |
| 6877 | } |
| 6878 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 6879 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx) |
| 6880 | { |
| 6881 | int i; |
| 6882 | unsigned long field; |
| 6883 | u64 field_value; |
| 6884 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 6885 | const unsigned long *fields = shadow_read_write_fields; |
| 6886 | const int num_fields = max_shadow_read_write_fields; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 6887 | |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 6888 | preempt_disable(); |
| 6889 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 6890 | vmcs_load(shadow_vmcs); |
| 6891 | |
| 6892 | for (i = 0; i < num_fields; i++) { |
| 6893 | field = fields[i]; |
| 6894 | switch (vmcs_field_type(field)) { |
| 6895 | case VMCS_FIELD_TYPE_U16: |
| 6896 | field_value = vmcs_read16(field); |
| 6897 | break; |
| 6898 | case VMCS_FIELD_TYPE_U32: |
| 6899 | field_value = vmcs_read32(field); |
| 6900 | break; |
| 6901 | case VMCS_FIELD_TYPE_U64: |
| 6902 | field_value = vmcs_read64(field); |
| 6903 | break; |
| 6904 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6905 | field_value = vmcs_readl(field); |
| 6906 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6907 | default: |
| 6908 | WARN_ON(1); |
| 6909 | continue; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 6910 | } |
| 6911 | vmcs12_write_any(&vmx->vcpu, field, field_value); |
| 6912 | } |
| 6913 | |
| 6914 | vmcs_clear(shadow_vmcs); |
| 6915 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 6916 | |
| 6917 | preempt_enable(); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 6918 | } |
| 6919 | |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 6920 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx) |
| 6921 | { |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 6922 | const unsigned long *fields[] = { |
| 6923 | shadow_read_write_fields, |
| 6924 | shadow_read_only_fields |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 6925 | }; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 6926 | const int max_fields[] = { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 6927 | max_shadow_read_write_fields, |
| 6928 | max_shadow_read_only_fields |
| 6929 | }; |
| 6930 | int i, q; |
| 6931 | unsigned long field; |
| 6932 | u64 field_value = 0; |
| 6933 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
| 6934 | |
| 6935 | vmcs_load(shadow_vmcs); |
| 6936 | |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 6937 | for (q = 0; q < ARRAY_SIZE(fields); q++) { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 6938 | for (i = 0; i < max_fields[q]; i++) { |
| 6939 | field = fields[q][i]; |
| 6940 | vmcs12_read_any(&vmx->vcpu, field, &field_value); |
| 6941 | |
| 6942 | switch (vmcs_field_type(field)) { |
| 6943 | case VMCS_FIELD_TYPE_U16: |
| 6944 | vmcs_write16(field, (u16)field_value); |
| 6945 | break; |
| 6946 | case VMCS_FIELD_TYPE_U32: |
| 6947 | vmcs_write32(field, (u32)field_value); |
| 6948 | break; |
| 6949 | case VMCS_FIELD_TYPE_U64: |
| 6950 | vmcs_write64(field, (u64)field_value); |
| 6951 | break; |
| 6952 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6953 | vmcs_writel(field, (long)field_value); |
| 6954 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6955 | default: |
| 6956 | WARN_ON(1); |
| 6957 | break; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 6958 | } |
| 6959 | } |
| 6960 | } |
| 6961 | |
| 6962 | vmcs_clear(shadow_vmcs); |
| 6963 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 6964 | } |
| 6965 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6966 | /* |
| 6967 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 6968 | * used before) all generate the same failure when it is missing. |
| 6969 | */ |
| 6970 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 6971 | { |
| 6972 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6973 | if (vmx->nested.current_vmptr == -1ull) { |
| 6974 | nested_vmx_failInvalid(vcpu); |
| 6975 | skip_emulated_instruction(vcpu); |
| 6976 | return 0; |
| 6977 | } |
| 6978 | return 1; |
| 6979 | } |
| 6980 | |
| 6981 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 6982 | { |
| 6983 | unsigned long field; |
| 6984 | u64 field_value; |
| 6985 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6986 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 6987 | gva_t gva = 0; |
| 6988 | |
| 6989 | if (!nested_vmx_check_permission(vcpu) || |
| 6990 | !nested_vmx_check_vmcs12(vcpu)) |
| 6991 | return 1; |
| 6992 | |
| 6993 | /* Decode instruction info and find the field to read */ |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 6994 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6995 | /* Read the field, zero-extended to a u64 field_value */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6996 | if (vmcs12_read_any(vcpu, field, &field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6997 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 6998 | skip_emulated_instruction(vcpu); |
| 6999 | return 1; |
| 7000 | } |
| 7001 | /* |
| 7002 | * Now copy part of this value to register or memory, as requested. |
| 7003 | * Note that the number of bits actually copied is 32 or 64 depending |
| 7004 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 7005 | */ |
| 7006 | if (vmx_instruction_info & (1u << 10)) { |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7007 | kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7008 | field_value); |
| 7009 | } else { |
| 7010 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 7011 | vmx_instruction_info, &gva)) |
| 7012 | return 1; |
| 7013 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 7014 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 7015 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 7016 | } |
| 7017 | |
| 7018 | nested_vmx_succeed(vcpu); |
| 7019 | skip_emulated_instruction(vcpu); |
| 7020 | return 1; |
| 7021 | } |
| 7022 | |
| 7023 | |
| 7024 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 7025 | { |
| 7026 | unsigned long field; |
| 7027 | gva_t gva; |
| 7028 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7029 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7030 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 7031 | * mode, and eventually we need to write that into a field of several |
| 7032 | * possible lengths. The code below first zero-extends the value to 64 |
| 7033 | * bit (field_value), and then copies only the approriate number of |
| 7034 | * bits into the vmcs12 field. |
| 7035 | */ |
| 7036 | u64 field_value = 0; |
| 7037 | struct x86_exception e; |
| 7038 | |
| 7039 | if (!nested_vmx_check_permission(vcpu) || |
| 7040 | !nested_vmx_check_vmcs12(vcpu)) |
| 7041 | return 1; |
| 7042 | |
| 7043 | if (vmx_instruction_info & (1u << 10)) |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7044 | field_value = kvm_register_readl(vcpu, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7045 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 7046 | else { |
| 7047 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 7048 | vmx_instruction_info, &gva)) |
| 7049 | return 1; |
| 7050 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7051 | &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7052 | kvm_inject_page_fault(vcpu, &e); |
| 7053 | return 1; |
| 7054 | } |
| 7055 | } |
| 7056 | |
| 7057 | |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7058 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7059 | if (vmcs_field_readonly(field)) { |
| 7060 | nested_vmx_failValid(vcpu, |
| 7061 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
| 7062 | skip_emulated_instruction(vcpu); |
| 7063 | return 1; |
| 7064 | } |
| 7065 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7066 | if (vmcs12_write_any(vcpu, field, field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7067 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 7068 | skip_emulated_instruction(vcpu); |
| 7069 | return 1; |
| 7070 | } |
| 7071 | |
| 7072 | nested_vmx_succeed(vcpu); |
| 7073 | skip_emulated_instruction(vcpu); |
| 7074 | return 1; |
| 7075 | } |
| 7076 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7077 | /* Emulate the VMPTRLD instruction */ |
| 7078 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 7079 | { |
| 7080 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7081 | gpa_t vmptr; |
Abel Gordon | 8a1b9dd | 2013-04-18 14:39:55 +0300 | [diff] [blame] | 7082 | u32 exec_control; |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7083 | |
| 7084 | if (!nested_vmx_check_permission(vcpu)) |
| 7085 | return 1; |
| 7086 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7087 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr)) |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7088 | return 1; |
| 7089 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7090 | if (vmx->nested.current_vmptr != vmptr) { |
| 7091 | struct vmcs12 *new_vmcs12; |
| 7092 | struct page *page; |
| 7093 | page = nested_get_page(vcpu, vmptr); |
| 7094 | if (page == NULL) { |
| 7095 | nested_vmx_failInvalid(vcpu); |
| 7096 | skip_emulated_instruction(vcpu); |
| 7097 | return 1; |
| 7098 | } |
| 7099 | new_vmcs12 = kmap(page); |
| 7100 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 7101 | kunmap(page); |
| 7102 | nested_release_page_clean(page); |
| 7103 | nested_vmx_failValid(vcpu, |
| 7104 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
| 7105 | skip_emulated_instruction(vcpu); |
| 7106 | return 1; |
| 7107 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7108 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7109 | nested_release_vmcs12(vmx); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7110 | vmx->nested.current_vmptr = vmptr; |
| 7111 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 7112 | vmx->nested.current_vmcs12_page = page; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7113 | if (enable_shadow_vmcs) { |
Abel Gordon | 8a1b9dd | 2013-04-18 14:39:55 +0300 | [diff] [blame] | 7114 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7115 | exec_control |= SECONDARY_EXEC_SHADOW_VMCS; |
| 7116 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 7117 | vmcs_write64(VMCS_LINK_POINTER, |
| 7118 | __pa(vmx->nested.current_shadow_vmcs)); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7119 | vmx->nested.sync_shadow_vmcs = true; |
| 7120 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7121 | } |
| 7122 | |
| 7123 | nested_vmx_succeed(vcpu); |
| 7124 | skip_emulated_instruction(vcpu); |
| 7125 | return 1; |
| 7126 | } |
| 7127 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7128 | /* Emulate the VMPTRST instruction */ |
| 7129 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 7130 | { |
| 7131 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7132 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7133 | gva_t vmcs_gva; |
| 7134 | struct x86_exception e; |
| 7135 | |
| 7136 | if (!nested_vmx_check_permission(vcpu)) |
| 7137 | return 1; |
| 7138 | |
| 7139 | if (get_vmx_mem_address(vcpu, exit_qualification, |
| 7140 | vmx_instruction_info, &vmcs_gva)) |
| 7141 | return 1; |
| 7142 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 7143 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 7144 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 7145 | sizeof(u64), &e)) { |
| 7146 | kvm_inject_page_fault(vcpu, &e); |
| 7147 | return 1; |
| 7148 | } |
| 7149 | nested_vmx_succeed(vcpu); |
| 7150 | skip_emulated_instruction(vcpu); |
| 7151 | return 1; |
| 7152 | } |
| 7153 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7154 | /* Emulate the INVEPT instruction */ |
| 7155 | static int handle_invept(struct kvm_vcpu *vcpu) |
| 7156 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7157 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7158 | u32 vmx_instruction_info, types; |
| 7159 | unsigned long type; |
| 7160 | gva_t gva; |
| 7161 | struct x86_exception e; |
| 7162 | struct { |
| 7163 | u64 eptp, gpa; |
| 7164 | } operand; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7165 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7166 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7167 | SECONDARY_EXEC_ENABLE_EPT) || |
| 7168 | !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7169 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7170 | return 1; |
| 7171 | } |
| 7172 | |
| 7173 | if (!nested_vmx_check_permission(vcpu)) |
| 7174 | return 1; |
| 7175 | |
| 7176 | if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) { |
| 7177 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7178 | return 1; |
| 7179 | } |
| 7180 | |
| 7181 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7182 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7183 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7184 | types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7185 | |
| 7186 | if (!(types & (1UL << type))) { |
| 7187 | nested_vmx_failValid(vcpu, |
| 7188 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7189 | return 1; |
| 7190 | } |
| 7191 | |
| 7192 | /* According to the Intel VMX instruction reference, the memory |
| 7193 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7194 | */ |
| 7195 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 7196 | vmx_instruction_info, &gva)) |
| 7197 | return 1; |
| 7198 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7199 | sizeof(operand), &e)) { |
| 7200 | kvm_inject_page_fault(vcpu, &e); |
| 7201 | return 1; |
| 7202 | } |
| 7203 | |
| 7204 | switch (type) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7205 | case VMX_EPT_EXTENT_GLOBAL: |
| 7206 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 7207 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7208 | nested_vmx_succeed(vcpu); |
| 7209 | break; |
| 7210 | default: |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 7211 | /* Trap single context invalidation invept calls */ |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7212 | BUG_ON(1); |
| 7213 | break; |
| 7214 | } |
| 7215 | |
| 7216 | skip_emulated_instruction(vcpu); |
| 7217 | return 1; |
| 7218 | } |
| 7219 | |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7220 | static int handle_invvpid(struct kvm_vcpu *vcpu) |
| 7221 | { |
| 7222 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7223 | return 1; |
| 7224 | } |
| 7225 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7226 | static int handle_pml_full(struct kvm_vcpu *vcpu) |
| 7227 | { |
| 7228 | unsigned long exit_qualification; |
| 7229 | |
| 7230 | trace_kvm_pml_full(vcpu->vcpu_id); |
| 7231 | |
| 7232 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7233 | |
| 7234 | /* |
| 7235 | * PML buffer FULL happened while executing iret from NMI, |
| 7236 | * "blocked by NMI" bit has to be set before next VM entry. |
| 7237 | */ |
| 7238 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 7239 | cpu_has_virtual_nmis() && |
| 7240 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
| 7241 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 7242 | GUEST_INTR_STATE_NMI); |
| 7243 | |
| 7244 | /* |
| 7245 | * PML buffer already flushed at beginning of VMEXIT. Nothing to do |
| 7246 | * here.., and there's no userspace involvement needed for PML. |
| 7247 | */ |
| 7248 | return 1; |
| 7249 | } |
| 7250 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 7251 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7252 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 7253 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 7254 | * to be done to userspace and return 0. |
| 7255 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 7256 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7257 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 7258 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 7259 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 7260 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7261 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7262 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 7263 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 7264 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 7265 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 7266 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 7267 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 7268 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 7269 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 7270 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 7271 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 7272 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7273 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7274 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7275 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7276 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7277 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7278 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7279 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7280 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 7281 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 7282 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 7283 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 7284 | [EXIT_REASON_APIC_WRITE] = handle_apic_write, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7285 | [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 7286 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7287 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7288 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7289 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 7290 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 7291 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 7292 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7293 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait, |
| 7294 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor, |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7295 | [EXIT_REASON_INVEPT] = handle_invept, |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7296 | [EXIT_REASON_INVVPID] = handle_invvpid, |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 7297 | [EXIT_REASON_XSAVES] = handle_xsaves, |
| 7298 | [EXIT_REASON_XRSTORS] = handle_xrstors, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7299 | [EXIT_REASON_PML_FULL] = handle_pml_full, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7300 | }; |
| 7301 | |
| 7302 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 7303 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7304 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7305 | static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu, |
| 7306 | struct vmcs12 *vmcs12) |
| 7307 | { |
| 7308 | unsigned long exit_qualification; |
| 7309 | gpa_t bitmap, last_bitmap; |
| 7310 | unsigned int port; |
| 7311 | int size; |
| 7312 | u8 b; |
| 7313 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7314 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
Zhihui Zhang | 2f0a639 | 2013-12-30 15:56:29 -0500 | [diff] [blame] | 7315 | return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING); |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7316 | |
| 7317 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7318 | |
| 7319 | port = exit_qualification >> 16; |
| 7320 | size = (exit_qualification & 7) + 1; |
| 7321 | |
| 7322 | last_bitmap = (gpa_t)-1; |
| 7323 | b = -1; |
| 7324 | |
| 7325 | while (size > 0) { |
| 7326 | if (port < 0x8000) |
| 7327 | bitmap = vmcs12->io_bitmap_a; |
| 7328 | else if (port < 0x10000) |
| 7329 | bitmap = vmcs12->io_bitmap_b; |
| 7330 | else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7331 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7332 | bitmap += (port & 0x7fff) / 8; |
| 7333 | |
| 7334 | if (last_bitmap != bitmap) |
| 7335 | if (kvm_read_guest(vcpu->kvm, bitmap, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7336 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7337 | if (b & (1 << (port & 7))) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7338 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7339 | |
| 7340 | port++; |
| 7341 | size--; |
| 7342 | last_bitmap = bitmap; |
| 7343 | } |
| 7344 | |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7345 | return false; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7346 | } |
| 7347 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7348 | /* |
| 7349 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 7350 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 7351 | * disinterest in the current event (read or write a specific MSR) by using an |
| 7352 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 7353 | */ |
| 7354 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 7355 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 7356 | { |
| 7357 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 7358 | gpa_t bitmap; |
| 7359 | |
Jan Kiszka | cbd29cb | 2013-02-11 12:19:28 +0100 | [diff] [blame] | 7360 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7361 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7362 | |
| 7363 | /* |
| 7364 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 7365 | * for the four combinations of read/write and low/high MSR numbers. |
| 7366 | * First we need to figure out which of the four to use: |
| 7367 | */ |
| 7368 | bitmap = vmcs12->msr_bitmap; |
| 7369 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 7370 | bitmap += 2048; |
| 7371 | if (msr_index >= 0xc0000000) { |
| 7372 | msr_index -= 0xc0000000; |
| 7373 | bitmap += 1024; |
| 7374 | } |
| 7375 | |
| 7376 | /* Then read the msr_index'th bit from this bitmap: */ |
| 7377 | if (msr_index < 1024*8) { |
| 7378 | unsigned char b; |
Jan Kiszka | bd31a7f | 2013-02-14 19:46:27 +0100 | [diff] [blame] | 7379 | if (kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7380 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7381 | return 1 & (b >> (msr_index & 7)); |
| 7382 | } else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7383 | return true; /* let L1 handle the wrong parameter */ |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7384 | } |
| 7385 | |
| 7386 | /* |
| 7387 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 7388 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 7389 | * intercept (via guest_host_mask etc.) the current event. |
| 7390 | */ |
| 7391 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 7392 | struct vmcs12 *vmcs12) |
| 7393 | { |
| 7394 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7395 | int cr = exit_qualification & 15; |
| 7396 | int reg = (exit_qualification >> 8) & 15; |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 7397 | unsigned long val = kvm_register_readl(vcpu, reg); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7398 | |
| 7399 | switch ((exit_qualification >> 4) & 3) { |
| 7400 | case 0: /* mov to cr */ |
| 7401 | switch (cr) { |
| 7402 | case 0: |
| 7403 | if (vmcs12->cr0_guest_host_mask & |
| 7404 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7405 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7406 | break; |
| 7407 | case 3: |
| 7408 | if ((vmcs12->cr3_target_count >= 1 && |
| 7409 | vmcs12->cr3_target_value0 == val) || |
| 7410 | (vmcs12->cr3_target_count >= 2 && |
| 7411 | vmcs12->cr3_target_value1 == val) || |
| 7412 | (vmcs12->cr3_target_count >= 3 && |
| 7413 | vmcs12->cr3_target_value2 == val) || |
| 7414 | (vmcs12->cr3_target_count >= 4 && |
| 7415 | vmcs12->cr3_target_value3 == val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7416 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7417 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7418 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7419 | break; |
| 7420 | case 4: |
| 7421 | if (vmcs12->cr4_guest_host_mask & |
| 7422 | (vmcs12->cr4_read_shadow ^ val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7423 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7424 | break; |
| 7425 | case 8: |
| 7426 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7427 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7428 | break; |
| 7429 | } |
| 7430 | break; |
| 7431 | case 2: /* clts */ |
| 7432 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 7433 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7434 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7435 | break; |
| 7436 | case 1: /* mov from cr */ |
| 7437 | switch (cr) { |
| 7438 | case 3: |
| 7439 | if (vmcs12->cpu_based_vm_exec_control & |
| 7440 | CPU_BASED_CR3_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7441 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7442 | break; |
| 7443 | case 8: |
| 7444 | if (vmcs12->cpu_based_vm_exec_control & |
| 7445 | CPU_BASED_CR8_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7446 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7447 | break; |
| 7448 | } |
| 7449 | break; |
| 7450 | case 3: /* lmsw */ |
| 7451 | /* |
| 7452 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 7453 | * cr0. Other attempted changes are ignored, with no exit. |
| 7454 | */ |
| 7455 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 7456 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7457 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7458 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 7459 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 7460 | (val & 0x1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7461 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7462 | break; |
| 7463 | } |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7464 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7465 | } |
| 7466 | |
| 7467 | /* |
| 7468 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 7469 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 7470 | * when in is_guest_mode (L2). |
| 7471 | */ |
| 7472 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 7473 | { |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7474 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7475 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7476 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 957c897 | 2013-02-24 14:11:34 +0100 | [diff] [blame] | 7477 | u32 exit_reason = vmx->exit_reason; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7478 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 7479 | trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, |
| 7480 | vmcs_readl(EXIT_QUALIFICATION), |
| 7481 | vmx->idt_vectoring_info, |
| 7482 | intr_info, |
| 7483 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7484 | KVM_ISA_VMX); |
| 7485 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7486 | if (vmx->nested.nested_run_pending) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7487 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7488 | |
| 7489 | if (unlikely(vmx->fail)) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 7490 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 7491 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7492 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7493 | } |
| 7494 | |
| 7495 | switch (exit_reason) { |
| 7496 | case EXIT_REASON_EXCEPTION_NMI: |
| 7497 | if (!is_exception(intr_info)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7498 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7499 | else if (is_page_fault(intr_info)) |
| 7500 | return enable_ept; |
Anthoine Bourgeois | e504c90 | 2013-11-13 11:45:37 +0100 | [diff] [blame] | 7501 | else if (is_no_device(intr_info) && |
Paolo Bonzini | ccf9844 | 2014-02-27 22:54:11 +0100 | [diff] [blame] | 7502 | !(vmcs12->guest_cr0 & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7503 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7504 | return vmcs12->exception_bitmap & |
| 7505 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 7506 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7507 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7508 | case EXIT_REASON_TRIPLE_FAULT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7509 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7510 | case EXIT_REASON_PENDING_INTERRUPT: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7511 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7512 | case EXIT_REASON_NMI_WINDOW: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7513 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7514 | case EXIT_REASON_TASK_SWITCH: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7515 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7516 | case EXIT_REASON_CPUID: |
Marcelo Tosatti | bc61349 | 2014-09-18 18:24:57 -0300 | [diff] [blame] | 7517 | if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7518 | return false; |
| 7519 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7520 | case EXIT_REASON_HLT: |
| 7521 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 7522 | case EXIT_REASON_INVD: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7523 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7524 | case EXIT_REASON_INVLPG: |
| 7525 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 7526 | case EXIT_REASON_RDPMC: |
| 7527 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 7528 | case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7529 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 7530 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 7531 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 7532 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 7533 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 7534 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7535 | case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7536 | /* |
| 7537 | * VMX instructions trap unconditionally. This allows L1 to |
| 7538 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 7539 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7540 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7541 | case EXIT_REASON_CR_ACCESS: |
| 7542 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 7543 | case EXIT_REASON_DR_ACCESS: |
| 7544 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 7545 | case EXIT_REASON_IO_INSTRUCTION: |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7546 | return nested_vmx_exit_handled_io(vcpu, vmcs12); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7547 | case EXIT_REASON_MSR_READ: |
| 7548 | case EXIT_REASON_MSR_WRITE: |
| 7549 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 7550 | case EXIT_REASON_INVALID_STATE: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7551 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7552 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 7553 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
| 7554 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 7555 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 7556 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 7557 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 7558 | nested_cpu_has2(vmcs12, |
| 7559 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 7560 | case EXIT_REASON_MCE_DURING_VMENTRY: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7561 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7562 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7563 | return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7564 | case EXIT_REASON_APIC_ACCESS: |
| 7565 | return nested_cpu_has2(vmcs12, |
| 7566 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 7567 | case EXIT_REASON_APIC_WRITE: |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 7568 | case EXIT_REASON_EOI_INDUCED: |
| 7569 | /* apic_write and eoi_induced should exit unconditionally. */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7570 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7571 | case EXIT_REASON_EPT_VIOLATION: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7572 | /* |
| 7573 | * L0 always deals with the EPT violation. If nested EPT is |
| 7574 | * used, and the nested mmu code discovers that the address is |
| 7575 | * missing in the guest EPT table (EPT12), the EPT violation |
| 7576 | * will be injected with nested_ept_inject_page_fault() |
| 7577 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7578 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7579 | case EXIT_REASON_EPT_MISCONFIG: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7580 | /* |
| 7581 | * L2 never uses directly L1's EPT, but rather L0's own EPT |
| 7582 | * table (shadow on EPT) or a merged EPT table that L0 built |
| 7583 | * (EPT on EPT). So any problems with the structure of the |
| 7584 | * table is L0's fault. |
| 7585 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7586 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7587 | case EXIT_REASON_WBINVD: |
| 7588 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 7589 | case EXIT_REASON_XSETBV: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7590 | return true; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 7591 | case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS: |
| 7592 | /* |
| 7593 | * This should never happen, since it is not possible to |
| 7594 | * set XSS to a non-zero value---neither in L1 nor in L2. |
| 7595 | * If if it were, XSS would have to be checked against |
| 7596 | * the XSS exit bitmap in vmcs12. |
| 7597 | */ |
| 7598 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7599 | default: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7600 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7601 | } |
| 7602 | } |
| 7603 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 7604 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 7605 | { |
| 7606 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 7607 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7608 | } |
| 7609 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7610 | static int vmx_enable_pml(struct vcpu_vmx *vmx) |
| 7611 | { |
| 7612 | struct page *pml_pg; |
| 7613 | u32 exec_control; |
| 7614 | |
| 7615 | pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 7616 | if (!pml_pg) |
| 7617 | return -ENOMEM; |
| 7618 | |
| 7619 | vmx->pml_pg = pml_pg; |
| 7620 | |
| 7621 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 7622 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7623 | |
| 7624 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7625 | exec_control |= SECONDARY_EXEC_ENABLE_PML; |
| 7626 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 7627 | |
| 7628 | return 0; |
| 7629 | } |
| 7630 | |
| 7631 | static void vmx_disable_pml(struct vcpu_vmx *vmx) |
| 7632 | { |
| 7633 | u32 exec_control; |
| 7634 | |
| 7635 | ASSERT(vmx->pml_pg); |
| 7636 | __free_page(vmx->pml_pg); |
| 7637 | vmx->pml_pg = NULL; |
| 7638 | |
| 7639 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7640 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
| 7641 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 7642 | } |
| 7643 | |
| 7644 | static void vmx_flush_pml_buffer(struct vcpu_vmx *vmx) |
| 7645 | { |
| 7646 | struct kvm *kvm = vmx->vcpu.kvm; |
| 7647 | u64 *pml_buf; |
| 7648 | u16 pml_idx; |
| 7649 | |
| 7650 | pml_idx = vmcs_read16(GUEST_PML_INDEX); |
| 7651 | |
| 7652 | /* Do nothing if PML buffer is empty */ |
| 7653 | if (pml_idx == (PML_ENTITY_NUM - 1)) |
| 7654 | return; |
| 7655 | |
| 7656 | /* PML index always points to next available PML buffer entity */ |
| 7657 | if (pml_idx >= PML_ENTITY_NUM) |
| 7658 | pml_idx = 0; |
| 7659 | else |
| 7660 | pml_idx++; |
| 7661 | |
| 7662 | pml_buf = page_address(vmx->pml_pg); |
| 7663 | for (; pml_idx < PML_ENTITY_NUM; pml_idx++) { |
| 7664 | u64 gpa; |
| 7665 | |
| 7666 | gpa = pml_buf[pml_idx]; |
| 7667 | WARN_ON(gpa & (PAGE_SIZE - 1)); |
| 7668 | mark_page_dirty(kvm, gpa >> PAGE_SHIFT); |
| 7669 | } |
| 7670 | |
| 7671 | /* reset PML index */ |
| 7672 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7673 | } |
| 7674 | |
| 7675 | /* |
| 7676 | * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap. |
| 7677 | * Called before reporting dirty_bitmap to userspace. |
| 7678 | */ |
| 7679 | static void kvm_flush_pml_buffers(struct kvm *kvm) |
| 7680 | { |
| 7681 | int i; |
| 7682 | struct kvm_vcpu *vcpu; |
| 7683 | /* |
| 7684 | * We only need to kick vcpu out of guest mode here, as PML buffer |
| 7685 | * is flushed at beginning of all VMEXITs, and it's obvious that only |
| 7686 | * vcpus running in guest are possible to have unflushed GPAs in PML |
| 7687 | * buffer. |
| 7688 | */ |
| 7689 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 7690 | kvm_vcpu_kick(vcpu); |
| 7691 | } |
| 7692 | |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame^] | 7693 | static void vmx_dump_sel(char *name, uint32_t sel) |
| 7694 | { |
| 7695 | pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n", |
| 7696 | name, vmcs_read32(sel), |
| 7697 | vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR), |
| 7698 | vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR), |
| 7699 | vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR)); |
| 7700 | } |
| 7701 | |
| 7702 | static void vmx_dump_dtsel(char *name, uint32_t limit) |
| 7703 | { |
| 7704 | pr_err("%s limit=0x%08x, base=0x%016lx\n", |
| 7705 | name, vmcs_read32(limit), |
| 7706 | vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT)); |
| 7707 | } |
| 7708 | |
| 7709 | static void dump_vmcs(void) |
| 7710 | { |
| 7711 | u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS); |
| 7712 | u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS); |
| 7713 | u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 7714 | u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); |
| 7715 | u32 secondary_exec_control = 0; |
| 7716 | unsigned long cr4 = vmcs_readl(GUEST_CR4); |
| 7717 | u64 efer = vmcs_readl(GUEST_IA32_EFER); |
| 7718 | int i, n; |
| 7719 | |
| 7720 | if (cpu_has_secondary_exec_ctrls()) |
| 7721 | secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7722 | |
| 7723 | pr_err("*** Guest State ***\n"); |
| 7724 | pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7725 | vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW), |
| 7726 | vmcs_readl(CR0_GUEST_HOST_MASK)); |
| 7727 | pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7728 | cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK)); |
| 7729 | pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3)); |
| 7730 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) && |
| 7731 | (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) |
| 7732 | { |
| 7733 | pr_err("PDPTR0 = 0x%016lx PDPTR1 = 0x%016lx\n", |
| 7734 | vmcs_readl(GUEST_PDPTR0), vmcs_readl(GUEST_PDPTR1)); |
| 7735 | pr_err("PDPTR2 = 0x%016lx PDPTR3 = 0x%016lx\n", |
| 7736 | vmcs_readl(GUEST_PDPTR2), vmcs_readl(GUEST_PDPTR3)); |
| 7737 | } |
| 7738 | pr_err("RSP = 0x%016lx RIP = 0x%016lx\n", |
| 7739 | vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP)); |
| 7740 | pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n", |
| 7741 | vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7)); |
| 7742 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7743 | vmcs_readl(GUEST_SYSENTER_ESP), |
| 7744 | vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP)); |
| 7745 | vmx_dump_sel("CS: ", GUEST_CS_SELECTOR); |
| 7746 | vmx_dump_sel("DS: ", GUEST_DS_SELECTOR); |
| 7747 | vmx_dump_sel("SS: ", GUEST_SS_SELECTOR); |
| 7748 | vmx_dump_sel("ES: ", GUEST_ES_SELECTOR); |
| 7749 | vmx_dump_sel("FS: ", GUEST_FS_SELECTOR); |
| 7750 | vmx_dump_sel("GS: ", GUEST_GS_SELECTOR); |
| 7751 | vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT); |
| 7752 | vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR); |
| 7753 | vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT); |
| 7754 | vmx_dump_sel("TR: ", GUEST_TR_SELECTOR); |
| 7755 | if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) || |
| 7756 | (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER))) |
| 7757 | pr_err("EFER = 0x%016llx PAT = 0x%016lx\n", |
| 7758 | efer, vmcs_readl(GUEST_IA32_PAT)); |
| 7759 | pr_err("DebugCtl = 0x%016lx DebugExceptions = 0x%016lx\n", |
| 7760 | vmcs_readl(GUEST_IA32_DEBUGCTL), |
| 7761 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS)); |
| 7762 | if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7763 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7764 | vmcs_readl(GUEST_IA32_PERF_GLOBAL_CTRL)); |
| 7765 | if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS) |
| 7766 | pr_err("BndCfgS = 0x%016lx\n", vmcs_readl(GUEST_BNDCFGS)); |
| 7767 | pr_err("Interruptibility = %08x ActivityState = %08x\n", |
| 7768 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO), |
| 7769 | vmcs_read32(GUEST_ACTIVITY_STATE)); |
| 7770 | if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) |
| 7771 | pr_err("InterruptStatus = %04x\n", |
| 7772 | vmcs_read16(GUEST_INTR_STATUS)); |
| 7773 | |
| 7774 | pr_err("*** Host State ***\n"); |
| 7775 | pr_err("RIP = 0x%016lx RSP = 0x%016lx\n", |
| 7776 | vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP)); |
| 7777 | pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n", |
| 7778 | vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR), |
| 7779 | vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR), |
| 7780 | vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR), |
| 7781 | vmcs_read16(HOST_TR_SELECTOR)); |
| 7782 | pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n", |
| 7783 | vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE), |
| 7784 | vmcs_readl(HOST_TR_BASE)); |
| 7785 | pr_err("GDTBase=%016lx IDTBase=%016lx\n", |
| 7786 | vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE)); |
| 7787 | pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n", |
| 7788 | vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3), |
| 7789 | vmcs_readl(HOST_CR4)); |
| 7790 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7791 | vmcs_readl(HOST_IA32_SYSENTER_ESP), |
| 7792 | vmcs_read32(HOST_IA32_SYSENTER_CS), |
| 7793 | vmcs_readl(HOST_IA32_SYSENTER_EIP)); |
| 7794 | if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER)) |
| 7795 | pr_err("EFER = 0x%016lx PAT = 0x%016lx\n", |
| 7796 | vmcs_readl(HOST_IA32_EFER), vmcs_readl(HOST_IA32_PAT)); |
| 7797 | if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7798 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7799 | vmcs_readl(HOST_IA32_PERF_GLOBAL_CTRL)); |
| 7800 | |
| 7801 | pr_err("*** Control State ***\n"); |
| 7802 | pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n", |
| 7803 | pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control); |
| 7804 | pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl); |
| 7805 | pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n", |
| 7806 | vmcs_read32(EXCEPTION_BITMAP), |
| 7807 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK), |
| 7808 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH)); |
| 7809 | pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7810 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 7811 | vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE), |
| 7812 | vmcs_read32(VM_ENTRY_INSTRUCTION_LEN)); |
| 7813 | pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7814 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 7815 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7816 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN)); |
| 7817 | pr_err(" reason=%08x qualification=%016lx\n", |
| 7818 | vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION)); |
| 7819 | pr_err("IDTVectoring: info=%08x errcode=%08x\n", |
| 7820 | vmcs_read32(IDT_VECTORING_INFO_FIELD), |
| 7821 | vmcs_read32(IDT_VECTORING_ERROR_CODE)); |
| 7822 | pr_err("TSC Offset = 0x%016lx\n", vmcs_readl(TSC_OFFSET)); |
| 7823 | if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) |
| 7824 | pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD)); |
| 7825 | if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) |
| 7826 | pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV)); |
| 7827 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT)) |
| 7828 | pr_err("EPT pointer = 0x%016lx\n", vmcs_readl(EPT_POINTER)); |
| 7829 | n = vmcs_read32(CR3_TARGET_COUNT); |
| 7830 | for (i = 0; i + 1 < n; i += 4) |
| 7831 | pr_err("CR3 target%u=%016lx target%u=%016lx\n", |
| 7832 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2), |
| 7833 | i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2)); |
| 7834 | if (i < n) |
| 7835 | pr_err("CR3 target%u=%016lx\n", |
| 7836 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2)); |
| 7837 | if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING) |
| 7838 | pr_err("PLE Gap=%08x Window=%08x\n", |
| 7839 | vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW)); |
| 7840 | if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID) |
| 7841 | pr_err("Virtual processor ID = 0x%04x\n", |
| 7842 | vmcs_read16(VIRTUAL_PROCESSOR_ID)); |
| 7843 | } |
| 7844 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7845 | /* |
| 7846 | * The guest has exited. See if we can fix it or if we need userspace |
| 7847 | * assistance. |
| 7848 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7849 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7850 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7851 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7852 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 7853 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7854 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7855 | /* |
| 7856 | * Flush logged GPAs PML buffer, this will make dirty_bitmap more |
| 7857 | * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before |
| 7858 | * querying dirty_bitmap, we only need to kick all vcpus out of guest |
| 7859 | * mode as if vcpus is in root mode, the PML buffer must has been |
| 7860 | * flushed already. |
| 7861 | */ |
| 7862 | if (enable_pml) |
| 7863 | vmx_flush_pml_buffer(vmx); |
| 7864 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 7865 | /* If guest state is invalid, start emulating */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 7866 | if (vmx->emulation_required) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 7867 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 7868 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7869 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 7870 | nested_vmx_vmexit(vcpu, exit_reason, |
| 7871 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 7872 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7873 | return 1; |
| 7874 | } |
| 7875 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 7876 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame^] | 7877 | dump_vmcs(); |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 7878 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 7879 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 7880 | = exit_reason; |
| 7881 | return 0; |
| 7882 | } |
| 7883 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7884 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7885 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 7886 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7887 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 7888 | return 0; |
| 7889 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7890 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 7891 | /* |
| 7892 | * Note: |
| 7893 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 7894 | * delivery event since it indicates guest is accessing MMIO. |
| 7895 | * The vm-exit can be triggered again after return to guest that |
| 7896 | * will cause infinite loop. |
| 7897 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 7898 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 7899 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 7900 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 7901 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 7902 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 7903 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
| 7904 | vcpu->run->internal.ndata = 2; |
| 7905 | vcpu->run->internal.data[0] = vectoring_info; |
| 7906 | vcpu->run->internal.data[1] = exit_reason; |
| 7907 | return 0; |
| 7908 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7909 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7910 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 7911 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 7912 | get_vmcs12(vcpu))))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 7913 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7914 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7915 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 7916 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7917 | /* |
| 7918 | * This CPU don't support us in finding the end of an |
| 7919 | * NMI-blocked window if the guest runs with IRQs |
| 7920 | * disabled. So we pull the trigger after 1 s of |
| 7921 | * futile waiting, but inform the user about this. |
| 7922 | */ |
| 7923 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 7924 | "state on VCPU %d after 1 s timeout\n", |
| 7925 | __func__, vcpu->vcpu_id); |
| 7926 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7927 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 7928 | } |
| 7929 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7930 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 7931 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7932 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7933 | else { |
Michael S. Tsirkin | 2bc19dc | 2014-09-18 16:21:16 +0300 | [diff] [blame] | 7934 | WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason); |
| 7935 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7936 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7937 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7938 | } |
| 7939 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7940 | 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] | 7941 | { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7942 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 7943 | |
| 7944 | if (is_guest_mode(vcpu) && |
| 7945 | nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 7946 | return; |
| 7947 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7948 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 7949 | vmcs_write32(TPR_THRESHOLD, 0); |
| 7950 | return; |
| 7951 | } |
| 7952 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7953 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 7954 | } |
| 7955 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 7956 | static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set) |
| 7957 | { |
| 7958 | u32 sec_exec_control; |
| 7959 | |
| 7960 | /* |
| 7961 | * There is not point to enable virtualize x2apic without enable |
| 7962 | * apicv |
| 7963 | */ |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7964 | if (!cpu_has_vmx_virtualize_x2apic_mode() || |
| 7965 | !vmx_vm_has_apicv(vcpu->kvm)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 7966 | return; |
| 7967 | |
| 7968 | if (!vm_need_tpr_shadow(vcpu->kvm)) |
| 7969 | return; |
| 7970 | |
| 7971 | sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7972 | |
| 7973 | if (set) { |
| 7974 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 7975 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 7976 | } else { |
| 7977 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 7978 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 7979 | } |
| 7980 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control); |
| 7981 | |
| 7982 | vmx_set_msr_bitmap(vcpu); |
| 7983 | } |
| 7984 | |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 7985 | static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa) |
| 7986 | { |
| 7987 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7988 | |
| 7989 | /* |
| 7990 | * Currently we do not handle the nested case where L2 has an |
| 7991 | * APIC access page of its own; that page is still pinned. |
| 7992 | * Hence, we skip the case where the VCPU is in guest mode _and_ |
| 7993 | * L1 prepared an APIC access page for L2. |
| 7994 | * |
| 7995 | * For the case where L1 and L2 share the same APIC access page |
| 7996 | * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear |
| 7997 | * in the vmcs12), this function will only update either the vmcs01 |
| 7998 | * or the vmcs02. If the former, the vmcs02 will be updated by |
| 7999 | * prepare_vmcs02. If the latter, the vmcs01 will be updated in |
| 8000 | * the next L2->L1 exit. |
| 8001 | */ |
| 8002 | if (!is_guest_mode(vcpu) || |
| 8003 | !nested_cpu_has2(vmx->nested.current_vmcs12, |
| 8004 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 8005 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 8006 | } |
| 8007 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8008 | static void vmx_hwapic_isr_update(struct kvm *kvm, int isr) |
| 8009 | { |
| 8010 | u16 status; |
| 8011 | u8 old; |
| 8012 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8013 | if (isr == -1) |
| 8014 | isr = 0; |
| 8015 | |
| 8016 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8017 | old = status >> 8; |
| 8018 | if (isr != old) { |
| 8019 | status &= 0xff; |
| 8020 | status |= isr << 8; |
| 8021 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8022 | } |
| 8023 | } |
| 8024 | |
| 8025 | static void vmx_set_rvi(int vector) |
| 8026 | { |
| 8027 | u16 status; |
| 8028 | u8 old; |
| 8029 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8030 | if (vector == -1) |
| 8031 | vector = 0; |
| 8032 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8033 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8034 | old = (u8)status & 0xff; |
| 8035 | if ((u8)vector != old) { |
| 8036 | status &= ~0xff; |
| 8037 | status |= (u8)vector; |
| 8038 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8039 | } |
| 8040 | } |
| 8041 | |
| 8042 | static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr) |
| 8043 | { |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8044 | if (!is_guest_mode(vcpu)) { |
| 8045 | vmx_set_rvi(max_irr); |
| 8046 | return; |
| 8047 | } |
| 8048 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8049 | if (max_irr == -1) |
| 8050 | return; |
| 8051 | |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8052 | /* |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8053 | * In guest mode. If a vmexit is needed, vmx_check_nested_events |
| 8054 | * handles it. |
| 8055 | */ |
| 8056 | if (nested_exit_on_intr(vcpu)) |
| 8057 | return; |
| 8058 | |
| 8059 | /* |
| 8060 | * Else, fall back to pre-APICv interrupt injection since L2 |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8061 | * is run without virtual interrupt delivery. |
| 8062 | */ |
| 8063 | if (!kvm_event_needs_reinjection(vcpu) && |
| 8064 | vmx_interrupt_allowed(vcpu)) { |
| 8065 | kvm_queue_interrupt(vcpu, max_irr, false); |
| 8066 | vmx_inject_irq(vcpu); |
| 8067 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8068 | } |
| 8069 | |
| 8070 | static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap) |
| 8071 | { |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8072 | if (!vmx_vm_has_apicv(vcpu->kvm)) |
| 8073 | return; |
| 8074 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8075 | vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]); |
| 8076 | vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]); |
| 8077 | vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]); |
| 8078 | vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]); |
| 8079 | } |
| 8080 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8081 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8082 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8083 | u32 exit_intr_info; |
| 8084 | |
| 8085 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 8086 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 8087 | return; |
| 8088 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8089 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8090 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8091 | |
| 8092 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8093 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8094 | kvm_machine_check(); |
| 8095 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8096 | /* We need to handle NMIs before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8097 | 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] | 8098 | (exit_intr_info & INTR_INFO_VALID_MASK)) { |
| 8099 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8100 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8101 | kvm_after_handle_nmi(&vmx->vcpu); |
| 8102 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8103 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8104 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8105 | static void vmx_handle_external_intr(struct kvm_vcpu *vcpu) |
| 8106 | { |
| 8107 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8108 | |
| 8109 | /* |
| 8110 | * If external interrupt exists, IF bit is set in rflags/eflags on the |
| 8111 | * interrupt stack frame, and interrupt will be enabled on a return |
| 8112 | * from interrupt handler. |
| 8113 | */ |
| 8114 | if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK)) |
| 8115 | == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) { |
| 8116 | unsigned int vector; |
| 8117 | unsigned long entry; |
| 8118 | gate_desc *desc; |
| 8119 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8120 | #ifdef CONFIG_X86_64 |
| 8121 | unsigned long tmp; |
| 8122 | #endif |
| 8123 | |
| 8124 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8125 | desc = (gate_desc *)vmx->host_idt_base + vector; |
| 8126 | entry = gate_offset(*desc); |
| 8127 | asm volatile( |
| 8128 | #ifdef CONFIG_X86_64 |
| 8129 | "mov %%" _ASM_SP ", %[sp]\n\t" |
| 8130 | "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t" |
| 8131 | "push $%c[ss]\n\t" |
| 8132 | "push %[sp]\n\t" |
| 8133 | #endif |
| 8134 | "pushf\n\t" |
| 8135 | "orl $0x200, (%%" _ASM_SP ")\n\t" |
| 8136 | __ASM_SIZE(push) " $%c[cs]\n\t" |
| 8137 | "call *%[entry]\n\t" |
| 8138 | : |
| 8139 | #ifdef CONFIG_X86_64 |
| 8140 | [sp]"=&r"(tmp) |
| 8141 | #endif |
| 8142 | : |
| 8143 | [entry]"r"(entry), |
| 8144 | [ss]"i"(__KERNEL_DS), |
| 8145 | [cs]"i"(__KERNEL_CS) |
| 8146 | ); |
| 8147 | } else |
| 8148 | local_irq_enable(); |
| 8149 | } |
| 8150 | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 8151 | static bool vmx_mpx_supported(void) |
| 8152 | { |
| 8153 | return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) && |
| 8154 | (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS); |
| 8155 | } |
| 8156 | |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 8157 | static bool vmx_xsaves_supported(void) |
| 8158 | { |
| 8159 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 8160 | SECONDARY_EXEC_XSAVES; |
| 8161 | } |
| 8162 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8163 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 8164 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8165 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8166 | bool unblock_nmi; |
| 8167 | u8 vector; |
| 8168 | bool idtv_info_valid; |
| 8169 | |
| 8170 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8171 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8172 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8173 | if (vmx->nmi_known_unmasked) |
| 8174 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8175 | /* |
| 8176 | * Can't use vmx->exit_intr_info since we're not sure what |
| 8177 | * the exit reason is. |
| 8178 | */ |
| 8179 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8180 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 8181 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8182 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8183 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8184 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 8185 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8186 | * SDM 3: 23.2.2 (September 2008) |
| 8187 | * Bit 12 is undefined in any of the following cases: |
| 8188 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 8189 | * information field. |
| 8190 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8191 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8192 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 8193 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8194 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 8195 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8196 | else |
| 8197 | vmx->nmi_known_unmasked = |
| 8198 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 8199 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8200 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 8201 | vmx->vnmi_blocked_time += |
| 8202 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8203 | } |
| 8204 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8205 | static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8206 | u32 idt_vectoring_info, |
| 8207 | int instr_len_field, |
| 8208 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8209 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8210 | u8 vector; |
| 8211 | int type; |
| 8212 | bool idtv_info_valid; |
| 8213 | |
| 8214 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8215 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8216 | vcpu->arch.nmi_injected = false; |
| 8217 | kvm_clear_exception_queue(vcpu); |
| 8218 | kvm_clear_interrupt_queue(vcpu); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8219 | |
| 8220 | if (!idtv_info_valid) |
| 8221 | return; |
| 8222 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8223 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8224 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8225 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 8226 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8227 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 8228 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8229 | case INTR_TYPE_NMI_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8230 | vcpu->arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8231 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8232 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8233 | * Clear bit "block by NMI" before VM entry if a NMI |
| 8234 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8235 | */ |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8236 | vmx_set_nmi_mask(vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8237 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8238 | case INTR_TYPE_SOFT_EXCEPTION: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8239 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8240 | /* fall through */ |
| 8241 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8242 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8243 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8244 | kvm_requeue_exception_e(vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8245 | } else |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8246 | kvm_requeue_exception(vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8247 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8248 | case INTR_TYPE_SOFT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8249 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8250 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8251 | case INTR_TYPE_EXT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8252 | kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8253 | break; |
| 8254 | default: |
| 8255 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 8256 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8257 | } |
| 8258 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8259 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 8260 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8261 | __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8262 | VM_EXIT_INSTRUCTION_LEN, |
| 8263 | IDT_VECTORING_ERROR_CODE); |
| 8264 | } |
| 8265 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8266 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 8267 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8268 | __vmx_complete_interrupts(vcpu, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8269 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8270 | VM_ENTRY_INSTRUCTION_LEN, |
| 8271 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 8272 | |
| 8273 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 8274 | } |
| 8275 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8276 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 8277 | { |
| 8278 | int i, nr_msrs; |
| 8279 | struct perf_guest_switch_msr *msrs; |
| 8280 | |
| 8281 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 8282 | |
| 8283 | if (!msrs) |
| 8284 | return; |
| 8285 | |
| 8286 | for (i = 0; i < nr_msrs; i++) |
| 8287 | if (msrs[i].host == msrs[i].guest) |
| 8288 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 8289 | else |
| 8290 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 8291 | msrs[i].host); |
| 8292 | } |
| 8293 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 8294 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8295 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8296 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8297 | unsigned long debugctlmsr, cr4; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8298 | |
| 8299 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 8300 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 8301 | vmx->entry_time = ktime_get(); |
| 8302 | |
| 8303 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 8304 | start emulation until we arrive back to a valid state */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8305 | if (vmx->emulation_required) |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8306 | return; |
| 8307 | |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 8308 | if (vmx->ple_window_dirty) { |
| 8309 | vmx->ple_window_dirty = false; |
| 8310 | vmcs_write32(PLE_WINDOW, vmx->ple_window); |
| 8311 | } |
| 8312 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 8313 | if (vmx->nested.sync_shadow_vmcs) { |
| 8314 | copy_vmcs12_to_shadow(vmx); |
| 8315 | vmx->nested.sync_shadow_vmcs = false; |
| 8316 | } |
| 8317 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8318 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8319 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 8320 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8321 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 8322 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 8323 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8324 | if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) { |
| 8325 | vmcs_writel(HOST_CR4, cr4); |
| 8326 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 8327 | } |
| 8328 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8329 | /* When single-stepping over STI and MOV SS, we must clear the |
| 8330 | * corresponding interruptibility bits in the guest state. Otherwise |
| 8331 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 8332 | * exceptions being set, but that's not correct for the guest debugging |
| 8333 | * case. */ |
| 8334 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 8335 | vmx_set_interrupt_shadow(vcpu, 0); |
| 8336 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8337 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8338 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8339 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8340 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8341 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8342 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8343 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 8344 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 8345 | "push %%" _ASM_CX " \n\t" |
| 8346 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8347 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8348 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8349 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8350 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8351 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8352 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 8353 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 8354 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8355 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8356 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8357 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8358 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8359 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8360 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8361 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 8362 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 8363 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 8364 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 8365 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 8366 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8367 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8368 | "mov %c[r8](%0), %%r8 \n\t" |
| 8369 | "mov %c[r9](%0), %%r9 \n\t" |
| 8370 | "mov %c[r10](%0), %%r10 \n\t" |
| 8371 | "mov %c[r11](%0), %%r11 \n\t" |
| 8372 | "mov %c[r12](%0), %%r12 \n\t" |
| 8373 | "mov %c[r13](%0), %%r13 \n\t" |
| 8374 | "mov %c[r14](%0), %%r14 \n\t" |
| 8375 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8376 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8377 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8378 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8379 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8380 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8381 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8382 | "jmp 2f \n\t" |
| 8383 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 8384 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8385 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8386 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8387 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8388 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 8389 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 8390 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 8391 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 8392 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 8393 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 8394 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8395 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8396 | "mov %%r8, %c[r8](%0) \n\t" |
| 8397 | "mov %%r9, %c[r9](%0) \n\t" |
| 8398 | "mov %%r10, %c[r10](%0) \n\t" |
| 8399 | "mov %%r11, %c[r11](%0) \n\t" |
| 8400 | "mov %%r12, %c[r12](%0) \n\t" |
| 8401 | "mov %%r13, %c[r13](%0) \n\t" |
| 8402 | "mov %%r14, %c[r14](%0) \n\t" |
| 8403 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8404 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8405 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 8406 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8407 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8408 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8409 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8410 | ".pushsection .rodata \n\t" |
| 8411 | ".global vmx_return \n\t" |
| 8412 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 8413 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8414 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8415 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8416 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8417 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8418 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 8419 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 8420 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 8421 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 8422 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 8423 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 8424 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8425 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8426 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 8427 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 8428 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 8429 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 8430 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 8431 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 8432 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 8433 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8434 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8435 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 8436 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8437 | : "cc", "memory" |
| 8438 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8439 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8440 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8441 | #else |
| 8442 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8443 | #endif |
| 8444 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8445 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8446 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 8447 | if (debugctlmsr) |
| 8448 | update_debugctlmsr(debugctlmsr); |
| 8449 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 8450 | #ifndef CONFIG_X86_64 |
| 8451 | /* |
| 8452 | * The sysexit path does not restore ds/es, so we must set them to |
| 8453 | * a reasonable value ourselves. |
| 8454 | * |
| 8455 | * We can't defer this to vmx_load_host_state() since that function |
| 8456 | * may be executed in interrupt context, which saves and restore segments |
| 8457 | * around it, nullifying its effect. |
| 8458 | */ |
| 8459 | loadsegment(ds, __USER_DS); |
| 8460 | loadsegment(es, __USER_DS); |
| 8461 | #endif |
| 8462 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 8463 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 8464 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8465 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 8466 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8467 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8468 | vcpu->arch.regs_dirty = 0; |
| 8469 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8470 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 8471 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8472 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 8473 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8474 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Jan Kiszka | 1e2b1dd | 2011-09-12 10:52:24 +0200 | [diff] [blame] | 8475 | trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8476 | |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 8477 | /* |
| 8478 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 8479 | * we did not inject a still-pending event to L1 now because of |
| 8480 | * nested_run_pending, we need to re-enable this bit. |
| 8481 | */ |
| 8482 | if (vmx->nested.nested_run_pending) |
| 8483 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 8484 | |
| 8485 | vmx->nested.nested_run_pending = 0; |
| 8486 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8487 | vmx_complete_atomic_exit(vmx); |
| 8488 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8489 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8490 | } |
| 8491 | |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8492 | static void vmx_load_vmcs01(struct kvm_vcpu *vcpu) |
| 8493 | { |
| 8494 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8495 | int cpu; |
| 8496 | |
| 8497 | if (vmx->loaded_vmcs == &vmx->vmcs01) |
| 8498 | return; |
| 8499 | |
| 8500 | cpu = get_cpu(); |
| 8501 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8502 | vmx_vcpu_put(vcpu); |
| 8503 | vmx_vcpu_load(vcpu, cpu); |
| 8504 | vcpu->cpu = cpu; |
| 8505 | put_cpu(); |
| 8506 | } |
| 8507 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8508 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 8509 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8510 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8511 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8512 | if (enable_pml) |
| 8513 | vmx_disable_pml(vmx); |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 8514 | free_vpid(vmx); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8515 | leave_guest_mode(vcpu); |
| 8516 | vmx_load_vmcs01(vcpu); |
Marcelo Tosatti | 26a865f | 2014-01-03 17:00:51 -0200 | [diff] [blame] | 8517 | free_nested(vmx); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8518 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8519 | kfree(vmx->guest_msrs); |
| 8520 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8521 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8522 | } |
| 8523 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8524 | 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] | 8525 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8526 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 8527 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8528 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8529 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8530 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8531 | return ERR_PTR(-ENOMEM); |
| 8532 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 8533 | allocate_vpid(vmx); |
| 8534 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8535 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 8536 | if (err) |
| 8537 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8538 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8539 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 8540 | BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0]) |
| 8541 | > PAGE_SIZE); |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 8542 | |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8543 | err = -ENOMEM; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8544 | if (!vmx->guest_msrs) { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8545 | goto uninit_vcpu; |
| 8546 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8547 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8548 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8549 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
| 8550 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8551 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8552 | if (!vmm_exclusive) |
| 8553 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 8554 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 8555 | if (!vmm_exclusive) |
| 8556 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8557 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8558 | cpu = get_cpu(); |
| 8559 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 8560 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 8561 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8562 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8563 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8564 | if (err) |
| 8565 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 8566 | if (vm_need_virtualize_apic_accesses(kvm)) { |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8567 | err = alloc_apic_access_page(kvm); |
| 8568 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 8569 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 8570 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8571 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8572 | if (enable_ept) { |
| 8573 | if (!kvm->arch.ept_identity_map_addr) |
| 8574 | kvm->arch.ept_identity_map_addr = |
| 8575 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 8576 | err = init_rmode_identity_map(kvm); |
| 8577 | if (err) |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 8578 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8579 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 8580 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8581 | if (nested) |
| 8582 | nested_vmx_setup_ctls_msrs(vmx); |
| 8583 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8584 | vmx->nested.posted_intr_nv = -1; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 8585 | vmx->nested.current_vmptr = -1ull; |
| 8586 | vmx->nested.current_vmcs12 = NULL; |
| 8587 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8588 | /* |
| 8589 | * If PML is turned on, failure on enabling PML just results in failure |
| 8590 | * of creating the vcpu, therefore we can simplify PML logic (by |
| 8591 | * avoiding dealing with cases, such as enabling PML partially on vcpus |
| 8592 | * for the guest, etc. |
| 8593 | */ |
| 8594 | if (enable_pml) { |
| 8595 | err = vmx_enable_pml(vmx); |
| 8596 | if (err) |
| 8597 | goto free_vmcs; |
| 8598 | } |
| 8599 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8600 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8601 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8602 | free_vmcs: |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 8603 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8604 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8605 | kfree(vmx->guest_msrs); |
| 8606 | uninit_vcpu: |
| 8607 | kvm_vcpu_uninit(&vmx->vcpu); |
| 8608 | free_vcpu: |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 8609 | free_vpid(vmx); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8610 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8611 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8612 | } |
| 8613 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 8614 | static void __init vmx_check_processor_compat(void *rtn) |
| 8615 | { |
| 8616 | struct vmcs_config vmcs_conf; |
| 8617 | |
| 8618 | *(int *)rtn = 0; |
| 8619 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 8620 | *(int *)rtn = -EIO; |
| 8621 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 8622 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 8623 | smp_processor_id()); |
| 8624 | *(int *)rtn = -EIO; |
| 8625 | } |
| 8626 | } |
| 8627 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 8628 | static int get_ept_level(void) |
| 8629 | { |
| 8630 | return VMX_EPT_DEFAULT_GAW + 1; |
| 8631 | } |
| 8632 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8633 | 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] | 8634 | { |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8635 | u64 ret; |
| 8636 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8637 | /* For VT-d and EPT combination |
| 8638 | * 1. MMIO: always map as UC |
| 8639 | * 2. EPT with VT-d: |
| 8640 | * a. VT-d without snooping control feature: can't guarantee the |
| 8641 | * result, try to trust guest. |
| 8642 | * b. VT-d with snooping control feature: snooping control feature of |
| 8643 | * VT-d engine can guarantee the cache correctness. Just set it |
| 8644 | * 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] | 8645 | * 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] | 8646 | * consistent with host MTRR |
| 8647 | */ |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8648 | if (is_mmio) |
| 8649 | ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT; |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 8650 | else if (kvm_arch_has_noncoherent_dma(vcpu->kvm)) |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8651 | ret = kvm_get_guest_memory_type(vcpu, gfn) << |
| 8652 | VMX_EPT_MT_EPTE_SHIFT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8653 | else |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8654 | ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT) |
Sheng Yang | a19a6d1 | 2010-02-09 16:41:53 +0800 | [diff] [blame] | 8655 | | VMX_EPT_IPAT_BIT; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8656 | |
| 8657 | return ret; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 8658 | } |
| 8659 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 8660 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8661 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 8662 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 8663 | return PT_DIRECTORY_LEVEL; |
| 8664 | else |
| 8665 | /* For shadow and EPT supported 1GB page */ |
| 8666 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8667 | } |
| 8668 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8669 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 8670 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8671 | struct kvm_cpuid_entry2 *best; |
| 8672 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8673 | u32 exec_control; |
| 8674 | |
| 8675 | vmx->rdtscp_enabled = false; |
| 8676 | if (vmx_rdtscp_supported()) { |
| 8677 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8678 | if (exec_control & SECONDARY_EXEC_RDTSCP) { |
| 8679 | best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
| 8680 | if (best && (best->edx & bit(X86_FEATURE_RDTSCP))) |
| 8681 | vmx->rdtscp_enabled = true; |
| 8682 | else { |
| 8683 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 8684 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 8685 | exec_control); |
| 8686 | } |
| 8687 | } |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 8688 | if (nested && !vmx->rdtscp_enabled) |
| 8689 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 8690 | ~SECONDARY_EXEC_RDTSCP; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8691 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8692 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8693 | /* Exposing INVPCID only when PCID is exposed */ |
| 8694 | best = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 8695 | if (vmx_invpcid_supported() && |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 8696 | best && (best->ebx & bit(X86_FEATURE_INVPCID)) && |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8697 | guest_cpuid_has_pcid(vcpu)) { |
Takashi Iwai | 29282fd | 2012-11-09 15:20:17 +0100 | [diff] [blame] | 8698 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8699 | exec_control |= SECONDARY_EXEC_ENABLE_INVPCID; |
| 8700 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 8701 | exec_control); |
| 8702 | } else { |
Takashi Iwai | 29282fd | 2012-11-09 15:20:17 +0100 | [diff] [blame] | 8703 | if (cpu_has_secondary_exec_ctrls()) { |
| 8704 | exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8705 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
| 8706 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 8707 | exec_control); |
| 8708 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8709 | if (best) |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 8710 | best->ebx &= ~bit(X86_FEATURE_INVPCID); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8711 | } |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8712 | } |
| 8713 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8714 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 8715 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 8716 | if (func == 1 && nested) |
| 8717 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8718 | } |
| 8719 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8720 | static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu, |
| 8721 | struct x86_exception *fault) |
| 8722 | { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8723 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8724 | u32 exit_reason; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8725 | |
| 8726 | if (fault->error_code & PFERR_RSVD_MASK) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8727 | exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8728 | else |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8729 | exit_reason = EXIT_REASON_EPT_VIOLATION; |
| 8730 | nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8731 | vmcs12->guest_physical_address = fault->address; |
| 8732 | } |
| 8733 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8734 | /* Callbacks for nested_ept_init_mmu_context: */ |
| 8735 | |
| 8736 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu) |
| 8737 | { |
| 8738 | /* return the page table to be shadowed - in our case, EPT12 */ |
| 8739 | return get_vmcs12(vcpu)->ept_pointer; |
| 8740 | } |
| 8741 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 8742 | static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8743 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 8744 | WARN_ON(mmu_is_nested(vcpu)); |
| 8745 | kvm_init_shadow_ept_mmu(vcpu, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8746 | to_vmx(vcpu)->nested.nested_vmx_ept_caps & |
| 8747 | VMX_EPT_EXECUTE_ONLY_BIT); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8748 | vcpu->arch.mmu.set_cr3 = vmx_set_cr3; |
| 8749 | vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3; |
| 8750 | vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault; |
| 8751 | |
| 8752 | vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8753 | } |
| 8754 | |
| 8755 | static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu) |
| 8756 | { |
| 8757 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 8758 | } |
| 8759 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 8760 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 8761 | u16 error_code) |
| 8762 | { |
| 8763 | bool inequality, bit; |
| 8764 | |
| 8765 | bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; |
| 8766 | inequality = |
| 8767 | (error_code & vmcs12->page_fault_error_code_mask) != |
| 8768 | vmcs12->page_fault_error_code_match; |
| 8769 | return inequality ^ bit; |
| 8770 | } |
| 8771 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 8772 | static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu, |
| 8773 | struct x86_exception *fault) |
| 8774 | { |
| 8775 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8776 | |
| 8777 | WARN_ON(!is_guest_mode(vcpu)); |
| 8778 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 8779 | if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8780 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 8781 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8782 | vmcs_readl(EXIT_QUALIFICATION)); |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 8783 | else |
| 8784 | kvm_inject_page_fault(vcpu, fault); |
| 8785 | } |
| 8786 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8787 | static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu, |
| 8788 | struct vmcs12 *vmcs12) |
| 8789 | { |
| 8790 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8791 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8792 | |
| 8793 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8794 | if (!PAGE_ALIGNED(vmcs12->apic_access_addr) || |
| 8795 | vmcs12->apic_access_addr >> maxphyaddr) |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8796 | return false; |
| 8797 | |
| 8798 | /* |
| 8799 | * Translate L1 physical address to host physical |
| 8800 | * address for vmcs02. Keep the page pinned, so this |
| 8801 | * physical address remains valid. We keep a reference |
| 8802 | * to it so we can release it later. |
| 8803 | */ |
| 8804 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 8805 | nested_release_page(vmx->nested.apic_access_page); |
| 8806 | vmx->nested.apic_access_page = |
| 8807 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
| 8808 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8809 | |
| 8810 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8811 | if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) || |
| 8812 | vmcs12->virtual_apic_page_addr >> maxphyaddr) |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8813 | return false; |
| 8814 | |
| 8815 | if (vmx->nested.virtual_apic_page) /* shouldn't happen */ |
| 8816 | nested_release_page(vmx->nested.virtual_apic_page); |
| 8817 | vmx->nested.virtual_apic_page = |
| 8818 | nested_get_page(vcpu, vmcs12->virtual_apic_page_addr); |
| 8819 | |
| 8820 | /* |
| 8821 | * Failing the vm entry is _not_ what the processor does |
| 8822 | * but it's basically the only possibility we have. |
| 8823 | * We could still enter the guest if CR8 load exits are |
| 8824 | * enabled, CR8 store exits are enabled, and virtualize APIC |
| 8825 | * access is disabled; in this case the processor would never |
| 8826 | * use the TPR shadow and we could simply clear the bit from |
| 8827 | * the execution control. But such a configuration is useless, |
| 8828 | * so let's keep the code simple. |
| 8829 | */ |
| 8830 | if (!vmx->nested.virtual_apic_page) |
| 8831 | return false; |
| 8832 | } |
| 8833 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8834 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8835 | if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) || |
| 8836 | vmcs12->posted_intr_desc_addr >> maxphyaddr) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8837 | return false; |
| 8838 | |
| 8839 | if (vmx->nested.pi_desc_page) { /* shouldn't happen */ |
| 8840 | kunmap(vmx->nested.pi_desc_page); |
| 8841 | nested_release_page(vmx->nested.pi_desc_page); |
| 8842 | } |
| 8843 | vmx->nested.pi_desc_page = |
| 8844 | nested_get_page(vcpu, vmcs12->posted_intr_desc_addr); |
| 8845 | if (!vmx->nested.pi_desc_page) |
| 8846 | return false; |
| 8847 | |
| 8848 | vmx->nested.pi_desc = |
| 8849 | (struct pi_desc *)kmap(vmx->nested.pi_desc_page); |
| 8850 | if (!vmx->nested.pi_desc) { |
| 8851 | nested_release_page_clean(vmx->nested.pi_desc_page); |
| 8852 | return false; |
| 8853 | } |
| 8854 | vmx->nested.pi_desc = |
| 8855 | (struct pi_desc *)((void *)vmx->nested.pi_desc + |
| 8856 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 8857 | (PAGE_SIZE - 1))); |
| 8858 | } |
| 8859 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8860 | return true; |
| 8861 | } |
| 8862 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 8863 | static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu) |
| 8864 | { |
| 8865 | u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value; |
| 8866 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8867 | |
| 8868 | if (vcpu->arch.virtual_tsc_khz == 0) |
| 8869 | return; |
| 8870 | |
| 8871 | /* Make sure short timeouts reliably trigger an immediate vmexit. |
| 8872 | * hrtimer_start does not guarantee this. */ |
| 8873 | if (preemption_timeout <= 1) { |
| 8874 | vmx_preemption_timer_fn(&vmx->nested.preemption_timer); |
| 8875 | return; |
| 8876 | } |
| 8877 | |
| 8878 | preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 8879 | preemption_timeout *= 1000000; |
| 8880 | do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz); |
| 8881 | hrtimer_start(&vmx->nested.preemption_timer, |
| 8882 | ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL); |
| 8883 | } |
| 8884 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 8885 | static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu, |
| 8886 | struct vmcs12 *vmcs12) |
| 8887 | { |
| 8888 | int maxphyaddr; |
| 8889 | u64 addr; |
| 8890 | |
| 8891 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
| 8892 | return 0; |
| 8893 | |
| 8894 | if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) { |
| 8895 | WARN_ON(1); |
| 8896 | return -EINVAL; |
| 8897 | } |
| 8898 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 8899 | |
| 8900 | if (!PAGE_ALIGNED(vmcs12->msr_bitmap) || |
| 8901 | ((addr + PAGE_SIZE) >> maxphyaddr)) |
| 8902 | return -EINVAL; |
| 8903 | |
| 8904 | return 0; |
| 8905 | } |
| 8906 | |
| 8907 | /* |
| 8908 | * Merge L0's and L1's MSR bitmap, return false to indicate that |
| 8909 | * we do not use the hardware. |
| 8910 | */ |
| 8911 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 8912 | struct vmcs12 *vmcs12) |
| 8913 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8914 | int msr; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 8915 | struct page *page; |
| 8916 | unsigned long *msr_bitmap; |
| 8917 | |
| 8918 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12)) |
| 8919 | return false; |
| 8920 | |
| 8921 | page = nested_get_page(vcpu, vmcs12->msr_bitmap); |
| 8922 | if (!page) { |
| 8923 | WARN_ON(1); |
| 8924 | return false; |
| 8925 | } |
| 8926 | msr_bitmap = (unsigned long *)kmap(page); |
| 8927 | if (!msr_bitmap) { |
| 8928 | nested_release_page_clean(page); |
| 8929 | WARN_ON(1); |
| 8930 | return false; |
| 8931 | } |
| 8932 | |
| 8933 | if (nested_cpu_has_virt_x2apic_mode(vmcs12)) { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8934 | if (nested_cpu_has_apic_reg_virt(vmcs12)) |
| 8935 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 8936 | nested_vmx_disable_intercept_for_msr( |
| 8937 | msr_bitmap, |
| 8938 | vmx_msr_bitmap_nested, |
| 8939 | msr, MSR_TYPE_R); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 8940 | /* TPR is allowed */ |
| 8941 | nested_vmx_disable_intercept_for_msr(msr_bitmap, |
| 8942 | vmx_msr_bitmap_nested, |
| 8943 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
| 8944 | MSR_TYPE_R | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 8945 | if (nested_cpu_has_vid(vmcs12)) { |
| 8946 | /* EOI and self-IPI are allowed */ |
| 8947 | nested_vmx_disable_intercept_for_msr( |
| 8948 | msr_bitmap, |
| 8949 | vmx_msr_bitmap_nested, |
| 8950 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 8951 | MSR_TYPE_W); |
| 8952 | nested_vmx_disable_intercept_for_msr( |
| 8953 | msr_bitmap, |
| 8954 | vmx_msr_bitmap_nested, |
| 8955 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 8956 | MSR_TYPE_W); |
| 8957 | } |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8958 | } else { |
| 8959 | /* |
| 8960 | * Enable reading intercept of all the x2apic |
| 8961 | * MSRs. We should not rely on vmcs12 to do any |
| 8962 | * optimizations here, it may have been modified |
| 8963 | * by L1. |
| 8964 | */ |
| 8965 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 8966 | __vmx_enable_intercept_for_msr( |
| 8967 | vmx_msr_bitmap_nested, |
| 8968 | msr, |
| 8969 | MSR_TYPE_R); |
| 8970 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 8971 | __vmx_enable_intercept_for_msr( |
| 8972 | vmx_msr_bitmap_nested, |
| 8973 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8974 | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 8975 | __vmx_enable_intercept_for_msr( |
| 8976 | vmx_msr_bitmap_nested, |
| 8977 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 8978 | MSR_TYPE_W); |
| 8979 | __vmx_enable_intercept_for_msr( |
| 8980 | vmx_msr_bitmap_nested, |
| 8981 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 8982 | MSR_TYPE_W); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8983 | } |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 8984 | kunmap(page); |
| 8985 | nested_release_page_clean(page); |
| 8986 | |
| 8987 | return true; |
| 8988 | } |
| 8989 | |
| 8990 | static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu, |
| 8991 | struct vmcs12 *vmcs12) |
| 8992 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8993 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12) && |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 8994 | !nested_cpu_has_apic_reg_virt(vmcs12) && |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8995 | !nested_cpu_has_vid(vmcs12) && |
| 8996 | !nested_cpu_has_posted_intr(vmcs12)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 8997 | return 0; |
| 8998 | |
| 8999 | /* |
| 9000 | * If virtualize x2apic mode is enabled, |
| 9001 | * virtualize apic access must be disabled. |
| 9002 | */ |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9003 | if (nested_cpu_has_virt_x2apic_mode(vmcs12) && |
| 9004 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9005 | return -EINVAL; |
| 9006 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9007 | /* |
| 9008 | * If virtual interrupt delivery is enabled, |
| 9009 | * we must exit on external interrupts. |
| 9010 | */ |
| 9011 | if (nested_cpu_has_vid(vmcs12) && |
| 9012 | !nested_exit_on_intr(vcpu)) |
| 9013 | return -EINVAL; |
| 9014 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9015 | /* |
| 9016 | * bits 15:8 should be zero in posted_intr_nv, |
| 9017 | * the descriptor address has been already checked |
| 9018 | * in nested_get_vmcs12_pages. |
| 9019 | */ |
| 9020 | if (nested_cpu_has_posted_intr(vmcs12) && |
| 9021 | (!nested_cpu_has_vid(vmcs12) || |
| 9022 | !nested_exit_intr_ack_set(vcpu) || |
| 9023 | vmcs12->posted_intr_nv & 0xff00)) |
| 9024 | return -EINVAL; |
| 9025 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9026 | /* tpr shadow is needed by all apicv features. */ |
| 9027 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 9028 | return -EINVAL; |
| 9029 | |
| 9030 | return 0; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9031 | } |
| 9032 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9033 | static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu, |
| 9034 | unsigned long count_field, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9035 | unsigned long addr_field) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9036 | { |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9037 | int maxphyaddr; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9038 | u64 count, addr; |
| 9039 | |
| 9040 | if (vmcs12_read_any(vcpu, count_field, &count) || |
| 9041 | vmcs12_read_any(vcpu, addr_field, &addr)) { |
| 9042 | WARN_ON(1); |
| 9043 | return -EINVAL; |
| 9044 | } |
| 9045 | if (count == 0) |
| 9046 | return 0; |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9047 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9048 | if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr || |
| 9049 | (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) { |
| 9050 | pr_warn_ratelimited( |
| 9051 | "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)", |
| 9052 | addr_field, maxphyaddr, count, addr); |
| 9053 | return -EINVAL; |
| 9054 | } |
| 9055 | return 0; |
| 9056 | } |
| 9057 | |
| 9058 | static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu, |
| 9059 | struct vmcs12 *vmcs12) |
| 9060 | { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9061 | if (vmcs12->vm_exit_msr_load_count == 0 && |
| 9062 | vmcs12->vm_exit_msr_store_count == 0 && |
| 9063 | vmcs12->vm_entry_msr_load_count == 0) |
| 9064 | return 0; /* Fast path */ |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9065 | if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9066 | VM_EXIT_MSR_LOAD_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9067 | nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9068 | VM_EXIT_MSR_STORE_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9069 | nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9070 | VM_ENTRY_MSR_LOAD_ADDR)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9071 | return -EINVAL; |
| 9072 | return 0; |
| 9073 | } |
| 9074 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9075 | static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu, |
| 9076 | struct vmx_msr_entry *e) |
| 9077 | { |
| 9078 | /* x2APIC MSR accesses are not allowed */ |
| 9079 | if (apic_x2apic_mode(vcpu->arch.apic) && e->index >> 8 == 0x8) |
| 9080 | return -EINVAL; |
| 9081 | if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */ |
| 9082 | e->index == MSR_IA32_UCODE_REV) |
| 9083 | return -EINVAL; |
| 9084 | if (e->reserved != 0) |
| 9085 | return -EINVAL; |
| 9086 | return 0; |
| 9087 | } |
| 9088 | |
| 9089 | static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu, |
| 9090 | struct vmx_msr_entry *e) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9091 | { |
| 9092 | if (e->index == MSR_FS_BASE || |
| 9093 | e->index == MSR_GS_BASE || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9094 | e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */ |
| 9095 | nested_vmx_msr_check_common(vcpu, e)) |
| 9096 | return -EINVAL; |
| 9097 | return 0; |
| 9098 | } |
| 9099 | |
| 9100 | static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu, |
| 9101 | struct vmx_msr_entry *e) |
| 9102 | { |
| 9103 | if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */ |
| 9104 | nested_vmx_msr_check_common(vcpu, e)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9105 | return -EINVAL; |
| 9106 | return 0; |
| 9107 | } |
| 9108 | |
| 9109 | /* |
| 9110 | * Load guest's/host's msr at nested entry/exit. |
| 9111 | * return 0 for success, entry index for failure. |
| 9112 | */ |
| 9113 | static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9114 | { |
| 9115 | u32 i; |
| 9116 | struct vmx_msr_entry e; |
| 9117 | struct msr_data msr; |
| 9118 | |
| 9119 | msr.host_initiated = false; |
| 9120 | for (i = 0; i < count; i++) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9121 | if (kvm_read_guest(vcpu->kvm, gpa + i * sizeof(e), |
| 9122 | &e, sizeof(e))) { |
| 9123 | pr_warn_ratelimited( |
| 9124 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9125 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9126 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9127 | } |
| 9128 | if (nested_vmx_load_msr_check(vcpu, &e)) { |
| 9129 | pr_warn_ratelimited( |
| 9130 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9131 | __func__, i, e.index, e.reserved); |
| 9132 | goto fail; |
| 9133 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9134 | msr.index = e.index; |
| 9135 | msr.data = e.value; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9136 | if (kvm_set_msr(vcpu, &msr)) { |
| 9137 | pr_warn_ratelimited( |
| 9138 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 9139 | __func__, i, e.index, e.value); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9140 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9141 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9142 | } |
| 9143 | return 0; |
| 9144 | fail: |
| 9145 | return i + 1; |
| 9146 | } |
| 9147 | |
| 9148 | static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9149 | { |
| 9150 | u32 i; |
| 9151 | struct vmx_msr_entry e; |
| 9152 | |
| 9153 | for (i = 0; i < count; i++) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9154 | if (kvm_read_guest(vcpu->kvm, |
| 9155 | gpa + i * sizeof(e), |
| 9156 | &e, 2 * sizeof(u32))) { |
| 9157 | pr_warn_ratelimited( |
| 9158 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9159 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9160 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9161 | } |
| 9162 | if (nested_vmx_store_msr_check(vcpu, &e)) { |
| 9163 | pr_warn_ratelimited( |
| 9164 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9165 | __func__, i, e.index, e.reserved); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9166 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9167 | } |
| 9168 | if (kvm_get_msr(vcpu, e.index, &e.value)) { |
| 9169 | pr_warn_ratelimited( |
| 9170 | "%s cannot read MSR (%u, 0x%x)\n", |
| 9171 | __func__, i, e.index); |
| 9172 | return -EINVAL; |
| 9173 | } |
| 9174 | if (kvm_write_guest(vcpu->kvm, |
| 9175 | gpa + i * sizeof(e) + |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9176 | offsetof(struct vmx_msr_entry, value), |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9177 | &e.value, sizeof(e.value))) { |
| 9178 | pr_warn_ratelimited( |
| 9179 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 9180 | __func__, i, e.index, e.value); |
| 9181 | return -EINVAL; |
| 9182 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9183 | } |
| 9184 | return 0; |
| 9185 | } |
| 9186 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9187 | /* |
| 9188 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 9189 | * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it |
Tiejun Chen | b461966 | 2014-09-22 10:31:38 +0800 | [diff] [blame] | 9190 | * with L0's requirements for its guest (a.k.a. vmcs01), so we can run the L2 |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9191 | * guest in a way that will both be appropriate to L1's requests, and our |
| 9192 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 9193 | * function also has additional necessary side-effects, like setting various |
| 9194 | * vcpu->arch fields. |
| 9195 | */ |
| 9196 | static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9197 | { |
| 9198 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9199 | u32 exec_control; |
| 9200 | |
| 9201 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 9202 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 9203 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 9204 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 9205 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 9206 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 9207 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 9208 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 9209 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 9210 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 9211 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 9212 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 9213 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 9214 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 9215 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 9216 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 9217 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 9218 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 9219 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 9220 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 9221 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 9222 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 9223 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 9224 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 9225 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 9226 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 9227 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 9228 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 9229 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 9230 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 9231 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 9232 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 9233 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 9234 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 9235 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 9236 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 9237 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9238 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) { |
| 9239 | kvm_set_dr(vcpu, 7, vmcs12->guest_dr7); |
| 9240 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 9241 | } else { |
| 9242 | kvm_set_dr(vcpu, 7, vcpu->arch.dr7); |
| 9243 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl); |
| 9244 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9245 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 9246 | vmcs12->vm_entry_intr_info_field); |
| 9247 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 9248 | vmcs12->vm_entry_exception_error_code); |
| 9249 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 9250 | vmcs12->vm_entry_instruction_len); |
| 9251 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 9252 | vmcs12->guest_interruptibility_info); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9253 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
Gleb Natapov | 63fbf59 | 2013-07-28 18:31:06 +0300 | [diff] [blame] | 9254 | vmx_set_rflags(vcpu, vmcs12->guest_rflags); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9255 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 9256 | vmcs12->guest_pending_dbg_exceptions); |
| 9257 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 9258 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 9259 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 9260 | if (nested_cpu_has_xsaves(vmcs12)) |
| 9261 | vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9262 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 9263 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9264 | exec_control = vmcs12->pin_based_vm_exec_control; |
| 9265 | exec_control |= vmcs_config.pin_based_exec_ctrl; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9266 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 9267 | |
| 9268 | if (nested_cpu_has_posted_intr(vmcs12)) { |
| 9269 | /* |
| 9270 | * Note that we use L0's vector here and in |
| 9271 | * vmx_deliver_nested_posted_interrupt. |
| 9272 | */ |
| 9273 | vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; |
| 9274 | vmx->nested.pi_pending = false; |
| 9275 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 9276 | vmcs_write64(POSTED_INTR_DESC_ADDR, |
| 9277 | page_to_phys(vmx->nested.pi_desc_page) + |
| 9278 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9279 | (PAGE_SIZE - 1))); |
| 9280 | } else |
| 9281 | exec_control &= ~PIN_BASED_POSTED_INTR; |
| 9282 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9283 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9284 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9285 | vmx->nested.preemption_timer_expired = false; |
| 9286 | if (nested_cpu_has_preemption_timer(vmcs12)) |
| 9287 | vmx_start_preemption_timer(vcpu); |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 9288 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9289 | /* |
| 9290 | * Whether page-faults are trapped is determined by a combination of |
| 9291 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 9292 | * If enable_ept, L0 doesn't care about page faults and we should |
| 9293 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 9294 | * care about (at least some) page faults, and because it is not easy |
| 9295 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 9296 | * to exit on each and every L2 page fault. This is done by setting |
| 9297 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 9298 | * Note that below we don't need special code to set EB.PF beyond the |
| 9299 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 9300 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 9301 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 9302 | * |
| 9303 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 9304 | * injected with more page faults than it asked for. This could have |
| 9305 | * caused problems, but in practice existing hypervisors don't care. |
| 9306 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 9307 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 9308 | */ |
| 9309 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 9310 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 9311 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 9312 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 9313 | |
| 9314 | if (cpu_has_secondary_exec_ctrls()) { |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9315 | exec_control = vmx_secondary_exec_control(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9316 | if (!vmx->rdtscp_enabled) |
| 9317 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 9318 | /* Take the following fields only from vmcs12 */ |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9319 | exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 9320 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9321 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 9322 | SECONDARY_EXEC_APIC_REGISTER_VIRT); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9323 | if (nested_cpu_has(vmcs12, |
| 9324 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 9325 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 9326 | |
| 9327 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) { |
| 9328 | /* |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9329 | * If translation failed, no matter: This feature asks |
| 9330 | * to exit when accessing the given address, and if it |
| 9331 | * can never be accessed, this feature won't do |
| 9332 | * anything anyway. |
| 9333 | */ |
| 9334 | if (!vmx->nested.apic_access_page) |
| 9335 | exec_control &= |
| 9336 | ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 9337 | else |
| 9338 | vmcs_write64(APIC_ACCESS_ADDR, |
| 9339 | page_to_phys(vmx->nested.apic_access_page)); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9340 | } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) && |
| 9341 | (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))) { |
Jan Kiszka | ca3f257 | 2013-12-16 12:55:46 +0100 | [diff] [blame] | 9342 | exec_control |= |
| 9343 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 9344 | kvm_vcpu_reload_apic_access_page(vcpu); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9345 | } |
| 9346 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9347 | if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) { |
| 9348 | vmcs_write64(EOI_EXIT_BITMAP0, |
| 9349 | vmcs12->eoi_exit_bitmap0); |
| 9350 | vmcs_write64(EOI_EXIT_BITMAP1, |
| 9351 | vmcs12->eoi_exit_bitmap1); |
| 9352 | vmcs_write64(EOI_EXIT_BITMAP2, |
| 9353 | vmcs12->eoi_exit_bitmap2); |
| 9354 | vmcs_write64(EOI_EXIT_BITMAP3, |
| 9355 | vmcs12->eoi_exit_bitmap3); |
| 9356 | vmcs_write16(GUEST_INTR_STATUS, |
| 9357 | vmcs12->guest_intr_status); |
| 9358 | } |
| 9359 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9360 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 9361 | } |
| 9362 | |
| 9363 | |
| 9364 | /* |
| 9365 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 9366 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 9367 | * Other fields are different per CPU, and will be set later when |
| 9368 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 9369 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9370 | vmx_set_constant_host_state(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9371 | |
| 9372 | /* |
| 9373 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 9374 | * entry, but only if the current (host) sp changed from the value |
| 9375 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 9376 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 9377 | * here we just force the write to happen on entry. |
| 9378 | */ |
| 9379 | vmx->host_rsp = 0; |
| 9380 | |
| 9381 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 9382 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 9383 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 9384 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 9385 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9386 | |
| 9387 | if (exec_control & CPU_BASED_TPR_SHADOW) { |
| 9388 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
| 9389 | page_to_phys(vmx->nested.virtual_apic_page)); |
| 9390 | vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); |
| 9391 | } |
| 9392 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9393 | if (cpu_has_vmx_msr_bitmap() && |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 9394 | exec_control & CPU_BASED_USE_MSR_BITMAPS) { |
| 9395 | nested_vmx_merge_msr_bitmap(vcpu, vmcs12); |
| 9396 | /* MSR_BITMAP will be set by following vmx_set_efer. */ |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9397 | } else |
| 9398 | exec_control &= ~CPU_BASED_USE_MSR_BITMAPS; |
| 9399 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9400 | /* |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9401 | * Merging of IO bitmap not currently supported. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9402 | * Rather, exit every time. |
| 9403 | */ |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9404 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 9405 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 9406 | |
| 9407 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 9408 | |
| 9409 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 9410 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 9411 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 9412 | */ |
| 9413 | update_exception_bitmap(vcpu); |
| 9414 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 9415 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 9416 | |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9417 | /* L2->L1 exit controls are emulated - the hardware exit is to L0 so |
| 9418 | * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER |
| 9419 | * bits are further modified by vmx_set_efer() below. |
| 9420 | */ |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9421 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9422 | |
| 9423 | /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are |
| 9424 | * emulated by vmx_set_efer(), below. |
| 9425 | */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 9426 | vm_entry_controls_init(vmx, |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9427 | (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER & |
| 9428 | ~VM_ENTRY_IA32E_MODE) | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9429 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 9430 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9431 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9432 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9433 | vcpu->arch.pat = vmcs12->guest_ia32_pat; |
| 9434 | } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9435 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
| 9436 | |
| 9437 | |
| 9438 | set_cr4_guest_host_mask(vmx); |
| 9439 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 9440 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) |
| 9441 | vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs); |
| 9442 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 9443 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 9444 | vmcs_write64(TSC_OFFSET, |
| 9445 | vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset); |
| 9446 | else |
| 9447 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9448 | |
| 9449 | if (enable_vpid) { |
| 9450 | /* |
| 9451 | * Trivially support vpid by letting L2s share their parent |
| 9452 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 9453 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 9454 | */ |
| 9455 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 9456 | vmx_flush_tlb(vcpu); |
| 9457 | } |
| 9458 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9459 | if (nested_cpu_has_ept(vmcs12)) { |
| 9460 | kvm_mmu_unload(vcpu); |
| 9461 | nested_ept_init_mmu_context(vcpu); |
| 9462 | } |
| 9463 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9464 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) |
| 9465 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 9466 | else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9467 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 9468 | else |
| 9469 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 9470 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 9471 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 9472 | |
| 9473 | /* |
| 9474 | * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified |
| 9475 | * TS bit (for lazy fpu) and bits which we consider mandatory enabled. |
| 9476 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 9477 | * the specifications by L1; It's not enough to take |
| 9478 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 9479 | * have more bits than L1 expected. |
| 9480 | */ |
| 9481 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 9482 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 9483 | |
| 9484 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 9485 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 9486 | |
| 9487 | /* shadow page tables on either EPT or shadow page tables */ |
| 9488 | kvm_set_cr3(vcpu, vmcs12->guest_cr3); |
| 9489 | kvm_mmu_reset_context(vcpu); |
| 9490 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9491 | if (!enable_ept) |
| 9492 | vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested; |
| 9493 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 9494 | /* |
| 9495 | * L1 may access the L2's PDPTR, so save them to construct vmcs12 |
| 9496 | */ |
| 9497 | if (enable_ept) { |
| 9498 | vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0); |
| 9499 | vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1); |
| 9500 | vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2); |
| 9501 | vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3); |
| 9502 | } |
| 9503 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9504 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 9505 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
| 9506 | } |
| 9507 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9508 | /* |
| 9509 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 9510 | * for running an L2 nested guest. |
| 9511 | */ |
| 9512 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 9513 | { |
| 9514 | struct vmcs12 *vmcs12; |
| 9515 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9516 | int cpu; |
| 9517 | struct loaded_vmcs *vmcs02; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 9518 | bool ia32e; |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9519 | u32 msr_entry_idx; |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9520 | |
| 9521 | if (!nested_vmx_check_permission(vcpu) || |
| 9522 | !nested_vmx_check_vmcs12(vcpu)) |
| 9523 | return 1; |
| 9524 | |
| 9525 | skip_emulated_instruction(vcpu); |
| 9526 | vmcs12 = get_vmcs12(vcpu); |
| 9527 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 9528 | if (enable_shadow_vmcs) |
| 9529 | copy_shadow_to_vmcs12(vmx); |
| 9530 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9531 | /* |
| 9532 | * The nested entry process starts with enforcing various prerequisites |
| 9533 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 9534 | * they fail: As the SDM explains, some conditions should cause the |
| 9535 | * instruction to fail, while others will cause the instruction to seem |
| 9536 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 9537 | * To speed up the normal (success) code path, we should avoid checking |
| 9538 | * for misconfigurations which will anyway be caught by the processor |
| 9539 | * when using the merged vmcs02. |
| 9540 | */ |
| 9541 | if (vmcs12->launch_state == launch) { |
| 9542 | nested_vmx_failValid(vcpu, |
| 9543 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 9544 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
| 9545 | return 1; |
| 9546 | } |
| 9547 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9548 | if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE && |
| 9549 | vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) { |
Paolo Bonzini | 26539bd | 2013-04-15 15:00:27 +0200 | [diff] [blame] | 9550 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9551 | return 1; |
| 9552 | } |
| 9553 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9554 | if (!nested_get_vmcs12_pages(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9555 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9556 | return 1; |
| 9557 | } |
| 9558 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9559 | if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9560 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9561 | return 1; |
| 9562 | } |
| 9563 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9564 | if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) { |
| 9565 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9566 | return 1; |
| 9567 | } |
| 9568 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9569 | if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) { |
| 9570 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9571 | return 1; |
| 9572 | } |
| 9573 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9574 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9575 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 9576 | vmx->nested.nested_vmx_procbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9577 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9578 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 9579 | vmx->nested.nested_vmx_secondary_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9580 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9581 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 9582 | vmx->nested.nested_vmx_pinbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9583 | !vmx_control_verify(vmcs12->vm_exit_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9584 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 9585 | vmx->nested.nested_vmx_exit_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9586 | !vmx_control_verify(vmcs12->vm_entry_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9587 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 9588 | vmx->nested.nested_vmx_entry_ctls_high)) |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9589 | { |
| 9590 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9591 | return 1; |
| 9592 | } |
| 9593 | |
| 9594 | if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 9595 | ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9596 | nested_vmx_failValid(vcpu, |
| 9597 | VMXERR_ENTRY_INVALID_HOST_STATE_FIELD); |
| 9598 | return 1; |
| 9599 | } |
| 9600 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9601 | if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9602 | ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9603 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9604 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9605 | return 1; |
| 9606 | } |
| 9607 | if (vmcs12->vmcs_link_pointer != -1ull) { |
| 9608 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9609 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR); |
| 9610 | return 1; |
| 9611 | } |
| 9612 | |
| 9613 | /* |
Jan Kiszka | cb0c8cda | 2013-04-27 12:58:00 +0200 | [diff] [blame] | 9614 | * If the load IA32_EFER VM-entry control is 1, the following checks |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 9615 | * are performed on the field for the IA32_EFER MSR: |
| 9616 | * - Bits reserved in the IA32_EFER MSR must be 0. |
| 9617 | * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of |
| 9618 | * the IA-32e mode guest VM-exit control. It must also be identical |
| 9619 | * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to |
| 9620 | * CR0.PG) is 1. |
| 9621 | */ |
| 9622 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) { |
| 9623 | ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; |
| 9624 | if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) || |
| 9625 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) || |
| 9626 | ((vmcs12->guest_cr0 & X86_CR0_PG) && |
| 9627 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) { |
| 9628 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9629 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9630 | return 1; |
| 9631 | } |
| 9632 | } |
| 9633 | |
| 9634 | /* |
| 9635 | * If the load IA32_EFER VM-exit control is 1, bits reserved in the |
| 9636 | * IA32_EFER MSR must be 0 in the field for that register. In addition, |
| 9637 | * the values of the LMA and LME bits in the field must each be that of |
| 9638 | * the host address-space size VM-exit control. |
| 9639 | */ |
| 9640 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) { |
| 9641 | ia32e = (vmcs12->vm_exit_controls & |
| 9642 | VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0; |
| 9643 | if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) || |
| 9644 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) || |
| 9645 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) { |
| 9646 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9647 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9648 | return 1; |
| 9649 | } |
| 9650 | } |
| 9651 | |
| 9652 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9653 | * We're finally done with prerequisite checking, and can start with |
| 9654 | * the nested entry. |
| 9655 | */ |
| 9656 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9657 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 9658 | if (!vmcs02) |
| 9659 | return -ENOMEM; |
| 9660 | |
| 9661 | enter_guest_mode(vcpu); |
| 9662 | |
| 9663 | vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET); |
| 9664 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9665 | if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) |
| 9666 | vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 9667 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9668 | cpu = get_cpu(); |
| 9669 | vmx->loaded_vmcs = vmcs02; |
| 9670 | vmx_vcpu_put(vcpu); |
| 9671 | vmx_vcpu_load(vcpu, cpu); |
| 9672 | vcpu->cpu = cpu; |
| 9673 | put_cpu(); |
| 9674 | |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 9675 | vmx_segment_cache_clear(vmx); |
| 9676 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9677 | prepare_vmcs02(vcpu, vmcs12); |
| 9678 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9679 | msr_entry_idx = nested_vmx_load_msr(vcpu, |
| 9680 | vmcs12->vm_entry_msr_load_addr, |
| 9681 | vmcs12->vm_entry_msr_load_count); |
| 9682 | if (msr_entry_idx) { |
| 9683 | leave_guest_mode(vcpu); |
| 9684 | vmx_load_vmcs01(vcpu); |
| 9685 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9686 | EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx); |
| 9687 | return 1; |
| 9688 | } |
| 9689 | |
| 9690 | vmcs12->launch_state = 1; |
| 9691 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9692 | if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 9693 | return kvm_vcpu_halt(vcpu); |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9694 | |
Jan Kiszka | 7af40ad3 | 2014-01-04 18:47:23 +0100 | [diff] [blame] | 9695 | vmx->nested.nested_run_pending = 1; |
| 9696 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9697 | /* |
| 9698 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 9699 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 9700 | * returned as far as L1 is concerned. It will only return (and set |
| 9701 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 9702 | */ |
| 9703 | return 1; |
| 9704 | } |
| 9705 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9706 | /* |
| 9707 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 9708 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 9709 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 9710 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 9711 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 9712 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 9713 | * didn't trap the bit, because if L1 did, so would L0). |
| 9714 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 9715 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 9716 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 9717 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 9718 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 9719 | * changed these bits, and therefore they need to be updated, but L0 |
| 9720 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 9721 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 9722 | */ |
| 9723 | static inline unsigned long |
| 9724 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9725 | { |
| 9726 | return |
| 9727 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 9728 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 9729 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 9730 | vcpu->arch.cr0_guest_owned_bits)); |
| 9731 | } |
| 9732 | |
| 9733 | static inline unsigned long |
| 9734 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9735 | { |
| 9736 | return |
| 9737 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 9738 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 9739 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 9740 | vcpu->arch.cr4_guest_owned_bits)); |
| 9741 | } |
| 9742 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9743 | static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, |
| 9744 | struct vmcs12 *vmcs12) |
| 9745 | { |
| 9746 | u32 idt_vectoring; |
| 9747 | unsigned int nr; |
| 9748 | |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 9749 | if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9750 | nr = vcpu->arch.exception.nr; |
| 9751 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 9752 | |
| 9753 | if (kvm_exception_is_soft(nr)) { |
| 9754 | vmcs12->vm_exit_instruction_len = |
| 9755 | vcpu->arch.event_exit_inst_len; |
| 9756 | idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION; |
| 9757 | } else |
| 9758 | idt_vectoring |= INTR_TYPE_HARD_EXCEPTION; |
| 9759 | |
| 9760 | if (vcpu->arch.exception.has_error_code) { |
| 9761 | idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK; |
| 9762 | vmcs12->idt_vectoring_error_code = |
| 9763 | vcpu->arch.exception.error_code; |
| 9764 | } |
| 9765 | |
| 9766 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
Jan Kiszka | cd2633c | 2013-10-23 17:42:15 +0100 | [diff] [blame] | 9767 | } else if (vcpu->arch.nmi_injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9768 | vmcs12->idt_vectoring_info_field = |
| 9769 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR; |
| 9770 | } else if (vcpu->arch.interrupt.pending) { |
| 9771 | nr = vcpu->arch.interrupt.nr; |
| 9772 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 9773 | |
| 9774 | if (vcpu->arch.interrupt.soft) { |
| 9775 | idt_vectoring |= INTR_TYPE_SOFT_INTR; |
| 9776 | vmcs12->vm_entry_instruction_len = |
| 9777 | vcpu->arch.event_exit_inst_len; |
| 9778 | } else |
| 9779 | idt_vectoring |= INTR_TYPE_EXT_INTR; |
| 9780 | |
| 9781 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
| 9782 | } |
| 9783 | } |
| 9784 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9785 | static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr) |
| 9786 | { |
| 9787 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9788 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9789 | if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) && |
| 9790 | vmx->nested.preemption_timer_expired) { |
| 9791 | if (vmx->nested.nested_run_pending) |
| 9792 | return -EBUSY; |
| 9793 | nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0); |
| 9794 | return 0; |
| 9795 | } |
| 9796 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9797 | if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) { |
Jan Kiszka | 220c567 | 2014-03-07 20:03:14 +0100 | [diff] [blame] | 9798 | if (vmx->nested.nested_run_pending || |
| 9799 | vcpu->arch.interrupt.pending) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9800 | return -EBUSY; |
| 9801 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 9802 | NMI_VECTOR | INTR_TYPE_NMI_INTR | |
| 9803 | INTR_INFO_VALID_MASK, 0); |
| 9804 | /* |
| 9805 | * The NMI-triggered VM exit counts as injection: |
| 9806 | * clear this one and block further NMIs. |
| 9807 | */ |
| 9808 | vcpu->arch.nmi_pending = 0; |
| 9809 | vmx_set_nmi_mask(vcpu, true); |
| 9810 | return 0; |
| 9811 | } |
| 9812 | |
| 9813 | if ((kvm_cpu_has_interrupt(vcpu) || external_intr) && |
| 9814 | nested_exit_on_intr(vcpu)) { |
| 9815 | if (vmx->nested.nested_run_pending) |
| 9816 | return -EBUSY; |
| 9817 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9818 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9819 | } |
| 9820 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9821 | return vmx_complete_nested_posted_interrupt(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9822 | } |
| 9823 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9824 | static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu) |
| 9825 | { |
| 9826 | ktime_t remaining = |
| 9827 | hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer); |
| 9828 | u64 value; |
| 9829 | |
| 9830 | if (ktime_to_ns(remaining) <= 0) |
| 9831 | return 0; |
| 9832 | |
| 9833 | value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz; |
| 9834 | do_div(value, 1000000); |
| 9835 | return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 9836 | } |
| 9837 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9838 | /* |
| 9839 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 9840 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 9841 | * and this function updates it to reflect the changes to the guest state while |
| 9842 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 9843 | * without going back to L1), and to reflect the exit reason. |
| 9844 | * Note that we do not have to copy here all VMCS fields, just those that |
| 9845 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 9846 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 9847 | * which already writes to vmcs12 directly. |
| 9848 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9849 | static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 9850 | u32 exit_reason, u32 exit_intr_info, |
| 9851 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9852 | { |
| 9853 | /* update guest state fields: */ |
| 9854 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 9855 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 9856 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9857 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 9858 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 9859 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 9860 | |
| 9861 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 9862 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 9863 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 9864 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 9865 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 9866 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 9867 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 9868 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 9869 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 9870 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 9871 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 9872 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 9873 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 9874 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 9875 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 9876 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 9877 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 9878 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 9879 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 9880 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 9881 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 9882 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 9883 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 9884 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 9885 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 9886 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 9887 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 9888 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 9889 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 9890 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 9891 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 9892 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 9893 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 9894 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 9895 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 9896 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 9897 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9898 | vmcs12->guest_interruptibility_info = |
| 9899 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 9900 | vmcs12->guest_pending_dbg_exceptions = |
| 9901 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
Jan Kiszka | 3edf1e6 | 2014-01-04 18:47:24 +0100 | [diff] [blame] | 9902 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) |
| 9903 | vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT; |
| 9904 | else |
| 9905 | vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9906 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9907 | if (nested_cpu_has_preemption_timer(vmcs12)) { |
| 9908 | if (vmcs12->vm_exit_controls & |
| 9909 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) |
| 9910 | vmcs12->vmx_preemption_timer_value = |
| 9911 | vmx_get_preemption_timer_value(vcpu); |
| 9912 | hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer); |
| 9913 | } |
Arthur Chunqi Li | 7854cbc | 2013-09-16 16:11:44 +0800 | [diff] [blame] | 9914 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 9915 | /* |
| 9916 | * In some cases (usually, nested EPT), L2 is allowed to change its |
| 9917 | * own CR3 without exiting. If it has changed it, we must keep it. |
| 9918 | * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined |
| 9919 | * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12. |
| 9920 | * |
| 9921 | * Additionally, restore L2's PDPTR to vmcs12. |
| 9922 | */ |
| 9923 | if (enable_ept) { |
| 9924 | vmcs12->guest_cr3 = vmcs_read64(GUEST_CR3); |
| 9925 | vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0); |
| 9926 | vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1); |
| 9927 | vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2); |
| 9928 | vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3); |
| 9929 | } |
| 9930 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9931 | if (nested_cpu_has_vid(vmcs12)) |
| 9932 | vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS); |
| 9933 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 9934 | vmcs12->vm_entry_controls = |
| 9935 | (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 9936 | (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE); |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 9937 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9938 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) { |
| 9939 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 9940 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 9941 | } |
| 9942 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9943 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 9944 | * the relevant bit asks not to trap the change */ |
Jan Kiszka | b8c07d5 | 2013-04-06 13:51:21 +0200 | [diff] [blame] | 9945 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9946 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
Jan Kiszka | 10ba54a | 2013-08-08 16:26:31 +0200 | [diff] [blame] | 9947 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER) |
| 9948 | vmcs12->guest_ia32_efer = vcpu->arch.efer; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9949 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 9950 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 9951 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 9952 | if (vmx_mpx_supported()) |
| 9953 | vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 9954 | if (nested_cpu_has_xsaves(vmcs12)) |
| 9955 | vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9956 | |
| 9957 | /* update exit information fields: */ |
| 9958 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9959 | vmcs12->vm_exit_reason = exit_reason; |
| 9960 | vmcs12->exit_qualification = exit_qualification; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9961 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9962 | vmcs12->vm_exit_intr_info = exit_intr_info; |
Jan Kiszka | c0d1c77 | 2013-04-14 12:12:50 +0200 | [diff] [blame] | 9963 | if ((vmcs12->vm_exit_intr_info & |
| 9964 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) == |
| 9965 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) |
| 9966 | vmcs12->vm_exit_intr_error_code = |
| 9967 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9968 | vmcs12->idt_vectoring_info_field = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9969 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 9970 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 9971 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9972 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { |
| 9973 | /* vm_entry_intr_info_field is cleared on exit. Emulate this |
| 9974 | * instead of reading the real value. */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9975 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9976 | |
| 9977 | /* |
| 9978 | * Transfer the event that L0 or L1 may wanted to inject into |
| 9979 | * L2 to IDT_VECTORING_INFO_FIELD. |
| 9980 | */ |
| 9981 | vmcs12_save_pending_event(vcpu, vmcs12); |
| 9982 | } |
| 9983 | |
| 9984 | /* |
| 9985 | * Drop what we picked up for L2 via vmx_complete_interrupts. It is |
| 9986 | * preserved above and would only end up incorrectly in L1. |
| 9987 | */ |
| 9988 | vcpu->arch.nmi_injected = false; |
| 9989 | kvm_clear_exception_queue(vcpu); |
| 9990 | kvm_clear_interrupt_queue(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9991 | } |
| 9992 | |
| 9993 | /* |
| 9994 | * A part of what we need to when the nested L2 guest exits and we want to |
| 9995 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 9996 | * in vmcs12. |
| 9997 | * This function is to be called not only on normal nested exit, but also on |
| 9998 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 9999 | * Failures During or After Loading Guest State"). |
| 10000 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 10001 | */ |
Jan Kiszka | 733568f | 2013-02-23 15:07:47 +0100 | [diff] [blame] | 10002 | static void load_vmcs12_host_state(struct kvm_vcpu *vcpu, |
| 10003 | struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10004 | { |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10005 | struct kvm_segment seg; |
| 10006 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10007 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 10008 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 10009 | else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10010 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10011 | else |
| 10012 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10013 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10014 | |
| 10015 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 10016 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
H. Peter Anvin | 1adfa76 | 2013-04-27 16:10:11 -0700 | [diff] [blame] | 10017 | vmx_set_rflags(vcpu, X86_EFLAGS_FIXED); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10018 | /* |
| 10019 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
| 10020 | * actually changed, because it depends on the current state of |
| 10021 | * fpu_active (which may have changed). |
| 10022 | * Note that vmx_set_cr0 refers to efer set above. |
| 10023 | */ |
Jan Kiszka | 9e3e4db | 2013-09-03 21:11:45 +0200 | [diff] [blame] | 10024 | vmx_set_cr0(vcpu, vmcs12->host_cr0); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10025 | /* |
| 10026 | * If we did fpu_activate()/fpu_deactivate() during L2's run, we need |
| 10027 | * to apply the same changes to L1's vmcs. We just set cr0 correctly, |
| 10028 | * but we also need to update cr0_guest_host_mask and exception_bitmap. |
| 10029 | */ |
| 10030 | update_exception_bitmap(vcpu); |
| 10031 | vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0); |
| 10032 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 10033 | |
| 10034 | /* |
| 10035 | * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01 |
| 10036 | * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); |
| 10037 | */ |
| 10038 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 10039 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 10040 | |
Jan Kiszka | 29bf08f | 2013-12-28 16:31:52 +0100 | [diff] [blame] | 10041 | nested_ept_uninit_mmu_context(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10042 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10043 | kvm_set_cr3(vcpu, vmcs12->host_cr3); |
| 10044 | kvm_mmu_reset_context(vcpu); |
| 10045 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10046 | if (!enable_ept) |
| 10047 | vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault; |
| 10048 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10049 | if (enable_vpid) { |
| 10050 | /* |
| 10051 | * Trivially support vpid by letting L2s share their parent |
| 10052 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 10053 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 10054 | */ |
| 10055 | vmx_flush_tlb(vcpu); |
| 10056 | } |
| 10057 | |
| 10058 | |
| 10059 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 10060 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 10061 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 10062 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 10063 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10064 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10065 | /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */ |
| 10066 | if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS) |
| 10067 | vmcs_write64(GUEST_BNDCFGS, 0); |
| 10068 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10069 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10070 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10071 | vcpu->arch.pat = vmcs12->host_ia32_pat; |
| 10072 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10073 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 10074 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 10075 | vmcs12->host_ia32_perf_global_ctrl); |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10076 | |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10077 | /* Set L1 segment info according to Intel SDM |
| 10078 | 27.5.2 Loading Host Segment and Descriptor-Table Registers */ |
| 10079 | seg = (struct kvm_segment) { |
| 10080 | .base = 0, |
| 10081 | .limit = 0xFFFFFFFF, |
| 10082 | .selector = vmcs12->host_cs_selector, |
| 10083 | .type = 11, |
| 10084 | .present = 1, |
| 10085 | .s = 1, |
| 10086 | .g = 1 |
| 10087 | }; |
| 10088 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 10089 | seg.l = 1; |
| 10090 | else |
| 10091 | seg.db = 1; |
| 10092 | vmx_set_segment(vcpu, &seg, VCPU_SREG_CS); |
| 10093 | seg = (struct kvm_segment) { |
| 10094 | .base = 0, |
| 10095 | .limit = 0xFFFFFFFF, |
| 10096 | .type = 3, |
| 10097 | .present = 1, |
| 10098 | .s = 1, |
| 10099 | .db = 1, |
| 10100 | .g = 1 |
| 10101 | }; |
| 10102 | seg.selector = vmcs12->host_ds_selector; |
| 10103 | vmx_set_segment(vcpu, &seg, VCPU_SREG_DS); |
| 10104 | seg.selector = vmcs12->host_es_selector; |
| 10105 | vmx_set_segment(vcpu, &seg, VCPU_SREG_ES); |
| 10106 | seg.selector = vmcs12->host_ss_selector; |
| 10107 | vmx_set_segment(vcpu, &seg, VCPU_SREG_SS); |
| 10108 | seg.selector = vmcs12->host_fs_selector; |
| 10109 | seg.base = vmcs12->host_fs_base; |
| 10110 | vmx_set_segment(vcpu, &seg, VCPU_SREG_FS); |
| 10111 | seg.selector = vmcs12->host_gs_selector; |
| 10112 | seg.base = vmcs12->host_gs_base; |
| 10113 | vmx_set_segment(vcpu, &seg, VCPU_SREG_GS); |
| 10114 | seg = (struct kvm_segment) { |
Gleb Natapov | 205befd | 2013-08-04 15:08:06 +0300 | [diff] [blame] | 10115 | .base = vmcs12->host_tr_base, |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10116 | .limit = 0x67, |
| 10117 | .selector = vmcs12->host_tr_selector, |
| 10118 | .type = 11, |
| 10119 | .present = 1 |
| 10120 | }; |
| 10121 | vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); |
| 10122 | |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10123 | kvm_set_dr(vcpu, 7, 0x400); |
| 10124 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10125 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10126 | if (cpu_has_vmx_msr_bitmap()) |
| 10127 | vmx_set_msr_bitmap(vcpu); |
| 10128 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10129 | if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr, |
| 10130 | vmcs12->vm_exit_msr_load_count)) |
| 10131 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10132 | } |
| 10133 | |
| 10134 | /* |
| 10135 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 10136 | * and modify vmcs12 to make it see what it would expect to see there if |
| 10137 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 10138 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10139 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 10140 | u32 exit_intr_info, |
| 10141 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10142 | { |
| 10143 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10144 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 10145 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10146 | /* trying to cancel vmlaunch/vmresume is a bug */ |
| 10147 | WARN_ON_ONCE(vmx->nested.nested_run_pending); |
| 10148 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10149 | leave_guest_mode(vcpu); |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10150 | prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info, |
| 10151 | exit_qualification); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10152 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10153 | if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr, |
| 10154 | vmcs12->vm_exit_msr_store_count)) |
| 10155 | nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); |
| 10156 | |
Wanpeng Li | f3380ca | 2014-08-05 12:42:23 +0800 | [diff] [blame] | 10157 | vmx_load_vmcs01(vcpu); |
| 10158 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 10159 | if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT) |
| 10160 | && nested_exit_intr_ack_set(vcpu)) { |
| 10161 | int irq = kvm_cpu_get_interrupt(vcpu); |
| 10162 | WARN_ON(irq < 0); |
| 10163 | vmcs12->vm_exit_intr_info = irq | |
| 10164 | INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR; |
| 10165 | } |
| 10166 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 10167 | trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason, |
| 10168 | vmcs12->exit_qualification, |
| 10169 | vmcs12->idt_vectoring_info_field, |
| 10170 | vmcs12->vm_exit_intr_info, |
| 10171 | vmcs12->vm_exit_intr_error_code, |
| 10172 | KVM_ISA_VMX); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10173 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10174 | vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS)); |
| 10175 | vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS)); |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 10176 | vmx_segment_cache_clear(vmx); |
| 10177 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10178 | /* if no vmcs02 cache requested, remove the one we used */ |
| 10179 | if (VMCS02_POOL_SIZE == 0) |
| 10180 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 10181 | |
| 10182 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10183 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10184 | /* Update TSC_OFFSET if TSC was changed while L2 ran */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10185 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
| 10186 | |
| 10187 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 10188 | vmx->host_rsp = 0; |
| 10189 | |
| 10190 | /* Unpin physical memory we referred to in vmcs02 */ |
| 10191 | if (vmx->nested.apic_access_page) { |
| 10192 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10193 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10194 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10195 | if (vmx->nested.virtual_apic_page) { |
| 10196 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10197 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10198 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10199 | if (vmx->nested.pi_desc_page) { |
| 10200 | kunmap(vmx->nested.pi_desc_page); |
| 10201 | nested_release_page(vmx->nested.pi_desc_page); |
| 10202 | vmx->nested.pi_desc_page = NULL; |
| 10203 | vmx->nested.pi_desc = NULL; |
| 10204 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10205 | |
| 10206 | /* |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10207 | * We are now running in L2, mmu_notifier will force to reload the |
| 10208 | * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1. |
| 10209 | */ |
| 10210 | kvm_vcpu_reload_apic_access_page(vcpu); |
| 10211 | |
| 10212 | /* |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10213 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 10214 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 10215 | * success or failure flag accordingly. |
| 10216 | */ |
| 10217 | if (unlikely(vmx->fail)) { |
| 10218 | vmx->fail = 0; |
| 10219 | nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 10220 | } else |
| 10221 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10222 | if (enable_shadow_vmcs) |
| 10223 | vmx->nested.sync_shadow_vmcs = true; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10224 | |
| 10225 | /* in case we halted in L2 */ |
| 10226 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10227 | } |
| 10228 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10229 | /* |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10230 | * Forcibly leave nested mode in order to be able to reset the VCPU later on. |
| 10231 | */ |
| 10232 | static void vmx_leave_nested(struct kvm_vcpu *vcpu) |
| 10233 | { |
| 10234 | if (is_guest_mode(vcpu)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10235 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10236 | free_nested(to_vmx(vcpu)); |
| 10237 | } |
| 10238 | |
| 10239 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10240 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 10241 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 10242 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 10243 | * It should only be called before L2 actually succeeded to run, and when |
| 10244 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 10245 | */ |
| 10246 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 10247 | struct vmcs12 *vmcs12, |
| 10248 | u32 reason, unsigned long qualification) |
| 10249 | { |
| 10250 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10251 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 10252 | vmcs12->exit_qualification = qualification; |
| 10253 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10254 | if (enable_shadow_vmcs) |
| 10255 | to_vmx(vcpu)->nested.sync_shadow_vmcs = true; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10256 | } |
| 10257 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10258 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 10259 | struct x86_instruction_info *info, |
| 10260 | enum x86_intercept_stage stage) |
| 10261 | { |
| 10262 | return X86EMUL_CONTINUE; |
| 10263 | } |
| 10264 | |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10265 | static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu) |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10266 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 10267 | if (ple_gap) |
| 10268 | shrink_ple_window(vcpu); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10269 | } |
| 10270 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10271 | static void vmx_slot_enable_log_dirty(struct kvm *kvm, |
| 10272 | struct kvm_memory_slot *slot) |
| 10273 | { |
| 10274 | kvm_mmu_slot_leaf_clear_dirty(kvm, slot); |
| 10275 | kvm_mmu_slot_largepage_remove_write_access(kvm, slot); |
| 10276 | } |
| 10277 | |
| 10278 | static void vmx_slot_disable_log_dirty(struct kvm *kvm, |
| 10279 | struct kvm_memory_slot *slot) |
| 10280 | { |
| 10281 | kvm_mmu_slot_set_dirty(kvm, slot); |
| 10282 | } |
| 10283 | |
| 10284 | static void vmx_flush_log_dirty(struct kvm *kvm) |
| 10285 | { |
| 10286 | kvm_flush_pml_buffers(kvm); |
| 10287 | } |
| 10288 | |
| 10289 | static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 10290 | struct kvm_memory_slot *memslot, |
| 10291 | gfn_t offset, unsigned long mask) |
| 10292 | { |
| 10293 | kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask); |
| 10294 | } |
| 10295 | |
Christian Ehrhardt | cbdd1be | 2007-09-09 15:41:59 +0300 | [diff] [blame] | 10296 | static struct kvm_x86_ops vmx_x86_ops = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10297 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 10298 | .disabled_by_bios = vmx_disabled_by_bios, |
| 10299 | .hardware_setup = hardware_setup, |
| 10300 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 10301 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10302 | .hardware_enable = hardware_enable, |
| 10303 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 10304 | .cpu_has_accelerated_tpr = report_flexpriority, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10305 | |
| 10306 | .vcpu_create = vmx_create_vcpu, |
| 10307 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10308 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10309 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10310 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10311 | .vcpu_load = vmx_vcpu_load, |
| 10312 | .vcpu_put = vmx_vcpu_put, |
| 10313 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 10314 | .update_db_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10315 | .get_msr = vmx_get_msr, |
| 10316 | .set_msr = vmx_set_msr, |
| 10317 | .get_segment_base = vmx_get_segment_base, |
| 10318 | .get_segment = vmx_get_segment, |
| 10319 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 10320 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10321 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 10322 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 10323 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 10324 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10325 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10326 | .set_cr3 = vmx_set_cr3, |
| 10327 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10328 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10329 | .get_idt = vmx_get_idt, |
| 10330 | .set_idt = vmx_set_idt, |
| 10331 | .get_gdt = vmx_get_gdt, |
| 10332 | .set_gdt = vmx_set_gdt, |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 10333 | .get_dr6 = vmx_get_dr6, |
| 10334 | .set_dr6 = vmx_set_dr6, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 10335 | .set_dr7 = vmx_set_dr7, |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 10336 | .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 10337 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10338 | .get_rflags = vmx_get_rflags, |
| 10339 | .set_rflags = vmx_set_rflags, |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 10340 | .fpu_deactivate = vmx_fpu_deactivate, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10341 | |
| 10342 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10343 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10344 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 10345 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10346 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 10347 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 10348 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 10349 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 10350 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10351 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 10352 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 10353 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 10354 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10355 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 10356 | .get_nmi_mask = vmx_get_nmi_mask, |
| 10357 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10358 | .enable_nmi_window = enable_nmi_window, |
| 10359 | .enable_irq_window = enable_irq_window, |
| 10360 | .update_cr8_intercept = update_cr8_intercept, |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 10361 | .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode, |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10362 | .set_apic_access_page_addr = vmx_set_apic_access_page_addr, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 10363 | .vm_has_apicv = vmx_vm_has_apicv, |
| 10364 | .load_eoi_exitmap = vmx_load_eoi_exitmap, |
| 10365 | .hwapic_irr_update = vmx_hwapic_irr_update, |
| 10366 | .hwapic_isr_update = vmx_hwapic_isr_update, |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 10367 | .sync_pir_to_irr = vmx_sync_pir_to_irr, |
| 10368 | .deliver_posted_interrupt = vmx_deliver_posted_interrupt, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10369 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 10370 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 10371 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 10372 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10373 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10374 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10375 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 10376 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 10377 | |
| 10378 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 10379 | |
| 10380 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 10381 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 10382 | |
| 10383 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 10384 | |
| 10385 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10386 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 10387 | .set_tsc_khz = vmx_set_tsc_khz, |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 10388 | .read_tsc_offset = vmx_read_tsc_offset, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10389 | .write_tsc_offset = vmx_write_tsc_offset, |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 10390 | .adjust_tsc_offset = vmx_adjust_tsc_offset, |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 10391 | .compute_tsc_offset = vmx_compute_tsc_offset, |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 10392 | .read_l1_tsc = vmx_read_l1_tsc, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 10393 | |
| 10394 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10395 | |
| 10396 | .check_intercept = vmx_check_intercept, |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 10397 | .handle_external_intr = vmx_handle_external_intr, |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 10398 | .mpx_supported = vmx_mpx_supported, |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 10399 | .xsaves_supported = vmx_xsaves_supported, |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10400 | |
| 10401 | .check_nested_events = vmx_check_nested_events, |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10402 | |
| 10403 | .sched_in = vmx_sched_in, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10404 | |
| 10405 | .slot_enable_log_dirty = vmx_slot_enable_log_dirty, |
| 10406 | .slot_disable_log_dirty = vmx_slot_disable_log_dirty, |
| 10407 | .flush_log_dirty = vmx_flush_log_dirty, |
| 10408 | .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10409 | }; |
| 10410 | |
| 10411 | static int __init vmx_init(void) |
| 10412 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10413 | int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 10414 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10415 | if (r) |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10416 | return r; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 10417 | |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10418 | #ifdef CONFIG_KEXEC |
| 10419 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 10420 | crash_vmclear_local_loaded_vmcss); |
| 10421 | #endif |
| 10422 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10423 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10424 | } |
| 10425 | |
| 10426 | static void __exit vmx_exit(void) |
| 10427 | { |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10428 | #ifdef CONFIG_KEXEC |
Monam Agarwal | 3b63a43 | 2014-03-22 12:28:10 +0530 | [diff] [blame] | 10429 | RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10430 | synchronize_rcu(); |
| 10431 | #endif |
| 10432 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 10433 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10434 | } |
| 10435 | |
| 10436 | module_init(vmx_init) |
| 10437 | module_exit(vmx_exit) |