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 | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 35 | #include <linux/hrtimer.h> |
Josh Poimboeuf | c207aee | 2017-06-28 10:11:06 -0500 | [diff] [blame] | 36 | #include <linux/frame.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 37 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 38 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 39 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 40 | #include <asm/cpu.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 41 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 42 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 43 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 44 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 45 | #include <asm/mce.h> |
Ingo Molnar | 952f07e | 2015-04-26 16:56:05 +0200 | [diff] [blame] | 46 | #include <asm/fpu/internal.h> |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 47 | #include <asm/perf_event.h> |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 48 | #include <asm/debugreg.h> |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 49 | #include <asm/kexec.h> |
Radim Krčmář | dab2087 | 2015-02-09 22:44:07 +0100 | [diff] [blame] | 50 | #include <asm/apic.h> |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 51 | #include <asm/irq_remapping.h> |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 52 | #include <asm/mmu_context.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 53 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 54 | #include "trace.h" |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 55 | #include "pmu.h" |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 56 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 57 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 58 | #define __ex_clear(x, reg) \ |
| 59 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 60 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 61 | MODULE_AUTHOR("Qumranet"); |
| 62 | MODULE_LICENSE("GPL"); |
| 63 | |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 64 | static const struct x86_cpu_id vmx_cpu_id[] = { |
| 65 | X86_FEATURE_MATCH(X86_FEATURE_VMX), |
| 66 | {} |
| 67 | }; |
| 68 | MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id); |
| 69 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 70 | static bool __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 71 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 72 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 73 | static bool __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 74 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 75 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 76 | static bool __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 77 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 78 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 79 | static bool __read_mostly enable_unrestricted_guest = 1; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 80 | module_param_named(unrestricted_guest, |
| 81 | enable_unrestricted_guest, bool, S_IRUGO); |
| 82 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 83 | static bool __read_mostly enable_ept_ad_bits = 1; |
| 84 | module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO); |
| 85 | |
Avi Kivity | a27685c | 2012-06-12 20:30:18 +0300 | [diff] [blame] | 86 | static bool __read_mostly emulate_invalid_guest_state = true; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 87 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 88 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 89 | static bool __read_mostly fasteoi = 1; |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 90 | module_param(fasteoi, bool, S_IRUGO); |
| 91 | |
Yang Zhang | 5a71785 | 2013-04-11 19:25:16 +0800 | [diff] [blame] | 92 | static bool __read_mostly enable_apicv = 1; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 93 | module_param(enable_apicv, bool, S_IRUGO); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 94 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 95 | static bool __read_mostly enable_shadow_vmcs = 1; |
| 96 | 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] | 97 | /* |
| 98 | * If nested=1, nested virtualization is supported, i.e., guests may use |
| 99 | * VMX and be a hypervisor for its own guests. If nested=0, guests may not |
| 100 | * use VMX instructions. |
| 101 | */ |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 102 | static bool __read_mostly nested = 0; |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 103 | module_param(nested, bool, S_IRUGO); |
| 104 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 105 | static u64 __read_mostly host_xss; |
| 106 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 107 | static bool __read_mostly enable_pml = 1; |
| 108 | module_param_named(pml, enable_pml, bool, S_IRUGO); |
| 109 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 110 | #define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL |
| 111 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 112 | /* Guest_tsc -> host_tsc conversion requires 64-bit division. */ |
| 113 | static int __read_mostly cpu_preemption_timer_multi; |
| 114 | static bool __read_mostly enable_preemption_timer = 1; |
| 115 | #ifdef CONFIG_X86_64 |
| 116 | module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO); |
| 117 | #endif |
| 118 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 119 | #define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD) |
| 120 | #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] | 121 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 122 | (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] | 123 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 124 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 125 | | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 126 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 127 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 128 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 129 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 130 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 131 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 132 | #define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5 |
| 133 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 134 | /* |
Jan Dakinevich | 16c2aec | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 135 | * Hyper-V requires all of these, so mark them as supported even though |
| 136 | * they are just treated the same as all-context. |
| 137 | */ |
| 138 | #define VMX_VPID_EXTENT_SUPPORTED_MASK \ |
| 139 | (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \ |
| 140 | VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \ |
| 141 | VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \ |
| 142 | VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT) |
| 143 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 144 | /* |
| 145 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 146 | * ple_gap: upper bound on the amount of time between two successive |
| 147 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 148 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 149 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 150 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 151 | * less than 2^12 cycles |
| 152 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 153 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 154 | */ |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 155 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
| 156 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 157 | #define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2 |
| 158 | #define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0 |
| 159 | #define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \ |
| 160 | INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW |
| 161 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 162 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 163 | module_param(ple_gap, int, S_IRUGO); |
| 164 | |
| 165 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 166 | module_param(ple_window, int, S_IRUGO); |
| 167 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 168 | /* Default doubles per-vcpu window every exit. */ |
| 169 | static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW; |
| 170 | module_param(ple_window_grow, int, S_IRUGO); |
| 171 | |
| 172 | /* Default resets per-vcpu window every exit to ple_window. */ |
| 173 | static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK; |
| 174 | module_param(ple_window_shrink, int, S_IRUGO); |
| 175 | |
| 176 | /* Default is to compute the maximum so we can never overflow. */ |
| 177 | static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 178 | static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 179 | module_param(ple_window_max, int, S_IRUGO); |
| 180 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 181 | extern const ulong vmx_return; |
| 182 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 183 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 184 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 185 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 186 | struct vmcs { |
| 187 | u32 revision_id; |
| 188 | u32 abort; |
| 189 | char data[0]; |
| 190 | }; |
| 191 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 192 | /* |
| 193 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 194 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 195 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 196 | */ |
| 197 | struct loaded_vmcs { |
| 198 | struct vmcs *vmcs; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 199 | struct vmcs *shadow_vmcs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 200 | int cpu; |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 201 | bool launched; |
| 202 | bool nmi_known_unmasked; |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 203 | unsigned long vmcs_host_cr3; /* May not match real cr3 */ |
| 204 | unsigned long vmcs_host_cr4; /* May not match real cr4 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 205 | struct list_head loaded_vmcss_on_cpu_link; |
| 206 | }; |
| 207 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 208 | struct shared_msr_entry { |
| 209 | unsigned index; |
| 210 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 211 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 212 | }; |
| 213 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 214 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 215 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 216 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 217 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 218 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 219 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 220 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 221 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 222 | * underlying hardware which will be used to run L2. |
| 223 | * This structure is packed to ensure that its layout is identical across |
| 224 | * machines (necessary for live migration). |
| 225 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 226 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 227 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 228 | struct __packed vmcs12 { |
| 229 | /* According to the Intel spec, a VMCS region must start with the |
| 230 | * following two fields. Then follow implementation-specific data. |
| 231 | */ |
| 232 | u32 revision_id; |
| 233 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 234 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 235 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 236 | u32 padding[7]; /* room for future expansion */ |
| 237 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 238 | u64 io_bitmap_a; |
| 239 | u64 io_bitmap_b; |
| 240 | u64 msr_bitmap; |
| 241 | u64 vm_exit_msr_store_addr; |
| 242 | u64 vm_exit_msr_load_addr; |
| 243 | u64 vm_entry_msr_load_addr; |
| 244 | u64 tsc_offset; |
| 245 | u64 virtual_apic_page_addr; |
| 246 | u64 apic_access_addr; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 247 | u64 posted_intr_desc_addr; |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 248 | u64 vm_function_control; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 249 | u64 ept_pointer; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 250 | u64 eoi_exit_bitmap0; |
| 251 | u64 eoi_exit_bitmap1; |
| 252 | u64 eoi_exit_bitmap2; |
| 253 | u64 eoi_exit_bitmap3; |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 254 | u64 eptp_list_address; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 255 | u64 xss_exit_bitmap; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 256 | u64 guest_physical_address; |
| 257 | u64 vmcs_link_pointer; |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 258 | u64 pml_address; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 259 | u64 guest_ia32_debugctl; |
| 260 | u64 guest_ia32_pat; |
| 261 | u64 guest_ia32_efer; |
| 262 | u64 guest_ia32_perf_global_ctrl; |
| 263 | u64 guest_pdptr0; |
| 264 | u64 guest_pdptr1; |
| 265 | u64 guest_pdptr2; |
| 266 | u64 guest_pdptr3; |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 267 | u64 guest_bndcfgs; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 268 | u64 host_ia32_pat; |
| 269 | u64 host_ia32_efer; |
| 270 | u64 host_ia32_perf_global_ctrl; |
| 271 | u64 padding64[8]; /* room for future expansion */ |
| 272 | /* |
| 273 | * To allow migration of L1 (complete with its L2 guests) between |
| 274 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 275 | * unsigned long fields with no explict size. We use u64 (aliased |
| 276 | * natural_width) instead. Luckily, x86 is little-endian. |
| 277 | */ |
| 278 | natural_width cr0_guest_host_mask; |
| 279 | natural_width cr4_guest_host_mask; |
| 280 | natural_width cr0_read_shadow; |
| 281 | natural_width cr4_read_shadow; |
| 282 | natural_width cr3_target_value0; |
| 283 | natural_width cr3_target_value1; |
| 284 | natural_width cr3_target_value2; |
| 285 | natural_width cr3_target_value3; |
| 286 | natural_width exit_qualification; |
| 287 | natural_width guest_linear_address; |
| 288 | natural_width guest_cr0; |
| 289 | natural_width guest_cr3; |
| 290 | natural_width guest_cr4; |
| 291 | natural_width guest_es_base; |
| 292 | natural_width guest_cs_base; |
| 293 | natural_width guest_ss_base; |
| 294 | natural_width guest_ds_base; |
| 295 | natural_width guest_fs_base; |
| 296 | natural_width guest_gs_base; |
| 297 | natural_width guest_ldtr_base; |
| 298 | natural_width guest_tr_base; |
| 299 | natural_width guest_gdtr_base; |
| 300 | natural_width guest_idtr_base; |
| 301 | natural_width guest_dr7; |
| 302 | natural_width guest_rsp; |
| 303 | natural_width guest_rip; |
| 304 | natural_width guest_rflags; |
| 305 | natural_width guest_pending_dbg_exceptions; |
| 306 | natural_width guest_sysenter_esp; |
| 307 | natural_width guest_sysenter_eip; |
| 308 | natural_width host_cr0; |
| 309 | natural_width host_cr3; |
| 310 | natural_width host_cr4; |
| 311 | natural_width host_fs_base; |
| 312 | natural_width host_gs_base; |
| 313 | natural_width host_tr_base; |
| 314 | natural_width host_gdtr_base; |
| 315 | natural_width host_idtr_base; |
| 316 | natural_width host_ia32_sysenter_esp; |
| 317 | natural_width host_ia32_sysenter_eip; |
| 318 | natural_width host_rsp; |
| 319 | natural_width host_rip; |
| 320 | natural_width paddingl[8]; /* room for future expansion */ |
| 321 | u32 pin_based_vm_exec_control; |
| 322 | u32 cpu_based_vm_exec_control; |
| 323 | u32 exception_bitmap; |
| 324 | u32 page_fault_error_code_mask; |
| 325 | u32 page_fault_error_code_match; |
| 326 | u32 cr3_target_count; |
| 327 | u32 vm_exit_controls; |
| 328 | u32 vm_exit_msr_store_count; |
| 329 | u32 vm_exit_msr_load_count; |
| 330 | u32 vm_entry_controls; |
| 331 | u32 vm_entry_msr_load_count; |
| 332 | u32 vm_entry_intr_info_field; |
| 333 | u32 vm_entry_exception_error_code; |
| 334 | u32 vm_entry_instruction_len; |
| 335 | u32 tpr_threshold; |
| 336 | u32 secondary_vm_exec_control; |
| 337 | u32 vm_instruction_error; |
| 338 | u32 vm_exit_reason; |
| 339 | u32 vm_exit_intr_info; |
| 340 | u32 vm_exit_intr_error_code; |
| 341 | u32 idt_vectoring_info_field; |
| 342 | u32 idt_vectoring_error_code; |
| 343 | u32 vm_exit_instruction_len; |
| 344 | u32 vmx_instruction_info; |
| 345 | u32 guest_es_limit; |
| 346 | u32 guest_cs_limit; |
| 347 | u32 guest_ss_limit; |
| 348 | u32 guest_ds_limit; |
| 349 | u32 guest_fs_limit; |
| 350 | u32 guest_gs_limit; |
| 351 | u32 guest_ldtr_limit; |
| 352 | u32 guest_tr_limit; |
| 353 | u32 guest_gdtr_limit; |
| 354 | u32 guest_idtr_limit; |
| 355 | u32 guest_es_ar_bytes; |
| 356 | u32 guest_cs_ar_bytes; |
| 357 | u32 guest_ss_ar_bytes; |
| 358 | u32 guest_ds_ar_bytes; |
| 359 | u32 guest_fs_ar_bytes; |
| 360 | u32 guest_gs_ar_bytes; |
| 361 | u32 guest_ldtr_ar_bytes; |
| 362 | u32 guest_tr_ar_bytes; |
| 363 | u32 guest_interruptibility_info; |
| 364 | u32 guest_activity_state; |
| 365 | u32 guest_sysenter_cs; |
| 366 | u32 host_ia32_sysenter_cs; |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 367 | u32 vmx_preemption_timer_value; |
| 368 | u32 padding32[7]; /* room for future expansion */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 369 | u16 virtual_processor_id; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 370 | u16 posted_intr_nv; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 371 | u16 guest_es_selector; |
| 372 | u16 guest_cs_selector; |
| 373 | u16 guest_ss_selector; |
| 374 | u16 guest_ds_selector; |
| 375 | u16 guest_fs_selector; |
| 376 | u16 guest_gs_selector; |
| 377 | u16 guest_ldtr_selector; |
| 378 | u16 guest_tr_selector; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 379 | u16 guest_intr_status; |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 380 | u16 guest_pml_index; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 381 | u16 host_es_selector; |
| 382 | u16 host_cs_selector; |
| 383 | u16 host_ss_selector; |
| 384 | u16 host_ds_selector; |
| 385 | u16 host_fs_selector; |
| 386 | u16 host_gs_selector; |
| 387 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 388 | }; |
| 389 | |
| 390 | /* |
| 391 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 392 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 393 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 394 | */ |
| 395 | #define VMCS12_REVISION 0x11e57ed0 |
| 396 | |
| 397 | /* |
| 398 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 399 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 400 | * current implementation, 4K are reserved to avoid future complications. |
| 401 | */ |
| 402 | #define VMCS12_SIZE 0x1000 |
| 403 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 404 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 405 | struct vmcs02_list { |
| 406 | struct list_head list; |
| 407 | gpa_t vmptr; |
| 408 | struct loaded_vmcs vmcs02; |
| 409 | }; |
| 410 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 411 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 412 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 413 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 414 | */ |
| 415 | struct nested_vmx { |
| 416 | /* Has the level1 guest done vmxon? */ |
| 417 | bool vmxon; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 418 | gpa_t vmxon_ptr; |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 419 | bool pml_full; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 420 | |
| 421 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 422 | gpa_t current_vmptr; |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 423 | /* |
| 424 | * Cache of the guest's VMCS, existing outside of guest memory. |
| 425 | * Loaded from guest memory during VMPTRLD. Flushed to guest |
David Matlack | 8ca44e8 | 2017-08-01 14:00:39 -0700 | [diff] [blame] | 426 | * memory during VMCLEAR and VMPTRLD. |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 427 | */ |
| 428 | struct vmcs12 *cached_vmcs12; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 429 | /* |
| 430 | * Indicates if the shadow vmcs must be updated with the |
| 431 | * data hold by vmcs12 |
| 432 | */ |
| 433 | bool sync_shadow_vmcs; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 434 | |
| 435 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 436 | struct list_head vmcs02_pool; |
| 437 | int vmcs02_num; |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 438 | bool change_vmcs01_virtual_x2apic_mode; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 439 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 440 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 441 | /* |
| 442 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 443 | * we must keep them pinned while L2 runs. |
| 444 | */ |
| 445 | struct page *apic_access_page; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 446 | struct page *virtual_apic_page; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 447 | struct page *pi_desc_page; |
| 448 | struct pi_desc *pi_desc; |
| 449 | bool pi_pending; |
| 450 | u16 posted_intr_nv; |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 451 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 452 | unsigned long *msr_bitmap; |
| 453 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 454 | struct hrtimer preemption_timer; |
| 455 | bool preemption_timer_expired; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 456 | |
| 457 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 458 | u64 vmcs01_debugctl; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 459 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 460 | u16 vpid02; |
| 461 | u16 last_vpid; |
| 462 | |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 463 | /* |
| 464 | * We only store the "true" versions of the VMX capability MSRs. We |
| 465 | * generate the "non-true" versions by setting the must-be-1 bits |
| 466 | * according to the SDM. |
| 467 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 468 | u32 nested_vmx_procbased_ctls_low; |
| 469 | u32 nested_vmx_procbased_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 470 | u32 nested_vmx_secondary_ctls_low; |
| 471 | u32 nested_vmx_secondary_ctls_high; |
| 472 | u32 nested_vmx_pinbased_ctls_low; |
| 473 | u32 nested_vmx_pinbased_ctls_high; |
| 474 | u32 nested_vmx_exit_ctls_low; |
| 475 | u32 nested_vmx_exit_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 476 | u32 nested_vmx_entry_ctls_low; |
| 477 | u32 nested_vmx_entry_ctls_high; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 478 | u32 nested_vmx_misc_low; |
| 479 | u32 nested_vmx_misc_high; |
| 480 | u32 nested_vmx_ept_caps; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 481 | u32 nested_vmx_vpid_caps; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 482 | u64 nested_vmx_basic; |
| 483 | u64 nested_vmx_cr0_fixed0; |
| 484 | u64 nested_vmx_cr0_fixed1; |
| 485 | u64 nested_vmx_cr4_fixed0; |
| 486 | u64 nested_vmx_cr4_fixed1; |
| 487 | u64 nested_vmx_vmcs_enum; |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 488 | u64 nested_vmx_vmfunc_controls; |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 489 | |
| 490 | /* SMM related state */ |
| 491 | struct { |
| 492 | /* in VMX operation on SMM entry? */ |
| 493 | bool vmxon; |
| 494 | /* in guest mode on SMM entry? */ |
| 495 | bool guest_mode; |
| 496 | } smm; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 497 | }; |
| 498 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 499 | #define POSTED_INTR_ON 0 |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 500 | #define POSTED_INTR_SN 1 |
| 501 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 502 | /* Posted-Interrupt Descriptor */ |
| 503 | struct pi_desc { |
| 504 | u32 pir[8]; /* Posted interrupt requested */ |
Feng Wu | 6ef1522 | 2015-09-18 22:29:45 +0800 | [diff] [blame] | 505 | union { |
| 506 | struct { |
| 507 | /* bit 256 - Outstanding Notification */ |
| 508 | u16 on : 1, |
| 509 | /* bit 257 - Suppress Notification */ |
| 510 | sn : 1, |
| 511 | /* bit 271:258 - Reserved */ |
| 512 | rsvd_1 : 14; |
| 513 | /* bit 279:272 - Notification Vector */ |
| 514 | u8 nv; |
| 515 | /* bit 287:280 - Reserved */ |
| 516 | u8 rsvd_2; |
| 517 | /* bit 319:288 - Notification Destination */ |
| 518 | u32 ndst; |
| 519 | }; |
| 520 | u64 control; |
| 521 | }; |
| 522 | u32 rsvd[6]; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 523 | } __aligned(64); |
| 524 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 525 | static bool pi_test_and_set_on(struct pi_desc *pi_desc) |
| 526 | { |
| 527 | return test_and_set_bit(POSTED_INTR_ON, |
| 528 | (unsigned long *)&pi_desc->control); |
| 529 | } |
| 530 | |
| 531 | static bool pi_test_and_clear_on(struct pi_desc *pi_desc) |
| 532 | { |
| 533 | return test_and_clear_bit(POSTED_INTR_ON, |
| 534 | (unsigned long *)&pi_desc->control); |
| 535 | } |
| 536 | |
| 537 | static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc) |
| 538 | { |
| 539 | return test_and_set_bit(vector, (unsigned long *)pi_desc->pir); |
| 540 | } |
| 541 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 542 | static inline void pi_clear_sn(struct pi_desc *pi_desc) |
| 543 | { |
| 544 | return clear_bit(POSTED_INTR_SN, |
| 545 | (unsigned long *)&pi_desc->control); |
| 546 | } |
| 547 | |
| 548 | static inline void pi_set_sn(struct pi_desc *pi_desc) |
| 549 | { |
| 550 | return set_bit(POSTED_INTR_SN, |
| 551 | (unsigned long *)&pi_desc->control); |
| 552 | } |
| 553 | |
Paolo Bonzini | ad36109 | 2016-09-20 16:15:05 +0200 | [diff] [blame] | 554 | static inline void pi_clear_on(struct pi_desc *pi_desc) |
| 555 | { |
| 556 | clear_bit(POSTED_INTR_ON, |
| 557 | (unsigned long *)&pi_desc->control); |
| 558 | } |
| 559 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 560 | static inline int pi_test_on(struct pi_desc *pi_desc) |
| 561 | { |
| 562 | return test_bit(POSTED_INTR_ON, |
| 563 | (unsigned long *)&pi_desc->control); |
| 564 | } |
| 565 | |
| 566 | static inline int pi_test_sn(struct pi_desc *pi_desc) |
| 567 | { |
| 568 | return test_bit(POSTED_INTR_SN, |
| 569 | (unsigned long *)&pi_desc->control); |
| 570 | } |
| 571 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 572 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 573 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 574 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 575 | u8 fail; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 576 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 577 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 578 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 579 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 580 | int nmsrs; |
| 581 | int save_nmsrs; |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 582 | unsigned long host_idt_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 583 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 584 | u64 msr_host_kernel_gs_base; |
| 585 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 586 | #endif |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 587 | u32 vm_entry_controls_shadow; |
| 588 | u32 vm_exit_controls_shadow; |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 589 | u32 secondary_exec_control; |
| 590 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 591 | /* |
| 592 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 593 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 594 | * guest (L2), it points to a different VMCS. |
| 595 | */ |
| 596 | struct loaded_vmcs vmcs01; |
| 597 | struct loaded_vmcs *loaded_vmcs; |
| 598 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 599 | struct msr_autoload { |
| 600 | unsigned nr; |
| 601 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 602 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 603 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 604 | struct { |
| 605 | int loaded; |
| 606 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 607 | #ifdef CONFIG_X86_64 |
| 608 | u16 ds_sel, es_sel; |
| 609 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 610 | int gs_ldt_reload_needed; |
| 611 | int fs_reload_needed; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 612 | u64 msr_host_bndcfgs; |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 613 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 614 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 615 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 616 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 617 | struct kvm_segment segs[8]; |
| 618 | } rmode; |
| 619 | struct { |
| 620 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 621 | struct kvm_save_segment { |
| 622 | u16 selector; |
| 623 | unsigned long base; |
| 624 | u32 limit; |
| 625 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 626 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 627 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 628 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 629 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 630 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 631 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 632 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 633 | /* Posted interrupt descriptor */ |
| 634 | struct pi_desc pi_desc; |
| 635 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 636 | /* Support for a guest hypervisor (nested VMX) */ |
| 637 | struct nested_vmx nested; |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 638 | |
| 639 | /* Dynamic PLE window. */ |
| 640 | int ple_window; |
| 641 | bool ple_window_dirty; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 642 | |
| 643 | /* Support for PML */ |
| 644 | #define PML_ENTITY_NUM 512 |
| 645 | struct page *pml_pg; |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 646 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 647 | /* apic deadline value in host tsc */ |
| 648 | u64 hv_deadline_tsc; |
| 649 | |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 650 | u64 current_tsc_ratio; |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 651 | |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 652 | u32 host_pkru; |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 653 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 654 | /* |
| 655 | * Only bits masked by msr_ia32_feature_control_valid_bits can be set in |
| 656 | * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included |
| 657 | * in msr_ia32_feature_control_valid_bits. |
| 658 | */ |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 659 | u64 msr_ia32_feature_control; |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 660 | u64 msr_ia32_feature_control_valid_bits; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 661 | }; |
| 662 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 663 | enum segment_cache_field { |
| 664 | SEG_FIELD_SEL = 0, |
| 665 | SEG_FIELD_BASE = 1, |
| 666 | SEG_FIELD_LIMIT = 2, |
| 667 | SEG_FIELD_AR = 3, |
| 668 | |
| 669 | SEG_FIELD_NR = 4 |
| 670 | }; |
| 671 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 672 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 673 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 674 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 675 | } |
| 676 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 677 | static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu) |
| 678 | { |
| 679 | return &(to_vmx(vcpu)->pi_desc); |
| 680 | } |
| 681 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 682 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 683 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 684 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 685 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 686 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 687 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 688 | static unsigned long shadow_read_only_fields[] = { |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 689 | /* |
| 690 | * We do NOT shadow fields that are modified when L0 |
| 691 | * traps and emulates any vmx instruction (e.g. VMPTRLD, |
| 692 | * VMXON...) executed by L1. |
| 693 | * For example, VM_INSTRUCTION_ERROR is read |
| 694 | * by L1 if a vmx instruction fails (part of the error path). |
| 695 | * Note the code assumes this logic. If for some reason |
| 696 | * we start shadowing these fields then we need to |
| 697 | * force a shadow sync when L0 emulates vmx instructions |
| 698 | * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified |
| 699 | * by nested_vmx_failValid) |
| 700 | */ |
| 701 | VM_EXIT_REASON, |
| 702 | VM_EXIT_INTR_INFO, |
| 703 | VM_EXIT_INSTRUCTION_LEN, |
| 704 | IDT_VECTORING_INFO_FIELD, |
| 705 | IDT_VECTORING_ERROR_CODE, |
| 706 | VM_EXIT_INTR_ERROR_CODE, |
| 707 | EXIT_QUALIFICATION, |
| 708 | GUEST_LINEAR_ADDRESS, |
| 709 | GUEST_PHYSICAL_ADDRESS |
| 710 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 711 | static int max_shadow_read_only_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 712 | ARRAY_SIZE(shadow_read_only_fields); |
| 713 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 714 | static unsigned long shadow_read_write_fields[] = { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 715 | TPR_THRESHOLD, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 716 | GUEST_RIP, |
| 717 | GUEST_RSP, |
| 718 | GUEST_CR0, |
| 719 | GUEST_CR3, |
| 720 | GUEST_CR4, |
| 721 | GUEST_INTERRUPTIBILITY_INFO, |
| 722 | GUEST_RFLAGS, |
| 723 | GUEST_CS_SELECTOR, |
| 724 | GUEST_CS_AR_BYTES, |
| 725 | GUEST_CS_LIMIT, |
| 726 | GUEST_CS_BASE, |
| 727 | GUEST_ES_BASE, |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 728 | GUEST_BNDCFGS, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 729 | CR0_GUEST_HOST_MASK, |
| 730 | CR0_READ_SHADOW, |
| 731 | CR4_READ_SHADOW, |
| 732 | TSC_OFFSET, |
| 733 | EXCEPTION_BITMAP, |
| 734 | CPU_BASED_VM_EXEC_CONTROL, |
| 735 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 736 | VM_ENTRY_INTR_INFO_FIELD, |
| 737 | VM_ENTRY_INSTRUCTION_LEN, |
| 738 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 739 | HOST_FS_BASE, |
| 740 | HOST_GS_BASE, |
| 741 | HOST_FS_SELECTOR, |
| 742 | HOST_GS_SELECTOR |
| 743 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 744 | static int max_shadow_read_write_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 745 | ARRAY_SIZE(shadow_read_write_fields); |
| 746 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 747 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 748 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 749 | FIELD(POSTED_INTR_NV, posted_intr_nv), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 750 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 751 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 752 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 753 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 754 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 755 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 756 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 757 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 758 | FIELD(GUEST_INTR_STATUS, guest_intr_status), |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 759 | FIELD(GUEST_PML_INDEX, guest_pml_index), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 760 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 761 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 762 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 763 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 764 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 765 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 766 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 767 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 768 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 769 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 770 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 771 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 772 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 773 | FIELD64(TSC_OFFSET, tsc_offset), |
| 774 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 775 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 776 | FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr), |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 777 | FIELD64(VM_FUNCTION_CONTROL, vm_function_control), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 778 | FIELD64(EPT_POINTER, ept_pointer), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 779 | FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0), |
| 780 | FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1), |
| 781 | FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2), |
| 782 | FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3), |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 783 | FIELD64(EPTP_LIST_ADDRESS, eptp_list_address), |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 784 | FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 785 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 786 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 787 | FIELD64(PML_ADDRESS, pml_address), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 788 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 789 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 790 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 791 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 792 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 793 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 794 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 795 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 796 | FIELD64(GUEST_BNDCFGS, guest_bndcfgs), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 797 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 798 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 799 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 800 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 801 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 802 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 803 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 804 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 805 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 806 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 807 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 808 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 809 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 810 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 811 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 812 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 813 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 814 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 815 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 816 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 817 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 818 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 819 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 820 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 821 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 822 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 823 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 824 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 825 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 826 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 827 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 828 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 829 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 830 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 831 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 832 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 833 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 834 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 835 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 836 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 837 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 838 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 839 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 840 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 841 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 842 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 843 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 844 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 845 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 846 | FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 847 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 848 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 849 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 850 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 851 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 852 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 853 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 854 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 855 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 856 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 857 | FIELD(GUEST_CR0, guest_cr0), |
| 858 | FIELD(GUEST_CR3, guest_cr3), |
| 859 | FIELD(GUEST_CR4, guest_cr4), |
| 860 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 861 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 862 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 863 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 864 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 865 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 866 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 867 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 868 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 869 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 870 | FIELD(GUEST_DR7, guest_dr7), |
| 871 | FIELD(GUEST_RSP, guest_rsp), |
| 872 | FIELD(GUEST_RIP, guest_rip), |
| 873 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 874 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 875 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 876 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 877 | FIELD(HOST_CR0, host_cr0), |
| 878 | FIELD(HOST_CR3, host_cr3), |
| 879 | FIELD(HOST_CR4, host_cr4), |
| 880 | FIELD(HOST_FS_BASE, host_fs_base), |
| 881 | FIELD(HOST_GS_BASE, host_gs_base), |
| 882 | FIELD(HOST_TR_BASE, host_tr_base), |
| 883 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 884 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 885 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 886 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 887 | FIELD(HOST_RSP, host_rsp), |
| 888 | FIELD(HOST_RIP, host_rip), |
| 889 | }; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 890 | |
| 891 | static inline short vmcs_field_to_offset(unsigned long field) |
| 892 | { |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 893 | BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX); |
| 894 | |
| 895 | if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) || |
| 896 | vmcs_field_to_offset_table[field] == 0) |
| 897 | return -ENOENT; |
| 898 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 899 | return vmcs_field_to_offset_table[field]; |
| 900 | } |
| 901 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 902 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 903 | { |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 904 | return to_vmx(vcpu)->nested.cached_vmcs12; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 905 | } |
| 906 | |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 907 | static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 908 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu); |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 909 | static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 910 | static bool vmx_xsaves_supported(void); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 911 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 912 | struct kvm_segment *var, int seg); |
| 913 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 914 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 915 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 916 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 917 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx); |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 918 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu); |
| 919 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked); |
| 920 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 921 | u16 error_code); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 922 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 923 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 924 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 925 | /* |
| 926 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 927 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 928 | */ |
| 929 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 930 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 931 | /* |
| 932 | * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we |
| 933 | * can find which vCPU should be waken up. |
| 934 | */ |
| 935 | static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu); |
| 936 | static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock); |
| 937 | |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 938 | enum { |
| 939 | VMX_IO_BITMAP_A, |
| 940 | VMX_IO_BITMAP_B, |
| 941 | VMX_MSR_BITMAP_LEGACY, |
| 942 | VMX_MSR_BITMAP_LONGMODE, |
| 943 | VMX_MSR_BITMAP_LEGACY_X2APIC_APICV, |
| 944 | VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV, |
| 945 | VMX_MSR_BITMAP_LEGACY_X2APIC, |
| 946 | VMX_MSR_BITMAP_LONGMODE_X2APIC, |
| 947 | VMX_VMREAD_BITMAP, |
| 948 | VMX_VMWRITE_BITMAP, |
| 949 | VMX_BITMAP_NR |
| 950 | }; |
| 951 | |
| 952 | static unsigned long *vmx_bitmap[VMX_BITMAP_NR]; |
| 953 | |
| 954 | #define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A]) |
| 955 | #define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B]) |
| 956 | #define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY]) |
| 957 | #define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE]) |
| 958 | #define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV]) |
| 959 | #define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV]) |
| 960 | #define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC]) |
| 961 | #define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC]) |
| 962 | #define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP]) |
| 963 | #define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP]) |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 964 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 965 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 966 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 967 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 968 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 969 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 970 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 971 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 972 | int size; |
| 973 | int order; |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 974 | u32 basic_cap; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 975 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 976 | u32 pin_based_exec_ctrl; |
| 977 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 978 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 979 | u32 vmexit_ctrl; |
| 980 | u32 vmentry_ctrl; |
| 981 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 982 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 983 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 984 | u32 ept; |
| 985 | u32 vpid; |
| 986 | } vmx_capability; |
| 987 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 988 | #define VMX_SEGMENT_FIELD(seg) \ |
| 989 | [VCPU_SREG_##seg] = { \ |
| 990 | .selector = GUEST_##seg##_SELECTOR, \ |
| 991 | .base = GUEST_##seg##_BASE, \ |
| 992 | .limit = GUEST_##seg##_LIMIT, \ |
| 993 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 994 | } |
| 995 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 996 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 997 | unsigned selector; |
| 998 | unsigned base; |
| 999 | unsigned limit; |
| 1000 | unsigned ar_bytes; |
| 1001 | } kvm_vmx_segment_fields[] = { |
| 1002 | VMX_SEGMENT_FIELD(CS), |
| 1003 | VMX_SEGMENT_FIELD(DS), |
| 1004 | VMX_SEGMENT_FIELD(ES), |
| 1005 | VMX_SEGMENT_FIELD(FS), |
| 1006 | VMX_SEGMENT_FIELD(GS), |
| 1007 | VMX_SEGMENT_FIELD(SS), |
| 1008 | VMX_SEGMENT_FIELD(TR), |
| 1009 | VMX_SEGMENT_FIELD(LDTR), |
| 1010 | }; |
| 1011 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1012 | static u64 host_efer; |
| 1013 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 1014 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 1015 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 1016 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1017 | * 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] | 1018 | * away by decrementing the array size. |
| 1019 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1020 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1021 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1022 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1023 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1024 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1025 | }; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1026 | |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1027 | static inline bool is_exception_n(u32 intr_info, u8 vector) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1028 | { |
| 1029 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 1030 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1031 | (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK); |
| 1032 | } |
| 1033 | |
Jan Kiszka | 6f05485 | 2016-02-09 20:15:18 +0100 | [diff] [blame] | 1034 | static inline bool is_debug(u32 intr_info) |
| 1035 | { |
| 1036 | return is_exception_n(intr_info, DB_VECTOR); |
| 1037 | } |
| 1038 | |
| 1039 | static inline bool is_breakpoint(u32 intr_info) |
| 1040 | { |
| 1041 | return is_exception_n(intr_info, BP_VECTOR); |
| 1042 | } |
| 1043 | |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1044 | static inline bool is_page_fault(u32 intr_info) |
| 1045 | { |
| 1046 | return is_exception_n(intr_info, PF_VECTOR); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1047 | } |
| 1048 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1049 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1050 | { |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1051 | return is_exception_n(intr_info, NM_VECTOR); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1052 | } |
| 1053 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1054 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 1055 | { |
Jan Kiszka | 5bb1601 | 2016-02-09 20:14:21 +0100 | [diff] [blame] | 1056 | return is_exception_n(intr_info, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 1057 | } |
| 1058 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1059 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1060 | { |
| 1061 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 1062 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 1063 | } |
| 1064 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1065 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 1066 | { |
| 1067 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 1068 | INTR_INFO_VALID_MASK)) == |
| 1069 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 1070 | } |
| 1071 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1072 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1073 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1074 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1075 | } |
| 1076 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1077 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1078 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1079 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1080 | } |
| 1081 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1082 | static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1083 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1084 | return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1087 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1088 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1089 | return vmcs_config.cpu_based_exec_ctrl & |
| 1090 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1091 | } |
| 1092 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 1093 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1094 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1095 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1096 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 1097 | } |
| 1098 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 1099 | static inline bool cpu_has_vmx_virtualize_x2apic_mode(void) |
| 1100 | { |
| 1101 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1102 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 1103 | } |
| 1104 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 1105 | static inline bool cpu_has_vmx_apic_register_virt(void) |
| 1106 | { |
| 1107 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1108 | SECONDARY_EXEC_APIC_REGISTER_VIRT; |
| 1109 | } |
| 1110 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 1111 | static inline bool cpu_has_vmx_virtual_intr_delivery(void) |
| 1112 | { |
| 1113 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1114 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY; |
| 1115 | } |
| 1116 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1117 | /* |
| 1118 | * Comment's format: document - errata name - stepping - processor name. |
| 1119 | * Refer from |
| 1120 | * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp |
| 1121 | */ |
| 1122 | static u32 vmx_preemption_cpu_tfms[] = { |
| 1123 | /* 323344.pdf - BA86 - D0 - Xeon 7500 Series */ |
| 1124 | 0x000206E6, |
| 1125 | /* 323056.pdf - AAX65 - C2 - Xeon L3406 */ |
| 1126 | /* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */ |
| 1127 | /* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */ |
| 1128 | 0x00020652, |
| 1129 | /* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */ |
| 1130 | 0x00020655, |
| 1131 | /* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */ |
| 1132 | /* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */ |
| 1133 | /* |
| 1134 | * 320767.pdf - AAP86 - B1 - |
| 1135 | * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile |
| 1136 | */ |
| 1137 | 0x000106E5, |
| 1138 | /* 321333.pdf - AAM126 - C0 - Xeon 3500 */ |
| 1139 | 0x000106A0, |
| 1140 | /* 321333.pdf - AAM126 - C1 - Xeon 3500 */ |
| 1141 | 0x000106A1, |
| 1142 | /* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */ |
| 1143 | 0x000106A4, |
| 1144 | /* 321333.pdf - AAM126 - D0 - Xeon 3500 */ |
| 1145 | /* 321324.pdf - AAK139 - D0 - Xeon 5500 */ |
| 1146 | /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */ |
| 1147 | 0x000106A5, |
| 1148 | }; |
| 1149 | |
| 1150 | static inline bool cpu_has_broken_vmx_preemption_timer(void) |
| 1151 | { |
| 1152 | u32 eax = cpuid_eax(0x00000001), i; |
| 1153 | |
| 1154 | /* Clear the reserved bits */ |
| 1155 | eax &= ~(0x3U << 14 | 0xfU << 28); |
Wei Yongjun | 03f6a22 | 2016-07-04 15:13:07 +0000 | [diff] [blame] | 1156 | for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++) |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1157 | if (eax == vmx_preemption_cpu_tfms[i]) |
| 1158 | return true; |
| 1159 | |
| 1160 | return false; |
| 1161 | } |
| 1162 | |
| 1163 | static inline bool cpu_has_vmx_preemption_timer(void) |
| 1164 | { |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 1165 | return vmcs_config.pin_based_exec_ctrl & |
| 1166 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1167 | } |
| 1168 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1169 | static inline bool cpu_has_vmx_posted_intr(void) |
| 1170 | { |
Paolo Bonzini | d6a858d | 2015-09-28 11:58:14 +0200 | [diff] [blame] | 1171 | return IS_ENABLED(CONFIG_X86_LOCAL_APIC) && |
| 1172 | vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | static inline bool cpu_has_vmx_apicv(void) |
| 1176 | { |
| 1177 | return cpu_has_vmx_apic_register_virt() && |
| 1178 | cpu_has_vmx_virtual_intr_delivery() && |
| 1179 | cpu_has_vmx_posted_intr(); |
| 1180 | } |
| 1181 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1182 | static inline bool cpu_has_vmx_flexpriority(void) |
| 1183 | { |
| 1184 | return cpu_has_vmx_tpr_shadow() && |
| 1185 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1186 | } |
| 1187 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1188 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 1189 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1190 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1191 | } |
| 1192 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1193 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 1194 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1195 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1196 | } |
| 1197 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1198 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 1199 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1200 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1201 | } |
| 1202 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 1203 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 1204 | { |
| 1205 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 1206 | } |
| 1207 | |
David Hildenbrand | 42aa53b | 2017-08-10 23:15:29 +0200 | [diff] [blame] | 1208 | static inline bool cpu_has_vmx_ept_mt_wb(void) |
| 1209 | { |
| 1210 | return vmx_capability.ept & VMX_EPTP_WB_BIT; |
| 1211 | } |
| 1212 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 1213 | static inline bool cpu_has_vmx_ept_5levels(void) |
| 1214 | { |
| 1215 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT; |
| 1216 | } |
| 1217 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 1218 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 1219 | { |
| 1220 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 1221 | } |
| 1222 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1223 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1224 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1225 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1226 | } |
| 1227 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1228 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1229 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1230 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1231 | } |
| 1232 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1233 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 1234 | { |
| 1235 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 1236 | } |
| 1237 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1238 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 1239 | { |
| 1240 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 1241 | } |
| 1242 | |
Wanpeng Li | 08d839c | 2017-03-23 05:30:08 -0700 | [diff] [blame] | 1243 | static inline bool cpu_has_vmx_invvpid(void) |
| 1244 | { |
| 1245 | return vmx_capability.vpid & VMX_VPID_INVVPID_BIT; |
| 1246 | } |
| 1247 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1248 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1249 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1250 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1251 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1252 | } |
| 1253 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1254 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 1255 | { |
| 1256 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1257 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 1258 | } |
| 1259 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1260 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 1261 | { |
| 1262 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1263 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 1264 | } |
| 1265 | |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 1266 | static inline bool cpu_has_vmx_basic_inout(void) |
| 1267 | { |
| 1268 | return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT); |
| 1269 | } |
| 1270 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1271 | static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1272 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1273 | return flexpriority_enabled && lapic_in_kernel(vcpu); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1274 | } |
| 1275 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1276 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1277 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1278 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1279 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1280 | } |
| 1281 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1282 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1283 | { |
| 1284 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1285 | SECONDARY_EXEC_RDTSCP; |
| 1286 | } |
| 1287 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1288 | static inline bool cpu_has_vmx_invpcid(void) |
| 1289 | { |
| 1290 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1291 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 1292 | } |
| 1293 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1294 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 1295 | { |
| 1296 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1297 | SECONDARY_EXEC_WBINVD_EXITING; |
| 1298 | } |
| 1299 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 1300 | static inline bool cpu_has_vmx_shadow_vmcs(void) |
| 1301 | { |
| 1302 | u64 vmx_msr; |
| 1303 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 1304 | /* check if the cpu supports writing r/o exit information fields */ |
| 1305 | if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS)) |
| 1306 | return false; |
| 1307 | |
| 1308 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1309 | SECONDARY_EXEC_SHADOW_VMCS; |
| 1310 | } |
| 1311 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 1312 | static inline bool cpu_has_vmx_pml(void) |
| 1313 | { |
| 1314 | return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML; |
| 1315 | } |
| 1316 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 1317 | static inline bool cpu_has_vmx_tsc_scaling(void) |
| 1318 | { |
| 1319 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1320 | SECONDARY_EXEC_TSC_SCALING; |
| 1321 | } |
| 1322 | |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 1323 | static inline bool cpu_has_vmx_vmfunc(void) |
| 1324 | { |
| 1325 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1326 | SECONDARY_EXEC_ENABLE_VMFUNC; |
| 1327 | } |
| 1328 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1329 | static inline bool report_flexpriority(void) |
| 1330 | { |
| 1331 | return flexpriority_enabled; |
| 1332 | } |
| 1333 | |
Jim Mattson | c7c2c709 | 2017-05-05 11:28:09 -0700 | [diff] [blame] | 1334 | static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu) |
| 1335 | { |
| 1336 | return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low); |
| 1337 | } |
| 1338 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1339 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 1340 | { |
| 1341 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 1342 | } |
| 1343 | |
| 1344 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 1345 | { |
| 1346 | return (vmcs12->cpu_based_vm_exec_control & |
| 1347 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 1348 | (vmcs12->secondary_vm_exec_control & bit); |
| 1349 | } |
| 1350 | |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 1351 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1352 | { |
| 1353 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 1354 | } |
| 1355 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 1356 | static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12) |
| 1357 | { |
| 1358 | return vmcs12->pin_based_vm_exec_control & |
| 1359 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1360 | } |
| 1361 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 1362 | static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12) |
| 1363 | { |
| 1364 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT); |
| 1365 | } |
| 1366 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1367 | static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12) |
| 1368 | { |
Paolo Bonzini | 3db1348 | 2017-08-24 14:48:03 +0200 | [diff] [blame] | 1369 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1370 | } |
| 1371 | |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 1372 | static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12) |
| 1373 | { |
| 1374 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML); |
| 1375 | } |
| 1376 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 1377 | static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12) |
| 1378 | { |
| 1379 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE); |
| 1380 | } |
| 1381 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 1382 | static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12) |
| 1383 | { |
| 1384 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID); |
| 1385 | } |
| 1386 | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 1387 | static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12) |
| 1388 | { |
| 1389 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT); |
| 1390 | } |
| 1391 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 1392 | static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12) |
| 1393 | { |
| 1394 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 1395 | } |
| 1396 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 1397 | static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12) |
| 1398 | { |
| 1399 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; |
| 1400 | } |
| 1401 | |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 1402 | static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12) |
| 1403 | { |
| 1404 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC); |
| 1405 | } |
| 1406 | |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 1407 | static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12) |
| 1408 | { |
| 1409 | return nested_cpu_has_vmfunc(vmcs12) && |
| 1410 | (vmcs12->vm_function_control & |
| 1411 | VMX_VMFUNC_EPTP_SWITCHING); |
| 1412 | } |
| 1413 | |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 1414 | static inline bool is_nmi(u32 intr_info) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1415 | { |
| 1416 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 1417 | == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1418 | } |
| 1419 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 1420 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 1421 | u32 exit_intr_info, |
| 1422 | unsigned long exit_qualification); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 1423 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 1424 | struct vmcs12 *vmcs12, |
| 1425 | u32 reason, unsigned long qualification); |
| 1426 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1427 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1428 | { |
| 1429 | int i; |
| 1430 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1431 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1432 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1433 | return i; |
| 1434 | return -1; |
| 1435 | } |
| 1436 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1437 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 1438 | { |
| 1439 | struct { |
| 1440 | u64 vpid : 16; |
| 1441 | u64 rsvd : 48; |
| 1442 | u64 gva; |
| 1443 | } operand = { vpid, 0, gva }; |
| 1444 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1445 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1446 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1447 | "; ja 1f ; ud2 ; 1:" |
| 1448 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 1449 | } |
| 1450 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1451 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 1452 | { |
| 1453 | struct { |
| 1454 | u64 eptp, gpa; |
| 1455 | } operand = {eptp, gpa}; |
| 1456 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1457 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1458 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1459 | "; ja 1f ; ud2 ; 1:\n" |
| 1460 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 1461 | } |
| 1462 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1463 | 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] | 1464 | { |
| 1465 | int i; |
| 1466 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1467 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1468 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1469 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 1470 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1471 | } |
| 1472 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1473 | static void vmcs_clear(struct vmcs *vmcs) |
| 1474 | { |
| 1475 | u64 phys_addr = __pa(vmcs); |
| 1476 | u8 error; |
| 1477 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1478 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1479 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1480 | : "cc", "memory"); |
| 1481 | if (error) |
| 1482 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 1483 | vmcs, phys_addr); |
| 1484 | } |
| 1485 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1486 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 1487 | { |
| 1488 | vmcs_clear(loaded_vmcs->vmcs); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 1489 | if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched) |
| 1490 | vmcs_clear(loaded_vmcs->shadow_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1491 | loaded_vmcs->cpu = -1; |
| 1492 | loaded_vmcs->launched = 0; |
| 1493 | } |
| 1494 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1495 | static void vmcs_load(struct vmcs *vmcs) |
| 1496 | { |
| 1497 | u64 phys_addr = __pa(vmcs); |
| 1498 | u8 error; |
| 1499 | |
| 1500 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1501 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1502 | : "cc", "memory"); |
| 1503 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 1504 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1505 | vmcs, phys_addr); |
| 1506 | } |
| 1507 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1508 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1509 | /* |
| 1510 | * This bitmap is used to indicate whether the vmclear |
| 1511 | * operation is enabled on all cpus. All disabled by |
| 1512 | * default. |
| 1513 | */ |
| 1514 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1515 | |
| 1516 | static inline void crash_enable_local_vmclear(int cpu) |
| 1517 | { |
| 1518 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1519 | } |
| 1520 | |
| 1521 | static inline void crash_disable_local_vmclear(int cpu) |
| 1522 | { |
| 1523 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1524 | } |
| 1525 | |
| 1526 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1527 | { |
| 1528 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1529 | } |
| 1530 | |
| 1531 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1532 | { |
| 1533 | int cpu = raw_smp_processor_id(); |
| 1534 | struct loaded_vmcs *v; |
| 1535 | |
| 1536 | if (!crash_local_vmclear_enabled(cpu)) |
| 1537 | return; |
| 1538 | |
| 1539 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1540 | loaded_vmcss_on_cpu_link) |
| 1541 | vmcs_clear(v->vmcs); |
| 1542 | } |
| 1543 | #else |
| 1544 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1545 | static inline void crash_disable_local_vmclear(int cpu) { } |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1546 | #endif /* CONFIG_KEXEC_CORE */ |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1547 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1548 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1549 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1550 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1551 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1552 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1553 | if (loaded_vmcs->cpu != cpu) |
| 1554 | return; /* vcpu migration can race with cpu offline */ |
| 1555 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1556 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1557 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1558 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1559 | |
| 1560 | /* |
| 1561 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1562 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1563 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1564 | * then adds the vmcs into percpu list before it is deleted. |
| 1565 | */ |
| 1566 | smp_wmb(); |
| 1567 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1568 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1569 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1570 | } |
| 1571 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1572 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1573 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1574 | int cpu = loaded_vmcs->cpu; |
| 1575 | |
| 1576 | if (cpu != -1) |
| 1577 | smp_call_function_single(cpu, |
| 1578 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1579 | } |
| 1580 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1581 | static inline void vpid_sync_vcpu_single(int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1582 | { |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1583 | if (vpid == 0) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1584 | return; |
| 1585 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1586 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1587 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1588 | } |
| 1589 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1590 | static inline void vpid_sync_vcpu_global(void) |
| 1591 | { |
| 1592 | if (cpu_has_vmx_invvpid_global()) |
| 1593 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1594 | } |
| 1595 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1596 | static inline void vpid_sync_context(int vpid) |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1597 | { |
| 1598 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1599 | vpid_sync_vcpu_single(vpid); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1600 | else |
| 1601 | vpid_sync_vcpu_global(); |
| 1602 | } |
| 1603 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1604 | static inline void ept_sync_global(void) |
| 1605 | { |
David Hildenbrand | f5f5158 | 2017-08-24 20:51:30 +0200 | [diff] [blame] | 1606 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | static inline void ept_sync_context(u64 eptp) |
| 1610 | { |
David Hildenbrand | 0e1252d | 2017-08-24 20:51:28 +0200 | [diff] [blame] | 1611 | if (cpu_has_vmx_invept_context()) |
| 1612 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1613 | else |
| 1614 | ept_sync_global(); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1615 | } |
| 1616 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1617 | static __always_inline void vmcs_check16(unsigned long field) |
| 1618 | { |
| 1619 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, |
| 1620 | "16-bit accessor invalid for 64-bit field"); |
| 1621 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1622 | "16-bit accessor invalid for 64-bit high field"); |
| 1623 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1624 | "16-bit accessor invalid for 32-bit high field"); |
| 1625 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1626 | "16-bit accessor invalid for natural width field"); |
| 1627 | } |
| 1628 | |
| 1629 | static __always_inline void vmcs_check32(unsigned long field) |
| 1630 | { |
| 1631 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1632 | "32-bit accessor invalid for 16-bit field"); |
| 1633 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1634 | "32-bit accessor invalid for natural width field"); |
| 1635 | } |
| 1636 | |
| 1637 | static __always_inline void vmcs_check64(unsigned long field) |
| 1638 | { |
| 1639 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1640 | "64-bit accessor invalid for 16-bit field"); |
| 1641 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1642 | "64-bit accessor invalid for 64-bit high field"); |
| 1643 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1644 | "64-bit accessor invalid for 32-bit field"); |
| 1645 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000, |
| 1646 | "64-bit accessor invalid for natural width field"); |
| 1647 | } |
| 1648 | |
| 1649 | static __always_inline void vmcs_checkl(unsigned long field) |
| 1650 | { |
| 1651 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0, |
| 1652 | "Natural width accessor invalid for 16-bit field"); |
| 1653 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, |
| 1654 | "Natural width accessor invalid for 64-bit field"); |
| 1655 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, |
| 1656 | "Natural width accessor invalid for 64-bit high field"); |
| 1657 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000, |
| 1658 | "Natural width accessor invalid for 32-bit field"); |
| 1659 | } |
| 1660 | |
| 1661 | static __always_inline unsigned long __vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1662 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1663 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1664 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1665 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1666 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1667 | return value; |
| 1668 | } |
| 1669 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1670 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1671 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1672 | vmcs_check16(field); |
| 1673 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1674 | } |
| 1675 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1676 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1677 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1678 | vmcs_check32(field); |
| 1679 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1680 | } |
| 1681 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1682 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1683 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1684 | vmcs_check64(field); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1685 | #ifdef CONFIG_X86_64 |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1686 | return __vmcs_readl(field); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1687 | #else |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1688 | return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1689 | #endif |
| 1690 | } |
| 1691 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1692 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
| 1693 | { |
| 1694 | vmcs_checkl(field); |
| 1695 | return __vmcs_readl(field); |
| 1696 | } |
| 1697 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1698 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1699 | { |
| 1700 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1701 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1702 | dump_stack(); |
| 1703 | } |
| 1704 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1705 | static __always_inline void __vmcs_writel(unsigned long field, unsigned long value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1706 | { |
| 1707 | u8 error; |
| 1708 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1709 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1710 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1711 | if (unlikely(error)) |
| 1712 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1713 | } |
| 1714 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1715 | static __always_inline void vmcs_write16(unsigned long field, u16 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1716 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1717 | vmcs_check16(field); |
| 1718 | __vmcs_writel(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1719 | } |
| 1720 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1721 | static __always_inline void vmcs_write32(unsigned long field, u32 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1722 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1723 | vmcs_check32(field); |
| 1724 | __vmcs_writel(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1725 | } |
| 1726 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1727 | static __always_inline void vmcs_write64(unsigned long field, u64 value) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1728 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1729 | vmcs_check64(field); |
| 1730 | __vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1731 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1732 | asm volatile (""); |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1733 | __vmcs_writel(field+1, value >> 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1734 | #endif |
| 1735 | } |
| 1736 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1737 | static __always_inline void vmcs_writel(unsigned long field, unsigned long value) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1738 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1739 | vmcs_checkl(field); |
| 1740 | __vmcs_writel(field, value); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1741 | } |
| 1742 | |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1743 | static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1744 | { |
Paolo Bonzini | 8a86aea9 | 2015-12-03 15:56:55 +0100 | [diff] [blame] | 1745 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000, |
| 1746 | "vmcs_clear_bits does not support 64-bit fields"); |
| 1747 | __vmcs_writel(field, __vmcs_readl(field) & ~mask); |
| 1748 | } |
| 1749 | |
| 1750 | static __always_inline void vmcs_set_bits(unsigned long field, u32 mask) |
| 1751 | { |
| 1752 | BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000, |
| 1753 | "vmcs_set_bits does not support 64-bit fields"); |
| 1754 | __vmcs_writel(field, __vmcs_readl(field) | mask); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1755 | } |
| 1756 | |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 1757 | static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx) |
| 1758 | { |
| 1759 | vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS); |
| 1760 | } |
| 1761 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1762 | static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1763 | { |
| 1764 | vmcs_write32(VM_ENTRY_CONTROLS, val); |
| 1765 | vmx->vm_entry_controls_shadow = val; |
| 1766 | } |
| 1767 | |
| 1768 | static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1769 | { |
| 1770 | if (vmx->vm_entry_controls_shadow != val) |
| 1771 | vm_entry_controls_init(vmx, val); |
| 1772 | } |
| 1773 | |
| 1774 | static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx) |
| 1775 | { |
| 1776 | return vmx->vm_entry_controls_shadow; |
| 1777 | } |
| 1778 | |
| 1779 | |
| 1780 | static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1781 | { |
| 1782 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val); |
| 1783 | } |
| 1784 | |
| 1785 | static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1786 | { |
| 1787 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val); |
| 1788 | } |
| 1789 | |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 1790 | static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx) |
| 1791 | { |
| 1792 | vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS); |
| 1793 | } |
| 1794 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1795 | static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1796 | { |
| 1797 | vmcs_write32(VM_EXIT_CONTROLS, val); |
| 1798 | vmx->vm_exit_controls_shadow = val; |
| 1799 | } |
| 1800 | |
| 1801 | static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1802 | { |
| 1803 | if (vmx->vm_exit_controls_shadow != val) |
| 1804 | vm_exit_controls_init(vmx, val); |
| 1805 | } |
| 1806 | |
| 1807 | static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx) |
| 1808 | { |
| 1809 | return vmx->vm_exit_controls_shadow; |
| 1810 | } |
| 1811 | |
| 1812 | |
| 1813 | static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1814 | { |
| 1815 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val); |
| 1816 | } |
| 1817 | |
| 1818 | static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1819 | { |
| 1820 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val); |
| 1821 | } |
| 1822 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1823 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1824 | { |
| 1825 | vmx->segment_cache.bitmask = 0; |
| 1826 | } |
| 1827 | |
| 1828 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1829 | unsigned field) |
| 1830 | { |
| 1831 | bool ret; |
| 1832 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1833 | |
| 1834 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1835 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1836 | vmx->segment_cache.bitmask = 0; |
| 1837 | } |
| 1838 | ret = vmx->segment_cache.bitmask & mask; |
| 1839 | vmx->segment_cache.bitmask |= mask; |
| 1840 | return ret; |
| 1841 | } |
| 1842 | |
| 1843 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1844 | { |
| 1845 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1846 | |
| 1847 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1848 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1849 | return *p; |
| 1850 | } |
| 1851 | |
| 1852 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1853 | { |
| 1854 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1855 | |
| 1856 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1857 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1858 | return *p; |
| 1859 | } |
| 1860 | |
| 1861 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1862 | { |
| 1863 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1864 | |
| 1865 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1866 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1867 | return *p; |
| 1868 | } |
| 1869 | |
| 1870 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1871 | { |
| 1872 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1873 | |
| 1874 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1875 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1876 | return *p; |
| 1877 | } |
| 1878 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1879 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1880 | { |
| 1881 | u32 eb; |
| 1882 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1883 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 1884 | (1u << DB_VECTOR) | (1u << AC_VECTOR); |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1885 | if ((vcpu->guest_debug & |
| 1886 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1887 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1888 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1889 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1890 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1891 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1892 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1893 | |
| 1894 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1895 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1896 | * them to L1. When running L2, we will only handle the exceptions |
| 1897 | * specified above if L1 did not want them. |
| 1898 | */ |
| 1899 | if (is_guest_mode(vcpu)) |
| 1900 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1901 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1902 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1903 | } |
| 1904 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1905 | static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1906 | unsigned long entry, unsigned long exit) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1907 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1908 | vm_entry_controls_clearbit(vmx, entry); |
| 1909 | vm_exit_controls_clearbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1910 | } |
| 1911 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1912 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1913 | { |
| 1914 | unsigned i; |
| 1915 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1916 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1917 | switch (msr) { |
| 1918 | case MSR_EFER: |
| 1919 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1920 | clear_atomic_switch_msr_special(vmx, |
| 1921 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1922 | VM_EXIT_LOAD_IA32_EFER); |
| 1923 | return; |
| 1924 | } |
| 1925 | break; |
| 1926 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1927 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1928 | clear_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1929 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1930 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1931 | return; |
| 1932 | } |
| 1933 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1934 | } |
| 1935 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1936 | for (i = 0; i < m->nr; ++i) |
| 1937 | if (m->guest[i].index == msr) |
| 1938 | break; |
| 1939 | |
| 1940 | if (i == m->nr) |
| 1941 | return; |
| 1942 | --m->nr; |
| 1943 | m->guest[i] = m->guest[m->nr]; |
| 1944 | m->host[i] = m->host[m->nr]; |
| 1945 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1946 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1947 | } |
| 1948 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1949 | static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1950 | unsigned long entry, unsigned long exit, |
| 1951 | unsigned long guest_val_vmcs, unsigned long host_val_vmcs, |
| 1952 | u64 guest_val, u64 host_val) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1953 | { |
| 1954 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1955 | vmcs_write64(host_val_vmcs, host_val); |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1956 | vm_entry_controls_setbit(vmx, entry); |
| 1957 | vm_exit_controls_setbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1958 | } |
| 1959 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1960 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1961 | u64 guest_val, u64 host_val) |
| 1962 | { |
| 1963 | unsigned i; |
| 1964 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1965 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1966 | switch (msr) { |
| 1967 | case MSR_EFER: |
| 1968 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1969 | add_atomic_switch_msr_special(vmx, |
| 1970 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1971 | VM_EXIT_LOAD_IA32_EFER, |
| 1972 | GUEST_IA32_EFER, |
| 1973 | HOST_IA32_EFER, |
| 1974 | guest_val, host_val); |
| 1975 | return; |
| 1976 | } |
| 1977 | break; |
| 1978 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1979 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1980 | add_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1981 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1982 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1983 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1984 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1985 | guest_val, host_val); |
| 1986 | return; |
| 1987 | } |
| 1988 | break; |
Radim Krčmář | 7099e2e | 2016-03-04 15:08:42 +0100 | [diff] [blame] | 1989 | case MSR_IA32_PEBS_ENABLE: |
| 1990 | /* PEBS needs a quiescent period after being disabled (to write |
| 1991 | * a record). Disabling PEBS through VMX MSR swapping doesn't |
| 1992 | * provide that period, so a CPU could write host's record into |
| 1993 | * guest's memory. |
| 1994 | */ |
| 1995 | wrmsrl(MSR_IA32_PEBS_ENABLE, 0); |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1996 | } |
| 1997 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1998 | for (i = 0; i < m->nr; ++i) |
| 1999 | if (m->guest[i].index == msr) |
| 2000 | break; |
| 2001 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 2002 | if (i == NR_AUTOLOAD_MSRS) { |
Michael S. Tsirkin | 6026620 | 2013-10-31 00:34:56 +0200 | [diff] [blame] | 2003 | printk_once(KERN_WARNING "Not enough msr switch entries. " |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 2004 | "Can't add msr %x\n", msr); |
| 2005 | return; |
| 2006 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 2007 | ++m->nr; |
| 2008 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 2009 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 2010 | } |
| 2011 | |
| 2012 | m->guest[i].index = msr; |
| 2013 | m->guest[i].value = guest_val; |
| 2014 | m->host[i].index = msr; |
| 2015 | m->host[i].value = host_val; |
| 2016 | } |
| 2017 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2018 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2019 | { |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2020 | u64 guest_efer = vmx->vcpu.arch.efer; |
| 2021 | u64 ignore_bits = 0; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2022 | |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2023 | if (!enable_ept) { |
| 2024 | /* |
| 2025 | * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing |
| 2026 | * host CPUID is more efficient than testing guest CPUID |
| 2027 | * or CR4. Host SMEP is anyway a requirement for guest SMEP. |
| 2028 | */ |
| 2029 | if (boot_cpu_has(X86_FEATURE_SMEP)) |
| 2030 | guest_efer |= EFER_NX; |
| 2031 | else if (!(guest_efer & EFER_NX)) |
| 2032 | ignore_bits |= EFER_NX; |
| 2033 | } |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 2034 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2035 | /* |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2036 | * LMA and LME handled by hardware; SCE meaningless outside long mode. |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2037 | */ |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2038 | ignore_bits |= EFER_SCE; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2039 | #ifdef CONFIG_X86_64 |
| 2040 | ignore_bits |= EFER_LMA | EFER_LME; |
| 2041 | /* SCE is meaningful only in long mode on Intel */ |
| 2042 | if (guest_efer & EFER_LMA) |
| 2043 | ignore_bits &= ~(u64)EFER_SCE; |
| 2044 | #endif |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2045 | |
| 2046 | clear_atomic_switch_msr(vmx, MSR_EFER); |
Andy Lutomirski | f6577a5f | 2014-11-07 18:25:18 -0800 | [diff] [blame] | 2047 | |
| 2048 | /* |
| 2049 | * On EPT, we can't emulate NX, so we must switch EFER atomically. |
| 2050 | * On CPUs that support "load IA32_EFER", always switch EFER |
| 2051 | * atomically, since it's faster than switching it manually. |
| 2052 | */ |
| 2053 | if (cpu_has_load_ia32_efer || |
| 2054 | (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) { |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2055 | if (!(guest_efer & EFER_LMA)) |
| 2056 | guest_efer &= ~EFER_LME; |
Andy Lutomirski | 54b98bf | 2014-11-10 11:19:15 -0800 | [diff] [blame] | 2057 | if (guest_efer != host_efer) |
| 2058 | add_atomic_switch_msr(vmx, MSR_EFER, |
| 2059 | guest_efer, host_efer); |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2060 | return false; |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2061 | } else { |
| 2062 | guest_efer &= ~ignore_bits; |
| 2063 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 2064 | |
Paolo Bonzini | 844a5fe | 2016-03-08 12:13:39 +0100 | [diff] [blame] | 2065 | vmx->guest_msrs[efer_offset].data = guest_efer; |
| 2066 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
| 2067 | |
| 2068 | return true; |
| 2069 | } |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 2070 | } |
| 2071 | |
Andy Lutomirski | e28baea | 2017-02-20 08:56:11 -0800 | [diff] [blame] | 2072 | #ifdef CONFIG_X86_32 |
| 2073 | /* |
| 2074 | * On 32-bit kernels, VM exits still load the FS and GS bases from the |
| 2075 | * VMCS rather than the segment table. KVM uses this helper to figure |
| 2076 | * out the current bases to poke them into the VMCS before entry. |
| 2077 | */ |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2078 | static unsigned long segment_base(u16 selector) |
| 2079 | { |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2080 | struct desc_struct *table; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2081 | unsigned long v; |
| 2082 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2083 | if (!(selector & ~SEGMENT_RPL_MASK)) |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2084 | return 0; |
| 2085 | |
Thomas Garnier | 45fc875 | 2017-03-14 10:05:08 -0700 | [diff] [blame] | 2086 | table = get_current_gdt_ro(); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2087 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2088 | if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) { |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2089 | u16 ldt_selector = kvm_read_ldt(); |
| 2090 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2091 | if (!(ldt_selector & ~SEGMENT_RPL_MASK)) |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2092 | return 0; |
| 2093 | |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2094 | table = (struct desc_struct *)segment_base(ldt_selector); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2095 | } |
Andy Lutomirski | 8c2e41f | 2017-02-20 08:56:12 -0800 | [diff] [blame] | 2096 | v = get_desc_base(&table[selector >> 3]); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2097 | return v; |
| 2098 | } |
Andy Lutomirski | e28baea | 2017-02-20 08:56:11 -0800 | [diff] [blame] | 2099 | #endif |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 2100 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2101 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2102 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2103 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2104 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 2105 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2106 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2107 | return; |
| 2108 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2109 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2110 | /* |
| 2111 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 2112 | * allow segment selectors with cpl > 0 or ti == 1. |
| 2113 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2114 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2115 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2116 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2117 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2118 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2119 | vmx->host_state.fs_reload_needed = 0; |
| 2120 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2121 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2122 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2123 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2124 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2125 | if (!(vmx->host_state.gs_sel & 7)) |
| 2126 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2127 | else { |
| 2128 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2129 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2130 | } |
| 2131 | |
| 2132 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2133 | savesegment(ds, vmx->host_state.ds_sel); |
| 2134 | savesegment(es, vmx->host_state.es_sel); |
| 2135 | #endif |
| 2136 | |
| 2137 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2138 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 2139 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 2140 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2141 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 2142 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2143 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 2144 | |
| 2145 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2146 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 2147 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2148 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 2149 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 2150 | if (boot_cpu_has(X86_FEATURE_MPX)) |
| 2151 | rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2152 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 2153 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 2154 | vmx->guest_msrs[i].data, |
| 2155 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2156 | } |
| 2157 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2158 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2159 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2160 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2161 | return; |
| 2162 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 2163 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2164 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2165 | #ifdef CONFIG_X86_64 |
| 2166 | if (is_long_mode(&vmx->vcpu)) |
| 2167 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 2168 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 2169 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2170 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2171 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2172 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 2173 | #else |
| 2174 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2175 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2176 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 2177 | if (vmx->host_state.fs_reload_needed) |
| 2178 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2179 | #ifdef CONFIG_X86_64 |
| 2180 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 2181 | loadsegment(ds, vmx->host_state.ds_sel); |
| 2182 | loadsegment(es, vmx->host_state.es_sel); |
| 2183 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 2184 | #endif |
Andy Lutomirski | b7ffc44 | 2017-02-20 08:56:14 -0800 | [diff] [blame] | 2185 | invalidate_tss_limit(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2186 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 2187 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2188 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 2189 | if (vmx->host_state.msr_host_bndcfgs) |
| 2190 | wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Thomas Garnier | 45fc875 | 2017-03-14 10:05:08 -0700 | [diff] [blame] | 2191 | load_fixmap_gdt(raw_smp_processor_id()); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 2192 | } |
| 2193 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2194 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 2195 | { |
| 2196 | preempt_disable(); |
| 2197 | __vmx_load_host_state(vmx); |
| 2198 | preempt_enable(); |
| 2199 | } |
| 2200 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2201 | static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu) |
| 2202 | { |
| 2203 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2204 | struct pi_desc old, new; |
| 2205 | unsigned int dest; |
| 2206 | |
Paolo Bonzini | 31afb2e | 2017-06-06 12:57:06 +0200 | [diff] [blame] | 2207 | /* |
| 2208 | * In case of hot-plug or hot-unplug, we may have to undo |
| 2209 | * vmx_vcpu_pi_put even if there is no assigned device. And we |
| 2210 | * always keep PI.NDST up to date for simplicity: it makes the |
| 2211 | * code easier, and CPU migration is not a fast path. |
| 2212 | */ |
| 2213 | if (!pi_test_sn(pi_desc) && vcpu->cpu == cpu) |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2214 | return; |
| 2215 | |
Paolo Bonzini | 31afb2e | 2017-06-06 12:57:06 +0200 | [diff] [blame] | 2216 | /* |
| 2217 | * First handle the simple case where no cmpxchg is necessary; just |
| 2218 | * allow posting non-urgent interrupts. |
| 2219 | * |
| 2220 | * If the 'nv' field is POSTED_INTR_WAKEUP_VECTOR, do not change |
| 2221 | * PI.NDST: pi_post_block will do it for us and the wakeup_handler |
| 2222 | * expects the VCPU to be on the blocked_vcpu_list that matches |
| 2223 | * PI.NDST. |
| 2224 | */ |
| 2225 | if (pi_desc->nv == POSTED_INTR_WAKEUP_VECTOR || |
| 2226 | vcpu->cpu == cpu) { |
| 2227 | pi_clear_sn(pi_desc); |
| 2228 | return; |
| 2229 | } |
| 2230 | |
| 2231 | /* The full case. */ |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2232 | do { |
| 2233 | old.control = new.control = pi_desc->control; |
| 2234 | |
Paolo Bonzini | 31afb2e | 2017-06-06 12:57:06 +0200 | [diff] [blame] | 2235 | dest = cpu_physical_id(cpu); |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2236 | |
Paolo Bonzini | 31afb2e | 2017-06-06 12:57:06 +0200 | [diff] [blame] | 2237 | if (x2apic_enabled()) |
| 2238 | new.ndst = dest; |
| 2239 | else |
| 2240 | new.ndst = (dest << 8) & 0xFF00; |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2241 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2242 | new.sn = 0; |
Paolo Bonzini | c0a1666 | 2017-09-28 17:58:41 +0200 | [diff] [blame] | 2243 | } while (cmpxchg64(&pi_desc->control, old.control, |
| 2244 | new.control) != old.control); |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2245 | } |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 2246 | |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 2247 | static void decache_tsc_multiplier(struct vcpu_vmx *vmx) |
| 2248 | { |
| 2249 | vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio; |
| 2250 | vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio); |
| 2251 | } |
| 2252 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2253 | /* |
| 2254 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 2255 | * vcpu mutex is already taken. |
| 2256 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 2257 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2258 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2259 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2260 | bool already_loaded = vmx->loaded_vmcs->cpu == cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2261 | |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2262 | if (!already_loaded) { |
David Hildenbrand | fe0e80b | 2017-03-10 12:47:13 +0100 | [diff] [blame] | 2263 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2264 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2265 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 2266 | |
| 2267 | /* |
| 2268 | * Read loaded_vmcs->cpu should be before fetching |
| 2269 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 2270 | * See the comments in __loaded_vmcs_clear(). |
| 2271 | */ |
| 2272 | smp_rmb(); |
| 2273 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2274 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 2275 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2276 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2277 | local_irq_enable(); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2278 | } |
| 2279 | |
| 2280 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 2281 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 2282 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 2283 | } |
| 2284 | |
| 2285 | if (!already_loaded) { |
Andy Lutomirski | 59c58ceb | 2017-03-22 14:32:33 -0700 | [diff] [blame] | 2286 | void *gdt = get_current_gdt_ro(); |
Jim Mattson | b80c76e | 2016-07-29 18:56:53 -0700 | [diff] [blame] | 2287 | unsigned long sysenter_esp; |
| 2288 | |
| 2289 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2290 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2291 | /* |
| 2292 | * Linux uses per-cpu TSS and GDT, so set these when switching |
Andy Lutomirski | e0c2306 | 2017-02-20 08:56:10 -0800 | [diff] [blame] | 2293 | * processors. See 22.2.4. |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2294 | */ |
Andy Lutomirski | e0c2306 | 2017-02-20 08:56:10 -0800 | [diff] [blame] | 2295 | vmcs_writel(HOST_TR_BASE, |
| 2296 | (unsigned long)this_cpu_ptr(&cpu_tss)); |
Andy Lutomirski | 59c58ceb | 2017-03-22 14:32:33 -0700 | [diff] [blame] | 2297 | vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2298 | |
Andy Lutomirski | b7ffc44 | 2017-02-20 08:56:14 -0800 | [diff] [blame] | 2299 | /* |
| 2300 | * VM exits change the host TR limit to 0x67 after a VM |
| 2301 | * exit. This is okay, since 0x67 covers everything except |
| 2302 | * the IO bitmap and have have code to handle the IO bitmap |
| 2303 | * being lost after a VM exit. |
| 2304 | */ |
| 2305 | BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67); |
| 2306 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2307 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 2308 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Haozhong Zhang | ff2c3a1 | 2015-10-20 15:39:10 +0800 | [diff] [blame] | 2309 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2310 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2311 | } |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2312 | |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 2313 | /* Setup TSC multiplier */ |
| 2314 | if (kvm_has_tsc_control && |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 2315 | vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio) |
| 2316 | decache_tsc_multiplier(vmx); |
Owen Hofmann | 2680d6d | 2016-03-01 13:36:13 -0800 | [diff] [blame] | 2317 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2318 | vmx_vcpu_pi_load(vcpu, cpu); |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 2319 | vmx->host_pkru = read_pkru(); |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2320 | } |
| 2321 | |
| 2322 | static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu) |
| 2323 | { |
| 2324 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2325 | |
| 2326 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 2327 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 2328 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2329 | return; |
| 2330 | |
| 2331 | /* Set SN when the vCPU is preempted */ |
| 2332 | if (vcpu->preempted) |
| 2333 | pi_set_sn(pi_desc); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2334 | } |
| 2335 | |
| 2336 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 2337 | { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2338 | vmx_vcpu_pi_put(vcpu); |
| 2339 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2340 | __vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2341 | } |
| 2342 | |
Wanpeng Li | f244dee | 2017-07-20 01:11:54 -0700 | [diff] [blame] | 2343 | static bool emulation_required(struct kvm_vcpu *vcpu) |
| 2344 | { |
| 2345 | return emulate_invalid_guest_state && !guest_state_valid(vcpu); |
| 2346 | } |
| 2347 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2348 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 2349 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 2350 | /* |
| 2351 | * Return the cr0 value that a nested guest would read. This is a combination |
| 2352 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 2353 | * its hypervisor (cr0_read_shadow). |
| 2354 | */ |
| 2355 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 2356 | { |
| 2357 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 2358 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 2359 | } |
| 2360 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 2361 | { |
| 2362 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 2363 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 2364 | } |
| 2365 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2366 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 2367 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2368 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 2369 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2370 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 2371 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2372 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 2373 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2374 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2375 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 2376 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2377 | } |
| 2378 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2379 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2380 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2381 | } |
| 2382 | |
| 2383 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 2384 | { |
Wanpeng Li | f244dee | 2017-07-20 01:11:54 -0700 | [diff] [blame] | 2385 | unsigned long old_rflags = vmx_get_rflags(vcpu); |
| 2386 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2387 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2388 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2389 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2390 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2391 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2392 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2393 | vmcs_writel(GUEST_RFLAGS, rflags); |
Wanpeng Li | f244dee | 2017-07-20 01:11:54 -0700 | [diff] [blame] | 2394 | |
| 2395 | if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM) |
| 2396 | to_vmx(vcpu)->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2397 | } |
| 2398 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2399 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2400 | { |
| 2401 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2402 | int ret = 0; |
| 2403 | |
| 2404 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2405 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2406 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2407 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2408 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2409 | return ret; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2410 | } |
| 2411 | |
| 2412 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 2413 | { |
| 2414 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2415 | u32 interruptibility = interruptibility_old; |
| 2416 | |
| 2417 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 2418 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2419 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2420 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2421 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2422 | interruptibility |= GUEST_INTR_STATE_STI; |
| 2423 | |
| 2424 | if ((interruptibility != interruptibility_old)) |
| 2425 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 2426 | } |
| 2427 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2428 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 2429 | { |
| 2430 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2431 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2432 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2433 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2434 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2435 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2436 | /* skipping an emulated instruction also counts */ |
| 2437 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2438 | } |
| 2439 | |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2440 | static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu, |
| 2441 | unsigned long exit_qual) |
| 2442 | { |
| 2443 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2444 | unsigned int nr = vcpu->arch.exception.nr; |
| 2445 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
| 2446 | |
| 2447 | if (vcpu->arch.exception.has_error_code) { |
| 2448 | vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code; |
| 2449 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2450 | } |
| 2451 | |
| 2452 | if (kvm_exception_is_soft(nr)) |
| 2453 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2454 | else |
| 2455 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2456 | |
| 2457 | if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) && |
| 2458 | vmx_get_nmi_mask(vcpu)) |
| 2459 | intr_info |= INTR_INFO_UNBLOCK_NMI; |
| 2460 | |
| 2461 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual); |
| 2462 | } |
| 2463 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2464 | /* |
| 2465 | * KVM wants to inject page-faults which it got to the guest. This function |
| 2466 | * 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] | 2467 | */ |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 2468 | static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2469 | { |
| 2470 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Wanpeng Li | adfe20f | 2017-07-13 18:30:41 -0700 | [diff] [blame] | 2471 | unsigned int nr = vcpu->arch.exception.nr; |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2472 | |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2473 | if (nr == PF_VECTOR) { |
| 2474 | if (vcpu->arch.exception.nested_apf) { |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 2475 | *exit_qual = vcpu->arch.apf.nested_apf_token; |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2476 | return 1; |
| 2477 | } |
| 2478 | /* |
| 2479 | * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception. |
| 2480 | * The fix is to add the ancillary datum (CR2 or DR6) to structs |
| 2481 | * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6 |
| 2482 | * can be written only when inject_pending_event runs. This should be |
| 2483 | * conditional on a new capability---if the capability is disabled, |
| 2484 | * kvm_multiple_exception would write the ancillary information to |
| 2485 | * CR2 or DR6, for backwards ABI-compatibility. |
| 2486 | */ |
| 2487 | if (nested_vmx_is_page_fault_vmexit(vmcs12, |
| 2488 | vcpu->arch.exception.error_code)) { |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 2489 | *exit_qual = vcpu->arch.cr2; |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2490 | return 1; |
| 2491 | } |
| 2492 | } else { |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2493 | if (vmcs12->exception_bitmap & (1u << nr)) { |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 2494 | if (nr == DB_VECTOR) |
| 2495 | *exit_qual = vcpu->arch.dr6; |
| 2496 | else |
| 2497 | *exit_qual = 0; |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2498 | return 1; |
| 2499 | } |
Wanpeng Li | adfe20f | 2017-07-13 18:30:41 -0700 | [diff] [blame] | 2500 | } |
| 2501 | |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 2502 | return 0; |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2503 | } |
| 2504 | |
Wanpeng Li | cfcd20e | 2017-07-13 18:30:39 -0700 | [diff] [blame] | 2505 | static void vmx_queue_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2506 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2507 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Wanpeng Li | cfcd20e | 2017-07-13 18:30:39 -0700 | [diff] [blame] | 2508 | unsigned nr = vcpu->arch.exception.nr; |
| 2509 | bool has_error_code = vcpu->arch.exception.has_error_code; |
Wanpeng Li | cfcd20e | 2017-07-13 18:30:39 -0700 | [diff] [blame] | 2510 | u32 error_code = vcpu->arch.exception.error_code; |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2511 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2512 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2513 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2514 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2515 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2516 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2517 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2518 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 2519 | int inc_eip = 0; |
| 2520 | if (kvm_exception_is_soft(nr)) |
| 2521 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 2522 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 2523 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2524 | return; |
| 2525 | } |
| 2526 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2527 | if (kvm_exception_is_soft(nr)) { |
| 2528 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 2529 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2530 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2531 | } else |
| 2532 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2533 | |
| 2534 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2535 | } |
| 2536 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2537 | static bool vmx_rdtscp_supported(void) |
| 2538 | { |
| 2539 | return cpu_has_vmx_rdtscp(); |
| 2540 | } |
| 2541 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2542 | static bool vmx_invpcid_supported(void) |
| 2543 | { |
| 2544 | return cpu_has_vmx_invpcid() && enable_ept; |
| 2545 | } |
| 2546 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2547 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2548 | * Swap MSR entry in host/guest MSR entry array. |
| 2549 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2550 | 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] | 2551 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2552 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2553 | |
| 2554 | tmp = vmx->guest_msrs[to]; |
| 2555 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 2556 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2557 | } |
| 2558 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2559 | static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu) |
| 2560 | { |
| 2561 | unsigned long *msr_bitmap; |
| 2562 | |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 2563 | if (is_guest_mode(vcpu)) |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 2564 | msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap; |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 2565 | else if (cpu_has_secondary_exec_ctrls() && |
| 2566 | (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) & |
| 2567 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2568 | if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) { |
| 2569 | if (is_long_mode(vcpu)) |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 2570 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv; |
| 2571 | else |
| 2572 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv; |
| 2573 | } else { |
| 2574 | if (is_long_mode(vcpu)) |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2575 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic; |
| 2576 | else |
| 2577 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic; |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 2578 | } |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2579 | } else { |
| 2580 | if (is_long_mode(vcpu)) |
| 2581 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 2582 | else |
| 2583 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 2584 | } |
| 2585 | |
| 2586 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 2587 | } |
| 2588 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2589 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2590 | * Set up the vmcs to automatically save and restore system |
| 2591 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 2592 | * mode, as fiddling with msrs is very expensive. |
| 2593 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2594 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2595 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2596 | int save_nmsrs, index; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2597 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2598 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2599 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2600 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2601 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2602 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2603 | move_msr_up(vmx, index, save_nmsrs++); |
| 2604 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2605 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2606 | move_msr_up(vmx, index, save_nmsrs++); |
| 2607 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2608 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2609 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2610 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2611 | if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2612 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2613 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2614 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2615 | * if efer.sce is enabled. |
| 2616 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2617 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2618 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2619 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2620 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2621 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2622 | index = __find_msr_index(vmx, MSR_EFER); |
| 2623 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2624 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2625 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2626 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 2627 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2628 | if (cpu_has_vmx_msr_bitmap()) |
| 2629 | vmx_set_msr_bitmap(&vmx->vcpu); |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2630 | } |
| 2631 | |
| 2632 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2633 | * reads and returns guest's timestamp counter "register" |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2634 | * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset |
| 2635 | * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2636 | */ |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2637 | static u64 guest_read_tsc(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2638 | { |
| 2639 | u64 host_tsc, tsc_offset; |
| 2640 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2641 | host_tsc = rdtsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2642 | tsc_offset = vmcs_read64(TSC_OFFSET); |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 2643 | return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2644 | } |
| 2645 | |
| 2646 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2647 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2648 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2649 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2650 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2651 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2652 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2653 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 2654 | * to the spec, this should set L1's TSC; The offset that L1 |
| 2655 | * set for L2 remains unchanged, and still needs to be added |
| 2656 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2657 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2658 | struct vmcs12 *vmcs12; |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2659 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 2660 | vmcs12 = get_vmcs12(vcpu); |
| 2661 | vmcs_write64(TSC_OFFSET, offset + |
| 2662 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 2663 | vmcs12->tsc_offset : 0)); |
| 2664 | } else { |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2665 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, |
| 2666 | vmcs_read64(TSC_OFFSET), offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2667 | vmcs_write64(TSC_OFFSET, offset); |
| 2668 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2669 | } |
| 2670 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2671 | /* |
| 2672 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 2673 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 2674 | * all guests if the "nested" module option is off, and can also be disabled |
| 2675 | * for a single guest by disabling its VMX cpuid bit. |
| 2676 | */ |
| 2677 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 2678 | { |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2679 | return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX); |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2680 | } |
| 2681 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2682 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2683 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 2684 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 2685 | * The same values should also be used to verify that vmcs12 control fields are |
| 2686 | * valid during nested entry from L1 to L2. |
| 2687 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 2688 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 2689 | * bit in the high half is on if the corresponding bit in the control field |
| 2690 | * may be on. See also vmx_control_verify(). |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2691 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2692 | static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx) |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2693 | { |
| 2694 | /* |
| 2695 | * Note that as a general rule, the high half of the MSRs (bits in |
| 2696 | * the control fields which may be 1) should be initialized by the |
| 2697 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2698 | * can be supported) and the list of features we want to expose - |
| 2699 | * because they are known to be properly supported in our code. |
| 2700 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2701 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2702 | * reason is that if one of these bits is necessary, it will appear |
| 2703 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2704 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 2705 | * nested_vmx_exit_reflected() will not pass related exits to L1. |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2706 | * These rules have exceptions below. |
| 2707 | */ |
| 2708 | |
| 2709 | /* pin-based controls */ |
Jan Kiszka | eabeaac | 2013-03-13 11:30:50 +0100 | [diff] [blame] | 2710 | rdmsr(MSR_IA32_VMX_PINBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2711 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2712 | vmx->nested.nested_vmx_pinbased_ctls_high); |
| 2713 | vmx->nested.nested_vmx_pinbased_ctls_low |= |
| 2714 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2715 | vmx->nested.nested_vmx_pinbased_ctls_high &= |
| 2716 | PIN_BASED_EXT_INTR_MASK | |
| 2717 | PIN_BASED_NMI_EXITING | |
| 2718 | PIN_BASED_VIRTUAL_NMIS; |
| 2719 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2720 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 2721 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 2722 | if (kvm_vcpu_apicv_active(&vmx->vcpu)) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 2723 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2724 | PIN_BASED_POSTED_INTR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2725 | |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2726 | /* exit controls */ |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2727 | rdmsr(MSR_IA32_VMX_EXIT_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2728 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2729 | vmx->nested.nested_vmx_exit_ctls_high); |
| 2730 | vmx->nested.nested_vmx_exit_ctls_low = |
| 2731 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2732 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2733 | vmx->nested.nested_vmx_exit_ctls_high &= |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2734 | #ifdef CONFIG_X86_64 |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2735 | VM_EXIT_HOST_ADDR_SPACE_SIZE | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2736 | #endif |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2737 | VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2738 | vmx->nested.nested_vmx_exit_ctls_high |= |
| 2739 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2740 | VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2741 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; |
| 2742 | |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 2743 | if (kvm_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2744 | vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2745 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2746 | /* We support free control of debug control saving. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2747 | vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2748 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2749 | /* entry controls */ |
| 2750 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2751 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2752 | vmx->nested.nested_vmx_entry_ctls_high); |
| 2753 | vmx->nested.nested_vmx_entry_ctls_low = |
| 2754 | VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2755 | vmx->nested.nested_vmx_entry_ctls_high &= |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2756 | #ifdef CONFIG_X86_64 |
| 2757 | VM_ENTRY_IA32E_MODE | |
| 2758 | #endif |
| 2759 | VM_ENTRY_LOAD_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2760 | vmx->nested.nested_vmx_entry_ctls_high |= |
| 2761 | (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 2762 | if (kvm_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2763 | vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2764 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2765 | /* We support free control of debug control loading. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2766 | vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2767 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2768 | /* cpu-based controls */ |
| 2769 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2770 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2771 | vmx->nested.nested_vmx_procbased_ctls_high); |
| 2772 | vmx->nested.nested_vmx_procbased_ctls_low = |
| 2773 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2774 | vmx->nested.nested_vmx_procbased_ctls_high &= |
Jan Kiszka | a294c9b | 2013-10-23 17:43:09 +0100 | [diff] [blame] | 2775 | CPU_BASED_VIRTUAL_INTR_PENDING | |
| 2776 | CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2777 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2778 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2779 | CPU_BASED_CR3_STORE_EXITING | |
| 2780 | #ifdef CONFIG_X86_64 |
| 2781 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2782 | #endif |
| 2783 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 2784 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG | |
| 2785 | CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING | |
| 2786 | CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING | |
| 2787 | CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2788 | /* |
| 2789 | * We can allow some features even when not supported by the |
| 2790 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2791 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2792 | * without MSR bitmaps. |
| 2793 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2794 | vmx->nested.nested_vmx_procbased_ctls_high |= |
| 2795 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 560b7ee | 2014-06-16 13:59:42 +0200 | [diff] [blame] | 2796 | CPU_BASED_USE_MSR_BITMAPS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2797 | |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2798 | /* We support free control of CR3 access interception. */ |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 2799 | vmx->nested.nested_vmx_procbased_ctls_low &= |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2800 | ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING); |
| 2801 | |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 2802 | /* |
| 2803 | * secondary cpu-based controls. Do not include those that |
| 2804 | * depend on CPUID bits, they are added later by vmx_cpuid_update. |
| 2805 | */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2806 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2807 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2808 | vmx->nested.nested_vmx_secondary_ctls_high); |
| 2809 | vmx->nested.nested_vmx_secondary_ctls_low = 0; |
| 2810 | vmx->nested.nested_vmx_secondary_ctls_high &= |
Jan Kiszka | d6851fb | 2013-02-23 22:34:39 +0100 | [diff] [blame] | 2811 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Paolo Bonzini | 1b07304 | 2016-10-25 16:06:30 +0200 | [diff] [blame] | 2812 | SECONDARY_EXEC_DESC | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 2813 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 2814 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 2815 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Paolo Bonzini | 3db1348 | 2017-08-24 14:48:03 +0200 | [diff] [blame] | 2816 | SECONDARY_EXEC_WBINVD_EXITING; |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2817 | |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2818 | if (enable_ept) { |
| 2819 | /* nested EPT: emulate EPT also to L1 */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2820 | vmx->nested.nested_vmx_secondary_ctls_high |= |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2821 | SECONDARY_EXEC_ENABLE_EPT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2822 | vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT | |
Paolo Bonzini | 7db7426 | 2017-03-08 10:49:19 +0100 | [diff] [blame] | 2823 | VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT; |
Bandan Das | 02120c4 | 2016-07-12 18:18:52 -0400 | [diff] [blame] | 2824 | if (cpu_has_vmx_ept_execute_only()) |
| 2825 | vmx->nested.nested_vmx_ept_caps |= |
| 2826 | VMX_EPT_EXECUTE_ONLY_BIT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2827 | vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept; |
Bandan Das | 45e1181 | 2016-08-02 16:32:36 -0400 | [diff] [blame] | 2828 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT | |
Paolo Bonzini | 7db7426 | 2017-03-08 10:49:19 +0100 | [diff] [blame] | 2829 | VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT | |
| 2830 | VMX_EPT_1GB_PAGE_BIT; |
Bandan Das | 03efce6 | 2017-05-05 15:25:15 -0400 | [diff] [blame] | 2831 | if (enable_ept_ad_bits) { |
| 2832 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2833 | SECONDARY_EXEC_ENABLE_PML; |
Dan Carpenter | 7461fbc | 2017-05-18 10:41:15 +0300 | [diff] [blame] | 2834 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT; |
Bandan Das | 03efce6 | 2017-05-05 15:25:15 -0400 | [diff] [blame] | 2835 | } |
David Hildenbrand | 1c13bff | 2017-08-24 20:51:33 +0200 | [diff] [blame] | 2836 | } |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2837 | |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 2838 | if (cpu_has_vmx_vmfunc()) { |
| 2839 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2840 | SECONDARY_EXEC_ENABLE_VMFUNC; |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 2841 | /* |
| 2842 | * Advertise EPTP switching unconditionally |
| 2843 | * since we emulate it |
| 2844 | */ |
Wanpeng Li | 575b3a2 | 2017-10-19 07:00:34 +0800 | [diff] [blame] | 2845 | if (enable_ept) |
| 2846 | vmx->nested.nested_vmx_vmfunc_controls = |
| 2847 | VMX_VMFUNC_EPTP_SWITCHING; |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 2848 | } |
| 2849 | |
Paolo Bonzini | ef697a7 | 2016-03-18 16:58:38 +0100 | [diff] [blame] | 2850 | /* |
| 2851 | * Old versions of KVM use the single-context version without |
| 2852 | * checking for support, so declare that it is supported even |
| 2853 | * though it is treated as global context. The alternative is |
| 2854 | * not failing the single-context invvpid, and it is worse. |
| 2855 | */ |
Wanpeng Li | 63cb6d5 | 2017-03-20 21:18:53 -0700 | [diff] [blame] | 2856 | if (enable_vpid) { |
| 2857 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2858 | SECONDARY_EXEC_ENABLE_VPID; |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 2859 | vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 2860 | VMX_VPID_EXTENT_SUPPORTED_MASK; |
David Hildenbrand | 1c13bff | 2017-08-24 20:51:33 +0200 | [diff] [blame] | 2861 | } |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 2862 | |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2863 | if (enable_unrestricted_guest) |
| 2864 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2865 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 2866 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2867 | /* miscellaneous data */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2868 | rdmsr(MSR_IA32_VMX_MISC, |
| 2869 | vmx->nested.nested_vmx_misc_low, |
| 2870 | vmx->nested.nested_vmx_misc_high); |
| 2871 | vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA; |
| 2872 | vmx->nested.nested_vmx_misc_low |= |
| 2873 | VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2874 | VMX_MISC_ACTIVITY_HLT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2875 | vmx->nested.nested_vmx_misc_high = 0; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2876 | |
| 2877 | /* |
| 2878 | * This MSR reports some information about VMX support. We |
| 2879 | * should return information about the VMX we emulate for the |
| 2880 | * guest, and the VMCS structure we give it - not about the |
| 2881 | * VMX support of the underlying hardware. |
| 2882 | */ |
| 2883 | vmx->nested.nested_vmx_basic = |
| 2884 | VMCS12_REVISION | |
| 2885 | VMX_BASIC_TRUE_CTLS | |
| 2886 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2887 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2888 | |
| 2889 | if (cpu_has_vmx_basic_inout()) |
| 2890 | vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT; |
| 2891 | |
| 2892 | /* |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 2893 | * These MSRs specify bits which the guest must keep fixed on |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2894 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2895 | * We picked the standard core2 setting. |
| 2896 | */ |
| 2897 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2898 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2899 | vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON; |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2900 | vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON; |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 2901 | |
| 2902 | /* These MSRs specify bits which the guest must keep fixed off. */ |
| 2903 | rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1); |
| 2904 | rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1); |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2905 | |
| 2906 | /* highest index: VMX_PREEMPTION_TIMER_VALUE */ |
| 2907 | vmx->nested.nested_vmx_vmcs_enum = 0x2e; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2908 | } |
| 2909 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 2910 | /* |
| 2911 | * if fixed0[i] == 1: val[i] must be 1 |
| 2912 | * if fixed1[i] == 0: val[i] must be 0 |
| 2913 | */ |
| 2914 | static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1) |
| 2915 | { |
| 2916 | return ((val & fixed1) | fixed0) == val; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2917 | } |
| 2918 | |
| 2919 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2920 | { |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 2921 | return fixed_bits_valid(control, low, high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2922 | } |
| 2923 | |
| 2924 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2925 | { |
| 2926 | return low | ((u64)high << 32); |
| 2927 | } |
| 2928 | |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 2929 | static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask) |
| 2930 | { |
| 2931 | superset &= mask; |
| 2932 | subset &= mask; |
| 2933 | |
| 2934 | return (superset | subset) == superset; |
| 2935 | } |
| 2936 | |
| 2937 | static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data) |
| 2938 | { |
| 2939 | const u64 feature_and_reserved = |
| 2940 | /* feature (except bit 48; see below) */ |
| 2941 | BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) | |
| 2942 | /* reserved */ |
| 2943 | BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56); |
| 2944 | u64 vmx_basic = vmx->nested.nested_vmx_basic; |
| 2945 | |
| 2946 | if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved)) |
| 2947 | return -EINVAL; |
| 2948 | |
| 2949 | /* |
| 2950 | * KVM does not emulate a version of VMX that constrains physical |
| 2951 | * addresses of VMX structures (e.g. VMCS) to 32-bits. |
| 2952 | */ |
| 2953 | if (data & BIT_ULL(48)) |
| 2954 | return -EINVAL; |
| 2955 | |
| 2956 | if (vmx_basic_vmcs_revision_id(vmx_basic) != |
| 2957 | vmx_basic_vmcs_revision_id(data)) |
| 2958 | return -EINVAL; |
| 2959 | |
| 2960 | if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data)) |
| 2961 | return -EINVAL; |
| 2962 | |
| 2963 | vmx->nested.nested_vmx_basic = data; |
| 2964 | return 0; |
| 2965 | } |
| 2966 | |
| 2967 | static int |
| 2968 | vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) |
| 2969 | { |
| 2970 | u64 supported; |
| 2971 | u32 *lowp, *highp; |
| 2972 | |
| 2973 | switch (msr_index) { |
| 2974 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2975 | lowp = &vmx->nested.nested_vmx_pinbased_ctls_low; |
| 2976 | highp = &vmx->nested.nested_vmx_pinbased_ctls_high; |
| 2977 | break; |
| 2978 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 2979 | lowp = &vmx->nested.nested_vmx_procbased_ctls_low; |
| 2980 | highp = &vmx->nested.nested_vmx_procbased_ctls_high; |
| 2981 | break; |
| 2982 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 2983 | lowp = &vmx->nested.nested_vmx_exit_ctls_low; |
| 2984 | highp = &vmx->nested.nested_vmx_exit_ctls_high; |
| 2985 | break; |
| 2986 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 2987 | lowp = &vmx->nested.nested_vmx_entry_ctls_low; |
| 2988 | highp = &vmx->nested.nested_vmx_entry_ctls_high; |
| 2989 | break; |
| 2990 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 2991 | lowp = &vmx->nested.nested_vmx_secondary_ctls_low; |
| 2992 | highp = &vmx->nested.nested_vmx_secondary_ctls_high; |
| 2993 | break; |
| 2994 | default: |
| 2995 | BUG(); |
| 2996 | } |
| 2997 | |
| 2998 | supported = vmx_control_msr(*lowp, *highp); |
| 2999 | |
| 3000 | /* Check must-be-1 bits are still 1. */ |
| 3001 | if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0))) |
| 3002 | return -EINVAL; |
| 3003 | |
| 3004 | /* Check must-be-0 bits are still 0. */ |
| 3005 | if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32))) |
| 3006 | return -EINVAL; |
| 3007 | |
| 3008 | *lowp = data; |
| 3009 | *highp = data >> 32; |
| 3010 | return 0; |
| 3011 | } |
| 3012 | |
| 3013 | static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data) |
| 3014 | { |
| 3015 | const u64 feature_and_reserved_bits = |
| 3016 | /* feature */ |
| 3017 | BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) | |
| 3018 | BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) | |
| 3019 | /* reserved */ |
| 3020 | GENMASK_ULL(13, 9) | BIT_ULL(31); |
| 3021 | u64 vmx_misc; |
| 3022 | |
| 3023 | vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low, |
| 3024 | vmx->nested.nested_vmx_misc_high); |
| 3025 | |
| 3026 | if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits)) |
| 3027 | return -EINVAL; |
| 3028 | |
| 3029 | if ((vmx->nested.nested_vmx_pinbased_ctls_high & |
| 3030 | PIN_BASED_VMX_PREEMPTION_TIMER) && |
| 3031 | vmx_misc_preemption_timer_rate(data) != |
| 3032 | vmx_misc_preemption_timer_rate(vmx_misc)) |
| 3033 | return -EINVAL; |
| 3034 | |
| 3035 | if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc)) |
| 3036 | return -EINVAL; |
| 3037 | |
| 3038 | if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc)) |
| 3039 | return -EINVAL; |
| 3040 | |
| 3041 | if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc)) |
| 3042 | return -EINVAL; |
| 3043 | |
| 3044 | vmx->nested.nested_vmx_misc_low = data; |
| 3045 | vmx->nested.nested_vmx_misc_high = data >> 32; |
| 3046 | return 0; |
| 3047 | } |
| 3048 | |
| 3049 | static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data) |
| 3050 | { |
| 3051 | u64 vmx_ept_vpid_cap; |
| 3052 | |
| 3053 | vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps, |
| 3054 | vmx->nested.nested_vmx_vpid_caps); |
| 3055 | |
| 3056 | /* Every bit is either reserved or a feature bit. */ |
| 3057 | if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL)) |
| 3058 | return -EINVAL; |
| 3059 | |
| 3060 | vmx->nested.nested_vmx_ept_caps = data; |
| 3061 | vmx->nested.nested_vmx_vpid_caps = data >> 32; |
| 3062 | return 0; |
| 3063 | } |
| 3064 | |
| 3065 | static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data) |
| 3066 | { |
| 3067 | u64 *msr; |
| 3068 | |
| 3069 | switch (msr_index) { |
| 3070 | case MSR_IA32_VMX_CR0_FIXED0: |
| 3071 | msr = &vmx->nested.nested_vmx_cr0_fixed0; |
| 3072 | break; |
| 3073 | case MSR_IA32_VMX_CR4_FIXED0: |
| 3074 | msr = &vmx->nested.nested_vmx_cr4_fixed0; |
| 3075 | break; |
| 3076 | default: |
| 3077 | BUG(); |
| 3078 | } |
| 3079 | |
| 3080 | /* |
| 3081 | * 1 bits (which indicates bits which "must-be-1" during VMX operation) |
| 3082 | * must be 1 in the restored value. |
| 3083 | */ |
| 3084 | if (!is_bitwise_subset(data, *msr, -1ULL)) |
| 3085 | return -EINVAL; |
| 3086 | |
| 3087 | *msr = data; |
| 3088 | return 0; |
| 3089 | } |
| 3090 | |
| 3091 | /* |
| 3092 | * Called when userspace is restoring VMX MSRs. |
| 3093 | * |
| 3094 | * Returns 0 on success, non-0 otherwise. |
| 3095 | */ |
| 3096 | static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data) |
| 3097 | { |
| 3098 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3099 | |
| 3100 | switch (msr_index) { |
| 3101 | case MSR_IA32_VMX_BASIC: |
| 3102 | return vmx_restore_vmx_basic(vmx, data); |
| 3103 | case MSR_IA32_VMX_PINBASED_CTLS: |
| 3104 | case MSR_IA32_VMX_PROCBASED_CTLS: |
| 3105 | case MSR_IA32_VMX_EXIT_CTLS: |
| 3106 | case MSR_IA32_VMX_ENTRY_CTLS: |
| 3107 | /* |
| 3108 | * The "non-true" VMX capability MSRs are generated from the |
| 3109 | * "true" MSRs, so we do not support restoring them directly. |
| 3110 | * |
| 3111 | * If userspace wants to emulate VMX_BASIC[55]=0, userspace |
| 3112 | * should restore the "true" MSRs with the must-be-1 bits |
| 3113 | * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND |
| 3114 | * DEFAULT SETTINGS". |
| 3115 | */ |
| 3116 | return -EINVAL; |
| 3117 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 3118 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 3119 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 3120 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 3121 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
| 3122 | return vmx_restore_control_msr(vmx, msr_index, data); |
| 3123 | case MSR_IA32_VMX_MISC: |
| 3124 | return vmx_restore_vmx_misc(vmx, data); |
| 3125 | case MSR_IA32_VMX_CR0_FIXED0: |
| 3126 | case MSR_IA32_VMX_CR4_FIXED0: |
| 3127 | return vmx_restore_fixed0_msr(vmx, msr_index, data); |
| 3128 | case MSR_IA32_VMX_CR0_FIXED1: |
| 3129 | case MSR_IA32_VMX_CR4_FIXED1: |
| 3130 | /* |
| 3131 | * These MSRs are generated based on the vCPU's CPUID, so we |
| 3132 | * do not support restoring them directly. |
| 3133 | */ |
| 3134 | return -EINVAL; |
| 3135 | case MSR_IA32_VMX_EPT_VPID_CAP: |
| 3136 | return vmx_restore_vmx_ept_vpid_cap(vmx, data); |
| 3137 | case MSR_IA32_VMX_VMCS_ENUM: |
| 3138 | vmx->nested.nested_vmx_vmcs_enum = data; |
| 3139 | return 0; |
| 3140 | default: |
| 3141 | /* |
| 3142 | * The rest of the VMX capability MSRs do not support restore. |
| 3143 | */ |
| 3144 | return -EINVAL; |
| 3145 | } |
| 3146 | } |
| 3147 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3148 | /* Returns 0 on success, non-0 otherwise. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3149 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 3150 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3151 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3152 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3153 | switch (msr_index) { |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3154 | case MSR_IA32_VMX_BASIC: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3155 | *pdata = vmx->nested.nested_vmx_basic; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3156 | break; |
| 3157 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 3158 | case MSR_IA32_VMX_PINBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3159 | *pdata = vmx_control_msr( |
| 3160 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 3161 | vmx->nested.nested_vmx_pinbased_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3162 | if (msr_index == MSR_IA32_VMX_PINBASED_CTLS) |
| 3163 | *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3164 | break; |
| 3165 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
| 3166 | case MSR_IA32_VMX_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3167 | *pdata = vmx_control_msr( |
| 3168 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 3169 | vmx->nested.nested_vmx_procbased_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3170 | if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS) |
| 3171 | *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3172 | break; |
| 3173 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
| 3174 | case MSR_IA32_VMX_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3175 | *pdata = vmx_control_msr( |
| 3176 | vmx->nested.nested_vmx_exit_ctls_low, |
| 3177 | vmx->nested.nested_vmx_exit_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3178 | if (msr_index == MSR_IA32_VMX_EXIT_CTLS) |
| 3179 | *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3180 | break; |
| 3181 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
| 3182 | case MSR_IA32_VMX_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3183 | *pdata = vmx_control_msr( |
| 3184 | vmx->nested.nested_vmx_entry_ctls_low, |
| 3185 | vmx->nested.nested_vmx_entry_ctls_high); |
David Matlack | 0115f9c | 2016-11-29 18:14:06 -0800 | [diff] [blame] | 3186 | if (msr_index == MSR_IA32_VMX_ENTRY_CTLS) |
| 3187 | *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3188 | break; |
| 3189 | case MSR_IA32_VMX_MISC: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3190 | *pdata = vmx_control_msr( |
| 3191 | vmx->nested.nested_vmx_misc_low, |
| 3192 | vmx->nested.nested_vmx_misc_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3193 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3194 | case MSR_IA32_VMX_CR0_FIXED0: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3195 | *pdata = vmx->nested.nested_vmx_cr0_fixed0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3196 | break; |
| 3197 | case MSR_IA32_VMX_CR0_FIXED1: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3198 | *pdata = vmx->nested.nested_vmx_cr0_fixed1; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3199 | break; |
| 3200 | case MSR_IA32_VMX_CR4_FIXED0: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3201 | *pdata = vmx->nested.nested_vmx_cr4_fixed0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3202 | break; |
| 3203 | case MSR_IA32_VMX_CR4_FIXED1: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3204 | *pdata = vmx->nested.nested_vmx_cr4_fixed1; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3205 | break; |
| 3206 | case MSR_IA32_VMX_VMCS_ENUM: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3207 | *pdata = vmx->nested.nested_vmx_vmcs_enum; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3208 | break; |
| 3209 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 3210 | *pdata = vmx_control_msr( |
| 3211 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 3212 | vmx->nested.nested_vmx_secondary_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3213 | break; |
| 3214 | case MSR_IA32_VMX_EPT_VPID_CAP: |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 3215 | *pdata = vmx->nested.nested_vmx_ept_caps | |
| 3216 | ((u64)vmx->nested.nested_vmx_vpid_caps << 32); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3217 | break; |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 3218 | case MSR_IA32_VMX_VMFUNC: |
| 3219 | *pdata = vmx->nested.nested_vmx_vmfunc_controls; |
| 3220 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3221 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3222 | return 1; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 3223 | } |
| 3224 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3225 | return 0; |
| 3226 | } |
| 3227 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 3228 | static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu, |
| 3229 | uint64_t val) |
| 3230 | { |
| 3231 | uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits; |
| 3232 | |
| 3233 | return !(val & ~valid_bits); |
| 3234 | } |
| 3235 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 3236 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3237 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 3238 | * Returns 0 on success, non-0 otherwise. |
| 3239 | * Assumes vcpu_load() was already called. |
| 3240 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3241 | 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] | 3242 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3243 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3244 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3245 | switch (msr_info->index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3246 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3247 | case MSR_FS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3248 | msr_info->data = vmcs_readl(GUEST_FS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3249 | break; |
| 3250 | case MSR_GS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3251 | msr_info->data = vmcs_readl(GUEST_GS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3252 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3253 | case MSR_KERNEL_GS_BASE: |
| 3254 | vmx_load_host_state(to_vmx(vcpu)); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3255 | msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3256 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3257 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3258 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3259 | return kvm_get_msr_common(vcpu, msr_info); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 3260 | case MSR_IA32_TSC: |
Haozhong Zhang | be7b263 | 2015-10-20 15:39:11 +0800 | [diff] [blame] | 3261 | msr_info->data = guest_read_tsc(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3262 | break; |
| 3263 | case MSR_IA32_SYSENTER_CS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3264 | msr_info->data = vmcs_read32(GUEST_SYSENTER_CS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3265 | break; |
| 3266 | case MSR_IA32_SYSENTER_EIP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3267 | msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3268 | break; |
| 3269 | case MSR_IA32_SYSENTER_ESP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3270 | msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3271 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3272 | case MSR_IA32_BNDCFGS: |
Haozhong Zhang | 691bd43 | 2017-07-04 10:27:41 +0800 | [diff] [blame] | 3273 | if (!kvm_mpx_supported() || |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3274 | (!msr_info->host_initiated && |
| 3275 | !guest_cpuid_has(vcpu, X86_FEATURE_MPX))) |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 3276 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3277 | msr_info->data = vmcs_read64(GUEST_BNDCFGS); |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3278 | break; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3279 | case MSR_IA32_MCG_EXT_CTL: |
| 3280 | if (!msr_info->host_initiated && |
| 3281 | !(to_vmx(vcpu)->msr_ia32_feature_control & |
| 3282 | FEATURE_CONTROL_LMCE)) |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3283 | return 1; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3284 | msr_info->data = vcpu->arch.mcg_ext_ctl; |
| 3285 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3286 | case MSR_IA32_FEATURE_CONTROL: |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3287 | msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3288 | break; |
| 3289 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 3290 | if (!nested_vmx_allowed(vcpu)) |
| 3291 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3292 | return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3293 | case MSR_IA32_XSS: |
| 3294 | if (!vmx_xsaves_supported()) |
| 3295 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3296 | msr_info->data = vcpu->arch.ia32_xss; |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3297 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3298 | case MSR_TSC_AUX: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3299 | if (!msr_info->host_initiated && |
| 3300 | !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3301 | return 1; |
| 3302 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3303 | default: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3304 | msr = find_msr_entry(to_vmx(vcpu), msr_info->index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3305 | if (msr) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3306 | msr_info->data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3307 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3308 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3309 | return kvm_get_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3310 | } |
| 3311 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3312 | return 0; |
| 3313 | } |
| 3314 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3315 | static void vmx_leave_nested(struct kvm_vcpu *vcpu); |
| 3316 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3317 | /* |
| 3318 | * Writes msr value into into the appropriate "register". |
| 3319 | * Returns 0 on success, non-0 otherwise. |
| 3320 | * Assumes vcpu_load() was already called. |
| 3321 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3322 | 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] | 3323 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 3324 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3325 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3326 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3327 | u32 msr_index = msr_info->index; |
| 3328 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3329 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3330 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3331 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3332 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3333 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 3334 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3335 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3336 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3337 | vmcs_writel(GUEST_FS_BASE, data); |
| 3338 | break; |
| 3339 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3340 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3341 | vmcs_writel(GUEST_GS_BASE, data); |
| 3342 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3343 | case MSR_KERNEL_GS_BASE: |
| 3344 | vmx_load_host_state(vmx); |
| 3345 | vmx->msr_guest_kernel_gs_base = data; |
| 3346 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3347 | #endif |
| 3348 | case MSR_IA32_SYSENTER_CS: |
| 3349 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 3350 | break; |
| 3351 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 3352 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3353 | break; |
| 3354 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 3355 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3356 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 3357 | case MSR_IA32_BNDCFGS: |
Haozhong Zhang | 691bd43 | 2017-07-04 10:27:41 +0800 | [diff] [blame] | 3358 | if (!kvm_mpx_supported() || |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3359 | (!msr_info->host_initiated && |
| 3360 | !guest_cpuid_has(vcpu, X86_FEATURE_MPX))) |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 3361 | return 1; |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 3362 | if (is_noncanonical_address(data & PAGE_MASK, vcpu) || |
Jim Mattson | 4531662 | 2017-05-23 11:52:54 -0700 | [diff] [blame] | 3363 | (data & MSR_IA32_BNDCFGS_RSVD)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3364 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3365 | vmcs_write64(GUEST_BNDCFGS, data); |
| 3366 | break; |
| 3367 | case MSR_IA32_TSC: |
| 3368 | kvm_write_tsc(vcpu, msr_info); |
| 3369 | break; |
| 3370 | case MSR_IA32_CR_PAT: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3371 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Amit | 4566654 | 2014-09-18 22:39:44 +0300 | [diff] [blame] | 3372 | if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data)) |
| 3373 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 3374 | vmcs_write64(GUEST_IA32_PAT, data); |
| 3375 | vcpu->arch.pat = data; |
| 3376 | break; |
| 3377 | } |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3378 | ret = kvm_set_msr_common(vcpu, msr_info); |
| 3379 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 3380 | case MSR_IA32_TSC_ADJUST: |
| 3381 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3382 | break; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3383 | case MSR_IA32_MCG_EXT_CTL: |
| 3384 | if ((!msr_info->host_initiated && |
| 3385 | !(to_vmx(vcpu)->msr_ia32_feature_control & |
| 3386 | FEATURE_CONTROL_LMCE)) || |
| 3387 | (data & ~MCG_EXT_CTL_LMCE_EN)) |
| 3388 | return 1; |
| 3389 | vcpu->arch.mcg_ext_ctl = data; |
| 3390 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3391 | case MSR_IA32_FEATURE_CONTROL: |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 3392 | if (!vmx_feature_control_msr_valid(vcpu, data) || |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3393 | (to_vmx(vcpu)->msr_ia32_feature_control & |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3394 | FEATURE_CONTROL_LOCKED && !msr_info->host_initiated)) |
| 3395 | return 1; |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 3396 | vmx->msr_ia32_feature_control = data; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 3397 | if (msr_info->host_initiated && data == 0) |
| 3398 | vmx_leave_nested(vcpu); |
| 3399 | break; |
| 3400 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
David Matlack | 62cc6b9d | 2016-11-29 18:14:07 -0800 | [diff] [blame] | 3401 | if (!msr_info->host_initiated) |
| 3402 | return 1; /* they are read-only */ |
| 3403 | if (!nested_vmx_allowed(vcpu)) |
| 3404 | return 1; |
| 3405 | return vmx_set_vmx_msr(vcpu, msr_index, data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3406 | case MSR_IA32_XSS: |
| 3407 | if (!vmx_xsaves_supported()) |
| 3408 | return 1; |
| 3409 | /* |
| 3410 | * The only supported bit as of Skylake is bit 8, but |
| 3411 | * it is not supported on KVM. |
| 3412 | */ |
| 3413 | if (data != 0) |
| 3414 | return 1; |
| 3415 | vcpu->arch.ia32_xss = data; |
| 3416 | if (vcpu->arch.ia32_xss != host_xss) |
| 3417 | add_atomic_switch_msr(vmx, MSR_IA32_XSS, |
| 3418 | vcpu->arch.ia32_xss, host_xss); |
| 3419 | else |
| 3420 | clear_atomic_switch_msr(vmx, MSR_IA32_XSS); |
| 3421 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3422 | case MSR_TSC_AUX: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3423 | if (!msr_info->host_initiated && |
| 3424 | !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3425 | return 1; |
| 3426 | /* Check reserved bit, higher 32 bits should be zero */ |
| 3427 | if ((data >> 32) != 0) |
| 3428 | return 1; |
| 3429 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3430 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 3431 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3432 | if (msr) { |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3433 | u64 old_msr_data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3434 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3435 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 3436 | preempt_disable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3437 | ret = kvm_set_shared_msr(msr->index, msr->data, |
| 3438 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3439 | preempt_enable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 3440 | if (ret) |
| 3441 | msr->data = old_msr_data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 3442 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 3443 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3444 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 3445 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3446 | } |
| 3447 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 3448 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3449 | } |
| 3450 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3451 | 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] | 3452 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3453 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 3454 | switch (reg) { |
| 3455 | case VCPU_REGS_RSP: |
| 3456 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 3457 | break; |
| 3458 | case VCPU_REGS_RIP: |
| 3459 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 3460 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3461 | case VCPU_EXREG_PDPTR: |
| 3462 | if (enable_ept) |
| 3463 | ept_save_pdptrs(vcpu); |
| 3464 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 3465 | default: |
| 3466 | break; |
| 3467 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3468 | } |
| 3469 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3470 | static __init int cpu_has_kvm_support(void) |
| 3471 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 3472 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3473 | } |
| 3474 | |
| 3475 | static __init int vmx_disabled_by_bios(void) |
| 3476 | { |
| 3477 | u64 msr; |
| 3478 | |
| 3479 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3480 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3481 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3482 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 3483 | && tboot_enabled()) |
| 3484 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3485 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3486 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3487 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 3488 | && !tboot_enabled()) { |
| 3489 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3490 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3491 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 3492 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 3493 | /* launched w/o TXT and VMX disabled */ |
| 3494 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 3495 | && !tboot_enabled()) |
| 3496 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3497 | } |
| 3498 | |
| 3499 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3500 | } |
| 3501 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 3502 | static void kvm_cpu_vmxon(u64 addr) |
| 3503 | { |
David Hildenbrand | fe0e80b | 2017-03-10 12:47:13 +0100 | [diff] [blame] | 3504 | cr4_set_bits(X86_CR4_VMXE); |
Alexander Shishkin | 1c5ac21 | 2016-03-29 17:43:10 +0300 | [diff] [blame] | 3505 | intel_pt_handle_vmx(1); |
| 3506 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 3507 | asm volatile (ASM_VMX_VMXON_RAX |
| 3508 | : : "a"(&addr), "m"(addr) |
| 3509 | : "memory", "cc"); |
| 3510 | } |
| 3511 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3512 | static int hardware_enable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3513 | { |
| 3514 | int cpu = raw_smp_processor_id(); |
| 3515 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3516 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3517 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 3518 | if (cr4_read_shadow() & X86_CR4_VMXE) |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3519 | return -EBUSY; |
| 3520 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3521 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 3522 | INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu)); |
| 3523 | spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 3524 | |
| 3525 | /* |
| 3526 | * Now we can enable the vmclear operation in kdump |
| 3527 | * since the loaded_vmcss_on_cpu list on this cpu |
| 3528 | * has been initialized. |
| 3529 | * |
| 3530 | * Though the cpu is not in VMX operation now, there |
| 3531 | * is no problem to enable the vmclear operation |
| 3532 | * for the loaded_vmcss_on_cpu list is empty! |
| 3533 | */ |
| 3534 | crash_enable_local_vmclear(cpu); |
| 3535 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3536 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3537 | |
| 3538 | test_bits = FEATURE_CONTROL_LOCKED; |
| 3539 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 3540 | if (tboot_enabled()) |
| 3541 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 3542 | |
| 3543 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3544 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3545 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 3546 | } |
David Hildenbrand | fe0e80b | 2017-03-10 12:47:13 +0100 | [diff] [blame] | 3547 | kvm_cpu_vmxon(phys_addr); |
David Hildenbrand | fdf288b | 2017-08-24 20:51:29 +0200 | [diff] [blame] | 3548 | if (enable_ept) |
| 3549 | ept_sync_global(); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3550 | |
| 3551 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3552 | } |
| 3553 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3554 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3555 | { |
| 3556 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3557 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3558 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3559 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 3560 | loaded_vmcss_on_cpu_link) |
| 3561 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3562 | } |
| 3563 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3564 | |
| 3565 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 3566 | * tricks. |
| 3567 | */ |
| 3568 | static void kvm_cpu_vmxoff(void) |
| 3569 | { |
| 3570 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Alexander Shishkin | 1c5ac21 | 2016-03-29 17:43:10 +0300 | [diff] [blame] | 3571 | |
| 3572 | intel_pt_handle_vmx(0); |
David Hildenbrand | fe0e80b | 2017-03-10 12:47:13 +0100 | [diff] [blame] | 3573 | cr4_clear_bits(X86_CR4_VMXE); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3574 | } |
| 3575 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3576 | static void hardware_disable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3577 | { |
David Hildenbrand | fe0e80b | 2017-03-10 12:47:13 +0100 | [diff] [blame] | 3578 | vmclear_local_loaded_vmcss(); |
| 3579 | kvm_cpu_vmxoff(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3580 | } |
| 3581 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3582 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3583 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3584 | { |
| 3585 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3586 | u32 ctl = ctl_min | ctl_opt; |
| 3587 | |
| 3588 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3589 | |
| 3590 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 3591 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 3592 | |
| 3593 | /* Ensure minimum (required) set of control bits are supported. */ |
| 3594 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3595 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3596 | |
| 3597 | *result = ctl; |
| 3598 | return 0; |
| 3599 | } |
| 3600 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3601 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 3602 | { |
| 3603 | u32 vmx_msr_low, vmx_msr_high; |
| 3604 | |
| 3605 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3606 | return vmx_msr_high & ctl; |
| 3607 | } |
| 3608 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3609 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3610 | { |
| 3611 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3612 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3613 | u32 _pin_based_exec_control = 0; |
| 3614 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3615 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3616 | u32 _vmexit_control = 0; |
| 3617 | u32 _vmentry_control = 0; |
| 3618 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 3619 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3620 | #ifdef CONFIG_X86_64 |
| 3621 | CPU_BASED_CR8_LOAD_EXITING | |
| 3622 | CPU_BASED_CR8_STORE_EXITING | |
| 3623 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3624 | CPU_BASED_CR3_LOAD_EXITING | |
| 3625 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3626 | CPU_BASED_USE_IO_BITMAPS | |
| 3627 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3628 | CPU_BASED_USE_TSC_OFFSETING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 3629 | CPU_BASED_INVLPG_EXITING | |
| 3630 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3631 | |
Michael S. Tsirkin | 668fffa | 2017-04-21 12:27:17 +0200 | [diff] [blame] | 3632 | if (!kvm_mwait_in_guest()) |
| 3633 | min |= CPU_BASED_MWAIT_EXITING | |
| 3634 | CPU_BASED_MONITOR_EXITING; |
| 3635 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3636 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3637 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3638 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3639 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 3640 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3641 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3642 | #ifdef CONFIG_X86_64 |
| 3643 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3644 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 3645 | ~CPU_BASED_CR8_STORE_EXITING; |
| 3646 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3647 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3648 | min2 = 0; |
| 3649 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3650 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3651 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3652 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3653 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3654 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3655 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3656 | SECONDARY_EXEC_RDTSCP | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3657 | SECONDARY_EXEC_ENABLE_INVPCID | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3658 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 3659 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3660 | SECONDARY_EXEC_SHADOW_VMCS | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 3661 | SECONDARY_EXEC_XSAVES | |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 3662 | SECONDARY_EXEC_RDSEED_EXITING | |
| 3663 | SECONDARY_EXEC_RDRAND_EXITING | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 3664 | SECONDARY_EXEC_ENABLE_PML | |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 3665 | SECONDARY_EXEC_TSC_SCALING | |
| 3666 | SECONDARY_EXEC_ENABLE_VMFUNC; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3667 | if (adjust_vmx_controls(min2, opt2, |
| 3668 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3669 | &_cpu_based_2nd_exec_control) < 0) |
| 3670 | return -EIO; |
| 3671 | } |
| 3672 | #ifndef CONFIG_X86_64 |
| 3673 | if (!(_cpu_based_2nd_exec_control & |
| 3674 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 3675 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3676 | #endif |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3677 | |
| 3678 | if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3679 | _cpu_based_2nd_exec_control &= ~( |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3680 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3681 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 3682 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3683 | |
Wanpeng Li | 61f1dd9 | 2017-10-18 16:02:19 -0700 | [diff] [blame^] | 3684 | rdmsr_safe(MSR_IA32_VMX_EPT_VPID_CAP, |
| 3685 | &vmx_capability.ept, &vmx_capability.vpid); |
| 3686 | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3687 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3688 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 3689 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 3690 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3691 | CPU_BASED_CR3_STORE_EXITING | |
| 3692 | CPU_BASED_INVLPG_EXITING); |
Wanpeng Li | 61f1dd9 | 2017-10-18 16:02:19 -0700 | [diff] [blame^] | 3693 | } else if (vmx_capability.ept) { |
| 3694 | vmx_capability.ept = 0; |
| 3695 | pr_warn_once("EPT CAP should not exist if not support " |
| 3696 | "1-setting enable EPT VM-execution control\n"); |
| 3697 | } |
| 3698 | if (!(_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_VPID) && |
| 3699 | vmx_capability.vpid) { |
| 3700 | vmx_capability.vpid = 0; |
| 3701 | pr_warn_once("VPID CAP should not exist if not support " |
| 3702 | "1-setting enable VPID VM-execution control\n"); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3703 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3704 | |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3705 | min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3706 | #ifdef CONFIG_X86_64 |
| 3707 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 3708 | #endif |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 3709 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT | |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3710 | VM_EXIT_CLEAR_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3711 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 3712 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3713 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3714 | |
Paolo Bonzini | 2c82878 | 2017-03-27 14:37:28 +0200 | [diff] [blame] | 3715 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING | |
| 3716 | PIN_BASED_VIRTUAL_NMIS; |
| 3717 | opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3718 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 3719 | &_pin_based_exec_control) < 0) |
| 3720 | return -EIO; |
| 3721 | |
Paolo Bonzini | 1c17c3e | 2016-07-08 11:53:38 +0200 | [diff] [blame] | 3722 | if (cpu_has_broken_vmx_preemption_timer()) |
| 3723 | _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3724 | if (!(_cpu_based_2nd_exec_control & |
Paolo Bonzini | 91fa0f8 | 2016-06-15 20:55:08 +0200 | [diff] [blame] | 3725 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3726 | _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR; |
| 3727 | |
Paolo Bonzini | c845f9c | 2014-02-21 10:55:44 +0100 | [diff] [blame] | 3728 | min = VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3729 | opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3730 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 3731 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3732 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3733 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3734 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3735 | |
| 3736 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 3737 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3738 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3739 | |
| 3740 | #ifdef CONFIG_X86_64 |
| 3741 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 3742 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3743 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3744 | #endif |
| 3745 | |
| 3746 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 3747 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3748 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3749 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3750 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
Paolo Bonzini | 16cb025 | 2016-09-05 15:57:00 +0200 | [diff] [blame] | 3751 | vmcs_conf->order = get_order(vmcs_conf->size); |
Jan Dakinevich | 9ac7e3e | 2016-09-04 21:23:15 +0300 | [diff] [blame] | 3752 | vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3753 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3754 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3755 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 3756 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3757 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3758 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 3759 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3760 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3761 | cpu_has_load_ia32_efer = |
| 3762 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3763 | VM_ENTRY_LOAD_IA32_EFER) |
| 3764 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3765 | VM_EXIT_LOAD_IA32_EFER); |
| 3766 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3767 | cpu_has_load_perf_global_ctrl = |
| 3768 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3769 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 3770 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3771 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 3772 | |
| 3773 | /* |
| 3774 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 3775 | * 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] | 3776 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 3777 | * |
| 3778 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 3779 | * |
| 3780 | * AAK155 (model 26) |
| 3781 | * AAP115 (model 30) |
| 3782 | * AAT100 (model 37) |
| 3783 | * BC86,AAY89,BD102 (model 44) |
| 3784 | * BA97 (model 46) |
| 3785 | * |
| 3786 | */ |
| 3787 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 3788 | switch (boot_cpu_data.x86_model) { |
| 3789 | case 26: |
| 3790 | case 30: |
| 3791 | case 37: |
| 3792 | case 44: |
| 3793 | case 46: |
| 3794 | cpu_has_load_perf_global_ctrl = false; |
| 3795 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 3796 | "does not work properly. Using workaround\n"); |
| 3797 | break; |
| 3798 | default: |
| 3799 | break; |
| 3800 | } |
| 3801 | } |
| 3802 | |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 3803 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3804 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 3805 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3806 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3807 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3808 | |
| 3809 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 3810 | { |
| 3811 | int node = cpu_to_node(cpu); |
| 3812 | struct page *pages; |
| 3813 | struct vmcs *vmcs; |
| 3814 | |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 3815 | pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3816 | if (!pages) |
| 3817 | return NULL; |
| 3818 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3819 | memset(vmcs, 0, vmcs_config.size); |
| 3820 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3821 | return vmcs; |
| 3822 | } |
| 3823 | |
| 3824 | static struct vmcs *alloc_vmcs(void) |
| 3825 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 3826 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3827 | } |
| 3828 | |
| 3829 | static void free_vmcs(struct vmcs *vmcs) |
| 3830 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3831 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3832 | } |
| 3833 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3834 | /* |
| 3835 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 3836 | */ |
| 3837 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 3838 | { |
| 3839 | if (!loaded_vmcs->vmcs) |
| 3840 | return; |
| 3841 | loaded_vmcs_clear(loaded_vmcs); |
| 3842 | free_vmcs(loaded_vmcs->vmcs); |
| 3843 | loaded_vmcs->vmcs = NULL; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 3844 | WARN_ON(loaded_vmcs->shadow_vmcs != NULL); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3845 | } |
| 3846 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 3847 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3848 | { |
| 3849 | int cpu; |
| 3850 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3851 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3852 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3853 | per_cpu(vmxarea, cpu) = NULL; |
| 3854 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3855 | } |
| 3856 | |
Jim Mattson | 85fd514 | 2017-07-07 12:51:41 -0700 | [diff] [blame] | 3857 | enum vmcs_field_type { |
| 3858 | VMCS_FIELD_TYPE_U16 = 0, |
| 3859 | VMCS_FIELD_TYPE_U64 = 1, |
| 3860 | VMCS_FIELD_TYPE_U32 = 2, |
| 3861 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 3862 | }; |
| 3863 | |
| 3864 | static inline int vmcs_field_type(unsigned long field) |
| 3865 | { |
| 3866 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 3867 | return VMCS_FIELD_TYPE_U32; |
| 3868 | return (field >> 13) & 0x3 ; |
| 3869 | } |
| 3870 | |
| 3871 | static inline int vmcs_field_readonly(unsigned long field) |
| 3872 | { |
| 3873 | return (((field >> 10) & 0x3) == 1); |
| 3874 | } |
| 3875 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3876 | static void init_vmcs_shadow_fields(void) |
| 3877 | { |
| 3878 | int i, j; |
| 3879 | |
| 3880 | /* No checks for read only fields yet */ |
| 3881 | |
| 3882 | for (i = j = 0; i < max_shadow_read_write_fields; i++) { |
| 3883 | switch (shadow_read_write_fields[i]) { |
| 3884 | case GUEST_BNDCFGS: |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 3885 | if (!kvm_mpx_supported()) |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3886 | continue; |
| 3887 | break; |
| 3888 | default: |
| 3889 | break; |
| 3890 | } |
| 3891 | |
| 3892 | if (j < i) |
| 3893 | shadow_read_write_fields[j] = |
| 3894 | shadow_read_write_fields[i]; |
| 3895 | j++; |
| 3896 | } |
| 3897 | max_shadow_read_write_fields = j; |
| 3898 | |
| 3899 | /* shadowed fields guest access without vmexit */ |
| 3900 | for (i = 0; i < max_shadow_read_write_fields; i++) { |
Jim Mattson | 85fd514 | 2017-07-07 12:51:41 -0700 | [diff] [blame] | 3901 | unsigned long field = shadow_read_write_fields[i]; |
| 3902 | |
| 3903 | clear_bit(field, vmx_vmwrite_bitmap); |
| 3904 | clear_bit(field, vmx_vmread_bitmap); |
| 3905 | if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) { |
| 3906 | clear_bit(field + 1, vmx_vmwrite_bitmap); |
| 3907 | clear_bit(field + 1, vmx_vmread_bitmap); |
| 3908 | } |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3909 | } |
Jim Mattson | 85fd514 | 2017-07-07 12:51:41 -0700 | [diff] [blame] | 3910 | for (i = 0; i < max_shadow_read_only_fields; i++) { |
| 3911 | unsigned long field = shadow_read_only_fields[i]; |
| 3912 | |
| 3913 | clear_bit(field, vmx_vmread_bitmap); |
| 3914 | if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) |
| 3915 | clear_bit(field + 1, vmx_vmread_bitmap); |
| 3916 | } |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3917 | } |
| 3918 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3919 | static __init int alloc_kvm_area(void) |
| 3920 | { |
| 3921 | int cpu; |
| 3922 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3923 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3924 | struct vmcs *vmcs; |
| 3925 | |
| 3926 | vmcs = alloc_vmcs_cpu(cpu); |
| 3927 | if (!vmcs) { |
| 3928 | free_kvm_area(); |
| 3929 | return -ENOMEM; |
| 3930 | } |
| 3931 | |
| 3932 | per_cpu(vmxarea, cpu) = vmcs; |
| 3933 | } |
| 3934 | return 0; |
| 3935 | } |
| 3936 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3937 | static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg, |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3938 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3939 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3940 | if (!emulate_invalid_guest_state) { |
| 3941 | /* |
| 3942 | * CS and SS RPL should be equal during guest entry according |
| 3943 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 3944 | * is in the middle of the transition from real mode to |
| 3945 | * protected mode it is safe to assume that RPL 0 is a good |
| 3946 | * default value. |
| 3947 | */ |
| 3948 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3949 | save->selector &= ~SEGMENT_RPL_MASK; |
| 3950 | save->dpl = save->selector & SEGMENT_RPL_MASK; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3951 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3952 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3953 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3954 | } |
| 3955 | |
| 3956 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 3957 | { |
| 3958 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3959 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3960 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3961 | /* |
| 3962 | * Update real mode segment cache. It may be not up-to-date if sement |
| 3963 | * register was written while vcpu was in a guest mode. |
| 3964 | */ |
| 3965 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3966 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3967 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3968 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 3969 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3970 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 3971 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3972 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3973 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3974 | vmx_segment_cache_clear(vmx); |
| 3975 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3976 | 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] | 3977 | |
| 3978 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3979 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 3980 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3981 | vmcs_writel(GUEST_RFLAGS, flags); |
| 3982 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3983 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 3984 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3985 | |
| 3986 | update_exception_bitmap(vcpu); |
| 3987 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3988 | fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3989 | fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3990 | fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3991 | fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3992 | fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 3993 | 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] | 3994 | } |
| 3995 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3996 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3997 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3998 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3999 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4000 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4001 | var.dpl = 0x3; |
| 4002 | if (seg == VCPU_SREG_CS) |
| 4003 | var.type = 0x3; |
| 4004 | |
| 4005 | if (!emulate_invalid_guest_state) { |
| 4006 | var.selector = var.base >> 4; |
| 4007 | var.base = var.base & 0xffff0; |
| 4008 | var.limit = 0xffff; |
| 4009 | var.g = 0; |
| 4010 | var.db = 0; |
| 4011 | var.present = 1; |
| 4012 | var.s = 1; |
| 4013 | var.l = 0; |
| 4014 | var.unusable = 0; |
| 4015 | var.type = 0x3; |
| 4016 | var.avl = 0; |
| 4017 | if (save->base & 0xf) |
| 4018 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 4019 | "paragraph aligned when entering " |
| 4020 | "protected mode (seg=%d)", seg); |
| 4021 | } |
| 4022 | |
| 4023 | vmcs_write16(sf->selector, var.selector); |
Chao Peng | 96794e4 | 2017-02-21 03:50:01 -0500 | [diff] [blame] | 4024 | vmcs_writel(sf->base, var.base); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4025 | vmcs_write32(sf->limit, var.limit); |
| 4026 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4027 | } |
| 4028 | |
| 4029 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 4030 | { |
| 4031 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 4032 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4033 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 4034 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 4035 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 4036 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 4037 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 4038 | 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] | 4039 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 4040 | 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] | 4041 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4042 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4043 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 4044 | /* |
| 4045 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4046 | * vcpu. Warn the user that an update is overdue. |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 4047 | */ |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4048 | if (!vcpu->kvm->arch.tss_addr) |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 4049 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 4050 | "called before entering vcpu\n"); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 4051 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4052 | vmx_segment_cache_clear(vmx); |
| 4053 | |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4054 | vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4055 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4056 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 4057 | |
| 4058 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 4059 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4060 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 4061 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4062 | |
| 4063 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 4064 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4065 | update_exception_bitmap(vcpu); |
| 4066 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4067 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 4068 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 4069 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 4070 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 4071 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 4072 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 4073 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 4074 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4075 | } |
| 4076 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 4077 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 4078 | { |
| 4079 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 4080 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 4081 | |
| 4082 | if (!msr) |
| 4083 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 4084 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 4085 | /* |
| 4086 | * Force kernel_gs_base reloading before EFER changes, as control |
| 4087 | * of this msr depends on is_long_mode(). |
| 4088 | */ |
| 4089 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 4090 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 4091 | if (efer & EFER_LMA) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4092 | vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 4093 | msr->data = efer; |
| 4094 | } else { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4095 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 4096 | |
| 4097 | msr->data = efer & ~EFER_LME; |
| 4098 | } |
| 4099 | setup_msrs(vmx); |
| 4100 | } |
| 4101 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4102 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4103 | |
| 4104 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 4105 | { |
| 4106 | u32 guest_tr_ar; |
| 4107 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4108 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 4109 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4110 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4111 | 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] | 4112 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 4113 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4114 | vmcs_write32(GUEST_TR_AR_BYTES, |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4115 | (guest_tr_ar & ~VMX_AR_TYPE_MASK) |
| 4116 | | VMX_AR_TYPE_BUSY_64_TSS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4117 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 4118 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4119 | } |
| 4120 | |
| 4121 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 4122 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4123 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 4124 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4125 | } |
| 4126 | |
| 4127 | #endif |
| 4128 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4129 | static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4130 | { |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 4131 | if (enable_ept) { |
| 4132 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 4133 | return; |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 4134 | ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa)); |
Jim Mattson | f0b98c0 | 2017-03-15 07:56:11 -0700 | [diff] [blame] | 4135 | } else { |
| 4136 | vpid_sync_context(vpid); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 4137 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4138 | } |
| 4139 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4140 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 4141 | { |
| 4142 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid); |
| 4143 | } |
| 4144 | |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 4145 | static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu) |
| 4146 | { |
| 4147 | if (enable_ept) |
| 4148 | vmx_flush_tlb(vcpu); |
| 4149 | } |
| 4150 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 4151 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 4152 | { |
| 4153 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 4154 | |
| 4155 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 4156 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 4157 | } |
| 4158 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 4159 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 4160 | { |
| 4161 | if (enable_ept && is_paging(vcpu)) |
| 4162 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 4163 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 4164 | } |
| 4165 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 4166 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 4167 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4168 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 4169 | |
| 4170 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 4171 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 4172 | } |
| 4173 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4174 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 4175 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4176 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 4177 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 4178 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 4179 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 4180 | return; |
| 4181 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4182 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4183 | vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]); |
| 4184 | vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]); |
| 4185 | vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]); |
| 4186 | vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4187 | } |
| 4188 | } |
| 4189 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4190 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 4191 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4192 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 4193 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4194 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 4195 | mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 4196 | mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 4197 | mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 4198 | mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4199 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 4200 | |
| 4201 | __set_bit(VCPU_EXREG_PDPTR, |
| 4202 | (unsigned long *)&vcpu->arch.regs_avail); |
| 4203 | __set_bit(VCPU_EXREG_PDPTR, |
| 4204 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 4205 | } |
| 4206 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 4207 | static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4208 | { |
| 4209 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0; |
| 4210 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1; |
| 4211 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 4212 | |
| 4213 | if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high & |
| 4214 | SECONDARY_EXEC_UNRESTRICTED_GUEST && |
| 4215 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST)) |
| 4216 | fixed0 &= ~(X86_CR0_PE | X86_CR0_PG); |
| 4217 | |
| 4218 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4219 | } |
| 4220 | |
| 4221 | static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4222 | { |
| 4223 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0; |
| 4224 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1; |
| 4225 | |
| 4226 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4227 | } |
| 4228 | |
| 4229 | static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 4230 | { |
| 4231 | u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0; |
| 4232 | u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1; |
| 4233 | |
| 4234 | return fixed_bits_valid(val, fixed0, fixed1); |
| 4235 | } |
| 4236 | |
| 4237 | /* No difference in the restrictions on guest and host CR4 in VMX operation. */ |
| 4238 | #define nested_guest_cr4_valid nested_cr4_valid |
| 4239 | #define nested_host_cr4_valid nested_cr4_valid |
| 4240 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4241 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4242 | |
| 4243 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 4244 | unsigned long cr0, |
| 4245 | struct kvm_vcpu *vcpu) |
| 4246 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 4247 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 4248 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4249 | if (!(cr0 & X86_CR0_PG)) { |
| 4250 | /* From paging/starting to nonpaging */ |
| 4251 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 4252 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4253 | (CPU_BASED_CR3_LOAD_EXITING | |
| 4254 | CPU_BASED_CR3_STORE_EXITING)); |
| 4255 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4256 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4257 | } else if (!is_paging(vcpu)) { |
| 4258 | /* From nonpaging to paging */ |
| 4259 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 4260 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4261 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 4262 | CPU_BASED_CR3_STORE_EXITING)); |
| 4263 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 4264 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4265 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 4266 | |
| 4267 | if (!(cr0 & X86_CR0_WP)) |
| 4268 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4269 | } |
| 4270 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4271 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 4272 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4273 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4274 | unsigned long hw_cr0; |
| 4275 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4276 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4277 | if (enable_unrestricted_guest) |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4278 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4279 | else { |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 4280 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4281 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4282 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
| 4283 | enter_pmode(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4284 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 4285 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
| 4286 | enter_rmode(vcpu); |
| 4287 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4288 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4289 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 4290 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 4291 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4292 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 4293 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4294 | exit_lmode(vcpu); |
| 4295 | } |
| 4296 | #endif |
| 4297 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4298 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4299 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 4300 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4301 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4302 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4303 | vcpu->arch.cr0 = cr0; |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 4304 | |
| 4305 | /* depends on vcpu->arch.cr0 to be set to a new value */ |
| 4306 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4307 | } |
| 4308 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4309 | static int get_ept_level(struct kvm_vcpu *vcpu) |
| 4310 | { |
| 4311 | if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48)) |
| 4312 | return 5; |
| 4313 | return 4; |
| 4314 | } |
| 4315 | |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 4316 | static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4317 | { |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4318 | u64 eptp = VMX_EPTP_MT_WB; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4319 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4320 | eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4321 | |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 4322 | if (enable_ept_ad_bits && |
| 4323 | (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu))) |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 4324 | eptp |= VMX_EPTP_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4325 | eptp |= (root_hpa & PAGE_MASK); |
| 4326 | |
| 4327 | return eptp; |
| 4328 | } |
| 4329 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4330 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 4331 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4332 | unsigned long guest_cr3; |
| 4333 | u64 eptp; |
| 4334 | |
| 4335 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4336 | if (enable_ept) { |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 4337 | eptp = construct_eptp(vcpu, cr3); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4338 | vmcs_write64(EPT_POINTER, eptp); |
Jan Kiszka | 59ab5a8 | 2013-08-08 16:26:29 +0200 | [diff] [blame] | 4339 | if (is_paging(vcpu) || is_guest_mode(vcpu)) |
| 4340 | guest_cr3 = kvm_read_cr3(vcpu); |
| 4341 | else |
| 4342 | guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 4343 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4344 | } |
| 4345 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4346 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4347 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4348 | } |
| 4349 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4350 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4351 | { |
Ben Serebrin | 085e68e | 2015-04-16 11:58:05 -0700 | [diff] [blame] | 4352 | /* |
| 4353 | * Pass through host's Machine Check Enable value to hw_cr4, which |
| 4354 | * is in force while we are in guest mode. Do not let guests control |
| 4355 | * this bit, even if host CR4.MCE == 0. |
| 4356 | */ |
| 4357 | unsigned long hw_cr4 = |
| 4358 | (cr4_read_shadow() & X86_CR4_MCE) | |
| 4359 | (cr4 & ~X86_CR4_MCE) | |
| 4360 | (to_vmx(vcpu)->rmode.vm86_active ? |
| 4361 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4362 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4363 | if (cr4 & X86_CR4_VMXE) { |
| 4364 | /* |
| 4365 | * To use VMXON (and later other VMX instructions), a guest |
| 4366 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 4367 | * So basically the check on whether to allow nested VMX |
| 4368 | * is here. |
| 4369 | */ |
| 4370 | if (!nested_vmx_allowed(vcpu)) |
| 4371 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 4372 | } |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 4373 | |
| 4374 | if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4)) |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4375 | return 1; |
| 4376 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4377 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 4378 | if (enable_ept) { |
| 4379 | if (!is_paging(vcpu)) { |
| 4380 | hw_cr4 &= ~X86_CR4_PAE; |
| 4381 | hw_cr4 |= X86_CR4_PSE; |
| 4382 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 4383 | hw_cr4 &= ~X86_CR4_PAE; |
| 4384 | } |
| 4385 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4386 | |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4387 | if (!enable_unrestricted_guest && !is_paging(vcpu)) |
| 4388 | /* |
Huaitong Han | ddba262 | 2016-03-22 16:51:15 +0800 | [diff] [blame] | 4389 | * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in |
| 4390 | * hardware. To emulate this behavior, SMEP/SMAP/PKU needs |
| 4391 | * to be manually disabled when guest switches to non-paging |
| 4392 | * mode. |
| 4393 | * |
| 4394 | * If !enable_unrestricted_guest, the CPU is always running |
| 4395 | * with CR0.PG=1 and CR4 needs to be modified. |
| 4396 | * If enable_unrestricted_guest, the CPU automatically |
| 4397 | * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0. |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4398 | */ |
Huaitong Han | ddba262 | 2016-03-22 16:51:15 +0800 | [diff] [blame] | 4399 | hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE); |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 4400 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 4401 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 4402 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 4403 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4404 | } |
| 4405 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4406 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 4407 | struct kvm_segment *var, int seg) |
| 4408 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4409 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4410 | u32 ar; |
| 4411 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 4412 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 4413 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4414 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4415 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 4416 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 4417 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 4418 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 4419 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4420 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4421 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 4422 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 4423 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 4424 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 4425 | var->unusable = (ar >> 16) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4426 | var->type = ar & 15; |
| 4427 | var->s = (ar >> 4) & 1; |
| 4428 | var->dpl = (ar >> 5) & 3; |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 4429 | /* |
| 4430 | * Some userspaces do not preserve unusable property. Since usable |
| 4431 | * segment has to be present according to VMX spec we can use present |
| 4432 | * property to amend userspace bug by making unusable segment always |
| 4433 | * nonpresent. vmx_segment_access_rights() already marks nonpresent |
| 4434 | * segment as unusable. |
| 4435 | */ |
| 4436 | var->present = !var->unusable; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4437 | var->avl = (ar >> 12) & 1; |
| 4438 | var->l = (ar >> 13) & 1; |
| 4439 | var->db = (ar >> 14) & 1; |
| 4440 | var->g = (ar >> 15) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4441 | } |
| 4442 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4443 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 4444 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4445 | struct kvm_segment s; |
| 4446 | |
| 4447 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 4448 | vmx_get_segment(vcpu, &s, seg); |
| 4449 | return s.base; |
| 4450 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4451 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 4452 | } |
| 4453 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 4454 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 4455 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 4456 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4457 | |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 4458 | if (unlikely(vmx->rmode.vm86_active)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 4459 | return 0; |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 4460 | else { |
| 4461 | int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4462 | return VMX_AR_DPL(ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 4463 | } |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 4464 | } |
| 4465 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4466 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4467 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4468 | u32 ar; |
| 4469 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 4470 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4471 | ar = 1 << 16; |
| 4472 | else { |
| 4473 | ar = var->type & 15; |
| 4474 | ar |= (var->s & 1) << 4; |
| 4475 | ar |= (var->dpl & 3) << 5; |
| 4476 | ar |= (var->present & 1) << 7; |
| 4477 | ar |= (var->avl & 1) << 12; |
| 4478 | ar |= (var->l & 1) << 13; |
| 4479 | ar |= (var->db & 1) << 14; |
| 4480 | ar |= (var->g & 1) << 15; |
| 4481 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4482 | |
| 4483 | return ar; |
| 4484 | } |
| 4485 | |
| 4486 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 4487 | struct kvm_segment *var, int seg) |
| 4488 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4489 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4490 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4491 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4492 | vmx_segment_cache_clear(vmx); |
| 4493 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 4494 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 4495 | vmx->rmode.segs[seg] = *var; |
| 4496 | if (seg == VCPU_SREG_TR) |
| 4497 | vmcs_write16(sf->selector, var->selector); |
| 4498 | else if (var->s) |
| 4499 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4500 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4501 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 4502 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 4503 | vmcs_writel(sf->base, var->base); |
| 4504 | vmcs_write32(sf->limit, var->limit); |
| 4505 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4506 | |
| 4507 | /* |
| 4508 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 4509 | * qemu binaries. |
| 4510 | * IA32 arch specifies that at the time of processor reset the |
| 4511 | * "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] | 4512 | * 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] | 4513 | * state vmexit when "unrestricted guest" mode is turned on. |
| 4514 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 4515 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 4516 | * kvm hack. |
| 4517 | */ |
| 4518 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 4519 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4520 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 4521 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 4522 | |
| 4523 | out: |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 4524 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4525 | } |
| 4526 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4527 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 4528 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4529 | 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] | 4530 | |
| 4531 | *db = (ar >> 14) & 1; |
| 4532 | *l = (ar >> 13) & 1; |
| 4533 | } |
| 4534 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4535 | 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] | 4536 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4537 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 4538 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4539 | } |
| 4540 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4541 | 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] | 4542 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4543 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 4544 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4545 | } |
| 4546 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4547 | 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] | 4548 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4549 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 4550 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4551 | } |
| 4552 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4553 | 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] | 4554 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 4555 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 4556 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4557 | } |
| 4558 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4559 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4560 | { |
| 4561 | struct kvm_segment var; |
| 4562 | u32 ar; |
| 4563 | |
| 4564 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 4565 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 4566 | if (seg == VCPU_SREG_CS) |
| 4567 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4568 | ar = vmx_segment_access_rights(&var); |
| 4569 | |
| 4570 | if (var.base != (var.selector << 4)) |
| 4571 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 4572 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4573 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 4574 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4575 | return false; |
| 4576 | |
| 4577 | return true; |
| 4578 | } |
| 4579 | |
| 4580 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 4581 | { |
| 4582 | struct kvm_segment cs; |
| 4583 | unsigned int cs_rpl; |
| 4584 | |
| 4585 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4586 | cs_rpl = cs.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4587 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4588 | if (cs.unusable) |
| 4589 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4590 | 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] | 4591 | return false; |
| 4592 | if (!cs.s) |
| 4593 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4594 | if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4595 | if (cs.dpl > cs_rpl) |
| 4596 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4597 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4598 | if (cs.dpl != cs_rpl) |
| 4599 | return false; |
| 4600 | } |
| 4601 | if (!cs.present) |
| 4602 | return false; |
| 4603 | |
| 4604 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 4605 | return true; |
| 4606 | } |
| 4607 | |
| 4608 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 4609 | { |
| 4610 | struct kvm_segment ss; |
| 4611 | unsigned int ss_rpl; |
| 4612 | |
| 4613 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4614 | ss_rpl = ss.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4615 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4616 | if (ss.unusable) |
| 4617 | return true; |
| 4618 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4619 | return false; |
| 4620 | if (!ss.s) |
| 4621 | return false; |
| 4622 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 4623 | return false; |
| 4624 | if (!ss.present) |
| 4625 | return false; |
| 4626 | |
| 4627 | return true; |
| 4628 | } |
| 4629 | |
| 4630 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4631 | { |
| 4632 | struct kvm_segment var; |
| 4633 | unsigned int rpl; |
| 4634 | |
| 4635 | vmx_get_segment(vcpu, &var, seg); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4636 | rpl = var.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4637 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4638 | if (var.unusable) |
| 4639 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4640 | if (!var.s) |
| 4641 | return false; |
| 4642 | if (!var.present) |
| 4643 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4644 | 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] | 4645 | if (var.dpl < rpl) /* DPL < RPL */ |
| 4646 | return false; |
| 4647 | } |
| 4648 | |
| 4649 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 4650 | * rights flags |
| 4651 | */ |
| 4652 | return true; |
| 4653 | } |
| 4654 | |
| 4655 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 4656 | { |
| 4657 | struct kvm_segment tr; |
| 4658 | |
| 4659 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 4660 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4661 | if (tr.unusable) |
| 4662 | return false; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4663 | if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4664 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4665 | 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] | 4666 | return false; |
| 4667 | if (!tr.present) |
| 4668 | return false; |
| 4669 | |
| 4670 | return true; |
| 4671 | } |
| 4672 | |
| 4673 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 4674 | { |
| 4675 | struct kvm_segment ldtr; |
| 4676 | |
| 4677 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 4678 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4679 | if (ldtr.unusable) |
| 4680 | return true; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4681 | if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4682 | return false; |
| 4683 | if (ldtr.type != 2) |
| 4684 | return false; |
| 4685 | if (!ldtr.present) |
| 4686 | return false; |
| 4687 | |
| 4688 | return true; |
| 4689 | } |
| 4690 | |
| 4691 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 4692 | { |
| 4693 | struct kvm_segment cs, ss; |
| 4694 | |
| 4695 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4696 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 4697 | |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4698 | return ((cs.selector & SEGMENT_RPL_MASK) == |
| 4699 | (ss.selector & SEGMENT_RPL_MASK)); |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4700 | } |
| 4701 | |
| 4702 | /* |
| 4703 | * Check if guest state is valid. Returns true if valid, false if |
| 4704 | * not. |
| 4705 | * We assume that registers are always usable |
| 4706 | */ |
| 4707 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 4708 | { |
Gleb Natapov | c5e97c8 | 2013-01-21 15:36:43 +0200 | [diff] [blame] | 4709 | if (enable_unrestricted_guest) |
| 4710 | return true; |
| 4711 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4712 | /* real mode guest state checks */ |
Gleb Natapov | f13882d | 2013-04-14 16:07:37 +0300 | [diff] [blame] | 4713 | if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4714 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 4715 | return false; |
| 4716 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 4717 | return false; |
| 4718 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4719 | return false; |
| 4720 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4721 | return false; |
| 4722 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4723 | return false; |
| 4724 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4725 | return false; |
| 4726 | } else { |
| 4727 | /* protected mode guest state checks */ |
| 4728 | if (!cs_ss_rpl_check(vcpu)) |
| 4729 | return false; |
| 4730 | if (!code_segment_valid(vcpu)) |
| 4731 | return false; |
| 4732 | if (!stack_segment_valid(vcpu)) |
| 4733 | return false; |
| 4734 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4735 | return false; |
| 4736 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4737 | return false; |
| 4738 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4739 | return false; |
| 4740 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4741 | return false; |
| 4742 | if (!tr_valid(vcpu)) |
| 4743 | return false; |
| 4744 | if (!ldtr_valid(vcpu)) |
| 4745 | return false; |
| 4746 | } |
| 4747 | /* TODO: |
| 4748 | * - Add checks on RIP |
| 4749 | * - Add checks on RFLAGS |
| 4750 | */ |
| 4751 | |
| 4752 | return true; |
| 4753 | } |
| 4754 | |
Jim Mattson | 5fa99cb | 2017-07-06 16:33:07 -0700 | [diff] [blame] | 4755 | static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa) |
| 4756 | { |
| 4757 | return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu)); |
| 4758 | } |
| 4759 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 4760 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4761 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4762 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4763 | u16 data = 0; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4764 | int idx, r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4765 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4766 | idx = srcu_read_lock(&kvm->srcu); |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4767 | fn = kvm->arch.tss_addr >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4768 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4769 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4770 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4771 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 4772 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 4773 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4774 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4775 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4776 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 4777 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4778 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4779 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4780 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4781 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4782 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4783 | r = kvm_write_guest_page(kvm, fn, &data, |
| 4784 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 4785 | sizeof(u8)); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4786 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4787 | srcu_read_unlock(&kvm->srcu, idx); |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4788 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4789 | } |
| 4790 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4791 | static int init_rmode_identity_map(struct kvm *kvm) |
| 4792 | { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4793 | int i, idx, r = 0; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 4794 | kvm_pfn_t identity_map_pfn; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4795 | u32 tmp; |
| 4796 | |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4797 | /* Protect kvm->arch.ept_identity_pagetable_done. */ |
| 4798 | mutex_lock(&kvm->slots_lock); |
| 4799 | |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4800 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4801 | goto out2; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4802 | |
David Hildenbrand | d8a6e36 | 2017-08-24 20:51:34 +0200 | [diff] [blame] | 4803 | if (!kvm->arch.ept_identity_map_addr) |
| 4804 | kvm->arch.ept_identity_map_addr = VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4805 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4806 | |
David Hildenbrand | d8a6e36 | 2017-08-24 20:51:34 +0200 | [diff] [blame] | 4807 | r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, |
| 4808 | kvm->arch.ept_identity_map_addr, PAGE_SIZE); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4809 | if (r < 0) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4810 | goto out2; |
| 4811 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4812 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4813 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 4814 | if (r < 0) |
| 4815 | goto out; |
| 4816 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 4817 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 4818 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 4819 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 4820 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 4821 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 4822 | if (r < 0) |
| 4823 | goto out; |
| 4824 | } |
| 4825 | kvm->arch.ept_identity_pagetable_done = true; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4826 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4827 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4828 | srcu_read_unlock(&kvm->srcu, idx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4829 | |
| 4830 | out2: |
| 4831 | mutex_unlock(&kvm->slots_lock); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4832 | return r; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4833 | } |
| 4834 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4835 | static void seg_setup(int seg) |
| 4836 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4837 | 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] | 4838 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4839 | |
| 4840 | vmcs_write16(sf->selector, 0); |
| 4841 | vmcs_writel(sf->base, 0); |
| 4842 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 4843 | ar = 0x93; |
| 4844 | if (seg == VCPU_SREG_CS) |
| 4845 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4846 | |
| 4847 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4848 | } |
| 4849 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4850 | static int alloc_apic_access_page(struct kvm *kvm) |
| 4851 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4852 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4853 | int r = 0; |
| 4854 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4855 | mutex_lock(&kvm->slots_lock); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4856 | if (kvm->arch.apic_access_page_done) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4857 | goto out; |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 4858 | r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, |
| 4859 | APIC_DEFAULT_PHYS_BASE, PAGE_SIZE); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4860 | if (r) |
| 4861 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4862 | |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4863 | page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4864 | if (is_error_page(page)) { |
| 4865 | r = -EFAULT; |
| 4866 | goto out; |
| 4867 | } |
| 4868 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4869 | /* |
| 4870 | * Do not pin the page in memory, so that memory hot-unplug |
| 4871 | * is able to migrate it. |
| 4872 | */ |
| 4873 | put_page(page); |
| 4874 | kvm->arch.apic_access_page_done = true; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4875 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4876 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4877 | return r; |
| 4878 | } |
| 4879 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4880 | static int allocate_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4881 | { |
| 4882 | int vpid; |
| 4883 | |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 4884 | if (!enable_vpid) |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4885 | return 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4886 | spin_lock(&vmx_vpid_lock); |
| 4887 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4888 | if (vpid < VMX_NR_VPIDS) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4889 | __set_bit(vpid, vmx_vpid_bitmap); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4890 | else |
| 4891 | vpid = 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4892 | spin_unlock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4893 | return vpid; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4894 | } |
| 4895 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4896 | static void free_vpid(int vpid) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4897 | { |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4898 | if (!enable_vpid || vpid == 0) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4899 | return; |
| 4900 | spin_lock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4901 | __clear_bit(vpid, vmx_vpid_bitmap); |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4902 | spin_unlock(&vmx_vpid_lock); |
| 4903 | } |
| 4904 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4905 | #define MSR_TYPE_R 1 |
| 4906 | #define MSR_TYPE_W 2 |
| 4907 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4908 | u32 msr, int type) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4909 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4910 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4911 | |
| 4912 | if (!cpu_has_vmx_msr_bitmap()) |
| 4913 | return; |
| 4914 | |
| 4915 | /* |
| 4916 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4917 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4918 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4919 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4920 | if (msr <= 0x1fff) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4921 | if (type & MSR_TYPE_R) |
| 4922 | /* read-low */ |
| 4923 | __clear_bit(msr, msr_bitmap + 0x000 / f); |
| 4924 | |
| 4925 | if (type & MSR_TYPE_W) |
| 4926 | /* write-low */ |
| 4927 | __clear_bit(msr, msr_bitmap + 0x800 / f); |
| 4928 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4929 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4930 | msr &= 0x1fff; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4931 | if (type & MSR_TYPE_R) |
| 4932 | /* read-high */ |
| 4933 | __clear_bit(msr, msr_bitmap + 0x400 / f); |
| 4934 | |
| 4935 | if (type & MSR_TYPE_W) |
| 4936 | /* write-high */ |
| 4937 | __clear_bit(msr, msr_bitmap + 0xc00 / f); |
| 4938 | |
| 4939 | } |
| 4940 | } |
| 4941 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 4942 | /* |
| 4943 | * If a msr is allowed by L0, we should check whether it is allowed by L1. |
| 4944 | * The corresponding bit will be cleared unless both of L0 and L1 allow it. |
| 4945 | */ |
| 4946 | static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1, |
| 4947 | unsigned long *msr_bitmap_nested, |
| 4948 | u32 msr, int type) |
| 4949 | { |
| 4950 | int f = sizeof(unsigned long); |
| 4951 | |
| 4952 | if (!cpu_has_vmx_msr_bitmap()) { |
| 4953 | WARN_ON(1); |
| 4954 | return; |
| 4955 | } |
| 4956 | |
| 4957 | /* |
| 4958 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4959 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4960 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4961 | */ |
| 4962 | if (msr <= 0x1fff) { |
| 4963 | if (type & MSR_TYPE_R && |
| 4964 | !test_bit(msr, msr_bitmap_l1 + 0x000 / f)) |
| 4965 | /* read-low */ |
| 4966 | __clear_bit(msr, msr_bitmap_nested + 0x000 / f); |
| 4967 | |
| 4968 | if (type & MSR_TYPE_W && |
| 4969 | !test_bit(msr, msr_bitmap_l1 + 0x800 / f)) |
| 4970 | /* write-low */ |
| 4971 | __clear_bit(msr, msr_bitmap_nested + 0x800 / f); |
| 4972 | |
| 4973 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4974 | msr &= 0x1fff; |
| 4975 | if (type & MSR_TYPE_R && |
| 4976 | !test_bit(msr, msr_bitmap_l1 + 0x400 / f)) |
| 4977 | /* read-high */ |
| 4978 | __clear_bit(msr, msr_bitmap_nested + 0x400 / f); |
| 4979 | |
| 4980 | if (type & MSR_TYPE_W && |
| 4981 | !test_bit(msr, msr_bitmap_l1 + 0xc00 / f)) |
| 4982 | /* write-high */ |
| 4983 | __clear_bit(msr, msr_bitmap_nested + 0xc00 / f); |
| 4984 | |
| 4985 | } |
| 4986 | } |
| 4987 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4988 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 4989 | { |
| 4990 | if (!longmode_only) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4991 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, |
| 4992 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4993 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, |
| 4994 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4995 | } |
| 4996 | |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 4997 | 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] | 4998 | { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 4999 | if (apicv_active) { |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 5000 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 5001 | msr, type); |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 5002 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 5003 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 5004 | } else { |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 5005 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 5006 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 5007 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 5008 | msr, type); |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 5009 | } |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 5010 | } |
| 5011 | |
Suravee Suthikulpanit | b2a05fe | 2017-09-12 10:42:41 -0500 | [diff] [blame] | 5012 | static bool vmx_get_enable_apicv(struct kvm_vcpu *vcpu) |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 5013 | { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5014 | return enable_apicv; |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 5015 | } |
| 5016 | |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 5017 | static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu) |
| 5018 | { |
| 5019 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5020 | gfn_t gfn; |
| 5021 | |
| 5022 | /* |
| 5023 | * Don't need to mark the APIC access page dirty; it is never |
| 5024 | * written to by the CPU during APIC virtualization. |
| 5025 | */ |
| 5026 | |
| 5027 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
| 5028 | gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT; |
| 5029 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
| 5030 | } |
| 5031 | |
| 5032 | if (nested_cpu_has_posted_intr(vmcs12)) { |
| 5033 | gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT; |
| 5034 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
| 5035 | } |
| 5036 | } |
| 5037 | |
| 5038 | |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 5039 | static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5040 | { |
| 5041 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5042 | int max_irr; |
| 5043 | void *vapic_page; |
| 5044 | u16 status; |
| 5045 | |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 5046 | if (!vmx->nested.pi_desc || !vmx->nested.pi_pending) |
| 5047 | return; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5048 | |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 5049 | vmx->nested.pi_pending = false; |
| 5050 | if (!pi_test_and_clear_on(vmx->nested.pi_desc)) |
| 5051 | return; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5052 | |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 5053 | max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256); |
| 5054 | if (max_irr != 256) { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5055 | vapic_page = kmap(vmx->nested.virtual_apic_page); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5056 | __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page); |
| 5057 | kunmap(vmx->nested.virtual_apic_page); |
| 5058 | |
| 5059 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 5060 | if ((u8)max_irr > ((u8)status & 0xff)) { |
| 5061 | status &= ~0xff; |
| 5062 | status |= (u8)max_irr; |
| 5063 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 5064 | } |
| 5065 | } |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 5066 | |
| 5067 | nested_mark_vmcs12_pages_dirty(vcpu); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5068 | } |
| 5069 | |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 5070 | static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu, |
| 5071 | bool nested) |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 5072 | { |
| 5073 | #ifdef CONFIG_SMP |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 5074 | int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR; |
| 5075 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 5076 | if (vcpu->mode == IN_GUEST_MODE) { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 5077 | /* |
Haozhong Zhang | 5753743f | 2017-09-18 09:56:50 +0800 | [diff] [blame] | 5078 | * The vector of interrupt to be delivered to vcpu had |
| 5079 | * been set in PIR before this function. |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 5080 | * |
Haozhong Zhang | 5753743f | 2017-09-18 09:56:50 +0800 | [diff] [blame] | 5081 | * Following cases will be reached in this block, and |
| 5082 | * we always send a notification event in all cases as |
| 5083 | * explained below. |
| 5084 | * |
| 5085 | * Case 1: vcpu keeps in non-root mode. Sending a |
| 5086 | * notification event posts the interrupt to vcpu. |
| 5087 | * |
| 5088 | * Case 2: vcpu exits to root mode and is still |
| 5089 | * runnable. PIR will be synced to vIRR before the |
| 5090 | * next vcpu entry. Sending a notification event in |
| 5091 | * this case has no effect, as vcpu is not in root |
| 5092 | * mode. |
| 5093 | * |
| 5094 | * Case 3: vcpu exits to root mode and is blocked. |
| 5095 | * vcpu_block() has already synced PIR to vIRR and |
| 5096 | * never blocks vcpu if vIRR is not cleared. Therefore, |
| 5097 | * a blocked vcpu here does not wait for any requested |
| 5098 | * interrupts in PIR, and sending a notification event |
| 5099 | * which has no effect is safe here. |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 5100 | */ |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 5101 | |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 5102 | apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec); |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 5103 | return true; |
| 5104 | } |
| 5105 | #endif |
| 5106 | return false; |
| 5107 | } |
| 5108 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5109 | static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu, |
| 5110 | int vector) |
| 5111 | { |
| 5112 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5113 | |
| 5114 | if (is_guest_mode(vcpu) && |
| 5115 | vector == vmx->nested.posted_intr_nv) { |
| 5116 | /* the PIR and ON have been set by L1. */ |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 5117 | kvm_vcpu_trigger_posted_interrupt(vcpu, true); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5118 | /* |
| 5119 | * If a posted intr is not recognized by hardware, |
| 5120 | * we will accomplish it in the next vmentry. |
| 5121 | */ |
| 5122 | vmx->nested.pi_pending = true; |
| 5123 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5124 | return 0; |
| 5125 | } |
| 5126 | return -1; |
| 5127 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5128 | /* |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 5129 | * Send interrupt to vcpu via posted interrupt way. |
| 5130 | * 1. If target vcpu is running(non-root mode), send posted interrupt |
| 5131 | * notification to vcpu and hardware will sync PIR to vIRR atomically. |
| 5132 | * 2. If target vcpu isn't running(root mode), kick it to pick up the |
| 5133 | * interrupt from PIR in next vmentry. |
| 5134 | */ |
| 5135 | static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector) |
| 5136 | { |
| 5137 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5138 | int r; |
| 5139 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 5140 | r = vmx_deliver_nested_posted_interrupt(vcpu, vector); |
| 5141 | if (!r) |
| 5142 | return; |
| 5143 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 5144 | if (pi_test_and_set_pir(vector, &vmx->pi_desc)) |
| 5145 | return; |
| 5146 | |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 5147 | /* If a previous notification has sent the IPI, nothing to do. */ |
| 5148 | if (pi_test_and_set_on(&vmx->pi_desc)) |
| 5149 | return; |
| 5150 | |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 5151 | if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false)) |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 5152 | kvm_vcpu_kick(vcpu); |
| 5153 | } |
| 5154 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5155 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5156 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 5157 | * will not change in the lifetime of the guest. |
| 5158 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 5159 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 5160 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5161 | static void vmx_set_constant_host_state(struct vcpu_vmx *vmx) |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5162 | { |
| 5163 | u32 low32, high32; |
| 5164 | unsigned long tmpl; |
| 5165 | struct desc_ptr dt; |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 5166 | unsigned long cr0, cr3, cr4; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5167 | |
Andy Lutomirski | 04ac88a | 2016-10-31 15:18:45 -0700 | [diff] [blame] | 5168 | cr0 = read_cr0(); |
| 5169 | WARN_ON(cr0 & X86_CR0_TS); |
| 5170 | vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */ |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 5171 | |
| 5172 | /* |
| 5173 | * Save the most likely value for this task's CR3 in the VMCS. |
| 5174 | * We can't use __get_current_cr3_fast() because we're not atomic. |
| 5175 | */ |
Andy Lutomirski | 6c690ee | 2017-06-12 10:26:14 -0700 | [diff] [blame] | 5176 | cr3 = __read_cr3(); |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 5177 | vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */ |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 5178 | vmx->loaded_vmcs->vmcs_host_cr3 = cr3; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5179 | |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 5180 | /* 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] | 5181 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 5182 | vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */ |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 5183 | vmx->loaded_vmcs->vmcs_host_cr4 = cr4; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 5184 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5185 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 5186 | #ifdef CONFIG_X86_64 |
| 5187 | /* |
| 5188 | * Load null selectors, so we can avoid reloading them in |
| 5189 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 5190 | * too (the expected case). |
| 5191 | */ |
| 5192 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 5193 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 5194 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5195 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 5196 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 5197 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5198 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 5199 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 5200 | |
Juergen Gross | 8793001 | 2017-09-04 12:25:27 +0200 | [diff] [blame] | 5201 | store_idt(&dt); |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5202 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5203 | vmx->host_idt_base = dt.address; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5204 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 5205 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5206 | |
| 5207 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 5208 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 5209 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 5210 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 5211 | |
| 5212 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 5213 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 5214 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 5215 | } |
| 5216 | } |
| 5217 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5218 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 5219 | { |
| 5220 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 5221 | if (enable_ept) |
| 5222 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 5223 | if (is_guest_mode(&vmx->vcpu)) |
| 5224 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 5225 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5226 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 5227 | } |
| 5228 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5229 | static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx) |
| 5230 | { |
| 5231 | u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; |
| 5232 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5233 | if (!kvm_vcpu_apicv_active(&vmx->vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5234 | pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 5235 | /* Enable the preemption timer dynamically */ |
| 5236 | pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5237 | return pin_based_exec_ctrl; |
| 5238 | } |
| 5239 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5240 | static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu) |
| 5241 | { |
| 5242 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5243 | |
| 5244 | 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] | 5245 | if (cpu_has_secondary_exec_ctrls()) { |
| 5246 | if (kvm_vcpu_apicv_active(vcpu)) |
| 5247 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 5248 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5249 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 5250 | else |
| 5251 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 5252 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5253 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 5254 | } |
| 5255 | |
| 5256 | if (cpu_has_vmx_msr_bitmap()) |
| 5257 | vmx_set_msr_bitmap(vcpu); |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5258 | } |
| 5259 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5260 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 5261 | { |
| 5262 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
Paolo Bonzini | d16c293 | 2014-02-21 10:36:37 +0100 | [diff] [blame] | 5263 | |
| 5264 | if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT) |
| 5265 | exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 5266 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5267 | if (!cpu_need_tpr_shadow(&vmx->vcpu)) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5268 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 5269 | #ifdef CONFIG_X86_64 |
| 5270 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 5271 | CPU_BASED_CR8_LOAD_EXITING; |
| 5272 | #endif |
| 5273 | } |
| 5274 | if (!enable_ept) |
| 5275 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 5276 | CPU_BASED_CR3_LOAD_EXITING | |
| 5277 | CPU_BASED_INVLPG_EXITING; |
| 5278 | return exec_control; |
| 5279 | } |
| 5280 | |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5281 | static bool vmx_rdrand_supported(void) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5282 | { |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5283 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5284 | SECONDARY_EXEC_RDRAND_EXITING; |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5285 | } |
| 5286 | |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5287 | static bool vmx_rdseed_supported(void) |
| 5288 | { |
| 5289 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5290 | SECONDARY_EXEC_RDSEED_EXITING; |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5291 | } |
| 5292 | |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5293 | static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5294 | { |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5295 | struct kvm_vcpu *vcpu = &vmx->vcpu; |
| 5296 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5297 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5298 | if (!cpu_need_virtualize_apic_accesses(vcpu)) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5299 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 5300 | if (vmx->vpid == 0) |
| 5301 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 5302 | if (!enable_ept) { |
| 5303 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 5304 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 5305 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 5306 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5307 | } |
| 5308 | if (!enable_unrestricted_guest) |
| 5309 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 5310 | if (!ple_gap) |
| 5311 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5312 | if (!kvm_vcpu_apicv_active(vcpu)) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5313 | exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 5314 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 5315 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 5316 | /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD |
| 5317 | (handle_vmptrld). |
| 5318 | We can NOT enable shadow_vmcs here because we don't have yet |
| 5319 | a current VMCS12 |
| 5320 | */ |
| 5321 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 5322 | |
| 5323 | if (!enable_pml) |
| 5324 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 5325 | |
Paolo Bonzini | 3db1348 | 2017-08-24 14:48:03 +0200 | [diff] [blame] | 5326 | if (vmx_xsaves_supported()) { |
| 5327 | /* Exposing XSAVES only when XSAVE is exposed */ |
| 5328 | bool xsaves_enabled = |
| 5329 | guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) && |
| 5330 | guest_cpuid_has(vcpu, X86_FEATURE_XSAVES); |
| 5331 | |
| 5332 | if (!xsaves_enabled) |
| 5333 | exec_control &= ~SECONDARY_EXEC_XSAVES; |
| 5334 | |
| 5335 | if (nested) { |
| 5336 | if (xsaves_enabled) |
| 5337 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 5338 | SECONDARY_EXEC_XSAVES; |
| 5339 | else |
| 5340 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 5341 | ~SECONDARY_EXEC_XSAVES; |
| 5342 | } |
| 5343 | } |
| 5344 | |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5345 | if (vmx_rdtscp_supported()) { |
| 5346 | bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP); |
| 5347 | if (!rdtscp_enabled) |
| 5348 | exec_control &= ~SECONDARY_EXEC_RDTSCP; |
| 5349 | |
| 5350 | if (nested) { |
| 5351 | if (rdtscp_enabled) |
| 5352 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 5353 | SECONDARY_EXEC_RDTSCP; |
| 5354 | else |
| 5355 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 5356 | ~SECONDARY_EXEC_RDTSCP; |
| 5357 | } |
| 5358 | } |
| 5359 | |
| 5360 | if (vmx_invpcid_supported()) { |
| 5361 | /* Exposing INVPCID only when PCID is exposed */ |
| 5362 | bool invpcid_enabled = |
| 5363 | guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) && |
| 5364 | guest_cpuid_has(vcpu, X86_FEATURE_PCID); |
| 5365 | |
| 5366 | if (!invpcid_enabled) { |
| 5367 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
| 5368 | guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID); |
| 5369 | } |
| 5370 | |
| 5371 | if (nested) { |
| 5372 | if (invpcid_enabled) |
| 5373 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 5374 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 5375 | else |
| 5376 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 5377 | ~SECONDARY_EXEC_ENABLE_INVPCID; |
| 5378 | } |
| 5379 | } |
| 5380 | |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5381 | if (vmx_rdrand_supported()) { |
| 5382 | bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND); |
| 5383 | if (rdrand_enabled) |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5384 | exec_control &= ~SECONDARY_EXEC_RDRAND_EXITING; |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5385 | |
| 5386 | if (nested) { |
| 5387 | if (rdrand_enabled) |
| 5388 | vmx->nested.nested_vmx_secondary_ctls_high |= |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5389 | SECONDARY_EXEC_RDRAND_EXITING; |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5390 | else |
| 5391 | vmx->nested.nested_vmx_secondary_ctls_high &= |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5392 | ~SECONDARY_EXEC_RDRAND_EXITING; |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 5393 | } |
| 5394 | } |
| 5395 | |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5396 | if (vmx_rdseed_supported()) { |
| 5397 | bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED); |
| 5398 | if (rdseed_enabled) |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5399 | exec_control &= ~SECONDARY_EXEC_RDSEED_EXITING; |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5400 | |
| 5401 | if (nested) { |
| 5402 | if (rdseed_enabled) |
| 5403 | vmx->nested.nested_vmx_secondary_ctls_high |= |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5404 | SECONDARY_EXEC_RDSEED_EXITING; |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5405 | else |
| 5406 | vmx->nested.nested_vmx_secondary_ctls_high &= |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 5407 | ~SECONDARY_EXEC_RDSEED_EXITING; |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 5408 | } |
| 5409 | } |
| 5410 | |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5411 | vmx->secondary_exec_control = exec_control; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5412 | } |
| 5413 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5414 | static void ept_set_mmio_spte_mask(void) |
| 5415 | { |
| 5416 | /* |
| 5417 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 5418 | * of an EPT paging-structure entry is 110b (write/execute). |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5419 | */ |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 5420 | kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK, |
| 5421 | VMX_EPT_MISCONFIG_WX_VALUE); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5422 | } |
| 5423 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5424 | #define VMX_XSS_EXIT_BITMAP 0 |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 5425 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5426 | * Sets up the vmcs for emulated real mode. |
| 5427 | */ |
David Hildenbrand | 12d7991 | 2017-08-24 20:51:26 +0200 | [diff] [blame] | 5428 | static void vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5429 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 5430 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5431 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 5432 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5433 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5434 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5435 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 5436 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 5437 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5438 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 5439 | if (enable_shadow_vmcs) { |
| 5440 | vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap)); |
| 5441 | vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap)); |
| 5442 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 5443 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 5444 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 5445 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5446 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 5447 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5448 | /* Control */ |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5449 | 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] | 5450 | vmx->hv_deadline_tsc = -1; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5451 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5452 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5453 | |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 5454 | if (cpu_has_secondary_exec_ctrls()) { |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5455 | vmx_compute_secondary_exec_control(vmx); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5456 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 5457 | vmx->secondary_exec_control); |
Dan Williams | dfa169b | 2016-06-02 11:17:24 -0700 | [diff] [blame] | 5458 | } |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5459 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5460 | if (kvm_vcpu_apicv_active(&vmx->vcpu)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5461 | vmcs_write64(EOI_EXIT_BITMAP0, 0); |
| 5462 | vmcs_write64(EOI_EXIT_BITMAP1, 0); |
| 5463 | vmcs_write64(EOI_EXIT_BITMAP2, 0); |
| 5464 | vmcs_write64(EOI_EXIT_BITMAP3, 0); |
| 5465 | |
| 5466 | vmcs_write16(GUEST_INTR_STATUS, 0); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5467 | |
Li RongQing | 0bcf261 | 2015-12-03 13:29:34 +0800 | [diff] [blame] | 5468 | vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5469 | vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5470 | } |
| 5471 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5472 | if (ple_gap) { |
| 5473 | vmcs_write32(PLE_GAP, ple_gap); |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 5474 | vmx->ple_window = ple_window; |
| 5475 | vmx->ple_window_dirty = true; |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 5476 | } |
| 5477 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 5478 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 5479 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5480 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 5481 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 5482 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 5483 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 5484 | vmx_set_constant_host_state(vmx); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 5485 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5486 | rdmsrl(MSR_FS_BASE, a); |
| 5487 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 5488 | rdmsrl(MSR_GS_BASE, a); |
| 5489 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 5490 | #else |
| 5491 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 5492 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 5493 | #endif |
| 5494 | |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 5495 | if (cpu_has_vmx_vmfunc()) |
| 5496 | vmcs_write64(VM_FUNCTION_CONTROL, 0); |
| 5497 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 5498 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 5499 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 5500 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 5501 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 5502 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5503 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 5504 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 5505 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 5506 | |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 5507 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5508 | u32 index = vmx_msr_index[i]; |
| 5509 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5510 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5511 | |
| 5512 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 5513 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 5514 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 5515 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 5516 | vmx->guest_msrs[j].index = i; |
| 5517 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 5518 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 5519 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5520 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5521 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 5522 | |
| 5523 | vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5524 | |
| 5525 | /* 22.2.1, 20.8.1 */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 5526 | vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 5527 | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 5528 | vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS; |
| 5529 | vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS); |
| 5530 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 5531 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5532 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5533 | if (vmx_xsaves_supported()) |
| 5534 | vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP); |
| 5535 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 5536 | if (enable_pml) { |
| 5537 | ASSERT(vmx->pml_pg); |
| 5538 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 5539 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 5540 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5541 | } |
| 5542 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5543 | static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5544 | { |
| 5545 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 5546 | struct msr_data apic_base_msr; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5547 | u64 cr0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5548 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5549 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5550 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5551 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5552 | kvm_set_cr8(vcpu, 0); |
| 5553 | |
| 5554 | if (!init_event) { |
| 5555 | apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | |
| 5556 | MSR_IA32_APICBASE_ENABLE; |
| 5557 | if (kvm_vcpu_is_reset_bsp(vcpu)) |
| 5558 | apic_base_msr.data |= MSR_IA32_APICBASE_BSP; |
| 5559 | apic_base_msr.host_initiated = true; |
| 5560 | kvm_set_apic_base(vcpu, &apic_base_msr); |
| 5561 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5562 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 5563 | vmx_segment_cache_clear(vmx); |
| 5564 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 5565 | seg_setup(VCPU_SREG_CS); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 5566 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 5567 | vmcs_writel(GUEST_CS_BASE, 0xffff0000ul); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5568 | |
| 5569 | seg_setup(VCPU_SREG_DS); |
| 5570 | seg_setup(VCPU_SREG_ES); |
| 5571 | seg_setup(VCPU_SREG_FS); |
| 5572 | seg_setup(VCPU_SREG_GS); |
| 5573 | seg_setup(VCPU_SREG_SS); |
| 5574 | |
| 5575 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 5576 | vmcs_writel(GUEST_TR_BASE, 0); |
| 5577 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 5578 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 5579 | |
| 5580 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 5581 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 5582 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 5583 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 5584 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5585 | if (!init_event) { |
| 5586 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 5587 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 5588 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 5589 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 5590 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5591 | |
| 5592 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 5593 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5594 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5595 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 5596 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 5597 | |
| 5598 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 5599 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 5600 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 5601 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5602 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 5603 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 5604 | if (kvm_mpx_supported()) |
| 5605 | vmcs_write64(GUEST_BNDCFGS, 0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5606 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 5607 | setup_msrs(vmx); |
| 5608 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5609 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 5610 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5611 | if (cpu_has_vmx_tpr_shadow() && !init_event) { |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5612 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5613 | if (cpu_need_tpr_shadow(vcpu)) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5614 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5615 | __pa(vcpu->arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5616 | vmcs_write32(TPR_THRESHOLD, 0); |
| 5617 | } |
| 5618 | |
Paolo Bonzini | a73896c | 2014-11-02 07:54:30 +0100 | [diff] [blame] | 5619 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5620 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5621 | if (kvm_vcpu_apicv_active(vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 5622 | memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); |
| 5623 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 5624 | if (vmx->vpid != 0) |
| 5625 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 5626 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5627 | cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5628 | vmx->vcpu.arch.cr0 = cr0; |
Bruce Rogers | f246324 | 2016-04-28 14:49:21 -0600 | [diff] [blame] | 5629 | vmx_set_cr0(vcpu, cr0); /* enter rmode */ |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5630 | vmx_set_cr4(vcpu, 0); |
Paolo Bonzini | 5690891 | 2015-10-19 11:30:19 +0200 | [diff] [blame] | 5631 | vmx_set_efer(vcpu, 0); |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 5632 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 5633 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5634 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 5635 | vpid_sync_context(vmx->vpid); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5636 | } |
| 5637 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 5638 | /* |
| 5639 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 5640 | * For most existing hypervisors, this will always return true. |
| 5641 | */ |
| 5642 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 5643 | { |
| 5644 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 5645 | PIN_BASED_EXT_INTR_MASK; |
| 5646 | } |
| 5647 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 5648 | /* |
| 5649 | * In nested virtualization, check if L1 has set |
| 5650 | * VM_EXIT_ACK_INTR_ON_EXIT |
| 5651 | */ |
| 5652 | static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu) |
| 5653 | { |
| 5654 | return get_vmcs12(vcpu)->vm_exit_controls & |
| 5655 | VM_EXIT_ACK_INTR_ON_EXIT; |
| 5656 | } |
| 5657 | |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5658 | static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu) |
| 5659 | { |
| 5660 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 5661 | PIN_BASED_NMI_EXITING; |
| 5662 | } |
| 5663 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5664 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5665 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 5666 | vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 5667 | CPU_BASED_VIRTUAL_INTR_PENDING); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5668 | } |
| 5669 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5670 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5671 | { |
Paolo Bonzini | 2c82878 | 2017-03-27 14:37:28 +0200 | [diff] [blame] | 5672 | if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 5673 | enable_irq_window(vcpu); |
| 5674 | return; |
| 5675 | } |
Jan Kiszka | 03b28f8 | 2013-04-29 16:46:42 +0200 | [diff] [blame] | 5676 | |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 5677 | vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 5678 | CPU_BASED_VIRTUAL_NMI_PENDING); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5679 | } |
| 5680 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5681 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5682 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 5683 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5684 | uint32_t intr; |
| 5685 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 5686 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5687 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5688 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 5689 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5690 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5691 | int inc_eip = 0; |
| 5692 | if (vcpu->arch.interrupt.soft) |
| 5693 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 5694 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5695 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5696 | return; |
| 5697 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5698 | intr = irq | INTR_INFO_VALID_MASK; |
| 5699 | if (vcpu->arch.interrupt.soft) { |
| 5700 | intr |= INTR_TYPE_SOFT_INTR; |
| 5701 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 5702 | vmx->vcpu.arch.event_exit_inst_len); |
| 5703 | } else |
| 5704 | intr |= INTR_TYPE_EXT_INTR; |
| 5705 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5706 | } |
| 5707 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5708 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 5709 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5710 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5711 | |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 5712 | ++vcpu->stat.nmi_injections; |
| 5713 | vmx->loaded_vmcs->nmi_known_unmasked = false; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5714 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5715 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5716 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5717 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5718 | return; |
| 5719 | } |
Wanpeng Li | c5a6d5f | 2016-09-22 17:55:54 +0800 | [diff] [blame] | 5720 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5721 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 5722 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5723 | } |
| 5724 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5725 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 5726 | { |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 5727 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5728 | bool masked; |
| 5729 | |
| 5730 | if (vmx->loaded_vmcs->nmi_known_unmasked) |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5731 | return false; |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 5732 | masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
| 5733 | vmx->loaded_vmcs->nmi_known_unmasked = !masked; |
| 5734 | return masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5735 | } |
| 5736 | |
| 5737 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 5738 | { |
| 5739 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5740 | |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 5741 | vmx->loaded_vmcs->nmi_known_unmasked = !masked; |
Paolo Bonzini | 2c82878 | 2017-03-27 14:37:28 +0200 | [diff] [blame] | 5742 | if (masked) |
| 5743 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5744 | GUEST_INTR_STATE_NMI); |
| 5745 | else |
| 5746 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5747 | GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5748 | } |
| 5749 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5750 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
| 5751 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5752 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 5753 | return 0; |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5754 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5755 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5756 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 5757 | | GUEST_INTR_STATE_NMI)); |
| 5758 | } |
| 5759 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5760 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 5761 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5762 | return (!to_vmx(vcpu)->nested.nested_run_pending && |
| 5763 | vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 5764 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5765 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5766 | } |
| 5767 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5768 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 5769 | { |
| 5770 | int ret; |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5771 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 5772 | ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr, |
| 5773 | PAGE_SIZE * 3); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5774 | if (ret) |
| 5775 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 5776 | kvm->arch.tss_addr = addr; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 5777 | return init_rmode_tss(kvm); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5778 | } |
| 5779 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5780 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5781 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5782 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5783 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5784 | /* |
| 5785 | * Update instruction length as we may reinject the exception |
| 5786 | * from user space while in guest debugging mode. |
| 5787 | */ |
| 5788 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 5789 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5790 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5791 | return false; |
| 5792 | /* fall through */ |
| 5793 | case DB_VECTOR: |
| 5794 | if (vcpu->guest_debug & |
| 5795 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 5796 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5797 | /* fall through */ |
| 5798 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5799 | case OF_VECTOR: |
| 5800 | case BR_VECTOR: |
| 5801 | case UD_VECTOR: |
| 5802 | case DF_VECTOR: |
| 5803 | case SS_VECTOR: |
| 5804 | case GP_VECTOR: |
| 5805 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5806 | return true; |
| 5807 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5808 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5809 | return false; |
| 5810 | } |
| 5811 | |
| 5812 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 5813 | int vec, u32 err_code) |
| 5814 | { |
| 5815 | /* |
| 5816 | * Instruction with address size override prefix opcode 0x67 |
| 5817 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 5818 | */ |
| 5819 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 5820 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 5821 | if (vcpu->arch.halt_request) { |
| 5822 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5823 | return kvm_vcpu_halt(vcpu); |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5824 | } |
| 5825 | return 1; |
| 5826 | } |
| 5827 | return 0; |
| 5828 | } |
| 5829 | |
| 5830 | /* |
| 5831 | * Forward all other exceptions that are valid in real mode. |
| 5832 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 5833 | * the required debugging infrastructure rework. |
| 5834 | */ |
| 5835 | kvm_queue_exception(vcpu, vec); |
| 5836 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5837 | } |
| 5838 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5839 | /* |
| 5840 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 5841 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 5842 | * We pass a fake environment to the machine check handler because we want |
| 5843 | * the guest to be always treated like user space, no matter what context |
| 5844 | * it used internally. |
| 5845 | */ |
| 5846 | static void kvm_machine_check(void) |
| 5847 | { |
| 5848 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 5849 | struct pt_regs regs = { |
| 5850 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 5851 | .flags = X86_EFLAGS_IF, |
| 5852 | }; |
| 5853 | |
| 5854 | do_machine_check(®s, 0); |
| 5855 | #endif |
| 5856 | } |
| 5857 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5858 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5859 | { |
| 5860 | /* already handled by vcpu_run */ |
| 5861 | return 1; |
| 5862 | } |
| 5863 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5864 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5865 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5866 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5867 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5868 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5869 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5870 | u32 vect_info; |
| 5871 | enum emulation_result er; |
| 5872 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5873 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 5874 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5875 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5876 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5877 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5878 | |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 5879 | if (is_nmi(intr_info)) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5880 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5881 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5882 | if (is_invalid_opcode(intr_info)) { |
Jan Kiszka | ae1f576 | 2015-03-09 20:56:43 +0100 | [diff] [blame] | 5883 | if (is_guest_mode(vcpu)) { |
| 5884 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5885 | return 1; |
| 5886 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5887 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5888 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 5889 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5890 | return 1; |
| 5891 | } |
| 5892 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5893 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 5894 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5895 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5896 | |
| 5897 | /* |
| 5898 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 5899 | * MMIO, it is better to report an internal error. |
| 5900 | * See the comments in vmx_handle_exit. |
| 5901 | */ |
| 5902 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 5903 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 5904 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5905 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5906 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5907 | vcpu->run->internal.data[0] = vect_info; |
| 5908 | vcpu->run->internal.data[1] = intr_info; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5909 | vcpu->run->internal.data[2] = error_code; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5910 | return 0; |
| 5911 | } |
| 5912 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5913 | if (is_page_fault(intr_info)) { |
| 5914 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 5915 | /* EPT won't cause page fault directly */ |
| 5916 | WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept); |
Paolo Bonzini | d000653 | 2017-08-11 18:36:43 +0200 | [diff] [blame] | 5917 | return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5918 | } |
| 5919 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5920 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5921 | |
| 5922 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 5923 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 5924 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5925 | switch (ex_no) { |
Eric Northup | 54a2055 | 2015-11-03 18:03:53 +0100 | [diff] [blame] | 5926 | case AC_VECTOR: |
| 5927 | kvm_queue_exception_e(vcpu, AC_VECTOR, error_code); |
| 5928 | return 1; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5929 | case DB_VECTOR: |
| 5930 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 5931 | if (!(vcpu->guest_debug & |
| 5932 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
Jan Kiszka | 8246bf5 | 2014-01-04 18:47:17 +0100 | [diff] [blame] | 5933 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5934 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Huw Davies | fd2a445 | 2014-04-16 10:02:51 +0100 | [diff] [blame] | 5935 | if (!(dr6 & ~DR6_RESERVED)) /* icebp */ |
| 5936 | skip_emulated_instruction(vcpu); |
| 5937 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5938 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5939 | return 1; |
| 5940 | } |
| 5941 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 5942 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5943 | /* fall through */ |
| 5944 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5945 | /* |
| 5946 | * Update instruction length as we may reinject #BP from |
| 5947 | * user space while in guest debugging mode. Reading it for |
| 5948 | * #DB as well causes no harm, it is not used in that case. |
| 5949 | */ |
| 5950 | vmx->vcpu.arch.event_exit_inst_len = |
| 5951 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5952 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 5953 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5954 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 5955 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5956 | break; |
| 5957 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5958 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 5959 | kvm_run->ex.exception = ex_no; |
| 5960 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5961 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5962 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5963 | return 0; |
| 5964 | } |
| 5965 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5966 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5967 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 5968 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5969 | return 1; |
| 5970 | } |
| 5971 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5972 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5973 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5974 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Wanpeng Li | bbeac28 | 2017-08-09 22:33:12 -0700 | [diff] [blame] | 5975 | vcpu->mmio_needed = 0; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5976 | return 0; |
| 5977 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5978 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5979 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5980 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5981 | unsigned long exit_qualification; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5982 | int size, in, string, ret; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5983 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5984 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5985 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5986 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5987 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5988 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5989 | ++vcpu->stat.io_exits; |
| 5990 | |
| 5991 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5992 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5993 | |
| 5994 | port = exit_qualification >> 16; |
| 5995 | size = (exit_qualification & 7) + 1; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5996 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 5997 | ret = kvm_skip_emulated_instruction(vcpu); |
| 5998 | |
| 5999 | /* |
| 6000 | * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered |
| 6001 | * KVM_EXIT_DEBUG here. |
| 6002 | */ |
| 6003 | return kvm_fast_pio_out(vcpu, size, port) && ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6004 | } |
| 6005 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6006 | static void |
| 6007 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 6008 | { |
| 6009 | /* |
| 6010 | * Patch in the VMCALL instruction: |
| 6011 | */ |
| 6012 | hypercall[0] = 0x0f; |
| 6013 | hypercall[1] = 0x01; |
| 6014 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6015 | } |
| 6016 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 6017 | /* 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] | 6018 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 6019 | { |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6020 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6021 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 6022 | unsigned long orig_val = val; |
| 6023 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6024 | /* |
| 6025 | * We get here when L2 changed cr0 in a way that did not change |
| 6026 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6027 | * but did change L0 shadowed bits. So we first calculate the |
| 6028 | * effective cr0 value that L1 would like to write into the |
| 6029 | * hardware. It consists of the L2-owned bits from the new |
| 6030 | * 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] | 6031 | */ |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6032 | val = (val & ~vmcs12->cr0_guest_host_mask) | |
| 6033 | (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask); |
| 6034 | |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 6035 | if (!nested_guest_cr0_valid(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6036 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6037 | |
| 6038 | if (kvm_set_cr0(vcpu, val)) |
| 6039 | return 1; |
| 6040 | vmcs_writel(CR0_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6041 | return 0; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6042 | } else { |
| 6043 | if (to_vmx(vcpu)->nested.vmxon && |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 6044 | !nested_host_cr0_valid(vcpu, val)) |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6045 | return 1; |
David Matlack | 3899152 | 2016-11-29 18:14:08 -0800 | [diff] [blame] | 6046 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6047 | return kvm_set_cr0(vcpu, val); |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6048 | } |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6049 | } |
| 6050 | |
| 6051 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 6052 | { |
| 6053 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6054 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 6055 | unsigned long orig_val = val; |
| 6056 | |
| 6057 | /* analogously to handle_set_cr0 */ |
| 6058 | val = (val & ~vmcs12->cr4_guest_host_mask) | |
| 6059 | (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask); |
| 6060 | if (kvm_set_cr4(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6061 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 6062 | vmcs_writel(CR4_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6063 | return 0; |
| 6064 | } else |
| 6065 | return kvm_set_cr4(vcpu, val); |
| 6066 | } |
| 6067 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6068 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6069 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6070 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6071 | int cr; |
| 6072 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 6073 | int err; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6074 | int ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6075 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 6076 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6077 | cr = exit_qualification & 15; |
| 6078 | reg = (exit_qualification >> 8) & 15; |
| 6079 | switch ((exit_qualification >> 4) & 3) { |
| 6080 | case 0: /* mov to cr */ |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 6081 | val = kvm_register_readl(vcpu, reg); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6082 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6083 | switch (cr) { |
| 6084 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6085 | err = handle_set_cr0(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6086 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6087 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 6088 | err = kvm_set_cr3(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6089 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6090 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 6091 | err = handle_set_cr4(vcpu, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6092 | return kvm_complete_insn_gp(vcpu, err); |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 6093 | case 8: { |
| 6094 | u8 cr8_prev = kvm_get_cr8(vcpu); |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 6095 | u8 cr8 = (u8)val; |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 6096 | err = kvm_set_cr8(vcpu, cr8); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6097 | ret = kvm_complete_insn_gp(vcpu, err); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 6098 | if (lapic_in_kernel(vcpu)) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6099 | return ret; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 6100 | if (cr8_prev <= cr8) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6101 | return ret; |
| 6102 | /* |
| 6103 | * TODO: we might be squashing a |
| 6104 | * KVM_GUESTDBG_SINGLESTEP-triggered |
| 6105 | * KVM_EXIT_DEBUG here. |
| 6106 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6107 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 6108 | return 0; |
| 6109 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 6110 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6111 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 6112 | case 2: /* clts */ |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 6113 | WARN_ONCE(1, "Guest should always own CR0.TS"); |
| 6114 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 6115 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6116 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6117 | case 1: /*mov from cr*/ |
| 6118 | switch (cr) { |
| 6119 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 6120 | val = kvm_read_cr3(vcpu); |
| 6121 | kvm_register_write(vcpu, reg, val); |
| 6122 | trace_kvm_cr_read(cr, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6123 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6124 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6125 | val = kvm_get_cr8(vcpu); |
| 6126 | kvm_register_write(vcpu, reg, val); |
| 6127 | trace_kvm_cr_read(cr, val); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6128 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6129 | } |
| 6130 | break; |
| 6131 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 6132 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 6133 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 6134 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6135 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6136 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6137 | default: |
| 6138 | break; |
| 6139 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6140 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 6141 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6142 | (int)(exit_qualification >> 4) & 3, cr); |
| 6143 | return 0; |
| 6144 | } |
| 6145 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6146 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6147 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 6148 | unsigned long exit_qualification; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 6149 | int dr, dr7, reg; |
| 6150 | |
| 6151 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6152 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 6153 | |
| 6154 | /* First, if DR does not exist, trigger UD */ |
| 6155 | if (!kvm_require_dr(vcpu, dr)) |
| 6156 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6157 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 6158 | /* 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] | 6159 | if (!kvm_require_cpl(vcpu, 0)) |
| 6160 | return 1; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 6161 | dr7 = vmcs_readl(GUEST_DR7); |
| 6162 | if (dr7 & DR7_GD) { |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6163 | /* |
| 6164 | * As the vm-exit takes precedence over the debug trap, we |
| 6165 | * need to emulate the latter, either for the host or the |
| 6166 | * guest debugging itself. |
| 6167 | */ |
| 6168 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6169 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 6170 | vcpu->run->debug.arch.dr7 = dr7; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 6171 | vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6172 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 6173 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6174 | return 0; |
| 6175 | } else { |
Nadav Amit | 7305eb5 | 2014-11-02 11:54:44 +0200 | [diff] [blame] | 6176 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 6177 | vcpu->arch.dr6 |= DR6_BD | DR6_RTM; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6178 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 6179 | return 1; |
| 6180 | } |
| 6181 | } |
| 6182 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 6183 | if (vcpu->guest_debug == 0) { |
Paolo Bonzini | 8f22372 | 2016-02-26 12:09:49 +0100 | [diff] [blame] | 6184 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 6185 | CPU_BASED_MOV_DR_EXITING); |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 6186 | |
| 6187 | /* |
| 6188 | * No more DR vmexits; force a reload of the debug registers |
| 6189 | * and reenter on this instruction. The next vmexit will |
| 6190 | * retrieve the full state of the debug registers. |
| 6191 | */ |
| 6192 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT; |
| 6193 | return 1; |
| 6194 | } |
| 6195 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6196 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 6197 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 6198 | unsigned long val; |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 6199 | |
| 6200 | if (kvm_get_dr(vcpu, dr, &val)) |
| 6201 | return 1; |
| 6202 | kvm_register_write(vcpu, reg, val); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 6203 | } else |
Nadav Amit | 5777392 | 2014-06-18 17:19:23 +0300 | [diff] [blame] | 6204 | if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg))) |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 6205 | return 1; |
| 6206 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6207 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6208 | } |
| 6209 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 6210 | static u64 vmx_get_dr6(struct kvm_vcpu *vcpu) |
| 6211 | { |
| 6212 | return vcpu->arch.dr6; |
| 6213 | } |
| 6214 | |
| 6215 | static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val) |
| 6216 | { |
| 6217 | } |
| 6218 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 6219 | static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu) |
| 6220 | { |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 6221 | get_debugreg(vcpu->arch.db[0], 0); |
| 6222 | get_debugreg(vcpu->arch.db[1], 1); |
| 6223 | get_debugreg(vcpu->arch.db[2], 2); |
| 6224 | get_debugreg(vcpu->arch.db[3], 3); |
| 6225 | get_debugreg(vcpu->arch.dr6, 6); |
| 6226 | vcpu->arch.dr7 = vmcs_readl(GUEST_DR7); |
| 6227 | |
| 6228 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT; |
Paolo Bonzini | 8f22372 | 2016-02-26 12:09:49 +0100 | [diff] [blame] | 6229 | 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] | 6230 | } |
| 6231 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 6232 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 6233 | { |
| 6234 | vmcs_writel(GUEST_DR7, val); |
| 6235 | } |
| 6236 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6237 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6238 | { |
Kyle Huey | 6a908b6 | 2016-11-29 12:40:37 -0800 | [diff] [blame] | 6239 | return kvm_emulate_cpuid(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6240 | } |
| 6241 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6242 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6243 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6244 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6245 | struct msr_data msr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6246 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6247 | msr_info.index = ecx; |
| 6248 | msr_info.host_initiated = false; |
| 6249 | if (vmx_get_msr(vcpu, &msr_info)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6250 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 6251 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6252 | return 1; |
| 6253 | } |
| 6254 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6255 | trace_kvm_msr_read(ecx, msr_info.data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 6256 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6257 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 6258 | vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u; |
| 6259 | vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6260 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6261 | } |
| 6262 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6263 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6264 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 6265 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6266 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 6267 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 6268 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6269 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 6270 | msr.data = data; |
| 6271 | msr.index = ecx; |
| 6272 | msr.host_initiated = false; |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 6273 | if (kvm_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6274 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 6275 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6276 | return 1; |
| 6277 | } |
| 6278 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 6279 | trace_kvm_msr_write(ecx, data); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6280 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6281 | } |
| 6282 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6283 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6284 | { |
Paolo Bonzini | eb90f34 | 2016-12-18 14:02:21 +0100 | [diff] [blame] | 6285 | kvm_apic_update_ppr(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 6286 | return 1; |
| 6287 | } |
| 6288 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6289 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6290 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 6291 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 6292 | CPU_BASED_VIRTUAL_INTR_PENDING); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 6293 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6294 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6295 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 6296 | ++vcpu->stat.irq_window_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6297 | return 1; |
| 6298 | } |
| 6299 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6300 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6301 | { |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 6302 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6303 | } |
| 6304 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6305 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6306 | { |
Andrey Smetanin | 0d9c055 | 2016-02-11 16:44:59 +0300 | [diff] [blame] | 6307 | return kvm_emulate_hypercall(vcpu); |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 6308 | } |
| 6309 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 6310 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 6311 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 6312 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 6313 | } |
| 6314 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6315 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6316 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6317 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6318 | |
| 6319 | kvm_mmu_invlpg(vcpu, exit_qualification); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6320 | return kvm_skip_emulated_instruction(vcpu); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 6321 | } |
| 6322 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 6323 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 6324 | { |
| 6325 | int err; |
| 6326 | |
| 6327 | err = kvm_rdpmc(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6328 | return kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 6329 | } |
| 6330 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6331 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 6332 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6333 | return kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 6334 | } |
| 6335 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 6336 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 6337 | { |
| 6338 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 6339 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 6340 | |
| 6341 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6342 | return kvm_skip_emulated_instruction(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 6343 | return 1; |
| 6344 | } |
| 6345 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6346 | static int handle_xsaves(struct kvm_vcpu *vcpu) |
| 6347 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6348 | kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6349 | WARN(1, "this should never happen\n"); |
| 6350 | return 1; |
| 6351 | } |
| 6352 | |
| 6353 | static int handle_xrstors(struct kvm_vcpu *vcpu) |
| 6354 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6355 | kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 6356 | WARN(1, "this should never happen\n"); |
| 6357 | return 1; |
| 6358 | } |
| 6359 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6360 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 6361 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 6362 | if (likely(fasteoi)) { |
| 6363 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6364 | int access_type, offset; |
| 6365 | |
| 6366 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 6367 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 6368 | /* |
| 6369 | * Sane guest uses MOV to write EOI, with written value |
| 6370 | * not cared. So make a short-circuit here by avoiding |
| 6371 | * heavy instruction emulation. |
| 6372 | */ |
| 6373 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 6374 | (offset == APIC_EOI)) { |
| 6375 | kvm_lapic_set_eoi(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6376 | return kvm_skip_emulated_instruction(vcpu); |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 6377 | } |
| 6378 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 6379 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 6380 | } |
| 6381 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6382 | static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu) |
| 6383 | { |
| 6384 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6385 | int vector = exit_qualification & 0xff; |
| 6386 | |
| 6387 | /* EOI-induced VM exit is trap-like and thus no need to adjust IP */ |
| 6388 | kvm_apic_set_eoi_accelerated(vcpu, vector); |
| 6389 | return 1; |
| 6390 | } |
| 6391 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 6392 | static int handle_apic_write(struct kvm_vcpu *vcpu) |
| 6393 | { |
| 6394 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6395 | u32 offset = exit_qualification & 0xfff; |
| 6396 | |
| 6397 | /* APIC-write VM exit is trap-like and thus no need to adjust IP */ |
| 6398 | kvm_apic_write_nodecode(vcpu, offset); |
| 6399 | return 1; |
| 6400 | } |
| 6401 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6402 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6403 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 6404 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6405 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 6406 | bool has_error_code = false; |
| 6407 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6408 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6409 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6410 | |
| 6411 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6412 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6413 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6414 | |
| 6415 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 6416 | |
| 6417 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6418 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 6419 | switch (type) { |
| 6420 | case INTR_TYPE_NMI_INTR: |
| 6421 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 6422 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6423 | break; |
| 6424 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6425 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6426 | kvm_clear_interrupt_queue(vcpu); |
| 6427 | break; |
| 6428 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 6429 | if (vmx->idt_vectoring_info & |
| 6430 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 6431 | has_error_code = true; |
| 6432 | error_code = |
| 6433 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 6434 | } |
| 6435 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6436 | case INTR_TYPE_SOFT_EXCEPTION: |
| 6437 | kvm_clear_exception_queue(vcpu); |
| 6438 | break; |
| 6439 | default: |
| 6440 | break; |
| 6441 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 6442 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6443 | tss_selector = exit_qualification; |
| 6444 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 6445 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 6446 | type != INTR_TYPE_EXT_INTR && |
| 6447 | type != INTR_TYPE_NMI_INTR)) |
| 6448 | skip_emulated_instruction(vcpu); |
| 6449 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 6450 | if (kvm_task_switch(vcpu, tss_selector, |
| 6451 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 6452 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 6453 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6454 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6455 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6456 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 6457 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6458 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6459 | /* |
| 6460 | * TODO: What about debug traps on tss switch? |
| 6461 | * Are we supposed to inject them and update dr6? |
| 6462 | */ |
| 6463 | |
| 6464 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 6465 | } |
| 6466 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6467 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6468 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6469 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6470 | gpa_t gpa; |
Paolo Bonzini | eebed24 | 2016-11-28 14:39:58 +0100 | [diff] [blame] | 6471 | u64 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6472 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 6473 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6474 | |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 6475 | /* |
| 6476 | * EPT violation happened while executing iret from NMI, |
| 6477 | * "blocked by NMI" bit has to be set before next VM entry. |
| 6478 | * There are errata that may cause this bit to not be set: |
| 6479 | * AAK134, BY25. |
| 6480 | */ |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 6481 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 6482 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 6483 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI); |
| 6484 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6485 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6486 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6487 | |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6488 | /* Is it a read fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6489 | error_code = (exit_qualification & EPT_VIOLATION_ACC_READ) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6490 | ? PFERR_USER_MASK : 0; |
| 6491 | /* Is it a write fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6492 | error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6493 | ? PFERR_WRITE_MASK : 0; |
| 6494 | /* Is it a fetch fault? */ |
Junaid Shahid | ab22a47 | 2016-12-21 20:29:28 -0800 | [diff] [blame] | 6495 | error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR) |
Junaid Shahid | 27959a4 | 2016-12-06 16:46:10 -0800 | [diff] [blame] | 6496 | ? PFERR_FETCH_MASK : 0; |
| 6497 | /* ept page table entry is present? */ |
| 6498 | error_code |= (exit_qualification & |
| 6499 | (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE | |
| 6500 | EPT_VIOLATION_EXECUTABLE)) |
| 6501 | ? PFERR_PRESENT_MASK : 0; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6502 | |
Paolo Bonzini | eebed24 | 2016-11-28 14:39:58 +0100 | [diff] [blame] | 6503 | error_code |= (exit_qualification & 0x100) != 0 ? |
| 6504 | PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 6505 | |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6506 | vcpu->arch.exit_qualification = exit_qualification; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 6507 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 6508 | } |
| 6509 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6510 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6511 | { |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 6512 | int ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6513 | gpa_t gpa; |
| 6514 | |
Paolo Bonzini | 9034e6e | 2017-08-17 18:36:58 +0200 | [diff] [blame] | 6515 | /* |
| 6516 | * A nested guest cannot optimize MMIO vmexits, because we have an |
| 6517 | * nGPA here instead of the required GPA. |
| 6518 | */ |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6519 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Paolo Bonzini | 9034e6e | 2017-08-17 18:36:58 +0200 | [diff] [blame] | 6520 | if (!is_guest_mode(vcpu) && |
| 6521 | !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) { |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 6522 | trace_kvm_fast_mmio(gpa); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6523 | return kvm_skip_emulated_instruction(vcpu); |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 6524 | } |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6525 | |
Paolo Bonzini | e08d26f | 2017-08-17 18:36:56 +0200 | [diff] [blame] | 6526 | ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0); |
| 6527 | if (ret >= 0) |
| 6528 | return ret; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 6529 | |
| 6530 | /* It is the real ept misconfig */ |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 6531 | WARN_ON(1); |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6532 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6533 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 6534 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 6535 | |
| 6536 | return 0; |
| 6537 | } |
| 6538 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6539 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6540 | { |
Paolo Bonzini | 47c0152 | 2016-12-19 11:44:07 +0100 | [diff] [blame] | 6541 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 6542 | CPU_BASED_VIRTUAL_NMI_PENDING); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6543 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6544 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 6545 | |
| 6546 | return 1; |
| 6547 | } |
| 6548 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6549 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6550 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 6551 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6552 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6553 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6554 | u32 cpu_exec_ctrl; |
| 6555 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 6556 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6557 | |
| 6558 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 6559 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6560 | |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 6561 | while (vmx->emulation_required && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 6562 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 6563 | return handle_interrupt_window(&vmx->vcpu); |
| 6564 | |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 6565 | if (kvm_test_request(KVM_REQ_EVENT, vcpu)) |
Avi Kivity | de87dcdd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 6566 | return 1; |
| 6567 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 6568 | err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6569 | |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 6570 | if (err == EMULATE_USER_EXIT) { |
Paolo Bonzini | 94452b9 | 2013-08-27 15:41:42 +0200 | [diff] [blame] | 6571 | ++vcpu->stat.mmio_exits; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6572 | ret = 0; |
| 6573 | goto out; |
| 6574 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 6575 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 6576 | if (err != EMULATE_DONE) { |
| 6577 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6578 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6579 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 6580 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 6581 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6582 | |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 6583 | if (vcpu->arch.halt_request) { |
| 6584 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6585 | ret = kvm_vcpu_halt(vcpu); |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 6586 | goto out; |
| 6587 | } |
| 6588 | |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6589 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6590 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6591 | if (need_resched()) |
| 6592 | schedule(); |
| 6593 | } |
| 6594 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 6595 | out: |
| 6596 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 6597 | } |
| 6598 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6599 | static int __grow_ple_window(int val) |
| 6600 | { |
| 6601 | if (ple_window_grow < 1) |
| 6602 | return ple_window; |
| 6603 | |
| 6604 | val = min(val, ple_window_actual_max); |
| 6605 | |
| 6606 | if (ple_window_grow < ple_window) |
| 6607 | val *= ple_window_grow; |
| 6608 | else |
| 6609 | val += ple_window_grow; |
| 6610 | |
| 6611 | return val; |
| 6612 | } |
| 6613 | |
| 6614 | static int __shrink_ple_window(int val, int modifier, int minimum) |
| 6615 | { |
| 6616 | if (modifier < 1) |
| 6617 | return ple_window; |
| 6618 | |
| 6619 | if (modifier < ple_window) |
| 6620 | val /= modifier; |
| 6621 | else |
| 6622 | val -= modifier; |
| 6623 | |
| 6624 | return max(val, minimum); |
| 6625 | } |
| 6626 | |
| 6627 | static void grow_ple_window(struct kvm_vcpu *vcpu) |
| 6628 | { |
| 6629 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6630 | int old = vmx->ple_window; |
| 6631 | |
| 6632 | vmx->ple_window = __grow_ple_window(old); |
| 6633 | |
| 6634 | if (vmx->ple_window != old) |
| 6635 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6636 | |
| 6637 | 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] | 6638 | } |
| 6639 | |
| 6640 | static void shrink_ple_window(struct kvm_vcpu *vcpu) |
| 6641 | { |
| 6642 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6643 | int old = vmx->ple_window; |
| 6644 | |
| 6645 | vmx->ple_window = __shrink_ple_window(old, |
| 6646 | ple_window_shrink, ple_window); |
| 6647 | |
| 6648 | if (vmx->ple_window != old) |
| 6649 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6650 | |
| 6651 | 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] | 6652 | } |
| 6653 | |
| 6654 | /* |
| 6655 | * ple_window_actual_max is computed to be one grow_ple_window() below |
| 6656 | * ple_window_max. (See __grow_ple_window for the reason.) |
| 6657 | * This prevents overflows, because ple_window_max is int. |
| 6658 | * ple_window_max effectively rounded down to a multiple of ple_window_grow in |
| 6659 | * this process. |
| 6660 | * ple_window_max is also prevented from setting vmx->ple_window < ple_window. |
| 6661 | */ |
| 6662 | static void update_ple_window_actual_max(void) |
| 6663 | { |
| 6664 | ple_window_actual_max = |
| 6665 | __shrink_ple_window(max(ple_window_max, ple_window), |
| 6666 | ple_window_grow, INT_MIN); |
| 6667 | } |
| 6668 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6669 | /* |
| 6670 | * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR. |
| 6671 | */ |
| 6672 | static void wakeup_handler(void) |
| 6673 | { |
| 6674 | struct kvm_vcpu *vcpu; |
| 6675 | int cpu = smp_processor_id(); |
| 6676 | |
| 6677 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6678 | list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu), |
| 6679 | blocked_vcpu_list) { |
| 6680 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 6681 | |
| 6682 | if (pi_test_on(pi_desc) == 1) |
| 6683 | kvm_vcpu_kick(vcpu); |
| 6684 | } |
| 6685 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6686 | } |
| 6687 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6688 | void vmx_enable_tdp(void) |
| 6689 | { |
| 6690 | kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK, |
| 6691 | enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull, |
| 6692 | enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull, |
| 6693 | 0ull, VMX_EPT_EXECUTABLE_MASK, |
| 6694 | cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK, |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 6695 | VMX_EPT_RWX_MASK, 0ull); |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6696 | |
| 6697 | ept_set_mmio_spte_mask(); |
| 6698 | kvm_enable_tdp(); |
| 6699 | } |
| 6700 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6701 | static __init int hardware_setup(void) |
| 6702 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6703 | int r = -ENOMEM, i, msr; |
| 6704 | |
| 6705 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6706 | |
| 6707 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) |
| 6708 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
| 6709 | |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6710 | for (i = 0; i < VMX_BITMAP_NR; i++) { |
| 6711 | vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6712 | if (!vmx_bitmap[i]) |
| 6713 | goto out; |
| 6714 | } |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6715 | |
| 6716 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6717 | memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE); |
| 6718 | memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE); |
| 6719 | |
| 6720 | /* |
| 6721 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6722 | * delays, but the vmexits simply slow things down). |
| 6723 | */ |
| 6724 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6725 | clear_bit(0x80, vmx_io_bitmap_a); |
| 6726 | |
| 6727 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
| 6728 | |
| 6729 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6730 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
| 6731 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6732 | if (setup_vmcs_config(&vmcs_config) < 0) { |
| 6733 | r = -EIO; |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6734 | goto out; |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6735 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6736 | |
| 6737 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 6738 | kvm_enable_efer_bits(EFER_NX); |
| 6739 | |
Wanpeng Li | 08d839c | 2017-03-23 05:30:08 -0700 | [diff] [blame] | 6740 | if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() || |
| 6741 | !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global())) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6742 | enable_vpid = 0; |
Wanpeng Li | 08d839c | 2017-03-23 05:30:08 -0700 | [diff] [blame] | 6743 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6744 | if (!cpu_has_vmx_shadow_vmcs()) |
| 6745 | enable_shadow_vmcs = 0; |
| 6746 | if (enable_shadow_vmcs) |
| 6747 | init_vmcs_shadow_fields(); |
| 6748 | |
| 6749 | if (!cpu_has_vmx_ept() || |
David Hildenbrand | 42aa53b | 2017-08-10 23:15:29 +0200 | [diff] [blame] | 6750 | !cpu_has_vmx_ept_4levels() || |
David Hildenbrand | f5f5158 | 2017-08-24 20:51:30 +0200 | [diff] [blame] | 6751 | !cpu_has_vmx_ept_mt_wb() || |
Wanpeng Li | 8ad8182 | 2017-10-09 15:51:53 -0700 | [diff] [blame] | 6752 | !cpu_has_vmx_invept_global()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6753 | enable_ept = 0; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6754 | |
Wanpeng Li | fce6ac4 | 2017-05-11 02:58:56 -0700 | [diff] [blame] | 6755 | if (!cpu_has_vmx_ept_ad_bits() || !enable_ept) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6756 | enable_ept_ad_bits = 0; |
| 6757 | |
Wanpeng Li | 8ad8182 | 2017-10-09 15:51:53 -0700 | [diff] [blame] | 6758 | if (!cpu_has_vmx_unrestricted_guest() || !enable_ept) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6759 | enable_unrestricted_guest = 0; |
| 6760 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6761 | if (!cpu_has_vmx_flexpriority()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6762 | flexpriority_enabled = 0; |
| 6763 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6764 | /* |
| 6765 | * set_apic_access_page_addr() is used to reload apic access |
| 6766 | * page upon invalidation. No need to do anything if not |
| 6767 | * using the APIC_ACCESS_ADDR VMCS field. |
| 6768 | */ |
| 6769 | if (!flexpriority_enabled) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6770 | kvm_x86_ops->set_apic_access_page_addr = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6771 | |
| 6772 | if (!cpu_has_vmx_tpr_shadow()) |
| 6773 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6774 | |
| 6775 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 6776 | kvm_disable_largepages(); |
| 6777 | |
Wanpeng Li | 0f10768 | 2017-09-28 18:06:24 -0700 | [diff] [blame] | 6778 | if (!cpu_has_vmx_ple()) { |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6779 | ple_gap = 0; |
Wanpeng Li | 0f10768 | 2017-09-28 18:06:24 -0700 | [diff] [blame] | 6780 | ple_window = 0; |
| 6781 | ple_window_grow = 0; |
| 6782 | ple_window_max = 0; |
| 6783 | ple_window_shrink = 0; |
| 6784 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6785 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 6786 | if (!cpu_has_vmx_apicv()) { |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6787 | enable_apicv = 0; |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 6788 | kvm_x86_ops->sync_pir_to_irr = NULL; |
| 6789 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6790 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame] | 6791 | if (cpu_has_vmx_tsc_scaling()) { |
| 6792 | kvm_has_tsc_control = true; |
| 6793 | kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX; |
| 6794 | kvm_tsc_scaling_ratio_frac_bits = 48; |
| 6795 | } |
| 6796 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6797 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6798 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6799 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6800 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6801 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6802 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6803 | |
Wanpeng Li | c63e456 | 2016-09-23 19:17:16 +0800 | [diff] [blame] | 6804 | memcpy(vmx_msr_bitmap_legacy_x2apic_apicv, |
| 6805 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6806 | memcpy(vmx_msr_bitmap_longmode_x2apic_apicv, |
| 6807 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6808 | memcpy(vmx_msr_bitmap_legacy_x2apic, |
| 6809 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6810 | memcpy(vmx_msr_bitmap_longmode_x2apic, |
| 6811 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
| 6812 | |
Wanpeng Li | 04bb92e | 2015-09-16 19:31:11 +0800 | [diff] [blame] | 6813 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 6814 | |
Radim Krčmář | 40d8338 | 2016-09-29 22:41:31 +0200 | [diff] [blame] | 6815 | for (msr = 0x800; msr <= 0x8ff; msr++) { |
| 6816 | if (msr == 0x839 /* TMCCT */) |
| 6817 | continue; |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6818 | vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true); |
Radim Krčmář | 40d8338 | 2016-09-29 22:41:31 +0200 | [diff] [blame] | 6819 | } |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6820 | |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 6821 | /* |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6822 | * TPR reads and writes can be virtualized even if virtual interrupt |
| 6823 | * delivery is not in use. |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 6824 | */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6825 | vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true); |
| 6826 | vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false); |
| 6827 | |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 6828 | /* EOI */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6829 | vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true); |
Roman Kagan | 3ce424e | 2016-05-18 17:48:20 +0300 | [diff] [blame] | 6830 | /* SELF-IPI */ |
Radim Krčmář | 2e69f86 | 2016-09-29 22:41:32 +0200 | [diff] [blame] | 6831 | vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true); |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6832 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6833 | if (enable_ept) |
| 6834 | vmx_enable_tdp(); |
| 6835 | else |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6836 | kvm_disable_tdp(); |
| 6837 | |
| 6838 | update_ple_window_actual_max(); |
| 6839 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 6840 | /* |
| 6841 | * Only enable PML when hardware supports PML feature, and both EPT |
| 6842 | * and EPT A/D bit features are enabled -- PML depends on them to work. |
| 6843 | */ |
| 6844 | if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml()) |
| 6845 | enable_pml = 0; |
| 6846 | |
| 6847 | if (!enable_pml) { |
| 6848 | kvm_x86_ops->slot_enable_log_dirty = NULL; |
| 6849 | kvm_x86_ops->slot_disable_log_dirty = NULL; |
| 6850 | kvm_x86_ops->flush_log_dirty = NULL; |
| 6851 | kvm_x86_ops->enable_log_dirty_pt_masked = NULL; |
| 6852 | } |
| 6853 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 6854 | if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) { |
| 6855 | u64 vmx_msr; |
| 6856 | |
| 6857 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 6858 | cpu_preemption_timer_multi = |
| 6859 | vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK; |
| 6860 | } else { |
| 6861 | kvm_x86_ops->set_hv_timer = NULL; |
| 6862 | kvm_x86_ops->cancel_hv_timer = NULL; |
| 6863 | } |
| 6864 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6865 | kvm_set_posted_intr_wakeup_handler(wakeup_handler); |
| 6866 | |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 6867 | kvm_mce_cap_supported |= MCG_LMCE_P; |
| 6868 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6869 | return alloc_kvm_area(); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6870 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6871 | out: |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6872 | for (i = 0; i < VMX_BITMAP_NR; i++) |
| 6873 | free_page((unsigned long)vmx_bitmap[i]); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6874 | |
| 6875 | return r; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6876 | } |
| 6877 | |
| 6878 | static __exit void hardware_unsetup(void) |
| 6879 | { |
Radim Krčmář | 2361133 | 2016-09-29 22:41:33 +0200 | [diff] [blame] | 6880 | int i; |
| 6881 | |
| 6882 | for (i = 0; i < VMX_BITMAP_NR; i++) |
| 6883 | free_page((unsigned long)vmx_bitmap[i]); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6884 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6885 | free_kvm_area(); |
| 6886 | } |
| 6887 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6888 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6889 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 6890 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 6891 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 6892 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6893 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6894 | if (ple_gap) |
| 6895 | grow_ple_window(vcpu); |
| 6896 | |
Longpeng(Mike) | de63ad4 | 2017-08-08 12:05:33 +0800 | [diff] [blame] | 6897 | /* |
| 6898 | * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting" |
| 6899 | * VM-execution control is ignored if CPL > 0. OTOH, KVM |
| 6900 | * never set PAUSE_EXITING and just set PLE if supported, |
| 6901 | * so the vcpu must be CPL=0 if it gets a PAUSE exit. |
| 6902 | */ |
| 6903 | kvm_vcpu_on_spin(vcpu, true); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6904 | return kvm_skip_emulated_instruction(vcpu); |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6905 | } |
| 6906 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6907 | static int handle_nop(struct kvm_vcpu *vcpu) |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6908 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6909 | return kvm_skip_emulated_instruction(vcpu); |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6910 | } |
| 6911 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6912 | static int handle_mwait(struct kvm_vcpu *vcpu) |
| 6913 | { |
| 6914 | printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n"); |
| 6915 | return handle_nop(vcpu); |
| 6916 | } |
| 6917 | |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 6918 | static int handle_invalid_op(struct kvm_vcpu *vcpu) |
| 6919 | { |
| 6920 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6921 | return 1; |
| 6922 | } |
| 6923 | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 6924 | static int handle_monitor_trap(struct kvm_vcpu *vcpu) |
| 6925 | { |
| 6926 | return 1; |
| 6927 | } |
| 6928 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6929 | static int handle_monitor(struct kvm_vcpu *vcpu) |
| 6930 | { |
| 6931 | printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n"); |
| 6932 | return handle_nop(vcpu); |
| 6933 | } |
| 6934 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6935 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6936 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 6937 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 6938 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 6939 | * allows keeping them loaded on the processor, and in the future will allow |
| 6940 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 6941 | * every entry if they never change. |
| 6942 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 6943 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 6944 | * |
| 6945 | * The following functions allocate and free a vmcs02 in this pool. |
| 6946 | */ |
| 6947 | |
| 6948 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 6949 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 6950 | { |
| 6951 | struct vmcs02_list *item; |
| 6952 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6953 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 6954 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6955 | return &item->vmcs02; |
| 6956 | } |
| 6957 | |
| 6958 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 6959 | /* Recycle the least recently used VMCS. */ |
Geliang Tang | d74c0e6 | 2016-01-01 19:47:14 +0800 | [diff] [blame] | 6960 | item = list_last_entry(&vmx->nested.vmcs02_pool, |
| 6961 | struct vmcs02_list, list); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6962 | item->vmptr = vmx->nested.current_vmptr; |
| 6963 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6964 | return &item->vmcs02; |
| 6965 | } |
| 6966 | |
| 6967 | /* Create a new VMCS */ |
Ioan Orghici | 0fa24ce | 2013-03-10 15:46:00 +0200 | [diff] [blame] | 6968 | item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6969 | if (!item) |
| 6970 | return NULL; |
| 6971 | item->vmcs02.vmcs = alloc_vmcs(); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 6972 | item->vmcs02.shadow_vmcs = NULL; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6973 | if (!item->vmcs02.vmcs) { |
| 6974 | kfree(item); |
| 6975 | return NULL; |
| 6976 | } |
| 6977 | loaded_vmcs_init(&item->vmcs02); |
| 6978 | item->vmptr = vmx->nested.current_vmptr; |
| 6979 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 6980 | vmx->nested.vmcs02_num++; |
| 6981 | return &item->vmcs02; |
| 6982 | } |
| 6983 | |
| 6984 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 6985 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 6986 | { |
| 6987 | struct vmcs02_list *item; |
| 6988 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6989 | if (item->vmptr == vmptr) { |
| 6990 | free_loaded_vmcs(&item->vmcs02); |
| 6991 | list_del(&item->list); |
| 6992 | kfree(item); |
| 6993 | vmx->nested.vmcs02_num--; |
| 6994 | return; |
| 6995 | } |
| 6996 | } |
| 6997 | |
| 6998 | /* |
| 6999 | * Free all VMCSs saved for this vcpu, except the one pointed by |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 7000 | * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs |
| 7001 | * must be &vmx->vmcs01. |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7002 | */ |
| 7003 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 7004 | { |
| 7005 | struct vmcs02_list *item, *n; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 7006 | |
| 7007 | WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7008 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 7009 | /* |
| 7010 | * Something will leak if the above WARN triggers. Better than |
| 7011 | * a use-after-free. |
| 7012 | */ |
| 7013 | if (vmx->loaded_vmcs == &item->vmcs02) |
| 7014 | continue; |
| 7015 | |
| 7016 | free_loaded_vmcs(&item->vmcs02); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7017 | list_del(&item->list); |
| 7018 | kfree(item); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 7019 | vmx->nested.vmcs02_num--; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7020 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7021 | } |
| 7022 | |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 7023 | /* |
| 7024 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 7025 | * set the success or error code of an emulated VMX instruction, as specified |
| 7026 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 7027 | */ |
| 7028 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 7029 | { |
| 7030 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 7031 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 7032 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 7033 | } |
| 7034 | |
| 7035 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 7036 | { |
| 7037 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 7038 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 7039 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 7040 | | X86_EFLAGS_CF); |
| 7041 | } |
| 7042 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7043 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 7044 | u32 vm_instruction_error) |
| 7045 | { |
| 7046 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 7047 | /* |
| 7048 | * failValid writes the error number to the current VMCS, which |
| 7049 | * can't be done there isn't a current VMCS. |
| 7050 | */ |
| 7051 | nested_vmx_failInvalid(vcpu); |
| 7052 | return; |
| 7053 | } |
| 7054 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 7055 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 7056 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 7057 | | X86_EFLAGS_ZF); |
| 7058 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 7059 | /* |
| 7060 | * We don't need to force a shadow sync because |
| 7061 | * VM_INSTRUCTION_ERROR is not shadowed |
| 7062 | */ |
| 7063 | } |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7064 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 7065 | static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator) |
| 7066 | { |
| 7067 | /* TODO: not to reset guest simply here. */ |
| 7068 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 7069 | pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 7070 | } |
| 7071 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 7072 | static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer) |
| 7073 | { |
| 7074 | struct vcpu_vmx *vmx = |
| 7075 | container_of(timer, struct vcpu_vmx, nested.preemption_timer); |
| 7076 | |
| 7077 | vmx->nested.preemption_timer_expired = true; |
| 7078 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 7079 | kvm_vcpu_kick(&vmx->vcpu); |
| 7080 | |
| 7081 | return HRTIMER_NORESTART; |
| 7082 | } |
| 7083 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7084 | /* |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7085 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 7086 | * exit caused by such an instruction (run by a guest hypervisor). |
| 7087 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 7088 | * #UD or #GP. |
| 7089 | */ |
| 7090 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 7091 | unsigned long exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7092 | u32 vmx_instruction_info, bool wr, gva_t *ret) |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7093 | { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7094 | gva_t off; |
| 7095 | bool exn; |
| 7096 | struct kvm_segment s; |
| 7097 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7098 | /* |
| 7099 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 7100 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 7101 | * addressing components of the operand. Only the displacement part |
| 7102 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 7103 | * For how an actual address is calculated from all these components, |
| 7104 | * refer to Vol. 1, "Operand Addressing". |
| 7105 | */ |
| 7106 | int scaling = vmx_instruction_info & 3; |
| 7107 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 7108 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 7109 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 7110 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 7111 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 7112 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 7113 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 7114 | |
| 7115 | if (is_reg) { |
| 7116 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7117 | return 1; |
| 7118 | } |
| 7119 | |
| 7120 | /* Addr = segment_base + offset */ |
| 7121 | /* offset = base + [index * scale] + displacement */ |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7122 | off = exit_qualification; /* holds the displacement */ |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7123 | if (base_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7124 | off += kvm_register_read(vcpu, base_reg); |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7125 | if (index_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7126 | off += kvm_register_read(vcpu, index_reg)<<scaling; |
| 7127 | vmx_get_segment(vcpu, &s, seg_reg); |
| 7128 | *ret = s.base + off; |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7129 | |
| 7130 | if (addr_size == 1) /* 32 bit */ |
| 7131 | *ret &= 0xffffffff; |
| 7132 | |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7133 | /* Checks for #GP/#SS exceptions. */ |
| 7134 | exn = false; |
Quentin Casasnovas | ff30ef4 | 2016-06-18 11:01:05 +0200 | [diff] [blame] | 7135 | if (is_long_mode(vcpu)) { |
| 7136 | /* Long mode: #GP(0)/#SS(0) if the memory address is in a |
| 7137 | * non-canonical form. This is the only check on the memory |
| 7138 | * destination for long mode! |
| 7139 | */ |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 7140 | exn = is_noncanonical_address(*ret, vcpu); |
Quentin Casasnovas | ff30ef4 | 2016-06-18 11:01:05 +0200 | [diff] [blame] | 7141 | } else if (is_protmode(vcpu)) { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7142 | /* Protected mode: apply checks for segment validity in the |
| 7143 | * following order: |
| 7144 | * - segment type check (#GP(0) may be thrown) |
| 7145 | * - usability check (#GP(0)/#SS(0)) |
| 7146 | * - limit check (#GP(0)/#SS(0)) |
| 7147 | */ |
| 7148 | if (wr) |
| 7149 | /* #GP(0) if the destination operand is located in a |
| 7150 | * read-only data segment or any code segment. |
| 7151 | */ |
| 7152 | exn = ((s.type & 0xa) == 0 || (s.type & 8)); |
| 7153 | else |
| 7154 | /* #GP(0) if the source operand is located in an |
| 7155 | * execute-only code segment |
| 7156 | */ |
| 7157 | exn = ((s.type & 0xa) == 8); |
Quentin Casasnovas | ff30ef4 | 2016-06-18 11:01:05 +0200 | [diff] [blame] | 7158 | if (exn) { |
| 7159 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 7160 | return 1; |
| 7161 | } |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7162 | /* Protected mode: #GP(0)/#SS(0) if the segment is unusable. |
| 7163 | */ |
| 7164 | exn = (s.unusable != 0); |
| 7165 | /* Protected mode: #GP(0)/#SS(0) if the memory |
| 7166 | * operand is outside the segment limit. |
| 7167 | */ |
| 7168 | exn = exn || (off + sizeof(u64) > s.limit); |
| 7169 | } |
| 7170 | if (exn) { |
| 7171 | kvm_queue_exception_e(vcpu, |
| 7172 | seg_reg == VCPU_SREG_SS ? |
| 7173 | SS_VECTOR : GP_VECTOR, |
| 7174 | 0); |
| 7175 | return 1; |
| 7176 | } |
| 7177 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 7178 | return 0; |
| 7179 | } |
| 7180 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7181 | static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7182 | { |
| 7183 | gva_t gva; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7184 | struct x86_exception e; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7185 | |
| 7186 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7187 | vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7188 | return 1; |
| 7189 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7190 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer, |
| 7191 | sizeof(*vmpointer), &e)) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7192 | kvm_inject_page_fault(vcpu, &e); |
| 7193 | return 1; |
| 7194 | } |
| 7195 | |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7196 | return 0; |
| 7197 | } |
| 7198 | |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7199 | static int enter_vmx_operation(struct kvm_vcpu *vcpu) |
| 7200 | { |
| 7201 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7202 | struct vmcs *shadow_vmcs; |
| 7203 | |
| 7204 | if (cpu_has_vmx_msr_bitmap()) { |
| 7205 | vmx->nested.msr_bitmap = |
| 7206 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 7207 | if (!vmx->nested.msr_bitmap) |
| 7208 | goto out_msr_bitmap; |
| 7209 | } |
| 7210 | |
| 7211 | vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL); |
| 7212 | if (!vmx->nested.cached_vmcs12) |
| 7213 | goto out_cached_vmcs12; |
| 7214 | |
| 7215 | if (enable_shadow_vmcs) { |
| 7216 | shadow_vmcs = alloc_vmcs(); |
| 7217 | if (!shadow_vmcs) |
| 7218 | goto out_shadow_vmcs; |
| 7219 | /* mark vmcs as shadow */ |
| 7220 | shadow_vmcs->revision_id |= (1u << 31); |
| 7221 | /* init shadow vmcs */ |
| 7222 | vmcs_clear(shadow_vmcs); |
| 7223 | vmx->vmcs01.shadow_vmcs = shadow_vmcs; |
| 7224 | } |
| 7225 | |
| 7226 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 7227 | vmx->nested.vmcs02_num = 0; |
| 7228 | |
| 7229 | hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC, |
| 7230 | HRTIMER_MODE_REL_PINNED); |
| 7231 | vmx->nested.preemption_timer.function = vmx_preemption_timer_fn; |
| 7232 | |
| 7233 | vmx->nested.vmxon = true; |
| 7234 | return 0; |
| 7235 | |
| 7236 | out_shadow_vmcs: |
| 7237 | kfree(vmx->nested.cached_vmcs12); |
| 7238 | |
| 7239 | out_cached_vmcs12: |
| 7240 | free_page((unsigned long)vmx->nested.msr_bitmap); |
| 7241 | |
| 7242 | out_msr_bitmap: |
| 7243 | return -ENOMEM; |
| 7244 | } |
| 7245 | |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 7246 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7247 | * Emulate the VMXON instruction. |
| 7248 | * Currently, we just remember that VMX is active, and do not save or even |
| 7249 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 7250 | * do not currently need to store anything in that guest-allocated memory |
| 7251 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 7252 | * argument is different from the VMXON pointer (which the spec says they do). |
| 7253 | */ |
| 7254 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 7255 | { |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7256 | int ret; |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7257 | gpa_t vmptr; |
| 7258 | struct page *page; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7259 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7260 | const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED |
| 7261 | | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7262 | |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7263 | /* |
| 7264 | * The Intel VMX Instruction Reference lists a bunch of bits that are |
| 7265 | * prerequisite to running VMXON, most notably cr4.VMXE must be set to |
| 7266 | * 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 7267 | * Otherwise, we should fail with #UD. But most faulting conditions |
| 7268 | * have already been checked by hardware, prior to the VM-exit for |
| 7269 | * VMXON. We do test guest cr4.VMXE because processor CR4 always has |
| 7270 | * that bit set to 1 in non-root mode. |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7271 | */ |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7272 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) { |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7273 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7274 | return 1; |
| 7275 | } |
| 7276 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7277 | if (vmx->nested.vmxon) { |
| 7278 | nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7279 | return kvm_skip_emulated_instruction(vcpu); |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 7280 | } |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7281 | |
Haozhong Zhang | 3b84080 | 2016-06-22 14:59:54 +0800 | [diff] [blame] | 7282 | if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES) |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 7283 | != VMXON_NEEDED_FEATURES) { |
| 7284 | kvm_inject_gp(vcpu, 0); |
| 7285 | return 1; |
| 7286 | } |
| 7287 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7288 | if (nested_vmx_get_vmptr(vcpu, &vmptr)) |
Jim Mattson | 21e7fbe | 2016-12-22 15:49:55 -0800 | [diff] [blame] | 7289 | return 1; |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7290 | |
| 7291 | /* |
| 7292 | * SDM 3: 24.11.5 |
| 7293 | * The first 4 bytes of VMXON region contain the supported |
| 7294 | * VMCS revision identifier |
| 7295 | * |
| 7296 | * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case; |
| 7297 | * which replaces physical address width with 32 |
| 7298 | */ |
| 7299 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) { |
| 7300 | nested_vmx_failInvalid(vcpu); |
| 7301 | return kvm_skip_emulated_instruction(vcpu); |
| 7302 | } |
| 7303 | |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 7304 | page = kvm_vcpu_gpa_to_page(vcpu, vmptr); |
| 7305 | if (is_error_page(page)) { |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7306 | nested_vmx_failInvalid(vcpu); |
| 7307 | return kvm_skip_emulated_instruction(vcpu); |
| 7308 | } |
| 7309 | if (*(u32 *)kmap(page) != VMCS12_REVISION) { |
| 7310 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7311 | kvm_release_page_clean(page); |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7312 | nested_vmx_failInvalid(vcpu); |
| 7313 | return kvm_skip_emulated_instruction(vcpu); |
| 7314 | } |
| 7315 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7316 | kvm_release_page_clean(page); |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7317 | |
| 7318 | vmx->nested.vmxon_ptr = vmptr; |
Jim Mattson | e29acc5 | 2016-11-30 12:03:43 -0800 | [diff] [blame] | 7319 | ret = enter_vmx_operation(vcpu); |
| 7320 | if (ret) |
| 7321 | return ret; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7322 | |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 7323 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7324 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7325 | } |
| 7326 | |
| 7327 | /* |
| 7328 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 7329 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 7330 | * slightly different). It also specifies what exception to inject otherwise. |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7331 | * Note that many of these exceptions have priority over VM exits, so they |
| 7332 | * don't have to be checked again here. |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7333 | */ |
| 7334 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 7335 | { |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7336 | if (!to_vmx(vcpu)->nested.vmxon) { |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7337 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7338 | return 0; |
| 7339 | } |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7340 | return 1; |
| 7341 | } |
| 7342 | |
David Matlack | 8ca44e8 | 2017-08-01 14:00:39 -0700 | [diff] [blame] | 7343 | static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx) |
| 7344 | { |
| 7345 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS); |
| 7346 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 7347 | } |
| 7348 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7349 | static inline void nested_release_vmcs12(struct vcpu_vmx *vmx) |
| 7350 | { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7351 | if (vmx->nested.current_vmptr == -1ull) |
| 7352 | return; |
| 7353 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7354 | if (enable_shadow_vmcs) { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7355 | /* copy to memory all shadowed fields in case |
| 7356 | they were modified */ |
| 7357 | copy_shadow_to_vmcs12(vmx); |
| 7358 | vmx->nested.sync_shadow_vmcs = false; |
David Matlack | 8ca44e8 | 2017-08-01 14:00:39 -0700 | [diff] [blame] | 7359 | vmx_disable_shadow_vmcs(vmx); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7360 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 7361 | vmx->nested.posted_intr_nv = -1; |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7362 | |
| 7363 | /* Flush VMCS12 to guest memory */ |
Paolo Bonzini | 9f744c5 | 2017-07-27 15:54:46 +0200 | [diff] [blame] | 7364 | kvm_vcpu_write_guest_page(&vmx->vcpu, |
| 7365 | vmx->nested.current_vmptr >> PAGE_SHIFT, |
| 7366 | vmx->nested.cached_vmcs12, 0, VMCS12_SIZE); |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7367 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7368 | vmx->nested.current_vmptr = -1ull; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7369 | } |
| 7370 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7371 | /* |
| 7372 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 7373 | * just stops using VMX. |
| 7374 | */ |
| 7375 | static void free_nested(struct vcpu_vmx *vmx) |
| 7376 | { |
| 7377 | if (!vmx->nested.vmxon) |
| 7378 | return; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7379 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7380 | vmx->nested.vmxon = false; |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 7381 | free_vpid(vmx->nested.vpid02); |
David Matlack | 8ca44e8 | 2017-08-01 14:00:39 -0700 | [diff] [blame] | 7382 | vmx->nested.posted_intr_nv = -1; |
| 7383 | vmx->nested.current_vmptr = -1ull; |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 7384 | if (vmx->nested.msr_bitmap) { |
| 7385 | free_page((unsigned long)vmx->nested.msr_bitmap); |
| 7386 | vmx->nested.msr_bitmap = NULL; |
| 7387 | } |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7388 | if (enable_shadow_vmcs) { |
David Matlack | 8ca44e8 | 2017-08-01 14:00:39 -0700 | [diff] [blame] | 7389 | vmx_disable_shadow_vmcs(vmx); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7390 | vmcs_clear(vmx->vmcs01.shadow_vmcs); |
| 7391 | free_vmcs(vmx->vmcs01.shadow_vmcs); |
| 7392 | vmx->vmcs01.shadow_vmcs = NULL; |
| 7393 | } |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7394 | kfree(vmx->nested.cached_vmcs12); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 7395 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 7396 | if (vmx->nested.apic_access_page) { |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7397 | kvm_release_page_dirty(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 7398 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 7399 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7400 | if (vmx->nested.virtual_apic_page) { |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7401 | kvm_release_page_dirty(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 7402 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7403 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 7404 | if (vmx->nested.pi_desc_page) { |
| 7405 | kunmap(vmx->nested.pi_desc_page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7406 | kvm_release_page_dirty(vmx->nested.pi_desc_page); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 7407 | vmx->nested.pi_desc_page = NULL; |
| 7408 | vmx->nested.pi_desc = NULL; |
| 7409 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 7410 | |
| 7411 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7412 | } |
| 7413 | |
| 7414 | /* Emulate the VMXOFF instruction */ |
| 7415 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 7416 | { |
| 7417 | if (!nested_vmx_check_permission(vcpu)) |
| 7418 | return 1; |
| 7419 | free_nested(to_vmx(vcpu)); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 7420 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7421 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7422 | } |
| 7423 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7424 | /* Emulate the VMCLEAR instruction */ |
| 7425 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 7426 | { |
| 7427 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | 587d7e72 | 2017-03-02 12:41:48 -0800 | [diff] [blame] | 7428 | u32 zero = 0; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7429 | gpa_t vmptr; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7430 | |
| 7431 | if (!nested_vmx_check_permission(vcpu)) |
| 7432 | return 1; |
| 7433 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7434 | if (nested_vmx_get_vmptr(vcpu, &vmptr)) |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7435 | return 1; |
| 7436 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7437 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) { |
| 7438 | nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 7439 | return kvm_skip_emulated_instruction(vcpu); |
| 7440 | } |
| 7441 | |
| 7442 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 7443 | nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER); |
| 7444 | return kvm_skip_emulated_instruction(vcpu); |
| 7445 | } |
| 7446 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7447 | if (vmptr == vmx->nested.current_vmptr) |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 7448 | nested_release_vmcs12(vmx); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7449 | |
Jim Mattson | 587d7e72 | 2017-03-02 12:41:48 -0800 | [diff] [blame] | 7450 | kvm_vcpu_write_guest(vcpu, |
| 7451 | vmptr + offsetof(struct vmcs12, launch_state), |
| 7452 | &zero, sizeof(zero)); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7453 | |
| 7454 | nested_free_vmcs02(vmx, vmptr); |
| 7455 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7456 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7457 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7458 | } |
| 7459 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7460 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 7461 | |
| 7462 | /* Emulate the VMLAUNCH instruction */ |
| 7463 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 7464 | { |
| 7465 | return nested_vmx_run(vcpu, true); |
| 7466 | } |
| 7467 | |
| 7468 | /* Emulate the VMRESUME instruction */ |
| 7469 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 7470 | { |
| 7471 | |
| 7472 | return nested_vmx_run(vcpu, false); |
| 7473 | } |
| 7474 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7475 | /* |
| 7476 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 7477 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 7478 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 7479 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 7480 | * 64-bit fields are to be returned). |
| 7481 | */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7482 | static inline int vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 7483 | unsigned long field, u64 *ret) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7484 | { |
| 7485 | short offset = vmcs_field_to_offset(field); |
| 7486 | char *p; |
| 7487 | |
| 7488 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7489 | return offset; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7490 | |
| 7491 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 7492 | |
| 7493 | switch (vmcs_field_type(field)) { |
| 7494 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7495 | *ret = *((natural_width *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7496 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7497 | case VMCS_FIELD_TYPE_U16: |
| 7498 | *ret = *((u16 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7499 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7500 | case VMCS_FIELD_TYPE_U32: |
| 7501 | *ret = *((u32 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7502 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7503 | case VMCS_FIELD_TYPE_U64: |
| 7504 | *ret = *((u64 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7505 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7506 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7507 | WARN_ON(1); |
| 7508 | return -ENOENT; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7509 | } |
| 7510 | } |
| 7511 | |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7512 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7513 | static inline int vmcs12_write_any(struct kvm_vcpu *vcpu, |
| 7514 | unsigned long field, u64 field_value){ |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7515 | short offset = vmcs_field_to_offset(field); |
| 7516 | char *p = ((char *) get_vmcs12(vcpu)) + offset; |
| 7517 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7518 | return offset; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7519 | |
| 7520 | switch (vmcs_field_type(field)) { |
| 7521 | case VMCS_FIELD_TYPE_U16: |
| 7522 | *(u16 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7523 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7524 | case VMCS_FIELD_TYPE_U32: |
| 7525 | *(u32 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7526 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7527 | case VMCS_FIELD_TYPE_U64: |
| 7528 | *(u64 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7529 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7530 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7531 | *(natural_width *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7532 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7533 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7534 | WARN_ON(1); |
| 7535 | return -ENOENT; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7536 | } |
| 7537 | |
| 7538 | } |
| 7539 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7540 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx) |
| 7541 | { |
| 7542 | int i; |
| 7543 | unsigned long field; |
| 7544 | u64 field_value; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7545 | struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7546 | const unsigned long *fields = shadow_read_write_fields; |
| 7547 | const int num_fields = max_shadow_read_write_fields; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7548 | |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7549 | preempt_disable(); |
| 7550 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7551 | vmcs_load(shadow_vmcs); |
| 7552 | |
| 7553 | for (i = 0; i < num_fields; i++) { |
| 7554 | field = fields[i]; |
| 7555 | switch (vmcs_field_type(field)) { |
| 7556 | case VMCS_FIELD_TYPE_U16: |
| 7557 | field_value = vmcs_read16(field); |
| 7558 | break; |
| 7559 | case VMCS_FIELD_TYPE_U32: |
| 7560 | field_value = vmcs_read32(field); |
| 7561 | break; |
| 7562 | case VMCS_FIELD_TYPE_U64: |
| 7563 | field_value = vmcs_read64(field); |
| 7564 | break; |
| 7565 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7566 | field_value = vmcs_readl(field); |
| 7567 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7568 | default: |
| 7569 | WARN_ON(1); |
| 7570 | continue; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7571 | } |
| 7572 | vmcs12_write_any(&vmx->vcpu, field, field_value); |
| 7573 | } |
| 7574 | |
| 7575 | vmcs_clear(shadow_vmcs); |
| 7576 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7577 | |
| 7578 | preempt_enable(); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7579 | } |
| 7580 | |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7581 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx) |
| 7582 | { |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7583 | const unsigned long *fields[] = { |
| 7584 | shadow_read_write_fields, |
| 7585 | shadow_read_only_fields |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7586 | }; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7587 | const int max_fields[] = { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7588 | max_shadow_read_write_fields, |
| 7589 | max_shadow_read_only_fields |
| 7590 | }; |
| 7591 | int i, q; |
| 7592 | unsigned long field; |
| 7593 | u64 field_value = 0; |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 7594 | struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7595 | |
| 7596 | vmcs_load(shadow_vmcs); |
| 7597 | |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7598 | for (q = 0; q < ARRAY_SIZE(fields); q++) { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7599 | for (i = 0; i < max_fields[q]; i++) { |
| 7600 | field = fields[q][i]; |
| 7601 | vmcs12_read_any(&vmx->vcpu, field, &field_value); |
| 7602 | |
| 7603 | switch (vmcs_field_type(field)) { |
| 7604 | case VMCS_FIELD_TYPE_U16: |
| 7605 | vmcs_write16(field, (u16)field_value); |
| 7606 | break; |
| 7607 | case VMCS_FIELD_TYPE_U32: |
| 7608 | vmcs_write32(field, (u32)field_value); |
| 7609 | break; |
| 7610 | case VMCS_FIELD_TYPE_U64: |
| 7611 | vmcs_write64(field, (u64)field_value); |
| 7612 | break; |
| 7613 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7614 | vmcs_writel(field, (long)field_value); |
| 7615 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7616 | default: |
| 7617 | WARN_ON(1); |
| 7618 | break; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7619 | } |
| 7620 | } |
| 7621 | } |
| 7622 | |
| 7623 | vmcs_clear(shadow_vmcs); |
| 7624 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 7625 | } |
| 7626 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7627 | /* |
| 7628 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 7629 | * used before) all generate the same failure when it is missing. |
| 7630 | */ |
| 7631 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 7632 | { |
| 7633 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7634 | if (vmx->nested.current_vmptr == -1ull) { |
| 7635 | nested_vmx_failInvalid(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7636 | return 0; |
| 7637 | } |
| 7638 | return 1; |
| 7639 | } |
| 7640 | |
| 7641 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 7642 | { |
| 7643 | unsigned long field; |
| 7644 | u64 field_value; |
| 7645 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7646 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7647 | gva_t gva = 0; |
| 7648 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7649 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7650 | return 1; |
| 7651 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7652 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 7653 | return kvm_skip_emulated_instruction(vcpu); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7654 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7655 | /* Decode instruction info and find the field to read */ |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7656 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7657 | /* Read the field, zero-extended to a u64 field_value */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7658 | if (vmcs12_read_any(vcpu, field, &field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7659 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7660 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7661 | } |
| 7662 | /* |
| 7663 | * Now copy part of this value to register or memory, as requested. |
| 7664 | * Note that the number of bits actually copied is 32 or 64 depending |
| 7665 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 7666 | */ |
| 7667 | if (vmx_instruction_info & (1u << 10)) { |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7668 | kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7669 | field_value); |
| 7670 | } else { |
| 7671 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7672 | vmx_instruction_info, true, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7673 | return 1; |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7674 | /* _system ok, as hardware has verified cpl=0 */ |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7675 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 7676 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 7677 | } |
| 7678 | |
| 7679 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7680 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7681 | } |
| 7682 | |
| 7683 | |
| 7684 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 7685 | { |
| 7686 | unsigned long field; |
| 7687 | gva_t gva; |
| 7688 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7689 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7690 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 7691 | * mode, and eventually we need to write that into a field of several |
| 7692 | * possible lengths. The code below first zero-extends the value to 64 |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 7693 | * bit (field_value), and then copies only the appropriate number of |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7694 | * bits into the vmcs12 field. |
| 7695 | */ |
| 7696 | u64 field_value = 0; |
| 7697 | struct x86_exception e; |
| 7698 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7699 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7700 | return 1; |
| 7701 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7702 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 7703 | return kvm_skip_emulated_instruction(vcpu); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 7704 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7705 | if (vmx_instruction_info & (1u << 10)) |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7706 | field_value = kvm_register_readl(vcpu, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7707 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 7708 | else { |
| 7709 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7710 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7711 | return 1; |
| 7712 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7713 | &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7714 | kvm_inject_page_fault(vcpu, &e); |
| 7715 | return 1; |
| 7716 | } |
| 7717 | } |
| 7718 | |
| 7719 | |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7720 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7721 | if (vmcs_field_readonly(field)) { |
| 7722 | nested_vmx_failValid(vcpu, |
| 7723 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7724 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7725 | } |
| 7726 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7727 | if (vmcs12_write_any(vcpu, field, field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7728 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7729 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7730 | } |
| 7731 | |
| 7732 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7733 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7734 | } |
| 7735 | |
Jim Mattson | a8bc284 | 2016-11-30 12:03:44 -0800 | [diff] [blame] | 7736 | static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 7737 | { |
| 7738 | vmx->nested.current_vmptr = vmptr; |
| 7739 | if (enable_shadow_vmcs) { |
| 7740 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 7741 | SECONDARY_EXEC_SHADOW_VMCS); |
| 7742 | vmcs_write64(VMCS_LINK_POINTER, |
| 7743 | __pa(vmx->vmcs01.shadow_vmcs)); |
| 7744 | vmx->nested.sync_shadow_vmcs = true; |
| 7745 | } |
| 7746 | } |
| 7747 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7748 | /* Emulate the VMPTRLD instruction */ |
| 7749 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 7750 | { |
| 7751 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7752 | gpa_t vmptr; |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7753 | |
| 7754 | if (!nested_vmx_check_permission(vcpu)) |
| 7755 | return 1; |
| 7756 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7757 | if (nested_vmx_get_vmptr(vcpu, &vmptr)) |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7758 | return 1; |
| 7759 | |
Radim Krčmář | cbf7127 | 2017-05-19 15:48:51 +0200 | [diff] [blame] | 7760 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) { |
| 7761 | nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 7762 | return kvm_skip_emulated_instruction(vcpu); |
| 7763 | } |
| 7764 | |
| 7765 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 7766 | nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER); |
| 7767 | return kvm_skip_emulated_instruction(vcpu); |
| 7768 | } |
| 7769 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7770 | if (vmx->nested.current_vmptr != vmptr) { |
| 7771 | struct vmcs12 *new_vmcs12; |
| 7772 | struct page *page; |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 7773 | page = kvm_vcpu_gpa_to_page(vcpu, vmptr); |
| 7774 | if (is_error_page(page)) { |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7775 | nested_vmx_failInvalid(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7776 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7777 | } |
| 7778 | new_vmcs12 = kmap(page); |
| 7779 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 7780 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7781 | kvm_release_page_clean(page); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7782 | nested_vmx_failValid(vcpu, |
| 7783 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7784 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7785 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7786 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7787 | nested_release_vmcs12(vmx); |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 7788 | /* |
| 7789 | * Load VMCS12 from guest memory since it is not already |
| 7790 | * cached. |
| 7791 | */ |
Paolo Bonzini | 9f744c5 | 2017-07-27 15:54:46 +0200 | [diff] [blame] | 7792 | memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE); |
| 7793 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 7794 | kvm_release_page_clean(page); |
Paolo Bonzini | 9f744c5 | 2017-07-27 15:54:46 +0200 | [diff] [blame] | 7795 | |
Jim Mattson | a8bc284 | 2016-11-30 12:03:44 -0800 | [diff] [blame] | 7796 | set_current_vmptr(vmx, vmptr); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7797 | } |
| 7798 | |
| 7799 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7800 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7801 | } |
| 7802 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7803 | /* Emulate the VMPTRST instruction */ |
| 7804 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 7805 | { |
| 7806 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7807 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7808 | gva_t vmcs_gva; |
| 7809 | struct x86_exception e; |
| 7810 | |
| 7811 | if (!nested_vmx_check_permission(vcpu)) |
| 7812 | return 1; |
| 7813 | |
| 7814 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7815 | vmx_instruction_info, true, &vmcs_gva)) |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7816 | return 1; |
Jim Mattson | 70f3aac | 2017-04-26 08:53:46 -0700 | [diff] [blame] | 7817 | /* ok to use *_system, as hardware has verified cpl=0 */ |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7818 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 7819 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 7820 | sizeof(u64), &e)) { |
| 7821 | kvm_inject_page_fault(vcpu, &e); |
| 7822 | return 1; |
| 7823 | } |
| 7824 | nested_vmx_succeed(vcpu); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7825 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7826 | } |
| 7827 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7828 | /* Emulate the INVEPT instruction */ |
| 7829 | static int handle_invept(struct kvm_vcpu *vcpu) |
| 7830 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7831 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7832 | u32 vmx_instruction_info, types; |
| 7833 | unsigned long type; |
| 7834 | gva_t gva; |
| 7835 | struct x86_exception e; |
| 7836 | struct { |
| 7837 | u64 eptp, gpa; |
| 7838 | } operand; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7839 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7840 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7841 | SECONDARY_EXEC_ENABLE_EPT) || |
| 7842 | !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7843 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7844 | return 1; |
| 7845 | } |
| 7846 | |
| 7847 | if (!nested_vmx_check_permission(vcpu)) |
| 7848 | return 1; |
| 7849 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7850 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7851 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7852 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7853 | 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] | 7854 | |
Jim Mattson | 85c856b | 2016-10-26 08:38:38 -0700 | [diff] [blame] | 7855 | if (type >= 32 || !(types & (1 << type))) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7856 | nested_vmx_failValid(vcpu, |
| 7857 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7858 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7859 | } |
| 7860 | |
| 7861 | /* According to the Intel VMX instruction reference, the memory |
| 7862 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7863 | */ |
| 7864 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7865 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7866 | return 1; |
| 7867 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7868 | sizeof(operand), &e)) { |
| 7869 | kvm_inject_page_fault(vcpu, &e); |
| 7870 | return 1; |
| 7871 | } |
| 7872 | |
| 7873 | switch (type) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7874 | case VMX_EPT_EXTENT_GLOBAL: |
Bandan Das | 45e1181 | 2016-08-02 16:32:36 -0400 | [diff] [blame] | 7875 | /* |
| 7876 | * TODO: track mappings and invalidate |
| 7877 | * single context requests appropriately |
| 7878 | */ |
| 7879 | case VMX_EPT_EXTENT_CONTEXT: |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7880 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 7881 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7882 | nested_vmx_succeed(vcpu); |
| 7883 | break; |
| 7884 | default: |
| 7885 | BUG_ON(1); |
| 7886 | break; |
| 7887 | } |
| 7888 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7889 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7890 | } |
| 7891 | |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7892 | static int handle_invvpid(struct kvm_vcpu *vcpu) |
| 7893 | { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7894 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7895 | u32 vmx_instruction_info; |
| 7896 | unsigned long type, types; |
| 7897 | gva_t gva; |
| 7898 | struct x86_exception e; |
Jim Mattson | 4035260 | 2017-06-28 09:37:37 -0700 | [diff] [blame] | 7899 | struct { |
| 7900 | u64 vpid; |
| 7901 | u64 gla; |
| 7902 | } operand; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7903 | |
| 7904 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7905 | SECONDARY_EXEC_ENABLE_VPID) || |
| 7906 | !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) { |
| 7907 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7908 | return 1; |
| 7909 | } |
| 7910 | |
| 7911 | if (!nested_vmx_check_permission(vcpu)) |
| 7912 | return 1; |
| 7913 | |
| 7914 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7915 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
| 7916 | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7917 | types = (vmx->nested.nested_vmx_vpid_caps & |
| 7918 | VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7919 | |
Jim Mattson | 85c856b | 2016-10-26 08:38:38 -0700 | [diff] [blame] | 7920 | if (type >= 32 || !(types & (1 << type))) { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7921 | nested_vmx_failValid(vcpu, |
| 7922 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7923 | return kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7924 | } |
| 7925 | |
| 7926 | /* according to the intel vmx instruction reference, the memory |
| 7927 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7928 | */ |
| 7929 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 7930 | vmx_instruction_info, false, &gva)) |
| 7931 | return 1; |
Jim Mattson | 4035260 | 2017-06-28 09:37:37 -0700 | [diff] [blame] | 7932 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7933 | sizeof(operand), &e)) { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7934 | kvm_inject_page_fault(vcpu, &e); |
| 7935 | return 1; |
| 7936 | } |
Jim Mattson | 4035260 | 2017-06-28 09:37:37 -0700 | [diff] [blame] | 7937 | if (operand.vpid >> 16) { |
| 7938 | nested_vmx_failValid(vcpu, |
| 7939 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7940 | return kvm_skip_emulated_instruction(vcpu); |
| 7941 | } |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7942 | |
| 7943 | switch (type) { |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7944 | case VMX_VPID_EXTENT_INDIVIDUAL_ADDR: |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 7945 | if (is_noncanonical_address(operand.gla, vcpu)) { |
Jim Mattson | 4035260 | 2017-06-28 09:37:37 -0700 | [diff] [blame] | 7946 | nested_vmx_failValid(vcpu, |
| 7947 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7948 | return kvm_skip_emulated_instruction(vcpu); |
| 7949 | } |
| 7950 | /* fall through */ |
Paolo Bonzini | ef697a7 | 2016-03-18 16:58:38 +0100 | [diff] [blame] | 7951 | case VMX_VPID_EXTENT_SINGLE_CONTEXT: |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7952 | case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL: |
Jim Mattson | 4035260 | 2017-06-28 09:37:37 -0700 | [diff] [blame] | 7953 | if (!operand.vpid) { |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7954 | nested_vmx_failValid(vcpu, |
| 7955 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7956 | return kvm_skip_emulated_instruction(vcpu); |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7957 | } |
| 7958 | break; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7959 | case VMX_VPID_EXTENT_ALL_CONTEXT: |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7960 | break; |
| 7961 | default: |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7962 | WARN_ON_ONCE(1); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7963 | return kvm_skip_emulated_instruction(vcpu); |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7964 | } |
| 7965 | |
Jan Dakinevich | bcdde30 | 2016-10-28 07:00:30 +0300 | [diff] [blame] | 7966 | __vmx_flush_tlb(vcpu, vmx->nested.vpid02); |
| 7967 | nested_vmx_succeed(vcpu); |
| 7968 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7969 | return kvm_skip_emulated_instruction(vcpu); |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7970 | } |
| 7971 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7972 | static int handle_pml_full(struct kvm_vcpu *vcpu) |
| 7973 | { |
| 7974 | unsigned long exit_qualification; |
| 7975 | |
| 7976 | trace_kvm_pml_full(vcpu->vcpu_id); |
| 7977 | |
| 7978 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7979 | |
| 7980 | /* |
| 7981 | * PML buffer FULL happened while executing iret from NMI, |
| 7982 | * "blocked by NMI" bit has to be set before next VM entry. |
| 7983 | */ |
| 7984 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7985 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
| 7986 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 7987 | GUEST_INTR_STATE_NMI); |
| 7988 | |
| 7989 | /* |
| 7990 | * PML buffer already flushed at beginning of VMEXIT. Nothing to do |
| 7991 | * here.., and there's no userspace involvement needed for PML. |
| 7992 | */ |
| 7993 | return 1; |
| 7994 | } |
| 7995 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 7996 | static int handle_preemption_timer(struct kvm_vcpu *vcpu) |
| 7997 | { |
| 7998 | kvm_lapic_expired_hv_timer(vcpu); |
| 7999 | return 1; |
| 8000 | } |
| 8001 | |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8002 | static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address) |
| 8003 | { |
| 8004 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8005 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 8006 | |
| 8007 | /* Check for memory type validity */ |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 8008 | switch (address & VMX_EPTP_MT_MASK) { |
| 8009 | case VMX_EPTP_MT_UC: |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8010 | if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT)) |
| 8011 | return false; |
| 8012 | break; |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 8013 | case VMX_EPTP_MT_WB: |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8014 | if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT)) |
| 8015 | return false; |
| 8016 | break; |
| 8017 | default: |
| 8018 | return false; |
| 8019 | } |
| 8020 | |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 8021 | /* only 4 levels page-walk length are valid */ |
| 8022 | if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4) |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8023 | return false; |
| 8024 | |
| 8025 | /* Reserved bits should not be set */ |
| 8026 | if (address >> maxphyaddr || ((address >> 7) & 0x1f)) |
| 8027 | return false; |
| 8028 | |
| 8029 | /* AD, if set, should be supported */ |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 8030 | if (address & VMX_EPTP_AD_ENABLE_BIT) { |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8031 | if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT)) |
| 8032 | return false; |
| 8033 | } |
| 8034 | |
| 8035 | return true; |
| 8036 | } |
| 8037 | |
| 8038 | static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu, |
| 8039 | struct vmcs12 *vmcs12) |
| 8040 | { |
| 8041 | u32 index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 8042 | u64 address; |
| 8043 | bool accessed_dirty; |
| 8044 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 8045 | |
| 8046 | if (!nested_cpu_has_eptp_switching(vmcs12) || |
| 8047 | !nested_cpu_has_ept(vmcs12)) |
| 8048 | return 1; |
| 8049 | |
| 8050 | if (index >= VMFUNC_EPTP_ENTRIES) |
| 8051 | return 1; |
| 8052 | |
| 8053 | |
| 8054 | if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT, |
| 8055 | &address, index * 8, 8)) |
| 8056 | return 1; |
| 8057 | |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 8058 | accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT); |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8059 | |
| 8060 | /* |
| 8061 | * If the (L2) guest does a vmfunc to the currently |
| 8062 | * active ept pointer, we don't have to do anything else |
| 8063 | */ |
| 8064 | if (vmcs12->ept_pointer != address) { |
| 8065 | if (!valid_ept_address(vcpu, address)) |
| 8066 | return 1; |
| 8067 | |
| 8068 | kvm_mmu_unload(vcpu); |
| 8069 | mmu->ept_ad = accessed_dirty; |
| 8070 | mmu->base_role.ad_disabled = !accessed_dirty; |
| 8071 | vmcs12->ept_pointer = address; |
| 8072 | /* |
| 8073 | * TODO: Check what's the correct approach in case |
| 8074 | * mmu reload fails. Currently, we just let the next |
| 8075 | * reload potentially fail |
| 8076 | */ |
| 8077 | kvm_mmu_reload(vcpu); |
| 8078 | } |
| 8079 | |
| 8080 | return 0; |
| 8081 | } |
| 8082 | |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 8083 | static int handle_vmfunc(struct kvm_vcpu *vcpu) |
| 8084 | { |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 8085 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8086 | struct vmcs12 *vmcs12; |
| 8087 | u32 function = vcpu->arch.regs[VCPU_REGS_RAX]; |
| 8088 | |
| 8089 | /* |
| 8090 | * VMFUNC is only supported for nested guests, but we always enable the |
| 8091 | * secondary control for simplicity; for non-nested mode, fake that we |
| 8092 | * didn't by injecting #UD. |
| 8093 | */ |
| 8094 | if (!is_guest_mode(vcpu)) { |
| 8095 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 8096 | return 1; |
| 8097 | } |
| 8098 | |
| 8099 | vmcs12 = get_vmcs12(vcpu); |
| 8100 | if ((vmcs12->vm_function_control & (1 << function)) == 0) |
| 8101 | goto fail; |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 8102 | |
| 8103 | switch (function) { |
| 8104 | case 0: |
| 8105 | if (nested_vmx_eptp_switching(vcpu, vmcs12)) |
| 8106 | goto fail; |
| 8107 | break; |
| 8108 | default: |
| 8109 | goto fail; |
| 8110 | } |
| 8111 | return kvm_skip_emulated_instruction(vcpu); |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 8112 | |
| 8113 | fail: |
| 8114 | nested_vmx_vmexit(vcpu, vmx->exit_reason, |
| 8115 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8116 | vmcs_readl(EXIT_QUALIFICATION)); |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 8117 | return 1; |
| 8118 | } |
| 8119 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 8120 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8121 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 8122 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 8123 | * to be done to userspace and return 0. |
| 8124 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 8125 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8126 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 8127 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 8128 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 8129 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8130 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8131 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 8132 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 8133 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 8134 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 8135 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 8136 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 8137 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 8138 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 8139 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 8140 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 8141 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 8142 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 8143 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 8144 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 8145 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 8146 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 8147 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 8148 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 8149 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 8150 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 8151 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 8152 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 8153 | [EXIT_REASON_APIC_WRITE] = handle_apic_write, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8154 | [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 8155 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 8156 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 8157 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8158 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 8159 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 8160 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 8161 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 8162 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait, |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 8163 | [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 8164 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor, |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 8165 | [EXIT_REASON_INVEPT] = handle_invept, |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 8166 | [EXIT_REASON_INVVPID] = handle_invvpid, |
Jim Mattson | 45ec368 | 2017-08-23 16:32:04 -0700 | [diff] [blame] | 8167 | [EXIT_REASON_RDRAND] = handle_invalid_op, |
Jim Mattson | 75f4fc8 | 2017-08-23 16:32:03 -0700 | [diff] [blame] | 8168 | [EXIT_REASON_RDSEED] = handle_invalid_op, |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 8169 | [EXIT_REASON_XSAVES] = handle_xsaves, |
| 8170 | [EXIT_REASON_XRSTORS] = handle_xrstors, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8171 | [EXIT_REASON_PML_FULL] = handle_pml_full, |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 8172 | [EXIT_REASON_VMFUNC] = handle_vmfunc, |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 8173 | [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8174 | }; |
| 8175 | |
| 8176 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 8177 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8178 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8179 | static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu, |
| 8180 | struct vmcs12 *vmcs12) |
| 8181 | { |
| 8182 | unsigned long exit_qualification; |
| 8183 | gpa_t bitmap, last_bitmap; |
| 8184 | unsigned int port; |
| 8185 | int size; |
| 8186 | u8 b; |
| 8187 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8188 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
Zhihui Zhang | 2f0a639 | 2013-12-30 15:56:29 -0500 | [diff] [blame] | 8189 | return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING); |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8190 | |
| 8191 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 8192 | |
| 8193 | port = exit_qualification >> 16; |
| 8194 | size = (exit_qualification & 7) + 1; |
| 8195 | |
| 8196 | last_bitmap = (gpa_t)-1; |
| 8197 | b = -1; |
| 8198 | |
| 8199 | while (size > 0) { |
| 8200 | if (port < 0x8000) |
| 8201 | bitmap = vmcs12->io_bitmap_a; |
| 8202 | else if (port < 0x10000) |
| 8203 | bitmap = vmcs12->io_bitmap_b; |
| 8204 | else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8205 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8206 | bitmap += (port & 0x7fff) / 8; |
| 8207 | |
| 8208 | if (last_bitmap != bitmap) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8209 | if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8210 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8211 | if (b & (1 << (port & 7))) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8212 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8213 | |
| 8214 | port++; |
| 8215 | size--; |
| 8216 | last_bitmap = bitmap; |
| 8217 | } |
| 8218 | |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8219 | return false; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8220 | } |
| 8221 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8222 | /* |
| 8223 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 8224 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 8225 | * disinterest in the current event (read or write a specific MSR) by using an |
| 8226 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 8227 | */ |
| 8228 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 8229 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 8230 | { |
| 8231 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 8232 | gpa_t bitmap; |
| 8233 | |
Jan Kiszka | cbd29cb | 2013-02-11 12:19:28 +0100 | [diff] [blame] | 8234 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8235 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8236 | |
| 8237 | /* |
| 8238 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 8239 | * for the four combinations of read/write and low/high MSR numbers. |
| 8240 | * First we need to figure out which of the four to use: |
| 8241 | */ |
| 8242 | bitmap = vmcs12->msr_bitmap; |
| 8243 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 8244 | bitmap += 2048; |
| 8245 | if (msr_index >= 0xc0000000) { |
| 8246 | msr_index -= 0xc0000000; |
| 8247 | bitmap += 1024; |
| 8248 | } |
| 8249 | |
| 8250 | /* Then read the msr_index'th bit from this bitmap: */ |
| 8251 | if (msr_index < 1024*8) { |
| 8252 | unsigned char b; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8253 | if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8254 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8255 | return 1 & (b >> (msr_index & 7)); |
| 8256 | } else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8257 | return true; /* let L1 handle the wrong parameter */ |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8258 | } |
| 8259 | |
| 8260 | /* |
| 8261 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 8262 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 8263 | * intercept (via guest_host_mask etc.) the current event. |
| 8264 | */ |
| 8265 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 8266 | struct vmcs12 *vmcs12) |
| 8267 | { |
| 8268 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 8269 | int cr = exit_qualification & 15; |
Jan H. Schönherr | e1d39b1 | 2017-05-20 13:22:56 +0200 | [diff] [blame] | 8270 | int reg; |
| 8271 | unsigned long val; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8272 | |
| 8273 | switch ((exit_qualification >> 4) & 3) { |
| 8274 | case 0: /* mov to cr */ |
Jan H. Schönherr | e1d39b1 | 2017-05-20 13:22:56 +0200 | [diff] [blame] | 8275 | reg = (exit_qualification >> 8) & 15; |
| 8276 | val = kvm_register_readl(vcpu, reg); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8277 | switch (cr) { |
| 8278 | case 0: |
| 8279 | if (vmcs12->cr0_guest_host_mask & |
| 8280 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8281 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8282 | break; |
| 8283 | case 3: |
| 8284 | if ((vmcs12->cr3_target_count >= 1 && |
| 8285 | vmcs12->cr3_target_value0 == val) || |
| 8286 | (vmcs12->cr3_target_count >= 2 && |
| 8287 | vmcs12->cr3_target_value1 == val) || |
| 8288 | (vmcs12->cr3_target_count >= 3 && |
| 8289 | vmcs12->cr3_target_value2 == val) || |
| 8290 | (vmcs12->cr3_target_count >= 4 && |
| 8291 | vmcs12->cr3_target_value3 == val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8292 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8293 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8294 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8295 | break; |
| 8296 | case 4: |
| 8297 | if (vmcs12->cr4_guest_host_mask & |
| 8298 | (vmcs12->cr4_read_shadow ^ val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8299 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8300 | break; |
| 8301 | case 8: |
| 8302 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8303 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8304 | break; |
| 8305 | } |
| 8306 | break; |
| 8307 | case 2: /* clts */ |
| 8308 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 8309 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8310 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8311 | break; |
| 8312 | case 1: /* mov from cr */ |
| 8313 | switch (cr) { |
| 8314 | case 3: |
| 8315 | if (vmcs12->cpu_based_vm_exec_control & |
| 8316 | CPU_BASED_CR3_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8317 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8318 | break; |
| 8319 | case 8: |
| 8320 | if (vmcs12->cpu_based_vm_exec_control & |
| 8321 | CPU_BASED_CR8_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8322 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8323 | break; |
| 8324 | } |
| 8325 | break; |
| 8326 | case 3: /* lmsw */ |
| 8327 | /* |
| 8328 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 8329 | * cr0. Other attempted changes are ignored, with no exit. |
| 8330 | */ |
Jan H. Schönherr | e1d39b1 | 2017-05-20 13:22:56 +0200 | [diff] [blame] | 8331 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8332 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 8333 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8334 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8335 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 8336 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 8337 | (val & 0x1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8338 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8339 | break; |
| 8340 | } |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8341 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8342 | } |
| 8343 | |
| 8344 | /* |
| 8345 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 8346 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 8347 | * when in is_guest_mode (L2). |
| 8348 | */ |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 8349 | static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8350 | { |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8351 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8352 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8353 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8354 | |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 8355 | if (vmx->nested.nested_run_pending) |
| 8356 | return false; |
| 8357 | |
| 8358 | if (unlikely(vmx->fail)) { |
| 8359 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 8360 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 8361 | return true; |
| 8362 | } |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 8363 | |
David Matlack | c9f0440 | 2017-08-01 14:00:40 -0700 | [diff] [blame] | 8364 | /* |
| 8365 | * The host physical addresses of some pages of guest memory |
| 8366 | * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU |
| 8367 | * may write to these pages via their host physical address while |
| 8368 | * L2 is running, bypassing any address-translation-based dirty |
| 8369 | * tracking (e.g. EPT write protection). |
| 8370 | * |
| 8371 | * Mark them dirty on every exit from L2 to prevent them from |
| 8372 | * getting out of sync with dirty tracking. |
| 8373 | */ |
| 8374 | nested_mark_vmcs12_pages_dirty(vcpu); |
| 8375 | |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 8376 | trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, |
| 8377 | vmcs_readl(EXIT_QUALIFICATION), |
| 8378 | vmx->idt_vectoring_info, |
| 8379 | intr_info, |
| 8380 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 8381 | KVM_ISA_VMX); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8382 | |
| 8383 | switch (exit_reason) { |
| 8384 | case EXIT_REASON_EXCEPTION_NMI: |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 8385 | if (is_nmi(intr_info)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8386 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8387 | else if (is_page_fault(intr_info)) |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 8388 | return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept; |
Anthoine Bourgeois | e504c90 | 2013-11-13 11:45:37 +0100 | [diff] [blame] | 8389 | else if (is_no_device(intr_info) && |
Paolo Bonzini | ccf9844 | 2014-02-27 22:54:11 +0100 | [diff] [blame] | 8390 | !(vmcs12->guest_cr0 & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8391 | return false; |
Jan Kiszka | 6f05485 | 2016-02-09 20:15:18 +0100 | [diff] [blame] | 8392 | else if (is_debug(intr_info) && |
| 8393 | vcpu->guest_debug & |
| 8394 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 8395 | return false; |
| 8396 | else if (is_breakpoint(intr_info) && |
| 8397 | vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
| 8398 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8399 | return vmcs12->exception_bitmap & |
| 8400 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 8401 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8402 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8403 | case EXIT_REASON_TRIPLE_FAULT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8404 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8405 | case EXIT_REASON_PENDING_INTERRUPT: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 8406 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8407 | case EXIT_REASON_NMI_WINDOW: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 8408 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8409 | case EXIT_REASON_TASK_SWITCH: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8410 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8411 | case EXIT_REASON_CPUID: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8412 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8413 | case EXIT_REASON_HLT: |
| 8414 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 8415 | case EXIT_REASON_INVD: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8416 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8417 | case EXIT_REASON_INVLPG: |
| 8418 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 8419 | case EXIT_REASON_RDPMC: |
| 8420 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
Paolo Bonzini | a5f4645 | 2017-03-30 11:55:32 +0200 | [diff] [blame] | 8421 | case EXIT_REASON_RDRAND: |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 8422 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING); |
Paolo Bonzini | a5f4645 | 2017-03-30 11:55:32 +0200 | [diff] [blame] | 8423 | case EXIT_REASON_RDSEED: |
David Hildenbrand | 736fdf7 | 2017-08-24 20:51:37 +0200 | [diff] [blame] | 8424 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING); |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 8425 | case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8426 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 8427 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 8428 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 8429 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 8430 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 8431 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 8432 | case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8433 | /* |
| 8434 | * VMX instructions trap unconditionally. This allows L1 to |
| 8435 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 8436 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8437 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8438 | case EXIT_REASON_CR_ACCESS: |
| 8439 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 8440 | case EXIT_REASON_DR_ACCESS: |
| 8441 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 8442 | case EXIT_REASON_IO_INSTRUCTION: |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 8443 | return nested_vmx_exit_handled_io(vcpu, vmcs12); |
Paolo Bonzini | 1b07304 | 2016-10-25 16:06:30 +0200 | [diff] [blame] | 8444 | case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR: |
| 8445 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8446 | case EXIT_REASON_MSR_READ: |
| 8447 | case EXIT_REASON_MSR_WRITE: |
| 8448 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 8449 | case EXIT_REASON_INVALID_STATE: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8450 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8451 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 8452 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 8453 | case EXIT_REASON_MONITOR_TRAP_FLAG: |
| 8454 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8455 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 8456 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 8457 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 8458 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 8459 | nested_cpu_has2(vmcs12, |
| 8460 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 8461 | case EXIT_REASON_MCE_DURING_VMENTRY: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8462 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8463 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8464 | return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8465 | case EXIT_REASON_APIC_ACCESS: |
| 8466 | return nested_cpu_has2(vmcs12, |
| 8467 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 8468 | case EXIT_REASON_APIC_WRITE: |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 8469 | case EXIT_REASON_EOI_INDUCED: |
| 8470 | /* apic_write and eoi_induced should exit unconditionally. */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8471 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8472 | case EXIT_REASON_EPT_VIOLATION: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 8473 | /* |
| 8474 | * L0 always deals with the EPT violation. If nested EPT is |
| 8475 | * used, and the nested mmu code discovers that the address is |
| 8476 | * missing in the guest EPT table (EPT12), the EPT violation |
| 8477 | * will be injected with nested_ept_inject_page_fault() |
| 8478 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8479 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8480 | case EXIT_REASON_EPT_MISCONFIG: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 8481 | /* |
| 8482 | * L2 never uses directly L1's EPT, but rather L0's own EPT |
| 8483 | * table (shadow on EPT) or a merged EPT table that L0 built |
| 8484 | * (EPT on EPT). So any problems with the structure of the |
| 8485 | * table is L0's fault. |
| 8486 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8487 | return false; |
Paolo Bonzini | 90a2db6 | 2017-07-27 13:22:13 +0200 | [diff] [blame] | 8488 | case EXIT_REASON_INVPCID: |
| 8489 | return |
| 8490 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) && |
| 8491 | nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8492 | case EXIT_REASON_WBINVD: |
| 8493 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 8494 | case EXIT_REASON_XSETBV: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8495 | return true; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 8496 | case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS: |
| 8497 | /* |
| 8498 | * This should never happen, since it is not possible to |
| 8499 | * set XSS to a non-zero value---neither in L1 nor in L2. |
| 8500 | * If if it were, XSS would have to be checked against |
| 8501 | * the XSS exit bitmap in vmcs12. |
| 8502 | */ |
| 8503 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Wanpeng Li | 55123e3 | 2016-07-06 18:29:58 +0800 | [diff] [blame] | 8504 | case EXIT_REASON_PREEMPTION_TIMER: |
| 8505 | return false; |
Ladi Prosek | ab007cc | 2017-03-31 10:19:26 +0200 | [diff] [blame] | 8506 | case EXIT_REASON_PML_FULL: |
Bandan Das | 03efce6 | 2017-05-05 15:25:15 -0400 | [diff] [blame] | 8507 | /* We emulate PML support to L1. */ |
Ladi Prosek | ab007cc | 2017-03-31 10:19:26 +0200 | [diff] [blame] | 8508 | return false; |
Bandan Das | 2a499e4 | 2017-08-03 15:54:41 -0400 | [diff] [blame] | 8509 | case EXIT_REASON_VMFUNC: |
| 8510 | /* VM functions are emulated through L2->L0 vmexits. */ |
| 8511 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8512 | default: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 8513 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8514 | } |
| 8515 | } |
| 8516 | |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 8517 | static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason) |
| 8518 | { |
| 8519 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8520 | |
| 8521 | /* |
| 8522 | * At this point, the exit interruption info in exit_intr_info |
| 8523 | * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT |
| 8524 | * we need to query the in-kernel LAPIC. |
| 8525 | */ |
| 8526 | WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT); |
| 8527 | if ((exit_intr_info & |
| 8528 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) == |
| 8529 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) { |
| 8530 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8531 | vmcs12->vm_exit_intr_error_code = |
| 8532 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
| 8533 | } |
| 8534 | |
| 8535 | nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info, |
| 8536 | vmcs_readl(EXIT_QUALIFICATION)); |
| 8537 | return 1; |
| 8538 | } |
| 8539 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 8540 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 8541 | { |
| 8542 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 8543 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8544 | } |
| 8545 | |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8546 | static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8547 | { |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8548 | if (vmx->pml_pg) { |
| 8549 | __free_page(vmx->pml_pg); |
| 8550 | vmx->pml_pg = NULL; |
| 8551 | } |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8552 | } |
| 8553 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8554 | static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8555 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8556 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8557 | u64 *pml_buf; |
| 8558 | u16 pml_idx; |
| 8559 | |
| 8560 | pml_idx = vmcs_read16(GUEST_PML_INDEX); |
| 8561 | |
| 8562 | /* Do nothing if PML buffer is empty */ |
| 8563 | if (pml_idx == (PML_ENTITY_NUM - 1)) |
| 8564 | return; |
| 8565 | |
| 8566 | /* PML index always points to next available PML buffer entity */ |
| 8567 | if (pml_idx >= PML_ENTITY_NUM) |
| 8568 | pml_idx = 0; |
| 8569 | else |
| 8570 | pml_idx++; |
| 8571 | |
| 8572 | pml_buf = page_address(vmx->pml_pg); |
| 8573 | for (; pml_idx < PML_ENTITY_NUM; pml_idx++) { |
| 8574 | u64 gpa; |
| 8575 | |
| 8576 | gpa = pml_buf[pml_idx]; |
| 8577 | WARN_ON(gpa & (PAGE_SIZE - 1)); |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8578 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8579 | } |
| 8580 | |
| 8581 | /* reset PML index */ |
| 8582 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 8583 | } |
| 8584 | |
| 8585 | /* |
| 8586 | * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap. |
| 8587 | * Called before reporting dirty_bitmap to userspace. |
| 8588 | */ |
| 8589 | static void kvm_flush_pml_buffers(struct kvm *kvm) |
| 8590 | { |
| 8591 | int i; |
| 8592 | struct kvm_vcpu *vcpu; |
| 8593 | /* |
| 8594 | * We only need to kick vcpu out of guest mode here, as PML buffer |
| 8595 | * is flushed at beginning of all VMEXITs, and it's obvious that only |
| 8596 | * vcpus running in guest are possible to have unflushed GPAs in PML |
| 8597 | * buffer. |
| 8598 | */ |
| 8599 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 8600 | kvm_vcpu_kick(vcpu); |
| 8601 | } |
| 8602 | |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8603 | static void vmx_dump_sel(char *name, uint32_t sel) |
| 8604 | { |
| 8605 | 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] | 8606 | name, vmcs_read16(sel), |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8607 | vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR), |
| 8608 | vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR), |
| 8609 | vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR)); |
| 8610 | } |
| 8611 | |
| 8612 | static void vmx_dump_dtsel(char *name, uint32_t limit) |
| 8613 | { |
| 8614 | pr_err("%s limit=0x%08x, base=0x%016lx\n", |
| 8615 | name, vmcs_read32(limit), |
| 8616 | vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT)); |
| 8617 | } |
| 8618 | |
| 8619 | static void dump_vmcs(void) |
| 8620 | { |
| 8621 | u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS); |
| 8622 | u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS); |
| 8623 | u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 8624 | u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); |
| 8625 | u32 secondary_exec_control = 0; |
| 8626 | unsigned long cr4 = vmcs_readl(GUEST_CR4); |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 8627 | u64 efer = vmcs_read64(GUEST_IA32_EFER); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8628 | int i, n; |
| 8629 | |
| 8630 | if (cpu_has_secondary_exec_ctrls()) |
| 8631 | secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8632 | |
| 8633 | pr_err("*** Guest State ***\n"); |
| 8634 | pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 8635 | vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW), |
| 8636 | vmcs_readl(CR0_GUEST_HOST_MASK)); |
| 8637 | pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 8638 | cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK)); |
| 8639 | pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3)); |
| 8640 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) && |
| 8641 | (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) |
| 8642 | { |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8643 | pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n", |
| 8644 | vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1)); |
| 8645 | pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n", |
| 8646 | vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8647 | } |
| 8648 | pr_err("RSP = 0x%016lx RIP = 0x%016lx\n", |
| 8649 | vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP)); |
| 8650 | pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n", |
| 8651 | vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7)); |
| 8652 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 8653 | vmcs_readl(GUEST_SYSENTER_ESP), |
| 8654 | vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP)); |
| 8655 | vmx_dump_sel("CS: ", GUEST_CS_SELECTOR); |
| 8656 | vmx_dump_sel("DS: ", GUEST_DS_SELECTOR); |
| 8657 | vmx_dump_sel("SS: ", GUEST_SS_SELECTOR); |
| 8658 | vmx_dump_sel("ES: ", GUEST_ES_SELECTOR); |
| 8659 | vmx_dump_sel("FS: ", GUEST_FS_SELECTOR); |
| 8660 | vmx_dump_sel("GS: ", GUEST_GS_SELECTOR); |
| 8661 | vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT); |
| 8662 | vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR); |
| 8663 | vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT); |
| 8664 | vmx_dump_sel("TR: ", GUEST_TR_SELECTOR); |
| 8665 | if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) || |
| 8666 | (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER))) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8667 | pr_err("EFER = 0x%016llx PAT = 0x%016llx\n", |
| 8668 | efer, vmcs_read64(GUEST_IA32_PAT)); |
| 8669 | pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n", |
| 8670 | vmcs_read64(GUEST_IA32_DEBUGCTL), |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8671 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS)); |
| 8672 | if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8673 | pr_err("PerfGlobCtl = 0x%016llx\n", |
| 8674 | vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8675 | if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8676 | pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8677 | pr_err("Interruptibility = %08x ActivityState = %08x\n", |
| 8678 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO), |
| 8679 | vmcs_read32(GUEST_ACTIVITY_STATE)); |
| 8680 | if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) |
| 8681 | pr_err("InterruptStatus = %04x\n", |
| 8682 | vmcs_read16(GUEST_INTR_STATUS)); |
| 8683 | |
| 8684 | pr_err("*** Host State ***\n"); |
| 8685 | pr_err("RIP = 0x%016lx RSP = 0x%016lx\n", |
| 8686 | vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP)); |
| 8687 | pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n", |
| 8688 | vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR), |
| 8689 | vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR), |
| 8690 | vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR), |
| 8691 | vmcs_read16(HOST_TR_SELECTOR)); |
| 8692 | pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n", |
| 8693 | vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE), |
| 8694 | vmcs_readl(HOST_TR_BASE)); |
| 8695 | pr_err("GDTBase=%016lx IDTBase=%016lx\n", |
| 8696 | vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE)); |
| 8697 | pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n", |
| 8698 | vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3), |
| 8699 | vmcs_readl(HOST_CR4)); |
| 8700 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 8701 | vmcs_readl(HOST_IA32_SYSENTER_ESP), |
| 8702 | vmcs_read32(HOST_IA32_SYSENTER_CS), |
| 8703 | vmcs_readl(HOST_IA32_SYSENTER_EIP)); |
| 8704 | 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] | 8705 | pr_err("EFER = 0x%016llx PAT = 0x%016llx\n", |
| 8706 | vmcs_read64(HOST_IA32_EFER), |
| 8707 | vmcs_read64(HOST_IA32_PAT)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8708 | if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8709 | pr_err("PerfGlobCtl = 0x%016llx\n", |
| 8710 | vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8711 | |
| 8712 | pr_err("*** Control State ***\n"); |
| 8713 | pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n", |
| 8714 | pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control); |
| 8715 | pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl); |
| 8716 | pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n", |
| 8717 | vmcs_read32(EXCEPTION_BITMAP), |
| 8718 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK), |
| 8719 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH)); |
| 8720 | pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 8721 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8722 | vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE), |
| 8723 | vmcs_read32(VM_ENTRY_INSTRUCTION_LEN)); |
| 8724 | pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 8725 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8726 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 8727 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN)); |
| 8728 | pr_err(" reason=%08x qualification=%016lx\n", |
| 8729 | vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION)); |
| 8730 | pr_err("IDTVectoring: info=%08x errcode=%08x\n", |
| 8731 | vmcs_read32(IDT_VECTORING_INFO_FIELD), |
| 8732 | vmcs_read32(IDT_VECTORING_ERROR_CODE)); |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8733 | pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET)); |
Haozhong Zhang | 8cfe986 | 2015-10-20 15:39:12 +0800 | [diff] [blame] | 8734 | if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8735 | pr_err("TSC Multiplier = 0x%016llx\n", |
| 8736 | vmcs_read64(TSC_MULTIPLIER)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8737 | if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) |
| 8738 | pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD)); |
| 8739 | if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) |
| 8740 | pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV)); |
| 8741 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT)) |
Paolo Bonzini | 845c5b40 | 2015-12-03 15:51:00 +0100 | [diff] [blame] | 8742 | pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER)); |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8743 | n = vmcs_read32(CR3_TARGET_COUNT); |
| 8744 | for (i = 0; i + 1 < n; i += 4) |
| 8745 | pr_err("CR3 target%u=%016lx target%u=%016lx\n", |
| 8746 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2), |
| 8747 | i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2)); |
| 8748 | if (i < n) |
| 8749 | pr_err("CR3 target%u=%016lx\n", |
| 8750 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2)); |
| 8751 | if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING) |
| 8752 | pr_err("PLE Gap=%08x Window=%08x\n", |
| 8753 | vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW)); |
| 8754 | if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID) |
| 8755 | pr_err("Virtual processor ID = 0x%04x\n", |
| 8756 | vmcs_read16(VIRTUAL_PROCESSOR_ID)); |
| 8757 | } |
| 8758 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8759 | /* |
| 8760 | * The guest has exited. See if we can fix it or if we need userspace |
| 8761 | * assistance. |
| 8762 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8763 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8764 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8765 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8766 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8767 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8768 | |
Paolo Bonzini | 8b89fe1 | 2015-12-10 18:37:32 +0100 | [diff] [blame] | 8769 | trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX); |
| 8770 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8771 | /* |
| 8772 | * Flush logged GPAs PML buffer, this will make dirty_bitmap more |
| 8773 | * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before |
| 8774 | * querying dirty_bitmap, we only need to kick all vcpus out of guest |
| 8775 | * mode as if vcpus is in root mode, the PML buffer must has been |
| 8776 | * flushed already. |
| 8777 | */ |
| 8778 | if (enable_pml) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8779 | vmx_flush_pml_buffer(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8780 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8781 | /* If guest state is invalid, start emulating */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8782 | if (vmx->emulation_required) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8783 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 8784 | |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 8785 | if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason)) |
| 8786 | return nested_vmx_reflect_vmexit(vcpu, exit_reason); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8787 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8788 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8789 | dump_vmcs(); |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8790 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8791 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 8792 | = exit_reason; |
| 8793 | return 0; |
| 8794 | } |
| 8795 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8796 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8797 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8798 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8799 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 8800 | return 0; |
| 8801 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8802 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8803 | /* |
| 8804 | * Note: |
| 8805 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 8806 | * delivery event since it indicates guest is accessing MMIO. |
| 8807 | * The vm-exit can be triggered again after return to guest that |
| 8808 | * will cause infinite loop. |
| 8809 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 8810 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 8811 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 8812 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Cao, Lei | b244c9f | 2016-07-15 13:54:04 +0000 | [diff] [blame] | 8813 | exit_reason != EXIT_REASON_PML_FULL && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8814 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 8815 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 8816 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
Paolo Bonzini | 70bcd70 | 2017-07-05 12:38:06 +0200 | [diff] [blame] | 8817 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8818 | vcpu->run->internal.data[0] = vectoring_info; |
| 8819 | vcpu->run->internal.data[1] = exit_reason; |
Paolo Bonzini | 70bcd70 | 2017-07-05 12:38:06 +0200 | [diff] [blame] | 8820 | vcpu->run->internal.data[2] = vcpu->arch.exit_qualification; |
| 8821 | if (exit_reason == EXIT_REASON_EPT_MISCONFIG) { |
| 8822 | vcpu->run->internal.ndata++; |
| 8823 | vcpu->run->internal.data[3] = |
| 8824 | vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
| 8825 | } |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8826 | return 0; |
| 8827 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8828 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8829 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 8830 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8831 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8832 | else { |
Radim Krčmář | 6c6c5e0 | 2017-01-13 18:59:04 +0100 | [diff] [blame] | 8833 | vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n", |
| 8834 | exit_reason); |
Michael S. Tsirkin | 2bc19dc | 2014-09-18 16:21:16 +0300 | [diff] [blame] | 8835 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 8836 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8837 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8838 | } |
| 8839 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8840 | 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] | 8841 | { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8842 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8843 | |
| 8844 | if (is_guest_mode(vcpu) && |
| 8845 | nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 8846 | return; |
| 8847 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8848 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8849 | vmcs_write32(TPR_THRESHOLD, 0); |
| 8850 | return; |
| 8851 | } |
| 8852 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8853 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8854 | } |
| 8855 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8856 | static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set) |
| 8857 | { |
| 8858 | u32 sec_exec_control; |
| 8859 | |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 8860 | /* Postpone execution until vmcs01 is the current VMCS. */ |
| 8861 | if (is_guest_mode(vcpu)) { |
| 8862 | to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true; |
| 8863 | return; |
| 8864 | } |
| 8865 | |
Wanpeng Li | f6e90f9 | 2016-09-22 07:43:25 +0800 | [diff] [blame] | 8866 | if (!cpu_has_vmx_virtualize_x2apic_mode()) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8867 | return; |
| 8868 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8869 | if (!cpu_need_tpr_shadow(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8870 | return; |
| 8871 | |
| 8872 | sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8873 | |
| 8874 | if (set) { |
| 8875 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8876 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8877 | } else { |
| 8878 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8879 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 8880 | vmx_flush_tlb_ept_only(vcpu); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8881 | } |
| 8882 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control); |
| 8883 | |
| 8884 | vmx_set_msr_bitmap(vcpu); |
| 8885 | } |
| 8886 | |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8887 | static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa) |
| 8888 | { |
| 8889 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8890 | |
| 8891 | /* |
| 8892 | * Currently we do not handle the nested case where L2 has an |
| 8893 | * APIC access page of its own; that page is still pinned. |
| 8894 | * Hence, we skip the case where the VCPU is in guest mode _and_ |
| 8895 | * L1 prepared an APIC access page for L2. |
| 8896 | * |
| 8897 | * For the case where L1 and L2 share the same APIC access page |
| 8898 | * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear |
| 8899 | * in the vmcs12), this function will only update either the vmcs01 |
| 8900 | * or the vmcs02. If the former, the vmcs02 will be updated by |
| 8901 | * prepare_vmcs02. If the latter, the vmcs01 will be updated in |
| 8902 | * the next L2->L1 exit. |
| 8903 | */ |
| 8904 | if (!is_guest_mode(vcpu) || |
David Matlack | 4f2777b | 2016-07-13 17:16:37 -0700 | [diff] [blame] | 8905 | !nested_cpu_has2(get_vmcs12(&vmx->vcpu), |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 8906 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8907 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 8908 | vmx_flush_tlb_ept_only(vcpu); |
| 8909 | } |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8910 | } |
| 8911 | |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8912 | 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] | 8913 | { |
| 8914 | u16 status; |
| 8915 | u8 old; |
| 8916 | |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8917 | if (max_isr == -1) |
| 8918 | max_isr = 0; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8919 | |
| 8920 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8921 | old = status >> 8; |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8922 | if (max_isr != old) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8923 | status &= 0xff; |
Paolo Bonzini | 67c9ddd | 2016-05-10 17:01:23 +0200 | [diff] [blame] | 8924 | status |= max_isr << 8; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8925 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8926 | } |
| 8927 | } |
| 8928 | |
| 8929 | static void vmx_set_rvi(int vector) |
| 8930 | { |
| 8931 | u16 status; |
| 8932 | u8 old; |
| 8933 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8934 | if (vector == -1) |
| 8935 | vector = 0; |
| 8936 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8937 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8938 | old = (u8)status & 0xff; |
| 8939 | if ((u8)vector != old) { |
| 8940 | status &= ~0xff; |
| 8941 | status |= (u8)vector; |
| 8942 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8943 | } |
| 8944 | } |
| 8945 | |
| 8946 | static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr) |
| 8947 | { |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8948 | if (!is_guest_mode(vcpu)) { |
| 8949 | vmx_set_rvi(max_irr); |
| 8950 | return; |
| 8951 | } |
| 8952 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8953 | if (max_irr == -1) |
| 8954 | return; |
| 8955 | |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8956 | /* |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8957 | * In guest mode. If a vmexit is needed, vmx_check_nested_events |
| 8958 | * handles it. |
| 8959 | */ |
| 8960 | if (nested_exit_on_intr(vcpu)) |
| 8961 | return; |
| 8962 | |
| 8963 | /* |
| 8964 | * Else, fall back to pre-APICv interrupt injection since L2 |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8965 | * is run without virtual interrupt delivery. |
| 8966 | */ |
| 8967 | if (!kvm_event_needs_reinjection(vcpu) && |
| 8968 | vmx_interrupt_allowed(vcpu)) { |
| 8969 | kvm_queue_interrupt(vcpu, max_irr, false); |
| 8970 | vmx_inject_irq(vcpu); |
| 8971 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8972 | } |
| 8973 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8974 | static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu) |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8975 | { |
| 8976 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8977 | int max_irr; |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8978 | |
Paolo Bonzini | 76dfafd5 | 2016-12-19 17:17:11 +0100 | [diff] [blame] | 8979 | WARN_ON(!vcpu->arch.apicv_active); |
| 8980 | if (pi_test_on(&vmx->pi_desc)) { |
| 8981 | pi_clear_on(&vmx->pi_desc); |
| 8982 | /* |
| 8983 | * IOMMU can write to PIR.ON, so the barrier matters even on UP. |
| 8984 | * But on x86 this is just a compiler barrier anyway. |
| 8985 | */ |
| 8986 | smp_mb__after_atomic(); |
| 8987 | max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir); |
| 8988 | } else { |
| 8989 | max_irr = kvm_lapic_find_highest_irr(vcpu); |
| 8990 | } |
| 8991 | vmx_hwapic_irr_update(vcpu, max_irr); |
| 8992 | return max_irr; |
Paolo Bonzini | 810e6de | 2016-12-19 13:05:46 +0100 | [diff] [blame] | 8993 | } |
| 8994 | |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 8995 | 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] | 8996 | { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 8997 | if (!kvm_vcpu_apicv_active(vcpu)) |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8998 | return; |
| 8999 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 9000 | vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]); |
| 9001 | vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]); |
| 9002 | vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]); |
| 9003 | vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]); |
| 9004 | } |
| 9005 | |
Paolo Bonzini | 967235d | 2016-12-19 14:03:45 +0100 | [diff] [blame] | 9006 | static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu) |
| 9007 | { |
| 9008 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9009 | |
| 9010 | pi_clear_on(&vmx->pi_desc); |
| 9011 | memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir)); |
| 9012 | } |
| 9013 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9014 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 9015 | { |
Jim Mattson | 48ae0fb | 2017-05-22 09:48:33 -0700 | [diff] [blame] | 9016 | u32 exit_intr_info = 0; |
| 9017 | u16 basic_exit_reason = (u16)vmx->exit_reason; |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 9018 | |
Jim Mattson | 48ae0fb | 2017-05-22 09:48:33 -0700 | [diff] [blame] | 9019 | if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 9020 | || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 9021 | return; |
| 9022 | |
Jim Mattson | 48ae0fb | 2017-05-22 09:48:33 -0700 | [diff] [blame] | 9023 | if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) |
| 9024 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 9025 | vmx->exit_intr_info = exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 9026 | |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 9027 | /* if exit due to PF check for async PF */ |
| 9028 | if (is_page_fault(exit_intr_info)) |
| 9029 | vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason(); |
| 9030 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 9031 | /* Handle machine checks before interrupts are enabled */ |
Jim Mattson | 48ae0fb | 2017-05-22 09:48:33 -0700 | [diff] [blame] | 9032 | if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY || |
| 9033 | is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 9034 | kvm_machine_check(); |
| 9035 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 9036 | /* We need to handle NMIs before interrupts are enabled */ |
Jim Mattson | ef85b67 | 2016-12-12 11:01:37 -0800 | [diff] [blame] | 9037 | if (is_nmi(exit_intr_info)) { |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 9038 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 9039 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 9040 | kvm_after_handle_nmi(&vmx->vcpu); |
| 9041 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9042 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 9043 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9044 | static void vmx_handle_external_intr(struct kvm_vcpu *vcpu) |
| 9045 | { |
| 9046 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 9047 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9048 | if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK)) |
| 9049 | == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) { |
| 9050 | unsigned int vector; |
| 9051 | unsigned long entry; |
| 9052 | gate_desc *desc; |
| 9053 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9054 | #ifdef CONFIG_X86_64 |
| 9055 | unsigned long tmp; |
| 9056 | #endif |
| 9057 | |
| 9058 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 9059 | desc = (gate_desc *)vmx->host_idt_base + vector; |
Thomas Gleixner | 64b163f | 2017-08-28 08:47:37 +0200 | [diff] [blame] | 9060 | entry = gate_offset(desc); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9061 | asm volatile( |
| 9062 | #ifdef CONFIG_X86_64 |
| 9063 | "mov %%" _ASM_SP ", %[sp]\n\t" |
| 9064 | "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t" |
| 9065 | "push $%c[ss]\n\t" |
| 9066 | "push %[sp]\n\t" |
| 9067 | #endif |
| 9068 | "pushf\n\t" |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9069 | __ASM_SIZE(push) " $%c[cs]\n\t" |
| 9070 | "call *%[entry]\n\t" |
| 9071 | : |
| 9072 | #ifdef CONFIG_X86_64 |
Chris J Arges | 3f62de5 | 2016-01-22 15:44:38 -0600 | [diff] [blame] | 9073 | [sp]"=&r"(tmp), |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9074 | #endif |
Josh Poimboeuf | f5caf62 | 2017-09-20 16:24:33 -0500 | [diff] [blame] | 9075 | ASM_CALL_CONSTRAINT |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9076 | : |
| 9077 | [entry]"r"(entry), |
| 9078 | [ss]"i"(__KERNEL_DS), |
| 9079 | [cs]"i"(__KERNEL_CS) |
| 9080 | ); |
Paolo Bonzini | f2485b3 | 2016-06-15 15:23:11 +0200 | [diff] [blame] | 9081 | } |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9082 | } |
Josh Poimboeuf | c207aee | 2017-06-28 10:11:06 -0500 | [diff] [blame] | 9083 | STACK_FRAME_NON_STANDARD(vmx_handle_external_intr); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9084 | |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 9085 | static bool vmx_has_high_real_mode_segbase(void) |
| 9086 | { |
| 9087 | return enable_unrestricted_guest || emulate_invalid_guest_state; |
| 9088 | } |
| 9089 | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 9090 | static bool vmx_mpx_supported(void) |
| 9091 | { |
| 9092 | return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) && |
| 9093 | (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS); |
| 9094 | } |
| 9095 | |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 9096 | static bool vmx_xsaves_supported(void) |
| 9097 | { |
| 9098 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 9099 | SECONDARY_EXEC_XSAVES; |
| 9100 | } |
| 9101 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9102 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 9103 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 9104 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9105 | bool unblock_nmi; |
| 9106 | u8 vector; |
| 9107 | bool idtv_info_valid; |
| 9108 | |
| 9109 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 9110 | |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 9111 | if (vmx->loaded_vmcs->nmi_known_unmasked) |
Paolo Bonzini | 2c82878 | 2017-03-27 14:37:28 +0200 | [diff] [blame] | 9112 | return; |
| 9113 | /* |
| 9114 | * Can't use vmx->exit_intr_info since we're not sure what |
| 9115 | * the exit reason is. |
| 9116 | */ |
| 9117 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 9118 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 9119 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 9120 | /* |
| 9121 | * SDM 3: 27.7.1.2 (September 2008) |
| 9122 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 9123 | * a guest IRET fault. |
| 9124 | * SDM 3: 23.2.2 (September 2008) |
| 9125 | * Bit 12 is undefined in any of the following cases: |
| 9126 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 9127 | * information field. |
| 9128 | * If the VM exit is due to a double fault. |
| 9129 | */ |
| 9130 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 9131 | vector != DF_VECTOR && !idtv_info_valid) |
| 9132 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 9133 | GUEST_INTR_STATE_NMI); |
| 9134 | else |
Paolo Bonzini | 4c4a6f7 | 2017-07-14 13:36:11 +0200 | [diff] [blame] | 9135 | vmx->loaded_vmcs->nmi_known_unmasked = |
Paolo Bonzini | 2c82878 | 2017-03-27 14:37:28 +0200 | [diff] [blame] | 9136 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 9137 | & GUEST_INTR_STATE_NMI); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9138 | } |
| 9139 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9140 | static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 9141 | u32 idt_vectoring_info, |
| 9142 | int instr_len_field, |
| 9143 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9144 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9145 | u8 vector; |
| 9146 | int type; |
| 9147 | bool idtv_info_valid; |
| 9148 | |
| 9149 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 9150 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9151 | vcpu->arch.nmi_injected = false; |
| 9152 | kvm_clear_exception_queue(vcpu); |
| 9153 | kvm_clear_interrupt_queue(vcpu); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9154 | |
| 9155 | if (!idtv_info_valid) |
| 9156 | return; |
| 9157 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9158 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 9159 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 9160 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 9161 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9162 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 9163 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9164 | case INTR_TYPE_NMI_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9165 | vcpu->arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 9166 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 9167 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9168 | * Clear bit "block by NMI" before VM entry if a NMI |
| 9169 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 9170 | */ |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9171 | vmx_set_nmi_mask(vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9172 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9173 | case INTR_TYPE_SOFT_EXCEPTION: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9174 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 9175 | /* fall through */ |
| 9176 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 9177 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 9178 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 9179 | kvm_requeue_exception_e(vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 9180 | } else |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 9181 | kvm_requeue_exception(vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9182 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 9183 | case INTR_TYPE_SOFT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9184 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 9185 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9186 | case INTR_TYPE_EXT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9187 | kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 9188 | break; |
| 9189 | default: |
| 9190 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 9191 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 9192 | } |
| 9193 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 9194 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 9195 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9196 | __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 9197 | VM_EXIT_INSTRUCTION_LEN, |
| 9198 | IDT_VECTORING_ERROR_CODE); |
| 9199 | } |
| 9200 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 9201 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 9202 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 9203 | __vmx_complete_interrupts(vcpu, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 9204 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 9205 | VM_ENTRY_INSTRUCTION_LEN, |
| 9206 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 9207 | |
| 9208 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 9209 | } |
| 9210 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 9211 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 9212 | { |
| 9213 | int i, nr_msrs; |
| 9214 | struct perf_guest_switch_msr *msrs; |
| 9215 | |
| 9216 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 9217 | |
| 9218 | if (!msrs) |
| 9219 | return; |
| 9220 | |
| 9221 | for (i = 0; i < nr_msrs; i++) |
| 9222 | if (msrs[i].host == msrs[i].guest) |
| 9223 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 9224 | else |
| 9225 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 9226 | msrs[i].host); |
| 9227 | } |
| 9228 | |
Jiang Biao | 33365e7 | 2016-11-03 15:03:37 +0800 | [diff] [blame] | 9229 | static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu) |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 9230 | { |
| 9231 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9232 | u64 tscl; |
| 9233 | u32 delta_tsc; |
| 9234 | |
| 9235 | if (vmx->hv_deadline_tsc == -1) |
| 9236 | return; |
| 9237 | |
| 9238 | tscl = rdtsc(); |
| 9239 | if (vmx->hv_deadline_tsc > tscl) |
| 9240 | /* sure to be 32 bit only because checked on set_hv_timer */ |
| 9241 | delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >> |
| 9242 | cpu_preemption_timer_multi); |
| 9243 | else |
| 9244 | delta_tsc = 0; |
| 9245 | |
| 9246 | vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc); |
| 9247 | } |
| 9248 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 9249 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9250 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9251 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 9252 | unsigned long debugctlmsr, cr3, cr4; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9253 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9254 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 9255 | start emulation until we arrive back to a valid state */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 9256 | if (vmx->emulation_required) |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9257 | return; |
| 9258 | |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 9259 | if (vmx->ple_window_dirty) { |
| 9260 | vmx->ple_window_dirty = false; |
| 9261 | vmcs_write32(PLE_WINDOW, vmx->ple_window); |
| 9262 | } |
| 9263 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 9264 | if (vmx->nested.sync_shadow_vmcs) { |
| 9265 | copy_vmcs12_to_shadow(vmx); |
| 9266 | vmx->nested.sync_shadow_vmcs = false; |
| 9267 | } |
| 9268 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9269 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 9270 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 9271 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 9272 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 9273 | |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 9274 | cr3 = __get_current_cr3_fast(); |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 9275 | if (unlikely(cr3 != vmx->loaded_vmcs->vmcs_host_cr3)) { |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 9276 | vmcs_writel(HOST_CR3, cr3); |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 9277 | vmx->loaded_vmcs->vmcs_host_cr3 = cr3; |
Andy Lutomirski | d6e41f1 | 2017-05-28 10:00:17 -0700 | [diff] [blame] | 9278 | } |
| 9279 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 9280 | cr4 = cr4_read_shadow(); |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 9281 | if (unlikely(cr4 != vmx->loaded_vmcs->vmcs_host_cr4)) { |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 9282 | vmcs_writel(HOST_CR4, cr4); |
Ladi Prosek | 4488994 | 2017-09-22 07:53:15 +0200 | [diff] [blame] | 9283 | vmx->loaded_vmcs->vmcs_host_cr4 = cr4; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 9284 | } |
| 9285 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9286 | /* When single-stepping over STI and MOV SS, we must clear the |
| 9287 | * corresponding interruptibility bits in the guest state. Otherwise |
| 9288 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 9289 | * exceptions being set, but that's not correct for the guest debugging |
| 9290 | * case. */ |
| 9291 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 9292 | vmx_set_interrupt_shadow(vcpu, 0); |
| 9293 | |
Paolo Bonzini | b9dd21e | 2017-08-23 23:14:38 +0200 | [diff] [blame] | 9294 | if (static_cpu_has(X86_FEATURE_PKU) && |
| 9295 | kvm_read_cr4_bits(vcpu, X86_CR4_PKE) && |
| 9296 | vcpu->arch.pkru != vmx->host_pkru) |
| 9297 | __write_pkru(vcpu->arch.pkru); |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 9298 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 9299 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 9300 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 9301 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 9302 | vmx_arm_hv_timer(vcpu); |
| 9303 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9304 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 9305 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9306 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9307 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 9308 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 9309 | "push %%" _ASM_CX " \n\t" |
| 9310 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 9311 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9312 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 9313 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 9314 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 9315 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9316 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 9317 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 9318 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 9319 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9320 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 9321 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9322 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9323 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9324 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9325 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 9326 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 9327 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 9328 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 9329 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 9330 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 9331 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9332 | "mov %c[r8](%0), %%r8 \n\t" |
| 9333 | "mov %c[r9](%0), %%r9 \n\t" |
| 9334 | "mov %c[r10](%0), %%r10 \n\t" |
| 9335 | "mov %c[r11](%0), %%r11 \n\t" |
| 9336 | "mov %c[r12](%0), %%r12 \n\t" |
| 9337 | "mov %c[r13](%0), %%r13 \n\t" |
| 9338 | "mov %c[r14](%0), %%r14 \n\t" |
| 9339 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9340 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9341 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 9342 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9343 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9344 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 9345 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9346 | "jmp 2f \n\t" |
| 9347 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 9348 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9349 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9350 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 9351 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9352 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 9353 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 9354 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 9355 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 9356 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 9357 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 9358 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 9359 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9360 | "mov %%r8, %c[r8](%0) \n\t" |
| 9361 | "mov %%r9, %c[r9](%0) \n\t" |
| 9362 | "mov %%r10, %c[r10](%0) \n\t" |
| 9363 | "mov %%r11, %c[r11](%0) \n\t" |
| 9364 | "mov %%r12, %c[r12](%0) \n\t" |
| 9365 | "mov %%r13, %c[r13](%0) \n\t" |
| 9366 | "mov %%r14, %c[r14](%0) \n\t" |
| 9367 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9368 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9369 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 9370 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 9371 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9372 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9373 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 9374 | ".pushsection .rodata \n\t" |
| 9375 | ".global vmx_return \n\t" |
| 9376 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 9377 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9378 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9379 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 9380 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 9381 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9382 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 9383 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 9384 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 9385 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 9386 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 9387 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 9388 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 9389 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9390 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 9391 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 9392 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 9393 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 9394 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 9395 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 9396 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 9397 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9398 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 9399 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 9400 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9401 | : "cc", "memory" |
| 9402 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9403 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9404 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 9405 | #else |
| 9406 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 9407 | #endif |
| 9408 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9409 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 9410 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 9411 | if (debugctlmsr) |
| 9412 | update_debugctlmsr(debugctlmsr); |
| 9413 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 9414 | #ifndef CONFIG_X86_64 |
| 9415 | /* |
| 9416 | * The sysexit path does not restore ds/es, so we must set them to |
| 9417 | * a reasonable value ourselves. |
| 9418 | * |
| 9419 | * We can't defer this to vmx_load_host_state() since that function |
| 9420 | * may be executed in interrupt context, which saves and restore segments |
| 9421 | * around it, nullifying its effect. |
| 9422 | */ |
| 9423 | loadsegment(ds, __USER_DS); |
| 9424 | loadsegment(es, __USER_DS); |
| 9425 | #endif |
| 9426 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 9427 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 9428 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 9429 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 9430 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 9431 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 9432 | vcpu->arch.regs_dirty = 0; |
| 9433 | |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 9434 | /* |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 9435 | * eager fpu is enabled if PKEY is supported and CR4 is switched |
| 9436 | * back on host, so it is safe to read guest PKRU from current |
| 9437 | * XSAVE. |
| 9438 | */ |
Paolo Bonzini | b9dd21e | 2017-08-23 23:14:38 +0200 | [diff] [blame] | 9439 | if (static_cpu_has(X86_FEATURE_PKU) && |
| 9440 | kvm_read_cr4_bits(vcpu, X86_CR4_PKE)) { |
| 9441 | vcpu->arch.pkru = __read_pkru(); |
| 9442 | if (vcpu->arch.pkru != vmx->host_pkru) |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 9443 | __write_pkru(vmx->host_pkru); |
Xiao Guangrong | 1be0e61 | 2016-03-22 16:51:18 +0800 | [diff] [blame] | 9444 | } |
| 9445 | |
| 9446 | /* |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 9447 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 9448 | * we did not inject a still-pending event to L1 now because of |
| 9449 | * nested_run_pending, we need to re-enable this bit. |
| 9450 | */ |
| 9451 | if (vmx->nested.nested_run_pending) |
| 9452 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 9453 | |
| 9454 | vmx->nested.nested_run_pending = 0; |
Jim Mattson | b060ca3 | 2017-09-14 16:31:42 -0700 | [diff] [blame] | 9455 | vmx->idt_vectoring_info = 0; |
| 9456 | |
| 9457 | vmx->exit_reason = vmx->fail ? 0xdead : vmcs_read32(VM_EXIT_REASON); |
| 9458 | if (vmx->fail || (vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) |
| 9459 | return; |
| 9460 | |
| 9461 | vmx->loaded_vmcs->launched = 1; |
| 9462 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 9463 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 9464 | vmx_complete_atomic_exit(vmx); |
| 9465 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 9466 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9467 | } |
Josh Poimboeuf | c207aee | 2017-06-28 10:11:06 -0500 | [diff] [blame] | 9468 | STACK_FRAME_NON_STANDARD(vmx_vcpu_run); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9469 | |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 9470 | static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs) |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9471 | { |
| 9472 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9473 | int cpu; |
| 9474 | |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 9475 | if (vmx->loaded_vmcs == vmcs) |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9476 | return; |
| 9477 | |
| 9478 | cpu = get_cpu(); |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 9479 | vmx->loaded_vmcs = vmcs; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9480 | vmx_vcpu_put(vcpu); |
| 9481 | vmx_vcpu_load(vcpu, cpu); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9482 | put_cpu(); |
| 9483 | } |
| 9484 | |
Jim Mattson | 2f1fe81 | 2016-07-08 15:36:06 -0700 | [diff] [blame] | 9485 | /* |
| 9486 | * Ensure that the current vmcs of the logical processor is the |
| 9487 | * vmcs01 of the vcpu before calling free_nested(). |
| 9488 | */ |
| 9489 | static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu) |
| 9490 | { |
| 9491 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9492 | int r; |
| 9493 | |
| 9494 | r = vcpu_load(vcpu); |
| 9495 | BUG_ON(r); |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 9496 | vmx_switch_vmcs(vcpu, &vmx->vmcs01); |
Jim Mattson | 2f1fe81 | 2016-07-08 15:36:06 -0700 | [diff] [blame] | 9497 | free_nested(vmx); |
| 9498 | vcpu_put(vcpu); |
| 9499 | } |
| 9500 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9501 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 9502 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9503 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9504 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 9505 | if (enable_pml) |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 9506 | vmx_destroy_pml_buffer(vmx); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9507 | free_vpid(vmx->vpid); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9508 | leave_guest_mode(vcpu); |
Jim Mattson | 2f1fe81 | 2016-07-08 15:36:06 -0700 | [diff] [blame] | 9509 | vmx_free_vcpu_nested(vcpu); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 9510 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9511 | kfree(vmx->guest_msrs); |
| 9512 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 9513 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9514 | } |
| 9515 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9516 | 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] | 9517 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9518 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 9519 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9520 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9521 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9522 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9523 | return ERR_PTR(-ENOMEM); |
| 9524 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9525 | vmx->vpid = allocate_vpid(); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 9526 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9527 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 9528 | if (err) |
| 9529 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9530 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9531 | err = -ENOMEM; |
| 9532 | |
| 9533 | /* |
| 9534 | * If PML is turned on, failure on enabling PML just results in failure |
| 9535 | * of creating the vcpu, therefore we can simplify PML logic (by |
| 9536 | * avoiding dealing with cases, such as enabling PML partially on vcpus |
| 9537 | * for the guest, etc. |
| 9538 | */ |
| 9539 | if (enable_pml) { |
| 9540 | vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 9541 | if (!vmx->pml_pg) |
| 9542 | goto uninit_vcpu; |
| 9543 | } |
| 9544 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9545 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 9546 | BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0]) |
| 9547 | > PAGE_SIZE); |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 9548 | |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9549 | if (!vmx->guest_msrs) |
| 9550 | goto free_pml; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9551 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9552 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 9553 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
Jim Mattson | 355f4fb | 2016-10-28 08:29:39 -0700 | [diff] [blame] | 9554 | vmx->loaded_vmcs->shadow_vmcs = NULL; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9555 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9556 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 9557 | loaded_vmcs_init(vmx->loaded_vmcs); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 9558 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9559 | cpu = get_cpu(); |
| 9560 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 9561 | vmx->vcpu.cpu = cpu; |
David Hildenbrand | 12d7991 | 2017-08-24 20:51:26 +0200 | [diff] [blame] | 9562 | vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9563 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 9564 | put_cpu(); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 9565 | if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 9566 | err = alloc_apic_access_page(kvm); |
| 9567 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 9568 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 9569 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9570 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 9571 | if (enable_ept) { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 9572 | err = init_rmode_identity_map(kvm); |
| 9573 | if (err) |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 9574 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 9575 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 9576 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9577 | if (nested) { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9578 | nested_vmx_setup_ctls_msrs(vmx); |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9579 | vmx->nested.vpid02 = allocate_vpid(); |
| 9580 | } |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9581 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9582 | vmx->nested.posted_intr_nv = -1; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 9583 | vmx->nested.current_vmptr = -1ull; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 9584 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 9585 | vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED; |
| 9586 | |
Paolo Bonzini | 31afb2e | 2017-06-06 12:57:06 +0200 | [diff] [blame] | 9587 | /* |
| 9588 | * Enforce invariant: pi_desc.nv is always either POSTED_INTR_VECTOR |
| 9589 | * or POSTED_INTR_WAKEUP_VECTOR. |
| 9590 | */ |
| 9591 | vmx->pi_desc.nv = POSTED_INTR_VECTOR; |
| 9592 | vmx->pi_desc.sn = 1; |
| 9593 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9594 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 9595 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9596 | free_vmcs: |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9597 | free_vpid(vmx->nested.vpid02); |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 9598 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9599 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9600 | kfree(vmx->guest_msrs); |
Peter Feiner | 4e59516 | 2016-07-07 14:49:58 -0700 | [diff] [blame] | 9601 | free_pml: |
| 9602 | vmx_destroy_pml_buffer(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9603 | uninit_vcpu: |
| 9604 | kvm_vcpu_uninit(&vmx->vcpu); |
| 9605 | free_vcpu: |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 9606 | free_vpid(vmx->vpid); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 9607 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 9608 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9609 | } |
| 9610 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 9611 | static void __init vmx_check_processor_compat(void *rtn) |
| 9612 | { |
| 9613 | struct vmcs_config vmcs_conf; |
| 9614 | |
| 9615 | *(int *)rtn = 0; |
| 9616 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 9617 | *(int *)rtn = -EIO; |
| 9618 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 9619 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 9620 | smp_processor_id()); |
| 9621 | *(int *)rtn = -EIO; |
| 9622 | } |
| 9623 | } |
| 9624 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 9625 | 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] | 9626 | { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9627 | u8 cache; |
| 9628 | u64 ipat = 0; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 9629 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9630 | /* For VT-d and EPT combination |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9631 | * 1. MMIO: always map as UC |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9632 | * 2. EPT with VT-d: |
| 9633 | * a. VT-d without snooping control feature: can't guarantee the |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9634 | * result, try to trust guest. |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 9635 | * b. VT-d with snooping control feature: snooping control feature of |
| 9636 | * VT-d engine can guarantee the cache correctness. Just set it |
| 9637 | * 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] | 9638 | * 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] | 9639 | * consistent with host MTRR |
| 9640 | */ |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 9641 | if (is_mmio) { |
| 9642 | cache = MTRR_TYPE_UNCACHABLE; |
| 9643 | goto exit; |
| 9644 | } |
| 9645 | |
| 9646 | if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9647 | ipat = VMX_EPT_IPAT_BIT; |
| 9648 | cache = MTRR_TYPE_WRBACK; |
| 9649 | goto exit; |
| 9650 | } |
| 9651 | |
| 9652 | if (kvm_read_cr0(vcpu) & X86_CR0_CD) { |
| 9653 | ipat = VMX_EPT_IPAT_BIT; |
Paolo Bonzini | 0da029e | 2015-07-23 08:24:42 +0200 | [diff] [blame] | 9654 | 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] | 9655 | cache = MTRR_TYPE_WRBACK; |
| 9656 | else |
| 9657 | cache = MTRR_TYPE_UNCACHABLE; |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9658 | goto exit; |
| 9659 | } |
| 9660 | |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 9661 | cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 9662 | |
| 9663 | exit: |
| 9664 | return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 9665 | } |
| 9666 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 9667 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 9668 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 9669 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 9670 | return PT_DIRECTORY_LEVEL; |
| 9671 | else |
| 9672 | /* For shadow and EPT supported 1GB page */ |
| 9673 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 9674 | } |
| 9675 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 9676 | static void vmcs_set_secondary_exec_control(u32 new_ctl) |
| 9677 | { |
| 9678 | /* |
| 9679 | * These bits in the secondary execution controls field |
| 9680 | * are dynamic, the others are mostly based on the hypervisor |
| 9681 | * architecture and the guest's CPUID. Do not touch the |
| 9682 | * dynamic bits. |
| 9683 | */ |
| 9684 | u32 mask = |
| 9685 | SECONDARY_EXEC_SHADOW_VMCS | |
| 9686 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 9687 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 9688 | |
| 9689 | u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 9690 | |
| 9691 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 9692 | (new_ctl & ~mask) | (cur_ctl & mask)); |
| 9693 | } |
| 9694 | |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 9695 | /* |
| 9696 | * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits |
| 9697 | * (indicating "allowed-1") if they are supported in the guest's CPUID. |
| 9698 | */ |
| 9699 | static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu) |
| 9700 | { |
| 9701 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9702 | struct kvm_cpuid_entry2 *entry; |
| 9703 | |
| 9704 | vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff; |
| 9705 | vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE; |
| 9706 | |
| 9707 | #define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \ |
| 9708 | if (entry && (entry->_reg & (_cpuid_mask))) \ |
| 9709 | vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \ |
| 9710 | } while (0) |
| 9711 | |
| 9712 | entry = kvm_find_cpuid_entry(vcpu, 0x1, 0); |
| 9713 | cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME)); |
| 9714 | cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME)); |
| 9715 | cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC)); |
| 9716 | cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE)); |
| 9717 | cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE)); |
| 9718 | cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE)); |
| 9719 | cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE)); |
| 9720 | cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE)); |
| 9721 | cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR)); |
| 9722 | cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM)); |
| 9723 | cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX)); |
| 9724 | cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX)); |
| 9725 | cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID)); |
| 9726 | cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE)); |
| 9727 | |
| 9728 | entry = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 9729 | cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE)); |
| 9730 | cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP)); |
| 9731 | cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP)); |
| 9732 | cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU)); |
| 9733 | /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */ |
| 9734 | cr4_fixed1_update(bit(11), ecx, bit(2)); |
| 9735 | |
| 9736 | #undef cr4_fixed1_update |
| 9737 | } |
| 9738 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 9739 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 9740 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9741 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9742 | |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 9743 | if (cpu_has_secondary_exec_ctrls()) { |
| 9744 | vmx_compute_secondary_exec_control(vmx); |
| 9745 | vmcs_set_secondary_exec_control(vmx->secondary_exec_control); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 9746 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 9747 | |
Haozhong Zhang | 37e4c99 | 2016-06-22 14:59:55 +0800 | [diff] [blame] | 9748 | if (nested_vmx_allowed(vcpu)) |
| 9749 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |= |
| 9750 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 9751 | else |
| 9752 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &= |
| 9753 | ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
David Matlack | 8322ebb | 2016-11-29 18:14:09 -0800 | [diff] [blame] | 9754 | |
| 9755 | if (nested_vmx_allowed(vcpu)) |
| 9756 | nested_vmx_cr_fixed1_bits_update(vcpu); |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 9757 | } |
| 9758 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 9759 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 9760 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 9761 | if (func == 1 && nested) |
| 9762 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 9763 | } |
| 9764 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9765 | static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu, |
| 9766 | struct x86_exception *fault) |
| 9767 | { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9768 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 9769 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9770 | u32 exit_reason; |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 9771 | unsigned long exit_qualification = vcpu->arch.exit_qualification; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9772 | |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 9773 | if (vmx->nested.pml_full) { |
| 9774 | exit_reason = EXIT_REASON_PML_FULL; |
| 9775 | vmx->nested.pml_full = false; |
| 9776 | exit_qualification &= INTR_INFO_UNBLOCK_NMI; |
| 9777 | } else if (fault->error_code & PFERR_RSVD_MASK) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9778 | exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9779 | else |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9780 | exit_reason = EXIT_REASON_EPT_VIOLATION; |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 9781 | |
| 9782 | nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 9783 | vmcs12->guest_physical_address = fault->address; |
| 9784 | } |
| 9785 | |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 9786 | static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu) |
| 9787 | { |
David Hildenbrand | bb97a01 | 2017-08-10 23:15:28 +0200 | [diff] [blame] | 9788 | return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT; |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 9789 | } |
| 9790 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9791 | /* Callbacks for nested_ept_init_mmu_context: */ |
| 9792 | |
| 9793 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu) |
| 9794 | { |
| 9795 | /* return the page table to be shadowed - in our case, EPT12 */ |
| 9796 | return get_vmcs12(vcpu)->ept_pointer; |
| 9797 | } |
| 9798 | |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 9799 | static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9800 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 9801 | WARN_ON(mmu_is_nested(vcpu)); |
David Hildenbrand | a057e0e | 2017-08-10 23:36:54 +0200 | [diff] [blame] | 9802 | if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu))) |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 9803 | return 1; |
| 9804 | |
| 9805 | kvm_mmu_unload(vcpu); |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 9806 | kvm_init_shadow_ept_mmu(vcpu, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9807 | to_vmx(vcpu)->nested.nested_vmx_ept_caps & |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 9808 | VMX_EPT_EXECUTE_ONLY_BIT, |
David Hildenbrand | a057e0e | 2017-08-10 23:36:54 +0200 | [diff] [blame] | 9809 | nested_ept_ad_enabled(vcpu)); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9810 | vcpu->arch.mmu.set_cr3 = vmx_set_cr3; |
| 9811 | vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3; |
| 9812 | vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault; |
| 9813 | |
| 9814 | vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu; |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 9815 | return 0; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9816 | } |
| 9817 | |
| 9818 | static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu) |
| 9819 | { |
| 9820 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 9821 | } |
| 9822 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 9823 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 9824 | u16 error_code) |
| 9825 | { |
| 9826 | bool inequality, bit; |
| 9827 | |
| 9828 | bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; |
| 9829 | inequality = |
| 9830 | (error_code & vmcs12->page_fault_error_code_mask) != |
| 9831 | vmcs12->page_fault_error_code_match; |
| 9832 | return inequality ^ bit; |
| 9833 | } |
| 9834 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9835 | static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu, |
| 9836 | struct x86_exception *fault) |
| 9837 | { |
| 9838 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 9839 | |
| 9840 | WARN_ON(!is_guest_mode(vcpu)); |
| 9841 | |
Wanpeng Li | 305d0ab | 2017-09-28 18:16:44 -0700 | [diff] [blame] | 9842 | if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) && |
| 9843 | !to_vmx(vcpu)->nested.nested_run_pending) { |
Paolo Bonzini | b96fb43 | 2017-07-27 12:29:32 +0200 | [diff] [blame] | 9844 | vmcs12->vm_exit_intr_error_code = fault->error_code; |
| 9845 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 9846 | PF_VECTOR | INTR_TYPE_HARD_EXCEPTION | |
| 9847 | INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK, |
| 9848 | fault->address); |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 9849 | } else { |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9850 | kvm_inject_page_fault(vcpu, fault); |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 9851 | } |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9852 | } |
| 9853 | |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9854 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 9855 | struct vmcs12 *vmcs12); |
| 9856 | |
| 9857 | static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu, |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9858 | struct vmcs12 *vmcs12) |
| 9859 | { |
| 9860 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9861 | struct page *page; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9862 | u64 hpa; |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9863 | |
| 9864 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9865 | /* |
| 9866 | * Translate L1 physical address to host physical |
| 9867 | * address for vmcs02. Keep the page pinned, so this |
| 9868 | * physical address remains valid. We keep a reference |
| 9869 | * to it so we can release it later. |
| 9870 | */ |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9871 | if (vmx->nested.apic_access_page) { /* shouldn't happen */ |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 9872 | kvm_release_page_dirty(vmx->nested.apic_access_page); |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9873 | vmx->nested.apic_access_page = NULL; |
| 9874 | } |
| 9875 | page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9876 | /* |
| 9877 | * If translation failed, no matter: This feature asks |
| 9878 | * to exit when accessing the given address, and if it |
| 9879 | * can never be accessed, this feature won't do |
| 9880 | * anything anyway. |
| 9881 | */ |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9882 | if (!is_error_page(page)) { |
| 9883 | vmx->nested.apic_access_page = page; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9884 | hpa = page_to_phys(vmx->nested.apic_access_page); |
| 9885 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 9886 | } else { |
| 9887 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 9888 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 9889 | } |
| 9890 | } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) && |
| 9891 | cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
| 9892 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 9893 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
| 9894 | kvm_vcpu_reload_apic_access_page(vcpu); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9895 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9896 | |
| 9897 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9898 | if (vmx->nested.virtual_apic_page) { /* shouldn't happen */ |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 9899 | kvm_release_page_dirty(vmx->nested.virtual_apic_page); |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9900 | vmx->nested.virtual_apic_page = NULL; |
| 9901 | } |
| 9902 | page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr); |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9903 | |
| 9904 | /* |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9905 | * If translation failed, VM entry will fail because |
| 9906 | * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull. |
| 9907 | * Failing the vm entry is _not_ what the processor |
| 9908 | * does but it's basically the only possibility we |
| 9909 | * have. We could still enter the guest if CR8 load |
| 9910 | * exits are enabled, CR8 store exits are enabled, and |
| 9911 | * virtualize APIC access is disabled; in this case |
| 9912 | * the processor would never use the TPR shadow and we |
| 9913 | * could simply clear the bit from the execution |
| 9914 | * control. But such a configuration is useless, so |
| 9915 | * let's keep the code simple. |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9916 | */ |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9917 | if (!is_error_page(page)) { |
| 9918 | vmx->nested.virtual_apic_page = page; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9919 | hpa = page_to_phys(vmx->nested.virtual_apic_page); |
| 9920 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa); |
| 9921 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9922 | } |
| 9923 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9924 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9925 | if (vmx->nested.pi_desc_page) { /* shouldn't happen */ |
| 9926 | kunmap(vmx->nested.pi_desc_page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 9927 | kvm_release_page_dirty(vmx->nested.pi_desc_page); |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9928 | vmx->nested.pi_desc_page = NULL; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9929 | } |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9930 | page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr); |
| 9931 | if (is_error_page(page)) |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9932 | return; |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 9933 | vmx->nested.pi_desc_page = page; |
| 9934 | vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9935 | vmx->nested.pi_desc = |
| 9936 | (struct pi_desc *)((void *)vmx->nested.pi_desc + |
| 9937 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9938 | (PAGE_SIZE - 1))); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9939 | vmcs_write64(POSTED_INTR_DESC_ADDR, |
| 9940 | page_to_phys(vmx->nested.pi_desc_page) + |
| 9941 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9942 | (PAGE_SIZE - 1))); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9943 | } |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 9944 | if (cpu_has_vmx_msr_bitmap() && |
| 9945 | nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) && |
| 9946 | nested_vmx_merge_msr_bitmap(vcpu, vmcs12)) |
| 9947 | ; |
| 9948 | else |
| 9949 | vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL, |
| 9950 | CPU_BASED_USE_MSR_BITMAPS); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9951 | } |
| 9952 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9953 | static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu) |
| 9954 | { |
| 9955 | u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value; |
| 9956 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9957 | |
| 9958 | if (vcpu->arch.virtual_tsc_khz == 0) |
| 9959 | return; |
| 9960 | |
| 9961 | /* Make sure short timeouts reliably trigger an immediate vmexit. |
| 9962 | * hrtimer_start does not guarantee this. */ |
| 9963 | if (preemption_timeout <= 1) { |
| 9964 | vmx_preemption_timer_fn(&vmx->nested.preemption_timer); |
| 9965 | return; |
| 9966 | } |
| 9967 | |
| 9968 | preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 9969 | preemption_timeout *= 1000000; |
| 9970 | do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz); |
| 9971 | hrtimer_start(&vmx->nested.preemption_timer, |
| 9972 | ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL); |
| 9973 | } |
| 9974 | |
Jim Mattson | 56a2051 | 2017-07-06 16:33:06 -0700 | [diff] [blame] | 9975 | static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu, |
| 9976 | struct vmcs12 *vmcs12) |
| 9977 | { |
| 9978 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
| 9979 | return 0; |
| 9980 | |
| 9981 | if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) || |
| 9982 | !page_address_valid(vcpu, vmcs12->io_bitmap_b)) |
| 9983 | return -EINVAL; |
| 9984 | |
| 9985 | return 0; |
| 9986 | } |
| 9987 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9988 | static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu, |
| 9989 | struct vmcs12 *vmcs12) |
| 9990 | { |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9991 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
| 9992 | return 0; |
| 9993 | |
Jim Mattson | 5fa99cb | 2017-07-06 16:33:07 -0700 | [diff] [blame] | 9994 | if (!page_address_valid(vcpu, vmcs12->msr_bitmap)) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9995 | return -EINVAL; |
| 9996 | |
| 9997 | return 0; |
| 9998 | } |
| 9999 | |
Jim Mattson | 712b12d | 2017-08-24 13:24:47 -0700 | [diff] [blame] | 10000 | static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu, |
| 10001 | struct vmcs12 *vmcs12) |
| 10002 | { |
| 10003 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 10004 | return 0; |
| 10005 | |
| 10006 | if (!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr)) |
| 10007 | return -EINVAL; |
| 10008 | |
| 10009 | return 0; |
| 10010 | } |
| 10011 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10012 | /* |
| 10013 | * Merge L0's and L1's MSR bitmap, return false to indicate that |
| 10014 | * we do not use the hardware. |
| 10015 | */ |
| 10016 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 10017 | struct vmcs12 *vmcs12) |
| 10018 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10019 | int msr; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10020 | struct page *page; |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10021 | unsigned long *msr_bitmap_l1; |
| 10022 | unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10023 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10024 | /* This shortcut is ok because we support only x2APIC MSRs so far. */ |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10025 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12)) |
| 10026 | return false; |
| 10027 | |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 10028 | page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap); |
| 10029 | if (is_error_page(page)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10030 | return false; |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10031 | msr_bitmap_l1 = (unsigned long *)kmap(page); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10032 | |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10033 | memset(msr_bitmap_l0, 0xff, PAGE_SIZE); |
| 10034 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10035 | if (nested_cpu_has_virt_x2apic_mode(vmcs12)) { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10036 | if (nested_cpu_has_apic_reg_virt(vmcs12)) |
| 10037 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 10038 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10039 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10040 | msr, MSR_TYPE_R); |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10041 | |
| 10042 | nested_vmx_disable_intercept_for_msr( |
| 10043 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10044 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
| 10045 | MSR_TYPE_R | MSR_TYPE_W); |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10046 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10047 | if (nested_cpu_has_vid(vmcs12)) { |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10048 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10049 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10050 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 10051 | MSR_TYPE_W); |
| 10052 | nested_vmx_disable_intercept_for_msr( |
Radim Krčmář | d048c09 | 2016-08-08 20:16:22 +0200 | [diff] [blame] | 10053 | msr_bitmap_l1, msr_bitmap_l0, |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10054 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 10055 | MSR_TYPE_W); |
| 10056 | } |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10057 | } |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10058 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 10059 | kvm_release_page_clean(page); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10060 | |
| 10061 | return true; |
| 10062 | } |
| 10063 | |
| 10064 | static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu, |
| 10065 | struct vmcs12 *vmcs12) |
| 10066 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10067 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12) && |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10068 | !nested_cpu_has_apic_reg_virt(vmcs12) && |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10069 | !nested_cpu_has_vid(vmcs12) && |
| 10070 | !nested_cpu_has_posted_intr(vmcs12)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10071 | return 0; |
| 10072 | |
| 10073 | /* |
| 10074 | * If virtualize x2apic mode is enabled, |
| 10075 | * virtualize apic access must be disabled. |
| 10076 | */ |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 10077 | if (nested_cpu_has_virt_x2apic_mode(vmcs12) && |
| 10078 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10079 | return -EINVAL; |
| 10080 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10081 | /* |
| 10082 | * If virtual interrupt delivery is enabled, |
| 10083 | * we must exit on external interrupts. |
| 10084 | */ |
| 10085 | if (nested_cpu_has_vid(vmcs12) && |
| 10086 | !nested_exit_on_intr(vcpu)) |
| 10087 | return -EINVAL; |
| 10088 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10089 | /* |
| 10090 | * bits 15:8 should be zero in posted_intr_nv, |
| 10091 | * the descriptor address has been already checked |
| 10092 | * in nested_get_vmcs12_pages. |
| 10093 | */ |
| 10094 | if (nested_cpu_has_posted_intr(vmcs12) && |
| 10095 | (!nested_cpu_has_vid(vmcs12) || |
| 10096 | !nested_exit_intr_ack_set(vcpu) || |
| 10097 | vmcs12->posted_intr_nv & 0xff00)) |
| 10098 | return -EINVAL; |
| 10099 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 10100 | /* tpr shadow is needed by all apicv features. */ |
| 10101 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 10102 | return -EINVAL; |
| 10103 | |
| 10104 | return 0; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10105 | } |
| 10106 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10107 | static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu, |
| 10108 | unsigned long count_field, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10109 | unsigned long addr_field) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10110 | { |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10111 | int maxphyaddr; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10112 | u64 count, addr; |
| 10113 | |
| 10114 | if (vmcs12_read_any(vcpu, count_field, &count) || |
| 10115 | vmcs12_read_any(vcpu, addr_field, &addr)) { |
| 10116 | WARN_ON(1); |
| 10117 | return -EINVAL; |
| 10118 | } |
| 10119 | if (count == 0) |
| 10120 | return 0; |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10121 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10122 | if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr || |
| 10123 | (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10124 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10125 | "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)", |
| 10126 | addr_field, maxphyaddr, count, addr); |
| 10127 | return -EINVAL; |
| 10128 | } |
| 10129 | return 0; |
| 10130 | } |
| 10131 | |
| 10132 | static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu, |
| 10133 | struct vmcs12 *vmcs12) |
| 10134 | { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10135 | if (vmcs12->vm_exit_msr_load_count == 0 && |
| 10136 | vmcs12->vm_exit_msr_store_count == 0 && |
| 10137 | vmcs12->vm_entry_msr_load_count == 0) |
| 10138 | return 0; /* Fast path */ |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10139 | if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10140 | VM_EXIT_MSR_LOAD_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10141 | nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10142 | VM_EXIT_MSR_STORE_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10143 | nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 10144 | VM_ENTRY_MSR_LOAD_ADDR)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10145 | return -EINVAL; |
| 10146 | return 0; |
| 10147 | } |
| 10148 | |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 10149 | static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu, |
| 10150 | struct vmcs12 *vmcs12) |
| 10151 | { |
| 10152 | u64 address = vmcs12->pml_address; |
| 10153 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 10154 | |
| 10155 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) { |
| 10156 | if (!nested_cpu_has_ept(vmcs12) || |
| 10157 | !IS_ALIGNED(address, 4096) || |
| 10158 | address >> maxphyaddr) |
| 10159 | return -EINVAL; |
| 10160 | } |
| 10161 | |
| 10162 | return 0; |
| 10163 | } |
| 10164 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10165 | static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu, |
| 10166 | struct vmx_msr_entry *e) |
| 10167 | { |
| 10168 | /* x2APIC MSR accesses are not allowed */ |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 10169 | if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8) |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10170 | return -EINVAL; |
| 10171 | if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */ |
| 10172 | e->index == MSR_IA32_UCODE_REV) |
| 10173 | return -EINVAL; |
| 10174 | if (e->reserved != 0) |
| 10175 | return -EINVAL; |
| 10176 | return 0; |
| 10177 | } |
| 10178 | |
| 10179 | static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu, |
| 10180 | struct vmx_msr_entry *e) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10181 | { |
| 10182 | if (e->index == MSR_FS_BASE || |
| 10183 | e->index == MSR_GS_BASE || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10184 | e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */ |
| 10185 | nested_vmx_msr_check_common(vcpu, e)) |
| 10186 | return -EINVAL; |
| 10187 | return 0; |
| 10188 | } |
| 10189 | |
| 10190 | static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu, |
| 10191 | struct vmx_msr_entry *e) |
| 10192 | { |
| 10193 | if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */ |
| 10194 | nested_vmx_msr_check_common(vcpu, e)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10195 | return -EINVAL; |
| 10196 | return 0; |
| 10197 | } |
| 10198 | |
| 10199 | /* |
| 10200 | * Load guest's/host's msr at nested entry/exit. |
| 10201 | * return 0 for success, entry index for failure. |
| 10202 | */ |
| 10203 | static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 10204 | { |
| 10205 | u32 i; |
| 10206 | struct vmx_msr_entry e; |
| 10207 | struct msr_data msr; |
| 10208 | |
| 10209 | msr.host_initiated = false; |
| 10210 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 10211 | if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e), |
| 10212 | &e, sizeof(e))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10213 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10214 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 10215 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10216 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10217 | } |
| 10218 | if (nested_vmx_load_msr_check(vcpu, &e)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10219 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10220 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 10221 | __func__, i, e.index, e.reserved); |
| 10222 | goto fail; |
| 10223 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10224 | msr.index = e.index; |
| 10225 | msr.data = e.value; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10226 | if (kvm_set_msr(vcpu, &msr)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10227 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10228 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 10229 | __func__, i, e.index, e.value); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10230 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10231 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10232 | } |
| 10233 | return 0; |
| 10234 | fail: |
| 10235 | return i + 1; |
| 10236 | } |
| 10237 | |
| 10238 | static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 10239 | { |
| 10240 | u32 i; |
| 10241 | struct vmx_msr_entry e; |
| 10242 | |
| 10243 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 10244 | struct msr_data msr_info; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 10245 | if (kvm_vcpu_read_guest(vcpu, |
| 10246 | gpa + i * sizeof(e), |
| 10247 | &e, 2 * sizeof(u32))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10248 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10249 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 10250 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10251 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10252 | } |
| 10253 | if (nested_vmx_store_msr_check(vcpu, &e)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10254 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10255 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 10256 | __func__, i, e.index, e.reserved); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10257 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10258 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 10259 | msr_info.host_initiated = false; |
| 10260 | msr_info.index = e.index; |
| 10261 | if (kvm_get_msr(vcpu, &msr_info)) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10262 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10263 | "%s cannot read MSR (%u, 0x%x)\n", |
| 10264 | __func__, i, e.index); |
| 10265 | return -EINVAL; |
| 10266 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 10267 | if (kvm_vcpu_write_guest(vcpu, |
| 10268 | gpa + i * sizeof(e) + |
| 10269 | offsetof(struct vmx_msr_entry, value), |
| 10270 | &msr_info.data, sizeof(msr_info.data))) { |
Paolo Bonzini | bbe41b9 | 2016-08-19 17:51:20 +0200 | [diff] [blame] | 10271 | pr_debug_ratelimited( |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10272 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 10273 | __func__, i, e.index, msr_info.data); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 10274 | return -EINVAL; |
| 10275 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10276 | } |
| 10277 | return 0; |
| 10278 | } |
| 10279 | |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 10280 | static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val) |
| 10281 | { |
| 10282 | unsigned long invalid_mask; |
| 10283 | |
| 10284 | invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu); |
| 10285 | return (val & invalid_mask) == 0; |
| 10286 | } |
| 10287 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10288 | /* |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10289 | * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are |
| 10290 | * emulating VM entry into a guest with EPT enabled. |
| 10291 | * Returns 0 on success, 1 on failure. Invalid state exit qualification code |
| 10292 | * is assigned to entry_failure_code on failure. |
| 10293 | */ |
| 10294 | 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] | 10295 | u32 *entry_failure_code) |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10296 | { |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10297 | if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) { |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 10298 | if (!nested_cr3_valid(vcpu, cr3)) { |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10299 | *entry_failure_code = ENTRY_FAIL_DEFAULT; |
| 10300 | return 1; |
| 10301 | } |
| 10302 | |
| 10303 | /* |
| 10304 | * If PAE paging and EPT are both on, CR3 is not used by the CPU and |
| 10305 | * must not be dereferenced. |
| 10306 | */ |
| 10307 | if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) && |
| 10308 | !nested_ept) { |
| 10309 | if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) { |
| 10310 | *entry_failure_code = ENTRY_FAIL_PDPTE; |
| 10311 | return 1; |
| 10312 | } |
| 10313 | } |
| 10314 | |
| 10315 | vcpu->arch.cr3 = cr3; |
| 10316 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 10317 | } |
| 10318 | |
| 10319 | kvm_mmu_reset_context(vcpu); |
| 10320 | return 0; |
| 10321 | } |
| 10322 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10323 | /* |
| 10324 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 10325 | * 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] | 10326 | * 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] | 10327 | * guest in a way that will both be appropriate to L1's requests, and our |
| 10328 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 10329 | * function also has additional necessary side-effects, like setting various |
| 10330 | * vcpu->arch fields. |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 10331 | * Returns 0 on success, 1 on failure. Invalid state exit qualification code |
| 10332 | * is assigned to entry_failure_code on failure. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10333 | */ |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 10334 | static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10335 | bool from_vmentry, u32 *entry_failure_code) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10336 | { |
| 10337 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Bandan Das | 03efce6 | 2017-05-05 15:25:15 -0400 | [diff] [blame] | 10338 | u32 exec_control, vmcs12_exec_ctrl; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10339 | |
| 10340 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 10341 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 10342 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 10343 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 10344 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 10345 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 10346 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 10347 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 10348 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 10349 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 10350 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 10351 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 10352 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 10353 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 10354 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 10355 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 10356 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 10357 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 10358 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 10359 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 10360 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 10361 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 10362 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 10363 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 10364 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 10365 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 10366 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 10367 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 10368 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 10369 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 10370 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 10371 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 10372 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 10373 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 10374 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 10375 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 10376 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10377 | if (from_vmentry && |
| 10378 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) { |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 10379 | kvm_set_dr(vcpu, 7, vmcs12->guest_dr7); |
| 10380 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 10381 | } else { |
| 10382 | kvm_set_dr(vcpu, 7, vcpu->arch.dr7); |
| 10383 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl); |
| 10384 | } |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10385 | if (from_vmentry) { |
| 10386 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 10387 | vmcs12->vm_entry_intr_info_field); |
| 10388 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 10389 | vmcs12->vm_entry_exception_error_code); |
| 10390 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 10391 | vmcs12->vm_entry_instruction_len); |
| 10392 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 10393 | vmcs12->guest_interruptibility_info); |
Wanpeng Li | 2d6144e | 2017-07-25 03:40:46 -0700 | [diff] [blame] | 10394 | vmx->loaded_vmcs->nmi_known_unmasked = |
| 10395 | !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI); |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10396 | } else { |
| 10397 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 10398 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10399 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
Gleb Natapov | 63fbf59 | 2013-07-28 18:31:06 +0300 | [diff] [blame] | 10400 | vmx_set_rflags(vcpu, vmcs12->guest_rflags); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10401 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 10402 | vmcs12->guest_pending_dbg_exceptions); |
| 10403 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 10404 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 10405 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 10406 | if (nested_cpu_has_xsaves(vmcs12)) |
| 10407 | vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10408 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 10409 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10410 | exec_control = vmcs12->pin_based_vm_exec_control; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10411 | |
Paolo Bonzini | 9314006db | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 10412 | /* Preemption timer setting is only taken from vmcs01. */ |
| 10413 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 10414 | exec_control |= vmcs_config.pin_based_exec_ctrl; |
| 10415 | if (vmx->hv_deadline_tsc == -1) |
| 10416 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 10417 | |
| 10418 | /* Posted interrupts setting is only taken from vmcs12. */ |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10419 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10420 | vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; |
| 10421 | vmx->nested.pi_pending = false; |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 10422 | vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR); |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10423 | } else { |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10424 | exec_control &= ~PIN_BASED_POSTED_INTR; |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10425 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10426 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10427 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10428 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10429 | vmx->nested.preemption_timer_expired = false; |
| 10430 | if (nested_cpu_has_preemption_timer(vmcs12)) |
| 10431 | vmx_start_preemption_timer(vcpu); |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 10432 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10433 | /* |
| 10434 | * Whether page-faults are trapped is determined by a combination of |
| 10435 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 10436 | * If enable_ept, L0 doesn't care about page faults and we should |
| 10437 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 10438 | * care about (at least some) page faults, and because it is not easy |
| 10439 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 10440 | * to exit on each and every L2 page fault. This is done by setting |
| 10441 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 10442 | * Note that below we don't need special code to set EB.PF beyond the |
| 10443 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 10444 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 10445 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10446 | */ |
| 10447 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 10448 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 10449 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 10450 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 10451 | |
| 10452 | if (cpu_has_secondary_exec_ctrls()) { |
Paolo Bonzini | 80154d7 | 2017-08-24 13:55:35 +0200 | [diff] [blame] | 10453 | exec_control = vmx->secondary_exec_control; |
Xiao Guangrong | e282162 | 2015-09-09 14:05:52 +0800 | [diff] [blame] | 10454 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10455 | /* Take the following fields only from vmcs12 */ |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 10456 | exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Paolo Bonzini | 90a2db6 | 2017-07-27 13:22:13 +0200 | [diff] [blame] | 10457 | SECONDARY_EXEC_ENABLE_INVPCID | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 10458 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 3db1348 | 2017-08-24 14:48:03 +0200 | [diff] [blame] | 10459 | SECONDARY_EXEC_XSAVES | |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 10460 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 10461 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 10462 | SECONDARY_EXEC_ENABLE_VMFUNC); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10463 | if (nested_cpu_has(vmcs12, |
Bandan Das | 03efce6 | 2017-05-05 15:25:15 -0400 | [diff] [blame] | 10464 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) { |
| 10465 | vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control & |
| 10466 | ~SECONDARY_EXEC_ENABLE_PML; |
| 10467 | exec_control |= vmcs12_exec_ctrl; |
| 10468 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10469 | |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 10470 | /* All VMFUNCs are currently emulated through L0 vmexits. */ |
| 10471 | if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC) |
| 10472 | vmcs_write64(VM_FUNCTION_CONTROL, 0); |
| 10473 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10474 | if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) { |
| 10475 | vmcs_write64(EOI_EXIT_BITMAP0, |
| 10476 | vmcs12->eoi_exit_bitmap0); |
| 10477 | vmcs_write64(EOI_EXIT_BITMAP1, |
| 10478 | vmcs12->eoi_exit_bitmap1); |
| 10479 | vmcs_write64(EOI_EXIT_BITMAP2, |
| 10480 | vmcs12->eoi_exit_bitmap2); |
| 10481 | vmcs_write64(EOI_EXIT_BITMAP3, |
| 10482 | vmcs12->eoi_exit_bitmap3); |
| 10483 | vmcs_write16(GUEST_INTR_STATUS, |
| 10484 | vmcs12->guest_intr_status); |
| 10485 | } |
| 10486 | |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10487 | /* |
| 10488 | * Write an illegal value to APIC_ACCESS_ADDR. Later, |
| 10489 | * nested_get_vmcs12_pages will either fix it up or |
| 10490 | * remove the VM execution control. |
| 10491 | */ |
| 10492 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) |
| 10493 | vmcs_write64(APIC_ACCESS_ADDR, -1ull); |
| 10494 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10495 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 10496 | } |
| 10497 | |
| 10498 | |
| 10499 | /* |
| 10500 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 10501 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 10502 | * Other fields are different per CPU, and will be set later when |
| 10503 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 10504 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 10505 | vmx_set_constant_host_state(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10506 | |
| 10507 | /* |
Jim Mattson | 83bafef | 2016-10-04 10:48:38 -0700 | [diff] [blame] | 10508 | * Set the MSR load/store lists to match L0's settings. |
| 10509 | */ |
| 10510 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 10511 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 10512 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
| 10513 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 10514 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
| 10515 | |
| 10516 | /* |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10517 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 10518 | * entry, but only if the current (host) sp changed from the value |
| 10519 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 10520 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 10521 | * here we just force the write to happen on entry. |
| 10522 | */ |
| 10523 | vmx->host_rsp = 0; |
| 10524 | |
| 10525 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 10526 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 10527 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 10528 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 10529 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10530 | |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10531 | /* |
| 10532 | * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if |
| 10533 | * nested_get_vmcs12_pages can't fix it up, the illegal value |
| 10534 | * will result in a VM entry failure. |
| 10535 | */ |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10536 | if (exec_control & CPU_BASED_TPR_SHADOW) { |
Jim Mattson | 6beb7bd | 2016-11-30 12:03:45 -0800 | [diff] [blame] | 10537 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull); |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10538 | vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); |
Jim Mattson | 51aa68e | 2017-09-12 13:02:54 -0700 | [diff] [blame] | 10539 | } else { |
| 10540 | #ifdef CONFIG_X86_64 |
| 10541 | exec_control |= CPU_BASED_CR8_LOAD_EXITING | |
| 10542 | CPU_BASED_CR8_STORE_EXITING; |
| 10543 | #endif |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10544 | } |
| 10545 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10546 | /* |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10547 | * Merging of IO bitmap not currently supported. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10548 | * Rather, exit every time. |
| 10549 | */ |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10550 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 10551 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 10552 | |
| 10553 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 10554 | |
| 10555 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 10556 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 10557 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 10558 | */ |
| 10559 | update_exception_bitmap(vcpu); |
| 10560 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 10561 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 10562 | |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10563 | /* L2->L1 exit controls are emulated - the hardware exit is to L0 so |
| 10564 | * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER |
| 10565 | * bits are further modified by vmx_set_efer() below. |
| 10566 | */ |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10567 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10568 | |
| 10569 | /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are |
| 10570 | * emulated by vmx_set_efer(), below. |
| 10571 | */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10572 | vm_entry_controls_init(vmx, |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 10573 | (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER & |
| 10574 | ~VM_ENTRY_IA32E_MODE) | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10575 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 10576 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10577 | if (from_vmentry && |
| 10578 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10579 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10580 | vcpu->arch.pat = vmcs12->guest_ia32_pat; |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10581 | } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10582 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10583 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10584 | |
| 10585 | set_cr4_guest_host_mask(vmx); |
| 10586 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10587 | if (from_vmentry && |
| 10588 | vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10589 | vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs); |
| 10590 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10591 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 10592 | vmcs_write64(TSC_OFFSET, |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 10593 | vcpu->arch.tsc_offset + vmcs12->tsc_offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10594 | else |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 10595 | vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset); |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 10596 | if (kvm_has_tsc_control) |
| 10597 | decache_tsc_multiplier(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10598 | |
| 10599 | if (enable_vpid) { |
| 10600 | /* |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 10601 | * There is no direct mapping between vpid02 and vpid12, the |
| 10602 | * vpid02 is per-vCPU for L0 and reused while the value of |
| 10603 | * vpid12 is changed w/ one invvpid during nested vmentry. |
| 10604 | * The vpid12 is allocated by L1 for L2, so it will not |
| 10605 | * influence global bitmap(for vpid01 and vpid02 allocation) |
| 10606 | * even if spawn a lot of nested vCPUs. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10607 | */ |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 10608 | if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) { |
| 10609 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02); |
| 10610 | if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) { |
| 10611 | vmx->nested.last_vpid = vmcs12->virtual_processor_id; |
| 10612 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02); |
| 10613 | } |
| 10614 | } else { |
| 10615 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 10616 | vmx_flush_tlb(vcpu); |
| 10617 | } |
| 10618 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10619 | } |
| 10620 | |
Ladi Prosek | 1fb883b | 2017-04-04 14:18:53 +0200 | [diff] [blame] | 10621 | if (enable_pml) { |
| 10622 | /* |
| 10623 | * Conceptually we want to copy the PML address and index from |
| 10624 | * vmcs01 here, and then back to vmcs01 on nested vmexit. But, |
| 10625 | * since we always flush the log on each vmexit, this happens |
| 10626 | * to be equivalent to simply resetting the fields in vmcs02. |
| 10627 | */ |
| 10628 | ASSERT(vmx->pml_pg); |
| 10629 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 10630 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 10631 | } |
| 10632 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10633 | if (nested_cpu_has_ept(vmcs12)) { |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 10634 | if (nested_ept_init_mmu_context(vcpu)) { |
| 10635 | *entry_failure_code = ENTRY_FAIL_DEFAULT; |
| 10636 | return 1; |
| 10637 | } |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 10638 | } else if (nested_cpu_has2(vmcs12, |
| 10639 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
| 10640 | vmx_flush_tlb_ept_only(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10641 | } |
| 10642 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10643 | /* |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 10644 | * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those |
| 10645 | * bits which we consider mandatory enabled. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10646 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 10647 | * the specifications by L1; It's not enough to take |
| 10648 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 10649 | * have more bits than L1 expected. |
| 10650 | */ |
| 10651 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 10652 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 10653 | |
| 10654 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 10655 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 10656 | |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 10657 | if (from_vmentry && |
| 10658 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) |
David Matlack | 5a6a974 | 2016-11-29 18:14:10 -0800 | [diff] [blame] | 10659 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
| 10660 | else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
| 10661 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10662 | else |
| 10663 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10664 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 10665 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10666 | |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10667 | /* Shadow page tables on either EPT or shadow page tables. */ |
Ladi Prosek | 7ad658b | 2017-03-23 07:18:08 +0100 | [diff] [blame] | 10668 | if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12), |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 10669 | entry_failure_code)) |
| 10670 | return 1; |
Ladi Prosek | 7ca29de | 2016-11-30 16:03:08 +0100 | [diff] [blame] | 10671 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10672 | if (!enable_ept) |
| 10673 | vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested; |
| 10674 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10675 | /* |
| 10676 | * L1 may access the L2's PDPTR, so save them to construct vmcs12 |
| 10677 | */ |
| 10678 | if (enable_ept) { |
| 10679 | vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0); |
| 10680 | vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1); |
| 10681 | vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2); |
| 10682 | vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3); |
| 10683 | } |
| 10684 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10685 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 10686 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
Ladi Prosek | ee146c1 | 2016-11-30 16:03:09 +0100 | [diff] [blame] | 10687 | return 0; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 10688 | } |
| 10689 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10690 | static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10691 | { |
| 10692 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10693 | |
| 10694 | if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE && |
| 10695 | vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) |
| 10696 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10697 | |
Jim Mattson | 56a2051 | 2017-07-06 16:33:06 -0700 | [diff] [blame] | 10698 | if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12)) |
| 10699 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10700 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10701 | if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) |
| 10702 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10703 | |
Jim Mattson | 712b12d | 2017-08-24 13:24:47 -0700 | [diff] [blame] | 10704 | if (nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12)) |
| 10705 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10706 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10707 | if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) |
| 10708 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10709 | |
| 10710 | if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) |
| 10711 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10712 | |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 10713 | if (nested_vmx_check_pml_controls(vcpu, vmcs12)) |
| 10714 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10715 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10716 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
| 10717 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 10718 | vmx->nested.nested_vmx_procbased_ctls_high) || |
Jim Mattson | 2e5b0bd | 2017-05-04 11:51:58 -0700 | [diff] [blame] | 10719 | (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 10720 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
| 10721 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 10722 | vmx->nested.nested_vmx_secondary_ctls_high)) || |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10723 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
| 10724 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 10725 | vmx->nested.nested_vmx_pinbased_ctls_high) || |
| 10726 | !vmx_control_verify(vmcs12->vm_exit_controls, |
| 10727 | vmx->nested.nested_vmx_exit_ctls_low, |
| 10728 | vmx->nested.nested_vmx_exit_ctls_high) || |
| 10729 | !vmx_control_verify(vmcs12->vm_entry_controls, |
| 10730 | vmx->nested.nested_vmx_entry_ctls_low, |
| 10731 | vmx->nested.nested_vmx_entry_ctls_high)) |
| 10732 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10733 | |
Bandan Das | 41ab937 | 2017-08-03 15:54:43 -0400 | [diff] [blame] | 10734 | if (nested_cpu_has_vmfunc(vmcs12)) { |
| 10735 | if (vmcs12->vm_function_control & |
| 10736 | ~vmx->nested.nested_vmx_vmfunc_controls) |
| 10737 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10738 | |
| 10739 | if (nested_cpu_has_eptp_switching(vmcs12)) { |
| 10740 | if (!nested_cpu_has_ept(vmcs12) || |
| 10741 | !page_address_valid(vcpu, vmcs12->eptp_list_address)) |
| 10742 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10743 | } |
| 10744 | } |
Bandan Das | 27c42a1 | 2017-08-03 15:54:42 -0400 | [diff] [blame] | 10745 | |
Jim Mattson | c7c2c709 | 2017-05-05 11:28:09 -0700 | [diff] [blame] | 10746 | if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu)) |
| 10747 | return VMXERR_ENTRY_INVALID_CONTROL_FIELD; |
| 10748 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10749 | if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) || |
| 10750 | !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) || |
| 10751 | !nested_cr3_valid(vcpu, vmcs12->host_cr3)) |
| 10752 | return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD; |
| 10753 | |
| 10754 | return 0; |
| 10755 | } |
| 10756 | |
| 10757 | static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 10758 | u32 *exit_qual) |
| 10759 | { |
| 10760 | bool ia32e; |
| 10761 | |
| 10762 | *exit_qual = ENTRY_FAIL_DEFAULT; |
| 10763 | |
| 10764 | if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) || |
| 10765 | !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4)) |
| 10766 | return 1; |
| 10767 | |
| 10768 | if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) && |
| 10769 | vmcs12->vmcs_link_pointer != -1ull) { |
| 10770 | *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR; |
| 10771 | return 1; |
| 10772 | } |
| 10773 | |
| 10774 | /* |
| 10775 | * If the load IA32_EFER VM-entry control is 1, the following checks |
| 10776 | * are performed on the field for the IA32_EFER MSR: |
| 10777 | * - Bits reserved in the IA32_EFER MSR must be 0. |
| 10778 | * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of |
| 10779 | * the IA-32e mode guest VM-exit control. It must also be identical |
| 10780 | * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to |
| 10781 | * CR0.PG) is 1. |
| 10782 | */ |
| 10783 | if (to_vmx(vcpu)->nested.nested_run_pending && |
| 10784 | (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) { |
| 10785 | ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; |
| 10786 | if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) || |
| 10787 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) || |
| 10788 | ((vmcs12->guest_cr0 & X86_CR0_PG) && |
| 10789 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) |
| 10790 | return 1; |
| 10791 | } |
| 10792 | |
| 10793 | /* |
| 10794 | * If the load IA32_EFER VM-exit control is 1, bits reserved in the |
| 10795 | * IA32_EFER MSR must be 0 in the field for that register. In addition, |
| 10796 | * the values of the LMA and LME bits in the field must each be that of |
| 10797 | * the host address-space size VM-exit control. |
| 10798 | */ |
| 10799 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) { |
| 10800 | ia32e = (vmcs12->vm_exit_controls & |
| 10801 | VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0; |
| 10802 | if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) || |
| 10803 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) || |
| 10804 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) |
| 10805 | return 1; |
| 10806 | } |
| 10807 | |
| 10808 | return 0; |
| 10809 | } |
| 10810 | |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10811 | static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry) |
| 10812 | { |
| 10813 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10814 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 10815 | struct loaded_vmcs *vmcs02; |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10816 | u32 msr_entry_idx; |
| 10817 | u32 exit_qual; |
| 10818 | |
| 10819 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 10820 | if (!vmcs02) |
| 10821 | return -ENOMEM; |
| 10822 | |
| 10823 | enter_guest_mode(vcpu); |
| 10824 | |
| 10825 | if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) |
| 10826 | vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 10827 | |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 10828 | vmx_switch_vmcs(vcpu, vmcs02); |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10829 | vmx_segment_cache_clear(vmx); |
| 10830 | |
| 10831 | if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) { |
| 10832 | leave_guest_mode(vcpu); |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 10833 | vmx_switch_vmcs(vcpu, &vmx->vmcs01); |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10834 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10835 | EXIT_REASON_INVALID_STATE, exit_qual); |
| 10836 | return 1; |
| 10837 | } |
| 10838 | |
| 10839 | nested_get_vmcs12_pages(vcpu, vmcs12); |
| 10840 | |
| 10841 | msr_entry_idx = nested_vmx_load_msr(vcpu, |
| 10842 | vmcs12->vm_entry_msr_load_addr, |
| 10843 | vmcs12->vm_entry_msr_load_count); |
| 10844 | if (msr_entry_idx) { |
| 10845 | leave_guest_mode(vcpu); |
David Hildenbrand | 1279a6b1 | 2017-03-20 10:00:08 +0100 | [diff] [blame] | 10846 | vmx_switch_vmcs(vcpu, &vmx->vmcs01); |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10847 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10848 | EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx); |
| 10849 | return 1; |
| 10850 | } |
| 10851 | |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10852 | /* |
| 10853 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 10854 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 10855 | * returned as far as L1 is concerned. It will only return (and set |
| 10856 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 10857 | */ |
| 10858 | return 0; |
| 10859 | } |
| 10860 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10861 | /* |
| 10862 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 10863 | * for running an L2 nested guest. |
| 10864 | */ |
| 10865 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 10866 | { |
| 10867 | struct vmcs12 *vmcs12; |
| 10868 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jim Mattson | b3f1dfb | 2017-07-17 12:00:34 -0700 | [diff] [blame] | 10869 | u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu); |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10870 | u32 exit_qual; |
| 10871 | int ret; |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10872 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10873 | if (!nested_vmx_check_permission(vcpu)) |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10874 | return 1; |
| 10875 | |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10876 | if (!nested_vmx_check_vmcs12(vcpu)) |
| 10877 | goto out; |
| 10878 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10879 | vmcs12 = get_vmcs12(vcpu); |
| 10880 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10881 | if (enable_shadow_vmcs) |
| 10882 | copy_shadow_to_vmcs12(vmx); |
| 10883 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10884 | /* |
| 10885 | * The nested entry process starts with enforcing various prerequisites |
| 10886 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 10887 | * they fail: As the SDM explains, some conditions should cause the |
| 10888 | * instruction to fail, while others will cause the instruction to seem |
| 10889 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 10890 | * To speed up the normal (success) code path, we should avoid checking |
| 10891 | * for misconfigurations which will anyway be caught by the processor |
| 10892 | * when using the merged vmcs02. |
| 10893 | */ |
Jim Mattson | b3f1dfb | 2017-07-17 12:00:34 -0700 | [diff] [blame] | 10894 | if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) { |
| 10895 | nested_vmx_failValid(vcpu, |
| 10896 | VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS); |
| 10897 | goto out; |
| 10898 | } |
| 10899 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10900 | if (vmcs12->launch_state == launch) { |
| 10901 | nested_vmx_failValid(vcpu, |
| 10902 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 10903 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10904 | goto out; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10905 | } |
| 10906 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10907 | ret = check_vmentry_prereqs(vcpu, vmcs12); |
| 10908 | if (ret) { |
| 10909 | nested_vmx_failValid(vcpu, ret); |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10910 | goto out; |
Paolo Bonzini | 26539bd | 2013-04-15 15:00:27 +0200 | [diff] [blame] | 10911 | } |
| 10912 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10913 | /* |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10914 | * After this point, the trap flag no longer triggers a singlestep trap |
| 10915 | * on the vm entry instructions; don't call kvm_skip_emulated_instruction. |
| 10916 | * This is not 100% correct; for performance reasons, we delegate most |
| 10917 | * of the checks on host state to the processor. If those fail, |
| 10918 | * the singlestep trap is missed. |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10919 | */ |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10920 | skip_emulated_instruction(vcpu); |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10921 | |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 10922 | ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual); |
| 10923 | if (ret) { |
| 10924 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 10925 | EXIT_REASON_INVALID_STATE, exit_qual); |
| 10926 | return 1; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 10927 | } |
| 10928 | |
| 10929 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10930 | * We're finally done with prerequisite checking, and can start with |
| 10931 | * the nested entry. |
| 10932 | */ |
| 10933 | |
Jim Mattson | 858e25c | 2016-11-30 12:03:47 -0800 | [diff] [blame] | 10934 | ret = enter_vmx_non_root_mode(vcpu, true); |
| 10935 | if (ret) |
| 10936 | return ret; |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10937 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 10938 | if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 10939 | return kvm_vcpu_halt(vcpu); |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 10940 | |
Jan Kiszka | 7af40ad3 | 2014-01-04 18:47:23 +0100 | [diff] [blame] | 10941 | vmx->nested.nested_run_pending = 1; |
| 10942 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10943 | return 1; |
Kyle Huey | eb27756 | 2016-11-29 12:40:39 -0800 | [diff] [blame] | 10944 | |
| 10945 | out: |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 10946 | return kvm_skip_emulated_instruction(vcpu); |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 10947 | } |
| 10948 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10949 | /* |
| 10950 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 10951 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 10952 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 10953 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 10954 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 10955 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 10956 | * didn't trap the bit, because if L1 did, so would L0). |
| 10957 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 10958 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 10959 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 10960 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 10961 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 10962 | * changed these bits, and therefore they need to be updated, but L0 |
| 10963 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 10964 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 10965 | */ |
| 10966 | static inline unsigned long |
| 10967 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10968 | { |
| 10969 | return |
| 10970 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 10971 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 10972 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 10973 | vcpu->arch.cr0_guest_owned_bits)); |
| 10974 | } |
| 10975 | |
| 10976 | static inline unsigned long |
| 10977 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 10978 | { |
| 10979 | return |
| 10980 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 10981 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 10982 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 10983 | vcpu->arch.cr4_guest_owned_bits)); |
| 10984 | } |
| 10985 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10986 | static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, |
| 10987 | struct vmcs12 *vmcs12) |
| 10988 | { |
| 10989 | u32 idt_vectoring; |
| 10990 | unsigned int nr; |
| 10991 | |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 10992 | if (vcpu->arch.exception.injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10993 | nr = vcpu->arch.exception.nr; |
| 10994 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 10995 | |
| 10996 | if (kvm_exception_is_soft(nr)) { |
| 10997 | vmcs12->vm_exit_instruction_len = |
| 10998 | vcpu->arch.event_exit_inst_len; |
| 10999 | idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION; |
| 11000 | } else |
| 11001 | idt_vectoring |= INTR_TYPE_HARD_EXCEPTION; |
| 11002 | |
| 11003 | if (vcpu->arch.exception.has_error_code) { |
| 11004 | idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK; |
| 11005 | vmcs12->idt_vectoring_error_code = |
| 11006 | vcpu->arch.exception.error_code; |
| 11007 | } |
| 11008 | |
| 11009 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
Jan Kiszka | cd2633c | 2013-10-23 17:42:15 +0100 | [diff] [blame] | 11010 | } else if (vcpu->arch.nmi_injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11011 | vmcs12->idt_vectoring_info_field = |
| 11012 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR; |
| 11013 | } else if (vcpu->arch.interrupt.pending) { |
| 11014 | nr = vcpu->arch.interrupt.nr; |
| 11015 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 11016 | |
| 11017 | if (vcpu->arch.interrupt.soft) { |
| 11018 | idt_vectoring |= INTR_TYPE_SOFT_INTR; |
| 11019 | vmcs12->vm_entry_instruction_len = |
| 11020 | vcpu->arch.event_exit_inst_len; |
| 11021 | } else |
| 11022 | idt_vectoring |= INTR_TYPE_EXT_INTR; |
| 11023 | |
| 11024 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
| 11025 | } |
| 11026 | } |
| 11027 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11028 | static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr) |
| 11029 | { |
| 11030 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 11031 | unsigned long exit_qual; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11032 | |
Wanpeng Li | 274bba5 | 2017-08-24 03:35:08 -0700 | [diff] [blame] | 11033 | if (kvm_event_needs_reinjection(vcpu)) |
Wanpeng Li | acc9ab6 | 2017-02-27 04:24:39 -0800 | [diff] [blame] | 11034 | return -EBUSY; |
| 11035 | |
Wanpeng Li | bfcf83b | 2017-08-24 03:35:11 -0700 | [diff] [blame] | 11036 | if (vcpu->arch.exception.pending && |
| 11037 | nested_vmx_check_exception(vcpu, &exit_qual)) { |
| 11038 | if (vmx->nested.nested_run_pending) |
| 11039 | return -EBUSY; |
| 11040 | nested_vmx_inject_exception_vmexit(vcpu, exit_qual); |
| 11041 | vcpu->arch.exception.pending = false; |
| 11042 | return 0; |
| 11043 | } |
| 11044 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 11045 | if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) && |
| 11046 | vmx->nested.preemption_timer_expired) { |
| 11047 | if (vmx->nested.nested_run_pending) |
| 11048 | return -EBUSY; |
| 11049 | nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0); |
| 11050 | return 0; |
| 11051 | } |
| 11052 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11053 | if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) { |
Wanpeng Li | acc9ab6 | 2017-02-27 04:24:39 -0800 | [diff] [blame] | 11054 | if (vmx->nested.nested_run_pending) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11055 | return -EBUSY; |
| 11056 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 11057 | NMI_VECTOR | INTR_TYPE_NMI_INTR | |
| 11058 | INTR_INFO_VALID_MASK, 0); |
| 11059 | /* |
| 11060 | * The NMI-triggered VM exit counts as injection: |
| 11061 | * clear this one and block further NMIs. |
| 11062 | */ |
| 11063 | vcpu->arch.nmi_pending = 0; |
| 11064 | vmx_set_nmi_mask(vcpu, true); |
| 11065 | return 0; |
| 11066 | } |
| 11067 | |
| 11068 | if ((kvm_cpu_has_interrupt(vcpu) || external_intr) && |
| 11069 | nested_exit_on_intr(vcpu)) { |
| 11070 | if (vmx->nested.nested_run_pending) |
| 11071 | return -EBUSY; |
| 11072 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 11073 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11074 | } |
| 11075 | |
David Hildenbrand | 6342c50 | 2017-01-25 11:58:58 +0100 | [diff] [blame] | 11076 | vmx_complete_nested_posted_interrupt(vcpu); |
| 11077 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11078 | } |
| 11079 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 11080 | static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu) |
| 11081 | { |
| 11082 | ktime_t remaining = |
| 11083 | hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer); |
| 11084 | u64 value; |
| 11085 | |
| 11086 | if (ktime_to_ns(remaining) <= 0) |
| 11087 | return 0; |
| 11088 | |
| 11089 | value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz; |
| 11090 | do_div(value, 1000000); |
| 11091 | return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 11092 | } |
| 11093 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11094 | /* |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 11095 | * Update the guest state fields of vmcs12 to reflect changes that |
| 11096 | * occurred while L2 was running. (The "IA-32e mode guest" bit of the |
| 11097 | * VM-entry controls is also updated, since this is really a guest |
| 11098 | * state bit.) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11099 | */ |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 11100 | static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11101 | { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11102 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 11103 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 11104 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11105 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 11106 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 11107 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 11108 | |
| 11109 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 11110 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 11111 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 11112 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 11113 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 11114 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 11115 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 11116 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 11117 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 11118 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 11119 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 11120 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 11121 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 11122 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 11123 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 11124 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 11125 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 11126 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 11127 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 11128 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 11129 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 11130 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 11131 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 11132 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 11133 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 11134 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 11135 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 11136 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 11137 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 11138 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 11139 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 11140 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 11141 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 11142 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 11143 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 11144 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 11145 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11146 | vmcs12->guest_interruptibility_info = |
| 11147 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 11148 | vmcs12->guest_pending_dbg_exceptions = |
| 11149 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
Jan Kiszka | 3edf1e6 | 2014-01-04 18:47:24 +0100 | [diff] [blame] | 11150 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) |
| 11151 | vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT; |
| 11152 | else |
| 11153 | vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11154 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 11155 | if (nested_cpu_has_preemption_timer(vmcs12)) { |
| 11156 | if (vmcs12->vm_exit_controls & |
| 11157 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) |
| 11158 | vmcs12->vmx_preemption_timer_value = |
| 11159 | vmx_get_preemption_timer_value(vcpu); |
| 11160 | hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer); |
| 11161 | } |
Arthur Chunqi Li | 7854cbc | 2013-09-16 16:11:44 +0800 | [diff] [blame] | 11162 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 11163 | /* |
| 11164 | * In some cases (usually, nested EPT), L2 is allowed to change its |
| 11165 | * own CR3 without exiting. If it has changed it, we must keep it. |
| 11166 | * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined |
| 11167 | * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12. |
| 11168 | * |
| 11169 | * Additionally, restore L2's PDPTR to vmcs12. |
| 11170 | */ |
| 11171 | if (enable_ept) { |
Paolo Bonzini | f353105 | 2015-12-03 15:49:56 +0100 | [diff] [blame] | 11172 | vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3); |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 11173 | vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0); |
| 11174 | vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1); |
| 11175 | vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2); |
| 11176 | vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3); |
| 11177 | } |
| 11178 | |
Jim Mattson | d281e13 | 2017-06-01 12:44:46 -0700 | [diff] [blame] | 11179 | vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS); |
Jan Dakinevich | 119a9c0 | 2016-09-04 21:22:47 +0300 | [diff] [blame] | 11180 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 11181 | if (nested_cpu_has_vid(vmcs12)) |
| 11182 | vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS); |
| 11183 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 11184 | vmcs12->vm_entry_controls = |
| 11185 | (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 11186 | (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE); |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 11187 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 11188 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) { |
| 11189 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 11190 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 11191 | } |
| 11192 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11193 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 11194 | * the relevant bit asks not to trap the change */ |
Jan Kiszka | b8c07d5 | 2013-04-06 13:51:21 +0200 | [diff] [blame] | 11195 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11196 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
Jan Kiszka | 10ba54a | 2013-08-08 16:26:31 +0200 | [diff] [blame] | 11197 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER) |
| 11198 | vmcs12->guest_ia32_efer = vcpu->arch.efer; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11199 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 11200 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 11201 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
Paolo Bonzini | a87036a | 2016-03-08 09:52:13 +0100 | [diff] [blame] | 11202 | if (kvm_mpx_supported()) |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 11203 | vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); |
Jim Mattson | cf8b84f | 2016-11-30 12:03:42 -0800 | [diff] [blame] | 11204 | } |
| 11205 | |
| 11206 | /* |
| 11207 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 11208 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 11209 | * and this function updates it to reflect the changes to the guest state while |
| 11210 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 11211 | * without going back to L1), and to reflect the exit reason. |
| 11212 | * Note that we do not have to copy here all VMCS fields, just those that |
| 11213 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 11214 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 11215 | * which already writes to vmcs12 directly. |
| 11216 | */ |
| 11217 | static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 11218 | u32 exit_reason, u32 exit_intr_info, |
| 11219 | unsigned long exit_qualification) |
| 11220 | { |
| 11221 | /* update guest state fields: */ |
| 11222 | sync_vmcs12(vcpu, vmcs12); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11223 | |
| 11224 | /* update exit information fields: */ |
| 11225 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11226 | vmcs12->vm_exit_reason = exit_reason; |
| 11227 | vmcs12->exit_qualification = exit_qualification; |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11228 | vmcs12->vm_exit_intr_info = exit_intr_info; |
Paolo Bonzini | 7313c69 | 2017-07-27 10:31:25 +0200 | [diff] [blame] | 11229 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11230 | vmcs12->idt_vectoring_info_field = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11231 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 11232 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 11233 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11234 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { |
Jim Mattson | 7cdc2d6 | 2017-07-06 16:33:05 -0700 | [diff] [blame] | 11235 | vmcs12->launch_state = 1; |
| 11236 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11237 | /* vm_entry_intr_info_field is cleared on exit. Emulate this |
| 11238 | * instead of reading the real value. */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11239 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11240 | |
| 11241 | /* |
| 11242 | * Transfer the event that L0 or L1 may wanted to inject into |
| 11243 | * L2 to IDT_VECTORING_INFO_FIELD. |
| 11244 | */ |
| 11245 | vmcs12_save_pending_event(vcpu, vmcs12); |
| 11246 | } |
| 11247 | |
| 11248 | /* |
| 11249 | * Drop what we picked up for L2 via vmx_complete_interrupts. It is |
| 11250 | * preserved above and would only end up incorrectly in L1. |
| 11251 | */ |
| 11252 | vcpu->arch.nmi_injected = false; |
| 11253 | kvm_clear_exception_queue(vcpu); |
| 11254 | kvm_clear_interrupt_queue(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11255 | } |
| 11256 | |
| 11257 | /* |
| 11258 | * A part of what we need to when the nested L2 guest exits and we want to |
| 11259 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 11260 | * in vmcs12. |
| 11261 | * This function is to be called not only on normal nested exit, but also on |
| 11262 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 11263 | * Failures During or After Loading Guest State"). |
| 11264 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 11265 | */ |
Jan Kiszka | 733568f | 2013-02-23 15:07:47 +0100 | [diff] [blame] | 11266 | static void load_vmcs12_host_state(struct kvm_vcpu *vcpu, |
| 11267 | struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11268 | { |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 11269 | struct kvm_segment seg; |
Jim Mattson | ca0bde2 | 2016-11-30 12:03:46 -0800 | [diff] [blame] | 11270 | u32 entry_failure_code; |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 11271 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11272 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 11273 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 11274 | 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] | 11275 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 11276 | else |
| 11277 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 11278 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 11279 | |
| 11280 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 11281 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
H. Peter Anvin | 1adfa76 | 2013-04-27 16:10:11 -0700 | [diff] [blame] | 11282 | vmx_set_rflags(vcpu, X86_EFLAGS_FIXED); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11283 | /* |
| 11284 | * 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] | 11285 | * actually changed, because vmx_set_cr0 refers to efer set above. |
| 11286 | * |
| 11287 | * CR0_GUEST_HOST_MASK is already set in the original vmcs01 |
| 11288 | * (KVM doesn't change it); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11289 | */ |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 11290 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Jan Kiszka | 9e3e4dbf | 2013-09-03 21:11:45 +0200 | [diff] [blame] | 11291 | vmx_set_cr0(vcpu, vmcs12->host_cr0); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11292 | |
Paolo Bonzini | bd7e5b0 | 2017-02-03 21:18:52 -0800 | [diff] [blame] | 11293 | /* 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] | 11294 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
Haozhong Zhang | 8eb3f87 | 2017-10-10 15:01:22 +0800 | [diff] [blame] | 11295 | vmx_set_cr4(vcpu, vmcs12->host_cr4); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11296 | |
Jan Kiszka | 29bf08f | 2013-12-28 16:31:52 +0100 | [diff] [blame] | 11297 | nested_ept_uninit_mmu_context(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 11298 | |
Ladi Prosek | 1dc35da | 2016-11-30 16:03:11 +0100 | [diff] [blame] | 11299 | /* |
| 11300 | * Only PDPTE load can fail as the value of cr3 was checked on entry and |
| 11301 | * couldn't have changed. |
| 11302 | */ |
| 11303 | if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code)) |
| 11304 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11305 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 11306 | if (!enable_ept) |
| 11307 | vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault; |
| 11308 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11309 | if (enable_vpid) { |
| 11310 | /* |
| 11311 | * Trivially support vpid by letting L2s share their parent |
| 11312 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 11313 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 11314 | */ |
| 11315 | vmx_flush_tlb(vcpu); |
| 11316 | } |
Wincy Van | 06a5524 | 2017-04-28 13:13:59 +0800 | [diff] [blame] | 11317 | /* Restore posted intr vector. */ |
| 11318 | if (nested_cpu_has_posted_intr(vmcs12)) |
| 11319 | vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11320 | |
| 11321 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 11322 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 11323 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 11324 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 11325 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
Ladi Prosek | 21f2d55 | 2017-10-11 16:54:42 +0200 | [diff] [blame] | 11326 | vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF); |
| 11327 | vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11328 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 11329 | /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */ |
| 11330 | if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS) |
| 11331 | vmcs_write64(GUEST_BNDCFGS, 0); |
| 11332 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 11333 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11334 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 11335 | vcpu->arch.pat = vmcs12->host_ia32_pat; |
| 11336 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11337 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 11338 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 11339 | vmcs12->host_ia32_perf_global_ctrl); |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 11340 | |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 11341 | /* Set L1 segment info according to Intel SDM |
| 11342 | 27.5.2 Loading Host Segment and Descriptor-Table Registers */ |
| 11343 | seg = (struct kvm_segment) { |
| 11344 | .base = 0, |
| 11345 | .limit = 0xFFFFFFFF, |
| 11346 | .selector = vmcs12->host_cs_selector, |
| 11347 | .type = 11, |
| 11348 | .present = 1, |
| 11349 | .s = 1, |
| 11350 | .g = 1 |
| 11351 | }; |
| 11352 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 11353 | seg.l = 1; |
| 11354 | else |
| 11355 | seg.db = 1; |
| 11356 | vmx_set_segment(vcpu, &seg, VCPU_SREG_CS); |
| 11357 | seg = (struct kvm_segment) { |
| 11358 | .base = 0, |
| 11359 | .limit = 0xFFFFFFFF, |
| 11360 | .type = 3, |
| 11361 | .present = 1, |
| 11362 | .s = 1, |
| 11363 | .db = 1, |
| 11364 | .g = 1 |
| 11365 | }; |
| 11366 | seg.selector = vmcs12->host_ds_selector; |
| 11367 | vmx_set_segment(vcpu, &seg, VCPU_SREG_DS); |
| 11368 | seg.selector = vmcs12->host_es_selector; |
| 11369 | vmx_set_segment(vcpu, &seg, VCPU_SREG_ES); |
| 11370 | seg.selector = vmcs12->host_ss_selector; |
| 11371 | vmx_set_segment(vcpu, &seg, VCPU_SREG_SS); |
| 11372 | seg.selector = vmcs12->host_fs_selector; |
| 11373 | seg.base = vmcs12->host_fs_base; |
| 11374 | vmx_set_segment(vcpu, &seg, VCPU_SREG_FS); |
| 11375 | seg.selector = vmcs12->host_gs_selector; |
| 11376 | seg.base = vmcs12->host_gs_base; |
| 11377 | vmx_set_segment(vcpu, &seg, VCPU_SREG_GS); |
| 11378 | seg = (struct kvm_segment) { |
Gleb Natapov | 205befd | 2013-08-04 15:08:06 +0300 | [diff] [blame] | 11379 | .base = vmcs12->host_tr_base, |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 11380 | .limit = 0x67, |
| 11381 | .selector = vmcs12->host_tr_selector, |
| 11382 | .type = 11, |
| 11383 | .present = 1 |
| 11384 | }; |
| 11385 | vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); |
| 11386 | |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 11387 | kvm_set_dr(vcpu, 7, 0x400); |
| 11388 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 11389 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 11390 | if (cpu_has_vmx_msr_bitmap()) |
| 11391 | vmx_set_msr_bitmap(vcpu); |
| 11392 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 11393 | if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr, |
| 11394 | vmcs12->vm_exit_msr_load_count)) |
| 11395 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11396 | } |
| 11397 | |
| 11398 | /* |
| 11399 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 11400 | * and modify vmcs12 to make it see what it would expect to see there if |
| 11401 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 11402 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11403 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 11404 | u32 exit_intr_info, |
| 11405 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11406 | { |
| 11407 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11408 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 11409 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 11410 | /* trying to cancel vmlaunch/vmresume is a bug */ |
| 11411 | WARN_ON_ONCE(vmx->nested.nested_run_pending); |
| 11412 | |
Wanpeng Li | 6550c4d | 2017-07-31 19:25:27 -0700 | [diff] [blame] | 11413 | /* |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11414 | * The only expected VM-instruction error is "VM entry with |
| 11415 | * invalid control field(s)." Anything else indicates a |
| 11416 | * problem with L0. |
Wanpeng Li | 6550c4d | 2017-07-31 19:25:27 -0700 | [diff] [blame] | 11417 | */ |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11418 | WARN_ON_ONCE(vmx->fail && (vmcs_read32(VM_INSTRUCTION_ERROR) != |
| 11419 | VMXERR_ENTRY_INVALID_CONTROL_FIELD)); |
| 11420 | |
| 11421 | leave_guest_mode(vcpu); |
| 11422 | |
| 11423 | if (likely(!vmx->fail)) { |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11424 | if (exit_reason == -1) |
| 11425 | sync_vmcs12(vcpu, vmcs12); |
| 11426 | else |
| 11427 | prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info, |
| 11428 | exit_qualification); |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11429 | |
| 11430 | if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr, |
| 11431 | vmcs12->vm_exit_msr_store_count)) |
| 11432 | nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 11433 | } |
| 11434 | |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11435 | vmx_switch_vmcs(vcpu, &vmx->vmcs01); |
Paolo Bonzini | 8391ce4 | 2016-07-07 14:58:33 +0200 | [diff] [blame] | 11436 | vm_entry_controls_reset_shadow(vmx); |
| 11437 | vm_exit_controls_reset_shadow(vmx); |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 11438 | vmx_segment_cache_clear(vmx); |
| 11439 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11440 | /* if no vmcs02 cache requested, remove the one we used */ |
| 11441 | if (VMCS02_POOL_SIZE == 0) |
| 11442 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 11443 | |
Paolo Bonzini | 9314006db | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 11444 | /* Update any VMCS fields that might have changed while L2 ran */ |
Jim Mattson | 83bafef | 2016-10-04 10:48:38 -0700 | [diff] [blame] | 11445 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
| 11446 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr); |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 11447 | vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset); |
Paolo Bonzini | 9314006db | 2016-07-06 13:23:51 +0200 | [diff] [blame] | 11448 | if (vmx->hv_deadline_tsc == -1) |
| 11449 | vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11450 | PIN_BASED_VMX_PREEMPTION_TIMER); |
| 11451 | else |
| 11452 | vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11453 | PIN_BASED_VMX_PREEMPTION_TIMER); |
Peter Feiner | c95ba92 | 2016-08-17 09:36:47 -0700 | [diff] [blame] | 11454 | if (kvm_has_tsc_control) |
| 11455 | decache_tsc_multiplier(vmx); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11456 | |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 11457 | if (vmx->nested.change_vmcs01_virtual_x2apic_mode) { |
| 11458 | vmx->nested.change_vmcs01_virtual_x2apic_mode = false; |
| 11459 | vmx_set_virtual_x2apic_mode(vcpu, |
| 11460 | vcpu->arch.apic_base & X2APIC_ENABLE); |
Jim Mattson | fb6c819 | 2017-03-16 13:53:59 -0700 | [diff] [blame] | 11461 | } else if (!nested_cpu_has_ept(vmcs12) && |
| 11462 | nested_cpu_has2(vmcs12, |
| 11463 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
| 11464 | vmx_flush_tlb_ept_only(vcpu); |
Radim Krčmář | dccbfcf | 2016-08-08 20:16:23 +0200 | [diff] [blame] | 11465 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11466 | |
| 11467 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 11468 | vmx->host_rsp = 0; |
| 11469 | |
| 11470 | /* Unpin physical memory we referred to in vmcs02 */ |
| 11471 | if (vmx->nested.apic_access_page) { |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 11472 | kvm_release_page_dirty(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11473 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11474 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 11475 | if (vmx->nested.virtual_apic_page) { |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 11476 | kvm_release_page_dirty(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11477 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 11478 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 11479 | if (vmx->nested.pi_desc_page) { |
| 11480 | kunmap(vmx->nested.pi_desc_page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 11481 | kvm_release_page_dirty(vmx->nested.pi_desc_page); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 11482 | vmx->nested.pi_desc_page = NULL; |
| 11483 | vmx->nested.pi_desc = NULL; |
| 11484 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11485 | |
| 11486 | /* |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 11487 | * We are now running in L2, mmu_notifier will force to reload the |
| 11488 | * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1. |
| 11489 | */ |
Wanpeng Li | c83b6d1 | 2016-09-06 17:20:33 +0800 | [diff] [blame] | 11490 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 11491 | |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11492 | if (enable_shadow_vmcs && exit_reason != -1) |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 11493 | vmx->nested.sync_shadow_vmcs = true; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 11494 | |
| 11495 | /* in case we halted in L2 */ |
| 11496 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11497 | |
| 11498 | if (likely(!vmx->fail)) { |
| 11499 | /* |
| 11500 | * TODO: SDM says that with acknowledge interrupt on |
| 11501 | * exit, bit 31 of the VM-exit interrupt information |
| 11502 | * (valid interrupt) is always set to 1 on |
| 11503 | * EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't |
| 11504 | * need kvm_cpu_has_interrupt(). See the commit |
| 11505 | * message for details. |
| 11506 | */ |
| 11507 | if (nested_exit_intr_ack_set(vcpu) && |
| 11508 | exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT && |
| 11509 | kvm_cpu_has_interrupt(vcpu)) { |
| 11510 | int irq = kvm_cpu_get_interrupt(vcpu); |
| 11511 | WARN_ON(irq < 0); |
| 11512 | vmcs12->vm_exit_intr_info = irq | |
| 11513 | INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR; |
| 11514 | } |
| 11515 | |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11516 | if (exit_reason != -1) |
| 11517 | trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason, |
| 11518 | vmcs12->exit_qualification, |
| 11519 | vmcs12->idt_vectoring_info_field, |
| 11520 | vmcs12->vm_exit_intr_info, |
| 11521 | vmcs12->vm_exit_intr_error_code, |
| 11522 | KVM_ISA_VMX); |
Jim Mattson | 4f350c6 | 2017-09-14 16:31:44 -0700 | [diff] [blame] | 11523 | |
| 11524 | load_vmcs12_host_state(vcpu, vmcs12); |
| 11525 | |
| 11526 | return; |
| 11527 | } |
| 11528 | |
| 11529 | /* |
| 11530 | * After an early L2 VM-entry failure, we're now back |
| 11531 | * in L1 which thinks it just finished a VMLAUNCH or |
| 11532 | * VMRESUME instruction, so we need to set the failure |
| 11533 | * flag and the VM-instruction error field of the VMCS |
| 11534 | * accordingly. |
| 11535 | */ |
| 11536 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 11537 | /* |
| 11538 | * The emulated instruction was already skipped in |
| 11539 | * nested_vmx_run, but the updated RIP was never |
| 11540 | * written back to the vmcs01. |
| 11541 | */ |
| 11542 | skip_emulated_instruction(vcpu); |
| 11543 | vmx->fail = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 11544 | } |
| 11545 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11546 | /* |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 11547 | * Forcibly leave nested mode in order to be able to reset the VCPU later on. |
| 11548 | */ |
| 11549 | static void vmx_leave_nested(struct kvm_vcpu *vcpu) |
| 11550 | { |
Wanpeng Li | 2f707d9 | 2017-03-06 04:03:28 -0800 | [diff] [blame] | 11551 | if (is_guest_mode(vcpu)) { |
| 11552 | to_vmx(vcpu)->nested.nested_run_pending = 0; |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 11553 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
Wanpeng Li | 2f707d9 | 2017-03-06 04:03:28 -0800 | [diff] [blame] | 11554 | } |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 11555 | free_nested(to_vmx(vcpu)); |
| 11556 | } |
| 11557 | |
| 11558 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11559 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 11560 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 11561 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 11562 | * It should only be called before L2 actually succeeded to run, and when |
| 11563 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 11564 | */ |
| 11565 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 11566 | struct vmcs12 *vmcs12, |
| 11567 | u32 reason, unsigned long qualification) |
| 11568 | { |
| 11569 | load_vmcs12_host_state(vcpu, vmcs12); |
| 11570 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 11571 | vmcs12->exit_qualification = qualification; |
| 11572 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 11573 | if (enable_shadow_vmcs) |
| 11574 | to_vmx(vcpu)->nested.sync_shadow_vmcs = true; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 11575 | } |
| 11576 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 11577 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 11578 | struct x86_instruction_info *info, |
| 11579 | enum x86_intercept_stage stage) |
| 11580 | { |
| 11581 | return X86EMUL_CONTINUE; |
| 11582 | } |
| 11583 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11584 | #ifdef CONFIG_X86_64 |
| 11585 | /* (a << shift) / divisor, return 1 if overflow otherwise 0 */ |
| 11586 | static inline int u64_shl_div_u64(u64 a, unsigned int shift, |
| 11587 | u64 divisor, u64 *result) |
| 11588 | { |
| 11589 | u64 low = a << shift, high = a >> (64 - shift); |
| 11590 | |
| 11591 | /* To avoid the overflow on divq */ |
| 11592 | if (high >= divisor) |
| 11593 | return 1; |
| 11594 | |
| 11595 | /* Low hold the result, high hold rem which is discarded */ |
| 11596 | asm("divq %2\n\t" : "=a" (low), "=d" (high) : |
| 11597 | "rm" (divisor), "0" (low), "1" (high)); |
| 11598 | *result = low; |
| 11599 | |
| 11600 | return 0; |
| 11601 | } |
| 11602 | |
| 11603 | static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc) |
| 11604 | { |
| 11605 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Paolo Bonzini | 9175d2e | 2016-06-27 15:08:01 +0200 | [diff] [blame] | 11606 | u64 tscl = rdtsc(); |
| 11607 | u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl); |
| 11608 | u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11609 | |
| 11610 | /* Convert to host delta tsc if tsc scaling is enabled */ |
| 11611 | if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio && |
| 11612 | u64_shl_div_u64(delta_tsc, |
| 11613 | kvm_tsc_scaling_ratio_frac_bits, |
| 11614 | vcpu->arch.tsc_scaling_ratio, |
| 11615 | &delta_tsc)) |
| 11616 | return -ERANGE; |
| 11617 | |
| 11618 | /* |
| 11619 | * If the delta tsc can't fit in the 32 bit after the multi shift, |
| 11620 | * we can't use the preemption timer. |
| 11621 | * It's possible that it fits on later vmentries, but checking |
| 11622 | * on every vmentry is costly so we just use an hrtimer. |
| 11623 | */ |
| 11624 | if (delta_tsc >> (cpu_preemption_timer_multi + 32)) |
| 11625 | return -ERANGE; |
| 11626 | |
| 11627 | vmx->hv_deadline_tsc = tscl + delta_tsc; |
| 11628 | vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11629 | PIN_BASED_VMX_PREEMPTION_TIMER); |
Wanpeng Li | c853354 | 2017-06-29 06:28:09 -0700 | [diff] [blame] | 11630 | |
| 11631 | return delta_tsc == 0; |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11632 | } |
| 11633 | |
| 11634 | static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu) |
| 11635 | { |
| 11636 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 11637 | vmx->hv_deadline_tsc = -1; |
| 11638 | vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL, |
| 11639 | PIN_BASED_VMX_PREEMPTION_TIMER); |
| 11640 | } |
| 11641 | #endif |
| 11642 | |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 11643 | static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu) |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 11644 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 11645 | if (ple_gap) |
| 11646 | shrink_ple_window(vcpu); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 11647 | } |
| 11648 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 11649 | static void vmx_slot_enable_log_dirty(struct kvm *kvm, |
| 11650 | struct kvm_memory_slot *slot) |
| 11651 | { |
| 11652 | kvm_mmu_slot_leaf_clear_dirty(kvm, slot); |
| 11653 | kvm_mmu_slot_largepage_remove_write_access(kvm, slot); |
| 11654 | } |
| 11655 | |
| 11656 | static void vmx_slot_disable_log_dirty(struct kvm *kvm, |
| 11657 | struct kvm_memory_slot *slot) |
| 11658 | { |
| 11659 | kvm_mmu_slot_set_dirty(kvm, slot); |
| 11660 | } |
| 11661 | |
| 11662 | static void vmx_flush_log_dirty(struct kvm *kvm) |
| 11663 | { |
| 11664 | kvm_flush_pml_buffers(kvm); |
| 11665 | } |
| 11666 | |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 11667 | static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu) |
| 11668 | { |
| 11669 | struct vmcs12 *vmcs12; |
| 11670 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 11671 | gpa_t gpa; |
| 11672 | struct page *page = NULL; |
| 11673 | u64 *pml_address; |
| 11674 | |
| 11675 | if (is_guest_mode(vcpu)) { |
| 11676 | WARN_ON_ONCE(vmx->nested.pml_full); |
| 11677 | |
| 11678 | /* |
| 11679 | * Check if PML is enabled for the nested guest. |
| 11680 | * Whether eptp bit 6 is set is already checked |
| 11681 | * as part of A/D emulation. |
| 11682 | */ |
| 11683 | vmcs12 = get_vmcs12(vcpu); |
| 11684 | if (!nested_cpu_has_pml(vmcs12)) |
| 11685 | return 0; |
| 11686 | |
Dan Carpenter | 4769886 | 2017-05-10 22:43:17 +0300 | [diff] [blame] | 11687 | if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) { |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 11688 | vmx->nested.pml_full = true; |
| 11689 | return 1; |
| 11690 | } |
| 11691 | |
| 11692 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull; |
| 11693 | |
David Hildenbrand | 5e2f30b | 2017-08-03 18:11:04 +0200 | [diff] [blame] | 11694 | page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address); |
| 11695 | if (is_error_page(page)) |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 11696 | return 0; |
| 11697 | |
| 11698 | pml_address = kmap(page); |
| 11699 | pml_address[vmcs12->guest_pml_index--] = gpa; |
| 11700 | kunmap(page); |
David Hildenbrand | 53a70da | 2017-08-03 18:11:05 +0200 | [diff] [blame] | 11701 | kvm_release_page_clean(page); |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 11702 | } |
| 11703 | |
| 11704 | return 0; |
| 11705 | } |
| 11706 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 11707 | static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 11708 | struct kvm_memory_slot *memslot, |
| 11709 | gfn_t offset, unsigned long mask) |
| 11710 | { |
| 11711 | kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask); |
| 11712 | } |
| 11713 | |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11714 | static void __pi_post_block(struct kvm_vcpu *vcpu) |
| 11715 | { |
| 11716 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 11717 | struct pi_desc old, new; |
| 11718 | unsigned int dest; |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11719 | |
| 11720 | do { |
| 11721 | old.control = new.control = pi_desc->control; |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11722 | WARN(old.nv != POSTED_INTR_WAKEUP_VECTOR, |
| 11723 | "Wakeup handler not enabled while the VCPU is blocked\n"); |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11724 | |
| 11725 | dest = cpu_physical_id(vcpu->cpu); |
| 11726 | |
| 11727 | if (x2apic_enabled()) |
| 11728 | new.ndst = dest; |
| 11729 | else |
| 11730 | new.ndst = (dest << 8) & 0xFF00; |
| 11731 | |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11732 | /* set 'NV' to 'notification vector' */ |
| 11733 | new.nv = POSTED_INTR_VECTOR; |
Paolo Bonzini | c0a1666 | 2017-09-28 17:58:41 +0200 | [diff] [blame] | 11734 | } while (cmpxchg64(&pi_desc->control, old.control, |
| 11735 | new.control) != old.control); |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11736 | |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11737 | if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) { |
| 11738 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu)); |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11739 | list_del(&vcpu->blocked_vcpu_list); |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11740 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu)); |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11741 | vcpu->pre_pcpu = -1; |
| 11742 | } |
| 11743 | } |
| 11744 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11745 | /* |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11746 | * This routine does the following things for vCPU which is going |
| 11747 | * to be blocked if VT-d PI is enabled. |
| 11748 | * - Store the vCPU to the wakeup list, so when interrupts happen |
| 11749 | * we can find the right vCPU to wake up. |
| 11750 | * - Change the Posted-interrupt descriptor as below: |
| 11751 | * 'NDST' <-- vcpu->pre_pcpu |
| 11752 | * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR |
| 11753 | * - If 'ON' is set during this process, which means at least one |
| 11754 | * interrupt is posted for this vCPU, we cannot block it, in |
| 11755 | * this case, return 1, otherwise, return 0. |
| 11756 | * |
| 11757 | */ |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11758 | static int pi_pre_block(struct kvm_vcpu *vcpu) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11759 | { |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11760 | unsigned int dest; |
| 11761 | struct pi_desc old, new; |
| 11762 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 11763 | |
| 11764 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 11765 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 11766 | !kvm_vcpu_apicv_active(vcpu)) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11767 | return 0; |
| 11768 | |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11769 | WARN_ON(irqs_disabled()); |
| 11770 | local_irq_disable(); |
| 11771 | if (!WARN_ON_ONCE(vcpu->pre_pcpu != -1)) { |
| 11772 | vcpu->pre_pcpu = vcpu->cpu; |
| 11773 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu)); |
| 11774 | list_add_tail(&vcpu->blocked_vcpu_list, |
| 11775 | &per_cpu(blocked_vcpu_on_cpu, |
| 11776 | vcpu->pre_pcpu)); |
| 11777 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu)); |
| 11778 | } |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11779 | |
| 11780 | do { |
| 11781 | old.control = new.control = pi_desc->control; |
| 11782 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11783 | WARN((pi_desc->sn == 1), |
| 11784 | "Warning: SN field of posted-interrupts " |
| 11785 | "is set before blocking\n"); |
| 11786 | |
| 11787 | /* |
| 11788 | * Since vCPU can be preempted during this process, |
| 11789 | * vcpu->cpu could be different with pre_pcpu, we |
| 11790 | * need to set pre_pcpu as the destination of wakeup |
| 11791 | * notification event, then we can find the right vCPU |
| 11792 | * to wakeup in wakeup handler if interrupts happen |
| 11793 | * when the vCPU is in blocked state. |
| 11794 | */ |
| 11795 | dest = cpu_physical_id(vcpu->pre_pcpu); |
| 11796 | |
| 11797 | if (x2apic_enabled()) |
| 11798 | new.ndst = dest; |
| 11799 | else |
| 11800 | new.ndst = (dest << 8) & 0xFF00; |
| 11801 | |
| 11802 | /* set 'NV' to 'wakeup vector' */ |
| 11803 | new.nv = POSTED_INTR_WAKEUP_VECTOR; |
Paolo Bonzini | c0a1666 | 2017-09-28 17:58:41 +0200 | [diff] [blame] | 11804 | } while (cmpxchg64(&pi_desc->control, old.control, |
| 11805 | new.control) != old.control); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11806 | |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11807 | /* We should not block the vCPU if an interrupt is posted for it. */ |
| 11808 | if (pi_test_on(pi_desc) == 1) |
| 11809 | __pi_post_block(vcpu); |
| 11810 | |
| 11811 | local_irq_enable(); |
| 11812 | return (vcpu->pre_pcpu == -1); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11813 | } |
| 11814 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11815 | static int vmx_pre_block(struct kvm_vcpu *vcpu) |
| 11816 | { |
| 11817 | if (pi_pre_block(vcpu)) |
| 11818 | return 1; |
| 11819 | |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11820 | if (kvm_lapic_hv_timer_in_use(vcpu)) |
| 11821 | kvm_lapic_switch_to_sw_timer(vcpu); |
| 11822 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11823 | return 0; |
| 11824 | } |
| 11825 | |
| 11826 | static void pi_post_block(struct kvm_vcpu *vcpu) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11827 | { |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11828 | if (vcpu->pre_pcpu == -1) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11829 | return; |
| 11830 | |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11831 | WARN_ON(irqs_disabled()); |
| 11832 | local_irq_disable(); |
Paolo Bonzini | cd39e11 | 2017-06-06 12:57:04 +0200 | [diff] [blame] | 11833 | __pi_post_block(vcpu); |
Paolo Bonzini | 8b306e2 | 2017-06-06 12:57:05 +0200 | [diff] [blame] | 11834 | local_irq_enable(); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11835 | } |
| 11836 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11837 | static void vmx_post_block(struct kvm_vcpu *vcpu) |
| 11838 | { |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 11839 | if (kvm_x86_ops->set_hv_timer) |
| 11840 | kvm_lapic_switch_to_hv_timer(vcpu); |
| 11841 | |
Yunhong Jiang | bc22512 | 2016-06-13 14:19:58 -0700 | [diff] [blame] | 11842 | pi_post_block(vcpu); |
| 11843 | } |
| 11844 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 11845 | /* |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11846 | * vmx_update_pi_irte - set IRTE for Posted-Interrupts |
| 11847 | * |
| 11848 | * @kvm: kvm |
| 11849 | * @host_irq: host irq of the interrupt |
| 11850 | * @guest_irq: gsi of the interrupt |
| 11851 | * @set: set or unset PI |
| 11852 | * returns 0 on success, < 0 on failure |
| 11853 | */ |
| 11854 | static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq, |
| 11855 | uint32_t guest_irq, bool set) |
| 11856 | { |
| 11857 | struct kvm_kernel_irq_routing_entry *e; |
| 11858 | struct kvm_irq_routing_table *irq_rt; |
| 11859 | struct kvm_lapic_irq irq; |
| 11860 | struct kvm_vcpu *vcpu; |
| 11861 | struct vcpu_data vcpu_info; |
Jan H. Schönherr | 3a8b067 | 2017-09-07 19:02:30 +0100 | [diff] [blame] | 11862 | int idx, ret = 0; |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11863 | |
| 11864 | if (!kvm_arch_has_assigned_device(kvm) || |
Yang Zhang | a005219 | 2016-06-13 09:56:56 +0800 | [diff] [blame] | 11865 | !irq_remapping_cap(IRQ_POSTING_CAP) || |
| 11866 | !kvm_vcpu_apicv_active(kvm->vcpus[0])) |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11867 | return 0; |
| 11868 | |
| 11869 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 11870 | irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); |
Jan H. Schönherr | 3a8b067 | 2017-09-07 19:02:30 +0100 | [diff] [blame] | 11871 | if (guest_irq >= irq_rt->nr_rt_entries || |
| 11872 | hlist_empty(&irq_rt->map[guest_irq])) { |
| 11873 | pr_warn_once("no route for guest_irq %u/%u (broken user space?)\n", |
| 11874 | guest_irq, irq_rt->nr_rt_entries); |
| 11875 | goto out; |
| 11876 | } |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11877 | |
| 11878 | hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { |
| 11879 | if (e->type != KVM_IRQ_ROUTING_MSI) |
| 11880 | continue; |
| 11881 | /* |
| 11882 | * VT-d PI cannot support posting multicast/broadcast |
| 11883 | * interrupts to a vCPU, we still use interrupt remapping |
| 11884 | * for these kind of interrupts. |
| 11885 | * |
| 11886 | * For lowest-priority interrupts, we only support |
| 11887 | * those with single CPU as the destination, e.g. user |
| 11888 | * configures the interrupts via /proc/irq or uses |
| 11889 | * irqbalance to make the interrupts single-CPU. |
| 11890 | * |
| 11891 | * We will support full lowest-priority interrupt later. |
| 11892 | */ |
| 11893 | |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 11894 | kvm_set_msi_irq(kvm, e, &irq); |
Feng Wu | 23a1c25 | 2016-01-25 16:53:32 +0800 | [diff] [blame] | 11895 | if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) { |
| 11896 | /* |
| 11897 | * Make sure the IRTE is in remapped mode if |
| 11898 | * we don't handle it in posted mode. |
| 11899 | */ |
| 11900 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
| 11901 | if (ret < 0) { |
| 11902 | printk(KERN_INFO |
| 11903 | "failed to back to remapped mode, irq: %u\n", |
| 11904 | host_irq); |
| 11905 | goto out; |
| 11906 | } |
| 11907 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11908 | continue; |
Feng Wu | 23a1c25 | 2016-01-25 16:53:32 +0800 | [diff] [blame] | 11909 | } |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11910 | |
| 11911 | vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu)); |
| 11912 | vcpu_info.vector = irq.vector; |
| 11913 | |
Feng Wu | b6ce978 | 2016-01-25 16:53:35 +0800 | [diff] [blame] | 11914 | trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11915 | vcpu_info.vector, vcpu_info.pi_desc_addr, set); |
| 11916 | |
| 11917 | if (set) |
| 11918 | ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); |
Haozhong Zhang | dc91f2e | 2017-09-18 09:56:49 +0800 | [diff] [blame] | 11919 | else |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11920 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 11921 | |
| 11922 | if (ret < 0) { |
| 11923 | printk(KERN_INFO "%s: failed to update PI IRTE\n", |
| 11924 | __func__); |
| 11925 | goto out; |
| 11926 | } |
| 11927 | } |
| 11928 | |
| 11929 | ret = 0; |
| 11930 | out: |
| 11931 | srcu_read_unlock(&kvm->irq_srcu, idx); |
| 11932 | return ret; |
| 11933 | } |
| 11934 | |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 11935 | static void vmx_setup_mce(struct kvm_vcpu *vcpu) |
| 11936 | { |
| 11937 | if (vcpu->arch.mcg_cap & MCG_LMCE_P) |
| 11938 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |= |
| 11939 | FEATURE_CONTROL_LMCE; |
| 11940 | else |
| 11941 | to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &= |
| 11942 | ~FEATURE_CONTROL_LMCE; |
| 11943 | } |
| 11944 | |
Ladi Prosek | 72d7b37 | 2017-10-11 16:54:41 +0200 | [diff] [blame] | 11945 | static int vmx_smi_allowed(struct kvm_vcpu *vcpu) |
| 11946 | { |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11947 | /* we need a nested vmexit to enter SMM, postpone if run is pending */ |
| 11948 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 11949 | return 0; |
Ladi Prosek | 72d7b37 | 2017-10-11 16:54:41 +0200 | [diff] [blame] | 11950 | return 1; |
| 11951 | } |
| 11952 | |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 11953 | static int vmx_pre_enter_smm(struct kvm_vcpu *vcpu, char *smstate) |
| 11954 | { |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11955 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 11956 | |
| 11957 | vmx->nested.smm.guest_mode = is_guest_mode(vcpu); |
| 11958 | if (vmx->nested.smm.guest_mode) |
| 11959 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
| 11960 | |
| 11961 | vmx->nested.smm.vmxon = vmx->nested.vmxon; |
| 11962 | vmx->nested.vmxon = false; |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 11963 | return 0; |
| 11964 | } |
| 11965 | |
| 11966 | static int vmx_pre_leave_smm(struct kvm_vcpu *vcpu, u64 smbase) |
| 11967 | { |
Ladi Prosek | 72e9cbd | 2017-10-11 16:54:43 +0200 | [diff] [blame] | 11968 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 11969 | int ret; |
| 11970 | |
| 11971 | if (vmx->nested.smm.vmxon) { |
| 11972 | vmx->nested.vmxon = true; |
| 11973 | vmx->nested.smm.vmxon = false; |
| 11974 | } |
| 11975 | |
| 11976 | if (vmx->nested.smm.guest_mode) { |
| 11977 | vcpu->arch.hflags &= ~HF_SMM_MASK; |
| 11978 | ret = enter_vmx_non_root_mode(vcpu, false); |
| 11979 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 11980 | if (ret) |
| 11981 | return ret; |
| 11982 | |
| 11983 | vmx->nested.smm.guest_mode = false; |
| 11984 | } |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 11985 | return 0; |
| 11986 | } |
| 11987 | |
Ladi Prosek | cc3d967 | 2017-10-17 16:02:39 +0200 | [diff] [blame] | 11988 | static int enable_smi_window(struct kvm_vcpu *vcpu) |
| 11989 | { |
| 11990 | return 0; |
| 11991 | } |
| 11992 | |
Kees Cook | 404f6aa | 2016-08-08 16:29:06 -0700 | [diff] [blame] | 11993 | static struct kvm_x86_ops vmx_x86_ops __ro_after_init = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11994 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 11995 | .disabled_by_bios = vmx_disabled_by_bios, |
| 11996 | .hardware_setup = hardware_setup, |
| 11997 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 11998 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11999 | .hardware_enable = hardware_enable, |
| 12000 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 12001 | .cpu_has_accelerated_tpr = report_flexpriority, |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 12002 | .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12003 | |
| 12004 | .vcpu_create = vmx_create_vcpu, |
| 12005 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 12006 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12007 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 12008 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12009 | .vcpu_load = vmx_vcpu_load, |
| 12010 | .vcpu_put = vmx_vcpu_put, |
| 12011 | |
Paolo Bonzini | a96036b | 2015-11-10 11:55:36 +0100 | [diff] [blame] | 12012 | .update_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12013 | .get_msr = vmx_get_msr, |
| 12014 | .set_msr = vmx_set_msr, |
| 12015 | .get_segment_base = vmx_get_segment_base, |
| 12016 | .get_segment = vmx_get_segment, |
| 12017 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 12018 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12019 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 12020 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 12021 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 12022 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12023 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12024 | .set_cr3 = vmx_set_cr3, |
| 12025 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12026 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12027 | .get_idt = vmx_get_idt, |
| 12028 | .set_idt = vmx_set_idt, |
| 12029 | .get_gdt = vmx_get_gdt, |
| 12030 | .set_gdt = vmx_set_gdt, |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 12031 | .get_dr6 = vmx_get_dr6, |
| 12032 | .set_dr6 = vmx_set_dr6, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 12033 | .set_dr7 = vmx_set_dr7, |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 12034 | .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 12035 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12036 | .get_rflags = vmx_get_rflags, |
| 12037 | .set_rflags = vmx_set_rflags, |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 12038 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12039 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12040 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12041 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 12042 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12043 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 12044 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 12045 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 12046 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 12047 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 12048 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 12049 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 12050 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 12051 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 12052 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 12053 | .get_nmi_mask = vmx_get_nmi_mask, |
| 12054 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 12055 | .enable_nmi_window = enable_nmi_window, |
| 12056 | .enable_irq_window = enable_irq_window, |
| 12057 | .update_cr8_intercept = update_cr8_intercept, |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 12058 | .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode, |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 12059 | .set_apic_access_page_addr = vmx_set_apic_access_page_addr, |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 12060 | .get_enable_apicv = vmx_get_enable_apicv, |
| 12061 | .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 12062 | .load_eoi_exitmap = vmx_load_eoi_exitmap, |
Paolo Bonzini | 967235d | 2016-12-19 14:03:45 +0100 | [diff] [blame] | 12063 | .apicv_post_state_restore = vmx_apicv_post_state_restore, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 12064 | .hwapic_irr_update = vmx_hwapic_irr_update, |
| 12065 | .hwapic_isr_update = vmx_hwapic_isr_update, |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 12066 | .sync_pir_to_irr = vmx_sync_pir_to_irr, |
| 12067 | .deliver_posted_interrupt = vmx_deliver_posted_interrupt, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 12068 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 12069 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 12070 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 12071 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 12072 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 12073 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 12074 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 12075 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 12076 | |
| 12077 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 12078 | |
| 12079 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 12080 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 12081 | |
| 12082 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 12083 | |
| 12084 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 12085 | |
| 12086 | .write_tsc_offset = vmx_write_tsc_offset, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 12087 | |
| 12088 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 12089 | |
| 12090 | .check_intercept = vmx_check_intercept, |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 12091 | .handle_external_intr = vmx_handle_external_intr, |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 12092 | .mpx_supported = vmx_mpx_supported, |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 12093 | .xsaves_supported = vmx_xsaves_supported, |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 12094 | |
| 12095 | .check_nested_events = vmx_check_nested_events, |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 12096 | |
| 12097 | .sched_in = vmx_sched_in, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 12098 | |
| 12099 | .slot_enable_log_dirty = vmx_slot_enable_log_dirty, |
| 12100 | .slot_disable_log_dirty = vmx_slot_disable_log_dirty, |
| 12101 | .flush_log_dirty = vmx_flush_log_dirty, |
| 12102 | .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked, |
Bandan Das | c5f983f | 2017-05-05 15:25:14 -0400 | [diff] [blame] | 12103 | .write_log_dirty = vmx_write_pml_buffer, |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 12104 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 12105 | .pre_block = vmx_pre_block, |
| 12106 | .post_block = vmx_post_block, |
| 12107 | |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 12108 | .pmu_ops = &intel_pmu_ops, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 12109 | |
| 12110 | .update_pi_irte = vmx_update_pi_irte, |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 12111 | |
| 12112 | #ifdef CONFIG_X86_64 |
| 12113 | .set_hv_timer = vmx_set_hv_timer, |
| 12114 | .cancel_hv_timer = vmx_cancel_hv_timer, |
| 12115 | #endif |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 12116 | |
| 12117 | .setup_mce = vmx_setup_mce, |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 12118 | |
Ladi Prosek | 72d7b37 | 2017-10-11 16:54:41 +0200 | [diff] [blame] | 12119 | .smi_allowed = vmx_smi_allowed, |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 12120 | .pre_enter_smm = vmx_pre_enter_smm, |
| 12121 | .pre_leave_smm = vmx_pre_leave_smm, |
Ladi Prosek | cc3d967 | 2017-10-17 16:02:39 +0200 | [diff] [blame] | 12122 | .enable_smi_window = enable_smi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12123 | }; |
| 12124 | |
| 12125 | static int __init vmx_init(void) |
| 12126 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 12127 | int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 12128 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 12129 | if (r) |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 12130 | return r; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 12131 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 12132 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 12133 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 12134 | crash_vmclear_local_loaded_vmcss); |
| 12135 | #endif |
| 12136 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 12137 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12138 | } |
| 12139 | |
| 12140 | static void __exit vmx_exit(void) |
| 12141 | { |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 12142 | #ifdef CONFIG_KEXEC_CORE |
Monam Agarwal | 3b63a43 | 2014-03-22 12:28:10 +0530 | [diff] [blame] | 12143 | RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 12144 | synchronize_rcu(); |
| 12145 | #endif |
| 12146 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 12147 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 12148 | } |
| 12149 | |
| 12150 | module_init(vmx_init) |
| 12151 | module_exit(vmx_exit) |