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" |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 22 | #include "lapic.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 23 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 24 | #include <linux/kvm_host.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 25 | #include <linux/module.h> |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 26 | #include <linux/kernel.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 27 | #include <linux/mm.h> |
| 28 | #include <linux/highmem.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 29 | #include <linux/sched.h> |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 30 | #include <linux/moduleparam.h> |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 31 | #include <linux/mod_devicetable.h> |
Steven Rostedt (Red Hat) | af658dc | 2015-04-29 14:36:05 -0400 | [diff] [blame] | 32 | #include <linux/trace_events.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 34 | #include <linux/tboot.h> |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 35 | #include <linux/hrtimer.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 36 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 37 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 38 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 39 | #include <asm/cpu.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 40 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 41 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 42 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 43 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 44 | #include <asm/mce.h> |
Ingo Molnar | 952f07e | 2015-04-26 16:56:05 +0200 | [diff] [blame] | 45 | #include <asm/fpu/internal.h> |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 46 | #include <asm/perf_event.h> |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 47 | #include <asm/debugreg.h> |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 48 | #include <asm/kexec.h> |
Radim Krčmář | dab2087 | 2015-02-09 22:44:07 +0100 | [diff] [blame] | 49 | #include <asm/apic.h> |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 50 | #include <asm/irq_remapping.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 51 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 52 | #include "trace.h" |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 53 | #include "pmu.h" |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 54 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 55 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 56 | #define __ex_clear(x, reg) \ |
| 57 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 58 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 59 | MODULE_AUTHOR("Qumranet"); |
| 60 | MODULE_LICENSE("GPL"); |
| 61 | |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 62 | static const struct x86_cpu_id vmx_cpu_id[] = { |
| 63 | X86_FEATURE_MATCH(X86_FEATURE_VMX), |
| 64 | {} |
| 65 | }; |
| 66 | MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id); |
| 67 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 68 | static bool __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 69 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 70 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 71 | static bool __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 72 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 73 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 74 | static bool __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 75 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 76 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 77 | static bool __read_mostly enable_unrestricted_guest = 1; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 78 | module_param_named(unrestricted_guest, |
| 79 | enable_unrestricted_guest, bool, S_IRUGO); |
| 80 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 81 | static bool __read_mostly enable_ept_ad_bits = 1; |
| 82 | module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO); |
| 83 | |
Avi Kivity | a27685c | 2012-06-12 20:30:18 +0300 | [diff] [blame] | 84 | static bool __read_mostly emulate_invalid_guest_state = true; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 85 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 86 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 87 | static bool __read_mostly vmm_exclusive = 1; |
Dongxiao Xu | b923e62 | 2010-05-11 18:29:45 +0800 | [diff] [blame] | 88 | module_param(vmm_exclusive, bool, S_IRUGO); |
| 89 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 90 | static bool __read_mostly fasteoi = 1; |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 91 | module_param(fasteoi, bool, S_IRUGO); |
| 92 | |
Yang Zhang | 5a71785 | 2013-04-11 19:25:16 +0800 | [diff] [blame] | 93 | static bool __read_mostly enable_apicv = 1; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 94 | module_param(enable_apicv, bool, S_IRUGO); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 95 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 96 | static bool __read_mostly enable_shadow_vmcs = 1; |
| 97 | 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] | 98 | /* |
| 99 | * If nested=1, nested virtualization is supported, i.e., guests may use |
| 100 | * VMX and be a hypervisor for its own guests. If nested=0, guests may not |
| 101 | * use VMX instructions. |
| 102 | */ |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 103 | static bool __read_mostly nested = 0; |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 104 | module_param(nested, bool, S_IRUGO); |
| 105 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 106 | static u64 __read_mostly host_xss; |
| 107 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 108 | static bool __read_mostly enable_pml = 1; |
| 109 | module_param_named(pml, enable_pml, bool, S_IRUGO); |
| 110 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 111 | #define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL |
| 112 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 113 | /* Guest_tsc -> host_tsc conversion requires 64-bit division. */ |
| 114 | static int __read_mostly cpu_preemption_timer_multi; |
| 115 | static bool __read_mostly enable_preemption_timer = 1; |
| 116 | #ifdef CONFIG_X86_64 |
| 117 | module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO); |
| 118 | #endif |
| 119 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 120 | #define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD) |
| 121 | #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] | 122 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 123 | (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] | 124 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 125 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
Andy Lutomirski | 52ce3c2 | 2014-10-07 17:16:21 -0700 | [diff] [blame] | 126 | | X86_CR4_OSXMMEXCPT | X86_CR4_TSD) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 127 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 128 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 129 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 130 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 131 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 132 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 133 | #define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5 |
| 134 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 135 | /* |
Jan Dakinevich | 16c2aec | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 136 | * Hyper-V requires all of these, so mark them as supported even though |
| 137 | * they are just treated the same as all-context. |
| 138 | */ |
| 139 | #define VMX_VPID_EXTENT_SUPPORTED_MASK \ |
| 140 | (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \ |
| 141 | VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \ |
| 142 | VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \ |
| 143 | VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT) |
| 144 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 145 | /* |
| 146 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 147 | * ple_gap: upper bound on the amount of time between two successive |
| 148 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 149 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 150 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 151 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 152 | * less than 2^12 cycles |
| 153 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 154 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 155 | */ |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 156 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
| 157 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 158 | #define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2 |
| 159 | #define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0 |
| 160 | #define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \ |
| 161 | INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW |
| 162 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 163 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 164 | module_param(ple_gap, int, S_IRUGO); |
| 165 | |
| 166 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 167 | module_param(ple_window, int, S_IRUGO); |
| 168 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 169 | /* Default doubles per-vcpu window every exit. */ |
| 170 | static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW; |
| 171 | module_param(ple_window_grow, int, S_IRUGO); |
| 172 | |
| 173 | /* Default resets per-vcpu window every exit to ple_window. */ |
| 174 | static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK; |
| 175 | module_param(ple_window_shrink, int, S_IRUGO); |
| 176 | |
| 177 | /* Default is to compute the maximum so we can never overflow. */ |
| 178 | static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 179 | static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 180 | module_param(ple_window_max, int, S_IRUGO); |
| 181 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 182 | extern const ulong vmx_return; |
| 183 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 184 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 185 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 186 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 187 | struct vmcs { |
| 188 | u32 revision_id; |
| 189 | u32 abort; |
| 190 | char data[0]; |
| 191 | }; |
| 192 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 193 | /* |
| 194 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 195 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 196 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 197 | */ |
| 198 | struct loaded_vmcs { |
| 199 | struct vmcs *vmcs; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 200 | struct vmcs *shadow_vmcs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 201 | int cpu; |
| 202 | int launched; |
| 203 | struct list_head loaded_vmcss_on_cpu_link; |
| 204 | }; |
| 205 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 206 | struct shared_msr_entry { |
| 207 | unsigned index; |
| 208 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 209 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 210 | }; |
| 211 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 212 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 213 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 214 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 215 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 216 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 217 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 218 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 219 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 220 | * underlying hardware which will be used to run L2. |
| 221 | * This structure is packed to ensure that its layout is identical across |
| 222 | * machines (necessary for live migration). |
| 223 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 224 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 225 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 226 | struct __packed vmcs12 { |
| 227 | /* According to the Intel spec, a VMCS region must start with the |
| 228 | * following two fields. Then follow implementation-specific data. |
| 229 | */ |
| 230 | u32 revision_id; |
| 231 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 232 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 233 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 234 | u32 padding[7]; /* room for future expansion */ |
| 235 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 236 | u64 io_bitmap_a; |
| 237 | u64 io_bitmap_b; |
| 238 | u64 msr_bitmap; |
| 239 | u64 vm_exit_msr_store_addr; |
| 240 | u64 vm_exit_msr_load_addr; |
| 241 | u64 vm_entry_msr_load_addr; |
| 242 | u64 tsc_offset; |
| 243 | u64 virtual_apic_page_addr; |
| 244 | u64 apic_access_addr; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 245 | u64 posted_intr_desc_addr; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 246 | u64 ept_pointer; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 247 | u64 eoi_exit_bitmap0; |
| 248 | u64 eoi_exit_bitmap1; |
| 249 | u64 eoi_exit_bitmap2; |
| 250 | u64 eoi_exit_bitmap3; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 251 | u64 xss_exit_bitmap; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 252 | u64 guest_physical_address; |
| 253 | u64 vmcs_link_pointer; |
| 254 | u64 guest_ia32_debugctl; |
| 255 | u64 guest_ia32_pat; |
| 256 | u64 guest_ia32_efer; |
| 257 | u64 guest_ia32_perf_global_ctrl; |
| 258 | u64 guest_pdptr0; |
| 259 | u64 guest_pdptr1; |
| 260 | u64 guest_pdptr2; |
| 261 | u64 guest_pdptr3; |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 262 | u64 guest_bndcfgs; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 263 | u64 host_ia32_pat; |
| 264 | u64 host_ia32_efer; |
| 265 | u64 host_ia32_perf_global_ctrl; |
| 266 | u64 padding64[8]; /* room for future expansion */ |
| 267 | /* |
| 268 | * To allow migration of L1 (complete with its L2 guests) between |
| 269 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 270 | * unsigned long fields with no explict size. We use u64 (aliased |
| 271 | * natural_width) instead. Luckily, x86 is little-endian. |
| 272 | */ |
| 273 | natural_width cr0_guest_host_mask; |
| 274 | natural_width cr4_guest_host_mask; |
| 275 | natural_width cr0_read_shadow; |
| 276 | natural_width cr4_read_shadow; |
| 277 | natural_width cr3_target_value0; |
| 278 | natural_width cr3_target_value1; |
| 279 | natural_width cr3_target_value2; |
| 280 | natural_width cr3_target_value3; |
| 281 | natural_width exit_qualification; |
| 282 | natural_width guest_linear_address; |
| 283 | natural_width guest_cr0; |
| 284 | natural_width guest_cr3; |
| 285 | natural_width guest_cr4; |
| 286 | natural_width guest_es_base; |
| 287 | natural_width guest_cs_base; |
| 288 | natural_width guest_ss_base; |
| 289 | natural_width guest_ds_base; |
| 290 | natural_width guest_fs_base; |
| 291 | natural_width guest_gs_base; |
| 292 | natural_width guest_ldtr_base; |
| 293 | natural_width guest_tr_base; |
| 294 | natural_width guest_gdtr_base; |
| 295 | natural_width guest_idtr_base; |
| 296 | natural_width guest_dr7; |
| 297 | natural_width guest_rsp; |
| 298 | natural_width guest_rip; |
| 299 | natural_width guest_rflags; |
| 300 | natural_width guest_pending_dbg_exceptions; |
| 301 | natural_width guest_sysenter_esp; |
| 302 | natural_width guest_sysenter_eip; |
| 303 | natural_width host_cr0; |
| 304 | natural_width host_cr3; |
| 305 | natural_width host_cr4; |
| 306 | natural_width host_fs_base; |
| 307 | natural_width host_gs_base; |
| 308 | natural_width host_tr_base; |
| 309 | natural_width host_gdtr_base; |
| 310 | natural_width host_idtr_base; |
| 311 | natural_width host_ia32_sysenter_esp; |
| 312 | natural_width host_ia32_sysenter_eip; |
| 313 | natural_width host_rsp; |
| 314 | natural_width host_rip; |
| 315 | natural_width paddingl[8]; /* room for future expansion */ |
| 316 | u32 pin_based_vm_exec_control; |
| 317 | u32 cpu_based_vm_exec_control; |
| 318 | u32 exception_bitmap; |
| 319 | u32 page_fault_error_code_mask; |
| 320 | u32 page_fault_error_code_match; |
| 321 | u32 cr3_target_count; |
| 322 | u32 vm_exit_controls; |
| 323 | u32 vm_exit_msr_store_count; |
| 324 | u32 vm_exit_msr_load_count; |
| 325 | u32 vm_entry_controls; |
| 326 | u32 vm_entry_msr_load_count; |
| 327 | u32 vm_entry_intr_info_field; |
| 328 | u32 vm_entry_exception_error_code; |
| 329 | u32 vm_entry_instruction_len; |
| 330 | u32 tpr_threshold; |
| 331 | u32 secondary_vm_exec_control; |
| 332 | u32 vm_instruction_error; |
| 333 | u32 vm_exit_reason; |
| 334 | u32 vm_exit_intr_info; |
| 335 | u32 vm_exit_intr_error_code; |
| 336 | u32 idt_vectoring_info_field; |
| 337 | u32 idt_vectoring_error_code; |
| 338 | u32 vm_exit_instruction_len; |
| 339 | u32 vmx_instruction_info; |
| 340 | u32 guest_es_limit; |
| 341 | u32 guest_cs_limit; |
| 342 | u32 guest_ss_limit; |
| 343 | u32 guest_ds_limit; |
| 344 | u32 guest_fs_limit; |
| 345 | u32 guest_gs_limit; |
| 346 | u32 guest_ldtr_limit; |
| 347 | u32 guest_tr_limit; |
| 348 | u32 guest_gdtr_limit; |
| 349 | u32 guest_idtr_limit; |
| 350 | u32 guest_es_ar_bytes; |
| 351 | u32 guest_cs_ar_bytes; |
| 352 | u32 guest_ss_ar_bytes; |
| 353 | u32 guest_ds_ar_bytes; |
| 354 | u32 guest_fs_ar_bytes; |
| 355 | u32 guest_gs_ar_bytes; |
| 356 | u32 guest_ldtr_ar_bytes; |
| 357 | u32 guest_tr_ar_bytes; |
| 358 | u32 guest_interruptibility_info; |
| 359 | u32 guest_activity_state; |
| 360 | u32 guest_sysenter_cs; |
| 361 | u32 host_ia32_sysenter_cs; |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 362 | u32 vmx_preemption_timer_value; |
| 363 | u32 padding32[7]; /* room for future expansion */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 364 | u16 virtual_processor_id; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 365 | u16 posted_intr_nv; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 366 | u16 guest_es_selector; |
| 367 | u16 guest_cs_selector; |
| 368 | u16 guest_ss_selector; |
| 369 | u16 guest_ds_selector; |
| 370 | u16 guest_fs_selector; |
| 371 | u16 guest_gs_selector; |
| 372 | u16 guest_ldtr_selector; |
| 373 | u16 guest_tr_selector; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 374 | u16 guest_intr_status; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 375 | u16 host_es_selector; |
| 376 | u16 host_cs_selector; |
| 377 | u16 host_ss_selector; |
| 378 | u16 host_ds_selector; |
| 379 | u16 host_fs_selector; |
| 380 | u16 host_gs_selector; |
| 381 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 382 | }; |
| 383 | |
| 384 | /* |
| 385 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 386 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 387 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 388 | */ |
| 389 | #define VMCS12_REVISION 0x11e57ed0 |
| 390 | |
| 391 | /* |
| 392 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 393 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 394 | * current implementation, 4K are reserved to avoid future complications. |
| 395 | */ |
| 396 | #define VMCS12_SIZE 0x1000 |
| 397 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 398 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 399 | struct vmcs02_list { |
| 400 | struct list_head list; |
| 401 | gpa_t vmptr; |
| 402 | struct loaded_vmcs vmcs02; |
| 403 | }; |
| 404 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 405 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 406 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 407 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 408 | */ |
| 409 | struct nested_vmx { |
| 410 | /* Has the level1 guest done vmxon? */ |
| 411 | bool vmxon; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 412 | gpa_t vmxon_ptr; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 413 | |
| 414 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 415 | gpa_t current_vmptr; |
| 416 | /* The host-usable pointer to the above */ |
| 417 | struct page *current_vmcs12_page; |
| 418 | struct vmcs12 *current_vmcs12; |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 419 | /* |
| 420 | * Cache of the guest's VMCS, existing outside of guest memory. |
| 421 | * Loaded from guest memory during VMPTRLD. Flushed to guest |
| 422 | * memory during VMXOFF, VMCLEAR, VMPTRLD. |
| 423 | */ |
| 424 | struct vmcs12 *cached_vmcs12; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 425 | /* |
| 426 | * Indicates if the shadow vmcs must be updated with the |
| 427 | * data hold by vmcs12 |
| 428 | */ |
| 429 | bool sync_shadow_vmcs; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 430 | |
| 431 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 432 | struct list_head vmcs02_pool; |
| 433 | int vmcs02_num; |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 434 | bool change_vmcs01_virtual_x2apic_mode; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 435 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 436 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 437 | /* |
| 438 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 439 | * we must keep them pinned while L2 runs. |
| 440 | */ |
| 441 | struct page *apic_access_page; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 442 | struct page *virtual_apic_page; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 443 | struct page *pi_desc_page; |
| 444 | struct pi_desc *pi_desc; |
| 445 | bool pi_pending; |
| 446 | u16 posted_intr_nv; |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 447 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 448 | unsigned long *msr_bitmap; |
| 449 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 450 | struct hrtimer preemption_timer; |
| 451 | bool preemption_timer_expired; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 452 | |
| 453 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 454 | u64 vmcs01_debugctl; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 455 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 456 | u16 vpid02; |
| 457 | u16 last_vpid; |
| 458 | |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 459 | /* |
| 460 | * We only store the "true" versions of the VMX capability MSRs. We |
| 461 | * generate the "non-true" versions by setting the must-be-1 bits |
| 462 | * according to the SDM. |
| 463 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 464 | u32 nested_vmx_procbased_ctls_low; |
| 465 | u32 nested_vmx_procbased_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 466 | u32 nested_vmx_secondary_ctls_low; |
| 467 | u32 nested_vmx_secondary_ctls_high; |
| 468 | u32 nested_vmx_pinbased_ctls_low; |
| 469 | u32 nested_vmx_pinbased_ctls_high; |
| 470 | u32 nested_vmx_exit_ctls_low; |
| 471 | u32 nested_vmx_exit_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 472 | u32 nested_vmx_entry_ctls_low; |
| 473 | u32 nested_vmx_entry_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 474 | u32 nested_vmx_misc_low; |
| 475 | u32 nested_vmx_misc_high; |
| 476 | u32 nested_vmx_ept_caps; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 477 | u32 nested_vmx_vpid_caps; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 478 | u64 nested_vmx_basic; |
| 479 | u64 nested_vmx_cr0_fixed0; |
| 480 | u64 nested_vmx_cr0_fixed1; |
| 481 | u64 nested_vmx_cr4_fixed0; |
| 482 | u64 nested_vmx_cr4_fixed1; |
| 483 | u64 nested_vmx_vmcs_enum; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 484 | }; |
| 485 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 486 | #define POSTED_INTR_ON 0 |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 487 | #define POSTED_INTR_SN 1 |
| 488 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 489 | /* Posted-Interrupt Descriptor */ |
| 490 | struct pi_desc { |
| 491 | u32 pir[8]; /* Posted interrupt requested */ |
Feng Wu | 6ef1522 | 2015-09-18 22:29:45 +0800 | [diff] [blame] | 492 | union { |
| 493 | struct { |
| 494 | /* bit 256 - Outstanding Notification */ |
| 495 | u16 on : 1, |
| 496 | /* bit 257 - Suppress Notification */ |
| 497 | sn : 1, |
| 498 | /* bit 271:258 - Reserved */ |
| 499 | rsvd_1 : 14; |
| 500 | /* bit 279:272 - Notification Vector */ |
| 501 | u8 nv; |
| 502 | /* bit 287:280 - Reserved */ |
| 503 | u8 rsvd_2; |
| 504 | /* bit 319:288 - Notification Destination */ |
| 505 | u32 ndst; |
| 506 | }; |
| 507 | u64 control; |
| 508 | }; |
| 509 | u32 rsvd[6]; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 510 | } __aligned(64); |
| 511 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 512 | static bool pi_test_and_set_on(struct pi_desc *pi_desc) |
| 513 | { |
| 514 | return test_and_set_bit(POSTED_INTR_ON, |
| 515 | (unsigned long *)&pi_desc->control); |
| 516 | } |
| 517 | |
| 518 | static bool pi_test_and_clear_on(struct pi_desc *pi_desc) |
| 519 | { |
| 520 | return test_and_clear_bit(POSTED_INTR_ON, |
| 521 | (unsigned long *)&pi_desc->control); |
| 522 | } |
| 523 | |
| 524 | static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc) |
| 525 | { |
| 526 | return test_and_set_bit(vector, (unsigned long *)pi_desc->pir); |
| 527 | } |
| 528 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 529 | static inline void pi_clear_sn(struct pi_desc *pi_desc) |
| 530 | { |
| 531 | return clear_bit(POSTED_INTR_SN, |
| 532 | (unsigned long *)&pi_desc->control); |
| 533 | } |
| 534 | |
| 535 | static inline void pi_set_sn(struct pi_desc *pi_desc) |
| 536 | { |
| 537 | return set_bit(POSTED_INTR_SN, |
| 538 | (unsigned long *)&pi_desc->control); |
| 539 | } |
| 540 | |
Paolo Bonzini | ad36109 | 2016-09-20 16:15:05 +0200 | [diff] [blame] | 541 | static inline void pi_clear_on(struct pi_desc *pi_desc) |
| 542 | { |
| 543 | clear_bit(POSTED_INTR_ON, |
| 544 | (unsigned long *)&pi_desc->control); |
| 545 | } |
| 546 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 547 | static inline int pi_test_on(struct pi_desc *pi_desc) |
| 548 | { |
| 549 | return test_bit(POSTED_INTR_ON, |
| 550 | (unsigned long *)&pi_desc->control); |
| 551 | } |
| 552 | |
| 553 | static inline int pi_test_sn(struct pi_desc *pi_desc) |
| 554 | { |
| 555 | return test_bit(POSTED_INTR_SN, |
| 556 | (unsigned long *)&pi_desc->control); |
| 557 | } |
| 558 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 559 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 560 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 561 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 562 | u8 fail; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 563 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 564 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 565 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 566 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 567 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 568 | int nmsrs; |
| 569 | int save_nmsrs; |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 570 | unsigned long host_idt_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 571 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 572 | u64 msr_host_kernel_gs_base; |
| 573 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 574 | #endif |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 575 | u32 vm_entry_controls_shadow; |
| 576 | u32 vm_exit_controls_shadow; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 577 | /* |
| 578 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 579 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 580 | * guest (L2), it points to a different VMCS. |
| 581 | */ |
| 582 | struct loaded_vmcs vmcs01; |
| 583 | struct loaded_vmcs *loaded_vmcs; |
| 584 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 585 | struct msr_autoload { |
| 586 | unsigned nr; |
| 587 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 588 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 589 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 590 | struct { |
| 591 | int loaded; |
| 592 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 593 | #ifdef CONFIG_X86_64 |
| 594 | u16 ds_sel, es_sel; |
| 595 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 596 | int gs_ldt_reload_needed; |
| 597 | int fs_reload_needed; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 598 | u64 msr_host_bndcfgs; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 599 | unsigned long vmcs_host_cr4; /* May not match real cr4 */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 600 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 601 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 602 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 603 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 604 | struct kvm_segment segs[8]; |
| 605 | } rmode; |
| 606 | struct { |
| 607 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 608 | struct kvm_save_segment { |
| 609 | u16 selector; |
| 610 | unsigned long base; |
| 611 | u32 limit; |
| 612 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 613 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 614 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 615 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 616 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 617 | |
| 618 | /* Support for vnmi-less CPUs */ |
| 619 | int soft_vnmi_blocked; |
| 620 | ktime_t entry_time; |
| 621 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 622 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 623 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 624 | /* Posted interrupt descriptor */ |
| 625 | struct pi_desc pi_desc; |
| 626 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 627 | /* Support for a guest hypervisor (nested VMX) */ |
| 628 | struct nested_vmx nested; |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 629 | |
| 630 | /* Dynamic PLE window. */ |
| 631 | int ple_window; |
| 632 | bool ple_window_dirty; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 633 | |
| 634 | /* Support for PML */ |
| 635 | #define PML_ENTITY_NUM 512 |
| 636 | struct page *pml_pg; |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 637 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 638 | /* apic deadline value in host tsc */ |
| 639 | u64 hv_deadline_tsc; |
| 640 | |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 641 | u64 current_tsc_ratio; |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 642 | |
| 643 | bool guest_pkru_valid; |
| 644 | u32 guest_pkru; |
| 645 | u32 host_pkru; |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 646 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 647 | /* |
| 648 | * Only bits masked by msr_ia32_feature_control_valid_bits can be set in |
| 649 | * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included |
| 650 | * in msr_ia32_feature_control_valid_bits. |
| 651 | */ |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 652 | u64 msr_ia32_feature_control; |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 653 | u64 msr_ia32_feature_control_valid_bits; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 654 | }; |
| 655 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 656 | enum segment_cache_field { |
| 657 | SEG_FIELD_SEL = 0, |
| 658 | SEG_FIELD_BASE = 1, |
| 659 | SEG_FIELD_LIMIT = 2, |
| 660 | SEG_FIELD_AR = 3, |
| 661 | |
| 662 | SEG_FIELD_NR = 4 |
| 663 | }; |
| 664 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 665 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 666 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 667 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 668 | } |
| 669 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 670 | static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu) |
| 671 | { |
| 672 | return &(to_vmx(vcpu)->pi_desc); |
| 673 | } |
| 674 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 675 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 676 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 677 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 678 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 679 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 680 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 681 | static unsigned long shadow_read_only_fields[] = { |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 682 | /* |
| 683 | * We do NOT shadow fields that are modified when L0 |
| 684 | * traps and emulates any vmx instruction (e.g. VMPTRLD, |
| 685 | * VMXON...) executed by L1. |
| 686 | * For example, VM_INSTRUCTION_ERROR is read |
| 687 | * by L1 if a vmx instruction fails (part of the error path). |
| 688 | * Note the code assumes this logic. If for some reason |
| 689 | * we start shadowing these fields then we need to |
| 690 | * force a shadow sync when L0 emulates vmx instructions |
| 691 | * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified |
| 692 | * by nested_vmx_failValid) |
| 693 | */ |
| 694 | VM_EXIT_REASON, |
| 695 | VM_EXIT_INTR_INFO, |
| 696 | VM_EXIT_INSTRUCTION_LEN, |
| 697 | IDT_VECTORING_INFO_FIELD, |
| 698 | IDT_VECTORING_ERROR_CODE, |
| 699 | VM_EXIT_INTR_ERROR_CODE, |
| 700 | EXIT_QUALIFICATION, |
| 701 | GUEST_LINEAR_ADDRESS, |
| 702 | GUEST_PHYSICAL_ADDRESS |
| 703 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 704 | static int max_shadow_read_only_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 705 | ARRAY_SIZE(shadow_read_only_fields); |
| 706 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 707 | static unsigned long shadow_read_write_fields[] = { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 708 | TPR_THRESHOLD, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 709 | GUEST_RIP, |
| 710 | GUEST_RSP, |
| 711 | GUEST_CR0, |
| 712 | GUEST_CR3, |
| 713 | GUEST_CR4, |
| 714 | GUEST_INTERRUPTIBILITY_INFO, |
| 715 | GUEST_RFLAGS, |
| 716 | GUEST_CS_SELECTOR, |
| 717 | GUEST_CS_AR_BYTES, |
| 718 | GUEST_CS_LIMIT, |
| 719 | GUEST_CS_BASE, |
| 720 | GUEST_ES_BASE, |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 721 | GUEST_BNDCFGS, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 722 | CR0_GUEST_HOST_MASK, |
| 723 | CR0_READ_SHADOW, |
| 724 | CR4_READ_SHADOW, |
| 725 | TSC_OFFSET, |
| 726 | EXCEPTION_BITMAP, |
| 727 | CPU_BASED_VM_EXEC_CONTROL, |
| 728 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 729 | VM_ENTRY_INTR_INFO_FIELD, |
| 730 | VM_ENTRY_INSTRUCTION_LEN, |
| 731 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 732 | HOST_FS_BASE, |
| 733 | HOST_GS_BASE, |
| 734 | HOST_FS_SELECTOR, |
| 735 | HOST_GS_SELECTOR |
| 736 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 737 | static int max_shadow_read_write_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 738 | ARRAY_SIZE(shadow_read_write_fields); |
| 739 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 740 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 741 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 742 | FIELD(POSTED_INTR_NV, posted_intr_nv), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 743 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 744 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 745 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 746 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 747 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 748 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 749 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 750 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 751 | FIELD(GUEST_INTR_STATUS, guest_intr_status), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 752 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 753 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 754 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 755 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 756 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 757 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 758 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 759 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 760 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 761 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 762 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 763 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 764 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 765 | FIELD64(TSC_OFFSET, tsc_offset), |
| 766 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 767 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 768 | FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 769 | FIELD64(EPT_POINTER, ept_pointer), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 770 | FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0), |
| 771 | FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1), |
| 772 | FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2), |
| 773 | FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3), |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 774 | FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 775 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 776 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
| 777 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 778 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 779 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 780 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 781 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 782 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 783 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 784 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 785 | FIELD64(GUEST_BNDCFGS, guest_bndcfgs), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 786 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 787 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 788 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 789 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 790 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 791 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 792 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 793 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 794 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 795 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 796 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 797 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 798 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 799 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 800 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 801 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 802 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 803 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 804 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 805 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 806 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 807 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 808 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 809 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 810 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 811 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 812 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 813 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 814 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 815 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 816 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 817 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 818 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 819 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 820 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 821 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 822 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 823 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 824 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 825 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 826 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 827 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 828 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 829 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 830 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 831 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 832 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 833 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 834 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 835 | FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 836 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 837 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 838 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 839 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 840 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 841 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 842 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 843 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 844 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 845 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 846 | FIELD(GUEST_CR0, guest_cr0), |
| 847 | FIELD(GUEST_CR3, guest_cr3), |
| 848 | FIELD(GUEST_CR4, guest_cr4), |
| 849 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 850 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 851 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 852 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 853 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 854 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 855 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 856 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 857 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 858 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 859 | FIELD(GUEST_DR7, guest_dr7), |
| 860 | FIELD(GUEST_RSP, guest_rsp), |
| 861 | FIELD(GUEST_RIP, guest_rip), |
| 862 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 863 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 864 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 865 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 866 | FIELD(HOST_CR0, host_cr0), |
| 867 | FIELD(HOST_CR3, host_cr3), |
| 868 | FIELD(HOST_CR4, host_cr4), |
| 869 | FIELD(HOST_FS_BASE, host_fs_base), |
| 870 | FIELD(HOST_GS_BASE, host_gs_base), |
| 871 | FIELD(HOST_TR_BASE, host_tr_base), |
| 872 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 873 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 874 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 875 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 876 | FIELD(HOST_RSP, host_rsp), |
| 877 | FIELD(HOST_RIP, host_rip), |
| 878 | }; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 879 | |
| 880 | static inline short vmcs_field_to_offset(unsigned long field) |
| 881 | { |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 882 | BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX); |
| 883 | |
| 884 | if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) || |
| 885 | vmcs_field_to_offset_table[field] == 0) |
| 886 | return -ENOENT; |
| 887 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 888 | return vmcs_field_to_offset_table[field]; |
| 889 | } |
| 890 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 891 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 892 | { |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 893 | return to_vmx(vcpu)->nested.cached_vmcs12; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr) |
| 897 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 898 | struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 899 | if (is_error_page(page)) |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 900 | return NULL; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 901 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 902 | return page; |
| 903 | } |
| 904 | |
| 905 | static void nested_release_page(struct page *page) |
| 906 | { |
| 907 | kvm_release_page_dirty(page); |
| 908 | } |
| 909 | |
| 910 | static void nested_release_page_clean(struct page *page) |
| 911 | { |
| 912 | kvm_release_page_clean(page); |
| 913 | } |
| 914 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 915 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu); |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 916 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 917 | static void kvm_cpu_vmxon(u64 addr); |
| 918 | static void kvm_cpu_vmxoff(void); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 919 | static bool vmx_xsaves_supported(void); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 920 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 921 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 922 | struct kvm_segment *var, int seg); |
| 923 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 924 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 925 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 926 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 927 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 928 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 929 | static int alloc_identity_pagetable(struct kvm *kvm); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 930 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 931 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 932 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 933 | /* |
| 934 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 935 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 936 | */ |
| 937 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 938 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 939 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 940 | /* |
| 941 | * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we |
| 942 | * can find which vCPU should be waken up. |
| 943 | */ |
| 944 | static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu); |
| 945 | static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock); |
| 946 | |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 947 | enum { |
| 948 | VMX_IO_BITMAP_A, |
| 949 | VMX_IO_BITMAP_B, |
| 950 | VMX_MSR_BITMAP_LEGACY, |
| 951 | VMX_MSR_BITMAP_LONGMODE, |
| 952 | VMX_MSR_BITMAP_LEGACY_X2APIC_APICV, |
| 953 | VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV, |
| 954 | VMX_MSR_BITMAP_LEGACY_X2APIC, |
| 955 | VMX_MSR_BITMAP_LONGMODE_X2APIC, |
| 956 | VMX_VMREAD_BITMAP, |
| 957 | VMX_VMWRITE_BITMAP, |
| 958 | VMX_BITMAP_NR |
| 959 | }; |
| 960 | |
| 961 | static unsigned long *vmx_bitmap[VMX_BITMAP_NR]; |
| 962 | |
| 963 | #define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A]) |
| 964 | #define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B]) |
| 965 | #define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY]) |
| 966 | #define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE]) |
| 967 | #define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV]) |
| 968 | #define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV]) |
| 969 | #define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC]) |
| 970 | #define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC]) |
| 971 | #define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP]) |
| 972 | #define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP]) |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 973 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 974 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 975 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 976 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 977 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 978 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 979 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 980 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 981 | int size; |
| 982 | int order; |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 983 | u32 basic_cap; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 984 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 985 | u32 pin_based_exec_ctrl; |
| 986 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 987 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 988 | u32 vmexit_ctrl; |
| 989 | u32 vmentry_ctrl; |
| 990 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 991 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 992 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 993 | u32 ept; |
| 994 | u32 vpid; |
| 995 | } vmx_capability; |
| 996 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 997 | #define VMX_SEGMENT_FIELD(seg) \ |
| 998 | [VCPU_SREG_##seg] = { \ |
| 999 | .selector = GUEST_##seg##_SELECTOR, \ |
| 1000 | .base = GUEST_##seg##_BASE, \ |
| 1001 | .limit = GUEST_##seg##_LIMIT, \ |
| 1002 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 1003 | } |
| 1004 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 1005 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1006 | unsigned selector; |
| 1007 | unsigned base; |
| 1008 | unsigned limit; |
| 1009 | unsigned ar_bytes; |
| 1010 | } kvm_vmx_segment_fields[] = { |
| 1011 | VMX_SEGMENT_FIELD(CS), |
| 1012 | VMX_SEGMENT_FIELD(DS), |
| 1013 | VMX_SEGMENT_FIELD(ES), |
| 1014 | VMX_SEGMENT_FIELD(FS), |
| 1015 | VMX_SEGMENT_FIELD(GS), |
| 1016 | VMX_SEGMENT_FIELD(SS), |
| 1017 | VMX_SEGMENT_FIELD(TR), |
| 1018 | VMX_SEGMENT_FIELD(LDTR), |
| 1019 | }; |
| 1020 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1021 | static u64 host_efer; |
| 1022 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 1023 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 1024 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1025 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1026 | * 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] | 1027 | * away by decrementing the array size. |
| 1028 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1029 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1030 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1031 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1032 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1033 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1034 | }; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1035 | |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1036 | static inline bool is_exception_n(u32 intr_info, u8 vector) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1037 | { |
| 1038 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 1039 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1040 | (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK); |
| 1041 | } |
| 1042 | |
Jan Kiszka | 6f05485 | 2016-02-09 20:15:18 +0100 | [diff] [blame] | 1043 | static inline bool is_debug(u32 intr_info) |
| 1044 | { |
| 1045 | return is_exception_n(intr_info, DB_VECTOR); |
| 1046 | } |
| 1047 | |
| 1048 | static inline bool is_breakpoint(u32 intr_info) |
| 1049 | { |
| 1050 | return is_exception_n(intr_info, BP_VECTOR); |
| 1051 | } |
| 1052 | |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1053 | static inline bool is_page_fault(u32 intr_info) |
| 1054 | { |
| 1055 | return is_exception_n(intr_info, PF_VECTOR); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1056 | } |
| 1057 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1058 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1059 | { |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1060 | return is_exception_n(intr_info, NM_VECTOR); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1061 | } |
| 1062 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1063 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 1064 | { |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1065 | return is_exception_n(intr_info, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 1066 | } |
| 1067 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1068 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1069 | { |
| 1070 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 1071 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 1072 | } |
| 1073 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1074 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 1075 | { |
| 1076 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 1077 | INTR_INFO_VALID_MASK)) == |
| 1078 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 1079 | } |
| 1080 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1081 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1082 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1083 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1084 | } |
| 1085 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1086 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1087 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1088 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1089 | } |
| 1090 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1091 | static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1092 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1093 | return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1094 | } |
| 1095 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1096 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1097 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1098 | return vmcs_config.cpu_based_exec_ctrl & |
| 1099 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1100 | } |
| 1101 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 1102 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1103 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1104 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1105 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 1106 | } |
| 1107 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 1108 | static inline bool cpu_has_vmx_virtualize_x2apic_mode(void) |
| 1109 | { |
| 1110 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1111 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 1112 | } |
| 1113 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 1114 | static inline bool cpu_has_vmx_apic_register_virt(void) |
| 1115 | { |
| 1116 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1117 | SECONDARY_EXEC_APIC_REGISTER_VIRT; |
| 1118 | } |
| 1119 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 1120 | static inline bool cpu_has_vmx_virtual_intr_delivery(void) |
| 1121 | { |
| 1122 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1123 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY; |
| 1124 | } |
| 1125 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1126 | /* |
| 1127 | * Comment's format: document - errata name - stepping - processor name. |
| 1128 | * Refer from |
| 1129 | * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp |
| 1130 | */ |
| 1131 | static u32 vmx_preemption_cpu_tfms[] = { |
| 1132 | /* 323344.pdf - BA86 - D0 - Xeon 7500 Series */ |
| 1133 | 0x000206E6, |
| 1134 | /* 323056.pdf - AAX65 - C2 - Xeon L3406 */ |
| 1135 | /* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */ |
| 1136 | /* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */ |
| 1137 | 0x00020652, |
| 1138 | /* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */ |
| 1139 | 0x00020655, |
| 1140 | /* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */ |
| 1141 | /* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */ |
| 1142 | /* |
| 1143 | * 320767.pdf - AAP86 - B1 - |
| 1144 | * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile |
| 1145 | */ |
| 1146 | 0x000106E5, |
| 1147 | /* 321333.pdf - AAM126 - C0 - Xeon 3500 */ |
| 1148 | 0x000106A0, |
| 1149 | /* 321333.pdf - AAM126 - C1 - Xeon 3500 */ |
| 1150 | 0x000106A1, |
| 1151 | /* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */ |
| 1152 | 0x000106A4, |
| 1153 | /* 321333.pdf - AAM126 - D0 - Xeon 3500 */ |
| 1154 | /* 321324.pdf - AAK139 - D0 - Xeon 5500 */ |
| 1155 | /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */ |
| 1156 | 0x000106A5, |
| 1157 | }; |
| 1158 | |
| 1159 | static inline bool cpu_has_broken_vmx_preemption_timer(void) |
| 1160 | { |
| 1161 | u32 eax = cpuid_eax(0x00000001), i; |
| 1162 | |
| 1163 | /* Clear the reserved bits */ |
| 1164 | eax &= ~(0x3U << 14 | 0xfU << 28); |
Wei Yongjun | 03f6a22 | 2016-07-04 15:13:07 +0000 | [diff] [blame] | 1165 | for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++) |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1166 | if (eax == vmx_preemption_cpu_tfms[i]) |
| 1167 | return true; |
| 1168 | |
| 1169 | return false; |
| 1170 | } |
| 1171 | |
| 1172 | static inline bool cpu_has_vmx_preemption_timer(void) |
| 1173 | { |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1174 | return vmcs_config.pin_based_exec_ctrl & |
| 1175 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1176 | } |
| 1177 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1178 | static inline bool cpu_has_vmx_posted_intr(void) |
| 1179 | { |
Paolo Bonzini | d6a858d | 2015-09-28 11:58:14 +0200 | [diff] [blame] | 1180 | return IS_ENABLED(CONFIG_X86_LOCAL_APIC) && |
| 1181 | vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1182 | } |
| 1183 | |
| 1184 | static inline bool cpu_has_vmx_apicv(void) |
| 1185 | { |
| 1186 | return cpu_has_vmx_apic_register_virt() && |
| 1187 | cpu_has_vmx_virtual_intr_delivery() && |
| 1188 | cpu_has_vmx_posted_intr(); |
| 1189 | } |
| 1190 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1191 | static inline bool cpu_has_vmx_flexpriority(void) |
| 1192 | { |
| 1193 | return cpu_has_vmx_tpr_shadow() && |
| 1194 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1195 | } |
| 1196 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1197 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 1198 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1199 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1200 | } |
| 1201 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1202 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 1203 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1204 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1205 | } |
| 1206 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1207 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 1208 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1209 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1210 | } |
| 1211 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 1212 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 1213 | { |
| 1214 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 1215 | } |
| 1216 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 1217 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 1218 | { |
| 1219 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 1220 | } |
| 1221 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1222 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1223 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1224 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1225 | } |
| 1226 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1227 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1228 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1229 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1230 | } |
| 1231 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1232 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 1233 | { |
| 1234 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 1235 | } |
| 1236 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1237 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 1238 | { |
| 1239 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 1240 | } |
| 1241 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1242 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1243 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1244 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1245 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1246 | } |
| 1247 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1248 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 1249 | { |
| 1250 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1251 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 1252 | } |
| 1253 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1254 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 1255 | { |
| 1256 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1257 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 1258 | } |
| 1259 | |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 1260 | static inline bool cpu_has_vmx_basic_inout(void) |
| 1261 | { |
| 1262 | return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT); |
| 1263 | } |
| 1264 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1265 | static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1266 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1267 | return flexpriority_enabled && lapic_in_kernel(vcpu); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1268 | } |
| 1269 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1270 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1271 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1272 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1273 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1274 | } |
| 1275 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1276 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1277 | { |
| 1278 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1279 | SECONDARY_EXEC_RDTSCP; |
| 1280 | } |
| 1281 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1282 | static inline bool cpu_has_vmx_invpcid(void) |
| 1283 | { |
| 1284 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1285 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 1286 | } |
| 1287 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1288 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 1289 | { |
| 1290 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 1291 | } |
| 1292 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1293 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 1294 | { |
| 1295 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1296 | SECONDARY_EXEC_WBINVD_EXITING; |
| 1297 | } |
| 1298 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 1299 | static inline bool cpu_has_vmx_shadow_vmcs(void) |
| 1300 | { |
| 1301 | u64 vmx_msr; |
| 1302 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 1303 | /* check if the cpu supports writing r/o exit information fields */ |
| 1304 | if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS)) |
| 1305 | return false; |
| 1306 | |
| 1307 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1308 | SECONDARY_EXEC_SHADOW_VMCS; |
| 1309 | } |
| 1310 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 1311 | static inline bool cpu_has_vmx_pml(void) |
| 1312 | { |
| 1313 | return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML; |
| 1314 | } |
| 1315 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 1316 | static inline bool cpu_has_vmx_tsc_scaling(void) |
| 1317 | { |
| 1318 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1319 | SECONDARY_EXEC_TSC_SCALING; |
| 1320 | } |
| 1321 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1322 | static inline bool report_flexpriority(void) |
| 1323 | { |
| 1324 | return flexpriority_enabled; |
| 1325 | } |
| 1326 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1327 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 1328 | { |
| 1329 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 1330 | } |
| 1331 | |
| 1332 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 1333 | { |
| 1334 | return (vmcs12->cpu_based_vm_exec_control & |
| 1335 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 1336 | (vmcs12->secondary_vm_exec_control & bit); |
| 1337 | } |
| 1338 | |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 1339 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1340 | { |
| 1341 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 1342 | } |
| 1343 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 1344 | static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12) |
| 1345 | { |
| 1346 | return vmcs12->pin_based_vm_exec_control & |
| 1347 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1348 | } |
| 1349 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 1350 | static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12) |
| 1351 | { |
| 1352 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT); |
| 1353 | } |
| 1354 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1355 | static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12) |
| 1356 | { |
| 1357 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) && |
| 1358 | vmx_xsaves_supported(); |
| 1359 | } |
| 1360 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 1361 | static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12) |
| 1362 | { |
| 1363 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE); |
| 1364 | } |
| 1365 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 1366 | static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12) |
| 1367 | { |
| 1368 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID); |
| 1369 | } |
| 1370 | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 1371 | static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12) |
| 1372 | { |
| 1373 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT); |
| 1374 | } |
| 1375 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 1376 | static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12) |
| 1377 | { |
| 1378 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 1379 | } |
| 1380 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 1381 | static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12) |
| 1382 | { |
| 1383 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; |
| 1384 | } |
| 1385 | |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 1386 | static inline bool is_nmi(u32 intr_info) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1387 | { |
| 1388 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 1389 | == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1390 | } |
| 1391 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 1392 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 1393 | u32 exit_intr_info, |
| 1394 | unsigned long exit_qualification); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 1395 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 1396 | struct vmcs12 *vmcs12, |
| 1397 | u32 reason, unsigned long qualification); |
| 1398 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1399 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1400 | { |
| 1401 | int i; |
| 1402 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1403 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1404 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1405 | return i; |
| 1406 | return -1; |
| 1407 | } |
| 1408 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1409 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 1410 | { |
| 1411 | struct { |
| 1412 | u64 vpid : 16; |
| 1413 | u64 rsvd : 48; |
| 1414 | u64 gva; |
| 1415 | } operand = { vpid, 0, gva }; |
| 1416 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1417 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1418 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1419 | "; ja 1f ; ud2 ; 1:" |
| 1420 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 1421 | } |
| 1422 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1423 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 1424 | { |
| 1425 | struct { |
| 1426 | u64 eptp, gpa; |
| 1427 | } operand = {eptp, gpa}; |
| 1428 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1429 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1430 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1431 | "; ja 1f ; ud2 ; 1:\n" |
| 1432 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 1433 | } |
| 1434 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1435 | 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] | 1436 | { |
| 1437 | int i; |
| 1438 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1439 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1440 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1441 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 1442 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1443 | } |
| 1444 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1445 | static void vmcs_clear(struct vmcs *vmcs) |
| 1446 | { |
| 1447 | u64 phys_addr = __pa(vmcs); |
| 1448 | u8 error; |
| 1449 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1450 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1451 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1452 | : "cc", "memory"); |
| 1453 | if (error) |
| 1454 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 1455 | vmcs, phys_addr); |
| 1456 | } |
| 1457 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1458 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 1459 | { |
| 1460 | vmcs_clear(loaded_vmcs->vmcs); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 1461 | if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched) |
| 1462 | vmcs_clear(loaded_vmcs->shadow_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1463 | loaded_vmcs->cpu = -1; |
| 1464 | loaded_vmcs->launched = 0; |
| 1465 | } |
| 1466 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1467 | static void vmcs_load(struct vmcs *vmcs) |
| 1468 | { |
| 1469 | u64 phys_addr = __pa(vmcs); |
| 1470 | u8 error; |
| 1471 | |
| 1472 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1473 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1474 | : "cc", "memory"); |
| 1475 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 1476 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1477 | vmcs, phys_addr); |
| 1478 | } |
| 1479 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1480 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1481 | /* |
| 1482 | * This bitmap is used to indicate whether the vmclear |
| 1483 | * operation is enabled on all cpus. All disabled by |
| 1484 | * default. |
| 1485 | */ |
| 1486 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1487 | |
| 1488 | static inline void crash_enable_local_vmclear(int cpu) |
| 1489 | { |
| 1490 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1491 | } |
| 1492 | |
| 1493 | static inline void crash_disable_local_vmclear(int cpu) |
| 1494 | { |
| 1495 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1496 | } |
| 1497 | |
| 1498 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1499 | { |
| 1500 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1501 | } |
| 1502 | |
| 1503 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1504 | { |
| 1505 | int cpu = raw_smp_processor_id(); |
| 1506 | struct loaded_vmcs *v; |
| 1507 | |
| 1508 | if (!crash_local_vmclear_enabled(cpu)) |
| 1509 | return; |
| 1510 | |
| 1511 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1512 | loaded_vmcss_on_cpu_link) |
| 1513 | vmcs_clear(v->vmcs); |
| 1514 | } |
| 1515 | #else |
| 1516 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1517 | static inline void crash_disable_local_vmclear(int cpu) { } |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1518 | #endif /* CONFIG_KEXEC_CORE */ |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1519 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1520 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1521 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1522 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1523 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1524 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1525 | if (loaded_vmcs->cpu != cpu) |
| 1526 | return; /* vcpu migration can race with cpu offline */ |
| 1527 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1528 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1529 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1530 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1531 | |
| 1532 | /* |
| 1533 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1534 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1535 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1536 | * then adds the vmcs into percpu list before it is deleted. |
| 1537 | */ |
| 1538 | smp_wmb(); |
| 1539 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1540 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1541 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1542 | } |
| 1543 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1544 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1545 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1546 | int cpu = loaded_vmcs->cpu; |
| 1547 | |
| 1548 | if (cpu != -1) |
| 1549 | smp_call_function_single(cpu, |
| 1550 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1551 | } |
| 1552 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1553 | static inline void vpid_sync_vcpu_single(int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1554 | { |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1555 | if (vpid == 0) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1556 | return; |
| 1557 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1558 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1559 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1560 | } |
| 1561 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1562 | static inline void vpid_sync_vcpu_global(void) |
| 1563 | { |
| 1564 | if (cpu_has_vmx_invvpid_global()) |
| 1565 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1566 | } |
| 1567 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1568 | static inline void vpid_sync_context(int vpid) |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1569 | { |
| 1570 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1571 | vpid_sync_vcpu_single(vpid); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1572 | else |
| 1573 | vpid_sync_vcpu_global(); |
| 1574 | } |
| 1575 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1576 | static inline void ept_sync_global(void) |
| 1577 | { |
| 1578 | if (cpu_has_vmx_invept_global()) |
| 1579 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1580 | } |
| 1581 | |
| 1582 | static inline void ept_sync_context(u64 eptp) |
| 1583 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1584 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1585 | if (cpu_has_vmx_invept_context()) |
| 1586 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1587 | else |
| 1588 | ept_sync_global(); |
| 1589 | } |
| 1590 | } |
| 1591 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1592 | static __always_inline void vmcs_check16(unsigned long field) |
| 1593 | { |
| 1594 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, |
| 1595 | "16-bit accessor invalid for 64-bit field"); |
| 1596 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1597 | "16-bit accessor invalid for 64-bit high field"); |
| 1598 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1599 | "16-bit accessor invalid for 32-bit high field"); |
| 1600 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1601 | "16-bit accessor invalid for natural width field"); |
| 1602 | } |
| 1603 | |
| 1604 | static __always_inline void vmcs_check32(unsigned long field) |
| 1605 | { |
| 1606 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1607 | "32-bit accessor invalid for 16-bit field"); |
| 1608 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1609 | "32-bit accessor invalid for natural width field"); |
| 1610 | } |
| 1611 | |
| 1612 | static __always_inline void vmcs_check64(unsigned long field) |
| 1613 | { |
| 1614 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1615 | "64-bit accessor invalid for 16-bit field"); |
| 1616 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1617 | "64-bit accessor invalid for 64-bit high field"); |
| 1618 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1619 | "64-bit accessor invalid for 32-bit field"); |
| 1620 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1621 | "64-bit accessor invalid for natural width field"); |
| 1622 | } |
| 1623 | |
| 1624 | static __always_inline void vmcs_checkl(unsigned long field) |
| 1625 | { |
| 1626 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1627 | "Natural width accessor invalid for 16-bit field"); |
| 1628 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, |
| 1629 | "Natural width accessor invalid for 64-bit field"); |
| 1630 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1631 | "Natural width accessor invalid for 64-bit high field"); |
| 1632 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1633 | "Natural width accessor invalid for 32-bit field"); |
| 1634 | } |
| 1635 | |
| 1636 | static __always_inline unsigned long __vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1637 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1638 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1639 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1640 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1641 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1642 | return value; |
| 1643 | } |
| 1644 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1645 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1646 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1647 | vmcs_check16(field); |
| 1648 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1649 | } |
| 1650 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1651 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1652 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1653 | vmcs_check32(field); |
| 1654 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1655 | } |
| 1656 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1657 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1658 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1659 | vmcs_check64(field); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1660 | #ifdef CONFIG_X86_64 |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1661 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1662 | #else |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1663 | return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1664 | #endif |
| 1665 | } |
| 1666 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1667 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
| 1668 | { |
| 1669 | vmcs_checkl(field); |
| 1670 | return __vmcs_readl(field); |
| 1671 | } |
| 1672 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1673 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1674 | { |
| 1675 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1676 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1677 | dump_stack(); |
| 1678 | } |
| 1679 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1680 | static __always_inline void __vmcs_writel(unsigned long field, unsigned long value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1681 | { |
| 1682 | u8 error; |
| 1683 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1684 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1685 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1686 | if (unlikely(error)) |
| 1687 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1688 | } |
| 1689 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1690 | static __always_inline void vmcs_write16(unsigned long field, u16 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1691 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1692 | vmcs_check16(field); |
| 1693 | __vmcs_writel(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1694 | } |
| 1695 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1696 | static __always_inline void vmcs_write32(unsigned long field, u32 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1697 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1698 | vmcs_check32(field); |
| 1699 | __vmcs_writel(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1700 | } |
| 1701 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1702 | static __always_inline void vmcs_write64(unsigned long field, u64 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1703 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1704 | vmcs_check64(field); |
| 1705 | __vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1706 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1707 | asm volatile (""); |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1708 | __vmcs_writel(field+1, value >> 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1709 | #endif |
| 1710 | } |
| 1711 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1712 | static __always_inline void vmcs_writel(unsigned long field, unsigned long value) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1713 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1714 | vmcs_checkl(field); |
| 1715 | __vmcs_writel(field, value); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1716 | } |
| 1717 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1718 | static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1719 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1720 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000, |
| 1721 | "vmcs_clear_bits does not support 64-bit fields"); |
| 1722 | __vmcs_writel(field, __vmcs_readl(field) & ~mask); |
| 1723 | } |
| 1724 | |
| 1725 | static __always_inline void vmcs_set_bits(unsigned long field, u32 mask) |
| 1726 | { |
| 1727 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000, |
| 1728 | "vmcs_set_bits does not support 64-bit fields"); |
| 1729 | __vmcs_writel(field, __vmcs_readl(field) | mask); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1730 | } |
| 1731 | |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 1732 | static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx) |
| 1733 | { |
| 1734 | vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS); |
| 1735 | } |
| 1736 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1737 | static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1738 | { |
| 1739 | vmcs_write32(VM_ENTRY_CONTROLS, val); |
| 1740 | vmx->vm_entry_controls_shadow = val; |
| 1741 | } |
| 1742 | |
| 1743 | static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1744 | { |
| 1745 | if (vmx->vm_entry_controls_shadow != val) |
| 1746 | vm_entry_controls_init(vmx, val); |
| 1747 | } |
| 1748 | |
| 1749 | static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx) |
| 1750 | { |
| 1751 | return vmx->vm_entry_controls_shadow; |
| 1752 | } |
| 1753 | |
| 1754 | |
| 1755 | static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1756 | { |
| 1757 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val); |
| 1758 | } |
| 1759 | |
| 1760 | static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1761 | { |
| 1762 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val); |
| 1763 | } |
| 1764 | |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 1765 | static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx) |
| 1766 | { |
| 1767 | vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS); |
| 1768 | } |
| 1769 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1770 | static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1771 | { |
| 1772 | vmcs_write32(VM_EXIT_CONTROLS, val); |
| 1773 | vmx->vm_exit_controls_shadow = val; |
| 1774 | } |
| 1775 | |
| 1776 | static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1777 | { |
| 1778 | if (vmx->vm_exit_controls_shadow != val) |
| 1779 | vm_exit_controls_init(vmx, val); |
| 1780 | } |
| 1781 | |
| 1782 | static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx) |
| 1783 | { |
| 1784 | return vmx->vm_exit_controls_shadow; |
| 1785 | } |
| 1786 | |
| 1787 | |
| 1788 | static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1789 | { |
| 1790 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val); |
| 1791 | } |
| 1792 | |
| 1793 | static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1794 | { |
| 1795 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val); |
| 1796 | } |
| 1797 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1798 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1799 | { |
| 1800 | vmx->segment_cache.bitmask = 0; |
| 1801 | } |
| 1802 | |
| 1803 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1804 | unsigned field) |
| 1805 | { |
| 1806 | bool ret; |
| 1807 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1808 | |
| 1809 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1810 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1811 | vmx->segment_cache.bitmask = 0; |
| 1812 | } |
| 1813 | ret = vmx->segment_cache.bitmask & mask; |
| 1814 | vmx->segment_cache.bitmask |= mask; |
| 1815 | return ret; |
| 1816 | } |
| 1817 | |
| 1818 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1819 | { |
| 1820 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1821 | |
| 1822 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1823 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1824 | return *p; |
| 1825 | } |
| 1826 | |
| 1827 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1828 | { |
| 1829 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1830 | |
| 1831 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1832 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1833 | return *p; |
| 1834 | } |
| 1835 | |
| 1836 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1837 | { |
| 1838 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1839 | |
| 1840 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1841 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1842 | return *p; |
| 1843 | } |
| 1844 | |
| 1845 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1846 | { |
| 1847 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1848 | |
| 1849 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1850 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1851 | return *p; |
| 1852 | } |
| 1853 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1854 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1855 | { |
| 1856 | u32 eb; |
| 1857 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1858 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 1859 | (1u << DB_VECTOR) | (1u << AC_VECTOR); |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1860 | if ((vcpu->guest_debug & |
| 1861 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1862 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1863 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1864 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1865 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1866 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1867 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1868 | |
| 1869 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1870 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1871 | * them to L1. When running L2, we will only handle the exceptions |
| 1872 | * specified above if L1 did not want them. |
| 1873 | */ |
| 1874 | if (is_guest_mode(vcpu)) |
| 1875 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1876 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1877 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1878 | } |
| 1879 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1880 | static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1881 | unsigned long entry, unsigned long exit) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1882 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1883 | vm_entry_controls_clearbit(vmx, entry); |
| 1884 | vm_exit_controls_clearbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1885 | } |
| 1886 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1887 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1888 | { |
| 1889 | unsigned i; |
| 1890 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1891 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1892 | switch (msr) { |
| 1893 | case MSR_EFER: |
| 1894 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1895 | clear_atomic_switch_msr_special(vmx, |
| 1896 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1897 | VM_EXIT_LOAD_IA32_EFER); |
| 1898 | return; |
| 1899 | } |
| 1900 | break; |
| 1901 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1902 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1903 | clear_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1904 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1905 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1906 | return; |
| 1907 | } |
| 1908 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1909 | } |
| 1910 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1911 | for (i = 0; i < m->nr; ++i) |
| 1912 | if (m->guest[i].index == msr) |
| 1913 | break; |
| 1914 | |
| 1915 | if (i == m->nr) |
| 1916 | return; |
| 1917 | --m->nr; |
| 1918 | m->guest[i] = m->guest[m->nr]; |
| 1919 | m->host[i] = m->host[m->nr]; |
| 1920 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1921 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1922 | } |
| 1923 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1924 | static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1925 | unsigned long entry, unsigned long exit, |
| 1926 | unsigned long guest_val_vmcs, unsigned long host_val_vmcs, |
| 1927 | u64 guest_val, u64 host_val) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1928 | { |
| 1929 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1930 | vmcs_write64(host_val_vmcs, host_val); |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1931 | vm_entry_controls_setbit(vmx, entry); |
| 1932 | vm_exit_controls_setbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1933 | } |
| 1934 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1935 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1936 | u64 guest_val, u64 host_val) |
| 1937 | { |
| 1938 | unsigned i; |
| 1939 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1940 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1941 | switch (msr) { |
| 1942 | case MSR_EFER: |
| 1943 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1944 | add_atomic_switch_msr_special(vmx, |
| 1945 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1946 | VM_EXIT_LOAD_IA32_EFER, |
| 1947 | GUEST_IA32_EFER, |
| 1948 | HOST_IA32_EFER, |
| 1949 | guest_val, host_val); |
| 1950 | return; |
| 1951 | } |
| 1952 | break; |
| 1953 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1954 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1955 | add_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1956 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1957 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1958 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1959 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1960 | guest_val, host_val); |
| 1961 | return; |
| 1962 | } |
| 1963 | break; |
Radim Krčmář | 7099e2e | 2016-03-04 15:08:42 +0100 | [diff] [blame] | 1964 | case MSR_IA32_PEBS_ENABLE: |
| 1965 | /* PEBS needs a quiescent period after being disabled (to write |
| 1966 | * a record). Disabling PEBS through VMX MSR swapping doesn't |
| 1967 | * provide that period, so a CPU could write host's record into |
| 1968 | * guest's memory. |
| 1969 | */ |
| 1970 | wrmsrl(MSR_IA32_PEBS_ENABLE, 0); |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1971 | } |
| 1972 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1973 | for (i = 0; i < m->nr; ++i) |
| 1974 | if (m->guest[i].index == msr) |
| 1975 | break; |
| 1976 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1977 | if (i == NR_AUTOLOAD_MSRS) { |
Michael S. Tsirkin | 6026620 | 2013-10-31 00:34:56 +0200 | [diff] [blame] | 1978 | printk_once(KERN_WARNING "Not enough msr switch entries. " |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1979 | "Can't add msr %x\n", msr); |
| 1980 | return; |
| 1981 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1982 | ++m->nr; |
| 1983 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1984 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1985 | } |
| 1986 | |
| 1987 | m->guest[i].index = msr; |
| 1988 | m->guest[i].value = guest_val; |
| 1989 | m->host[i].index = msr; |
| 1990 | m->host[i].value = host_val; |
| 1991 | } |
| 1992 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1993 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1994 | { |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 1995 | u64 guest_efer = vmx->vcpu.arch.efer; |
| 1996 | u64 ignore_bits = 0; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1997 | |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 1998 | if (!enable_ept) { |
| 1999 | /* |
| 2000 | * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing |
| 2001 | * host CPUID is more efficient than testing guest CPUID |
| 2002 | * or CR4. Host SMEP is anyway a requirement for guest SMEP. |
| 2003 | */ |
| 2004 | if (boot_cpu_has(X86_FEATURE_SMEP)) |
| 2005 | guest_efer |= EFER_NX; |
| 2006 | else if (!(guest_efer & EFER_NX)) |
| 2007 | ignore_bits |= EFER_NX; |
| 2008 | } |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 2009 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2010 | /* |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2011 | * LMA and LME handled by hardware; SCE meaningless outside long mode. |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2012 | */ |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2013 | ignore_bits |= EFER_SCE; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2014 | #ifdef CONFIG_X86_64 |
| 2015 | ignore_bits |= EFER_LMA | EFER_LME; |
| 2016 | /* SCE is meaningful only in long mode on Intel */ |
| 2017 | if (guest_efer & EFER_LMA) |
| 2018 | ignore_bits &= ~(u64)EFER_SCE; |
| 2019 | #endif |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2020 | |
| 2021 | clear_atomic_switch_msr(vmx, MSR_EFER); |
Andy Lutomirski | f6577a5f | 2014-11-07 18:25:18 -0800 | [diff] [blame] | 2022 | |
| 2023 | /* |
| 2024 | * On EPT, we can't emulate NX, so we must switch EFER atomically. |
| 2025 | * On CPUs that support "load IA32_EFER", always switch EFER |
| 2026 | * atomically, since it's faster than switching it manually. |
| 2027 | */ |
| 2028 | if (cpu_has_load_ia32_efer || |
| 2029 | (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) { |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2030 | if (!(guest_efer & EFER_LMA)) |
| 2031 | guest_efer &= ~EFER_LME; |
Andy Lutomirski | 54b98bf | 2014-11-10 11:19:15 -0800 | [diff] [blame] | 2032 | if (guest_efer != host_efer) |
| 2033 | add_atomic_switch_msr(vmx, MSR_EFER, |
| 2034 | guest_efer, host_efer); |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2035 | return false; |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2036 | } else { |
| 2037 | guest_efer &= ~ignore_bits; |
| 2038 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2039 | |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2040 | vmx->guest_msrs[efer_offset].data = guest_efer; |
| 2041 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
| 2042 | |
| 2043 | return true; |
| 2044 | } |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2045 | } |
| 2046 | |
Andy Lutomirski | e28baea | 2017-02-20 08:56:11 -0800 | [diff] [blame] | 2047 | #ifdef CONFIG_X86_32 |
| 2048 | /* |
| 2049 | * On 32-bit kernels, VM exits still load the FS and GS bases from the |
| 2050 | * VMCS rather than the segment table. KVM uses this helper to figure |
| 2051 | * out the current bases to poke them into the VMCS before entry. |
| 2052 | */ |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2053 | static unsigned long segment_base(u16 selector) |
| 2054 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 2055 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2056 | struct desc_struct *table; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2057 | unsigned long v; |
| 2058 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2059 | if (!(selector & ~SEGMENT_RPL_MASK)) |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2060 | return 0; |
| 2061 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2062 | table = (struct desc_struct *)gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2063 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2064 | if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) { |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2065 | u16 ldt_selector = kvm_read_ldt(); |
| 2066 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2067 | if (!(ldt_selector & ~SEGMENT_RPL_MASK)) |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2068 | return 0; |
| 2069 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2070 | table = (struct desc_struct *)segment_base(ldt_selector); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2071 | } |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2072 | v = get_desc_base(&table[selector >> 3]); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2073 | return v; |
| 2074 | } |
Andy Lutomirski | e28baea | 2017-02-20 08:56:11 -0800 | [diff] [blame] | 2075 | #endif |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2076 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2077 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2078 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2079 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2080 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2081 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2082 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2083 | return; |
| 2084 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2085 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2086 | /* |
| 2087 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 2088 | * allow segment selectors with cpl > 0 or ti == 1. |
| 2089 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2090 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2091 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2092 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2093 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2094 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2095 | vmx->host_state.fs_reload_needed = 0; |
| 2096 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2097 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2098 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2099 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2100 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2101 | if (!(vmx->host_state.gs_sel & 7)) |
| 2102 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2103 | else { |
| 2104 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2105 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2106 | } |
| 2107 | |
| 2108 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2109 | savesegment(ds, vmx->host_state.ds_sel); |
| 2110 | savesegment(es, vmx->host_state.es_sel); |
| 2111 | #endif |
| 2112 | |
| 2113 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2114 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 2115 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 2116 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2117 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 2118 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2119 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 2120 | |
| 2121 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2122 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 2123 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2124 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 2125 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 2126 | if (boot_cpu_has(X86_FEATURE_MPX)) |
| 2127 | rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2128 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 2129 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 2130 | vmx->guest_msrs[i].data, |
| 2131 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2132 | } |
| 2133 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2134 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2135 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2136 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2137 | return; |
| 2138 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 2139 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2140 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2141 | #ifdef CONFIG_X86_64 |
| 2142 | if (is_long_mode(&vmx->vcpu)) |
| 2143 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 2144 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2145 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2146 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2147 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2148 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2149 | #else |
| 2150 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2151 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2152 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 2153 | if (vmx->host_state.fs_reload_needed) |
| 2154 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2155 | #ifdef CONFIG_X86_64 |
| 2156 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 2157 | loadsegment(ds, vmx->host_state.ds_sel); |
| 2158 | loadsegment(es, vmx->host_state.es_sel); |
| 2159 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2160 | #endif |
Andy Lutomirski | b7ffc44 | 2017-02-20 08:56:14 -0800 | [diff] [blame] | 2161 | invalidate_tss_limit(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2162 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2163 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2164 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 2165 | if (vmx->host_state.msr_host_bndcfgs) |
| 2166 | wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 2167 | load_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2168 | } |
| 2169 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2170 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 2171 | { |
| 2172 | preempt_disable(); |
| 2173 | __vmx_load_host_state(vmx); |
| 2174 | preempt_enable(); |
| 2175 | } |
| 2176 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2177 | static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu) |
| 2178 | { |
| 2179 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2180 | struct pi_desc old, new; |
| 2181 | unsigned int dest; |
| 2182 | |
| 2183 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 2184 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 2185 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2186 | return; |
| 2187 | |
| 2188 | do { |
| 2189 | old.control = new.control = pi_desc->control; |
| 2190 | |
| 2191 | /* |
| 2192 | * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there |
| 2193 | * are two possible cases: |
| 2194 | * 1. After running 'pre_block', context switch |
| 2195 | * happened. For this case, 'sn' was set in |
| 2196 | * vmx_vcpu_put(), so we need to clear it here. |
| 2197 | * 2. After running 'pre_block', we were blocked, |
| 2198 | * and woken up by some other guy. For this case, |
| 2199 | * we don't need to do anything, 'pi_post_block' |
| 2200 | * will do everything for us. However, we cannot |
| 2201 | * check whether it is case #1 or case #2 here |
| 2202 | * (maybe, not needed), so we also clear sn here, |
| 2203 | * I think it is not a big deal. |
| 2204 | */ |
| 2205 | if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) { |
| 2206 | if (vcpu->cpu != cpu) { |
| 2207 | dest = cpu_physical_id(cpu); |
| 2208 | |
| 2209 | if (x2apic_enabled()) |
| 2210 | new.ndst = dest; |
| 2211 | else |
| 2212 | new.ndst = (dest << 8) & 0xFF00; |
| 2213 | } |
| 2214 | |
| 2215 | /* set 'NV' to 'notification vector' */ |
| 2216 | new.nv = POSTED_INTR_VECTOR; |
| 2217 | } |
| 2218 | |
| 2219 | /* Allow posting non-urgent interrupts */ |
| 2220 | new.sn = 0; |
| 2221 | } while (cmpxchg(&pi_desc->control, old.control, |
| 2222 | new.control) != old.control); |
| 2223 | } |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 2224 | |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 2225 | static void decache_tsc_multiplier(struct vcpu_vmx *vmx) |
| 2226 | { |
| 2227 | vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio; |
| 2228 | vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio); |
| 2229 | } |
| 2230 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2231 | /* |
| 2232 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 2233 | * vcpu mutex is already taken. |
| 2234 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 2235 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2236 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2237 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2238 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2239 | bool already_loaded = vmx->loaded_vmcs->cpu == cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2240 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2241 | if (!vmm_exclusive) |
| 2242 | kvm_cpu_vmxon(phys_addr); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2243 | else if (!already_loaded) |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2244 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2245 | |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2246 | if (!already_loaded) { |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2247 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2248 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 2249 | |
| 2250 | /* |
| 2251 | * Read loaded_vmcs->cpu should be before fetching |
| 2252 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 2253 | * See the comments in __loaded_vmcs_clear(). |
| 2254 | */ |
| 2255 | smp_rmb(); |
| 2256 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2257 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 2258 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2259 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2260 | local_irq_enable(); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 2264 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 2265 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 2266 | } |
| 2267 | |
| 2268 | if (!already_loaded) { |
| 2269 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
| 2270 | unsigned long sysenter_esp; |
| 2271 | |
| 2272 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2273 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2274 | /* |
| 2275 | * Linux uses per-cpu TSS and GDT, so set these when switching |
Andy Lutomirski | e0c2306 | 2017-02-20 08:56:10 -0800 | [diff] [blame] | 2276 | * processors. See 22.2.4. |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2277 | */ |
Andy Lutomirski | e0c2306 | 2017-02-20 08:56:10 -0800 | [diff] [blame] | 2278 | vmcs_writel(HOST_TR_BASE, |
| 2279 | (unsigned long)this_cpu_ptr(&cpu_tss)); |
| 2280 | vmcs_writel(HOST_GDTR_BASE, gdt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2281 | |
Andy Lutomirski | b7ffc44 | 2017-02-20 08:56:14 -0800 | [diff] [blame] | 2282 | /* |
| 2283 | * VM exits change the host TR limit to 0x67 after a VM |
| 2284 | * exit. This is okay, since 0x67 covers everything except |
| 2285 | * the IO bitmap and have have code to handle the IO bitmap |
| 2286 | * being lost after a VM exit. |
| 2287 | */ |
| 2288 | BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67); |
| 2289 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2290 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 2291 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Haozhong Zhang | ff2c3a1 | 2015-10-20 15:39:10 +0800 | [diff] [blame] | 2292 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2293 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2294 | } |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2295 | |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 2296 | /* Setup TSC multiplier */ |
| 2297 | if (kvm_has_tsc_control && |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 2298 | vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) |
| 2299 | decache_tsc_multiplier(vmx); |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 2300 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2301 | vmx_vcpu_pi_load(vcpu, cpu); |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 2302 | vmx->host_pkru = read_pkru(); |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2303 | } |
| 2304 | |
| 2305 | static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu) |
| 2306 | { |
| 2307 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2308 | |
| 2309 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 2310 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 2311 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2312 | return; |
| 2313 | |
| 2314 | /* Set SN when the vCPU is preempted */ |
| 2315 | if (vcpu->preempted) |
| 2316 | pi_set_sn(pi_desc); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2317 | } |
| 2318 | |
| 2319 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 2320 | { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2321 | vmx_vcpu_pi_put(vcpu); |
| 2322 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2323 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2324 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2325 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 2326 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2327 | kvm_cpu_vmxoff(); |
| 2328 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2329 | } |
| 2330 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2331 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 2332 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 2333 | /* |
| 2334 | * Return the cr0 value that a nested guest would read. This is a combination |
| 2335 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 2336 | * its hypervisor (cr0_read_shadow). |
| 2337 | */ |
| 2338 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 2339 | { |
| 2340 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 2341 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 2342 | } |
| 2343 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 2344 | { |
| 2345 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 2346 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 2347 | } |
| 2348 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2349 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 2350 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2351 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 2352 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2353 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 2354 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2355 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 2356 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2357 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2358 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 2359 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2360 | } |
| 2361 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2362 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2363 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2364 | } |
| 2365 | |
| 2366 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 2367 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2368 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2369 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2370 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2371 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2372 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2373 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2374 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 2375 | } |
| 2376 | |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 2377 | static u32 vmx_get_pkru(struct kvm_vcpu *vcpu) |
| 2378 | { |
| 2379 | return to_vmx(vcpu)->guest_pkru; |
| 2380 | } |
| 2381 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2382 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2383 | { |
| 2384 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2385 | int ret = 0; |
| 2386 | |
| 2387 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2388 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2389 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2390 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2391 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2392 | return ret; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2393 | } |
| 2394 | |
| 2395 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 2396 | { |
| 2397 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2398 | u32 interruptibility = interruptibility_old; |
| 2399 | |
| 2400 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 2401 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2402 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2403 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2404 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2405 | interruptibility |= GUEST_INTR_STATE_STI; |
| 2406 | |
| 2407 | if ((interruptibility != interruptibility_old)) |
| 2408 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 2409 | } |
| 2410 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2411 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 2412 | { |
| 2413 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2414 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2415 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2416 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2417 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2418 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2419 | /* skipping an emulated instruction also counts */ |
| 2420 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2421 | } |
| 2422 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2423 | /* |
| 2424 | * KVM wants to inject page-faults which it got to the guest. This function |
| 2425 | * 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] | 2426 | */ |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2427 | 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] | 2428 | { |
| 2429 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2430 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2431 | if (!(vmcs12->exception_bitmap & (1u << nr))) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2432 | return 0; |
| 2433 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 2434 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 2435 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 2436 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2437 | return 1; |
| 2438 | } |
| 2439 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2440 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 2441 | bool has_error_code, u32 error_code, |
| 2442 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2443 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2444 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2445 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2446 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2447 | if (!reinject && is_guest_mode(vcpu) && |
| 2448 | nested_vmx_check_exception(vcpu, nr)) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2449 | return; |
| 2450 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2451 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2452 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2453 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2454 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2455 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2456 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 2457 | int inc_eip = 0; |
| 2458 | if (kvm_exception_is_soft(nr)) |
| 2459 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 2460 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 2461 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2462 | return; |
| 2463 | } |
| 2464 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2465 | if (kvm_exception_is_soft(nr)) { |
| 2466 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 2467 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2468 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2469 | } else |
| 2470 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2471 | |
| 2472 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2473 | } |
| 2474 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2475 | static bool vmx_rdtscp_supported(void) |
| 2476 | { |
| 2477 | return cpu_has_vmx_rdtscp(); |
| 2478 | } |
| 2479 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2480 | static bool vmx_invpcid_supported(void) |
| 2481 | { |
| 2482 | return cpu_has_vmx_invpcid() && enable_ept; |
| 2483 | } |
| 2484 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2485 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2486 | * Swap MSR entry in host/guest MSR entry array. |
| 2487 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2488 | 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] | 2489 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2490 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2491 | |
| 2492 | tmp = vmx->guest_msrs[to]; |
| 2493 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 2494 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2495 | } |
| 2496 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2497 | static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu) |
| 2498 | { |
| 2499 | unsigned long *msr_bitmap; |
| 2500 | |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 2501 | if (is_guest_mode(vcpu)) |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 2502 | msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap; |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 2503 | else if (cpu_has_secondary_exec_ctrls() && |
| 2504 | (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) & |
| 2505 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2506 | if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) { |
| 2507 | if (is_long_mode(vcpu)) |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 2508 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv; |
| 2509 | else |
| 2510 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv; |
| 2511 | } else { |
| 2512 | if (is_long_mode(vcpu)) |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2513 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic; |
| 2514 | else |
| 2515 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic; |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2516 | } |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2517 | } else { |
| 2518 | if (is_long_mode(vcpu)) |
| 2519 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 2520 | else |
| 2521 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 2522 | } |
| 2523 | |
| 2524 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 2525 | } |
| 2526 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2527 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2528 | * Set up the vmcs to automatically save and restore system |
| 2529 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 2530 | * mode, as fiddling with msrs is very expensive. |
| 2531 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2532 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2533 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2534 | int save_nmsrs, index; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2535 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2536 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2537 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2538 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2539 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2540 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2541 | move_msr_up(vmx, index, save_nmsrs++); |
| 2542 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2543 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2544 | move_msr_up(vmx, index, save_nmsrs++); |
| 2545 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2546 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2547 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2548 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2549 | if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2550 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2551 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2552 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2553 | * if efer.sce is enabled. |
| 2554 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2555 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2556 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2557 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2558 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2559 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2560 | index = __find_msr_index(vmx, MSR_EFER); |
| 2561 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2562 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2563 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2564 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 2565 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2566 | if (cpu_has_vmx_msr_bitmap()) |
| 2567 | vmx_set_msr_bitmap(&vmx->vcpu); |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2568 | } |
| 2569 | |
| 2570 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2571 | * reads and returns guest's timestamp counter "register" |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2572 | * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset |
| 2573 | * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2574 | */ |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2575 | static u64 guest_read_tsc(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2576 | { |
| 2577 | u64 host_tsc, tsc_offset; |
| 2578 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2579 | host_tsc = rdtsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2580 | tsc_offset = vmcs_read64(TSC_OFFSET); |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2581 | return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2582 | } |
| 2583 | |
| 2584 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2585 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2586 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2587 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2588 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2589 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2590 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2591 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 2592 | * to the spec, this should set L1's TSC; The offset that L1 |
| 2593 | * set for L2 remains unchanged, and still needs to be added |
| 2594 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2595 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2596 | struct vmcs12 *vmcs12; |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2597 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 2598 | vmcs12 = get_vmcs12(vcpu); |
| 2599 | vmcs_write64(TSC_OFFSET, offset + |
| 2600 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 2601 | vmcs12->tsc_offset : 0)); |
| 2602 | } else { |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2603 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, |
| 2604 | vmcs_read64(TSC_OFFSET), offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2605 | vmcs_write64(TSC_OFFSET, offset); |
| 2606 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2607 | } |
| 2608 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2609 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 2610 | { |
| 2611 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 2612 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 2613 | } |
| 2614 | |
| 2615 | /* |
| 2616 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 2617 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 2618 | * all guests if the "nested" module option is off, and can also be disabled |
| 2619 | * for a single guest by disabling its VMX cpuid bit. |
| 2620 | */ |
| 2621 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 2622 | { |
| 2623 | return nested && guest_cpuid_has_vmx(vcpu); |
| 2624 | } |
| 2625 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2626 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2627 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 2628 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 2629 | * The same values should also be used to verify that vmcs12 control fields are |
| 2630 | * valid during nested entry from L1 to L2. |
| 2631 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 2632 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 2633 | * bit in the high half is on if the corresponding bit in the control field |
| 2634 | * may be on. See also vmx_control_verify(). |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2635 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2636 | static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx) |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2637 | { |
| 2638 | /* |
| 2639 | * Note that as a general rule, the high half of the MSRs (bits in |
| 2640 | * the control fields which may be 1) should be initialized by the |
| 2641 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2642 | * can be supported) and the list of features we want to expose - |
| 2643 | * because they are known to be properly supported in our code. |
| 2644 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2645 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2646 | * reason is that if one of these bits is necessary, it will appear |
| 2647 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2648 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 2649 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 2650 | * These rules have exceptions below. |
| 2651 | */ |
| 2652 | |
| 2653 | /* pin-based controls */ |
Jan Kiszka | eabeaac | 2013-03-13 11:30:50 +0100 | [diff] [blame] | 2654 | rdmsr(MSR_IA32_VMX_PINBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2655 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2656 | vmx->nested.nested_vmx_pinbased_ctls_high); |
| 2657 | vmx->nested.nested_vmx_pinbased_ctls_low |= |
| 2658 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2659 | vmx->nested.nested_vmx_pinbased_ctls_high &= |
| 2660 | PIN_BASED_EXT_INTR_MASK | |
| 2661 | PIN_BASED_NMI_EXITING | |
| 2662 | PIN_BASED_VIRTUAL_NMIS; |
| 2663 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2664 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 2665 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 2666 | if (kvm_vcpu_apicv_active(&vmx->vcpu)) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 2667 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2668 | PIN_BASED_POSTED_INTR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2669 | |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2670 | /* exit controls */ |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2671 | rdmsr(MSR_IA32_VMX_EXIT_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2672 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2673 | vmx->nested.nested_vmx_exit_ctls_high); |
| 2674 | vmx->nested.nested_vmx_exit_ctls_low = |
| 2675 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2676 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2677 | vmx->nested.nested_vmx_exit_ctls_high &= |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2678 | #ifdef CONFIG_X86_64 |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2679 | VM_EXIT_HOST_ADDR_SPACE_SIZE | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2680 | #endif |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2681 | VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2682 | vmx->nested.nested_vmx_exit_ctls_high |= |
| 2683 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2684 | VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2685 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; |
| 2686 | |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 2687 | if (kvm_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2688 | vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2689 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2690 | /* We support free control of debug control saving. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2691 | vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2692 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2693 | /* entry controls */ |
| 2694 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2695 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2696 | vmx->nested.nested_vmx_entry_ctls_high); |
| 2697 | vmx->nested.nested_vmx_entry_ctls_low = |
| 2698 | VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2699 | vmx->nested.nested_vmx_entry_ctls_high &= |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2700 | #ifdef CONFIG_X86_64 |
| 2701 | VM_ENTRY_IA32E_MODE | |
| 2702 | #endif |
| 2703 | VM_ENTRY_LOAD_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2704 | vmx->nested.nested_vmx_entry_ctls_high |= |
| 2705 | (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 2706 | if (kvm_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2707 | vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2708 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2709 | /* We support free control of debug control loading. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2710 | vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2711 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2712 | /* cpu-based controls */ |
| 2713 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2714 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2715 | vmx->nested.nested_vmx_procbased_ctls_high); |
| 2716 | vmx->nested.nested_vmx_procbased_ctls_low = |
| 2717 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2718 | vmx->nested.nested_vmx_procbased_ctls_high &= |
Jan Kiszka | a294c9b | 2013-10-23 17:43:09 +0100 | [diff] [blame] | 2719 | CPU_BASED_VIRTUAL_INTR_PENDING | |
| 2720 | CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2721 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2722 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2723 | CPU_BASED_CR3_STORE_EXITING | |
| 2724 | #ifdef CONFIG_X86_64 |
| 2725 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2726 | #endif |
| 2727 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 2728 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG | |
| 2729 | CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING | |
| 2730 | CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING | |
| 2731 | CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2732 | /* |
| 2733 | * We can allow some features even when not supported by the |
| 2734 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2735 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2736 | * without MSR bitmaps. |
| 2737 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2738 | vmx->nested.nested_vmx_procbased_ctls_high |= |
| 2739 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 560b7ee | 2014-06-16 13:59:42 +0200 | [diff] [blame] | 2740 | CPU_BASED_USE_MSR_BITMAPS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2741 | |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2742 | /* We support free control of CR3 access interception. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2743 | vmx->nested.nested_vmx_procbased_ctls_low &= |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2744 | ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING); |
| 2745 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2746 | /* secondary cpu-based controls */ |
| 2747 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2748 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2749 | vmx->nested.nested_vmx_secondary_ctls_high); |
| 2750 | vmx->nested.nested_vmx_secondary_ctls_low = 0; |
| 2751 | vmx->nested.nested_vmx_secondary_ctls_high &= |
Jan Kiszka | d6851fb | 2013-02-23 22:34:39 +0100 | [diff] [blame] | 2752 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 2753 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 1b07304 | 2016-10-25 16:06:30 +0200 | [diff] [blame] | 2754 | SECONDARY_EXEC_DESC | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 2755 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 2756 | SECONDARY_EXEC_ENABLE_VPID | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 2757 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 2758 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 2759 | SECONDARY_EXEC_WBINVD_EXITING | |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 2760 | SECONDARY_EXEC_XSAVES; |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2761 | |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2762 | if (enable_ept) { |
| 2763 | /* nested EPT: emulate EPT also to L1 */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2764 | vmx->nested.nested_vmx_secondary_ctls_high |= |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2765 | SECONDARY_EXEC_ENABLE_EPT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2766 | vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT | |
Jan Kiszka | d3134db | 2013-10-23 14:40:31 +0100 | [diff] [blame] | 2767 | VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT | |
| 2768 | VMX_EPT_INVEPT_BIT; |
Bandan Das | 02120c4 | 2016-07-12 18:18:52 -0400 | [diff] [blame] | 2769 | if (cpu_has_vmx_ept_execute_only()) |
| 2770 | vmx->nested.nested_vmx_ept_caps |= |
| 2771 | VMX_EPT_EXECUTE_ONLY_BIT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2772 | vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept; |
Bandan Das | 45e1181 | 2016-08-02 16:32:36 -0400 | [diff] [blame] | 2773 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT | |
| 2774 | VMX_EPT_EXTENT_CONTEXT_BIT; |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2775 | } else |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2776 | vmx->nested.nested_vmx_ept_caps = 0; |
Nadav Har'El | afa61f7 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2777 | |
Paolo Bonzini | ef697a7 | 2016-03-18 16:58:38 +0100 | [diff] [blame] | 2778 | /* |
| 2779 | * Old versions of KVM use the single-context version without |
| 2780 | * checking for support, so declare that it is supported even |
| 2781 | * though it is treated as global context. The alternative is |
| 2782 | * not failing the single-context invvpid, and it is worse. |
| 2783 | */ |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 2784 | if (enable_vpid) |
| 2785 | vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 2786 | VMX_VPID_EXTENT_SUPPORTED_MASK; |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 2787 | else |
| 2788 | vmx->nested.nested_vmx_vpid_caps = 0; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 2789 | |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2790 | if (enable_unrestricted_guest) |
| 2791 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2792 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 2793 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2794 | /* miscellaneous data */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2795 | rdmsr(MSR_IA32_VMX_MISC, |
| 2796 | vmx->nested.nested_vmx_misc_low, |
| 2797 | vmx->nested.nested_vmx_misc_high); |
| 2798 | vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA; |
| 2799 | vmx->nested.nested_vmx_misc_low |= |
| 2800 | VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2801 | VMX_MISC_ACTIVITY_HLT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2802 | vmx->nested.nested_vmx_misc_high = 0; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2803 | |
| 2804 | /* |
| 2805 | * This MSR reports some information about VMX support. We |
| 2806 | * should return information about the VMX we emulate for the |
| 2807 | * guest, and the VMCS structure we give it - not about the |
| 2808 | * VMX support of the underlying hardware. |
| 2809 | */ |
| 2810 | vmx->nested.nested_vmx_basic = |
| 2811 | VMCS12_REVISION | |
| 2812 | VMX_BASIC_TRUE_CTLS | |
| 2813 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2814 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2815 | |
| 2816 | if (cpu_has_vmx_basic_inout()) |
| 2817 | vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT; |
| 2818 | |
| 2819 | /* |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 2820 | * These MSRs specify bits which the guest must keep fixed on |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2821 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2822 | * We picked the standard core2 setting. |
| 2823 | */ |
| 2824 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2825 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2826 | vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2827 | vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON; |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 2828 | |
| 2829 | /* These MSRs specify bits which the guest must keep fixed off. */ |
| 2830 | rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1); |
| 2831 | rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1); |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2832 | |
| 2833 | /* highest index: VMX_PREEMPTION_TIMER_VALUE */ |
| 2834 | vmx->nested.nested_vmx_vmcs_enum = 0x2e; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2835 | } |
| 2836 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 2837 | /* |
| 2838 | * if fixed0[i] == 1: val[i] must be 1 |
| 2839 | * if fixed1[i] == 0: val[i] must be 0 |
| 2840 | */ |
| 2841 | static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1) |
| 2842 | { |
| 2843 | return ((val & fixed1) | fixed0) == val; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2844 | } |
| 2845 | |
| 2846 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2847 | { |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 2848 | return fixed_bits_valid(control, low, high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2852 | { |
| 2853 | return low | ((u64)high << 32); |
| 2854 | } |
| 2855 | |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2856 | static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask) |
| 2857 | { |
| 2858 | superset &= mask; |
| 2859 | subset &= mask; |
| 2860 | |
| 2861 | return (superset | subset) == superset; |
| 2862 | } |
| 2863 | |
| 2864 | static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data) |
| 2865 | { |
| 2866 | const u64 feature_and_reserved = |
| 2867 | /* feature (except bit 48; see below) */ |
| 2868 | BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) | |
| 2869 | /* reserved */ |
| 2870 | BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56); |
| 2871 | u64 vmx_basic = vmx->nested.nested_vmx_basic; |
| 2872 | |
| 2873 | if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved)) |
| 2874 | return -EINVAL; |
| 2875 | |
| 2876 | /* |
| 2877 | * KVM does not emulate a version of VMX that constrains physical |
| 2878 | * addresses of VMX structures (e.g. VMCS) to 32-bits. |
| 2879 | */ |
| 2880 | if (data & BIT_ULL(48)) |
| 2881 | return -EINVAL; |
| 2882 | |
| 2883 | if (vmx_basic_vmcs_revision_id(vmx_basic) != |
| 2884 | vmx_basic_vmcs_revision_id(data)) |
| 2885 | return -EINVAL; |
| 2886 | |
| 2887 | if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data)) |
| 2888 | return -EINVAL; |
| 2889 | |
| 2890 | vmx->nested.nested_vmx_basic = data; |
| 2891 | return 0; |
| 2892 | } |
| 2893 | |
| 2894 | static int |
| 2895 | vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) |
| 2896 | { |
| 2897 | u64 supported; |
| 2898 | u32 *lowp, *highp; |
| 2899 | |
| 2900 | switch (msr_index) { |
| 2901 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2902 | lowp = &vmx->nested.nested_vmx_pinbased_ctls_low; |
| 2903 | highp = &vmx->nested.nested_vmx_pinbased_ctls_high; |
| 2904 | break; |
| 2905 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 2906 | lowp = &vmx->nested.nested_vmx_procbased_ctls_low; |
| 2907 | highp = &vmx->nested.nested_vmx_procbased_ctls_high; |
| 2908 | break; |
| 2909 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 2910 | lowp = &vmx->nested.nested_vmx_exit_ctls_low; |
| 2911 | highp = &vmx->nested.nested_vmx_exit_ctls_high; |
| 2912 | break; |
| 2913 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 2914 | lowp = &vmx->nested.nested_vmx_entry_ctls_low; |
| 2915 | highp = &vmx->nested.nested_vmx_entry_ctls_high; |
| 2916 | break; |
| 2917 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 2918 | lowp = &vmx->nested.nested_vmx_secondary_ctls_low; |
| 2919 | highp = &vmx->nested.nested_vmx_secondary_ctls_high; |
| 2920 | break; |
| 2921 | default: |
| 2922 | BUG(); |
| 2923 | } |
| 2924 | |
| 2925 | supported = vmx_control_msr(*lowp, *highp); |
| 2926 | |
| 2927 | /* Check must-be-1 bits are still 1. */ |
| 2928 | if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0))) |
| 2929 | return -EINVAL; |
| 2930 | |
| 2931 | /* Check must-be-0 bits are still 0. */ |
| 2932 | if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32))) |
| 2933 | return -EINVAL; |
| 2934 | |
| 2935 | *lowp = data; |
| 2936 | *highp = data >> 32; |
| 2937 | return 0; |
| 2938 | } |
| 2939 | |
| 2940 | static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data) |
| 2941 | { |
| 2942 | const u64 feature_and_reserved_bits = |
| 2943 | /* feature */ |
| 2944 | BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) | |
| 2945 | BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) | |
| 2946 | /* reserved */ |
| 2947 | GENMASK_ULL(13, 9) | BIT_ULL(31); |
| 2948 | u64 vmx_misc; |
| 2949 | |
| 2950 | vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low, |
| 2951 | vmx->nested.nested_vmx_misc_high); |
| 2952 | |
| 2953 | if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits)) |
| 2954 | return -EINVAL; |
| 2955 | |
| 2956 | if ((vmx->nested.nested_vmx_pinbased_ctls_high & |
| 2957 | PIN_BASED_VMX_PREEMPTION_TIMER) && |
| 2958 | vmx_misc_preemption_timer_rate(data) != |
| 2959 | vmx_misc_preemption_timer_rate(vmx_misc)) |
| 2960 | return -EINVAL; |
| 2961 | |
| 2962 | if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc)) |
| 2963 | return -EINVAL; |
| 2964 | |
| 2965 | if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc)) |
| 2966 | return -EINVAL; |
| 2967 | |
| 2968 | if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc)) |
| 2969 | return -EINVAL; |
| 2970 | |
| 2971 | vmx->nested.nested_vmx_misc_low = data; |
| 2972 | vmx->nested.nested_vmx_misc_high = data >> 32; |
| 2973 | return 0; |
| 2974 | } |
| 2975 | |
| 2976 | static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data) |
| 2977 | { |
| 2978 | u64 vmx_ept_vpid_cap; |
| 2979 | |
| 2980 | vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps, |
| 2981 | vmx->nested.nested_vmx_vpid_caps); |
| 2982 | |
| 2983 | /* Every bit is either reserved or a feature bit. */ |
| 2984 | if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL)) |
| 2985 | return -EINVAL; |
| 2986 | |
| 2987 | vmx->nested.nested_vmx_ept_caps = data; |
| 2988 | vmx->nested.nested_vmx_vpid_caps = data >> 32; |
| 2989 | return 0; |
| 2990 | } |
| 2991 | |
| 2992 | static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) |
| 2993 | { |
| 2994 | u64 *msr; |
| 2995 | |
| 2996 | switch (msr_index) { |
| 2997 | case MSR_IA32_VMX_CR0_FIXED0: |
| 2998 | msr = &vmx->nested.nested_vmx_cr0_fixed0; |
| 2999 | break; |
| 3000 | case MSR_IA32_VMX_CR4_FIXED0: |
| 3001 | msr = &vmx->nested.nested_vmx_cr4_fixed0; |
| 3002 | break; |
| 3003 | default: |
| 3004 | BUG(); |
| 3005 | } |
| 3006 | |
| 3007 | /* |
| 3008 | * 1 bits (which indicates bits which "must-be-1" during VMX operation) |
| 3009 | * must be 1 in the restored value. |
| 3010 | */ |
| 3011 | if (!is_bitwise_subset(data, *msr, -1ULL)) |
| 3012 | return -EINVAL; |
| 3013 | |
| 3014 | *msr = data; |
| 3015 | return 0; |
| 3016 | } |
| 3017 | |
| 3018 | /* |
| 3019 | * Called when userspace is restoring VMX MSRs. |
| 3020 | * |
| 3021 | * Returns 0 on success, non-0 otherwise. |
| 3022 | */ |
| 3023 | static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data) |
| 3024 | { |
| 3025 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3026 | |
| 3027 | switch (msr_index) { |
| 3028 | case MSR_IA32_VMX_BASIC: |
| 3029 | return vmx_restore_vmx_basic(vmx, data); |
| 3030 | case MSR_IA32_VMX_PINBASED_CTLS: |
| 3031 | case MSR_IA32_VMX_PROCBASED_CTLS: |
| 3032 | case MSR_IA32_VMX_EXIT_CTLS: |
| 3033 | case MSR_IA32_VMX_ENTRY_CTLS: |
| 3034 | /* |
| 3035 | * The "non-true" VMX capability MSRs are generated from the |
| 3036 | * "true" MSRs, so we do not support restoring them directly. |
| 3037 | * |
| 3038 | * If userspace wants to emulate VMX_BASIC[55]=0, userspace |
| 3039 | * should restore the "true" MSRs with the must-be-1 bits |
| 3040 | * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND |
| 3041 | * DEFAULT SETTINGS". |
| 3042 | */ |
| 3043 | return -EINVAL; |
| 3044 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 3045 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 3046 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 3047 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 3048 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 3049 | return vmx_restore_control_msr(vmx, msr_index, data); |
| 3050 | case MSR_IA32_VMX_MISC: |
| 3051 | return vmx_restore_vmx_misc(vmx, data); |
| 3052 | case MSR_IA32_VMX_CR0_FIXED0: |
| 3053 | case MSR_IA32_VMX_CR4_FIXED0: |
| 3054 | return vmx_restore_fixed0_msr(vmx, msr_index, data); |
| 3055 | case MSR_IA32_VMX_CR0_FIXED1: |
| 3056 | case MSR_IA32_VMX_CR4_FIXED1: |
| 3057 | /* |
| 3058 | * These MSRs are generated based on the vCPU's CPUID, so we |
| 3059 | * do not support restoring them directly. |
| 3060 | */ |
| 3061 | return -EINVAL; |
| 3062 | case MSR_IA32_VMX_EPT_VPID_CAP: |
| 3063 | return vmx_restore_vmx_ept_vpid_cap(vmx, data); |
| 3064 | case MSR_IA32_VMX_VMCS_ENUM: |
| 3065 | vmx->nested.nested_vmx_vmcs_enum = data; |
| 3066 | return 0; |
| 3067 | default: |
| 3068 | /* |
| 3069 | * The rest of the VMX capability MSRs do not support restore. |
| 3070 | */ |
| 3071 | return -EINVAL; |
| 3072 | } |
| 3073 | } |
| 3074 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3075 | /* Returns 0 on success, non-0 otherwise. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3076 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 3077 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3078 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3079 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3080 | switch (msr_index) { |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3081 | case MSR_IA32_VMX_BASIC: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3082 | *pdata = vmx->nested.nested_vmx_basic; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3083 | break; |
| 3084 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 3085 | case MSR_IA32_VMX_PINBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3086 | *pdata = vmx_control_msr( |
| 3087 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 3088 | vmx->nested.nested_vmx_pinbased_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3089 | if (msr_index == MSR_IA32_VMX_PINBASED_CTLS) |
| 3090 | *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3091 | break; |
| 3092 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 3093 | case MSR_IA32_VMX_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3094 | *pdata = vmx_control_msr( |
| 3095 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 3096 | vmx->nested.nested_vmx_procbased_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3097 | if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS) |
| 3098 | *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3099 | break; |
| 3100 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 3101 | case MSR_IA32_VMX_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3102 | *pdata = vmx_control_msr( |
| 3103 | vmx->nested.nested_vmx_exit_ctls_low, |
| 3104 | vmx->nested.nested_vmx_exit_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3105 | if (msr_index == MSR_IA32_VMX_EXIT_CTLS) |
| 3106 | *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3107 | break; |
| 3108 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 3109 | case MSR_IA32_VMX_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3110 | *pdata = vmx_control_msr( |
| 3111 | vmx->nested.nested_vmx_entry_ctls_low, |
| 3112 | vmx->nested.nested_vmx_entry_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3113 | if (msr_index == MSR_IA32_VMX_ENTRY_CTLS) |
| 3114 | *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3115 | break; |
| 3116 | case MSR_IA32_VMX_MISC: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3117 | *pdata = vmx_control_msr( |
| 3118 | vmx->nested.nested_vmx_misc_low, |
| 3119 | vmx->nested.nested_vmx_misc_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3120 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3121 | case MSR_IA32_VMX_CR0_FIXED0: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3122 | *pdata = vmx->nested.nested_vmx_cr0_fixed0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3123 | break; |
| 3124 | case MSR_IA32_VMX_CR0_FIXED1: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3125 | *pdata = vmx->nested.nested_vmx_cr0_fixed1; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3126 | break; |
| 3127 | case MSR_IA32_VMX_CR4_FIXED0: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3128 | *pdata = vmx->nested.nested_vmx_cr4_fixed0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3129 | break; |
| 3130 | case MSR_IA32_VMX_CR4_FIXED1: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3131 | *pdata = vmx->nested.nested_vmx_cr4_fixed1; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3132 | break; |
| 3133 | case MSR_IA32_VMX_VMCS_ENUM: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3134 | *pdata = vmx->nested.nested_vmx_vmcs_enum; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3135 | break; |
| 3136 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3137 | *pdata = vmx_control_msr( |
| 3138 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 3139 | vmx->nested.nested_vmx_secondary_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3140 | break; |
| 3141 | case MSR_IA32_VMX_EPT_VPID_CAP: |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 3142 | *pdata = vmx->nested.nested_vmx_ept_caps | |
| 3143 | ((u64)vmx->nested.nested_vmx_vpid_caps << 32); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3144 | break; |
| 3145 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3146 | return 1; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 3147 | } |
| 3148 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3149 | return 0; |
| 3150 | } |
| 3151 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 3152 | static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu, |
| 3153 | uint64_t val) |
| 3154 | { |
| 3155 | uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits; |
| 3156 | |
| 3157 | return !(val & ~valid_bits); |
| 3158 | } |
| 3159 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3160 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3161 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 3162 | * Returns 0 on success, non-0 otherwise. |
| 3163 | * Assumes vcpu_load() was already called. |
| 3164 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3165 | static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3166 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3167 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3168 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3169 | switch (msr_info->index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3170 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3171 | case MSR_FS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3172 | msr_info->data = vmcs_readl(GUEST_FS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3173 | break; |
| 3174 | case MSR_GS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3175 | msr_info->data = vmcs_readl(GUEST_GS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3176 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3177 | case MSR_KERNEL_GS_BASE: |
| 3178 | vmx_load_host_state(to_vmx(vcpu)); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3179 | msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3180 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3181 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3182 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3183 | return kvm_get_msr_common(vcpu, msr_info); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 3184 | case MSR_IA32_TSC: |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 3185 | msr_info->data = guest_read_tsc(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3186 | break; |
| 3187 | case MSR_IA32_SYSENTER_CS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3188 | msr_info->data = vmcs_read32(GUEST_SYSENTER_CS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3189 | break; |
| 3190 | case MSR_IA32_SYSENTER_EIP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3191 | msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3192 | break; |
| 3193 | case MSR_IA32_SYSENTER_ESP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3194 | msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3195 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3196 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 3197 | if (!kvm_mpx_supported()) |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 3198 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3199 | msr_info->data = vmcs_read64(GUEST_BNDCFGS); |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3200 | break; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3201 | case MSR_IA32_MCG_EXT_CTL: |
| 3202 | if (!msr_info->host_initiated && |
| 3203 | !(to_vmx(vcpu)->msr_ia32_feature_control & |
| 3204 | FEATURE_CONTROL_LMCE)) |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3205 | return 1; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3206 | msr_info->data = vcpu->arch.mcg_ext_ctl; |
| 3207 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3208 | case MSR_IA32_FEATURE_CONTROL: |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3209 | msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3210 | break; |
| 3211 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 3212 | if (!nested_vmx_allowed(vcpu)) |
| 3213 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3214 | return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3215 | case MSR_IA32_XSS: |
| 3216 | if (!vmx_xsaves_supported()) |
| 3217 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3218 | msr_info->data = vcpu->arch.ia32_xss; |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3219 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3220 | case MSR_TSC_AUX: |
Haozhong Zhang | 81b1b9c | 2015-12-14 23:13:38 +0800 | [diff] [blame] | 3221 | if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3222 | return 1; |
| 3223 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3224 | default: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3225 | msr = find_msr_entry(to_vmx(vcpu), msr_info->index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3226 | if (msr) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3227 | msr_info->data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3228 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3229 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3230 | return kvm_get_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3231 | } |
| 3232 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3233 | return 0; |
| 3234 | } |
| 3235 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3236 | static void vmx_leave_nested(struct kvm_vcpu *vcpu); |
| 3237 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3238 | /* |
| 3239 | * Writes msr value into into the appropriate "register". |
| 3240 | * Returns 0 on success, non-0 otherwise. |
| 3241 | * Assumes vcpu_load() was already called. |
| 3242 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3243 | 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] | 3244 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3245 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3246 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3247 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3248 | u32 msr_index = msr_info->index; |
| 3249 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3250 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3251 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3252 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3253 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3254 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 3255 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3256 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3257 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3258 | vmcs_writel(GUEST_FS_BASE, data); |
| 3259 | break; |
| 3260 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3261 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3262 | vmcs_writel(GUEST_GS_BASE, data); |
| 3263 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3264 | case MSR_KERNEL_GS_BASE: |
| 3265 | vmx_load_host_state(vmx); |
| 3266 | vmx->msr_guest_kernel_gs_base = data; |
| 3267 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3268 | #endif |
| 3269 | case MSR_IA32_SYSENTER_CS: |
| 3270 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 3271 | break; |
| 3272 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 3273 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3274 | break; |
| 3275 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 3276 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3277 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3278 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 3279 | if (!kvm_mpx_supported()) |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 3280 | return 1; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3281 | vmcs_write64(GUEST_BNDCFGS, data); |
| 3282 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 3283 | case MSR_IA32_TSC: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3284 | kvm_write_tsc(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3285 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3286 | case MSR_IA32_CR_PAT: |
| 3287 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Amit | 4566654 | 2014-09-18 22:39:44 +0300 | [diff] [blame] | 3288 | if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data)) |
| 3289 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3290 | vmcs_write64(GUEST_IA32_PAT, data); |
| 3291 | vcpu->arch.pat = data; |
| 3292 | break; |
| 3293 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3294 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3295 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 3296 | case MSR_IA32_TSC_ADJUST: |
| 3297 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3298 | break; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3299 | case MSR_IA32_MCG_EXT_CTL: |
| 3300 | if ((!msr_info->host_initiated && |
| 3301 | !(to_vmx(vcpu)->msr_ia32_feature_control & |
| 3302 | FEATURE_CONTROL_LMCE)) || |
| 3303 | (data & ~MCG_EXT_CTL_LMCE_EN)) |
| 3304 | return 1; |
| 3305 | vcpu->arch.mcg_ext_ctl = data; |
| 3306 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3307 | case MSR_IA32_FEATURE_CONTROL: |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 3308 | if (!vmx_feature_control_msr_valid(vcpu, data) || |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3309 | (to_vmx(vcpu)->msr_ia32_feature_control & |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3310 | FEATURE_CONTROL_LOCKED && !msr_info->host_initiated)) |
| 3311 | return 1; |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3312 | vmx->msr_ia32_feature_control = data; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3313 | if (msr_info->host_initiated && data == 0) |
| 3314 | vmx_leave_nested(vcpu); |
| 3315 | break; |
| 3316 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3317 | if (!msr_info->host_initiated) |
| 3318 | return 1; /* they are read-only */ |
| 3319 | if (!nested_vmx_allowed(vcpu)) |
| 3320 | return 1; |
| 3321 | return vmx_set_vmx_msr(vcpu, msr_index, data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3322 | case MSR_IA32_XSS: |
| 3323 | if (!vmx_xsaves_supported()) |
| 3324 | return 1; |
| 3325 | /* |
| 3326 | * The only supported bit as of Skylake is bit 8, but |
| 3327 | * it is not supported on KVM. |
| 3328 | */ |
| 3329 | if (data != 0) |
| 3330 | return 1; |
| 3331 | vcpu->arch.ia32_xss = data; |
| 3332 | if (vcpu->arch.ia32_xss != host_xss) |
| 3333 | add_atomic_switch_msr(vmx, MSR_IA32_XSS, |
| 3334 | vcpu->arch.ia32_xss, host_xss); |
| 3335 | else |
| 3336 | clear_atomic_switch_msr(vmx, MSR_IA32_XSS); |
| 3337 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3338 | case MSR_TSC_AUX: |
Haozhong Zhang | 81b1b9c | 2015-12-14 23:13:38 +0800 | [diff] [blame] | 3339 | if (!guest_cpuid_has_rdtscp(vcpu) && !msr_info->host_initiated) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3340 | return 1; |
| 3341 | /* Check reserved bit, higher 32 bits should be zero */ |
| 3342 | if ((data >> 32) != 0) |
| 3343 | return 1; |
| 3344 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3345 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3346 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3347 | if (msr) { |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3348 | u64 old_msr_data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3349 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3350 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 3351 | preempt_disable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3352 | ret = kvm_set_shared_msr(msr->index, msr->data, |
| 3353 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3354 | preempt_enable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3355 | if (ret) |
| 3356 | msr->data = old_msr_data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3357 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3358 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3359 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3360 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3361 | } |
| 3362 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3363 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3364 | } |
| 3365 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3366 | 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] | 3367 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3368 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 3369 | switch (reg) { |
| 3370 | case VCPU_REGS_RSP: |
| 3371 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 3372 | break; |
| 3373 | case VCPU_REGS_RIP: |
| 3374 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 3375 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3376 | case VCPU_EXREG_PDPTR: |
| 3377 | if (enable_ept) |
| 3378 | ept_save_pdptrs(vcpu); |
| 3379 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3380 | default: |
| 3381 | break; |
| 3382 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3383 | } |
| 3384 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3385 | static __init int cpu_has_kvm_support(void) |
| 3386 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 3387 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3388 | } |
| 3389 | |
| 3390 | static __init int vmx_disabled_by_bios(void) |
| 3391 | { |
| 3392 | u64 msr; |
| 3393 | |
| 3394 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3395 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3396 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3397 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 3398 | && tboot_enabled()) |
| 3399 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3400 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3401 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3402 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 3403 | && !tboot_enabled()) { |
| 3404 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3405 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3406 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 3407 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3408 | /* launched w/o TXT and VMX disabled */ |
| 3409 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 3410 | && !tboot_enabled()) |
| 3411 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3412 | } |
| 3413 | |
| 3414 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3415 | } |
| 3416 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 3417 | static void kvm_cpu_vmxon(u64 addr) |
| 3418 | { |
Alexander Shishkin | 1c5ac21 | 2016-03-29 17:43:10 +0300 | [diff] [blame] | 3419 | intel_pt_handle_vmx(1); |
| 3420 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 3421 | asm volatile (ASM_VMX_VMXON_RAX |
| 3422 | : : "a"(&addr), "m"(addr) |
| 3423 | : "memory", "cc"); |
| 3424 | } |
| 3425 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3426 | static int hardware_enable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3427 | { |
| 3428 | int cpu = raw_smp_processor_id(); |
| 3429 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3430 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3431 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 3432 | if (cr4_read_shadow() & X86_CR4_VMXE) |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3433 | return -EBUSY; |
| 3434 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3435 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 3436 | INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu)); |
| 3437 | spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 3438 | |
| 3439 | /* |
| 3440 | * Now we can enable the vmclear operation in kdump |
| 3441 | * since the loaded_vmcss_on_cpu list on this cpu |
| 3442 | * has been initialized. |
| 3443 | * |
| 3444 | * Though the cpu is not in VMX operation now, there |
| 3445 | * is no problem to enable the vmclear operation |
| 3446 | * for the loaded_vmcss_on_cpu list is empty! |
| 3447 | */ |
| 3448 | crash_enable_local_vmclear(cpu); |
| 3449 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3450 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3451 | |
| 3452 | test_bits = FEATURE_CONTROL_LOCKED; |
| 3453 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 3454 | if (tboot_enabled()) |
| 3455 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 3456 | |
| 3457 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3458 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3459 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 3460 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3461 | cr4_set_bits(X86_CR4_VMXE); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3462 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3463 | if (vmm_exclusive) { |
| 3464 | kvm_cpu_vmxon(phys_addr); |
| 3465 | ept_sync_global(); |
| 3466 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3467 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 3468 | native_store_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 3469 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3470 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3471 | } |
| 3472 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3473 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3474 | { |
| 3475 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3476 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3477 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3478 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 3479 | loaded_vmcss_on_cpu_link) |
| 3480 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3481 | } |
| 3482 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3483 | |
| 3484 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 3485 | * tricks. |
| 3486 | */ |
| 3487 | static void kvm_cpu_vmxoff(void) |
| 3488 | { |
| 3489 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Alexander Shishkin | 1c5ac21 | 2016-03-29 17:43:10 +0300 | [diff] [blame] | 3490 | |
| 3491 | intel_pt_handle_vmx(0); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3492 | } |
| 3493 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3494 | static void hardware_disable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3495 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3496 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3497 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3498 | kvm_cpu_vmxoff(); |
| 3499 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3500 | cr4_clear_bits(X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3501 | } |
| 3502 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3503 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3504 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3505 | { |
| 3506 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3507 | u32 ctl = ctl_min | ctl_opt; |
| 3508 | |
| 3509 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3510 | |
| 3511 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 3512 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 3513 | |
| 3514 | /* Ensure minimum (required) set of control bits are supported. */ |
| 3515 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3516 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3517 | |
| 3518 | *result = ctl; |
| 3519 | return 0; |
| 3520 | } |
| 3521 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3522 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 3523 | { |
| 3524 | u32 vmx_msr_low, vmx_msr_high; |
| 3525 | |
| 3526 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3527 | return vmx_msr_high & ctl; |
| 3528 | } |
| 3529 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3530 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3531 | { |
| 3532 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3533 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3534 | u32 _pin_based_exec_control = 0; |
| 3535 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3536 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3537 | u32 _vmexit_control = 0; |
| 3538 | u32 _vmentry_control = 0; |
| 3539 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 3540 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3541 | #ifdef CONFIG_X86_64 |
| 3542 | CPU_BASED_CR8_LOAD_EXITING | |
| 3543 | CPU_BASED_CR8_STORE_EXITING | |
| 3544 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3545 | CPU_BASED_CR3_LOAD_EXITING | |
| 3546 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3547 | CPU_BASED_USE_IO_BITMAPS | |
| 3548 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3549 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 3550 | CPU_BASED_MWAIT_EXITING | |
| 3551 | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 3552 | CPU_BASED_INVLPG_EXITING | |
| 3553 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3554 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3555 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3556 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3557 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3558 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 3559 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3560 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3561 | #ifdef CONFIG_X86_64 |
| 3562 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3563 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 3564 | ~CPU_BASED_CR8_STORE_EXITING; |
| 3565 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3566 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3567 | min2 = 0; |
| 3568 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3569 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3570 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3571 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3572 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3573 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3574 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3575 | SECONDARY_EXEC_RDTSCP | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3576 | SECONDARY_EXEC_ENABLE_INVPCID | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3577 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 3578 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3579 | SECONDARY_EXEC_SHADOW_VMCS | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 3580 | SECONDARY_EXEC_XSAVES | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 3581 | SECONDARY_EXEC_ENABLE_PML | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 3582 | SECONDARY_EXEC_TSC_SCALING; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3583 | if (adjust_vmx_controls(min2, opt2, |
| 3584 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3585 | &_cpu_based_2nd_exec_control) < 0) |
| 3586 | return -EIO; |
| 3587 | } |
| 3588 | #ifndef CONFIG_X86_64 |
| 3589 | if (!(_cpu_based_2nd_exec_control & |
| 3590 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 3591 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3592 | #endif |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3593 | |
| 3594 | if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3595 | _cpu_based_2nd_exec_control &= ~( |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3596 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3597 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 3598 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3599 | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3600 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3601 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 3602 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 3603 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3604 | CPU_BASED_CR3_STORE_EXITING | |
| 3605 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3606 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 3607 | vmx_capability.ept, vmx_capability.vpid); |
| 3608 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3609 | |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3610 | min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3611 | #ifdef CONFIG_X86_64 |
| 3612 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 3613 | #endif |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 3614 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT | |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3615 | VM_EXIT_CLEAR_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3616 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 3617 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3618 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3619 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3620 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 3621 | opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR | |
| 3622 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3623 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 3624 | &_pin_based_exec_control) < 0) |
| 3625 | return -EIO; |
| 3626 | |
Paolo Bonzini | 1c17c3e | 2016-07-08 11:53:38 +0200 | [diff] [blame] | 3627 | if (cpu_has_broken_vmx_preemption_timer()) |
| 3628 | _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3629 | if (!(_cpu_based_2nd_exec_control & |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3630 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3631 | _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR; |
| 3632 | |
Paolo Bonzini | c845f9c | 2014-02-21 10:55:44 +0100 | [diff] [blame] | 3633 | min = VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3634 | opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3635 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 3636 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3637 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3638 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3639 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3640 | |
| 3641 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 3642 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3643 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3644 | |
| 3645 | #ifdef CONFIG_X86_64 |
| 3646 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 3647 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3648 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3649 | #endif |
| 3650 | |
| 3651 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 3652 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3653 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3654 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3655 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
Paolo Bonzini | 16cb025 | 2016-09-05 15:57:00 +0200 | [diff] [blame] | 3656 | vmcs_conf->order = get_order(vmcs_conf->size); |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 3657 | vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3658 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3659 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3660 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 3661 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3662 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3663 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 3664 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3665 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3666 | cpu_has_load_ia32_efer = |
| 3667 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3668 | VM_ENTRY_LOAD_IA32_EFER) |
| 3669 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3670 | VM_EXIT_LOAD_IA32_EFER); |
| 3671 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3672 | cpu_has_load_perf_global_ctrl = |
| 3673 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3674 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 3675 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3676 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 3677 | |
| 3678 | /* |
| 3679 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 3680 | * but due to errata below it can't be used. Workaround is to use |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3681 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 3682 | * |
| 3683 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 3684 | * |
| 3685 | * AAK155 (model 26) |
| 3686 | * AAP115 (model 30) |
| 3687 | * AAT100 (model 37) |
| 3688 | * BC86,AAY89,BD102 (model 44) |
| 3689 | * BA97 (model 46) |
| 3690 | * |
| 3691 | */ |
| 3692 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 3693 | switch (boot_cpu_data.x86_model) { |
| 3694 | case 26: |
| 3695 | case 30: |
| 3696 | case 37: |
| 3697 | case 44: |
| 3698 | case 46: |
| 3699 | cpu_has_load_perf_global_ctrl = false; |
| 3700 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 3701 | "does not work properly. Using workaround\n"); |
| 3702 | break; |
| 3703 | default: |
| 3704 | break; |
| 3705 | } |
| 3706 | } |
| 3707 | |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 3708 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3709 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 3710 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3711 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3712 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3713 | |
| 3714 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 3715 | { |
| 3716 | int node = cpu_to_node(cpu); |
| 3717 | struct page *pages; |
| 3718 | struct vmcs *vmcs; |
| 3719 | |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 3720 | pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3721 | if (!pages) |
| 3722 | return NULL; |
| 3723 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3724 | memset(vmcs, 0, vmcs_config.size); |
| 3725 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3726 | return vmcs; |
| 3727 | } |
| 3728 | |
| 3729 | static struct vmcs *alloc_vmcs(void) |
| 3730 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 3731 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3732 | } |
| 3733 | |
| 3734 | static void free_vmcs(struct vmcs *vmcs) |
| 3735 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3736 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3737 | } |
| 3738 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3739 | /* |
| 3740 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 3741 | */ |
| 3742 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 3743 | { |
| 3744 | if (!loaded_vmcs->vmcs) |
| 3745 | return; |
| 3746 | loaded_vmcs_clear(loaded_vmcs); |
| 3747 | free_vmcs(loaded_vmcs->vmcs); |
| 3748 | loaded_vmcs->vmcs = NULL; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 3749 | WARN_ON(loaded_vmcs->shadow_vmcs != NULL); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3750 | } |
| 3751 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 3752 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3753 | { |
| 3754 | int cpu; |
| 3755 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3756 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3757 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3758 | per_cpu(vmxarea, cpu) = NULL; |
| 3759 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3760 | } |
| 3761 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3762 | static void init_vmcs_shadow_fields(void) |
| 3763 | { |
| 3764 | int i, j; |
| 3765 | |
| 3766 | /* No checks for read only fields yet */ |
| 3767 | |
| 3768 | for (i = j = 0; i < max_shadow_read_write_fields; i++) { |
| 3769 | switch (shadow_read_write_fields[i]) { |
| 3770 | case GUEST_BNDCFGS: |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 3771 | if (!kvm_mpx_supported()) |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3772 | continue; |
| 3773 | break; |
| 3774 | default: |
| 3775 | break; |
| 3776 | } |
| 3777 | |
| 3778 | if (j < i) |
| 3779 | shadow_read_write_fields[j] = |
| 3780 | shadow_read_write_fields[i]; |
| 3781 | j++; |
| 3782 | } |
| 3783 | max_shadow_read_write_fields = j; |
| 3784 | |
| 3785 | /* shadowed fields guest access without vmexit */ |
| 3786 | for (i = 0; i < max_shadow_read_write_fields; i++) { |
| 3787 | clear_bit(shadow_read_write_fields[i], |
| 3788 | vmx_vmwrite_bitmap); |
| 3789 | clear_bit(shadow_read_write_fields[i], |
| 3790 | vmx_vmread_bitmap); |
| 3791 | } |
| 3792 | for (i = 0; i < max_shadow_read_only_fields; i++) |
| 3793 | clear_bit(shadow_read_only_fields[i], |
| 3794 | vmx_vmread_bitmap); |
| 3795 | } |
| 3796 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3797 | static __init int alloc_kvm_area(void) |
| 3798 | { |
| 3799 | int cpu; |
| 3800 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3801 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3802 | struct vmcs *vmcs; |
| 3803 | |
| 3804 | vmcs = alloc_vmcs_cpu(cpu); |
| 3805 | if (!vmcs) { |
| 3806 | free_kvm_area(); |
| 3807 | return -ENOMEM; |
| 3808 | } |
| 3809 | |
| 3810 | per_cpu(vmxarea, cpu) = vmcs; |
| 3811 | } |
| 3812 | return 0; |
| 3813 | } |
| 3814 | |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3815 | static bool emulation_required(struct kvm_vcpu *vcpu) |
| 3816 | { |
| 3817 | return emulate_invalid_guest_state && !guest_state_valid(vcpu); |
| 3818 | } |
| 3819 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3820 | static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg, |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3821 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3822 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3823 | if (!emulate_invalid_guest_state) { |
| 3824 | /* |
| 3825 | * CS and SS RPL should be equal during guest entry according |
| 3826 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 3827 | * is in the middle of the transition from real mode to |
| 3828 | * protected mode it is safe to assume that RPL 0 is a good |
| 3829 | * default value. |
| 3830 | */ |
| 3831 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3832 | save->selector &= ~SEGMENT_RPL_MASK; |
| 3833 | save->dpl = save->selector & SEGMENT_RPL_MASK; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3834 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3835 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3836 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3837 | } |
| 3838 | |
| 3839 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 3840 | { |
| 3841 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3842 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3843 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3844 | /* |
| 3845 | * Update real mode segment cache. It may be not up-to-date if sement |
| 3846 | * register was written while vcpu was in a guest mode. |
| 3847 | */ |
| 3848 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3849 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3850 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3851 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 3852 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3853 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 3854 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3855 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3856 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3857 | vmx_segment_cache_clear(vmx); |
| 3858 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3859 | 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] | 3860 | |
| 3861 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3862 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 3863 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3864 | vmcs_writel(GUEST_RFLAGS, flags); |
| 3865 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3866 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 3867 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3868 | |
| 3869 | update_exception_bitmap(vcpu); |
| 3870 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3871 | fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3872 | fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3873 | fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3874 | fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3875 | fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 3876 | 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] | 3877 | } |
| 3878 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3879 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3880 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3881 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3882 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3883 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3884 | var.dpl = 0x3; |
| 3885 | if (seg == VCPU_SREG_CS) |
| 3886 | var.type = 0x3; |
| 3887 | |
| 3888 | if (!emulate_invalid_guest_state) { |
| 3889 | var.selector = var.base >> 4; |
| 3890 | var.base = var.base & 0xffff0; |
| 3891 | var.limit = 0xffff; |
| 3892 | var.g = 0; |
| 3893 | var.db = 0; |
| 3894 | var.present = 1; |
| 3895 | var.s = 1; |
| 3896 | var.l = 0; |
| 3897 | var.unusable = 0; |
| 3898 | var.type = 0x3; |
| 3899 | var.avl = 0; |
| 3900 | if (save->base & 0xf) |
| 3901 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 3902 | "paragraph aligned when entering " |
| 3903 | "protected mode (seg=%d)", seg); |
| 3904 | } |
| 3905 | |
| 3906 | vmcs_write16(sf->selector, var.selector); |
Chao Peng | 96794e4 | 2017-02-21 03:50:01 -0500 | [diff] [blame] | 3907 | vmcs_writel(sf->base, var.base); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3908 | vmcs_write32(sf->limit, var.limit); |
| 3909 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3910 | } |
| 3911 | |
| 3912 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 3913 | { |
| 3914 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3915 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3916 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3917 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 3918 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3919 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3920 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3921 | 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] | 3922 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3923 | 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] | 3924 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3925 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3926 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3927 | /* |
| 3928 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3929 | * vcpu. Warn the user that an update is overdue. |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3930 | */ |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3931 | if (!vcpu->kvm->arch.tss_addr) |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3932 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 3933 | "called before entering vcpu\n"); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3934 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3935 | vmx_segment_cache_clear(vmx); |
| 3936 | |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3937 | vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3938 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3939 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3940 | |
| 3941 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3942 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3943 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 3944 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3945 | |
| 3946 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3947 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3948 | update_exception_bitmap(vcpu); |
| 3949 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3950 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3951 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3952 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3953 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3954 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 3955 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3956 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 3957 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3958 | } |
| 3959 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3960 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 3961 | { |
| 3962 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3963 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 3964 | |
| 3965 | if (!msr) |
| 3966 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3967 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3968 | /* |
| 3969 | * Force kernel_gs_base reloading before EFER changes, as control |
| 3970 | * of this msr depends on is_long_mode(). |
| 3971 | */ |
| 3972 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3973 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3974 | if (efer & EFER_LMA) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3975 | vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3976 | msr->data = efer; |
| 3977 | } else { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3978 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3979 | |
| 3980 | msr->data = efer & ~EFER_LME; |
| 3981 | } |
| 3982 | setup_msrs(vmx); |
| 3983 | } |
| 3984 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3985 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3986 | |
| 3987 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 3988 | { |
| 3989 | u32 guest_tr_ar; |
| 3990 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3991 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 3992 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3993 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3994 | if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 3995 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 3996 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3997 | vmcs_write32(GUEST_TR_AR_BYTES, |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3998 | (guest_tr_ar & ~VMX_AR_TYPE_MASK) |
| 3999 | | VMX_AR_TYPE_BUSY_64_TSS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4000 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 4001 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4002 | } |
| 4003 | |
| 4004 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 4005 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4006 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 4007 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4008 | } |
| 4009 | |
| 4010 | #endif |
| 4011 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4012 | static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4013 | { |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4014 | vpid_sync_context(vpid); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 4015 | if (enable_ept) { |
| 4016 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 4017 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 4018 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 4019 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4020 | } |
| 4021 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4022 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 4023 | { |
| 4024 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid); |
| 4025 | } |
| 4026 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 4027 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 4028 | { |
| 4029 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 4030 | |
| 4031 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 4032 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 4033 | } |
| 4034 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 4035 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 4036 | { |
| 4037 | if (enable_ept && is_paging(vcpu)) |
| 4038 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 4039 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 4040 | } |
| 4041 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4042 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 4043 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4044 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 4045 | |
| 4046 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 4047 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 4048 | } |
| 4049 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4050 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 4051 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4052 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 4053 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 4054 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 4055 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 4056 | return; |
| 4057 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4058 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4059 | vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]); |
| 4060 | vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]); |
| 4061 | vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]); |
| 4062 | vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4063 | } |
| 4064 | } |
| 4065 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4066 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 4067 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4068 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 4069 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4070 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4071 | mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 4072 | mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 4073 | mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 4074 | mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4075 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 4076 | |
| 4077 | __set_bit(VCPU_EXREG_PDPTR, |
| 4078 | (unsigned long *)&vcpu->arch.regs_avail); |
| 4079 | __set_bit(VCPU_EXREG_PDPTR, |
| 4080 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4081 | } |
| 4082 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 4083 | static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4084 | { |
| 4085 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0; |
| 4086 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1; |
| 4087 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 4088 | |
| 4089 | if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high & |
| 4090 | SECONDARY_EXEC_UNRESTRICTED_GUEST && |
| 4091 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST)) |
| 4092 | fixed0 &= ~(X86_CR0_PE | X86_CR0_PG); |
| 4093 | |
| 4094 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4095 | } |
| 4096 | |
| 4097 | static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4098 | { |
| 4099 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0; |
| 4100 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1; |
| 4101 | |
| 4102 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4103 | } |
| 4104 | |
| 4105 | static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4106 | { |
| 4107 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0; |
| 4108 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1; |
| 4109 | |
| 4110 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4111 | } |
| 4112 | |
| 4113 | /* No difference in the restrictions on guest and host CR4 in VMX operation. */ |
| 4114 | #define nested_guest_cr4_valid nested_cr4_valid |
| 4115 | #define nested_host_cr4_valid nested_cr4_valid |
| 4116 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4117 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4118 | |
| 4119 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 4120 | unsigned long cr0, |
| 4121 | struct kvm_vcpu *vcpu) |
| 4122 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 4123 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 4124 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4125 | if (!(cr0 & X86_CR0_PG)) { |
| 4126 | /* From paging/starting to nonpaging */ |
| 4127 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 4128 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4129 | (CPU_BASED_CR3_LOAD_EXITING | |
| 4130 | CPU_BASED_CR3_STORE_EXITING)); |
| 4131 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4132 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4133 | } else if (!is_paging(vcpu)) { |
| 4134 | /* From nonpaging to paging */ |
| 4135 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 4136 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4137 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 4138 | CPU_BASED_CR3_STORE_EXITING)); |
| 4139 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4140 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4141 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 4142 | |
| 4143 | if (!(cr0 & X86_CR0_WP)) |
| 4144 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4145 | } |
| 4146 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4147 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 4148 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4149 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4150 | unsigned long hw_cr0; |
| 4151 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4152 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4153 | if (enable_unrestricted_guest) |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4154 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4155 | else { |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4156 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4157 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4158 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
| 4159 | enter_pmode(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4160 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4161 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
| 4162 | enter_rmode(vcpu); |
| 4163 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4164 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4165 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 4166 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 4167 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4168 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 4169 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4170 | exit_lmode(vcpu); |
| 4171 | } |
| 4172 | #endif |
| 4173 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4174 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4175 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 4176 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4177 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4178 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4179 | vcpu->arch.cr0 = cr0; |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 4180 | |
| 4181 | /* depends on vcpu->arch.cr0 to be set to a new value */ |
| 4182 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4183 | } |
| 4184 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4185 | static u64 construct_eptp(unsigned long root_hpa) |
| 4186 | { |
| 4187 | u64 eptp; |
| 4188 | |
| 4189 | /* TODO write the value reading from MSR */ |
| 4190 | eptp = VMX_EPT_DEFAULT_MT | |
| 4191 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
Xudong Hao | b38f993 | 2012-05-28 19:33:36 +0800 | [diff] [blame] | 4192 | if (enable_ept_ad_bits) |
| 4193 | eptp |= VMX_EPT_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4194 | eptp |= (root_hpa & PAGE_MASK); |
| 4195 | |
| 4196 | return eptp; |
| 4197 | } |
| 4198 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4199 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 4200 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4201 | unsigned long guest_cr3; |
| 4202 | u64 eptp; |
| 4203 | |
| 4204 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4205 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4206 | eptp = construct_eptp(cr3); |
| 4207 | vmcs_write64(EPT_POINTER, eptp); |
Jan Kiszka | 59ab5a8 | 2013-08-08 16:26:29 +0200 | [diff] [blame] | 4208 | if (is_paging(vcpu) || is_guest_mode(vcpu)) |
| 4209 | guest_cr3 = kvm_read_cr3(vcpu); |
| 4210 | else |
| 4211 | guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 4212 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4213 | } |
| 4214 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4215 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4216 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4217 | } |
| 4218 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4219 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4220 | { |
Ben Serebrin | 085e68e | 2015-04-16 11:58:05 -0700 | [diff] [blame] | 4221 | /* |
| 4222 | * Pass through host's Machine Check Enable value to hw_cr4, which |
| 4223 | * is in force while we are in guest mode. Do not let guests control |
| 4224 | * this bit, even if host CR4.MCE == 0. |
| 4225 | */ |
| 4226 | unsigned long hw_cr4 = |
| 4227 | (cr4_read_shadow() & X86_CR4_MCE) | |
| 4228 | (cr4 & ~X86_CR4_MCE) | |
| 4229 | (to_vmx(vcpu)->rmode.vm86_active ? |
| 4230 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4231 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4232 | if (cr4 & X86_CR4_VMXE) { |
| 4233 | /* |
| 4234 | * To use VMXON (and later other VMX instructions), a guest |
| 4235 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 4236 | * So basically the check on whether to allow nested VMX |
| 4237 | * is here. |
| 4238 | */ |
| 4239 | if (!nested_vmx_allowed(vcpu)) |
| 4240 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 4241 | } |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 4242 | |
| 4243 | if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4)) |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4244 | return 1; |
| 4245 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4246 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 4247 | if (enable_ept) { |
| 4248 | if (!is_paging(vcpu)) { |
| 4249 | hw_cr4 &= ~X86_CR4_PAE; |
| 4250 | hw_cr4 |= X86_CR4_PSE; |
| 4251 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 4252 | hw_cr4 &= ~X86_CR4_PAE; |
| 4253 | } |
| 4254 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4255 | |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4256 | if (!enable_unrestricted_guest && !is_paging(vcpu)) |
| 4257 | /* |
Huaitong Han | ddba262 | 2016-03-22 16:51:15 +0800 | [diff] [blame] | 4258 | * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in |
| 4259 | * hardware. To emulate this behavior, SMEP/SMAP/PKU needs |
| 4260 | * to be manually disabled when guest switches to non-paging |
| 4261 | * mode. |
| 4262 | * |
| 4263 | * If !enable_unrestricted_guest, the CPU is always running |
| 4264 | * with CR0.PG=1 and CR4 needs to be modified. |
| 4265 | * If enable_unrestricted_guest, the CPU automatically |
| 4266 | * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0. |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4267 | */ |
Huaitong Han | ddba262 | 2016-03-22 16:51:15 +0800 | [diff] [blame] | 4268 | hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE); |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4269 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4270 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 4271 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4272 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4273 | } |
| 4274 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4275 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 4276 | struct kvm_segment *var, int seg) |
| 4277 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4278 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4279 | u32 ar; |
| 4280 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 4281 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 4282 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4283 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4284 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 4285 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 4286 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 4287 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 4288 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4289 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4290 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 4291 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 4292 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 4293 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 4294 | var->unusable = (ar >> 16) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4295 | var->type = ar & 15; |
| 4296 | var->s = (ar >> 4) & 1; |
| 4297 | var->dpl = (ar >> 5) & 3; |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 4298 | /* |
| 4299 | * Some userspaces do not preserve unusable property. Since usable |
| 4300 | * segment has to be present according to VMX spec we can use present |
| 4301 | * property to amend userspace bug by making unusable segment always |
| 4302 | * nonpresent. vmx_segment_access_rights() already marks nonpresent |
| 4303 | * segment as unusable. |
| 4304 | */ |
| 4305 | var->present = !var->unusable; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4306 | var->avl = (ar >> 12) & 1; |
| 4307 | var->l = (ar >> 13) & 1; |
| 4308 | var->db = (ar >> 14) & 1; |
| 4309 | var->g = (ar >> 15) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4310 | } |
| 4311 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4312 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 4313 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4314 | struct kvm_segment s; |
| 4315 | |
| 4316 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 4317 | vmx_get_segment(vcpu, &s, seg); |
| 4318 | return s.base; |
| 4319 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4320 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4321 | } |
| 4322 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 4323 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 4324 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 4325 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4326 | |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 4327 | if (unlikely(vmx->rmode.vm86_active)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 4328 | return 0; |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 4329 | else { |
| 4330 | int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4331 | return VMX_AR_DPL(ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 4332 | } |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 4333 | } |
| 4334 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4335 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4336 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4337 | u32 ar; |
| 4338 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 4339 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4340 | ar = 1 << 16; |
| 4341 | else { |
| 4342 | ar = var->type & 15; |
| 4343 | ar |= (var->s & 1) << 4; |
| 4344 | ar |= (var->dpl & 3) << 5; |
| 4345 | ar |= (var->present & 1) << 7; |
| 4346 | ar |= (var->avl & 1) << 12; |
| 4347 | ar |= (var->l & 1) << 13; |
| 4348 | ar |= (var->db & 1) << 14; |
| 4349 | ar |= (var->g & 1) << 15; |
| 4350 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4351 | |
| 4352 | return ar; |
| 4353 | } |
| 4354 | |
| 4355 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 4356 | struct kvm_segment *var, int seg) |
| 4357 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4358 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4359 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4360 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4361 | vmx_segment_cache_clear(vmx); |
| 4362 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 4363 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 4364 | vmx->rmode.segs[seg] = *var; |
| 4365 | if (seg == VCPU_SREG_TR) |
| 4366 | vmcs_write16(sf->selector, var->selector); |
| 4367 | else if (var->s) |
| 4368 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4369 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4370 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 4371 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4372 | vmcs_writel(sf->base, var->base); |
| 4373 | vmcs_write32(sf->limit, var->limit); |
| 4374 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4375 | |
| 4376 | /* |
| 4377 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 4378 | * qemu binaries. |
| 4379 | * IA32 arch specifies that at the time of processor reset the |
| 4380 | * "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] | 4381 | * 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] | 4382 | * state vmexit when "unrestricted guest" mode is turned on. |
| 4383 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 4384 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 4385 | * kvm hack. |
| 4386 | */ |
| 4387 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 4388 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4389 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 4390 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4391 | |
| 4392 | out: |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 4393 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4394 | } |
| 4395 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4396 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 4397 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4398 | 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] | 4399 | |
| 4400 | *db = (ar >> 14) & 1; |
| 4401 | *l = (ar >> 13) & 1; |
| 4402 | } |
| 4403 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4404 | 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] | 4405 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4406 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 4407 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4408 | } |
| 4409 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4410 | 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] | 4411 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4412 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 4413 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4414 | } |
| 4415 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4416 | 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] | 4417 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4418 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 4419 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4420 | } |
| 4421 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4422 | 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] | 4423 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4424 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 4425 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4426 | } |
| 4427 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4428 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4429 | { |
| 4430 | struct kvm_segment var; |
| 4431 | u32 ar; |
| 4432 | |
| 4433 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 4434 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 4435 | if (seg == VCPU_SREG_CS) |
| 4436 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4437 | ar = vmx_segment_access_rights(&var); |
| 4438 | |
| 4439 | if (var.base != (var.selector << 4)) |
| 4440 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 4441 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4442 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 4443 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4444 | return false; |
| 4445 | |
| 4446 | return true; |
| 4447 | } |
| 4448 | |
| 4449 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 4450 | { |
| 4451 | struct kvm_segment cs; |
| 4452 | unsigned int cs_rpl; |
| 4453 | |
| 4454 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4455 | cs_rpl = cs.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4456 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4457 | if (cs.unusable) |
| 4458 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4459 | if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK)) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4460 | return false; |
| 4461 | if (!cs.s) |
| 4462 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4463 | if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4464 | if (cs.dpl > cs_rpl) |
| 4465 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4466 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4467 | if (cs.dpl != cs_rpl) |
| 4468 | return false; |
| 4469 | } |
| 4470 | if (!cs.present) |
| 4471 | return false; |
| 4472 | |
| 4473 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 4474 | return true; |
| 4475 | } |
| 4476 | |
| 4477 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 4478 | { |
| 4479 | struct kvm_segment ss; |
| 4480 | unsigned int ss_rpl; |
| 4481 | |
| 4482 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4483 | ss_rpl = ss.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4484 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4485 | if (ss.unusable) |
| 4486 | return true; |
| 4487 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4488 | return false; |
| 4489 | if (!ss.s) |
| 4490 | return false; |
| 4491 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 4492 | return false; |
| 4493 | if (!ss.present) |
| 4494 | return false; |
| 4495 | |
| 4496 | return true; |
| 4497 | } |
| 4498 | |
| 4499 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4500 | { |
| 4501 | struct kvm_segment var; |
| 4502 | unsigned int rpl; |
| 4503 | |
| 4504 | vmx_get_segment(vcpu, &var, seg); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4505 | rpl = var.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4506 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4507 | if (var.unusable) |
| 4508 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4509 | if (!var.s) |
| 4510 | return false; |
| 4511 | if (!var.present) |
| 4512 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4513 | if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4514 | if (var.dpl < rpl) /* DPL < RPL */ |
| 4515 | return false; |
| 4516 | } |
| 4517 | |
| 4518 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 4519 | * rights flags |
| 4520 | */ |
| 4521 | return true; |
| 4522 | } |
| 4523 | |
| 4524 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 4525 | { |
| 4526 | struct kvm_segment tr; |
| 4527 | |
| 4528 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 4529 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4530 | if (tr.unusable) |
| 4531 | return false; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4532 | if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4533 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4534 | 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] | 4535 | return false; |
| 4536 | if (!tr.present) |
| 4537 | return false; |
| 4538 | |
| 4539 | return true; |
| 4540 | } |
| 4541 | |
| 4542 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 4543 | { |
| 4544 | struct kvm_segment ldtr; |
| 4545 | |
| 4546 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 4547 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4548 | if (ldtr.unusable) |
| 4549 | return true; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4550 | if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4551 | return false; |
| 4552 | if (ldtr.type != 2) |
| 4553 | return false; |
| 4554 | if (!ldtr.present) |
| 4555 | return false; |
| 4556 | |
| 4557 | return true; |
| 4558 | } |
| 4559 | |
| 4560 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 4561 | { |
| 4562 | struct kvm_segment cs, ss; |
| 4563 | |
| 4564 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4565 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 4566 | |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4567 | return ((cs.selector & SEGMENT_RPL_MASK) == |
| 4568 | (ss.selector & SEGMENT_RPL_MASK)); |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4569 | } |
| 4570 | |
| 4571 | /* |
| 4572 | * Check if guest state is valid. Returns true if valid, false if |
| 4573 | * not. |
| 4574 | * We assume that registers are always usable |
| 4575 | */ |
| 4576 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 4577 | { |
Gleb Natapov | c5e97c8 | 2013-01-21 15:36:43 +0200 | [diff] [blame] | 4578 | if (enable_unrestricted_guest) |
| 4579 | return true; |
| 4580 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4581 | /* real mode guest state checks */ |
Gleb Natapov | f13882d | 2013-04-14 16:07:37 +0300 | [diff] [blame] | 4582 | if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4583 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 4584 | return false; |
| 4585 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 4586 | return false; |
| 4587 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4588 | return false; |
| 4589 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4590 | return false; |
| 4591 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4592 | return false; |
| 4593 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4594 | return false; |
| 4595 | } else { |
| 4596 | /* protected mode guest state checks */ |
| 4597 | if (!cs_ss_rpl_check(vcpu)) |
| 4598 | return false; |
| 4599 | if (!code_segment_valid(vcpu)) |
| 4600 | return false; |
| 4601 | if (!stack_segment_valid(vcpu)) |
| 4602 | return false; |
| 4603 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4604 | return false; |
| 4605 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4606 | return false; |
| 4607 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4608 | return false; |
| 4609 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4610 | return false; |
| 4611 | if (!tr_valid(vcpu)) |
| 4612 | return false; |
| 4613 | if (!ldtr_valid(vcpu)) |
| 4614 | return false; |
| 4615 | } |
| 4616 | /* TODO: |
| 4617 | * - Add checks on RIP |
| 4618 | * - Add checks on RFLAGS |
| 4619 | */ |
| 4620 | |
| 4621 | return true; |
| 4622 | } |
| 4623 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 4624 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4625 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4626 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4627 | u16 data = 0; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4628 | int idx, r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4629 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4630 | idx = srcu_read_lock(&kvm->srcu); |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4631 | fn = kvm->arch.tss_addr >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4632 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4633 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4634 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4635 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 4636 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 4637 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4638 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4639 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4640 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 4641 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4642 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4643 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4644 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4645 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4646 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4647 | r = kvm_write_guest_page(kvm, fn, &data, |
| 4648 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 4649 | sizeof(u8)); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4650 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4651 | srcu_read_unlock(&kvm->srcu, idx); |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4652 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4653 | } |
| 4654 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4655 | static int init_rmode_identity_map(struct kvm *kvm) |
| 4656 | { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4657 | int i, idx, r = 0; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 4658 | kvm_pfn_t identity_map_pfn; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4659 | u32 tmp; |
| 4660 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4661 | if (!enable_ept) |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4662 | return 0; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4663 | |
| 4664 | /* Protect kvm->arch.ept_identity_pagetable_done. */ |
| 4665 | mutex_lock(&kvm->slots_lock); |
| 4666 | |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4667 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4668 | goto out2; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4669 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4670 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4671 | |
| 4672 | r = alloc_identity_pagetable(kvm); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4673 | if (r < 0) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4674 | goto out2; |
| 4675 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4676 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4677 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 4678 | if (r < 0) |
| 4679 | goto out; |
| 4680 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 4681 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 4682 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 4683 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 4684 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 4685 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 4686 | if (r < 0) |
| 4687 | goto out; |
| 4688 | } |
| 4689 | kvm->arch.ept_identity_pagetable_done = true; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4690 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4691 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4692 | srcu_read_unlock(&kvm->srcu, idx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4693 | |
| 4694 | out2: |
| 4695 | mutex_unlock(&kvm->slots_lock); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4696 | return r; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4697 | } |
| 4698 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4699 | static void seg_setup(int seg) |
| 4700 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4701 | 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] | 4702 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4703 | |
| 4704 | vmcs_write16(sf->selector, 0); |
| 4705 | vmcs_writel(sf->base, 0); |
| 4706 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 4707 | ar = 0x93; |
| 4708 | if (seg == VCPU_SREG_CS) |
| 4709 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4710 | |
| 4711 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4712 | } |
| 4713 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4714 | static int alloc_apic_access_page(struct kvm *kvm) |
| 4715 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4716 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4717 | int r = 0; |
| 4718 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4719 | mutex_lock(&kvm->slots_lock); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4720 | if (kvm->arch.apic_access_page_done) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4721 | goto out; |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 4722 | r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, |
| 4723 | APIC_DEFAULT_PHYS_BASE, PAGE_SIZE); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4724 | if (r) |
| 4725 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4726 | |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4727 | page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4728 | if (is_error_page(page)) { |
| 4729 | r = -EFAULT; |
| 4730 | goto out; |
| 4731 | } |
| 4732 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4733 | /* |
| 4734 | * Do not pin the page in memory, so that memory hot-unplug |
| 4735 | * is able to migrate it. |
| 4736 | */ |
| 4737 | put_page(page); |
| 4738 | kvm->arch.apic_access_page_done = true; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4739 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4740 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4741 | return r; |
| 4742 | } |
| 4743 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4744 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 4745 | { |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4746 | /* Called with kvm->slots_lock held. */ |
| 4747 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4748 | int r = 0; |
| 4749 | |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4750 | BUG_ON(kvm->arch.ept_identity_pagetable_done); |
| 4751 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 4752 | r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, |
| 4753 | kvm->arch.ept_identity_map_addr, PAGE_SIZE); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4754 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4755 | return r; |
| 4756 | } |
| 4757 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4758 | static int allocate_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4759 | { |
| 4760 | int vpid; |
| 4761 | |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 4762 | if (!enable_vpid) |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4763 | return 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4764 | spin_lock(&vmx_vpid_lock); |
| 4765 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4766 | if (vpid < VMX_NR_VPIDS) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4767 | __set_bit(vpid, vmx_vpid_bitmap); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4768 | else |
| 4769 | vpid = 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4770 | spin_unlock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4771 | return vpid; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4772 | } |
| 4773 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4774 | static void free_vpid(int vpid) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4775 | { |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4776 | if (!enable_vpid || vpid == 0) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4777 | return; |
| 4778 | spin_lock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4779 | __clear_bit(vpid, vmx_vpid_bitmap); |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4780 | spin_unlock(&vmx_vpid_lock); |
| 4781 | } |
| 4782 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4783 | #define MSR_TYPE_R 1 |
| 4784 | #define MSR_TYPE_W 2 |
| 4785 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4786 | u32 msr, int type) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4787 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4788 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4789 | |
| 4790 | if (!cpu_has_vmx_msr_bitmap()) |
| 4791 | return; |
| 4792 | |
| 4793 | /* |
| 4794 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4795 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4796 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4797 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4798 | if (msr <= 0x1fff) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4799 | if (type & MSR_TYPE_R) |
| 4800 | /* read-low */ |
| 4801 | __clear_bit(msr, msr_bitmap + 0x000 / f); |
| 4802 | |
| 4803 | if (type & MSR_TYPE_W) |
| 4804 | /* write-low */ |
| 4805 | __clear_bit(msr, msr_bitmap + 0x800 / f); |
| 4806 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4807 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4808 | msr &= 0x1fff; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4809 | if (type & MSR_TYPE_R) |
| 4810 | /* read-high */ |
| 4811 | __clear_bit(msr, msr_bitmap + 0x400 / f); |
| 4812 | |
| 4813 | if (type & MSR_TYPE_W) |
| 4814 | /* write-high */ |
| 4815 | __clear_bit(msr, msr_bitmap + 0xc00 / f); |
| 4816 | |
| 4817 | } |
| 4818 | } |
| 4819 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 4820 | /* |
| 4821 | * If a msr is allowed by L0, we should check whether it is allowed by L1. |
| 4822 | * The corresponding bit will be cleared unless both of L0 and L1 allow it. |
| 4823 | */ |
| 4824 | static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1, |
| 4825 | unsigned long *msr_bitmap_nested, |
| 4826 | u32 msr, int type) |
| 4827 | { |
| 4828 | int f = sizeof(unsigned long); |
| 4829 | |
| 4830 | if (!cpu_has_vmx_msr_bitmap()) { |
| 4831 | WARN_ON(1); |
| 4832 | return; |
| 4833 | } |
| 4834 | |
| 4835 | /* |
| 4836 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4837 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4838 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4839 | */ |
| 4840 | if (msr <= 0x1fff) { |
| 4841 | if (type & MSR_TYPE_R && |
| 4842 | !test_bit(msr, msr_bitmap_l1 + 0x000 / f)) |
| 4843 | /* read-low */ |
| 4844 | __clear_bit(msr, msr_bitmap_nested + 0x000 / f); |
| 4845 | |
| 4846 | if (type & MSR_TYPE_W && |
| 4847 | !test_bit(msr, msr_bitmap_l1 + 0x800 / f)) |
| 4848 | /* write-low */ |
| 4849 | __clear_bit(msr, msr_bitmap_nested + 0x800 / f); |
| 4850 | |
| 4851 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4852 | msr &= 0x1fff; |
| 4853 | if (type & MSR_TYPE_R && |
| 4854 | !test_bit(msr, msr_bitmap_l1 + 0x400 / f)) |
| 4855 | /* read-high */ |
| 4856 | __clear_bit(msr, msr_bitmap_nested + 0x400 / f); |
| 4857 | |
| 4858 | if (type & MSR_TYPE_W && |
| 4859 | !test_bit(msr, msr_bitmap_l1 + 0xc00 / f)) |
| 4860 | /* write-high */ |
| 4861 | __clear_bit(msr, msr_bitmap_nested + 0xc00 / f); |
| 4862 | |
| 4863 | } |
| 4864 | } |
| 4865 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4866 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 4867 | { |
| 4868 | if (!longmode_only) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4869 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, |
| 4870 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4871 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, |
| 4872 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4873 | } |
| 4874 | |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4875 | static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4876 | { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4877 | if (apicv_active) { |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 4878 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4879 | msr, type); |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 4880 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4881 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4882 | } else { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4883 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4884 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4885 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4886 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4887 | } |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4888 | } |
| 4889 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 4890 | static bool vmx_get_enable_apicv(void) |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4891 | { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 4892 | return enable_apicv; |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4893 | } |
| 4894 | |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 4895 | static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4896 | { |
| 4897 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4898 | int max_irr; |
| 4899 | void *vapic_page; |
| 4900 | u16 status; |
| 4901 | |
| 4902 | if (vmx->nested.pi_desc && |
| 4903 | vmx->nested.pi_pending) { |
| 4904 | vmx->nested.pi_pending = false; |
| 4905 | if (!pi_test_and_clear_on(vmx->nested.pi_desc)) |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 4906 | return; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4907 | |
| 4908 | max_irr = find_last_bit( |
| 4909 | (unsigned long *)vmx->nested.pi_desc->pir, 256); |
| 4910 | |
| 4911 | if (max_irr == 256) |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 4912 | return; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4913 | |
| 4914 | vapic_page = kmap(vmx->nested.virtual_apic_page); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4915 | __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page); |
| 4916 | kunmap(vmx->nested.virtual_apic_page); |
| 4917 | |
| 4918 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 4919 | if ((u8)max_irr > ((u8)status & 0xff)) { |
| 4920 | status &= ~0xff; |
| 4921 | status |= (u8)max_irr; |
| 4922 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 4923 | } |
| 4924 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4925 | } |
| 4926 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4927 | static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4928 | { |
| 4929 | #ifdef CONFIG_SMP |
| 4930 | if (vcpu->mode == IN_GUEST_MODE) { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 4931 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4932 | |
| 4933 | /* |
| 4934 | * Currently, we don't support urgent interrupt, |
| 4935 | * all interrupts are recognized as non-urgent |
| 4936 | * interrupt, so we cannot post interrupts when |
| 4937 | * 'SN' is set. |
| 4938 | * |
| 4939 | * If the vcpu is in guest mode, it means it is |
| 4940 | * running instead of being scheduled out and |
| 4941 | * waiting in the run queue, and that's the only |
| 4942 | * case when 'SN' is set currently, warning if |
| 4943 | * 'SN' is set. |
| 4944 | */ |
| 4945 | WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc)); |
| 4946 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4947 | apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), |
| 4948 | POSTED_INTR_VECTOR); |
| 4949 | return true; |
| 4950 | } |
| 4951 | #endif |
| 4952 | return false; |
| 4953 | } |
| 4954 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4955 | static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu, |
| 4956 | int vector) |
| 4957 | { |
| 4958 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4959 | |
| 4960 | if (is_guest_mode(vcpu) && |
| 4961 | vector == vmx->nested.posted_intr_nv) { |
| 4962 | /* the PIR and ON have been set by L1. */ |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4963 | kvm_vcpu_trigger_posted_interrupt(vcpu); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4964 | /* |
| 4965 | * If a posted intr is not recognized by hardware, |
| 4966 | * we will accomplish it in the next vmentry. |
| 4967 | */ |
| 4968 | vmx->nested.pi_pending = true; |
| 4969 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4970 | return 0; |
| 4971 | } |
| 4972 | return -1; |
| 4973 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4974 | /* |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4975 | * Send interrupt to vcpu via posted interrupt way. |
| 4976 | * 1. If target vcpu is running(non-root mode), send posted interrupt |
| 4977 | * notification to vcpu and hardware will sync PIR to vIRR atomically. |
| 4978 | * 2. If target vcpu isn't running(root mode), kick it to pick up the |
| 4979 | * interrupt from PIR in next vmentry. |
| 4980 | */ |
| 4981 | static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector) |
| 4982 | { |
| 4983 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4984 | int r; |
| 4985 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4986 | r = vmx_deliver_nested_posted_interrupt(vcpu, vector); |
| 4987 | if (!r) |
| 4988 | return; |
| 4989 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4990 | if (pi_test_and_set_pir(vector, &vmx->pi_desc)) |
| 4991 | return; |
| 4992 | |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 4993 | /* If a previous notification has sent the IPI, nothing to do. */ |
| 4994 | if (pi_test_and_set_on(&vmx->pi_desc)) |
| 4995 | return; |
| 4996 | |
| 4997 | if (!kvm_vcpu_trigger_posted_interrupt(vcpu)) |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4998 | kvm_vcpu_kick(vcpu); |
| 4999 | } |
| 5000 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5001 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5002 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 5003 | * will not change in the lifetime of the guest. |
| 5004 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 5005 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 5006 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5007 | static void vmx_set_constant_host_state(struct vcpu_vmx *vmx) |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5008 | { |
| 5009 | u32 low32, high32; |
| 5010 | unsigned long tmpl; |
| 5011 | struct desc_ptr dt; |
Andy Lutomirski | 04ac88a | 2016-10-31 15:18:45 -0700 | [diff] [blame] | 5012 | unsigned long cr0, cr4; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5013 | |
Andy Lutomirski | 04ac88a | 2016-10-31 15:18:45 -0700 | [diff] [blame] | 5014 | cr0 = read_cr0(); |
| 5015 | WARN_ON(cr0 & X86_CR0_TS); |
| 5016 | vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5017 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 5018 | |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 5019 | /* 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] | 5020 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 5021 | vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */ |
| 5022 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 5023 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5024 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 5025 | #ifdef CONFIG_X86_64 |
| 5026 | /* |
| 5027 | * Load null selectors, so we can avoid reloading them in |
| 5028 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 5029 | * too (the expected case). |
| 5030 | */ |
| 5031 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 5032 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 5033 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5034 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 5035 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 5036 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5037 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 5038 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 5039 | |
| 5040 | native_store_idt(&dt); |
| 5041 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5042 | vmx->host_idt_base = dt.address; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5043 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 5044 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5045 | |
| 5046 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 5047 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 5048 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 5049 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 5050 | |
| 5051 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 5052 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 5053 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 5054 | } |
| 5055 | } |
| 5056 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5057 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 5058 | { |
| 5059 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 5060 | if (enable_ept) |
| 5061 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 5062 | if (is_guest_mode(&vmx->vcpu)) |
| 5063 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 5064 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5065 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 5066 | } |
| 5067 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5068 | static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx) |
| 5069 | { |
| 5070 | u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; |
| 5071 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5072 | if (!kvm_vcpu_apicv_active(&vmx->vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5073 | pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 5074 | /* Enable the preemption timer dynamically */ |
| 5075 | pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5076 | return pin_based_exec_ctrl; |
| 5077 | } |
| 5078 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5079 | static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu) |
| 5080 | { |
| 5081 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5082 | |
| 5083 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx)); |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 5084 | if (cpu_has_secondary_exec_ctrls()) { |
| 5085 | if (kvm_vcpu_apicv_active(vcpu)) |
| 5086 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 5087 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5088 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 5089 | else |
| 5090 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 5091 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5092 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 5093 | } |
| 5094 | |
| 5095 | if (cpu_has_vmx_msr_bitmap()) |
| 5096 | vmx_set_msr_bitmap(vcpu); |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5097 | } |
| 5098 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5099 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 5100 | { |
| 5101 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
Paolo Bonzini | d16c293 | 2014-02-21 10:36:37 +0100 | [diff] [blame] | 5102 | |
| 5103 | if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT) |
| 5104 | exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 5105 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5106 | if (!cpu_need_tpr_shadow(&vmx->vcpu)) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5107 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 5108 | #ifdef CONFIG_X86_64 |
| 5109 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 5110 | CPU_BASED_CR8_LOAD_EXITING; |
| 5111 | #endif |
| 5112 | } |
| 5113 | if (!enable_ept) |
| 5114 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 5115 | CPU_BASED_CR3_LOAD_EXITING | |
| 5116 | CPU_BASED_INVLPG_EXITING; |
| 5117 | return exec_control; |
| 5118 | } |
| 5119 | |
| 5120 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 5121 | { |
| 5122 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5123 | if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu)) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5124 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 5125 | if (vmx->vpid == 0) |
| 5126 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 5127 | if (!enable_ept) { |
| 5128 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 5129 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 5130 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 5131 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5132 | } |
| 5133 | if (!enable_unrestricted_guest) |
| 5134 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 5135 | if (!ple_gap) |
| 5136 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5137 | if (!kvm_vcpu_apicv_active(&vmx->vcpu)) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5138 | exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5139 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 5140 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 5141 | /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD |
| 5142 | (handle_vmptrld). |
| 5143 | We can NOT enable shadow_vmcs here because we don't have yet |
| 5144 | a current VMCS12 |
| 5145 | */ |
| 5146 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 5147 | |
| 5148 | if (!enable_pml) |
| 5149 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 5150 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5151 | return exec_control; |
| 5152 | } |
| 5153 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5154 | static void ept_set_mmio_spte_mask(void) |
| 5155 | { |
| 5156 | /* |
| 5157 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 5158 | * of an EPT paging-structure entry is 110b (write/execute). |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5159 | */ |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 5160 | kvm_mmu_set_mmio_spte_mask(VMX_EPT_MISCONFIG_WX_VALUE); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5161 | } |
| 5162 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5163 | #define VMX_XSS_EXIT_BITMAP 0 |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5164 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5165 | * Sets up the vmcs for emulated real mode. |
| 5166 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 5167 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5168 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 5169 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5170 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 5171 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5172 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5173 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5174 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 5175 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 5176 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5177 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 5178 | if (enable_shadow_vmcs) { |
| 5179 | vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap)); |
| 5180 | vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap)); |
| 5181 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 5182 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 5183 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 5184 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5185 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 5186 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5187 | /* Control */ |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5188 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx)); |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 5189 | vmx->hv_deadline_tsc = -1; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5190 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5191 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5192 | |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 5193 | if (cpu_has_secondary_exec_ctrls()) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5194 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 5195 | vmx_secondary_exec_control(vmx)); |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 5196 | } |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5197 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5198 | if (kvm_vcpu_apicv_active(&vmx->vcpu)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5199 | vmcs_write64(EOI_EXIT_BITMAP0, 0); |
| 5200 | vmcs_write64(EOI_EXIT_BITMAP1, 0); |
| 5201 | vmcs_write64(EOI_EXIT_BITMAP2, 0); |
| 5202 | vmcs_write64(EOI_EXIT_BITMAP3, 0); |
| 5203 | |
| 5204 | vmcs_write16(GUEST_INTR_STATUS, 0); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5205 | |
Li RongQing | 0bcf261 | 2015-12-03 13:29:34 +0800 | [diff] [blame] | 5206 | vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5207 | vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5208 | } |
| 5209 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5210 | if (ple_gap) { |
| 5211 | vmcs_write32(PLE_GAP, ple_gap); |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 5212 | vmx->ple_window = ple_window; |
| 5213 | vmx->ple_window_dirty = true; |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5214 | } |
| 5215 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 5216 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 5217 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5218 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 5219 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 5220 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 5221 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5222 | vmx_set_constant_host_state(vmx); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 5223 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5224 | rdmsrl(MSR_FS_BASE, a); |
| 5225 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 5226 | rdmsrl(MSR_GS_BASE, a); |
| 5227 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 5228 | #else |
| 5229 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 5230 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 5231 | #endif |
| 5232 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 5233 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 5234 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 5235 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 5236 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 5237 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5238 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 5239 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 5240 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 5241 | |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 5242 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5243 | u32 index = vmx_msr_index[i]; |
| 5244 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5245 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5246 | |
| 5247 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 5248 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 5249 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 5250 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 5251 | vmx->guest_msrs[j].index = i; |
| 5252 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 5253 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5254 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5255 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5256 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 5257 | |
| 5258 | vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5259 | |
| 5260 | /* 22.2.1, 20.8.1 */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 5261 | vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 5262 | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 5263 | vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS; |
| 5264 | vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS); |
| 5265 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5266 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5267 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5268 | if (vmx_xsaves_supported()) |
| 5269 | vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP); |
| 5270 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 5271 | if (enable_pml) { |
| 5272 | ASSERT(vmx->pml_pg); |
| 5273 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 5274 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 5275 | } |
| 5276 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5277 | return 0; |
| 5278 | } |
| 5279 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5280 | static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5281 | { |
| 5282 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 5283 | struct msr_data apic_base_msr; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5284 | u64 cr0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5285 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5286 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5287 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5288 | vmx->soft_vnmi_blocked = 0; |
| 5289 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5290 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5291 | kvm_set_cr8(vcpu, 0); |
| 5292 | |
| 5293 | if (!init_event) { |
| 5294 | apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | |
| 5295 | MSR_IA32_APICBASE_ENABLE; |
| 5296 | if (kvm_vcpu_is_reset_bsp(vcpu)) |
| 5297 | apic_base_msr.data |= MSR_IA32_APICBASE_BSP; |
| 5298 | apic_base_msr.host_initiated = true; |
| 5299 | kvm_set_apic_base(vcpu, &apic_base_msr); |
| 5300 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5301 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 5302 | vmx_segment_cache_clear(vmx); |
| 5303 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 5304 | seg_setup(VCPU_SREG_CS); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 5305 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 5306 | vmcs_writel(GUEST_CS_BASE, 0xffff0000ul); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5307 | |
| 5308 | seg_setup(VCPU_SREG_DS); |
| 5309 | seg_setup(VCPU_SREG_ES); |
| 5310 | seg_setup(VCPU_SREG_FS); |
| 5311 | seg_setup(VCPU_SREG_GS); |
| 5312 | seg_setup(VCPU_SREG_SS); |
| 5313 | |
| 5314 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 5315 | vmcs_writel(GUEST_TR_BASE, 0); |
| 5316 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 5317 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 5318 | |
| 5319 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 5320 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 5321 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 5322 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 5323 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5324 | if (!init_event) { |
| 5325 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 5326 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 5327 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 5328 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 5329 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5330 | |
| 5331 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 5332 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5333 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5334 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 5335 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 5336 | |
| 5337 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 5338 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 5339 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 5340 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5341 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 5342 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5343 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5344 | setup_msrs(vmx); |
| 5345 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5346 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 5347 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5348 | if (cpu_has_vmx_tpr_shadow() && !init_event) { |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5349 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5350 | if (cpu_need_tpr_shadow(vcpu)) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5351 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5352 | __pa(vcpu->arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5353 | vmcs_write32(TPR_THRESHOLD, 0); |
| 5354 | } |
| 5355 | |
Paolo Bonzini | a73896c | 2014-11-02 07:54:30 +0100 | [diff] [blame] | 5356 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5357 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5358 | if (kvm_vcpu_apicv_active(vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5359 | memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); |
| 5360 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 5361 | if (vmx->vpid != 0) |
| 5362 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 5363 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5364 | cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5365 | vmx->vcpu.arch.cr0 = cr0; |
Bruce Rogers | f246324 | 2016-04-28 14:49:21 -0600 | [diff] [blame] | 5366 | vmx_set_cr0(vcpu, cr0); /* enter rmode */ |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5367 | vmx_set_cr4(vcpu, 0); |
Paolo Bonzini | 5690891 | 2015-10-19 11:30:19 +0200 | [diff] [blame] | 5368 | vmx_set_efer(vcpu, 0); |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 5369 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5370 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5371 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 5372 | vpid_sync_context(vmx->vpid); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5373 | } |
| 5374 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 5375 | /* |
| 5376 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 5377 | * For most existing hypervisors, this will always return true. |
| 5378 | */ |
| 5379 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 5380 | { |
| 5381 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 5382 | PIN_BASED_EXT_INTR_MASK; |
| 5383 | } |
| 5384 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 5385 | /* |
| 5386 | * In nested virtualization, check if L1 has set |
| 5387 | * VM_EXIT_ACK_INTR_ON_EXIT |
| 5388 | */ |
| 5389 | static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu) |
| 5390 | { |
| 5391 | return get_vmcs12(vcpu)->vm_exit_controls & |
| 5392 | VM_EXIT_ACK_INTR_ON_EXIT; |
| 5393 | } |
| 5394 | |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5395 | static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu) |
| 5396 | { |
| 5397 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 5398 | PIN_BASED_NMI_EXITING; |
| 5399 | } |
| 5400 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5401 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5402 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 5403 | vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 5404 | CPU_BASED_VIRTUAL_INTR_PENDING); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5405 | } |
| 5406 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5407 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5408 | { |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5409 | if (!cpu_has_virtual_nmis() || |
| 5410 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 5411 | enable_irq_window(vcpu); |
| 5412 | return; |
| 5413 | } |
Jan Kiszka | 03b28f8 | 2013-04-29 16:46:42 +0200 | [diff] [blame] | 5414 | |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 5415 | vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 5416 | CPU_BASED_VIRTUAL_NMI_PENDING); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5417 | } |
| 5418 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5419 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5420 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 5421 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5422 | uint32_t intr; |
| 5423 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 5424 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5425 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5426 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 5427 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5428 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5429 | int inc_eip = 0; |
| 5430 | if (vcpu->arch.interrupt.soft) |
| 5431 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 5432 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5433 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5434 | return; |
| 5435 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5436 | intr = irq | INTR_INFO_VALID_MASK; |
| 5437 | if (vcpu->arch.interrupt.soft) { |
| 5438 | intr |= INTR_TYPE_SOFT_INTR; |
| 5439 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 5440 | vmx->vcpu.arch.event_exit_inst_len); |
| 5441 | } else |
| 5442 | intr |= INTR_TYPE_EXT_INTR; |
| 5443 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5444 | } |
| 5445 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5446 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 5447 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5448 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5449 | |
Wanpeng Li | c5a6d5f | 2016-09-22 17:55:54 +0800 | [diff] [blame] | 5450 | if (!is_guest_mode(vcpu)) { |
| 5451 | if (!cpu_has_virtual_nmis()) { |
| 5452 | /* |
| 5453 | * Tracking the NMI-blocked state in software is built upon |
| 5454 | * finding the next open IRQ window. This, in turn, depends on |
| 5455 | * well-behaving guests: They have to keep IRQs disabled at |
| 5456 | * least as long as the NMI handler runs. Otherwise we may |
| 5457 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 5458 | * highly unlikely, we can live with the residual risk. |
| 5459 | */ |
| 5460 | vmx->soft_vnmi_blocked = 1; |
| 5461 | vmx->vnmi_blocked_time = 0; |
| 5462 | } |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 5463 | |
Wanpeng Li | c5a6d5f | 2016-09-22 17:55:54 +0800 | [diff] [blame] | 5464 | ++vcpu->stat.nmi_injections; |
| 5465 | vmx->nmi_known_unmasked = false; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5466 | } |
| 5467 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5468 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5469 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5470 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5471 | return; |
| 5472 | } |
Wanpeng Li | c5a6d5f | 2016-09-22 17:55:54 +0800 | [diff] [blame] | 5473 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5474 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 5475 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5476 | } |
| 5477 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5478 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 5479 | { |
| 5480 | if (!cpu_has_virtual_nmis()) |
| 5481 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5482 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 5483 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 5484 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5485 | } |
| 5486 | |
| 5487 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 5488 | { |
| 5489 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5490 | |
| 5491 | if (!cpu_has_virtual_nmis()) { |
| 5492 | if (vmx->soft_vnmi_blocked != masked) { |
| 5493 | vmx->soft_vnmi_blocked = masked; |
| 5494 | vmx->vnmi_blocked_time = 0; |
| 5495 | } |
| 5496 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5497 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5498 | if (masked) |
| 5499 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5500 | GUEST_INTR_STATE_NMI); |
| 5501 | else |
| 5502 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5503 | GUEST_INTR_STATE_NMI); |
| 5504 | } |
| 5505 | } |
| 5506 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5507 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
| 5508 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5509 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 5510 | return 0; |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5511 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5512 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
| 5513 | return 0; |
| 5514 | |
| 5515 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5516 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 5517 | | GUEST_INTR_STATE_NMI)); |
| 5518 | } |
| 5519 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5520 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 5521 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5522 | return (!to_vmx(vcpu)->nested.nested_run_pending && |
| 5523 | vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 5524 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5525 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5526 | } |
| 5527 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5528 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 5529 | { |
| 5530 | int ret; |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5531 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 5532 | ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr, |
| 5533 | PAGE_SIZE * 3); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5534 | if (ret) |
| 5535 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 5536 | kvm->arch.tss_addr = addr; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 5537 | return init_rmode_tss(kvm); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5538 | } |
| 5539 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5540 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5541 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5542 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5543 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5544 | /* |
| 5545 | * Update instruction length as we may reinject the exception |
| 5546 | * from user space while in guest debugging mode. |
| 5547 | */ |
| 5548 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 5549 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5550 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5551 | return false; |
| 5552 | /* fall through */ |
| 5553 | case DB_VECTOR: |
| 5554 | if (vcpu->guest_debug & |
| 5555 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 5556 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5557 | /* fall through */ |
| 5558 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5559 | case OF_VECTOR: |
| 5560 | case BR_VECTOR: |
| 5561 | case UD_VECTOR: |
| 5562 | case DF_VECTOR: |
| 5563 | case SS_VECTOR: |
| 5564 | case GP_VECTOR: |
| 5565 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5566 | return true; |
| 5567 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5568 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5569 | return false; |
| 5570 | } |
| 5571 | |
| 5572 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 5573 | int vec, u32 err_code) |
| 5574 | { |
| 5575 | /* |
| 5576 | * Instruction with address size override prefix opcode 0x67 |
| 5577 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 5578 | */ |
| 5579 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 5580 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 5581 | if (vcpu->arch.halt_request) { |
| 5582 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5583 | return kvm_vcpu_halt(vcpu); |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5584 | } |
| 5585 | return 1; |
| 5586 | } |
| 5587 | return 0; |
| 5588 | } |
| 5589 | |
| 5590 | /* |
| 5591 | * Forward all other exceptions that are valid in real mode. |
| 5592 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 5593 | * the required debugging infrastructure rework. |
| 5594 | */ |
| 5595 | kvm_queue_exception(vcpu, vec); |
| 5596 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5597 | } |
| 5598 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5599 | /* |
| 5600 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 5601 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 5602 | * We pass a fake environment to the machine check handler because we want |
| 5603 | * the guest to be always treated like user space, no matter what context |
| 5604 | * it used internally. |
| 5605 | */ |
| 5606 | static void kvm_machine_check(void) |
| 5607 | { |
| 5608 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 5609 | struct pt_regs regs = { |
| 5610 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 5611 | .flags = X86_EFLAGS_IF, |
| 5612 | }; |
| 5613 | |
| 5614 | do_machine_check(®s, 0); |
| 5615 | #endif |
| 5616 | } |
| 5617 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5618 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5619 | { |
| 5620 | /* already handled by vcpu_run */ |
| 5621 | return 1; |
| 5622 | } |
| 5623 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5624 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5625 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5626 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5627 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5628 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5629 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5630 | u32 vect_info; |
| 5631 | enum emulation_result er; |
| 5632 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5633 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 5634 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5635 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5636 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5637 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5638 | |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 5639 | if (is_nmi(intr_info)) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5640 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5641 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5642 | if (is_invalid_opcode(intr_info)) { |
Jan Kiszka | ae1f576 | 2015-03-09 20:56:43 +0100 | [diff] [blame] | 5643 | if (is_guest_mode(vcpu)) { |
| 5644 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5645 | return 1; |
| 5646 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5647 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5648 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 5649 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5650 | return 1; |
| 5651 | } |
| 5652 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5653 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 5654 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5655 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5656 | |
| 5657 | /* |
| 5658 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 5659 | * MMIO, it is better to report an internal error. |
| 5660 | * See the comments in vmx_handle_exit. |
| 5661 | */ |
| 5662 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 5663 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 5664 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5665 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5666 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5667 | vcpu->run->internal.data[0] = vect_info; |
| 5668 | vcpu->run->internal.data[1] = intr_info; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5669 | vcpu->run->internal.data[2] = error_code; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5670 | return 0; |
| 5671 | } |
| 5672 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5673 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5674 | /* EPT won't cause page fault directly */ |
Julia Lawall | cf3ace7 | 2011-08-02 12:34:57 +0200 | [diff] [blame] | 5675 | BUG_ON(enable_ept); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5676 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5677 | trace_kvm_page_fault(cr2, error_code); |
| 5678 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 5679 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 5680 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5681 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5682 | } |
| 5683 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5684 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5685 | |
| 5686 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 5687 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 5688 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5689 | switch (ex_no) { |
Eric Northup | 54a2055 | 2015-11-03 18:03:53 +0100 | [diff] [blame] | 5690 | case AC_VECTOR: |
| 5691 | kvm_queue_exception_e(vcpu, AC_VECTOR, error_code); |
| 5692 | return 1; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5693 | case DB_VECTOR: |
| 5694 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 5695 | if (!(vcpu->guest_debug & |
| 5696 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
Jan Kiszka | 8246bf5 | 2014-01-04 18:47:17 +0100 | [diff] [blame] | 5697 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5698 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Huw Davies | fd2a445 | 2014-04-16 10:02:51 +0100 | [diff] [blame] | 5699 | if (!(dr6 & ~DR6_RESERVED)) /* icebp */ |
| 5700 | skip_emulated_instruction(vcpu); |
| 5701 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5702 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5703 | return 1; |
| 5704 | } |
| 5705 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 5706 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5707 | /* fall through */ |
| 5708 | case BP_VECTOR: |
Jan Kiszka | c573cd2 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5709 | /* |
| 5710 | * Update instruction length as we may reinject #BP from |
| 5711 | * user space while in guest debugging mode. Reading it for |
| 5712 | * #DB as well causes no harm, it is not used in that case. |
| 5713 | */ |
| 5714 | vmx->vcpu.arch.event_exit_inst_len = |
| 5715 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5716 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 5717 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5718 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 5719 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5720 | break; |
| 5721 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5722 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 5723 | kvm_run->ex.exception = ex_no; |
| 5724 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5725 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5726 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5727 | return 0; |
| 5728 | } |
| 5729 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5730 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5731 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 5732 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5733 | return 1; |
| 5734 | } |
| 5735 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5736 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5737 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5738 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5739 | return 0; |
| 5740 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5741 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5742 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5743 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5744 | unsigned long exit_qualification; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5745 | int size, in, string, ret; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5746 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5747 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5748 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5749 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5750 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5751 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5752 | ++vcpu->stat.io_exits; |
| 5753 | |
| 5754 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5755 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5756 | |
| 5757 | port = exit_qualification >> 16; |
| 5758 | size = (exit_qualification & 7) + 1; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5759 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5760 | ret = kvm_skip_emulated_instruction(vcpu); |
| 5761 | |
| 5762 | /* |
| 5763 | * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered |
| 5764 | * KVM_EXIT_DEBUG here. |
| 5765 | */ |
| 5766 | return kvm_fast_pio_out(vcpu, size, port) && ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5767 | } |
| 5768 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5769 | static void |
| 5770 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 5771 | { |
| 5772 | /* |
| 5773 | * Patch in the VMCALL instruction: |
| 5774 | */ |
| 5775 | hypercall[0] = 0x0f; |
| 5776 | hypercall[1] = 0x01; |
| 5777 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5778 | } |
| 5779 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 5780 | /* 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] | 5781 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 5782 | { |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5783 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5784 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5785 | unsigned long orig_val = val; |
| 5786 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5787 | /* |
| 5788 | * We get here when L2 changed cr0 in a way that did not change |
| 5789 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5790 | * but did change L0 shadowed bits. So we first calculate the |
| 5791 | * effective cr0 value that L1 would like to write into the |
| 5792 | * hardware. It consists of the L2-owned bits from the new |
| 5793 | * 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] | 5794 | */ |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5795 | val = (val & ~vmcs12->cr0_guest_host_mask) | |
| 5796 | (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask); |
| 5797 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 5798 | if (!nested_guest_cr0_valid(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5799 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5800 | |
| 5801 | if (kvm_set_cr0(vcpu, val)) |
| 5802 | return 1; |
| 5803 | vmcs_writel(CR0_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5804 | return 0; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5805 | } else { |
| 5806 | if (to_vmx(vcpu)->nested.vmxon && |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 5807 | !nested_host_cr0_valid(vcpu, val)) |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5808 | return 1; |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 5809 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5810 | return kvm_set_cr0(vcpu, val); |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5811 | } |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5812 | } |
| 5813 | |
| 5814 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 5815 | { |
| 5816 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5817 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5818 | unsigned long orig_val = val; |
| 5819 | |
| 5820 | /* analogously to handle_set_cr0 */ |
| 5821 | val = (val & ~vmcs12->cr4_guest_host_mask) | |
| 5822 | (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask); |
| 5823 | if (kvm_set_cr4(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5824 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5825 | vmcs_writel(CR4_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5826 | return 0; |
| 5827 | } else |
| 5828 | return kvm_set_cr4(vcpu, val); |
| 5829 | } |
| 5830 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5831 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5832 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5833 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5834 | int cr; |
| 5835 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 5836 | int err; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5837 | int ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5838 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5839 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5840 | cr = exit_qualification & 15; |
| 5841 | reg = (exit_qualification >> 8) & 15; |
| 5842 | switch ((exit_qualification >> 4) & 3) { |
| 5843 | case 0: /* mov to cr */ |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5844 | val = kvm_register_readl(vcpu, reg); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5845 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5846 | switch (cr) { |
| 5847 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5848 | err = handle_set_cr0(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5849 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5850 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 5851 | err = kvm_set_cr3(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5852 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5853 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5854 | err = handle_set_cr4(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5855 | return kvm_complete_insn_gp(vcpu, err); |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5856 | case 8: { |
| 5857 | u8 cr8_prev = kvm_get_cr8(vcpu); |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5858 | u8 cr8 = (u8)val; |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 5859 | err = kvm_set_cr8(vcpu, cr8); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5860 | ret = kvm_complete_insn_gp(vcpu, err); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5861 | if (lapic_in_kernel(vcpu)) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5862 | return ret; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5863 | if (cr8_prev <= cr8) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5864 | return ret; |
| 5865 | /* |
| 5866 | * TODO: we might be squashing a |
| 5867 | * KVM_GUESTDBG_SINGLESTEP-triggered |
| 5868 | * KVM_EXIT_DEBUG here. |
| 5869 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5870 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5871 | return 0; |
| 5872 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 5873 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5874 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5875 | case 2: /* clts */ |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 5876 | WARN_ONCE(1, "Guest should always own CR0.TS"); |
| 5877 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5878 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5879 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5880 | case 1: /*mov from cr*/ |
| 5881 | switch (cr) { |
| 5882 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 5883 | val = kvm_read_cr3(vcpu); |
| 5884 | kvm_register_write(vcpu, reg, val); |
| 5885 | trace_kvm_cr_read(cr, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5886 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5887 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5888 | val = kvm_get_cr8(vcpu); |
| 5889 | kvm_register_write(vcpu, reg, val); |
| 5890 | trace_kvm_cr_read(cr, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5891 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5892 | } |
| 5893 | break; |
| 5894 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5895 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5896 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5897 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5898 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5899 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5900 | default: |
| 5901 | break; |
| 5902 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5903 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 5904 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5905 | (int)(exit_qualification >> 4) & 3, cr); |
| 5906 | return 0; |
| 5907 | } |
| 5908 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5909 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5910 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5911 | unsigned long exit_qualification; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5912 | int dr, dr7, reg; |
| 5913 | |
| 5914 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5915 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 5916 | |
| 5917 | /* First, if DR does not exist, trigger UD */ |
| 5918 | if (!kvm_require_dr(vcpu, dr)) |
| 5919 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5920 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 5921 | /* 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] | 5922 | if (!kvm_require_cpl(vcpu, 0)) |
| 5923 | return 1; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5924 | dr7 = vmcs_readl(GUEST_DR7); |
| 5925 | if (dr7 & DR7_GD) { |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5926 | /* |
| 5927 | * As the vm-exit takes precedence over the debug trap, we |
| 5928 | * need to emulate the latter, either for the host or the |
| 5929 | * guest debugging itself. |
| 5930 | */ |
| 5931 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5932 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5933 | vcpu->run->debug.arch.dr7 = dr7; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5934 | vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5935 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 5936 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5937 | return 0; |
| 5938 | } else { |
Nadav Amit | 7305eb5 | 2014-11-02 11:54:44 +0200 | [diff] [blame] | 5939 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5940 | vcpu->arch.dr6 |= DR6_BD | DR6_RTM; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5941 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5942 | return 1; |
| 5943 | } |
| 5944 | } |
| 5945 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5946 | if (vcpu->guest_debug == 0) { |
Paolo Bonzini | 8f22372 | 2016-02-26 12:09:49 +0100 | [diff] [blame] | 5947 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 5948 | CPU_BASED_MOV_DR_EXITING); |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5949 | |
| 5950 | /* |
| 5951 | * No more DR vmexits; force a reload of the debug registers |
| 5952 | * and reenter on this instruction. The next vmexit will |
| 5953 | * retrieve the full state of the debug registers. |
| 5954 | */ |
| 5955 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT; |
| 5956 | return 1; |
| 5957 | } |
| 5958 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5959 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 5960 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5961 | unsigned long val; |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5962 | |
| 5963 | if (kvm_get_dr(vcpu, dr, &val)) |
| 5964 | return 1; |
| 5965 | kvm_register_write(vcpu, reg, val); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5966 | } else |
Nadav Amit | 5777392 | 2014-06-18 17:19:23 +0300 | [diff] [blame] | 5967 | if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg))) |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5968 | return 1; |
| 5969 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5970 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5971 | } |
| 5972 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 5973 | static u64 vmx_get_dr6(struct kvm_vcpu *vcpu) |
| 5974 | { |
| 5975 | return vcpu->arch.dr6; |
| 5976 | } |
| 5977 | |
| 5978 | static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val) |
| 5979 | { |
| 5980 | } |
| 5981 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5982 | static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu) |
| 5983 | { |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5984 | get_debugreg(vcpu->arch.db[0], 0); |
| 5985 | get_debugreg(vcpu->arch.db[1], 1); |
| 5986 | get_debugreg(vcpu->arch.db[2], 2); |
| 5987 | get_debugreg(vcpu->arch.db[3], 3); |
| 5988 | get_debugreg(vcpu->arch.dr6, 6); |
| 5989 | vcpu->arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5990 | |
| 5991 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT; |
Paolo Bonzini | 8f22372 | 2016-02-26 12:09:49 +0100 | [diff] [blame] | 5992 | vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING); |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5993 | } |
| 5994 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5995 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 5996 | { |
| 5997 | vmcs_writel(GUEST_DR7, val); |
| 5998 | } |
| 5999 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6000 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6001 | { |
Kyle Huey | 6a908b6 | 2016-11-29 12:40:37 -0800 | [diff] [blame] | 6002 | return kvm_emulate_cpuid(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6003 | } |
| 6004 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6005 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6006 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6007 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6008 | struct msr_data msr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6009 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6010 | msr_info.index = ecx; |
| 6011 | msr_info.host_initiated = false; |
| 6012 | if (vmx_get_msr(vcpu, &msr_info)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6013 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 6014 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6015 | return 1; |
| 6016 | } |
| 6017 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6018 | trace_kvm_msr_read(ecx, msr_info.data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 6019 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6020 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6021 | vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u; |
| 6022 | vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6023 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6024 | } |
| 6025 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6026 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6027 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 6028 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6029 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 6030 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 6031 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6032 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 6033 | msr.data = data; |
| 6034 | msr.index = ecx; |
| 6035 | msr.host_initiated = false; |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 6036 | if (kvm_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6037 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 6038 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6039 | return 1; |
| 6040 | } |
| 6041 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6042 | trace_kvm_msr_write(ecx, data); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6043 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6044 | } |
| 6045 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6046 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6047 | { |
Paolo Bonzini | eb90f34 | 2016-12-18 14:02:21 +0100 | [diff] [blame] | 6048 | kvm_apic_update_ppr(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6049 | return 1; |
| 6050 | } |
| 6051 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6052 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6053 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 6054 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 6055 | CPU_BASED_VIRTUAL_INTR_PENDING); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 6056 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6057 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6058 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 6059 | ++vcpu->stat.irq_window_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6060 | return 1; |
| 6061 | } |
| 6062 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6063 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6064 | { |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 6065 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6066 | } |
| 6067 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6068 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6069 | { |
Andrey Smetanin | 0d9c055 | 2016-02-11 16:44:59 +0300 | [diff] [blame] | 6070 | return kvm_emulate_hypercall(vcpu); |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6071 | } |
| 6072 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 6073 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 6074 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 6075 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 6076 | } |
| 6077 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6078 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6079 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6080 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6081 | |
| 6082 | kvm_mmu_invlpg(vcpu, exit_qualification); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6083 | return kvm_skip_emulated_instruction(vcpu); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6084 | } |
| 6085 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 6086 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 6087 | { |
| 6088 | int err; |
| 6089 | |
| 6090 | err = kvm_rdpmc(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6091 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 6092 | } |
| 6093 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6094 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 6095 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6096 | return kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 6097 | } |
| 6098 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 6099 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 6100 | { |
| 6101 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 6102 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 6103 | |
| 6104 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6105 | return kvm_skip_emulated_instruction(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 6106 | return 1; |
| 6107 | } |
| 6108 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6109 | static int handle_xsaves(struct kvm_vcpu *vcpu) |
| 6110 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6111 | kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6112 | WARN(1, "this should never happen\n"); |
| 6113 | return 1; |
| 6114 | } |
| 6115 | |
| 6116 | static int handle_xrstors(struct kvm_vcpu *vcpu) |
| 6117 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6118 | kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6119 | WARN(1, "this should never happen\n"); |
| 6120 | return 1; |
| 6121 | } |
| 6122 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6123 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 6124 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 6125 | if (likely(fasteoi)) { |
| 6126 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6127 | int access_type, offset; |
| 6128 | |
| 6129 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 6130 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 6131 | /* |
| 6132 | * Sane guest uses MOV to write EOI, with written value |
| 6133 | * not cared. So make a short-circuit here by avoiding |
| 6134 | * heavy instruction emulation. |
| 6135 | */ |
| 6136 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 6137 | (offset == APIC_EOI)) { |
| 6138 | kvm_lapic_set_eoi(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6139 | return kvm_skip_emulated_instruction(vcpu); |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 6140 | } |
| 6141 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 6142 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 6143 | } |
| 6144 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6145 | static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu) |
| 6146 | { |
| 6147 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6148 | int vector = exit_qualification & 0xff; |
| 6149 | |
| 6150 | /* EOI-induced VM exit is trap-like and thus no need to adjust IP */ |
| 6151 | kvm_apic_set_eoi_accelerated(vcpu, vector); |
| 6152 | return 1; |
| 6153 | } |
| 6154 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 6155 | static int handle_apic_write(struct kvm_vcpu *vcpu) |
| 6156 | { |
| 6157 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6158 | u32 offset = exit_qualification & 0xfff; |
| 6159 | |
| 6160 | /* APIC-write VM exit is trap-like and thus no need to adjust IP */ |
| 6161 | kvm_apic_write_nodecode(vcpu, offset); |
| 6162 | return 1; |
| 6163 | } |
| 6164 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6165 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6166 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 6167 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6168 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 6169 | bool has_error_code = false; |
| 6170 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6171 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6172 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6173 | |
| 6174 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6175 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6176 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6177 | |
| 6178 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6179 | |
| 6180 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6181 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 6182 | switch (type) { |
| 6183 | case INTR_TYPE_NMI_INTR: |
| 6184 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 6185 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6186 | break; |
| 6187 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6188 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6189 | kvm_clear_interrupt_queue(vcpu); |
| 6190 | break; |
| 6191 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 6192 | if (vmx->idt_vectoring_info & |
| 6193 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 6194 | has_error_code = true; |
| 6195 | error_code = |
| 6196 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 6197 | } |
| 6198 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6199 | case INTR_TYPE_SOFT_EXCEPTION: |
| 6200 | kvm_clear_exception_queue(vcpu); |
| 6201 | break; |
| 6202 | default: |
| 6203 | break; |
| 6204 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 6205 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6206 | tss_selector = exit_qualification; |
| 6207 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6208 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 6209 | type != INTR_TYPE_EXT_INTR && |
| 6210 | type != INTR_TYPE_NMI_INTR)) |
| 6211 | skip_emulated_instruction(vcpu); |
| 6212 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6213 | if (kvm_task_switch(vcpu, tss_selector, |
| 6214 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 6215 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 6216 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6217 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6218 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6219 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 6220 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6221 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6222 | /* |
| 6223 | * TODO: What about debug traps on tss switch? |
| 6224 | * Are we supposed to inject them and update dr6? |
| 6225 | */ |
| 6226 | |
| 6227 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6228 | } |
| 6229 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6230 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6231 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6232 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6233 | gpa_t gpa; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6234 | u32 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6235 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6236 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6237 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6238 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6239 | gla_validity = (exit_qualification >> 7) & 0x3; |
Liang Li | 72e0ae5 | 2016-08-18 15:49:19 +0800 | [diff] [blame] | 6240 | if (gla_validity == 0x2) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6241 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 6242 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 6243 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6244 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6245 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 6246 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6247 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 6248 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 6249 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6250 | } |
| 6251 | |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 6252 | /* |
| 6253 | * EPT violation happened while executing iret from NMI, |
| 6254 | * "blocked by NMI" bit has to be set before next VM entry. |
| 6255 | * There are errata that may cause this bit to not be set: |
| 6256 | * AAK134, BY25. |
| 6257 | */ |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 6258 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 6259 | cpu_has_virtual_nmis() && |
| 6260 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 6261 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI); |
| 6262 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6263 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6264 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6265 | |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6266 | /* Is it a read fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6267 | error_code = (exit_qualification & EPT_VIOLATION_ACC_READ) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6268 | ? PFERR_USER_MASK : 0; |
| 6269 | /* Is it a write fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6270 | error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6271 | ? PFERR_WRITE_MASK : 0; |
| 6272 | /* Is it a fetch fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6273 | error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6274 | ? PFERR_FETCH_MASK : 0; |
| 6275 | /* ept page table entry is present? */ |
| 6276 | error_code |= (exit_qualification & |
| 6277 | (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE | |
| 6278 | EPT_VIOLATION_EXECUTABLE)) |
| 6279 | ? PFERR_PRESENT_MASK : 0; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6280 | |
Paolo Bonzini | db1c056 | 2016-12-08 15:31:41 +0100 | [diff] [blame] | 6281 | vcpu->arch.gpa_available = true; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 6282 | vcpu->arch.exit_qualification = exit_qualification; |
| 6283 | |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6284 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6285 | } |
| 6286 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6287 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6288 | { |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 6289 | int ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6290 | gpa_t gpa; |
| 6291 | |
| 6292 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 6293 | if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) { |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 6294 | trace_kvm_fast_mmio(gpa); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6295 | return kvm_skip_emulated_instruction(vcpu); |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 6296 | } |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6297 | |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 6298 | ret = handle_mmio_page_fault(vcpu, gpa, true); |
Paolo Bonzini | db1c056 | 2016-12-08 15:31:41 +0100 | [diff] [blame] | 6299 | vcpu->arch.gpa_available = true; |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 6300 | if (likely(ret == RET_MMIO_PF_EMULATE)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 6301 | return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) == |
| 6302 | EMULATE_DONE; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 6303 | |
| 6304 | if (unlikely(ret == RET_MMIO_PF_INVALID)) |
| 6305 | return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0); |
| 6306 | |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 6307 | if (unlikely(ret == RET_MMIO_PF_RETRY)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 6308 | return 1; |
| 6309 | |
| 6310 | /* It is the real ept misconfig */ |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 6311 | WARN_ON(1); |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6312 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6313 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 6314 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6315 | |
| 6316 | return 0; |
| 6317 | } |
| 6318 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6319 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6320 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 6321 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 6322 | CPU_BASED_VIRTUAL_NMI_PENDING); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6323 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6324 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6325 | |
| 6326 | return 1; |
| 6327 | } |
| 6328 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6329 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6330 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 6331 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6332 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6333 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6334 | u32 cpu_exec_ctrl; |
| 6335 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 6336 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6337 | |
| 6338 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 6339 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6340 | |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 6341 | while (vmx->emulation_required && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 6342 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6343 | return handle_interrupt_window(&vmx->vcpu); |
| 6344 | |
Avi Kivity | de87dcdd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 6345 | if (test_bit(KVM_REQ_EVENT, &vcpu->requests)) |
| 6346 | return 1; |
| 6347 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 6348 | err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6349 | |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 6350 | if (err == EMULATE_USER_EXIT) { |
Paolo Bonzini | 94452b9 | 2013-08-27 15:41:42 +0200 | [diff] [blame] | 6351 | ++vcpu->stat.mmio_exits; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6352 | ret = 0; |
| 6353 | goto out; |
| 6354 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 6355 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 6356 | if (err != EMULATE_DONE) { |
| 6357 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6358 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6359 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 6360 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 6361 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6362 | |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 6363 | if (vcpu->arch.halt_request) { |
| 6364 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6365 | ret = kvm_vcpu_halt(vcpu); |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 6366 | goto out; |
| 6367 | } |
| 6368 | |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6369 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6370 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6371 | if (need_resched()) |
| 6372 | schedule(); |
| 6373 | } |
| 6374 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6375 | out: |
| 6376 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6377 | } |
| 6378 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6379 | static int __grow_ple_window(int val) |
| 6380 | { |
| 6381 | if (ple_window_grow < 1) |
| 6382 | return ple_window; |
| 6383 | |
| 6384 | val = min(val, ple_window_actual_max); |
| 6385 | |
| 6386 | if (ple_window_grow < ple_window) |
| 6387 | val *= ple_window_grow; |
| 6388 | else |
| 6389 | val += ple_window_grow; |
| 6390 | |
| 6391 | return val; |
| 6392 | } |
| 6393 | |
| 6394 | static int __shrink_ple_window(int val, int modifier, int minimum) |
| 6395 | { |
| 6396 | if (modifier < 1) |
| 6397 | return ple_window; |
| 6398 | |
| 6399 | if (modifier < ple_window) |
| 6400 | val /= modifier; |
| 6401 | else |
| 6402 | val -= modifier; |
| 6403 | |
| 6404 | return max(val, minimum); |
| 6405 | } |
| 6406 | |
| 6407 | static void grow_ple_window(struct kvm_vcpu *vcpu) |
| 6408 | { |
| 6409 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6410 | int old = vmx->ple_window; |
| 6411 | |
| 6412 | vmx->ple_window = __grow_ple_window(old); |
| 6413 | |
| 6414 | if (vmx->ple_window != old) |
| 6415 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6416 | |
| 6417 | 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] | 6418 | } |
| 6419 | |
| 6420 | static void shrink_ple_window(struct kvm_vcpu *vcpu) |
| 6421 | { |
| 6422 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6423 | int old = vmx->ple_window; |
| 6424 | |
| 6425 | vmx->ple_window = __shrink_ple_window(old, |
| 6426 | ple_window_shrink, ple_window); |
| 6427 | |
| 6428 | if (vmx->ple_window != old) |
| 6429 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6430 | |
| 6431 | 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] | 6432 | } |
| 6433 | |
| 6434 | /* |
| 6435 | * ple_window_actual_max is computed to be one grow_ple_window() below |
| 6436 | * ple_window_max. (See __grow_ple_window for the reason.) |
| 6437 | * This prevents overflows, because ple_window_max is int. |
| 6438 | * ple_window_max effectively rounded down to a multiple of ple_window_grow in |
| 6439 | * this process. |
| 6440 | * ple_window_max is also prevented from setting vmx->ple_window < ple_window. |
| 6441 | */ |
| 6442 | static void update_ple_window_actual_max(void) |
| 6443 | { |
| 6444 | ple_window_actual_max = |
| 6445 | __shrink_ple_window(max(ple_window_max, ple_window), |
| 6446 | ple_window_grow, INT_MIN); |
| 6447 | } |
| 6448 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6449 | /* |
| 6450 | * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR. |
| 6451 | */ |
| 6452 | static void wakeup_handler(void) |
| 6453 | { |
| 6454 | struct kvm_vcpu *vcpu; |
| 6455 | int cpu = smp_processor_id(); |
| 6456 | |
| 6457 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6458 | list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu), |
| 6459 | blocked_vcpu_list) { |
| 6460 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 6461 | |
| 6462 | if (pi_test_on(pi_desc) == 1) |
| 6463 | kvm_vcpu_kick(vcpu); |
| 6464 | } |
| 6465 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6466 | } |
| 6467 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6468 | void vmx_enable_tdp(void) |
| 6469 | { |
| 6470 | kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK, |
| 6471 | enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull, |
| 6472 | enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull, |
| 6473 | 0ull, VMX_EPT_EXECUTABLE_MASK, |
| 6474 | cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK, |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 6475 | enable_ept_ad_bits ? 0ull : VMX_EPT_RWX_MASK); |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6476 | |
| 6477 | ept_set_mmio_spte_mask(); |
| 6478 | kvm_enable_tdp(); |
| 6479 | } |
| 6480 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6481 | static __init int hardware_setup(void) |
| 6482 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6483 | int r = -ENOMEM, i, msr; |
| 6484 | |
| 6485 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6486 | |
| 6487 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) |
| 6488 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
| 6489 | |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6490 | for (i = 0; i < VMX_BITMAP_NR; i++) { |
| 6491 | vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6492 | if (!vmx_bitmap[i]) |
| 6493 | goto out; |
| 6494 | } |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6495 | |
| 6496 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6497 | memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE); |
| 6498 | memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE); |
| 6499 | |
| 6500 | /* |
| 6501 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6502 | * delays, but the vmexits simply slow things down). |
| 6503 | */ |
| 6504 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6505 | clear_bit(0x80, vmx_io_bitmap_a); |
| 6506 | |
| 6507 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
| 6508 | |
| 6509 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6510 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
| 6511 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6512 | if (setup_vmcs_config(&vmcs_config) < 0) { |
| 6513 | r = -EIO; |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6514 | goto out; |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6515 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6516 | |
| 6517 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 6518 | kvm_enable_efer_bits(EFER_NX); |
| 6519 | |
| 6520 | if (!cpu_has_vmx_vpid()) |
| 6521 | enable_vpid = 0; |
| 6522 | if (!cpu_has_vmx_shadow_vmcs()) |
| 6523 | enable_shadow_vmcs = 0; |
| 6524 | if (enable_shadow_vmcs) |
| 6525 | init_vmcs_shadow_fields(); |
| 6526 | |
| 6527 | if (!cpu_has_vmx_ept() || |
| 6528 | !cpu_has_vmx_ept_4levels()) { |
| 6529 | enable_ept = 0; |
| 6530 | enable_unrestricted_guest = 0; |
| 6531 | enable_ept_ad_bits = 0; |
| 6532 | } |
| 6533 | |
| 6534 | if (!cpu_has_vmx_ept_ad_bits()) |
| 6535 | enable_ept_ad_bits = 0; |
| 6536 | |
| 6537 | if (!cpu_has_vmx_unrestricted_guest()) |
| 6538 | enable_unrestricted_guest = 0; |
| 6539 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6540 | if (!cpu_has_vmx_flexpriority()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6541 | flexpriority_enabled = 0; |
| 6542 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6543 | /* |
| 6544 | * set_apic_access_page_addr() is used to reload apic access |
| 6545 | * page upon invalidation. No need to do anything if not |
| 6546 | * using the APIC_ACCESS_ADDR VMCS field. |
| 6547 | */ |
| 6548 | if (!flexpriority_enabled) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6549 | kvm_x86_ops->set_apic_access_page_addr = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6550 | |
| 6551 | if (!cpu_has_vmx_tpr_shadow()) |
| 6552 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6553 | |
| 6554 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 6555 | kvm_disable_largepages(); |
| 6556 | |
| 6557 | if (!cpu_has_vmx_ple()) |
| 6558 | ple_gap = 0; |
| 6559 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 6560 | if (!cpu_has_vmx_apicv()) { |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6561 | enable_apicv = 0; |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 6562 | kvm_x86_ops->sync_pir_to_irr = NULL; |
| 6563 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6564 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 6565 | if (cpu_has_vmx_tsc_scaling()) { |
| 6566 | kvm_has_tsc_control = true; |
| 6567 | kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX; |
| 6568 | kvm_tsc_scaling_ratio_frac_bits = 48; |
| 6569 | } |
| 6570 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6571 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6572 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6573 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6574 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6575 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6576 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
| 6577 | vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); |
| 6578 | |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 6579 | memcpy(vmx_msr_bitmap_legacy_x2apic_apicv, |
| 6580 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6581 | memcpy(vmx_msr_bitmap_longmode_x2apic_apicv, |
| 6582 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6583 | memcpy(vmx_msr_bitmap_legacy_x2apic, |
| 6584 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6585 | memcpy(vmx_msr_bitmap_longmode_x2apic, |
| 6586 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
| 6587 | |
Wanpeng Li | 04bb92e | 2015-09-16 19:31:11 +0800 | [diff] [blame] | 6588 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 6589 | |
Radim Krčmář | 40d8338 | 2016-09-29 22:41:31 +0200 | [diff] [blame] | 6590 | for (msr = 0x800; msr <= 0x8ff; msr++) { |
| 6591 | if (msr == 0x839 /* TMCCT */) |
| 6592 | continue; |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6593 | vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true); |
Radim Krčmář | 40d8338 | 2016-09-29 22:41:31 +0200 | [diff] [blame] | 6594 | } |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6595 | |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 6596 | /* |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6597 | * TPR reads and writes can be virtualized even if virtual interrupt |
| 6598 | * delivery is not in use. |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 6599 | */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6600 | vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true); |
| 6601 | vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false); |
| 6602 | |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 6603 | /* EOI */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6604 | vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true); |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 6605 | /* SELF-IPI */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6606 | vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true); |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6607 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6608 | if (enable_ept) |
| 6609 | vmx_enable_tdp(); |
| 6610 | else |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6611 | kvm_disable_tdp(); |
| 6612 | |
| 6613 | update_ple_window_actual_max(); |
| 6614 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 6615 | /* |
| 6616 | * Only enable PML when hardware supports PML feature, and both EPT |
| 6617 | * and EPT A/D bit features are enabled -- PML depends on them to work. |
| 6618 | */ |
| 6619 | if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml()) |
| 6620 | enable_pml = 0; |
| 6621 | |
| 6622 | if (!enable_pml) { |
| 6623 | kvm_x86_ops->slot_enable_log_dirty = NULL; |
| 6624 | kvm_x86_ops->slot_disable_log_dirty = NULL; |
| 6625 | kvm_x86_ops->flush_log_dirty = NULL; |
| 6626 | kvm_x86_ops->enable_log_dirty_pt_masked = NULL; |
| 6627 | } |
| 6628 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 6629 | if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) { |
| 6630 | u64 vmx_msr; |
| 6631 | |
| 6632 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 6633 | cpu_preemption_timer_multi = |
| 6634 | vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK; |
| 6635 | } else { |
| 6636 | kvm_x86_ops->set_hv_timer = NULL; |
| 6637 | kvm_x86_ops->cancel_hv_timer = NULL; |
| 6638 | } |
| 6639 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6640 | kvm_set_posted_intr_wakeup_handler(wakeup_handler); |
| 6641 | |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 6642 | kvm_mce_cap_supported |= MCG_LMCE_P; |
| 6643 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6644 | return alloc_kvm_area(); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6645 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6646 | out: |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6647 | for (i = 0; i < VMX_BITMAP_NR; i++) |
| 6648 | free_page((unsigned long)vmx_bitmap[i]); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6649 | |
| 6650 | return r; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6651 | } |
| 6652 | |
| 6653 | static __exit void hardware_unsetup(void) |
| 6654 | { |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6655 | int i; |
| 6656 | |
| 6657 | for (i = 0; i < VMX_BITMAP_NR; i++) |
| 6658 | free_page((unsigned long)vmx_bitmap[i]); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6659 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6660 | free_kvm_area(); |
| 6661 | } |
| 6662 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6663 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6664 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 6665 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 6666 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 6667 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6668 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6669 | if (ple_gap) |
| 6670 | grow_ple_window(vcpu); |
| 6671 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6672 | kvm_vcpu_on_spin(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6673 | return kvm_skip_emulated_instruction(vcpu); |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6674 | } |
| 6675 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6676 | static int handle_nop(struct kvm_vcpu *vcpu) |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6677 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6678 | return kvm_skip_emulated_instruction(vcpu); |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6679 | } |
| 6680 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6681 | static int handle_mwait(struct kvm_vcpu *vcpu) |
| 6682 | { |
| 6683 | printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n"); |
| 6684 | return handle_nop(vcpu); |
| 6685 | } |
| 6686 | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 6687 | static int handle_monitor_trap(struct kvm_vcpu *vcpu) |
| 6688 | { |
| 6689 | return 1; |
| 6690 | } |
| 6691 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6692 | static int handle_monitor(struct kvm_vcpu *vcpu) |
| 6693 | { |
| 6694 | printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n"); |
| 6695 | return handle_nop(vcpu); |
| 6696 | } |
| 6697 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6698 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6699 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 6700 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 6701 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 6702 | * allows keeping them loaded on the processor, and in the future will allow |
| 6703 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 6704 | * every entry if they never change. |
| 6705 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 6706 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 6707 | * |
| 6708 | * The following functions allocate and free a vmcs02 in this pool. |
| 6709 | */ |
| 6710 | |
| 6711 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 6712 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 6713 | { |
| 6714 | struct vmcs02_list *item; |
| 6715 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6716 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 6717 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6718 | return &item->vmcs02; |
| 6719 | } |
| 6720 | |
| 6721 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 6722 | /* Recycle the least recently used VMCS. */ |
Geliang Tang | d74c0e6 | 2016-01-01 19:47:14 +0800 | [diff] [blame] | 6723 | item = list_last_entry(&vmx->nested.vmcs02_pool, |
| 6724 | struct vmcs02_list, list); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6725 | item->vmptr = vmx->nested.current_vmptr; |
| 6726 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6727 | return &item->vmcs02; |
| 6728 | } |
| 6729 | |
| 6730 | /* Create a new VMCS */ |
Ioan Orghici | 0fa24ce | 2013-03-10 15:46:00 +0200 | [diff] [blame] | 6731 | item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6732 | if (!item) |
| 6733 | return NULL; |
| 6734 | item->vmcs02.vmcs = alloc_vmcs(); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 6735 | item->vmcs02.shadow_vmcs = NULL; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6736 | if (!item->vmcs02.vmcs) { |
| 6737 | kfree(item); |
| 6738 | return NULL; |
| 6739 | } |
| 6740 | loaded_vmcs_init(&item->vmcs02); |
| 6741 | item->vmptr = vmx->nested.current_vmptr; |
| 6742 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 6743 | vmx->nested.vmcs02_num++; |
| 6744 | return &item->vmcs02; |
| 6745 | } |
| 6746 | |
| 6747 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 6748 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 6749 | { |
| 6750 | struct vmcs02_list *item; |
| 6751 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6752 | if (item->vmptr == vmptr) { |
| 6753 | free_loaded_vmcs(&item->vmcs02); |
| 6754 | list_del(&item->list); |
| 6755 | kfree(item); |
| 6756 | vmx->nested.vmcs02_num--; |
| 6757 | return; |
| 6758 | } |
| 6759 | } |
| 6760 | |
| 6761 | /* |
| 6762 | * Free all VMCSs saved for this vcpu, except the one pointed by |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6763 | * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs |
| 6764 | * must be &vmx->vmcs01. |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6765 | */ |
| 6766 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 6767 | { |
| 6768 | struct vmcs02_list *item, *n; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6769 | |
| 6770 | WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6771 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6772 | /* |
| 6773 | * Something will leak if the above WARN triggers. Better than |
| 6774 | * a use-after-free. |
| 6775 | */ |
| 6776 | if (vmx->loaded_vmcs == &item->vmcs02) |
| 6777 | continue; |
| 6778 | |
| 6779 | free_loaded_vmcs(&item->vmcs02); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6780 | list_del(&item->list); |
| 6781 | kfree(item); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6782 | vmx->nested.vmcs02_num--; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6783 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6784 | } |
| 6785 | |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6786 | /* |
| 6787 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 6788 | * set the success or error code of an emulated VMX instruction, as specified |
| 6789 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 6790 | */ |
| 6791 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 6792 | { |
| 6793 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 6794 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6795 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 6796 | } |
| 6797 | |
| 6798 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 6799 | { |
| 6800 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6801 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 6802 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6803 | | X86_EFLAGS_CF); |
| 6804 | } |
| 6805 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6806 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6807 | u32 vm_instruction_error) |
| 6808 | { |
| 6809 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 6810 | /* |
| 6811 | * failValid writes the error number to the current VMCS, which |
| 6812 | * can't be done there isn't a current VMCS. |
| 6813 | */ |
| 6814 | nested_vmx_failInvalid(vcpu); |
| 6815 | return; |
| 6816 | } |
| 6817 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6818 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6819 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6820 | | X86_EFLAGS_ZF); |
| 6821 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 6822 | /* |
| 6823 | * We don't need to force a shadow sync because |
| 6824 | * VM_INSTRUCTION_ERROR is not shadowed |
| 6825 | */ |
| 6826 | } |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6827 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 6828 | static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator) |
| 6829 | { |
| 6830 | /* TODO: not to reset guest simply here. */ |
| 6831 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 6832 | pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 6833 | } |
| 6834 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6835 | static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer) |
| 6836 | { |
| 6837 | struct vcpu_vmx *vmx = |
| 6838 | container_of(timer, struct vcpu_vmx, nested.preemption_timer); |
| 6839 | |
| 6840 | vmx->nested.preemption_timer_expired = true; |
| 6841 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 6842 | kvm_vcpu_kick(&vmx->vcpu); |
| 6843 | |
| 6844 | return HRTIMER_NORESTART; |
| 6845 | } |
| 6846 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6847 | /* |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6848 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 6849 | * exit caused by such an instruction (run by a guest hypervisor). |
| 6850 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 6851 | * #UD or #GP. |
| 6852 | */ |
| 6853 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 6854 | unsigned long exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6855 | u32 vmx_instruction_info, bool wr, gva_t *ret) |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6856 | { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6857 | gva_t off; |
| 6858 | bool exn; |
| 6859 | struct kvm_segment s; |
| 6860 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6861 | /* |
| 6862 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 6863 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 6864 | * addressing components of the operand. Only the displacement part |
| 6865 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 6866 | * For how an actual address is calculated from all these components, |
| 6867 | * refer to Vol. 1, "Operand Addressing". |
| 6868 | */ |
| 6869 | int scaling = vmx_instruction_info & 3; |
| 6870 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 6871 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 6872 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 6873 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 6874 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 6875 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 6876 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 6877 | |
| 6878 | if (is_reg) { |
| 6879 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6880 | return 1; |
| 6881 | } |
| 6882 | |
| 6883 | /* Addr = segment_base + offset */ |
| 6884 | /* offset = base + [index * scale] + displacement */ |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6885 | off = exit_qualification; /* holds the displacement */ |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6886 | if (base_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6887 | off += kvm_register_read(vcpu, base_reg); |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6888 | if (index_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6889 | off += kvm_register_read(vcpu, index_reg)<<scaling; |
| 6890 | vmx_get_segment(vcpu, &s, seg_reg); |
| 6891 | *ret = s.base + off; |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6892 | |
| 6893 | if (addr_size == 1) /* 32 bit */ |
| 6894 | *ret &= 0xffffffff; |
| 6895 | |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6896 | /* Checks for #GP/#SS exceptions. */ |
| 6897 | exn = false; |
Quentin Casasnovas | ff30ef4 | 2016-06-18 11:01:05 +0200 | [diff] [blame] | 6898 | if (is_long_mode(vcpu)) { |
| 6899 | /* Long mode: #GP(0)/#SS(0) if the memory address is in a |
| 6900 | * non-canonical form. This is the only check on the memory |
| 6901 | * destination for long mode! |
| 6902 | */ |
| 6903 | exn = is_noncanonical_address(*ret); |
| 6904 | } else if (is_protmode(vcpu)) { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6905 | /* Protected mode: apply checks for segment validity in the |
| 6906 | * following order: |
| 6907 | * - segment type check (#GP(0) may be thrown) |
| 6908 | * - usability check (#GP(0)/#SS(0)) |
| 6909 | * - limit check (#GP(0)/#SS(0)) |
| 6910 | */ |
| 6911 | if (wr) |
| 6912 | /* #GP(0) if the destination operand is located in a |
| 6913 | * read-only data segment or any code segment. |
| 6914 | */ |
| 6915 | exn = ((s.type & 0xa) == 0 || (s.type & 8)); |
| 6916 | else |
| 6917 | /* #GP(0) if the source operand is located in an |
| 6918 | * execute-only code segment |
| 6919 | */ |
| 6920 | exn = ((s.type & 0xa) == 8); |
Quentin Casasnovas | ff30ef4 | 2016-06-18 11:01:05 +0200 | [diff] [blame] | 6921 | if (exn) { |
| 6922 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 6923 | return 1; |
| 6924 | } |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6925 | /* Protected mode: #GP(0)/#SS(0) if the segment is unusable. |
| 6926 | */ |
| 6927 | exn = (s.unusable != 0); |
| 6928 | /* Protected mode: #GP(0)/#SS(0) if the memory |
| 6929 | * operand is outside the segment limit. |
| 6930 | */ |
| 6931 | exn = exn || (off + sizeof(u64) > s.limit); |
| 6932 | } |
| 6933 | if (exn) { |
| 6934 | kvm_queue_exception_e(vcpu, |
| 6935 | seg_reg == VCPU_SREG_SS ? |
| 6936 | SS_VECTOR : GP_VECTOR, |
| 6937 | 0); |
| 6938 | return 1; |
| 6939 | } |
| 6940 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6941 | return 0; |
| 6942 | } |
| 6943 | |
| 6944 | /* |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6945 | * This function performs the various checks including |
| 6946 | * - if it's 4KB aligned |
| 6947 | * - No bits beyond the physical address width are set |
| 6948 | * - Returns 0 on success or else 1 |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6949 | * (Intel SDM Section 30.3) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6950 | */ |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6951 | static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason, |
| 6952 | gpa_t *vmpointer) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6953 | { |
| 6954 | gva_t gva; |
| 6955 | gpa_t vmptr; |
| 6956 | struct x86_exception e; |
| 6957 | struct page *page; |
| 6958 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6959 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 6960 | |
| 6961 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6962 | vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6963 | return 1; |
| 6964 | |
| 6965 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 6966 | sizeof(vmptr), &e)) { |
| 6967 | kvm_inject_page_fault(vcpu, &e); |
| 6968 | return 1; |
| 6969 | } |
| 6970 | |
| 6971 | switch (exit_reason) { |
| 6972 | case EXIT_REASON_VMON: |
| 6973 | /* |
| 6974 | * SDM 3: 24.11.5 |
| 6975 | * The first 4 bytes of VMXON region contain the supported |
| 6976 | * VMCS revision identifier |
| 6977 | * |
| 6978 | * Note - IA32_VMX_BASIC[48] will never be 1 |
| 6979 | * for the nested case; |
| 6980 | * which replaces physical address width with 32 |
| 6981 | * |
| 6982 | */ |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6983 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6984 | nested_vmx_failInvalid(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6985 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6986 | } |
| 6987 | |
| 6988 | page = nested_get_page(vcpu, vmptr); |
Paolo Bonzini | 06ce521 | 2017-01-24 11:56:21 +0100 | [diff] [blame] | 6989 | if (page == NULL) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6990 | nested_vmx_failInvalid(vcpu); |
Paolo Bonzini | 06ce521 | 2017-01-24 11:56:21 +0100 | [diff] [blame] | 6991 | return kvm_skip_emulated_instruction(vcpu); |
| 6992 | } |
| 6993 | if (*(u32 *)kmap(page) != VMCS12_REVISION) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6994 | kunmap(page); |
Paolo Bonzini | 06ce521 | 2017-01-24 11:56:21 +0100 | [diff] [blame] | 6995 | nested_release_page_clean(page); |
| 6996 | nested_vmx_failInvalid(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6997 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6998 | } |
| 6999 | kunmap(page); |
Paolo Bonzini | 06ce521 | 2017-01-24 11:56:21 +0100 | [diff] [blame] | 7000 | nested_release_page_clean(page); |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7001 | vmx->nested.vmxon_ptr = vmptr; |
| 7002 | break; |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7003 | case EXIT_REASON_VMCLEAR: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 7004 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7005 | nested_vmx_failValid(vcpu, |
| 7006 | VMXERR_VMCLEAR_INVALID_ADDRESS); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7007 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7008 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7009 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7010 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 7011 | nested_vmx_failValid(vcpu, |
| 7012 | VMXERR_VMCLEAR_VMXON_POINTER); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7013 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7014 | } |
| 7015 | break; |
| 7016 | case EXIT_REASON_VMPTRLD: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 7017 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7018 | nested_vmx_failValid(vcpu, |
| 7019 | VMXERR_VMPTRLD_INVALID_ADDRESS); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7020 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7021 | } |
| 7022 | |
| 7023 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 7024 | nested_vmx_failValid(vcpu, |
GanShun | 37b9a67 | 2016-11-30 10:28:19 -0800 | [diff] [blame] | 7025 | VMXERR_VMPTRLD_VMXON_POINTER); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7026 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7027 | } |
| 7028 | break; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7029 | default: |
| 7030 | return 1; /* shouldn't happen */ |
| 7031 | } |
| 7032 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7033 | if (vmpointer) |
| 7034 | *vmpointer = vmptr; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7035 | return 0; |
| 7036 | } |
| 7037 | |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7038 | static int enter_vmx_operation(struct kvm_vcpu *vcpu) |
| 7039 | { |
| 7040 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7041 | struct vmcs *shadow_vmcs; |
| 7042 | |
| 7043 | if (cpu_has_vmx_msr_bitmap()) { |
| 7044 | vmx->nested.msr_bitmap = |
| 7045 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 7046 | if (!vmx->nested.msr_bitmap) |
| 7047 | goto out_msr_bitmap; |
| 7048 | } |
| 7049 | |
| 7050 | vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL); |
| 7051 | if (!vmx->nested.cached_vmcs12) |
| 7052 | goto out_cached_vmcs12; |
| 7053 | |
| 7054 | if (enable_shadow_vmcs) { |
| 7055 | shadow_vmcs = alloc_vmcs(); |
| 7056 | if (!shadow_vmcs) |
| 7057 | goto out_shadow_vmcs; |
| 7058 | /* mark vmcs as shadow */ |
| 7059 | shadow_vmcs->revision_id |= (1u << 31); |
| 7060 | /* init shadow vmcs */ |
| 7061 | vmcs_clear(shadow_vmcs); |
| 7062 | vmx->vmcs01.shadow_vmcs = shadow_vmcs; |
| 7063 | } |
| 7064 | |
| 7065 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 7066 | vmx->nested.vmcs02_num = 0; |
| 7067 | |
| 7068 | hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC, |
| 7069 | HRTIMER_MODE_REL_PINNED); |
| 7070 | vmx->nested.preemption_timer.function = vmx_preemption_timer_fn; |
| 7071 | |
| 7072 | vmx->nested.vmxon = true; |
| 7073 | return 0; |
| 7074 | |
| 7075 | out_shadow_vmcs: |
| 7076 | kfree(vmx->nested.cached_vmcs12); |
| 7077 | |
| 7078 | out_cached_vmcs12: |
| 7079 | free_page((unsigned long)vmx->nested.msr_bitmap); |
| 7080 | |
| 7081 | out_msr_bitmap: |
| 7082 | return -ENOMEM; |
| 7083 | } |
| 7084 | |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7085 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7086 | * Emulate the VMXON instruction. |
| 7087 | * Currently, we just remember that VMX is active, and do not save or even |
| 7088 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 7089 | * do not currently need to store anything in that guest-allocated memory |
| 7090 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 7091 | * argument is different from the VMXON pointer (which the spec says they do). |
| 7092 | */ |
| 7093 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 7094 | { |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7095 | int ret; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7096 | struct kvm_segment cs; |
| 7097 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7098 | const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED |
| 7099 | | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7100 | |
| 7101 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 7102 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 7103 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 7104 | * Otherwise, we should fail with #UD. We test these now: |
| 7105 | */ |
| 7106 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 7107 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 7108 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 7109 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7110 | return 1; |
| 7111 | } |
| 7112 | |
| 7113 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7114 | if (is_long_mode(vcpu) && !cs.l) { |
| 7115 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7116 | return 1; |
| 7117 | } |
| 7118 | |
| 7119 | if (vmx_get_cpl(vcpu)) { |
| 7120 | kvm_inject_gp(vcpu, 0); |
| 7121 | return 1; |
| 7122 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7123 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7124 | if (vmx->nested.vmxon) { |
| 7125 | nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7126 | return kvm_skip_emulated_instruction(vcpu); |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7127 | } |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7128 | |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 7129 | if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES) |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7130 | != VMXON_NEEDED_FEATURES) { |
| 7131 | kvm_inject_gp(vcpu, 0); |
| 7132 | return 1; |
| 7133 | } |
| 7134 | |
Jim Mattson | 21e7fbe | 2016-12-22 15:49:55 -0800 | [diff] [blame] | 7135 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL)) |
| 7136 | return 1; |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7137 | |
| 7138 | ret = enter_vmx_operation(vcpu); |
| 7139 | if (ret) |
| 7140 | return ret; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7141 | |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 7142 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7143 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7144 | } |
| 7145 | |
| 7146 | /* |
| 7147 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 7148 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 7149 | * slightly different). It also specifies what exception to inject otherwise. |
| 7150 | */ |
| 7151 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 7152 | { |
| 7153 | struct kvm_segment cs; |
| 7154 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7155 | |
| 7156 | if (!vmx->nested.vmxon) { |
| 7157 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7158 | return 0; |
| 7159 | } |
| 7160 | |
| 7161 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7162 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 7163 | (is_long_mode(vcpu) && !cs.l)) { |
| 7164 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7165 | return 0; |
| 7166 | } |
| 7167 | |
| 7168 | if (vmx_get_cpl(vcpu)) { |
| 7169 | kvm_inject_gp(vcpu, 0); |
| 7170 | return 0; |
| 7171 | } |
| 7172 | |
| 7173 | return 1; |
| 7174 | } |
| 7175 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7176 | static inline void nested_release_vmcs12(struct vcpu_vmx *vmx) |
| 7177 | { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7178 | if (vmx->nested.current_vmptr == -1ull) |
| 7179 | return; |
| 7180 | |
| 7181 | /* current_vmptr and current_vmcs12 are always set/reset together */ |
| 7182 | if (WARN_ON(vmx->nested.current_vmcs12 == NULL)) |
| 7183 | return; |
| 7184 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7185 | if (enable_shadow_vmcs) { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7186 | /* copy to memory all shadowed fields in case |
| 7187 | they were modified */ |
| 7188 | copy_shadow_to_vmcs12(vmx); |
| 7189 | vmx->nested.sync_shadow_vmcs = false; |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 7190 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 7191 | SECONDARY_EXEC_SHADOW_VMCS); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7192 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7193 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 7194 | vmx->nested.posted_intr_nv = -1; |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7195 | |
| 7196 | /* Flush VMCS12 to guest memory */ |
| 7197 | memcpy(vmx->nested.current_vmcs12, vmx->nested.cached_vmcs12, |
| 7198 | VMCS12_SIZE); |
| 7199 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7200 | kunmap(vmx->nested.current_vmcs12_page); |
| 7201 | nested_release_page(vmx->nested.current_vmcs12_page); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7202 | vmx->nested.current_vmptr = -1ull; |
| 7203 | vmx->nested.current_vmcs12 = NULL; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7204 | } |
| 7205 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7206 | /* |
| 7207 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 7208 | * just stops using VMX. |
| 7209 | */ |
| 7210 | static void free_nested(struct vcpu_vmx *vmx) |
| 7211 | { |
| 7212 | if (!vmx->nested.vmxon) |
| 7213 | return; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7214 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7215 | vmx->nested.vmxon = false; |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 7216 | free_vpid(vmx->nested.vpid02); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7217 | nested_release_vmcs12(vmx); |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 7218 | if (vmx->nested.msr_bitmap) { |
| 7219 | free_page((unsigned long)vmx->nested.msr_bitmap); |
| 7220 | vmx->nested.msr_bitmap = NULL; |
| 7221 | } |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7222 | if (enable_shadow_vmcs) { |
| 7223 | vmcs_clear(vmx->vmcs01.shadow_vmcs); |
| 7224 | free_vmcs(vmx->vmcs01.shadow_vmcs); |
| 7225 | vmx->vmcs01.shadow_vmcs = NULL; |
| 7226 | } |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7227 | kfree(vmx->nested.cached_vmcs12); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 7228 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 7229 | if (vmx->nested.apic_access_page) { |
| 7230 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 7231 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 7232 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7233 | if (vmx->nested.virtual_apic_page) { |
| 7234 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 7235 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7236 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 7237 | if (vmx->nested.pi_desc_page) { |
| 7238 | kunmap(vmx->nested.pi_desc_page); |
| 7239 | nested_release_page(vmx->nested.pi_desc_page); |
| 7240 | vmx->nested.pi_desc_page = NULL; |
| 7241 | vmx->nested.pi_desc = NULL; |
| 7242 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7243 | |
| 7244 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7245 | } |
| 7246 | |
| 7247 | /* Emulate the VMXOFF instruction */ |
| 7248 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 7249 | { |
| 7250 | if (!nested_vmx_check_permission(vcpu)) |
| 7251 | return 1; |
| 7252 | free_nested(to_vmx(vcpu)); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 7253 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7254 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7255 | } |
| 7256 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7257 | /* Emulate the VMCLEAR instruction */ |
| 7258 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 7259 | { |
| 7260 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | 587d7e72 | 2017-03-02 12:41:48 -0800 | [diff] [blame] | 7261 | u32 zero = 0; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7262 | gpa_t vmptr; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7263 | |
| 7264 | if (!nested_vmx_check_permission(vcpu)) |
| 7265 | return 1; |
| 7266 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7267 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr)) |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7268 | return 1; |
| 7269 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7270 | if (vmptr == vmx->nested.current_vmptr) |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7271 | nested_release_vmcs12(vmx); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7272 | |
Jim Mattson | 587d7e72 | 2017-03-02 12:41:48 -0800 | [diff] [blame] | 7273 | kvm_vcpu_write_guest(vcpu, |
| 7274 | vmptr + offsetof(struct vmcs12, launch_state), |
| 7275 | &zero, sizeof(zero)); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7276 | |
| 7277 | nested_free_vmcs02(vmx, vmptr); |
| 7278 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7279 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7280 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7281 | } |
| 7282 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7283 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 7284 | |
| 7285 | /* Emulate the VMLAUNCH instruction */ |
| 7286 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 7287 | { |
| 7288 | return nested_vmx_run(vcpu, true); |
| 7289 | } |
| 7290 | |
| 7291 | /* Emulate the VMRESUME instruction */ |
| 7292 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 7293 | { |
| 7294 | |
| 7295 | return nested_vmx_run(vcpu, false); |
| 7296 | } |
| 7297 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7298 | enum vmcs_field_type { |
| 7299 | VMCS_FIELD_TYPE_U16 = 0, |
| 7300 | VMCS_FIELD_TYPE_U64 = 1, |
| 7301 | VMCS_FIELD_TYPE_U32 = 2, |
| 7302 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 7303 | }; |
| 7304 | |
| 7305 | static inline int vmcs_field_type(unsigned long field) |
| 7306 | { |
| 7307 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 7308 | return VMCS_FIELD_TYPE_U32; |
| 7309 | return (field >> 13) & 0x3 ; |
| 7310 | } |
| 7311 | |
| 7312 | static inline int vmcs_field_readonly(unsigned long field) |
| 7313 | { |
| 7314 | return (((field >> 10) & 0x3) == 1); |
| 7315 | } |
| 7316 | |
| 7317 | /* |
| 7318 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 7319 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 7320 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 7321 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 7322 | * 64-bit fields are to be returned). |
| 7323 | */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7324 | static inline int vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 7325 | unsigned long field, u64 *ret) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7326 | { |
| 7327 | short offset = vmcs_field_to_offset(field); |
| 7328 | char *p; |
| 7329 | |
| 7330 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7331 | return offset; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7332 | |
| 7333 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 7334 | |
| 7335 | switch (vmcs_field_type(field)) { |
| 7336 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7337 | *ret = *((natural_width *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7338 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7339 | case VMCS_FIELD_TYPE_U16: |
| 7340 | *ret = *((u16 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7341 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7342 | case VMCS_FIELD_TYPE_U32: |
| 7343 | *ret = *((u32 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7344 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7345 | case VMCS_FIELD_TYPE_U64: |
| 7346 | *ret = *((u64 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7347 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7348 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7349 | WARN_ON(1); |
| 7350 | return -ENOENT; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7351 | } |
| 7352 | } |
| 7353 | |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7354 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7355 | static inline int vmcs12_write_any(struct kvm_vcpu *vcpu, |
| 7356 | unsigned long field, u64 field_value){ |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7357 | short offset = vmcs_field_to_offset(field); |
| 7358 | char *p = ((char *) get_vmcs12(vcpu)) + offset; |
| 7359 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7360 | return offset; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7361 | |
| 7362 | switch (vmcs_field_type(field)) { |
| 7363 | case VMCS_FIELD_TYPE_U16: |
| 7364 | *(u16 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7365 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7366 | case VMCS_FIELD_TYPE_U32: |
| 7367 | *(u32 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7368 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7369 | case VMCS_FIELD_TYPE_U64: |
| 7370 | *(u64 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7371 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7372 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7373 | *(natural_width *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7374 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7375 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7376 | WARN_ON(1); |
| 7377 | return -ENOENT; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7378 | } |
| 7379 | |
| 7380 | } |
| 7381 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7382 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx) |
| 7383 | { |
| 7384 | int i; |
| 7385 | unsigned long field; |
| 7386 | u64 field_value; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7387 | struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7388 | const unsigned long *fields = shadow_read_write_fields; |
| 7389 | const int num_fields = max_shadow_read_write_fields; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7390 | |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7391 | preempt_disable(); |
| 7392 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7393 | vmcs_load(shadow_vmcs); |
| 7394 | |
| 7395 | for (i = 0; i < num_fields; i++) { |
| 7396 | field = fields[i]; |
| 7397 | switch (vmcs_field_type(field)) { |
| 7398 | case VMCS_FIELD_TYPE_U16: |
| 7399 | field_value = vmcs_read16(field); |
| 7400 | break; |
| 7401 | case VMCS_FIELD_TYPE_U32: |
| 7402 | field_value = vmcs_read32(field); |
| 7403 | break; |
| 7404 | case VMCS_FIELD_TYPE_U64: |
| 7405 | field_value = vmcs_read64(field); |
| 7406 | break; |
| 7407 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7408 | field_value = vmcs_readl(field); |
| 7409 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7410 | default: |
| 7411 | WARN_ON(1); |
| 7412 | continue; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7413 | } |
| 7414 | vmcs12_write_any(&vmx->vcpu, field, field_value); |
| 7415 | } |
| 7416 | |
| 7417 | vmcs_clear(shadow_vmcs); |
| 7418 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7419 | |
| 7420 | preempt_enable(); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7421 | } |
| 7422 | |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7423 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx) |
| 7424 | { |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7425 | const unsigned long *fields[] = { |
| 7426 | shadow_read_write_fields, |
| 7427 | shadow_read_only_fields |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7428 | }; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7429 | const int max_fields[] = { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7430 | max_shadow_read_write_fields, |
| 7431 | max_shadow_read_only_fields |
| 7432 | }; |
| 7433 | int i, q; |
| 7434 | unsigned long field; |
| 7435 | u64 field_value = 0; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7436 | struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7437 | |
| 7438 | vmcs_load(shadow_vmcs); |
| 7439 | |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7440 | for (q = 0; q < ARRAY_SIZE(fields); q++) { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7441 | for (i = 0; i < max_fields[q]; i++) { |
| 7442 | field = fields[q][i]; |
| 7443 | vmcs12_read_any(&vmx->vcpu, field, &field_value); |
| 7444 | |
| 7445 | switch (vmcs_field_type(field)) { |
| 7446 | case VMCS_FIELD_TYPE_U16: |
| 7447 | vmcs_write16(field, (u16)field_value); |
| 7448 | break; |
| 7449 | case VMCS_FIELD_TYPE_U32: |
| 7450 | vmcs_write32(field, (u32)field_value); |
| 7451 | break; |
| 7452 | case VMCS_FIELD_TYPE_U64: |
| 7453 | vmcs_write64(field, (u64)field_value); |
| 7454 | break; |
| 7455 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7456 | vmcs_writel(field, (long)field_value); |
| 7457 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7458 | default: |
| 7459 | WARN_ON(1); |
| 7460 | break; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7461 | } |
| 7462 | } |
| 7463 | } |
| 7464 | |
| 7465 | vmcs_clear(shadow_vmcs); |
| 7466 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 7467 | } |
| 7468 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7469 | /* |
| 7470 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 7471 | * used before) all generate the same failure when it is missing. |
| 7472 | */ |
| 7473 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 7474 | { |
| 7475 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7476 | if (vmx->nested.current_vmptr == -1ull) { |
| 7477 | nested_vmx_failInvalid(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7478 | return 0; |
| 7479 | } |
| 7480 | return 1; |
| 7481 | } |
| 7482 | |
| 7483 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 7484 | { |
| 7485 | unsigned long field; |
| 7486 | u64 field_value; |
| 7487 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7488 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7489 | gva_t gva = 0; |
| 7490 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7491 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7492 | return 1; |
| 7493 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7494 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 7495 | return kvm_skip_emulated_instruction(vcpu); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7496 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7497 | /* Decode instruction info and find the field to read */ |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7498 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7499 | /* Read the field, zero-extended to a u64 field_value */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7500 | if (vmcs12_read_any(vcpu, field, &field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7501 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7502 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7503 | } |
| 7504 | /* |
| 7505 | * Now copy part of this value to register or memory, as requested. |
| 7506 | * Note that the number of bits actually copied is 32 or 64 depending |
| 7507 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 7508 | */ |
| 7509 | if (vmx_instruction_info & (1u << 10)) { |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7510 | kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7511 | field_value); |
| 7512 | } else { |
| 7513 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7514 | vmx_instruction_info, true, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7515 | return 1; |
| 7516 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 7517 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 7518 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 7519 | } |
| 7520 | |
| 7521 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7522 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7523 | } |
| 7524 | |
| 7525 | |
| 7526 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 7527 | { |
| 7528 | unsigned long field; |
| 7529 | gva_t gva; |
| 7530 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7531 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7532 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 7533 | * mode, and eventually we need to write that into a field of several |
| 7534 | * possible lengths. The code below first zero-extends the value to 64 |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 7535 | * bit (field_value), and then copies only the appropriate number of |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7536 | * bits into the vmcs12 field. |
| 7537 | */ |
| 7538 | u64 field_value = 0; |
| 7539 | struct x86_exception e; |
| 7540 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7541 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7542 | return 1; |
| 7543 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7544 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 7545 | return kvm_skip_emulated_instruction(vcpu); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7546 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7547 | if (vmx_instruction_info & (1u << 10)) |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7548 | field_value = kvm_register_readl(vcpu, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7549 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 7550 | else { |
| 7551 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7552 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7553 | return 1; |
| 7554 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7555 | &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7556 | kvm_inject_page_fault(vcpu, &e); |
| 7557 | return 1; |
| 7558 | } |
| 7559 | } |
| 7560 | |
| 7561 | |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7562 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7563 | if (vmcs_field_readonly(field)) { |
| 7564 | nested_vmx_failValid(vcpu, |
| 7565 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7566 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7567 | } |
| 7568 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7569 | if (vmcs12_write_any(vcpu, field, field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7570 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7571 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7572 | } |
| 7573 | |
| 7574 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7575 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7576 | } |
| 7577 | |
Jim Mattson | a8bc284 | 2016-11-30 12:03:44 -0800 | [diff] [blame] | 7578 | static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 7579 | { |
| 7580 | vmx->nested.current_vmptr = vmptr; |
| 7581 | if (enable_shadow_vmcs) { |
| 7582 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 7583 | SECONDARY_EXEC_SHADOW_VMCS); |
| 7584 | vmcs_write64(VMCS_LINK_POINTER, |
| 7585 | __pa(vmx->vmcs01.shadow_vmcs)); |
| 7586 | vmx->nested.sync_shadow_vmcs = true; |
| 7587 | } |
| 7588 | } |
| 7589 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7590 | /* Emulate the VMPTRLD instruction */ |
| 7591 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 7592 | { |
| 7593 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7594 | gpa_t vmptr; |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7595 | |
| 7596 | if (!nested_vmx_check_permission(vcpu)) |
| 7597 | return 1; |
| 7598 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7599 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr)) |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7600 | return 1; |
| 7601 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7602 | if (vmx->nested.current_vmptr != vmptr) { |
| 7603 | struct vmcs12 *new_vmcs12; |
| 7604 | struct page *page; |
| 7605 | page = nested_get_page(vcpu, vmptr); |
| 7606 | if (page == NULL) { |
| 7607 | nested_vmx_failInvalid(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7608 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7609 | } |
| 7610 | new_vmcs12 = kmap(page); |
| 7611 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 7612 | kunmap(page); |
| 7613 | nested_release_page_clean(page); |
| 7614 | nested_vmx_failValid(vcpu, |
| 7615 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7616 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7617 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7618 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7619 | nested_release_vmcs12(vmx); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7620 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 7621 | vmx->nested.current_vmcs12_page = page; |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7622 | /* |
| 7623 | * Load VMCS12 from guest memory since it is not already |
| 7624 | * cached. |
| 7625 | */ |
| 7626 | memcpy(vmx->nested.cached_vmcs12, |
| 7627 | vmx->nested.current_vmcs12, VMCS12_SIZE); |
Jim Mattson | a8bc284 | 2016-11-30 12:03:44 -0800 | [diff] [blame] | 7628 | set_current_vmptr(vmx, vmptr); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7629 | } |
| 7630 | |
| 7631 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7632 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7633 | } |
| 7634 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7635 | /* Emulate the VMPTRST instruction */ |
| 7636 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 7637 | { |
| 7638 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7639 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7640 | gva_t vmcs_gva; |
| 7641 | struct x86_exception e; |
| 7642 | |
| 7643 | if (!nested_vmx_check_permission(vcpu)) |
| 7644 | return 1; |
| 7645 | |
| 7646 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7647 | vmx_instruction_info, true, &vmcs_gva)) |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7648 | return 1; |
| 7649 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 7650 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 7651 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 7652 | sizeof(u64), &e)) { |
| 7653 | kvm_inject_page_fault(vcpu, &e); |
| 7654 | return 1; |
| 7655 | } |
| 7656 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7657 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7658 | } |
| 7659 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7660 | /* Emulate the INVEPT instruction */ |
| 7661 | static int handle_invept(struct kvm_vcpu *vcpu) |
| 7662 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7663 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7664 | u32 vmx_instruction_info, types; |
| 7665 | unsigned long type; |
| 7666 | gva_t gva; |
| 7667 | struct x86_exception e; |
| 7668 | struct { |
| 7669 | u64 eptp, gpa; |
| 7670 | } operand; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7671 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7672 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7673 | SECONDARY_EXEC_ENABLE_EPT) || |
| 7674 | !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7675 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7676 | return 1; |
| 7677 | } |
| 7678 | |
| 7679 | if (!nested_vmx_check_permission(vcpu)) |
| 7680 | return 1; |
| 7681 | |
| 7682 | if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) { |
| 7683 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7684 | return 1; |
| 7685 | } |
| 7686 | |
| 7687 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7688 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7689 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7690 | 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] | 7691 | |
Jim Mattson | 85c856b | 2016-10-26 08:38:38 -0700 | [diff] [blame] | 7692 | if (type >= 32 || !(types & (1 << type))) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7693 | nested_vmx_failValid(vcpu, |
| 7694 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7695 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7696 | } |
| 7697 | |
| 7698 | /* According to the Intel VMX instruction reference, the memory |
| 7699 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7700 | */ |
| 7701 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7702 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7703 | return 1; |
| 7704 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7705 | sizeof(operand), &e)) { |
| 7706 | kvm_inject_page_fault(vcpu, &e); |
| 7707 | return 1; |
| 7708 | } |
| 7709 | |
| 7710 | switch (type) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7711 | case VMX_EPT_EXTENT_GLOBAL: |
Bandan Das | 45e1181 | 2016-08-02 16:32:36 -0400 | [diff] [blame] | 7712 | /* |
| 7713 | * TODO: track mappings and invalidate |
| 7714 | * single context requests appropriately |
| 7715 | */ |
| 7716 | case VMX_EPT_EXTENT_CONTEXT: |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7717 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 7718 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7719 | nested_vmx_succeed(vcpu); |
| 7720 | break; |
| 7721 | default: |
| 7722 | BUG_ON(1); |
| 7723 | break; |
| 7724 | } |
| 7725 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7726 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7727 | } |
| 7728 | |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7729 | static int handle_invvpid(struct kvm_vcpu *vcpu) |
| 7730 | { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7731 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7732 | u32 vmx_instruction_info; |
| 7733 | unsigned long type, types; |
| 7734 | gva_t gva; |
| 7735 | struct x86_exception e; |
| 7736 | int vpid; |
| 7737 | |
| 7738 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7739 | SECONDARY_EXEC_ENABLE_VPID) || |
| 7740 | !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) { |
| 7741 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7742 | return 1; |
| 7743 | } |
| 7744 | |
| 7745 | if (!nested_vmx_check_permission(vcpu)) |
| 7746 | return 1; |
| 7747 | |
| 7748 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7749 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
| 7750 | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7751 | types = (vmx->nested.nested_vmx_vpid_caps & |
| 7752 | VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7753 | |
Jim Mattson | 85c856b | 2016-10-26 08:38:38 -0700 | [diff] [blame] | 7754 | if (type >= 32 || !(types & (1 << type))) { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7755 | nested_vmx_failValid(vcpu, |
| 7756 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7757 | return kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7758 | } |
| 7759 | |
| 7760 | /* according to the intel vmx instruction reference, the memory |
| 7761 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7762 | */ |
| 7763 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 7764 | vmx_instruction_info, false, &gva)) |
| 7765 | return 1; |
| 7766 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid, |
| 7767 | sizeof(u32), &e)) { |
| 7768 | kvm_inject_page_fault(vcpu, &e); |
| 7769 | return 1; |
| 7770 | } |
| 7771 | |
| 7772 | switch (type) { |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7773 | case VMX_VPID_EXTENT_INDIVIDUAL_ADDR: |
Paolo Bonzini | ef697a7 | 2016-03-18 16:58:38 +0100 | [diff] [blame] | 7774 | case VMX_VPID_EXTENT_SINGLE_CONTEXT: |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7775 | case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL: |
| 7776 | if (!vpid) { |
| 7777 | nested_vmx_failValid(vcpu, |
| 7778 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7779 | return kvm_skip_emulated_instruction(vcpu); |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7780 | } |
| 7781 | break; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7782 | case VMX_VPID_EXTENT_ALL_CONTEXT: |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7783 | break; |
| 7784 | default: |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7785 | WARN_ON_ONCE(1); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7786 | return kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7787 | } |
| 7788 | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7789 | __vmx_flush_tlb(vcpu, vmx->nested.vpid02); |
| 7790 | nested_vmx_succeed(vcpu); |
| 7791 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7792 | return kvm_skip_emulated_instruction(vcpu); |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7793 | } |
| 7794 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7795 | static int handle_pml_full(struct kvm_vcpu *vcpu) |
| 7796 | { |
| 7797 | unsigned long exit_qualification; |
| 7798 | |
| 7799 | trace_kvm_pml_full(vcpu->vcpu_id); |
| 7800 | |
| 7801 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7802 | |
| 7803 | /* |
| 7804 | * PML buffer FULL happened while executing iret from NMI, |
| 7805 | * "blocked by NMI" bit has to be set before next VM entry. |
| 7806 | */ |
| 7807 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 7808 | cpu_has_virtual_nmis() && |
| 7809 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
| 7810 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 7811 | GUEST_INTR_STATE_NMI); |
| 7812 | |
| 7813 | /* |
| 7814 | * PML buffer already flushed at beginning of VMEXIT. Nothing to do |
| 7815 | * here.., and there's no userspace involvement needed for PML. |
| 7816 | */ |
| 7817 | return 1; |
| 7818 | } |
| 7819 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 7820 | static int handle_preemption_timer(struct kvm_vcpu *vcpu) |
| 7821 | { |
| 7822 | kvm_lapic_expired_hv_timer(vcpu); |
| 7823 | return 1; |
| 7824 | } |
| 7825 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 7826 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7827 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 7828 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 7829 | * to be done to userspace and return 0. |
| 7830 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 7831 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7832 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 7833 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 7834 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 7835 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7836 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7837 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 7838 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 7839 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 7840 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 7841 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 7842 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 7843 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 7844 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 7845 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 7846 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 7847 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7848 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7849 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7850 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7851 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7852 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7853 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7854 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7855 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 7856 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 7857 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 7858 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 7859 | [EXIT_REASON_APIC_WRITE] = handle_apic_write, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7860 | [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 7861 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7862 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7863 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7864 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 7865 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 7866 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 7867 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7868 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait, |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 7869 | [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7870 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor, |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7871 | [EXIT_REASON_INVEPT] = handle_invept, |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7872 | [EXIT_REASON_INVVPID] = handle_invvpid, |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 7873 | [EXIT_REASON_XSAVES] = handle_xsaves, |
| 7874 | [EXIT_REASON_XRSTORS] = handle_xrstors, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7875 | [EXIT_REASON_PML_FULL] = handle_pml_full, |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 7876 | [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7877 | }; |
| 7878 | |
| 7879 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 7880 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7881 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7882 | static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu, |
| 7883 | struct vmcs12 *vmcs12) |
| 7884 | { |
| 7885 | unsigned long exit_qualification; |
| 7886 | gpa_t bitmap, last_bitmap; |
| 7887 | unsigned int port; |
| 7888 | int size; |
| 7889 | u8 b; |
| 7890 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7891 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
Zhihui Zhang | 2f0a639 | 2013-12-30 15:56:29 -0500 | [diff] [blame] | 7892 | return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING); |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7893 | |
| 7894 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7895 | |
| 7896 | port = exit_qualification >> 16; |
| 7897 | size = (exit_qualification & 7) + 1; |
| 7898 | |
| 7899 | last_bitmap = (gpa_t)-1; |
| 7900 | b = -1; |
| 7901 | |
| 7902 | while (size > 0) { |
| 7903 | if (port < 0x8000) |
| 7904 | bitmap = vmcs12->io_bitmap_a; |
| 7905 | else if (port < 0x10000) |
| 7906 | bitmap = vmcs12->io_bitmap_b; |
| 7907 | else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7908 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7909 | bitmap += (port & 0x7fff) / 8; |
| 7910 | |
| 7911 | if (last_bitmap != bitmap) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7912 | if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7913 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7914 | if (b & (1 << (port & 7))) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7915 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7916 | |
| 7917 | port++; |
| 7918 | size--; |
| 7919 | last_bitmap = bitmap; |
| 7920 | } |
| 7921 | |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7922 | return false; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7923 | } |
| 7924 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7925 | /* |
| 7926 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 7927 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 7928 | * disinterest in the current event (read or write a specific MSR) by using an |
| 7929 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 7930 | */ |
| 7931 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 7932 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 7933 | { |
| 7934 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 7935 | gpa_t bitmap; |
| 7936 | |
Jan Kiszka | cbd29cb | 2013-02-11 12:19:28 +0100 | [diff] [blame] | 7937 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7938 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7939 | |
| 7940 | /* |
| 7941 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 7942 | * for the four combinations of read/write and low/high MSR numbers. |
| 7943 | * First we need to figure out which of the four to use: |
| 7944 | */ |
| 7945 | bitmap = vmcs12->msr_bitmap; |
| 7946 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 7947 | bitmap += 2048; |
| 7948 | if (msr_index >= 0xc0000000) { |
| 7949 | msr_index -= 0xc0000000; |
| 7950 | bitmap += 1024; |
| 7951 | } |
| 7952 | |
| 7953 | /* Then read the msr_index'th bit from this bitmap: */ |
| 7954 | if (msr_index < 1024*8) { |
| 7955 | unsigned char b; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7956 | if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7957 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7958 | return 1 & (b >> (msr_index & 7)); |
| 7959 | } else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7960 | return true; /* let L1 handle the wrong parameter */ |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7961 | } |
| 7962 | |
| 7963 | /* |
| 7964 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 7965 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 7966 | * intercept (via guest_host_mask etc.) the current event. |
| 7967 | */ |
| 7968 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 7969 | struct vmcs12 *vmcs12) |
| 7970 | { |
| 7971 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7972 | int cr = exit_qualification & 15; |
| 7973 | int reg = (exit_qualification >> 8) & 15; |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 7974 | unsigned long val = kvm_register_readl(vcpu, reg); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7975 | |
| 7976 | switch ((exit_qualification >> 4) & 3) { |
| 7977 | case 0: /* mov to cr */ |
| 7978 | switch (cr) { |
| 7979 | case 0: |
| 7980 | if (vmcs12->cr0_guest_host_mask & |
| 7981 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7982 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7983 | break; |
| 7984 | case 3: |
| 7985 | if ((vmcs12->cr3_target_count >= 1 && |
| 7986 | vmcs12->cr3_target_value0 == val) || |
| 7987 | (vmcs12->cr3_target_count >= 2 && |
| 7988 | vmcs12->cr3_target_value1 == val) || |
| 7989 | (vmcs12->cr3_target_count >= 3 && |
| 7990 | vmcs12->cr3_target_value2 == val) || |
| 7991 | (vmcs12->cr3_target_count >= 4 && |
| 7992 | vmcs12->cr3_target_value3 == val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7993 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7994 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7995 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7996 | break; |
| 7997 | case 4: |
| 7998 | if (vmcs12->cr4_guest_host_mask & |
| 7999 | (vmcs12->cr4_read_shadow ^ val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8000 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8001 | break; |
| 8002 | case 8: |
| 8003 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8004 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8005 | break; |
| 8006 | } |
| 8007 | break; |
| 8008 | case 2: /* clts */ |
| 8009 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 8010 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8011 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8012 | break; |
| 8013 | case 1: /* mov from cr */ |
| 8014 | switch (cr) { |
| 8015 | case 3: |
| 8016 | if (vmcs12->cpu_based_vm_exec_control & |
| 8017 | CPU_BASED_CR3_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8018 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8019 | break; |
| 8020 | case 8: |
| 8021 | if (vmcs12->cpu_based_vm_exec_control & |
| 8022 | CPU_BASED_CR8_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8023 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8024 | break; |
| 8025 | } |
| 8026 | break; |
| 8027 | case 3: /* lmsw */ |
| 8028 | /* |
| 8029 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 8030 | * cr0. Other attempted changes are ignored, with no exit. |
| 8031 | */ |
| 8032 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 8033 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8034 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8035 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 8036 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 8037 | (val & 0x1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8038 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8039 | break; |
| 8040 | } |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8041 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8042 | } |
| 8043 | |
| 8044 | /* |
| 8045 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 8046 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 8047 | * when in is_guest_mode (L2). |
| 8048 | */ |
| 8049 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 8050 | { |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8051 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8052 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8053 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 957c897 | 2013-02-24 14:11:34 +0100 | [diff] [blame] | 8054 | u32 exit_reason = vmx->exit_reason; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8055 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 8056 | trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, |
| 8057 | vmcs_readl(EXIT_QUALIFICATION), |
| 8058 | vmx->idt_vectoring_info, |
| 8059 | intr_info, |
| 8060 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 8061 | KVM_ISA_VMX); |
| 8062 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8063 | if (vmx->nested.nested_run_pending) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8064 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8065 | |
| 8066 | if (unlikely(vmx->fail)) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 8067 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 8068 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8069 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8070 | } |
| 8071 | |
| 8072 | switch (exit_reason) { |
| 8073 | case EXIT_REASON_EXCEPTION_NMI: |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 8074 | if (is_nmi(intr_info)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8075 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8076 | else if (is_page_fault(intr_info)) |
| 8077 | return enable_ept; |
Anthoine Bourgeois | e504c90 | 2013-11-13 11:45:37 +0100 | [diff] [blame] | 8078 | else if (is_no_device(intr_info) && |
Paolo Bonzini | ccf9844 | 2014-02-27 22:54:11 +0100 | [diff] [blame] | 8079 | !(vmcs12->guest_cr0 & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8080 | return false; |
Jan Kiszka | 6f05485 | 2016-02-09 20:15:18 +0100 | [diff] [blame] | 8081 | else if (is_debug(intr_info) && |
| 8082 | vcpu->guest_debug & |
| 8083 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 8084 | return false; |
| 8085 | else if (is_breakpoint(intr_info) && |
| 8086 | vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
| 8087 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8088 | return vmcs12->exception_bitmap & |
| 8089 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 8090 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8091 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8092 | case EXIT_REASON_TRIPLE_FAULT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8093 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8094 | case EXIT_REASON_PENDING_INTERRUPT: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 8095 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8096 | case EXIT_REASON_NMI_WINDOW: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 8097 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8098 | case EXIT_REASON_TASK_SWITCH: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8099 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8100 | case EXIT_REASON_CPUID: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8101 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8102 | case EXIT_REASON_HLT: |
| 8103 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 8104 | case EXIT_REASON_INVD: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8105 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8106 | case EXIT_REASON_INVLPG: |
| 8107 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 8108 | case EXIT_REASON_RDPMC: |
| 8109 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 8110 | case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8111 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 8112 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 8113 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 8114 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 8115 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 8116 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 8117 | case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8118 | /* |
| 8119 | * VMX instructions trap unconditionally. This allows L1 to |
| 8120 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 8121 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8122 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8123 | case EXIT_REASON_CR_ACCESS: |
| 8124 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 8125 | case EXIT_REASON_DR_ACCESS: |
| 8126 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 8127 | case EXIT_REASON_IO_INSTRUCTION: |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8128 | return nested_vmx_exit_handled_io(vcpu, vmcs12); |
Paolo Bonzini | 1b07304 | 2016-10-25 16:06:30 +0200 | [diff] [blame] | 8129 | case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR: |
| 8130 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8131 | case EXIT_REASON_MSR_READ: |
| 8132 | case EXIT_REASON_MSR_WRITE: |
| 8133 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 8134 | case EXIT_REASON_INVALID_STATE: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8135 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8136 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 8137 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 8138 | case EXIT_REASON_MONITOR_TRAP_FLAG: |
| 8139 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8140 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 8141 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 8142 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 8143 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 8144 | nested_cpu_has2(vmcs12, |
| 8145 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 8146 | case EXIT_REASON_MCE_DURING_VMENTRY: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8147 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8148 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8149 | return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8150 | case EXIT_REASON_APIC_ACCESS: |
| 8151 | return nested_cpu_has2(vmcs12, |
| 8152 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8153 | case EXIT_REASON_APIC_WRITE: |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 8154 | case EXIT_REASON_EOI_INDUCED: |
| 8155 | /* apic_write and eoi_induced should exit unconditionally. */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8156 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8157 | case EXIT_REASON_EPT_VIOLATION: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 8158 | /* |
| 8159 | * L0 always deals with the EPT violation. If nested EPT is |
| 8160 | * used, and the nested mmu code discovers that the address is |
| 8161 | * missing in the guest EPT table (EPT12), the EPT violation |
| 8162 | * will be injected with nested_ept_inject_page_fault() |
| 8163 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8164 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8165 | case EXIT_REASON_EPT_MISCONFIG: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 8166 | /* |
| 8167 | * L2 never uses directly L1's EPT, but rather L0's own EPT |
| 8168 | * table (shadow on EPT) or a merged EPT table that L0 built |
| 8169 | * (EPT on EPT). So any problems with the structure of the |
| 8170 | * table is L0's fault. |
| 8171 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8172 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8173 | case EXIT_REASON_WBINVD: |
| 8174 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 8175 | case EXIT_REASON_XSETBV: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8176 | return true; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 8177 | case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS: |
| 8178 | /* |
| 8179 | * This should never happen, since it is not possible to |
| 8180 | * set XSS to a non-zero value---neither in L1 nor in L2. |
| 8181 | * If if it were, XSS would have to be checked against |
| 8182 | * the XSS exit bitmap in vmcs12. |
| 8183 | */ |
| 8184 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Wanpeng Li | 55123e3 | 2016-07-06 18:29:58 +0800 | [diff] [blame] | 8185 | case EXIT_REASON_PREEMPTION_TIMER: |
| 8186 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8187 | default: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8188 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8189 | } |
| 8190 | } |
| 8191 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 8192 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 8193 | { |
| 8194 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 8195 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8196 | } |
| 8197 | |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8198 | static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8199 | { |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8200 | if (vmx->pml_pg) { |
| 8201 | __free_page(vmx->pml_pg); |
| 8202 | vmx->pml_pg = NULL; |
| 8203 | } |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8204 | } |
| 8205 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8206 | static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8207 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8208 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8209 | u64 *pml_buf; |
| 8210 | u16 pml_idx; |
| 8211 | |
| 8212 | pml_idx = vmcs_read16(GUEST_PML_INDEX); |
| 8213 | |
| 8214 | /* Do nothing if PML buffer is empty */ |
| 8215 | if (pml_idx == (PML_ENTITY_NUM - 1)) |
| 8216 | return; |
| 8217 | |
| 8218 | /* PML index always points to next available PML buffer entity */ |
| 8219 | if (pml_idx >= PML_ENTITY_NUM) |
| 8220 | pml_idx = 0; |
| 8221 | else |
| 8222 | pml_idx++; |
| 8223 | |
| 8224 | pml_buf = page_address(vmx->pml_pg); |
| 8225 | for (; pml_idx < PML_ENTITY_NUM; pml_idx++) { |
| 8226 | u64 gpa; |
| 8227 | |
| 8228 | gpa = pml_buf[pml_idx]; |
| 8229 | WARN_ON(gpa & (PAGE_SIZE - 1)); |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8230 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8231 | } |
| 8232 | |
| 8233 | /* reset PML index */ |
| 8234 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 8235 | } |
| 8236 | |
| 8237 | /* |
| 8238 | * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap. |
| 8239 | * Called before reporting dirty_bitmap to userspace. |
| 8240 | */ |
| 8241 | static void kvm_flush_pml_buffers(struct kvm *kvm) |
| 8242 | { |
| 8243 | int i; |
| 8244 | struct kvm_vcpu *vcpu; |
| 8245 | /* |
| 8246 | * We only need to kick vcpu out of guest mode here, as PML buffer |
| 8247 | * is flushed at beginning of all VMEXITs, and it's obvious that only |
| 8248 | * vcpus running in guest are possible to have unflushed GPAs in PML |
| 8249 | * buffer. |
| 8250 | */ |
| 8251 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 8252 | kvm_vcpu_kick(vcpu); |
| 8253 | } |
| 8254 | |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8255 | static void vmx_dump_sel(char *name, uint32_t sel) |
| 8256 | { |
| 8257 | pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n", |
Chao Peng | 96794e4 | 2017-02-21 03:50:01 -0500 | [diff] [blame] | 8258 | name, vmcs_read16(sel), |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8259 | vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR), |
| 8260 | vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR), |
| 8261 | vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR)); |
| 8262 | } |
| 8263 | |
| 8264 | static void vmx_dump_dtsel(char *name, uint32_t limit) |
| 8265 | { |
| 8266 | pr_err("%s limit=0x%08x, base=0x%016lx\n", |
| 8267 | name, vmcs_read32(limit), |
| 8268 | vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT)); |
| 8269 | } |
| 8270 | |
| 8271 | static void dump_vmcs(void) |
| 8272 | { |
| 8273 | u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS); |
| 8274 | u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS); |
| 8275 | u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 8276 | u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); |
| 8277 | u32 secondary_exec_control = 0; |
| 8278 | unsigned long cr4 = vmcs_readl(GUEST_CR4); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 8279 | u64 efer = vmcs_read64(GUEST_IA32_EFER); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8280 | int i, n; |
| 8281 | |
| 8282 | if (cpu_has_secondary_exec_ctrls()) |
| 8283 | secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8284 | |
| 8285 | pr_err("*** Guest State ***\n"); |
| 8286 | pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 8287 | vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW), |
| 8288 | vmcs_readl(CR0_GUEST_HOST_MASK)); |
| 8289 | pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 8290 | cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK)); |
| 8291 | pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3)); |
| 8292 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) && |
| 8293 | (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) |
| 8294 | { |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8295 | pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n", |
| 8296 | vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1)); |
| 8297 | pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n", |
| 8298 | vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8299 | } |
| 8300 | pr_err("RSP = 0x%016lx RIP = 0x%016lx\n", |
| 8301 | vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP)); |
| 8302 | pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n", |
| 8303 | vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7)); |
| 8304 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 8305 | vmcs_readl(GUEST_SYSENTER_ESP), |
| 8306 | vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP)); |
| 8307 | vmx_dump_sel("CS: ", GUEST_CS_SELECTOR); |
| 8308 | vmx_dump_sel("DS: ", GUEST_DS_SELECTOR); |
| 8309 | vmx_dump_sel("SS: ", GUEST_SS_SELECTOR); |
| 8310 | vmx_dump_sel("ES: ", GUEST_ES_SELECTOR); |
| 8311 | vmx_dump_sel("FS: ", GUEST_FS_SELECTOR); |
| 8312 | vmx_dump_sel("GS: ", GUEST_GS_SELECTOR); |
| 8313 | vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT); |
| 8314 | vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR); |
| 8315 | vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT); |
| 8316 | vmx_dump_sel("TR: ", GUEST_TR_SELECTOR); |
| 8317 | if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) || |
| 8318 | (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER))) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8319 | pr_err("EFER = 0x%016llx PAT = 0x%016llx\n", |
| 8320 | efer, vmcs_read64(GUEST_IA32_PAT)); |
| 8321 | pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n", |
| 8322 | vmcs_read64(GUEST_IA32_DEBUGCTL), |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8323 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS)); |
| 8324 | if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8325 | pr_err("PerfGlobCtl = 0x%016llx\n", |
| 8326 | vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8327 | if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8328 | pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8329 | pr_err("Interruptibility = %08x ActivityState = %08x\n", |
| 8330 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO), |
| 8331 | vmcs_read32(GUEST_ACTIVITY_STATE)); |
| 8332 | if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) |
| 8333 | pr_err("InterruptStatus = %04x\n", |
| 8334 | vmcs_read16(GUEST_INTR_STATUS)); |
| 8335 | |
| 8336 | pr_err("*** Host State ***\n"); |
| 8337 | pr_err("RIP = 0x%016lx RSP = 0x%016lx\n", |
| 8338 | vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP)); |
| 8339 | pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n", |
| 8340 | vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR), |
| 8341 | vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR), |
| 8342 | vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR), |
| 8343 | vmcs_read16(HOST_TR_SELECTOR)); |
| 8344 | pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n", |
| 8345 | vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE), |
| 8346 | vmcs_readl(HOST_TR_BASE)); |
| 8347 | pr_err("GDTBase=%016lx IDTBase=%016lx\n", |
| 8348 | vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE)); |
| 8349 | pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n", |
| 8350 | vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3), |
| 8351 | vmcs_readl(HOST_CR4)); |
| 8352 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 8353 | vmcs_readl(HOST_IA32_SYSENTER_ESP), |
| 8354 | vmcs_read32(HOST_IA32_SYSENTER_CS), |
| 8355 | vmcs_readl(HOST_IA32_SYSENTER_EIP)); |
| 8356 | if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER)) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8357 | pr_err("EFER = 0x%016llx PAT = 0x%016llx\n", |
| 8358 | vmcs_read64(HOST_IA32_EFER), |
| 8359 | vmcs_read64(HOST_IA32_PAT)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8360 | if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8361 | pr_err("PerfGlobCtl = 0x%016llx\n", |
| 8362 | vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8363 | |
| 8364 | pr_err("*** Control State ***\n"); |
| 8365 | pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n", |
| 8366 | pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control); |
| 8367 | pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl); |
| 8368 | pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n", |
| 8369 | vmcs_read32(EXCEPTION_BITMAP), |
| 8370 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK), |
| 8371 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH)); |
| 8372 | pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 8373 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8374 | vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE), |
| 8375 | vmcs_read32(VM_ENTRY_INSTRUCTION_LEN)); |
| 8376 | pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 8377 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8378 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 8379 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN)); |
| 8380 | pr_err(" reason=%08x qualification=%016lx\n", |
| 8381 | vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION)); |
| 8382 | pr_err("IDTVectoring: info=%08x errcode=%08x\n", |
| 8383 | vmcs_read32(IDT_VECTORING_INFO_FIELD), |
| 8384 | vmcs_read32(IDT_VECTORING_ERROR_CODE)); |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8385 | pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET)); |
Haozhong Zhang | 8cfe986 | 2015-10-20 15:39:12 +0800 | [diff] [blame] | 8386 | if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8387 | pr_err("TSC Multiplier = 0x%016llx\n", |
| 8388 | vmcs_read64(TSC_MULTIPLIER)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8389 | if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) |
| 8390 | pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD)); |
| 8391 | if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) |
| 8392 | pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV)); |
| 8393 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT)) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8394 | pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8395 | n = vmcs_read32(CR3_TARGET_COUNT); |
| 8396 | for (i = 0; i + 1 < n; i += 4) |
| 8397 | pr_err("CR3 target%u=%016lx target%u=%016lx\n", |
| 8398 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2), |
| 8399 | i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2)); |
| 8400 | if (i < n) |
| 8401 | pr_err("CR3 target%u=%016lx\n", |
| 8402 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2)); |
| 8403 | if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING) |
| 8404 | pr_err("PLE Gap=%08x Window=%08x\n", |
| 8405 | vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW)); |
| 8406 | if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID) |
| 8407 | pr_err("Virtual processor ID = 0x%04x\n", |
| 8408 | vmcs_read16(VIRTUAL_PROCESSOR_ID)); |
| 8409 | } |
| 8410 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8411 | /* |
| 8412 | * The guest has exited. See if we can fix it or if we need userspace |
| 8413 | * assistance. |
| 8414 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8415 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8416 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8417 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8418 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8419 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8420 | |
Paolo Bonzini | 8b89fe1 | 2015-12-10 18:37:32 +0100 | [diff] [blame] | 8421 | trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX); |
Paolo Bonzini | db1c056 | 2016-12-08 15:31:41 +0100 | [diff] [blame] | 8422 | vcpu->arch.gpa_available = false; |
Paolo Bonzini | 8b89fe1 | 2015-12-10 18:37:32 +0100 | [diff] [blame] | 8423 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8424 | /* |
| 8425 | * Flush logged GPAs PML buffer, this will make dirty_bitmap more |
| 8426 | * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before |
| 8427 | * querying dirty_bitmap, we only need to kick all vcpus out of guest |
| 8428 | * mode as if vcpus is in root mode, the PML buffer must has been |
| 8429 | * flushed already. |
| 8430 | */ |
| 8431 | if (enable_pml) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8432 | vmx_flush_pml_buffer(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8433 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8434 | /* If guest state is invalid, start emulating */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8435 | if (vmx->emulation_required) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8436 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 8437 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8438 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8439 | nested_vmx_vmexit(vcpu, exit_reason, |
| 8440 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8441 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8442 | return 1; |
| 8443 | } |
| 8444 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8445 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8446 | dump_vmcs(); |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8447 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8448 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 8449 | = exit_reason; |
| 8450 | return 0; |
| 8451 | } |
| 8452 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8453 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8454 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8455 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8456 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 8457 | return 0; |
| 8458 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8459 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8460 | /* |
| 8461 | * Note: |
| 8462 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 8463 | * delivery event since it indicates guest is accessing MMIO. |
| 8464 | * The vm-exit can be triggered again after return to guest that |
| 8465 | * will cause infinite loop. |
| 8466 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 8467 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 8468 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 8469 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Cao, Lei | b244c9f | 2016-07-15 13:54:04 +0000 | [diff] [blame] | 8470 | exit_reason != EXIT_REASON_PML_FULL && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8471 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 8472 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 8473 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
| 8474 | vcpu->run->internal.ndata = 2; |
| 8475 | vcpu->run->internal.data[0] = vectoring_info; |
| 8476 | vcpu->run->internal.data[1] = exit_reason; |
| 8477 | return 0; |
| 8478 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8479 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8480 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 8481 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 8482 | get_vmcs12(vcpu))))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 8483 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8484 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8485 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 8486 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8487 | /* |
| 8488 | * This CPU don't support us in finding the end of an |
| 8489 | * NMI-blocked window if the guest runs with IRQs |
| 8490 | * disabled. So we pull the trigger after 1 s of |
| 8491 | * futile waiting, but inform the user about this. |
| 8492 | */ |
| 8493 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 8494 | "state on VCPU %d after 1 s timeout\n", |
| 8495 | __func__, vcpu->vcpu_id); |
| 8496 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8497 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8498 | } |
| 8499 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8500 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 8501 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8502 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8503 | else { |
Michael S. Tsirkin | 2bc19dc | 2014-09-18 16:21:16 +0300 | [diff] [blame] | 8504 | WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason); |
| 8505 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 8506 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8507 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8508 | } |
| 8509 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8510 | 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] | 8511 | { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8512 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8513 | |
| 8514 | if (is_guest_mode(vcpu) && |
| 8515 | nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 8516 | return; |
| 8517 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8518 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8519 | vmcs_write32(TPR_THRESHOLD, 0); |
| 8520 | return; |
| 8521 | } |
| 8522 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8523 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8524 | } |
| 8525 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8526 | static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set) |
| 8527 | { |
| 8528 | u32 sec_exec_control; |
| 8529 | |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 8530 | /* Postpone execution until vmcs01 is the current VMCS. */ |
| 8531 | if (is_guest_mode(vcpu)) { |
| 8532 | to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true; |
| 8533 | return; |
| 8534 | } |
| 8535 | |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 8536 | if (!cpu_has_vmx_virtualize_x2apic_mode()) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8537 | return; |
| 8538 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8539 | if (!cpu_need_tpr_shadow(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8540 | return; |
| 8541 | |
| 8542 | sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8543 | |
| 8544 | if (set) { |
| 8545 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8546 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8547 | } else { |
| 8548 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8549 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8550 | } |
| 8551 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control); |
| 8552 | |
| 8553 | vmx_set_msr_bitmap(vcpu); |
| 8554 | } |
| 8555 | |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8556 | static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa) |
| 8557 | { |
| 8558 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8559 | |
| 8560 | /* |
| 8561 | * Currently we do not handle the nested case where L2 has an |
| 8562 | * APIC access page of its own; that page is still pinned. |
| 8563 | * Hence, we skip the case where the VCPU is in guest mode _and_ |
| 8564 | * L1 prepared an APIC access page for L2. |
| 8565 | * |
| 8566 | * For the case where L1 and L2 share the same APIC access page |
| 8567 | * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear |
| 8568 | * in the vmcs12), this function will only update either the vmcs01 |
| 8569 | * or the vmcs02. If the former, the vmcs02 will be updated by |
| 8570 | * prepare_vmcs02. If the latter, the vmcs01 will be updated in |
| 8571 | * the next L2->L1 exit. |
| 8572 | */ |
| 8573 | if (!is_guest_mode(vcpu) || |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 8574 | !nested_cpu_has2(get_vmcs12(&vmx->vcpu), |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8575 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 8576 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 8577 | } |
| 8578 | |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8579 | static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8580 | { |
| 8581 | u16 status; |
| 8582 | u8 old; |
| 8583 | |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8584 | if (max_isr == -1) |
| 8585 | max_isr = 0; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8586 | |
| 8587 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8588 | old = status >> 8; |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8589 | if (max_isr != old) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8590 | status &= 0xff; |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8591 | status |= max_isr << 8; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8592 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8593 | } |
| 8594 | } |
| 8595 | |
| 8596 | static void vmx_set_rvi(int vector) |
| 8597 | { |
| 8598 | u16 status; |
| 8599 | u8 old; |
| 8600 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8601 | if (vector == -1) |
| 8602 | vector = 0; |
| 8603 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8604 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8605 | old = (u8)status & 0xff; |
| 8606 | if ((u8)vector != old) { |
| 8607 | status &= ~0xff; |
| 8608 | status |= (u8)vector; |
| 8609 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8610 | } |
| 8611 | } |
| 8612 | |
| 8613 | static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr) |
| 8614 | { |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8615 | if (!is_guest_mode(vcpu)) { |
| 8616 | vmx_set_rvi(max_irr); |
| 8617 | return; |
| 8618 | } |
| 8619 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8620 | if (max_irr == -1) |
| 8621 | return; |
| 8622 | |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8623 | /* |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8624 | * In guest mode. If a vmexit is needed, vmx_check_nested_events |
| 8625 | * handles it. |
| 8626 | */ |
| 8627 | if (nested_exit_on_intr(vcpu)) |
| 8628 | return; |
| 8629 | |
| 8630 | /* |
| 8631 | * Else, fall back to pre-APICv interrupt injection since L2 |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8632 | * is run without virtual interrupt delivery. |
| 8633 | */ |
| 8634 | if (!kvm_event_needs_reinjection(vcpu) && |
| 8635 | vmx_interrupt_allowed(vcpu)) { |
| 8636 | kvm_queue_interrupt(vcpu, max_irr, false); |
| 8637 | vmx_inject_irq(vcpu); |
| 8638 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8639 | } |
| 8640 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8641 | static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu) |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8642 | { |
| 8643 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8644 | int max_irr; |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8645 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8646 | WARN_ON(!vcpu->arch.apicv_active); |
| 8647 | if (pi_test_on(&vmx->pi_desc)) { |
| 8648 | pi_clear_on(&vmx->pi_desc); |
| 8649 | /* |
| 8650 | * IOMMU can write to PIR.ON, so the barrier matters even on UP. |
| 8651 | * But on x86 this is just a compiler barrier anyway. |
| 8652 | */ |
| 8653 | smp_mb__after_atomic(); |
| 8654 | max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir); |
| 8655 | } else { |
| 8656 | max_irr = kvm_lapic_find_highest_irr(vcpu); |
| 8657 | } |
| 8658 | vmx_hwapic_irr_update(vcpu, max_irr); |
| 8659 | return max_irr; |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8660 | } |
| 8661 | |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 8662 | static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8663 | { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 8664 | if (!kvm_vcpu_apicv_active(vcpu)) |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8665 | return; |
| 8666 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8667 | vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]); |
| 8668 | vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]); |
| 8669 | vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]); |
| 8670 | vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]); |
| 8671 | } |
| 8672 | |
Paolo Bonzini | 967235d | 2016-12-19 14:03:45 +0100 | [diff] [blame] | 8673 | static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu) |
| 8674 | { |
| 8675 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8676 | |
| 8677 | pi_clear_on(&vmx->pi_desc); |
| 8678 | memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir)); |
| 8679 | } |
| 8680 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8681 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8682 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8683 | u32 exit_intr_info; |
| 8684 | |
| 8685 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 8686 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 8687 | return; |
| 8688 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8689 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8690 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8691 | |
| 8692 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8693 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8694 | kvm_machine_check(); |
| 8695 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8696 | /* We need to handle NMIs before interrupts are enabled */ |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 8697 | if (is_nmi(exit_intr_info)) { |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8698 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8699 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8700 | kvm_after_handle_nmi(&vmx->vcpu); |
| 8701 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8702 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8703 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8704 | static void vmx_handle_external_intr(struct kvm_vcpu *vcpu) |
| 8705 | { |
| 8706 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Chris J Arges | 3f62de5 | 2016-01-22 15:44:38 -0600 | [diff] [blame] | 8707 | register void *__sp asm(_ASM_SP); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8708 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8709 | if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK)) |
| 8710 | == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) { |
| 8711 | unsigned int vector; |
| 8712 | unsigned long entry; |
| 8713 | gate_desc *desc; |
| 8714 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8715 | #ifdef CONFIG_X86_64 |
| 8716 | unsigned long tmp; |
| 8717 | #endif |
| 8718 | |
| 8719 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8720 | desc = (gate_desc *)vmx->host_idt_base + vector; |
| 8721 | entry = gate_offset(*desc); |
| 8722 | asm volatile( |
| 8723 | #ifdef CONFIG_X86_64 |
| 8724 | "mov %%" _ASM_SP ", %[sp]\n\t" |
| 8725 | "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t" |
| 8726 | "push $%c[ss]\n\t" |
| 8727 | "push %[sp]\n\t" |
| 8728 | #endif |
| 8729 | "pushf\n\t" |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8730 | __ASM_SIZE(push) " $%c[cs]\n\t" |
| 8731 | "call *%[entry]\n\t" |
| 8732 | : |
| 8733 | #ifdef CONFIG_X86_64 |
Chris J Arges | 3f62de5 | 2016-01-22 15:44:38 -0600 | [diff] [blame] | 8734 | [sp]"=&r"(tmp), |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8735 | #endif |
Chris J Arges | 3f62de5 | 2016-01-22 15:44:38 -0600 | [diff] [blame] | 8736 | "+r"(__sp) |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8737 | : |
| 8738 | [entry]"r"(entry), |
| 8739 | [ss]"i"(__KERNEL_DS), |
| 8740 | [cs]"i"(__KERNEL_CS) |
| 8741 | ); |
Paolo Bonzini | f2485b3 | 2016-06-15 15:23:11 +0200 | [diff] [blame] | 8742 | } |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8743 | } |
| 8744 | |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 8745 | static bool vmx_has_high_real_mode_segbase(void) |
| 8746 | { |
| 8747 | return enable_unrestricted_guest || emulate_invalid_guest_state; |
| 8748 | } |
| 8749 | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 8750 | static bool vmx_mpx_supported(void) |
| 8751 | { |
| 8752 | return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) && |
| 8753 | (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS); |
| 8754 | } |
| 8755 | |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 8756 | static bool vmx_xsaves_supported(void) |
| 8757 | { |
| 8758 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 8759 | SECONDARY_EXEC_XSAVES; |
| 8760 | } |
| 8761 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8762 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 8763 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8764 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8765 | bool unblock_nmi; |
| 8766 | u8 vector; |
| 8767 | bool idtv_info_valid; |
| 8768 | |
| 8769 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8770 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8771 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8772 | if (vmx->nmi_known_unmasked) |
| 8773 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8774 | /* |
| 8775 | * Can't use vmx->exit_intr_info since we're not sure what |
| 8776 | * the exit reason is. |
| 8777 | */ |
| 8778 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8779 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 8780 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8781 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8782 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8783 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 8784 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8785 | * SDM 3: 23.2.2 (September 2008) |
| 8786 | * Bit 12 is undefined in any of the following cases: |
| 8787 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 8788 | * information field. |
| 8789 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8790 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8791 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 8792 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8793 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 8794 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8795 | else |
| 8796 | vmx->nmi_known_unmasked = |
| 8797 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 8798 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8799 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 8800 | vmx->vnmi_blocked_time += |
| 8801 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8802 | } |
| 8803 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8804 | static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8805 | u32 idt_vectoring_info, |
| 8806 | int instr_len_field, |
| 8807 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8808 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8809 | u8 vector; |
| 8810 | int type; |
| 8811 | bool idtv_info_valid; |
| 8812 | |
| 8813 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8814 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8815 | vcpu->arch.nmi_injected = false; |
| 8816 | kvm_clear_exception_queue(vcpu); |
| 8817 | kvm_clear_interrupt_queue(vcpu); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8818 | |
| 8819 | if (!idtv_info_valid) |
| 8820 | return; |
| 8821 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8822 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8823 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8824 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 8825 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8826 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 8827 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8828 | case INTR_TYPE_NMI_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8829 | vcpu->arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8830 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8831 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8832 | * Clear bit "block by NMI" before VM entry if a NMI |
| 8833 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8834 | */ |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8835 | vmx_set_nmi_mask(vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8836 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8837 | case INTR_TYPE_SOFT_EXCEPTION: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8838 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8839 | /* fall through */ |
| 8840 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8841 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8842 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8843 | kvm_requeue_exception_e(vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8844 | } else |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8845 | kvm_requeue_exception(vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8846 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8847 | case INTR_TYPE_SOFT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8848 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8849 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8850 | case INTR_TYPE_EXT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8851 | kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8852 | break; |
| 8853 | default: |
| 8854 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 8855 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8856 | } |
| 8857 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8858 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 8859 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8860 | __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8861 | VM_EXIT_INSTRUCTION_LEN, |
| 8862 | IDT_VECTORING_ERROR_CODE); |
| 8863 | } |
| 8864 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8865 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 8866 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8867 | __vmx_complete_interrupts(vcpu, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8868 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8869 | VM_ENTRY_INSTRUCTION_LEN, |
| 8870 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 8871 | |
| 8872 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 8873 | } |
| 8874 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8875 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 8876 | { |
| 8877 | int i, nr_msrs; |
| 8878 | struct perf_guest_switch_msr *msrs; |
| 8879 | |
| 8880 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 8881 | |
| 8882 | if (!msrs) |
| 8883 | return; |
| 8884 | |
| 8885 | for (i = 0; i < nr_msrs; i++) |
| 8886 | if (msrs[i].host == msrs[i].guest) |
| 8887 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 8888 | else |
| 8889 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 8890 | msrs[i].host); |
| 8891 | } |
| 8892 | |
Jiang Biao | 33365e7 | 2016-11-03 15:03:37 +0800 | [diff] [blame] | 8893 | static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu) |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 8894 | { |
| 8895 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8896 | u64 tscl; |
| 8897 | u32 delta_tsc; |
| 8898 | |
| 8899 | if (vmx->hv_deadline_tsc == -1) |
| 8900 | return; |
| 8901 | |
| 8902 | tscl = rdtsc(); |
| 8903 | if (vmx->hv_deadline_tsc > tscl) |
| 8904 | /* sure to be 32 bit only because checked on set_hv_timer */ |
| 8905 | delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >> |
| 8906 | cpu_preemption_timer_multi); |
| 8907 | else |
| 8908 | delta_tsc = 0; |
| 8909 | |
| 8910 | vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc); |
| 8911 | } |
| 8912 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 8913 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8914 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8915 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8916 | unsigned long debugctlmsr, cr4; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8917 | |
| 8918 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 8919 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 8920 | vmx->entry_time = ktime_get(); |
| 8921 | |
| 8922 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 8923 | start emulation until we arrive back to a valid state */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8924 | if (vmx->emulation_required) |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8925 | return; |
| 8926 | |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 8927 | if (vmx->ple_window_dirty) { |
| 8928 | vmx->ple_window_dirty = false; |
| 8929 | vmcs_write32(PLE_WINDOW, vmx->ple_window); |
| 8930 | } |
| 8931 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 8932 | if (vmx->nested.sync_shadow_vmcs) { |
| 8933 | copy_vmcs12_to_shadow(vmx); |
| 8934 | vmx->nested.sync_shadow_vmcs = false; |
| 8935 | } |
| 8936 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8937 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8938 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 8939 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8940 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 8941 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 8942 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8943 | if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) { |
| 8944 | vmcs_writel(HOST_CR4, cr4); |
| 8945 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 8946 | } |
| 8947 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8948 | /* When single-stepping over STI and MOV SS, we must clear the |
| 8949 | * corresponding interruptibility bits in the guest state. Otherwise |
| 8950 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 8951 | * exceptions being set, but that's not correct for the guest debugging |
| 8952 | * case. */ |
| 8953 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 8954 | vmx_set_interrupt_shadow(vcpu, 0); |
| 8955 | |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 8956 | if (vmx->guest_pkru_valid) |
| 8957 | __write_pkru(vmx->guest_pkru); |
| 8958 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8959 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8960 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8961 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 8962 | vmx_arm_hv_timer(vcpu); |
| 8963 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8964 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8965 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8966 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8967 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 8968 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 8969 | "push %%" _ASM_CX " \n\t" |
| 8970 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8971 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8972 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8973 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8974 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8975 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8976 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 8977 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 8978 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8979 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8980 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8981 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8982 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8983 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8984 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8985 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 8986 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 8987 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 8988 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 8989 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 8990 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8991 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8992 | "mov %c[r8](%0), %%r8 \n\t" |
| 8993 | "mov %c[r9](%0), %%r9 \n\t" |
| 8994 | "mov %c[r10](%0), %%r10 \n\t" |
| 8995 | "mov %c[r11](%0), %%r11 \n\t" |
| 8996 | "mov %c[r12](%0), %%r12 \n\t" |
| 8997 | "mov %c[r13](%0), %%r13 \n\t" |
| 8998 | "mov %c[r14](%0), %%r14 \n\t" |
| 8999 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9000 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9001 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 9002 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9003 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9004 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 9005 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9006 | "jmp 2f \n\t" |
| 9007 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 9008 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9009 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9010 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 9011 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9012 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 9013 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 9014 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 9015 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 9016 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 9017 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 9018 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 9019 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9020 | "mov %%r8, %c[r8](%0) \n\t" |
| 9021 | "mov %%r9, %c[r9](%0) \n\t" |
| 9022 | "mov %%r10, %c[r10](%0) \n\t" |
| 9023 | "mov %%r11, %c[r11](%0) \n\t" |
| 9024 | "mov %%r12, %c[r12](%0) \n\t" |
| 9025 | "mov %%r13, %c[r13](%0) \n\t" |
| 9026 | "mov %%r14, %c[r14](%0) \n\t" |
| 9027 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9028 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9029 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 9030 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 9031 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9032 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9033 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9034 | ".pushsection .rodata \n\t" |
| 9035 | ".global vmx_return \n\t" |
| 9036 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 9037 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9038 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9039 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9040 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 9041 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9042 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 9043 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 9044 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 9045 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 9046 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 9047 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 9048 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 9049 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9050 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 9051 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 9052 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 9053 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 9054 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 9055 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 9056 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 9057 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9058 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 9059 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 9060 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9061 | : "cc", "memory" |
| 9062 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9063 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9064 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9065 | #else |
| 9066 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9067 | #endif |
| 9068 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9069 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 9070 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 9071 | if (debugctlmsr) |
| 9072 | update_debugctlmsr(debugctlmsr); |
| 9073 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 9074 | #ifndef CONFIG_X86_64 |
| 9075 | /* |
| 9076 | * The sysexit path does not restore ds/es, so we must set them to |
| 9077 | * a reasonable value ourselves. |
| 9078 | * |
| 9079 | * We can't defer this to vmx_load_host_state() since that function |
| 9080 | * may be executed in interrupt context, which saves and restore segments |
| 9081 | * around it, nullifying its effect. |
| 9082 | */ |
| 9083 | loadsegment(ds, __USER_DS); |
| 9084 | loadsegment(es, __USER_DS); |
| 9085 | #endif |
| 9086 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 9087 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 9088 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 9089 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 9090 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 9091 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 9092 | vcpu->arch.regs_dirty = 0; |
| 9093 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 9094 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 9095 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9096 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 9097 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9098 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9099 | |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 9100 | /* |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 9101 | * eager fpu is enabled if PKEY is supported and CR4 is switched |
| 9102 | * back on host, so it is safe to read guest PKRU from current |
| 9103 | * XSAVE. |
| 9104 | */ |
| 9105 | if (boot_cpu_has(X86_FEATURE_OSPKE)) { |
| 9106 | vmx->guest_pkru = __read_pkru(); |
| 9107 | if (vmx->guest_pkru != vmx->host_pkru) { |
| 9108 | vmx->guest_pkru_valid = true; |
| 9109 | __write_pkru(vmx->host_pkru); |
| 9110 | } else |
| 9111 | vmx->guest_pkru_valid = false; |
| 9112 | } |
| 9113 | |
| 9114 | /* |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 9115 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 9116 | * we did not inject a still-pending event to L1 now because of |
| 9117 | * nested_run_pending, we need to re-enable this bit. |
| 9118 | */ |
| 9119 | if (vmx->nested.nested_run_pending) |
| 9120 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 9121 | |
| 9122 | vmx->nested.nested_run_pending = 0; |
| 9123 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9124 | vmx_complete_atomic_exit(vmx); |
| 9125 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 9126 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9127 | } |
| 9128 | |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9129 | static void vmx_load_vmcs01(struct kvm_vcpu *vcpu) |
| 9130 | { |
| 9131 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9132 | int cpu; |
| 9133 | |
| 9134 | if (vmx->loaded_vmcs == &vmx->vmcs01) |
| 9135 | return; |
| 9136 | |
| 9137 | cpu = get_cpu(); |
| 9138 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 9139 | vmx_vcpu_put(vcpu); |
| 9140 | vmx_vcpu_load(vcpu, cpu); |
| 9141 | vcpu->cpu = cpu; |
| 9142 | put_cpu(); |
| 9143 | } |
| 9144 | |
Jim Mattson | 2f1fe81 | 2016-07-08 15:36:06 -0700 | [diff] [blame] | 9145 | /* |
| 9146 | * Ensure that the current vmcs of the logical processor is the |
| 9147 | * vmcs01 of the vcpu before calling free_nested(). |
| 9148 | */ |
| 9149 | static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu) |
| 9150 | { |
| 9151 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9152 | int r; |
| 9153 | |
| 9154 | r = vcpu_load(vcpu); |
| 9155 | BUG_ON(r); |
| 9156 | vmx_load_vmcs01(vcpu); |
| 9157 | free_nested(vmx); |
| 9158 | vcpu_put(vcpu); |
| 9159 | } |
| 9160 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9161 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 9162 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9163 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9164 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 9165 | if (enable_pml) |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 9166 | vmx_destroy_pml_buffer(vmx); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9167 | free_vpid(vmx->vpid); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9168 | leave_guest_mode(vcpu); |
Jim Mattson | 2f1fe81 | 2016-07-08 15:36:06 -0700 | [diff] [blame] | 9169 | vmx_free_vcpu_nested(vcpu); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9170 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9171 | kfree(vmx->guest_msrs); |
| 9172 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 9173 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9174 | } |
| 9175 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9176 | 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] | 9177 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9178 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 9179 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9180 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9181 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9182 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9183 | return ERR_PTR(-ENOMEM); |
| 9184 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9185 | vmx->vpid = allocate_vpid(); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 9186 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9187 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 9188 | if (err) |
| 9189 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9190 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9191 | err = -ENOMEM; |
| 9192 | |
| 9193 | /* |
| 9194 | * If PML is turned on, failure on enabling PML just results in failure |
| 9195 | * of creating the vcpu, therefore we can simplify PML logic (by |
| 9196 | * avoiding dealing with cases, such as enabling PML partially on vcpus |
| 9197 | * for the guest, etc. |
| 9198 | */ |
| 9199 | if (enable_pml) { |
| 9200 | vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 9201 | if (!vmx->pml_pg) |
| 9202 | goto uninit_vcpu; |
| 9203 | } |
| 9204 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9205 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 9206 | BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0]) |
| 9207 | > PAGE_SIZE); |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 9208 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9209 | if (!vmx->guest_msrs) |
| 9210 | goto free_pml; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9211 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9212 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 9213 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 9214 | vmx->loaded_vmcs->shadow_vmcs = NULL; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9215 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9216 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9217 | if (!vmm_exclusive) |
| 9218 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 9219 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 9220 | if (!vmm_exclusive) |
| 9221 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9222 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9223 | cpu = get_cpu(); |
| 9224 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 9225 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 9226 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9227 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9228 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9229 | if (err) |
| 9230 | goto free_vmcs; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 9231 | if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 9232 | err = alloc_apic_access_page(kvm); |
| 9233 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 9234 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 9235 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9236 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 9237 | if (enable_ept) { |
| 9238 | if (!kvm->arch.ept_identity_map_addr) |
| 9239 | kvm->arch.ept_identity_map_addr = |
| 9240 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 9241 | err = init_rmode_identity_map(kvm); |
| 9242 | if (err) |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 9243 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 9244 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 9245 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9246 | if (nested) { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9247 | nested_vmx_setup_ctls_msrs(vmx); |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9248 | vmx->nested.vpid02 = allocate_vpid(); |
| 9249 | } |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9250 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9251 | vmx->nested.posted_intr_nv = -1; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 9252 | vmx->nested.current_vmptr = -1ull; |
| 9253 | vmx->nested.current_vmcs12 = NULL; |
| 9254 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 9255 | vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED; |
| 9256 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9257 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9258 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9259 | free_vmcs: |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9260 | free_vpid(vmx->nested.vpid02); |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 9261 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9262 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9263 | kfree(vmx->guest_msrs); |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9264 | free_pml: |
| 9265 | vmx_destroy_pml_buffer(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9266 | uninit_vcpu: |
| 9267 | kvm_vcpu_uninit(&vmx->vcpu); |
| 9268 | free_vcpu: |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9269 | free_vpid(vmx->vpid); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 9270 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9271 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9272 | } |
| 9273 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 9274 | static void __init vmx_check_processor_compat(void *rtn) |
| 9275 | { |
| 9276 | struct vmcs_config vmcs_conf; |
| 9277 | |
| 9278 | *(int *)rtn = 0; |
| 9279 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 9280 | *(int *)rtn = -EIO; |
| 9281 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 9282 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 9283 | smp_processor_id()); |
| 9284 | *(int *)rtn = -EIO; |
| 9285 | } |
| 9286 | } |
| 9287 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 9288 | static int get_ept_level(void) |
| 9289 | { |
| 9290 | return VMX_EPT_DEFAULT_GAW + 1; |
| 9291 | } |
| 9292 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 9293 | 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] | 9294 | { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9295 | u8 cache; |
| 9296 | u64 ipat = 0; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 9297 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9298 | /* For VT-d and EPT combination |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9299 | * 1. MMIO: always map as UC |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9300 | * 2. EPT with VT-d: |
| 9301 | * a. VT-d without snooping control feature: can't guarantee the |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9302 | * result, try to trust guest. |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9303 | * b. VT-d with snooping control feature: snooping control feature of |
| 9304 | * VT-d engine can guarantee the cache correctness. Just set it |
| 9305 | * 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] | 9306 | * 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] | 9307 | * consistent with host MTRR |
| 9308 | */ |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9309 | if (is_mmio) { |
| 9310 | cache = MTRR_TYPE_UNCACHABLE; |
| 9311 | goto exit; |
| 9312 | } |
| 9313 | |
| 9314 | if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9315 | ipat = VMX_EPT_IPAT_BIT; |
| 9316 | cache = MTRR_TYPE_WRBACK; |
| 9317 | goto exit; |
| 9318 | } |
| 9319 | |
| 9320 | if (kvm_read_cr0(vcpu) & X86_CR0_CD) { |
| 9321 | ipat = VMX_EPT_IPAT_BIT; |
Paolo Bonzini | 0da029e | 2015-07-23 08:24:42 +0200 | [diff] [blame] | 9322 | if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED)) |
Xiao Guangrong | fb279950 | 2015-07-16 03:25:56 +0800 | [diff] [blame] | 9323 | cache = MTRR_TYPE_WRBACK; |
| 9324 | else |
| 9325 | cache = MTRR_TYPE_UNCACHABLE; |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9326 | goto exit; |
| 9327 | } |
| 9328 | |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 9329 | cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9330 | |
| 9331 | exit: |
| 9332 | return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 9333 | } |
| 9334 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 9335 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 9336 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 9337 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 9338 | return PT_DIRECTORY_LEVEL; |
| 9339 | else |
| 9340 | /* For shadow and EPT supported 1GB page */ |
| 9341 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 9342 | } |
| 9343 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9344 | static void vmcs_set_secondary_exec_control(u32 new_ctl) |
| 9345 | { |
| 9346 | /* |
| 9347 | * These bits in the secondary execution controls field |
| 9348 | * are dynamic, the others are mostly based on the hypervisor |
| 9349 | * architecture and the guest's CPUID. Do not touch the |
| 9350 | * dynamic bits. |
| 9351 | */ |
| 9352 | u32 mask = |
| 9353 | SECONDARY_EXEC_SHADOW_VMCS | |
| 9354 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 9355 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 9356 | |
| 9357 | u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 9358 | |
| 9359 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 9360 | (new_ctl & ~mask) | (cur_ctl & mask)); |
| 9361 | } |
| 9362 | |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 9363 | /* |
| 9364 | * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits |
| 9365 | * (indicating "allowed-1") if they are supported in the guest's CPUID. |
| 9366 | */ |
| 9367 | static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu) |
| 9368 | { |
| 9369 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9370 | struct kvm_cpuid_entry2 *entry; |
| 9371 | |
| 9372 | vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff; |
| 9373 | vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE; |
| 9374 | |
| 9375 | #define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \ |
| 9376 | if (entry && (entry->_reg & (_cpuid_mask))) \ |
| 9377 | vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \ |
| 9378 | } while (0) |
| 9379 | |
| 9380 | entry = kvm_find_cpuid_entry(vcpu, 0x1, 0); |
| 9381 | cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME)); |
| 9382 | cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME)); |
| 9383 | cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC)); |
| 9384 | cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE)); |
| 9385 | cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE)); |
| 9386 | cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE)); |
| 9387 | cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE)); |
| 9388 | cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE)); |
| 9389 | cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR)); |
| 9390 | cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM)); |
| 9391 | cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX)); |
| 9392 | cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX)); |
| 9393 | cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID)); |
| 9394 | cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE)); |
| 9395 | |
| 9396 | entry = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 9397 | cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE)); |
| 9398 | cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP)); |
| 9399 | cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP)); |
| 9400 | cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU)); |
| 9401 | /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */ |
| 9402 | cr4_fixed1_update(bit(11), ecx, bit(2)); |
| 9403 | |
| 9404 | #undef cr4_fixed1_update |
| 9405 | } |
| 9406 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 9407 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 9408 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9409 | struct kvm_cpuid_entry2 *best; |
| 9410 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9411 | u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9412 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9413 | if (vmx_rdtscp_supported()) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 9414 | bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu); |
| 9415 | if (!rdtscp_enabled) |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9416 | secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP; |
Xiao Guangrong | f36201e | 2015-09-09 14:05:53 +0800 | [diff] [blame] | 9417 | |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 9418 | if (nested) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 9419 | if (rdtscp_enabled) |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 9420 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 9421 | SECONDARY_EXEC_RDTSCP; |
| 9422 | else |
| 9423 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 9424 | ~SECONDARY_EXEC_RDTSCP; |
| 9425 | } |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9426 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 9427 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 9428 | /* Exposing INVPCID only when PCID is exposed */ |
| 9429 | best = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 9430 | if (vmx_invpcid_supported() && |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 9431 | (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) || |
| 9432 | !guest_cpuid_has_pcid(vcpu))) { |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9433 | secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 9434 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 9435 | if (best) |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 9436 | best->ebx &= ~bit(X86_FEATURE_INVPCID); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 9437 | } |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 9438 | |
Huaitong Han | 45bdbcf | 2016-01-12 16:04:20 +0800 | [diff] [blame] | 9439 | if (cpu_has_secondary_exec_ctrls()) |
| 9440 | vmcs_set_secondary_exec_control(secondary_exec_ctl); |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9441 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 9442 | if (nested_vmx_allowed(vcpu)) |
| 9443 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |= |
| 9444 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 9445 | else |
| 9446 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &= |
| 9447 | ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 9448 | |
| 9449 | if (nested_vmx_allowed(vcpu)) |
| 9450 | nested_vmx_cr_fixed1_bits_update(vcpu); |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 9451 | } |
| 9452 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 9453 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 9454 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 9455 | if (func == 1 && nested) |
| 9456 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 9457 | } |
| 9458 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9459 | static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu, |
| 9460 | struct x86_exception *fault) |
| 9461 | { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9462 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 9463 | u32 exit_reason; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9464 | |
| 9465 | if (fault->error_code & PFERR_RSVD_MASK) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9466 | exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9467 | else |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9468 | exit_reason = EXIT_REASON_EPT_VIOLATION; |
| 9469 | nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9470 | vmcs12->guest_physical_address = fault->address; |
| 9471 | } |
| 9472 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9473 | /* Callbacks for nested_ept_init_mmu_context: */ |
| 9474 | |
| 9475 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu) |
| 9476 | { |
| 9477 | /* return the page table to be shadowed - in our case, EPT12 */ |
| 9478 | return get_vmcs12(vcpu)->ept_pointer; |
| 9479 | } |
| 9480 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 9481 | static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9482 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 9483 | WARN_ON(mmu_is_nested(vcpu)); |
| 9484 | kvm_init_shadow_ept_mmu(vcpu, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9485 | to_vmx(vcpu)->nested.nested_vmx_ept_caps & |
| 9486 | VMX_EPT_EXECUTE_ONLY_BIT); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9487 | vcpu->arch.mmu.set_cr3 = vmx_set_cr3; |
| 9488 | vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3; |
| 9489 | vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault; |
| 9490 | |
| 9491 | vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9492 | } |
| 9493 | |
| 9494 | static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu) |
| 9495 | { |
| 9496 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 9497 | } |
| 9498 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 9499 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 9500 | u16 error_code) |
| 9501 | { |
| 9502 | bool inequality, bit; |
| 9503 | |
| 9504 | bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; |
| 9505 | inequality = |
| 9506 | (error_code & vmcs12->page_fault_error_code_mask) != |
| 9507 | vmcs12->page_fault_error_code_match; |
| 9508 | return inequality ^ bit; |
| 9509 | } |
| 9510 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9511 | static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu, |
| 9512 | struct x86_exception *fault) |
| 9513 | { |
| 9514 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 9515 | |
| 9516 | WARN_ON(!is_guest_mode(vcpu)); |
| 9517 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 9518 | if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9519 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 9520 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 9521 | vmcs_readl(EXIT_QUALIFICATION)); |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9522 | else |
| 9523 | kvm_inject_page_fault(vcpu, fault); |
| 9524 | } |
| 9525 | |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9526 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 9527 | struct vmcs12 *vmcs12); |
| 9528 | |
| 9529 | static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu, |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9530 | struct vmcs12 *vmcs12) |
| 9531 | { |
| 9532 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9533 | u64 hpa; |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9534 | |
| 9535 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9536 | /* |
| 9537 | * Translate L1 physical address to host physical |
| 9538 | * address for vmcs02. Keep the page pinned, so this |
| 9539 | * physical address remains valid. We keep a reference |
| 9540 | * to it so we can release it later. |
| 9541 | */ |
| 9542 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 9543 | nested_release_page(vmx->nested.apic_access_page); |
| 9544 | vmx->nested.apic_access_page = |
| 9545 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9546 | /* |
| 9547 | * If translation failed, no matter: This feature asks |
| 9548 | * to exit when accessing the given address, and if it |
| 9549 | * can never be accessed, this feature won't do |
| 9550 | * anything anyway. |
| 9551 | */ |
| 9552 | if (vmx->nested.apic_access_page) { |
| 9553 | hpa = page_to_phys(vmx->nested.apic_access_page); |
| 9554 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 9555 | } else { |
| 9556 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 9557 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 9558 | } |
| 9559 | } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) && |
| 9560 | cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
| 9561 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 9562 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 9563 | kvm_vcpu_reload_apic_access_page(vcpu); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9564 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9565 | |
| 9566 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9567 | if (vmx->nested.virtual_apic_page) /* shouldn't happen */ |
| 9568 | nested_release_page(vmx->nested.virtual_apic_page); |
| 9569 | vmx->nested.virtual_apic_page = |
| 9570 | nested_get_page(vcpu, vmcs12->virtual_apic_page_addr); |
| 9571 | |
| 9572 | /* |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9573 | * If translation failed, VM entry will fail because |
| 9574 | * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull. |
| 9575 | * Failing the vm entry is _not_ what the processor |
| 9576 | * does but it's basically the only possibility we |
| 9577 | * have. We could still enter the guest if CR8 load |
| 9578 | * exits are enabled, CR8 store exits are enabled, and |
| 9579 | * virtualize APIC access is disabled; in this case |
| 9580 | * the processor would never use the TPR shadow and we |
| 9581 | * could simply clear the bit from the execution |
| 9582 | * control. But such a configuration is useless, so |
| 9583 | * let's keep the code simple. |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9584 | */ |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9585 | if (vmx->nested.virtual_apic_page) { |
| 9586 | hpa = page_to_phys(vmx->nested.virtual_apic_page); |
| 9587 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa); |
| 9588 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9589 | } |
| 9590 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9591 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9592 | if (vmx->nested.pi_desc_page) { /* shouldn't happen */ |
| 9593 | kunmap(vmx->nested.pi_desc_page); |
| 9594 | nested_release_page(vmx->nested.pi_desc_page); |
| 9595 | } |
| 9596 | vmx->nested.pi_desc_page = |
| 9597 | nested_get_page(vcpu, vmcs12->posted_intr_desc_addr); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9598 | vmx->nested.pi_desc = |
| 9599 | (struct pi_desc *)kmap(vmx->nested.pi_desc_page); |
| 9600 | if (!vmx->nested.pi_desc) { |
| 9601 | nested_release_page_clean(vmx->nested.pi_desc_page); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9602 | return; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9603 | } |
| 9604 | vmx->nested.pi_desc = |
| 9605 | (struct pi_desc *)((void *)vmx->nested.pi_desc + |
| 9606 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9607 | (PAGE_SIZE - 1))); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9608 | vmcs_write64(POSTED_INTR_DESC_ADDR, |
| 9609 | page_to_phys(vmx->nested.pi_desc_page) + |
| 9610 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9611 | (PAGE_SIZE - 1))); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9612 | } |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9613 | if (cpu_has_vmx_msr_bitmap() && |
| 9614 | nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) && |
| 9615 | nested_vmx_merge_msr_bitmap(vcpu, vmcs12)) |
| 9616 | ; |
| 9617 | else |
| 9618 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 9619 | CPU_BASED_USE_MSR_BITMAPS); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9620 | } |
| 9621 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9622 | static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu) |
| 9623 | { |
| 9624 | u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value; |
| 9625 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9626 | |
| 9627 | if (vcpu->arch.virtual_tsc_khz == 0) |
| 9628 | return; |
| 9629 | |
| 9630 | /* Make sure short timeouts reliably trigger an immediate vmexit. |
| 9631 | * hrtimer_start does not guarantee this. */ |
| 9632 | if (preemption_timeout <= 1) { |
| 9633 | vmx_preemption_timer_fn(&vmx->nested.preemption_timer); |
| 9634 | return; |
| 9635 | } |
| 9636 | |
| 9637 | preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 9638 | preemption_timeout *= 1000000; |
| 9639 | do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz); |
| 9640 | hrtimer_start(&vmx->nested.preemption_timer, |
| 9641 | ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL); |
| 9642 | } |
| 9643 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9644 | static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu, |
| 9645 | struct vmcs12 *vmcs12) |
| 9646 | { |
| 9647 | int maxphyaddr; |
| 9648 | u64 addr; |
| 9649 | |
| 9650 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
| 9651 | return 0; |
| 9652 | |
| 9653 | if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) { |
| 9654 | WARN_ON(1); |
| 9655 | return -EINVAL; |
| 9656 | } |
| 9657 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 9658 | |
| 9659 | if (!PAGE_ALIGNED(vmcs12->msr_bitmap) || |
| 9660 | ((addr + PAGE_SIZE) >> maxphyaddr)) |
| 9661 | return -EINVAL; |
| 9662 | |
| 9663 | return 0; |
| 9664 | } |
| 9665 | |
| 9666 | /* |
| 9667 | * Merge L0's and L1's MSR bitmap, return false to indicate that |
| 9668 | * we do not use the hardware. |
| 9669 | */ |
| 9670 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 9671 | struct vmcs12 *vmcs12) |
| 9672 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9673 | int msr; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9674 | struct page *page; |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9675 | unsigned long *msr_bitmap_l1; |
| 9676 | unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9677 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9678 | /* This shortcut is ok because we support only x2APIC MSRs so far. */ |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9679 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12)) |
| 9680 | return false; |
| 9681 | |
| 9682 | page = nested_get_page(vcpu, vmcs12->msr_bitmap); |
Radim Krčmář | 05d8d34 | 2017-03-07 17:51:49 +0100 | [diff] [blame^] | 9683 | if (!page) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9684 | return false; |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9685 | msr_bitmap_l1 = (unsigned long *)kmap(page); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9686 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9687 | memset(msr_bitmap_l0, 0xff, PAGE_SIZE); |
| 9688 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9689 | if (nested_cpu_has_virt_x2apic_mode(vmcs12)) { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9690 | if (nested_cpu_has_apic_reg_virt(vmcs12)) |
| 9691 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 9692 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9693 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9694 | msr, MSR_TYPE_R); |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9695 | |
| 9696 | nested_vmx_disable_intercept_for_msr( |
| 9697 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9698 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
| 9699 | MSR_TYPE_R | MSR_TYPE_W); |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9700 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9701 | if (nested_cpu_has_vid(vmcs12)) { |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9702 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9703 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9704 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 9705 | MSR_TYPE_W); |
| 9706 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 9707 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9708 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 9709 | MSR_TYPE_W); |
| 9710 | } |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9711 | } |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9712 | kunmap(page); |
| 9713 | nested_release_page_clean(page); |
| 9714 | |
| 9715 | return true; |
| 9716 | } |
| 9717 | |
| 9718 | static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu, |
| 9719 | struct vmcs12 *vmcs12) |
| 9720 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9721 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12) && |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9722 | !nested_cpu_has_apic_reg_virt(vmcs12) && |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9723 | !nested_cpu_has_vid(vmcs12) && |
| 9724 | !nested_cpu_has_posted_intr(vmcs12)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9725 | return 0; |
| 9726 | |
| 9727 | /* |
| 9728 | * If virtualize x2apic mode is enabled, |
| 9729 | * virtualize apic access must be disabled. |
| 9730 | */ |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9731 | if (nested_cpu_has_virt_x2apic_mode(vmcs12) && |
| 9732 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9733 | return -EINVAL; |
| 9734 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9735 | /* |
| 9736 | * If virtual interrupt delivery is enabled, |
| 9737 | * we must exit on external interrupts. |
| 9738 | */ |
| 9739 | if (nested_cpu_has_vid(vmcs12) && |
| 9740 | !nested_exit_on_intr(vcpu)) |
| 9741 | return -EINVAL; |
| 9742 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9743 | /* |
| 9744 | * bits 15:8 should be zero in posted_intr_nv, |
| 9745 | * the descriptor address has been already checked |
| 9746 | * in nested_get_vmcs12_pages. |
| 9747 | */ |
| 9748 | if (nested_cpu_has_posted_intr(vmcs12) && |
| 9749 | (!nested_cpu_has_vid(vmcs12) || |
| 9750 | !nested_exit_intr_ack_set(vcpu) || |
| 9751 | vmcs12->posted_intr_nv & 0xff00)) |
| 9752 | return -EINVAL; |
| 9753 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9754 | /* tpr shadow is needed by all apicv features. */ |
| 9755 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 9756 | return -EINVAL; |
| 9757 | |
| 9758 | return 0; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9759 | } |
| 9760 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9761 | static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu, |
| 9762 | unsigned long count_field, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9763 | unsigned long addr_field) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9764 | { |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9765 | int maxphyaddr; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9766 | u64 count, addr; |
| 9767 | |
| 9768 | if (vmcs12_read_any(vcpu, count_field, &count) || |
| 9769 | vmcs12_read_any(vcpu, addr_field, &addr)) { |
| 9770 | WARN_ON(1); |
| 9771 | return -EINVAL; |
| 9772 | } |
| 9773 | if (count == 0) |
| 9774 | return 0; |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9775 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9776 | if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr || |
| 9777 | (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9778 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9779 | "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)", |
| 9780 | addr_field, maxphyaddr, count, addr); |
| 9781 | return -EINVAL; |
| 9782 | } |
| 9783 | return 0; |
| 9784 | } |
| 9785 | |
| 9786 | static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu, |
| 9787 | struct vmcs12 *vmcs12) |
| 9788 | { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9789 | if (vmcs12->vm_exit_msr_load_count == 0 && |
| 9790 | vmcs12->vm_exit_msr_store_count == 0 && |
| 9791 | vmcs12->vm_entry_msr_load_count == 0) |
| 9792 | return 0; /* Fast path */ |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9793 | if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9794 | VM_EXIT_MSR_LOAD_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9795 | nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9796 | VM_EXIT_MSR_STORE_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9797 | nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9798 | VM_ENTRY_MSR_LOAD_ADDR)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9799 | return -EINVAL; |
| 9800 | return 0; |
| 9801 | } |
| 9802 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9803 | static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu, |
| 9804 | struct vmx_msr_entry *e) |
| 9805 | { |
| 9806 | /* x2APIC MSR accesses are not allowed */ |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 9807 | if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8) |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9808 | return -EINVAL; |
| 9809 | if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */ |
| 9810 | e->index == MSR_IA32_UCODE_REV) |
| 9811 | return -EINVAL; |
| 9812 | if (e->reserved != 0) |
| 9813 | return -EINVAL; |
| 9814 | return 0; |
| 9815 | } |
| 9816 | |
| 9817 | static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu, |
| 9818 | struct vmx_msr_entry *e) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9819 | { |
| 9820 | if (e->index == MSR_FS_BASE || |
| 9821 | e->index == MSR_GS_BASE || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9822 | e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */ |
| 9823 | nested_vmx_msr_check_common(vcpu, e)) |
| 9824 | return -EINVAL; |
| 9825 | return 0; |
| 9826 | } |
| 9827 | |
| 9828 | static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu, |
| 9829 | struct vmx_msr_entry *e) |
| 9830 | { |
| 9831 | if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */ |
| 9832 | nested_vmx_msr_check_common(vcpu, e)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9833 | return -EINVAL; |
| 9834 | return 0; |
| 9835 | } |
| 9836 | |
| 9837 | /* |
| 9838 | * Load guest's/host's msr at nested entry/exit. |
| 9839 | * return 0 for success, entry index for failure. |
| 9840 | */ |
| 9841 | static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9842 | { |
| 9843 | u32 i; |
| 9844 | struct vmx_msr_entry e; |
| 9845 | struct msr_data msr; |
| 9846 | |
| 9847 | msr.host_initiated = false; |
| 9848 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9849 | if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e), |
| 9850 | &e, sizeof(e))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9851 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9852 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9853 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9854 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9855 | } |
| 9856 | if (nested_vmx_load_msr_check(vcpu, &e)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9857 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9858 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9859 | __func__, i, e.index, e.reserved); |
| 9860 | goto fail; |
| 9861 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9862 | msr.index = e.index; |
| 9863 | msr.data = e.value; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9864 | if (kvm_set_msr(vcpu, &msr)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9865 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9866 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 9867 | __func__, i, e.index, e.value); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9868 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9869 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9870 | } |
| 9871 | return 0; |
| 9872 | fail: |
| 9873 | return i + 1; |
| 9874 | } |
| 9875 | |
| 9876 | static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9877 | { |
| 9878 | u32 i; |
| 9879 | struct vmx_msr_entry e; |
| 9880 | |
| 9881 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9882 | struct msr_data msr_info; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9883 | if (kvm_vcpu_read_guest(vcpu, |
| 9884 | gpa + i * sizeof(e), |
| 9885 | &e, 2 * sizeof(u32))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9886 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9887 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9888 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9889 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9890 | } |
| 9891 | if (nested_vmx_store_msr_check(vcpu, &e)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9892 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9893 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9894 | __func__, i, e.index, e.reserved); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9895 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9896 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9897 | msr_info.host_initiated = false; |
| 9898 | msr_info.index = e.index; |
| 9899 | if (kvm_get_msr(vcpu, &msr_info)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9900 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9901 | "%s cannot read MSR (%u, 0x%x)\n", |
| 9902 | __func__, i, e.index); |
| 9903 | return -EINVAL; |
| 9904 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9905 | if (kvm_vcpu_write_guest(vcpu, |
| 9906 | gpa + i * sizeof(e) + |
| 9907 | offsetof(struct vmx_msr_entry, value), |
| 9908 | &msr_info.data, sizeof(msr_info.data))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 9909 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9910 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9911 | __func__, i, e.index, msr_info.data); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9912 | return -EINVAL; |
| 9913 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9914 | } |
| 9915 | return 0; |
| 9916 | } |
| 9917 | |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 9918 | static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 9919 | { |
| 9920 | unsigned long invalid_mask; |
| 9921 | |
| 9922 | invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu); |
| 9923 | return (val & invalid_mask) == 0; |
| 9924 | } |
| 9925 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9926 | /* |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 9927 | * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are |
| 9928 | * emulating VM entry into a guest with EPT enabled. |
| 9929 | * Returns 0 on success, 1 on failure. Invalid state exit qualification code |
| 9930 | * is assigned to entry_failure_code on failure. |
| 9931 | */ |
| 9932 | static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept, |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 9933 | u32 *entry_failure_code) |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 9934 | { |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 9935 | if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) { |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 9936 | if (!nested_cr3_valid(vcpu, cr3)) { |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 9937 | *entry_failure_code = ENTRY_FAIL_DEFAULT; |
| 9938 | return 1; |
| 9939 | } |
| 9940 | |
| 9941 | /* |
| 9942 | * If PAE paging and EPT are both on, CR3 is not used by the CPU and |
| 9943 | * must not be dereferenced. |
| 9944 | */ |
| 9945 | if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) && |
| 9946 | !nested_ept) { |
| 9947 | if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) { |
| 9948 | *entry_failure_code = ENTRY_FAIL_PDPTE; |
| 9949 | return 1; |
| 9950 | } |
| 9951 | } |
| 9952 | |
| 9953 | vcpu->arch.cr3 = cr3; |
| 9954 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 9955 | } |
| 9956 | |
| 9957 | kvm_mmu_reset_context(vcpu); |
| 9958 | return 0; |
| 9959 | } |
| 9960 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9961 | /* |
| 9962 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 9963 | * 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] | 9964 | * 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] | 9965 | * guest in a way that will both be appropriate to L1's requests, and our |
| 9966 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 9967 | * function also has additional necessary side-effects, like setting various |
| 9968 | * vcpu->arch fields. |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 9969 | * Returns 0 on success, 1 on failure. Invalid state exit qualification code |
| 9970 | * is assigned to entry_failure_code on failure. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9971 | */ |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 9972 | static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 9973 | bool from_vmentry, u32 *entry_failure_code) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9974 | { |
| 9975 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9976 | u32 exec_control; |
Ladi Prosek | 7ca29de | 2016-11-30 16:03:08 +0100 | [diff] [blame] | 9977 | bool nested_ept_enabled = false; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9978 | |
| 9979 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 9980 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 9981 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 9982 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 9983 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 9984 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 9985 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 9986 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 9987 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 9988 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 9989 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 9990 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 9991 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 9992 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 9993 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 9994 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 9995 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 9996 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 9997 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 9998 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 9999 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 10000 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 10001 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 10002 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 10003 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 10004 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 10005 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 10006 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 10007 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 10008 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 10009 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 10010 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 10011 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 10012 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 10013 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 10014 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 10015 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10016 | if (from_vmentry && |
| 10017 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) { |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 10018 | kvm_set_dr(vcpu, 7, vmcs12->guest_dr7); |
| 10019 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 10020 | } else { |
| 10021 | kvm_set_dr(vcpu, 7, vcpu->arch.dr7); |
| 10022 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl); |
| 10023 | } |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10024 | if (from_vmentry) { |
| 10025 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 10026 | vmcs12->vm_entry_intr_info_field); |
| 10027 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 10028 | vmcs12->vm_entry_exception_error_code); |
| 10029 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 10030 | vmcs12->vm_entry_instruction_len); |
| 10031 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 10032 | vmcs12->guest_interruptibility_info); |
| 10033 | } else { |
| 10034 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 10035 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10036 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
Gleb Natapov | 63fbf59 | 2013-07-28 18:31:06 +0300 | [diff] [blame] | 10037 | vmx_set_rflags(vcpu, vmcs12->guest_rflags); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10038 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 10039 | vmcs12->guest_pending_dbg_exceptions); |
| 10040 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 10041 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 10042 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 10043 | if (nested_cpu_has_xsaves(vmcs12)) |
| 10044 | vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10045 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 10046 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10047 | exec_control = vmcs12->pin_based_vm_exec_control; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10048 | |
Paolo Bonzini | 9314006 | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 10049 | /* Preemption timer setting is only taken from vmcs01. */ |
| 10050 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 10051 | exec_control |= vmcs_config.pin_based_exec_ctrl; |
| 10052 | if (vmx->hv_deadline_tsc == -1) |
| 10053 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 10054 | |
| 10055 | /* Posted interrupts setting is only taken from vmcs12. */ |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10056 | if (nested_cpu_has_posted_intr(vmcs12)) { |
| 10057 | /* |
| 10058 | * Note that we use L0's vector here and in |
| 10059 | * vmx_deliver_nested_posted_interrupt. |
| 10060 | */ |
| 10061 | vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; |
| 10062 | vmx->nested.pi_pending = false; |
Li RongQing | 0bcf261 | 2015-12-03 13:29:34 +0800 | [diff] [blame] | 10063 | vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10064 | } else { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10065 | exec_control &= ~PIN_BASED_POSTED_INTR; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10066 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10067 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10068 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10069 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10070 | vmx->nested.preemption_timer_expired = false; |
| 10071 | if (nested_cpu_has_preemption_timer(vmcs12)) |
| 10072 | vmx_start_preemption_timer(vcpu); |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 10073 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10074 | /* |
| 10075 | * Whether page-faults are trapped is determined by a combination of |
| 10076 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 10077 | * If enable_ept, L0 doesn't care about page faults and we should |
| 10078 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 10079 | * care about (at least some) page faults, and because it is not easy |
| 10080 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 10081 | * to exit on each and every L2 page fault. This is done by setting |
| 10082 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 10083 | * Note that below we don't need special code to set EB.PF beyond the |
| 10084 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 10085 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 10086 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 10087 | * |
| 10088 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 10089 | * injected with more page faults than it asked for. This could have |
| 10090 | * caused problems, but in practice existing hypervisors don't care. |
| 10091 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 10092 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 10093 | */ |
| 10094 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 10095 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 10096 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 10097 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 10098 | |
| 10099 | if (cpu_has_secondary_exec_ctrls()) { |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10100 | exec_control = vmx_secondary_exec_control(vmx); |
Xiao Guangrong | e282162 | 2015-09-09 14:05:52 +0800 | [diff] [blame] | 10101 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10102 | /* Take the following fields only from vmcs12 */ |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 10103 | exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 10104 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 10105 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 10106 | SECONDARY_EXEC_APIC_REGISTER_VIRT); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10107 | if (nested_cpu_has(vmcs12, |
| 10108 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 10109 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 10110 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10111 | if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) { |
| 10112 | vmcs_write64(EOI_EXIT_BITMAP0, |
| 10113 | vmcs12->eoi_exit_bitmap0); |
| 10114 | vmcs_write64(EOI_EXIT_BITMAP1, |
| 10115 | vmcs12->eoi_exit_bitmap1); |
| 10116 | vmcs_write64(EOI_EXIT_BITMAP2, |
| 10117 | vmcs12->eoi_exit_bitmap2); |
| 10118 | vmcs_write64(EOI_EXIT_BITMAP3, |
| 10119 | vmcs12->eoi_exit_bitmap3); |
| 10120 | vmcs_write16(GUEST_INTR_STATUS, |
| 10121 | vmcs12->guest_intr_status); |
| 10122 | } |
| 10123 | |
Ladi Prosek | 7ca29de | 2016-11-30 16:03:08 +0100 | [diff] [blame] | 10124 | nested_ept_enabled = (exec_control & SECONDARY_EXEC_ENABLE_EPT) != 0; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10125 | |
| 10126 | /* |
| 10127 | * Write an illegal value to APIC_ACCESS_ADDR. Later, |
| 10128 | * nested_get_vmcs12_pages will either fix it up or |
| 10129 | * remove the VM execution control. |
| 10130 | */ |
| 10131 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) |
| 10132 | vmcs_write64(APIC_ACCESS_ADDR, -1ull); |
| 10133 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10134 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 10135 | } |
| 10136 | |
| 10137 | |
| 10138 | /* |
| 10139 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 10140 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 10141 | * Other fields are different per CPU, and will be set later when |
| 10142 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 10143 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 10144 | vmx_set_constant_host_state(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10145 | |
| 10146 | /* |
Jim Mattson | 83bafef | 2016-10-04 10:48:38 -0700 | [diff] [blame] | 10147 | * Set the MSR load/store lists to match L0's settings. |
| 10148 | */ |
| 10149 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 10150 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 10151 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
| 10152 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 10153 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
| 10154 | |
| 10155 | /* |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10156 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 10157 | * entry, but only if the current (host) sp changed from the value |
| 10158 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 10159 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 10160 | * here we just force the write to happen on entry. |
| 10161 | */ |
| 10162 | vmx->host_rsp = 0; |
| 10163 | |
| 10164 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 10165 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 10166 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 10167 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 10168 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10169 | |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10170 | /* |
| 10171 | * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if |
| 10172 | * nested_get_vmcs12_pages can't fix it up, the illegal value |
| 10173 | * will result in a VM entry failure. |
| 10174 | */ |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10175 | if (exec_control & CPU_BASED_TPR_SHADOW) { |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10176 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull); |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10177 | vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); |
| 10178 | } |
| 10179 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10180 | /* |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10181 | * Merging of IO bitmap not currently supported. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10182 | * Rather, exit every time. |
| 10183 | */ |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10184 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 10185 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 10186 | |
| 10187 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 10188 | |
| 10189 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 10190 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 10191 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 10192 | */ |
| 10193 | update_exception_bitmap(vcpu); |
| 10194 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 10195 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 10196 | |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10197 | /* L2->L1 exit controls are emulated - the hardware exit is to L0 so |
| 10198 | * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER |
| 10199 | * bits are further modified by vmx_set_efer() below. |
| 10200 | */ |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10201 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10202 | |
| 10203 | /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are |
| 10204 | * emulated by vmx_set_efer(), below. |
| 10205 | */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10206 | vm_entry_controls_init(vmx, |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10207 | (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER & |
| 10208 | ~VM_ENTRY_IA32E_MODE) | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10209 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 10210 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10211 | if (from_vmentry && |
| 10212 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10213 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10214 | vcpu->arch.pat = vmcs12->guest_ia32_pat; |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10215 | } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10216 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10217 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10218 | |
| 10219 | set_cr4_guest_host_mask(vmx); |
| 10220 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10221 | if (from_vmentry && |
| 10222 | vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10223 | vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs); |
| 10224 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10225 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 10226 | vmcs_write64(TSC_OFFSET, |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 10227 | vcpu->arch.tsc_offset + vmcs12->tsc_offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10228 | else |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 10229 | vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset); |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 10230 | if (kvm_has_tsc_control) |
| 10231 | decache_tsc_multiplier(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10232 | |
| 10233 | if (enable_vpid) { |
| 10234 | /* |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 10235 | * There is no direct mapping between vpid02 and vpid12, the |
| 10236 | * vpid02 is per-vCPU for L0 and reused while the value of |
| 10237 | * vpid12 is changed w/ one invvpid during nested vmentry. |
| 10238 | * The vpid12 is allocated by L1 for L2, so it will not |
| 10239 | * influence global bitmap(for vpid01 and vpid02 allocation) |
| 10240 | * even if spawn a lot of nested vCPUs. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10241 | */ |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 10242 | if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) { |
| 10243 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02); |
| 10244 | if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) { |
| 10245 | vmx->nested.last_vpid = vmcs12->virtual_processor_id; |
| 10246 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02); |
| 10247 | } |
| 10248 | } else { |
| 10249 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 10250 | vmx_flush_tlb(vcpu); |
| 10251 | } |
| 10252 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10253 | } |
| 10254 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10255 | if (nested_cpu_has_ept(vmcs12)) { |
| 10256 | kvm_mmu_unload(vcpu); |
| 10257 | nested_ept_init_mmu_context(vcpu); |
| 10258 | } |
| 10259 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10260 | /* |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 10261 | * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those |
| 10262 | * bits which we consider mandatory enabled. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10263 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 10264 | * the specifications by L1; It's not enough to take |
| 10265 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 10266 | * have more bits than L1 expected. |
| 10267 | */ |
| 10268 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 10269 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 10270 | |
| 10271 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 10272 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 10273 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10274 | if (from_vmentry && |
| 10275 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) |
David Matlack | 5a6a974 | 2016-11-29 18:14:10 -0800 | [diff] [blame] | 10276 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
| 10277 | else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
| 10278 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10279 | else |
| 10280 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10281 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 10282 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10283 | |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10284 | /* Shadow page tables on either EPT or shadow page tables. */ |
| 10285 | if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_ept_enabled, |
| 10286 | entry_failure_code)) |
| 10287 | return 1; |
Ladi Prosek | 7ca29de | 2016-11-30 16:03:08 +0100 | [diff] [blame] | 10288 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10289 | kvm_mmu_reset_context(vcpu); |
| 10290 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10291 | if (!enable_ept) |
| 10292 | vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested; |
| 10293 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10294 | /* |
| 10295 | * L1 may access the L2's PDPTR, so save them to construct vmcs12 |
| 10296 | */ |
| 10297 | if (enable_ept) { |
| 10298 | vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0); |
| 10299 | vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1); |
| 10300 | vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2); |
| 10301 | vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3); |
| 10302 | } |
| 10303 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10304 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 10305 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 10306 | return 0; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10307 | } |
| 10308 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10309 | static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10310 | { |
| 10311 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10312 | |
| 10313 | if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE && |
| 10314 | vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) |
| 10315 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10316 | |
| 10317 | if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) |
| 10318 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10319 | |
| 10320 | if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) |
| 10321 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10322 | |
| 10323 | if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) |
| 10324 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10325 | |
| 10326 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
| 10327 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 10328 | vmx->nested.nested_vmx_procbased_ctls_high) || |
| 10329 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
| 10330 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 10331 | vmx->nested.nested_vmx_secondary_ctls_high) || |
| 10332 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
| 10333 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 10334 | vmx->nested.nested_vmx_pinbased_ctls_high) || |
| 10335 | !vmx_control_verify(vmcs12->vm_exit_controls, |
| 10336 | vmx->nested.nested_vmx_exit_ctls_low, |
| 10337 | vmx->nested.nested_vmx_exit_ctls_high) || |
| 10338 | !vmx_control_verify(vmcs12->vm_entry_controls, |
| 10339 | vmx->nested.nested_vmx_entry_ctls_low, |
| 10340 | vmx->nested.nested_vmx_entry_ctls_high)) |
| 10341 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10342 | |
| 10343 | if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) || |
| 10344 | !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) || |
| 10345 | !nested_cr3_valid(vcpu, vmcs12->host_cr3)) |
| 10346 | return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD; |
| 10347 | |
| 10348 | return 0; |
| 10349 | } |
| 10350 | |
| 10351 | static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 10352 | u32 *exit_qual) |
| 10353 | { |
| 10354 | bool ia32e; |
| 10355 | |
| 10356 | *exit_qual = ENTRY_FAIL_DEFAULT; |
| 10357 | |
| 10358 | if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) || |
| 10359 | !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4)) |
| 10360 | return 1; |
| 10361 | |
| 10362 | if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) && |
| 10363 | vmcs12->vmcs_link_pointer != -1ull) { |
| 10364 | *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR; |
| 10365 | return 1; |
| 10366 | } |
| 10367 | |
| 10368 | /* |
| 10369 | * If the load IA32_EFER VM-entry control is 1, the following checks |
| 10370 | * are performed on the field for the IA32_EFER MSR: |
| 10371 | * - Bits reserved in the IA32_EFER MSR must be 0. |
| 10372 | * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of |
| 10373 | * the IA-32e mode guest VM-exit control. It must also be identical |
| 10374 | * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to |
| 10375 | * CR0.PG) is 1. |
| 10376 | */ |
| 10377 | if (to_vmx(vcpu)->nested.nested_run_pending && |
| 10378 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) { |
| 10379 | ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; |
| 10380 | if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) || |
| 10381 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) || |
| 10382 | ((vmcs12->guest_cr0 & X86_CR0_PG) && |
| 10383 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) |
| 10384 | return 1; |
| 10385 | } |
| 10386 | |
| 10387 | /* |
| 10388 | * If the load IA32_EFER VM-exit control is 1, bits reserved in the |
| 10389 | * IA32_EFER MSR must be 0 in the field for that register. In addition, |
| 10390 | * the values of the LMA and LME bits in the field must each be that of |
| 10391 | * the host address-space size VM-exit control. |
| 10392 | */ |
| 10393 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) { |
| 10394 | ia32e = (vmcs12->vm_exit_controls & |
| 10395 | VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0; |
| 10396 | if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) || |
| 10397 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) || |
| 10398 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) |
| 10399 | return 1; |
| 10400 | } |
| 10401 | |
| 10402 | return 0; |
| 10403 | } |
| 10404 | |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10405 | static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry) |
| 10406 | { |
| 10407 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10408 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 10409 | struct loaded_vmcs *vmcs02; |
| 10410 | int cpu; |
| 10411 | u32 msr_entry_idx; |
| 10412 | u32 exit_qual; |
| 10413 | |
| 10414 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 10415 | if (!vmcs02) |
| 10416 | return -ENOMEM; |
| 10417 | |
| 10418 | enter_guest_mode(vcpu); |
| 10419 | |
| 10420 | if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) |
| 10421 | vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 10422 | |
| 10423 | cpu = get_cpu(); |
| 10424 | vmx->loaded_vmcs = vmcs02; |
| 10425 | vmx_vcpu_put(vcpu); |
| 10426 | vmx_vcpu_load(vcpu, cpu); |
| 10427 | vcpu->cpu = cpu; |
| 10428 | put_cpu(); |
| 10429 | |
| 10430 | vmx_segment_cache_clear(vmx); |
| 10431 | |
| 10432 | if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) { |
| 10433 | leave_guest_mode(vcpu); |
| 10434 | vmx_load_vmcs01(vcpu); |
| 10435 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10436 | EXIT_REASON_INVALID_STATE, exit_qual); |
| 10437 | return 1; |
| 10438 | } |
| 10439 | |
| 10440 | nested_get_vmcs12_pages(vcpu, vmcs12); |
| 10441 | |
| 10442 | msr_entry_idx = nested_vmx_load_msr(vcpu, |
| 10443 | vmcs12->vm_entry_msr_load_addr, |
| 10444 | vmcs12->vm_entry_msr_load_count); |
| 10445 | if (msr_entry_idx) { |
| 10446 | leave_guest_mode(vcpu); |
| 10447 | vmx_load_vmcs01(vcpu); |
| 10448 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10449 | EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx); |
| 10450 | return 1; |
| 10451 | } |
| 10452 | |
| 10453 | vmcs12->launch_state = 1; |
| 10454 | |
| 10455 | /* |
| 10456 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 10457 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 10458 | * returned as far as L1 is concerned. It will only return (and set |
| 10459 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 10460 | */ |
| 10461 | return 0; |
| 10462 | } |
| 10463 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10464 | /* |
| 10465 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 10466 | * for running an L2 nested guest. |
| 10467 | */ |
| 10468 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 10469 | { |
| 10470 | struct vmcs12 *vmcs12; |
| 10471 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10472 | u32 exit_qual; |
| 10473 | int ret; |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10474 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10475 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10476 | return 1; |
| 10477 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10478 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 10479 | goto out; |
| 10480 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10481 | vmcs12 = get_vmcs12(vcpu); |
| 10482 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10483 | if (enable_shadow_vmcs) |
| 10484 | copy_shadow_to_vmcs12(vmx); |
| 10485 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10486 | /* |
| 10487 | * The nested entry process starts with enforcing various prerequisites |
| 10488 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 10489 | * they fail: As the SDM explains, some conditions should cause the |
| 10490 | * instruction to fail, while others will cause the instruction to seem |
| 10491 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 10492 | * To speed up the normal (success) code path, we should avoid checking |
| 10493 | * for misconfigurations which will anyway be caught by the processor |
| 10494 | * when using the merged vmcs02. |
| 10495 | */ |
| 10496 | if (vmcs12->launch_state == launch) { |
| 10497 | nested_vmx_failValid(vcpu, |
| 10498 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 10499 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10500 | goto out; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10501 | } |
| 10502 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10503 | ret = check_vmentry_prereqs(vcpu, vmcs12); |
| 10504 | if (ret) { |
| 10505 | nested_vmx_failValid(vcpu, ret); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10506 | goto out; |
Paolo Bonzini | 26539bd | 2013-04-15 15:00:27 +0200 | [diff] [blame] | 10507 | } |
| 10508 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10509 | /* |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10510 | * After this point, the trap flag no longer triggers a singlestep trap |
| 10511 | * on the vm entry instructions; don't call kvm_skip_emulated_instruction. |
| 10512 | * This is not 100% correct; for performance reasons, we delegate most |
| 10513 | * of the checks on host state to the processor. If those fail, |
| 10514 | * the singlestep trap is missed. |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10515 | */ |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10516 | skip_emulated_instruction(vcpu); |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10517 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10518 | ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual); |
| 10519 | if (ret) { |
| 10520 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10521 | EXIT_REASON_INVALID_STATE, exit_qual); |
| 10522 | return 1; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10523 | } |
| 10524 | |
| 10525 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10526 | * We're finally done with prerequisite checking, and can start with |
| 10527 | * the nested entry. |
| 10528 | */ |
| 10529 | |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10530 | ret = enter_vmx_non_root_mode(vcpu, true); |
| 10531 | if (ret) |
| 10532 | return ret; |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10533 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 10534 | if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 10535 | return kvm_vcpu_halt(vcpu); |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 10536 | |
Jan Kiszka | 7af40ad3 | 2014-01-04 18:47:23 +0100 | [diff] [blame] | 10537 | vmx->nested.nested_run_pending = 1; |
| 10538 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10539 | return 1; |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10540 | |
| 10541 | out: |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 10542 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10543 | } |
| 10544 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10545 | /* |
| 10546 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 10547 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 10548 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 10549 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 10550 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 10551 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 10552 | * didn't trap the bit, because if L1 did, so would L0). |
| 10553 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 10554 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 10555 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 10556 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 10557 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 10558 | * changed these bits, and therefore they need to be updated, but L0 |
| 10559 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 10560 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 10561 | */ |
| 10562 | static inline unsigned long |
| 10563 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10564 | { |
| 10565 | return |
| 10566 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 10567 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 10568 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 10569 | vcpu->arch.cr0_guest_owned_bits)); |
| 10570 | } |
| 10571 | |
| 10572 | static inline unsigned long |
| 10573 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10574 | { |
| 10575 | return |
| 10576 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 10577 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 10578 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 10579 | vcpu->arch.cr4_guest_owned_bits)); |
| 10580 | } |
| 10581 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10582 | static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, |
| 10583 | struct vmcs12 *vmcs12) |
| 10584 | { |
| 10585 | u32 idt_vectoring; |
| 10586 | unsigned int nr; |
| 10587 | |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 10588 | if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10589 | nr = vcpu->arch.exception.nr; |
| 10590 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 10591 | |
| 10592 | if (kvm_exception_is_soft(nr)) { |
| 10593 | vmcs12->vm_exit_instruction_len = |
| 10594 | vcpu->arch.event_exit_inst_len; |
| 10595 | idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION; |
| 10596 | } else |
| 10597 | idt_vectoring |= INTR_TYPE_HARD_EXCEPTION; |
| 10598 | |
| 10599 | if (vcpu->arch.exception.has_error_code) { |
| 10600 | idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK; |
| 10601 | vmcs12->idt_vectoring_error_code = |
| 10602 | vcpu->arch.exception.error_code; |
| 10603 | } |
| 10604 | |
| 10605 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
Jan Kiszka | cd2633c | 2013-10-23 17:42:15 +0100 | [diff] [blame] | 10606 | } else if (vcpu->arch.nmi_injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10607 | vmcs12->idt_vectoring_info_field = |
| 10608 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR; |
| 10609 | } else if (vcpu->arch.interrupt.pending) { |
| 10610 | nr = vcpu->arch.interrupt.nr; |
| 10611 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 10612 | |
| 10613 | if (vcpu->arch.interrupt.soft) { |
| 10614 | idt_vectoring |= INTR_TYPE_SOFT_INTR; |
| 10615 | vmcs12->vm_entry_instruction_len = |
| 10616 | vcpu->arch.event_exit_inst_len; |
| 10617 | } else |
| 10618 | idt_vectoring |= INTR_TYPE_EXT_INTR; |
| 10619 | |
| 10620 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
| 10621 | } |
| 10622 | } |
| 10623 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10624 | static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr) |
| 10625 | { |
| 10626 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10627 | |
Wanpeng Li | acc9ab6 | 2017-02-27 04:24:39 -0800 | [diff] [blame] | 10628 | if (vcpu->arch.exception.pending || |
| 10629 | vcpu->arch.nmi_injected || |
| 10630 | vcpu->arch.interrupt.pending) |
| 10631 | return -EBUSY; |
| 10632 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10633 | if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) && |
| 10634 | vmx->nested.preemption_timer_expired) { |
| 10635 | if (vmx->nested.nested_run_pending) |
| 10636 | return -EBUSY; |
| 10637 | nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0); |
| 10638 | return 0; |
| 10639 | } |
| 10640 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10641 | if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) { |
Wanpeng Li | acc9ab6 | 2017-02-27 04:24:39 -0800 | [diff] [blame] | 10642 | if (vmx->nested.nested_run_pending) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10643 | return -EBUSY; |
| 10644 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 10645 | NMI_VECTOR | INTR_TYPE_NMI_INTR | |
| 10646 | INTR_INFO_VALID_MASK, 0); |
| 10647 | /* |
| 10648 | * The NMI-triggered VM exit counts as injection: |
| 10649 | * clear this one and block further NMIs. |
| 10650 | */ |
| 10651 | vcpu->arch.nmi_pending = 0; |
| 10652 | vmx_set_nmi_mask(vcpu, true); |
| 10653 | return 0; |
| 10654 | } |
| 10655 | |
| 10656 | if ((kvm_cpu_has_interrupt(vcpu) || external_intr) && |
| 10657 | nested_exit_on_intr(vcpu)) { |
| 10658 | if (vmx->nested.nested_run_pending) |
| 10659 | return -EBUSY; |
| 10660 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10661 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10662 | } |
| 10663 | |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 10664 | vmx_complete_nested_posted_interrupt(vcpu); |
| 10665 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10666 | } |
| 10667 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10668 | static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu) |
| 10669 | { |
| 10670 | ktime_t remaining = |
| 10671 | hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer); |
| 10672 | u64 value; |
| 10673 | |
| 10674 | if (ktime_to_ns(remaining) <= 0) |
| 10675 | return 0; |
| 10676 | |
| 10677 | value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz; |
| 10678 | do_div(value, 1000000); |
| 10679 | return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 10680 | } |
| 10681 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10682 | /* |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10683 | * Update the guest state fields of vmcs12 to reflect changes that |
| 10684 | * occurred while L2 was running. (The "IA-32e mode guest" bit of the |
| 10685 | * VM-entry controls is also updated, since this is really a guest |
| 10686 | * state bit.) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10687 | */ |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10688 | static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10689 | { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10690 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 10691 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 10692 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10693 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 10694 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 10695 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 10696 | |
| 10697 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 10698 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 10699 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 10700 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 10701 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 10702 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 10703 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 10704 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 10705 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 10706 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 10707 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 10708 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 10709 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 10710 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 10711 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 10712 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 10713 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 10714 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 10715 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 10716 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 10717 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 10718 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 10719 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 10720 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 10721 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 10722 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 10723 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 10724 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 10725 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 10726 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 10727 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 10728 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 10729 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 10730 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 10731 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 10732 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 10733 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10734 | vmcs12->guest_interruptibility_info = |
| 10735 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 10736 | vmcs12->guest_pending_dbg_exceptions = |
| 10737 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
Jan Kiszka | 3edf1e6 | 2014-01-04 18:47:24 +0100 | [diff] [blame] | 10738 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) |
| 10739 | vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT; |
| 10740 | else |
| 10741 | vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10742 | |
Jan Kiszka | f412450 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10743 | if (nested_cpu_has_preemption_timer(vmcs12)) { |
| 10744 | if (vmcs12->vm_exit_controls & |
| 10745 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) |
| 10746 | vmcs12->vmx_preemption_timer_value = |
| 10747 | vmx_get_preemption_timer_value(vcpu); |
| 10748 | hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer); |
| 10749 | } |
Arthur Chunqi Li | 7854cbc | 2013-09-16 16:11:44 +0800 | [diff] [blame] | 10750 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10751 | /* |
| 10752 | * In some cases (usually, nested EPT), L2 is allowed to change its |
| 10753 | * own CR3 without exiting. If it has changed it, we must keep it. |
| 10754 | * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined |
| 10755 | * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12. |
| 10756 | * |
| 10757 | * Additionally, restore L2's PDPTR to vmcs12. |
| 10758 | */ |
| 10759 | if (enable_ept) { |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 10760 | vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3); |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10761 | vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0); |
| 10762 | vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1); |
| 10763 | vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2); |
| 10764 | vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3); |
| 10765 | } |
| 10766 | |
Jan Dakinevich | 119a9c0 | 2016-09-04 21:22:47 +0300 | [diff] [blame] | 10767 | if (nested_cpu_has_ept(vmcs12)) |
| 10768 | vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS); |
| 10769 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10770 | if (nested_cpu_has_vid(vmcs12)) |
| 10771 | vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS); |
| 10772 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10773 | vmcs12->vm_entry_controls = |
| 10774 | (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10775 | (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE); |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10776 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 10777 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) { |
| 10778 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 10779 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 10780 | } |
| 10781 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10782 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 10783 | * the relevant bit asks not to trap the change */ |
Jan Kiszka | b8c07d5 | 2013-04-06 13:51:21 +0200 | [diff] [blame] | 10784 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10785 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
Jan Kiszka | 10ba54a | 2013-08-08 16:26:31 +0200 | [diff] [blame] | 10786 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER) |
| 10787 | vmcs12->guest_ia32_efer = vcpu->arch.efer; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10788 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 10789 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 10790 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 10791 | if (kvm_mpx_supported()) |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10792 | vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 10793 | if (nested_cpu_has_xsaves(vmcs12)) |
| 10794 | vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10795 | } |
| 10796 | |
| 10797 | /* |
| 10798 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 10799 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 10800 | * and this function updates it to reflect the changes to the guest state while |
| 10801 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 10802 | * without going back to L1), and to reflect the exit reason. |
| 10803 | * Note that we do not have to copy here all VMCS fields, just those that |
| 10804 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 10805 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 10806 | * which already writes to vmcs12 directly. |
| 10807 | */ |
| 10808 | static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 10809 | u32 exit_reason, u32 exit_intr_info, |
| 10810 | unsigned long exit_qualification) |
| 10811 | { |
| 10812 | /* update guest state fields: */ |
| 10813 | sync_vmcs12(vcpu, vmcs12); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10814 | |
| 10815 | /* update exit information fields: */ |
| 10816 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10817 | vmcs12->vm_exit_reason = exit_reason; |
| 10818 | vmcs12->exit_qualification = exit_qualification; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10819 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10820 | vmcs12->vm_exit_intr_info = exit_intr_info; |
Jan Kiszka | c0d1c77 | 2013-04-14 12:12:50 +0200 | [diff] [blame] | 10821 | if ((vmcs12->vm_exit_intr_info & |
| 10822 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) == |
| 10823 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) |
| 10824 | vmcs12->vm_exit_intr_error_code = |
| 10825 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10826 | vmcs12->idt_vectoring_info_field = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10827 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 10828 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 10829 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10830 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { |
| 10831 | /* vm_entry_intr_info_field is cleared on exit. Emulate this |
| 10832 | * instead of reading the real value. */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10833 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10834 | |
| 10835 | /* |
| 10836 | * Transfer the event that L0 or L1 may wanted to inject into |
| 10837 | * L2 to IDT_VECTORING_INFO_FIELD. |
| 10838 | */ |
| 10839 | vmcs12_save_pending_event(vcpu, vmcs12); |
| 10840 | } |
| 10841 | |
| 10842 | /* |
| 10843 | * Drop what we picked up for L2 via vmx_complete_interrupts. It is |
| 10844 | * preserved above and would only end up incorrectly in L1. |
| 10845 | */ |
| 10846 | vcpu->arch.nmi_injected = false; |
| 10847 | kvm_clear_exception_queue(vcpu); |
| 10848 | kvm_clear_interrupt_queue(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10849 | } |
| 10850 | |
| 10851 | /* |
| 10852 | * A part of what we need to when the nested L2 guest exits and we want to |
| 10853 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 10854 | * in vmcs12. |
| 10855 | * This function is to be called not only on normal nested exit, but also on |
| 10856 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 10857 | * Failures During or After Loading Guest State"). |
| 10858 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 10859 | */ |
Jan Kiszka | 733568f | 2013-02-23 15:07:47 +0100 | [diff] [blame] | 10860 | static void load_vmcs12_host_state(struct kvm_vcpu *vcpu, |
| 10861 | struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10862 | { |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10863 | struct kvm_segment seg; |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10864 | u32 entry_failure_code; |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10865 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10866 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 10867 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 10868 | 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] | 10869 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10870 | else |
| 10871 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10872 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10873 | |
| 10874 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 10875 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
H. Peter Anvin | 1adfa76 | 2013-04-27 16:10:11 -0700 | [diff] [blame] | 10876 | vmx_set_rflags(vcpu, X86_EFLAGS_FIXED); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10877 | /* |
| 10878 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 10879 | * actually changed, because vmx_set_cr0 refers to efer set above. |
| 10880 | * |
| 10881 | * CR0_GUEST_HOST_MASK is already set in the original vmcs01 |
| 10882 | * (KVM doesn't change it); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10883 | */ |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 10884 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Jan Kiszka | 9e3e4db | 2013-09-03 21:11:45 +0200 | [diff] [blame] | 10885 | vmx_set_cr0(vcpu, vmcs12->host_cr0); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10886 | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 10887 | /* Same as above - no reason to call set_cr4_guest_host_mask(). */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10888 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 10889 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 10890 | |
Jan Kiszka | 29bf08f | 2013-12-28 16:31:52 +0100 | [diff] [blame] | 10891 | nested_ept_uninit_mmu_context(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10892 | |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 10893 | /* |
| 10894 | * Only PDPTE load can fail as the value of cr3 was checked on entry and |
| 10895 | * couldn't have changed. |
| 10896 | */ |
| 10897 | if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code)) |
| 10898 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10899 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10900 | if (!enable_ept) |
| 10901 | vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault; |
| 10902 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10903 | if (enable_vpid) { |
| 10904 | /* |
| 10905 | * Trivially support vpid by letting L2s share their parent |
| 10906 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 10907 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 10908 | */ |
| 10909 | vmx_flush_tlb(vcpu); |
| 10910 | } |
| 10911 | |
| 10912 | |
| 10913 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 10914 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 10915 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 10916 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 10917 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10918 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10919 | /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */ |
| 10920 | if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS) |
| 10921 | vmcs_write64(GUEST_BNDCFGS, 0); |
| 10922 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10923 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10924 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10925 | vcpu->arch.pat = vmcs12->host_ia32_pat; |
| 10926 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10927 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 10928 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 10929 | vmcs12->host_ia32_perf_global_ctrl); |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10930 | |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10931 | /* Set L1 segment info according to Intel SDM |
| 10932 | 27.5.2 Loading Host Segment and Descriptor-Table Registers */ |
| 10933 | seg = (struct kvm_segment) { |
| 10934 | .base = 0, |
| 10935 | .limit = 0xFFFFFFFF, |
| 10936 | .selector = vmcs12->host_cs_selector, |
| 10937 | .type = 11, |
| 10938 | .present = 1, |
| 10939 | .s = 1, |
| 10940 | .g = 1 |
| 10941 | }; |
| 10942 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 10943 | seg.l = 1; |
| 10944 | else |
| 10945 | seg.db = 1; |
| 10946 | vmx_set_segment(vcpu, &seg, VCPU_SREG_CS); |
| 10947 | seg = (struct kvm_segment) { |
| 10948 | .base = 0, |
| 10949 | .limit = 0xFFFFFFFF, |
| 10950 | .type = 3, |
| 10951 | .present = 1, |
| 10952 | .s = 1, |
| 10953 | .db = 1, |
| 10954 | .g = 1 |
| 10955 | }; |
| 10956 | seg.selector = vmcs12->host_ds_selector; |
| 10957 | vmx_set_segment(vcpu, &seg, VCPU_SREG_DS); |
| 10958 | seg.selector = vmcs12->host_es_selector; |
| 10959 | vmx_set_segment(vcpu, &seg, VCPU_SREG_ES); |
| 10960 | seg.selector = vmcs12->host_ss_selector; |
| 10961 | vmx_set_segment(vcpu, &seg, VCPU_SREG_SS); |
| 10962 | seg.selector = vmcs12->host_fs_selector; |
| 10963 | seg.base = vmcs12->host_fs_base; |
| 10964 | vmx_set_segment(vcpu, &seg, VCPU_SREG_FS); |
| 10965 | seg.selector = vmcs12->host_gs_selector; |
| 10966 | seg.base = vmcs12->host_gs_base; |
| 10967 | vmx_set_segment(vcpu, &seg, VCPU_SREG_GS); |
| 10968 | seg = (struct kvm_segment) { |
Gleb Natapov | 205befd | 2013-08-04 15:08:06 +0300 | [diff] [blame] | 10969 | .base = vmcs12->host_tr_base, |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10970 | .limit = 0x67, |
| 10971 | .selector = vmcs12->host_tr_selector, |
| 10972 | .type = 11, |
| 10973 | .present = 1 |
| 10974 | }; |
| 10975 | vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); |
| 10976 | |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10977 | kvm_set_dr(vcpu, 7, 0x400); |
| 10978 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10979 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10980 | if (cpu_has_vmx_msr_bitmap()) |
| 10981 | vmx_set_msr_bitmap(vcpu); |
| 10982 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10983 | if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr, |
| 10984 | vmcs12->vm_exit_msr_load_count)) |
| 10985 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10986 | } |
| 10987 | |
| 10988 | /* |
| 10989 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 10990 | * and modify vmcs12 to make it see what it would expect to see there if |
| 10991 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 10992 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10993 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 10994 | u32 exit_intr_info, |
| 10995 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10996 | { |
| 10997 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10998 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jim Mattson | cf3215d | 2016-09-06 09:33:21 -0700 | [diff] [blame] | 10999 | u32 vm_inst_error = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11000 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11001 | /* trying to cancel vmlaunch/vmresume is a bug */ |
| 11002 | WARN_ON_ONCE(vmx->nested.nested_run_pending); |
| 11003 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11004 | leave_guest_mode(vcpu); |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11005 | prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info, |
| 11006 | exit_qualification); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11007 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 11008 | if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr, |
| 11009 | vmcs12->vm_exit_msr_store_count)) |
| 11010 | nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); |
| 11011 | |
Jim Mattson | cf3215d | 2016-09-06 09:33:21 -0700 | [diff] [blame] | 11012 | if (unlikely(vmx->fail)) |
| 11013 | vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 11014 | |
Wanpeng Li | f3380ca | 2014-08-05 12:42:23 +0800 | [diff] [blame] | 11015 | vmx_load_vmcs01(vcpu); |
| 11016 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 11017 | if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT) |
| 11018 | && nested_exit_intr_ack_set(vcpu)) { |
| 11019 | int irq = kvm_cpu_get_interrupt(vcpu); |
| 11020 | WARN_ON(irq < 0); |
| 11021 | vmcs12->vm_exit_intr_info = irq | |
| 11022 | INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR; |
| 11023 | } |
| 11024 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 11025 | trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason, |
| 11026 | vmcs12->exit_qualification, |
| 11027 | vmcs12->idt_vectoring_info_field, |
| 11028 | vmcs12->vm_exit_intr_info, |
| 11029 | vmcs12->vm_exit_intr_error_code, |
| 11030 | KVM_ISA_VMX); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11031 | |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 11032 | vm_entry_controls_reset_shadow(vmx); |
| 11033 | vm_exit_controls_reset_shadow(vmx); |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 11034 | vmx_segment_cache_clear(vmx); |
| 11035 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11036 | /* if no vmcs02 cache requested, remove the one we used */ |
| 11037 | if (VMCS02_POOL_SIZE == 0) |
| 11038 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 11039 | |
| 11040 | load_vmcs12_host_state(vcpu, vmcs12); |
| 11041 | |
Paolo Bonzini | 9314006 | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 11042 | /* Update any VMCS fields that might have changed while L2 ran */ |
Jim Mattson | 83bafef | 2016-10-04 10:48:38 -0700 | [diff] [blame] | 11043 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 11044 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 11045 | vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset); |
Paolo Bonzini | 9314006 | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 11046 | if (vmx->hv_deadline_tsc == -1) |
| 11047 | vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11048 | PIN_BASED_VMX_PREEMPTION_TIMER); |
| 11049 | else |
| 11050 | vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11051 | PIN_BASED_VMX_PREEMPTION_TIMER); |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 11052 | if (kvm_has_tsc_control) |
| 11053 | decache_tsc_multiplier(vmx); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11054 | |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 11055 | if (vmx->nested.change_vmcs01_virtual_x2apic_mode) { |
| 11056 | vmx->nested.change_vmcs01_virtual_x2apic_mode = false; |
| 11057 | vmx_set_virtual_x2apic_mode(vcpu, |
| 11058 | vcpu->arch.apic_base & X2APIC_ENABLE); |
| 11059 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11060 | |
| 11061 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 11062 | vmx->host_rsp = 0; |
| 11063 | |
| 11064 | /* Unpin physical memory we referred to in vmcs02 */ |
| 11065 | if (vmx->nested.apic_access_page) { |
| 11066 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11067 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11068 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 11069 | if (vmx->nested.virtual_apic_page) { |
| 11070 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11071 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 11072 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 11073 | if (vmx->nested.pi_desc_page) { |
| 11074 | kunmap(vmx->nested.pi_desc_page); |
| 11075 | nested_release_page(vmx->nested.pi_desc_page); |
| 11076 | vmx->nested.pi_desc_page = NULL; |
| 11077 | vmx->nested.pi_desc = NULL; |
| 11078 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11079 | |
| 11080 | /* |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 11081 | * We are now running in L2, mmu_notifier will force to reload the |
| 11082 | * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1. |
| 11083 | */ |
Wanpeng Li | c83b6d1 | 2016-09-06 17:20:33 +0800 | [diff] [blame] | 11084 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 11085 | |
| 11086 | /* |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11087 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 11088 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 11089 | * success or failure flag accordingly. |
| 11090 | */ |
| 11091 | if (unlikely(vmx->fail)) { |
| 11092 | vmx->fail = 0; |
Jim Mattson | cf3215d | 2016-09-06 09:33:21 -0700 | [diff] [blame] | 11093 | nested_vmx_failValid(vcpu, vm_inst_error); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11094 | } else |
| 11095 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 11096 | if (enable_shadow_vmcs) |
| 11097 | vmx->nested.sync_shadow_vmcs = true; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11098 | |
| 11099 | /* in case we halted in L2 */ |
| 11100 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11101 | } |
| 11102 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11103 | /* |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 11104 | * Forcibly leave nested mode in order to be able to reset the VCPU later on. |
| 11105 | */ |
| 11106 | static void vmx_leave_nested(struct kvm_vcpu *vcpu) |
| 11107 | { |
Wanpeng Li | 2f707d9 | 2017-03-06 04:03:28 -0800 | [diff] [blame] | 11108 | if (is_guest_mode(vcpu)) { |
| 11109 | to_vmx(vcpu)->nested.nested_run_pending = 0; |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11110 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
Wanpeng Li | 2f707d9 | 2017-03-06 04:03:28 -0800 | [diff] [blame] | 11111 | } |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 11112 | free_nested(to_vmx(vcpu)); |
| 11113 | } |
| 11114 | |
| 11115 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11116 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 11117 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 11118 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 11119 | * It should only be called before L2 actually succeeded to run, and when |
| 11120 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 11121 | */ |
| 11122 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 11123 | struct vmcs12 *vmcs12, |
| 11124 | u32 reason, unsigned long qualification) |
| 11125 | { |
| 11126 | load_vmcs12_host_state(vcpu, vmcs12); |
| 11127 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 11128 | vmcs12->exit_qualification = qualification; |
| 11129 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 11130 | if (enable_shadow_vmcs) |
| 11131 | to_vmx(vcpu)->nested.sync_shadow_vmcs = true; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11132 | } |
| 11133 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 11134 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 11135 | struct x86_instruction_info *info, |
| 11136 | enum x86_intercept_stage stage) |
| 11137 | { |
| 11138 | return X86EMUL_CONTINUE; |
| 11139 | } |
| 11140 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11141 | #ifdef CONFIG_X86_64 |
| 11142 | /* (a << shift) / divisor, return 1 if overflow otherwise 0 */ |
| 11143 | static inline int u64_shl_div_u64(u64 a, unsigned int shift, |
| 11144 | u64 divisor, u64 *result) |
| 11145 | { |
| 11146 | u64 low = a << shift, high = a >> (64 - shift); |
| 11147 | |
| 11148 | /* To avoid the overflow on divq */ |
| 11149 | if (high >= divisor) |
| 11150 | return 1; |
| 11151 | |
| 11152 | /* Low hold the result, high hold rem which is discarded */ |
| 11153 | asm("divq %2\n\t" : "=a" (low), "=d" (high) : |
| 11154 | "rm" (divisor), "0" (low), "1" (high)); |
| 11155 | *result = low; |
| 11156 | |
| 11157 | return 0; |
| 11158 | } |
| 11159 | |
| 11160 | static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc) |
| 11161 | { |
| 11162 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Paolo Bonzini | 9175d2e | 2016-06-27 15:08:01 +0200 | [diff] [blame] | 11163 | u64 tscl = rdtsc(); |
| 11164 | u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl); |
| 11165 | u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11166 | |
| 11167 | /* Convert to host delta tsc if tsc scaling is enabled */ |
| 11168 | if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio && |
| 11169 | u64_shl_div_u64(delta_tsc, |
| 11170 | kvm_tsc_scaling_ratio_frac_bits, |
| 11171 | vcpu->arch.tsc_scaling_ratio, |
| 11172 | &delta_tsc)) |
| 11173 | return -ERANGE; |
| 11174 | |
| 11175 | /* |
| 11176 | * If the delta tsc can't fit in the 32 bit after the multi shift, |
| 11177 | * we can't use the preemption timer. |
| 11178 | * It's possible that it fits on later vmentries, but checking |
| 11179 | * on every vmentry is costly so we just use an hrtimer. |
| 11180 | */ |
| 11181 | if (delta_tsc >> (cpu_preemption_timer_multi + 32)) |
| 11182 | return -ERANGE; |
| 11183 | |
| 11184 | vmx->hv_deadline_tsc = tscl + delta_tsc; |
| 11185 | vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11186 | PIN_BASED_VMX_PREEMPTION_TIMER); |
| 11187 | return 0; |
| 11188 | } |
| 11189 | |
| 11190 | static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu) |
| 11191 | { |
| 11192 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 11193 | vmx->hv_deadline_tsc = -1; |
| 11194 | vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11195 | PIN_BASED_VMX_PREEMPTION_TIMER); |
| 11196 | } |
| 11197 | #endif |
| 11198 | |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11199 | static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu) |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 11200 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 11201 | if (ple_gap) |
| 11202 | shrink_ple_window(vcpu); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 11203 | } |
| 11204 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 11205 | static void vmx_slot_enable_log_dirty(struct kvm *kvm, |
| 11206 | struct kvm_memory_slot *slot) |
| 11207 | { |
| 11208 | kvm_mmu_slot_leaf_clear_dirty(kvm, slot); |
| 11209 | kvm_mmu_slot_largepage_remove_write_access(kvm, slot); |
| 11210 | } |
| 11211 | |
| 11212 | static void vmx_slot_disable_log_dirty(struct kvm *kvm, |
| 11213 | struct kvm_memory_slot *slot) |
| 11214 | { |
| 11215 | kvm_mmu_slot_set_dirty(kvm, slot); |
| 11216 | } |
| 11217 | |
| 11218 | static void vmx_flush_log_dirty(struct kvm *kvm) |
| 11219 | { |
| 11220 | kvm_flush_pml_buffers(kvm); |
| 11221 | } |
| 11222 | |
| 11223 | static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 11224 | struct kvm_memory_slot *memslot, |
| 11225 | gfn_t offset, unsigned long mask) |
| 11226 | { |
| 11227 | kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask); |
| 11228 | } |
| 11229 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11230 | /* |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11231 | * This routine does the following things for vCPU which is going |
| 11232 | * to be blocked if VT-d PI is enabled. |
| 11233 | * - Store the vCPU to the wakeup list, so when interrupts happen |
| 11234 | * we can find the right vCPU to wake up. |
| 11235 | * - Change the Posted-interrupt descriptor as below: |
| 11236 | * 'NDST' <-- vcpu->pre_pcpu |
| 11237 | * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR |
| 11238 | * - If 'ON' is set during this process, which means at least one |
| 11239 | * interrupt is posted for this vCPU, we cannot block it, in |
| 11240 | * this case, return 1, otherwise, return 0. |
| 11241 | * |
| 11242 | */ |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11243 | static int pi_pre_block(struct kvm_vcpu *vcpu) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11244 | { |
| 11245 | unsigned long flags; |
| 11246 | unsigned int dest; |
| 11247 | struct pi_desc old, new; |
| 11248 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 11249 | |
| 11250 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 11251 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 11252 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11253 | return 0; |
| 11254 | |
| 11255 | vcpu->pre_pcpu = vcpu->cpu; |
| 11256 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 11257 | vcpu->pre_pcpu), flags); |
| 11258 | list_add_tail(&vcpu->blocked_vcpu_list, |
| 11259 | &per_cpu(blocked_vcpu_on_cpu, |
| 11260 | vcpu->pre_pcpu)); |
| 11261 | spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 11262 | vcpu->pre_pcpu), flags); |
| 11263 | |
| 11264 | do { |
| 11265 | old.control = new.control = pi_desc->control; |
| 11266 | |
| 11267 | /* |
| 11268 | * We should not block the vCPU if |
| 11269 | * an interrupt is posted for it. |
| 11270 | */ |
| 11271 | if (pi_test_on(pi_desc) == 1) { |
| 11272 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 11273 | vcpu->pre_pcpu), flags); |
| 11274 | list_del(&vcpu->blocked_vcpu_list); |
| 11275 | spin_unlock_irqrestore( |
| 11276 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 11277 | vcpu->pre_pcpu), flags); |
| 11278 | vcpu->pre_pcpu = -1; |
| 11279 | |
| 11280 | return 1; |
| 11281 | } |
| 11282 | |
| 11283 | WARN((pi_desc->sn == 1), |
| 11284 | "Warning: SN field of posted-interrupts " |
| 11285 | "is set before blocking\n"); |
| 11286 | |
| 11287 | /* |
| 11288 | * Since vCPU can be preempted during this process, |
| 11289 | * vcpu->cpu could be different with pre_pcpu, we |
| 11290 | * need to set pre_pcpu as the destination of wakeup |
| 11291 | * notification event, then we can find the right vCPU |
| 11292 | * to wakeup in wakeup handler if interrupts happen |
| 11293 | * when the vCPU is in blocked state. |
| 11294 | */ |
| 11295 | dest = cpu_physical_id(vcpu->pre_pcpu); |
| 11296 | |
| 11297 | if (x2apic_enabled()) |
| 11298 | new.ndst = dest; |
| 11299 | else |
| 11300 | new.ndst = (dest << 8) & 0xFF00; |
| 11301 | |
| 11302 | /* set 'NV' to 'wakeup vector' */ |
| 11303 | new.nv = POSTED_INTR_WAKEUP_VECTOR; |
| 11304 | } while (cmpxchg(&pi_desc->control, old.control, |
| 11305 | new.control) != old.control); |
| 11306 | |
| 11307 | return 0; |
| 11308 | } |
| 11309 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11310 | static int vmx_pre_block(struct kvm_vcpu *vcpu) |
| 11311 | { |
| 11312 | if (pi_pre_block(vcpu)) |
| 11313 | return 1; |
| 11314 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11315 | if (kvm_lapic_hv_timer_in_use(vcpu)) |
| 11316 | kvm_lapic_switch_to_sw_timer(vcpu); |
| 11317 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11318 | return 0; |
| 11319 | } |
| 11320 | |
| 11321 | static void pi_post_block(struct kvm_vcpu *vcpu) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11322 | { |
| 11323 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 11324 | struct pi_desc old, new; |
| 11325 | unsigned int dest; |
| 11326 | unsigned long flags; |
| 11327 | |
| 11328 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 11329 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 11330 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11331 | return; |
| 11332 | |
| 11333 | do { |
| 11334 | old.control = new.control = pi_desc->control; |
| 11335 | |
| 11336 | dest = cpu_physical_id(vcpu->cpu); |
| 11337 | |
| 11338 | if (x2apic_enabled()) |
| 11339 | new.ndst = dest; |
| 11340 | else |
| 11341 | new.ndst = (dest << 8) & 0xFF00; |
| 11342 | |
| 11343 | /* Allow posting non-urgent interrupts */ |
| 11344 | new.sn = 0; |
| 11345 | |
| 11346 | /* set 'NV' to 'notification vector' */ |
| 11347 | new.nv = POSTED_INTR_VECTOR; |
| 11348 | } while (cmpxchg(&pi_desc->control, old.control, |
| 11349 | new.control) != old.control); |
| 11350 | |
| 11351 | if(vcpu->pre_pcpu != -1) { |
| 11352 | spin_lock_irqsave( |
| 11353 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 11354 | vcpu->pre_pcpu), flags); |
| 11355 | list_del(&vcpu->blocked_vcpu_list); |
| 11356 | spin_unlock_irqrestore( |
| 11357 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 11358 | vcpu->pre_pcpu), flags); |
| 11359 | vcpu->pre_pcpu = -1; |
| 11360 | } |
| 11361 | } |
| 11362 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11363 | static void vmx_post_block(struct kvm_vcpu *vcpu) |
| 11364 | { |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11365 | if (kvm_x86_ops->set_hv_timer) |
| 11366 | kvm_lapic_switch_to_hv_timer(vcpu); |
| 11367 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11368 | pi_post_block(vcpu); |
| 11369 | } |
| 11370 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11371 | /* |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11372 | * vmx_update_pi_irte - set IRTE for Posted-Interrupts |
| 11373 | * |
| 11374 | * @kvm: kvm |
| 11375 | * @host_irq: host irq of the interrupt |
| 11376 | * @guest_irq: gsi of the interrupt |
| 11377 | * @set: set or unset PI |
| 11378 | * returns 0 on success, < 0 on failure |
| 11379 | */ |
| 11380 | static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq, |
| 11381 | uint32_t guest_irq, bool set) |
| 11382 | { |
| 11383 | struct kvm_kernel_irq_routing_entry *e; |
| 11384 | struct kvm_irq_routing_table *irq_rt; |
| 11385 | struct kvm_lapic_irq irq; |
| 11386 | struct kvm_vcpu *vcpu; |
| 11387 | struct vcpu_data vcpu_info; |
| 11388 | int idx, ret = -EINVAL; |
| 11389 | |
| 11390 | if (!kvm_arch_has_assigned_device(kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 11391 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 11392 | !kvm_vcpu_apicv_active(kvm->vcpus[0])) |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11393 | return 0; |
| 11394 | |
| 11395 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 11396 | irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); |
| 11397 | BUG_ON(guest_irq >= irq_rt->nr_rt_entries); |
| 11398 | |
| 11399 | hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { |
| 11400 | if (e->type != KVM_IRQ_ROUTING_MSI) |
| 11401 | continue; |
| 11402 | /* |
| 11403 | * VT-d PI cannot support posting multicast/broadcast |
| 11404 | * interrupts to a vCPU, we still use interrupt remapping |
| 11405 | * for these kind of interrupts. |
| 11406 | * |
| 11407 | * For lowest-priority interrupts, we only support |
| 11408 | * those with single CPU as the destination, e.g. user |
| 11409 | * configures the interrupts via /proc/irq or uses |
| 11410 | * irqbalance to make the interrupts single-CPU. |
| 11411 | * |
| 11412 | * We will support full lowest-priority interrupt later. |
| 11413 | */ |
| 11414 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 11415 | kvm_set_msi_irq(kvm, e, &irq); |
Feng Wu | 23a1c25 | 2016-01-25 16:53:32 +0800 | [diff] [blame] | 11416 | if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) { |
| 11417 | /* |
| 11418 | * Make sure the IRTE is in remapped mode if |
| 11419 | * we don't handle it in posted mode. |
| 11420 | */ |
| 11421 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
| 11422 | if (ret < 0) { |
| 11423 | printk(KERN_INFO |
| 11424 | "failed to back to remapped mode, irq: %u\n", |
| 11425 | host_irq); |
| 11426 | goto out; |
| 11427 | } |
| 11428 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11429 | continue; |
Feng Wu | 23a1c25 | 2016-01-25 16:53:32 +0800 | [diff] [blame] | 11430 | } |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11431 | |
| 11432 | vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu)); |
| 11433 | vcpu_info.vector = irq.vector; |
| 11434 | |
Feng Wu | b6ce978 | 2016-01-25 16:53:35 +0800 | [diff] [blame] | 11435 | trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11436 | vcpu_info.vector, vcpu_info.pi_desc_addr, set); |
| 11437 | |
| 11438 | if (set) |
| 11439 | ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); |
| 11440 | else { |
| 11441 | /* suppress notification event before unposting */ |
| 11442 | pi_set_sn(vcpu_to_pi_desc(vcpu)); |
| 11443 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
| 11444 | pi_clear_sn(vcpu_to_pi_desc(vcpu)); |
| 11445 | } |
| 11446 | |
| 11447 | if (ret < 0) { |
| 11448 | printk(KERN_INFO "%s: failed to update PI IRTE\n", |
| 11449 | __func__); |
| 11450 | goto out; |
| 11451 | } |
| 11452 | } |
| 11453 | |
| 11454 | ret = 0; |
| 11455 | out: |
| 11456 | srcu_read_unlock(&kvm->irq_srcu, idx); |
| 11457 | return ret; |
| 11458 | } |
| 11459 | |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 11460 | static void vmx_setup_mce(struct kvm_vcpu *vcpu) |
| 11461 | { |
| 11462 | if (vcpu->arch.mcg_cap & MCG_LMCE_P) |
| 11463 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |= |
| 11464 | FEATURE_CONTROL_LMCE; |
| 11465 | else |
| 11466 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &= |
| 11467 | ~FEATURE_CONTROL_LMCE; |
| 11468 | } |
| 11469 | |
Kees Cook | 404f6aa | 2016-08-08 16:29:06 -0700 | [diff] [blame] | 11470 | static struct kvm_x86_ops vmx_x86_ops __ro_after_init = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11471 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 11472 | .disabled_by_bios = vmx_disabled_by_bios, |
| 11473 | .hardware_setup = hardware_setup, |
| 11474 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 11475 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11476 | .hardware_enable = hardware_enable, |
| 11477 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 11478 | .cpu_has_accelerated_tpr = report_flexpriority, |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 11479 | .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11480 | |
| 11481 | .vcpu_create = vmx_create_vcpu, |
| 11482 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 11483 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11484 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 11485 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11486 | .vcpu_load = vmx_vcpu_load, |
| 11487 | .vcpu_put = vmx_vcpu_put, |
| 11488 | |
Paolo Bonzini | a96036b | 2015-11-10 11:55:36 +0100 | [diff] [blame] | 11489 | .update_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11490 | .get_msr = vmx_get_msr, |
| 11491 | .set_msr = vmx_set_msr, |
| 11492 | .get_segment_base = vmx_get_segment_base, |
| 11493 | .get_segment = vmx_get_segment, |
| 11494 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 11495 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11496 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 11497 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 11498 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 11499 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11500 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11501 | .set_cr3 = vmx_set_cr3, |
| 11502 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11503 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11504 | .get_idt = vmx_get_idt, |
| 11505 | .set_idt = vmx_set_idt, |
| 11506 | .get_gdt = vmx_get_gdt, |
| 11507 | .set_gdt = vmx_set_gdt, |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 11508 | .get_dr6 = vmx_get_dr6, |
| 11509 | .set_dr6 = vmx_set_dr6, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 11510 | .set_dr7 = vmx_set_dr7, |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 11511 | .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 11512 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11513 | .get_rflags = vmx_get_rflags, |
| 11514 | .set_rflags = vmx_set_rflags, |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 11515 | |
| 11516 | .get_pkru = vmx_get_pkru, |
| 11517 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11518 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11519 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11520 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 11521 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11522 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 11523 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 11524 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 11525 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 11526 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 11527 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 11528 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 11529 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 11530 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 11531 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 11532 | .get_nmi_mask = vmx_get_nmi_mask, |
| 11533 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 11534 | .enable_nmi_window = enable_nmi_window, |
| 11535 | .enable_irq_window = enable_irq_window, |
| 11536 | .update_cr8_intercept = update_cr8_intercept, |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 11537 | .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode, |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 11538 | .set_apic_access_page_addr = vmx_set_apic_access_page_addr, |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 11539 | .get_enable_apicv = vmx_get_enable_apicv, |
| 11540 | .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 11541 | .load_eoi_exitmap = vmx_load_eoi_exitmap, |
Paolo Bonzini | 967235d | 2016-12-19 14:03:45 +0100 | [diff] [blame] | 11542 | .apicv_post_state_restore = vmx_apicv_post_state_restore, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 11543 | .hwapic_irr_update = vmx_hwapic_irr_update, |
| 11544 | .hwapic_isr_update = vmx_hwapic_isr_update, |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 11545 | .sync_pir_to_irr = vmx_sync_pir_to_irr, |
| 11546 | .deliver_posted_interrupt = vmx_deliver_posted_interrupt, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 11547 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 11548 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 11549 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 11550 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 11551 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 11552 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 11553 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 11554 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 11555 | |
| 11556 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 11557 | |
| 11558 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 11559 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 11560 | |
| 11561 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 11562 | |
| 11563 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 11564 | |
| 11565 | .write_tsc_offset = vmx_write_tsc_offset, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 11566 | |
| 11567 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 11568 | |
| 11569 | .check_intercept = vmx_check_intercept, |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 11570 | .handle_external_intr = vmx_handle_external_intr, |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 11571 | .mpx_supported = vmx_mpx_supported, |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 11572 | .xsaves_supported = vmx_xsaves_supported, |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11573 | |
| 11574 | .check_nested_events = vmx_check_nested_events, |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 11575 | |
| 11576 | .sched_in = vmx_sched_in, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 11577 | |
| 11578 | .slot_enable_log_dirty = vmx_slot_enable_log_dirty, |
| 11579 | .slot_disable_log_dirty = vmx_slot_disable_log_dirty, |
| 11580 | .flush_log_dirty = vmx_flush_log_dirty, |
| 11581 | .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked, |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 11582 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11583 | .pre_block = vmx_pre_block, |
| 11584 | .post_block = vmx_post_block, |
| 11585 | |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 11586 | .pmu_ops = &intel_pmu_ops, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11587 | |
| 11588 | .update_pi_irte = vmx_update_pi_irte, |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11589 | |
| 11590 | #ifdef CONFIG_X86_64 |
| 11591 | .set_hv_timer = vmx_set_hv_timer, |
| 11592 | .cancel_hv_timer = vmx_cancel_hv_timer, |
| 11593 | #endif |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 11594 | |
| 11595 | .setup_mce = vmx_setup_mce, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11596 | }; |
| 11597 | |
| 11598 | static int __init vmx_init(void) |
| 11599 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 11600 | int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 11601 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 11602 | if (r) |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 11603 | return r; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 11604 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 11605 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 11606 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 11607 | crash_vmclear_local_loaded_vmcss); |
| 11608 | #endif |
| 11609 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 11610 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11611 | } |
| 11612 | |
| 11613 | static void __exit vmx_exit(void) |
| 11614 | { |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 11615 | #ifdef CONFIG_KEXEC_CORE |
Monam Agarwal | 3b63a43 | 2014-03-22 12:28:10 +0530 | [diff] [blame] | 11616 | RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 11617 | synchronize_rcu(); |
| 11618 | #endif |
| 11619 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 11620 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11621 | } |
| 11622 | |
| 11623 | module_init(vmx_init) |
| 11624 | module_exit(vmx_exit) |