Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Kernel-based Virtual Machine driver for Linux |
| 3 | * |
| 4 | * This module enables machines with Intel VT-x extensions to run virtual |
| 5 | * machines without emulation or binary translation. |
| 6 | * |
| 7 | * Copyright (C) 2006 Qumranet, Inc. |
Nicolas Kaiser | 9611c18 | 2010-10-06 14:23:22 +0200 | [diff] [blame] | 8 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 9 | * |
| 10 | * Authors: |
| 11 | * Avi Kivity <avi@qumranet.com> |
| 12 | * Yaniv Kamay <yaniv@qumranet.com> |
| 13 | * |
| 14 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 15 | * the COPYING file in the top-level directory. |
| 16 | * |
| 17 | */ |
| 18 | |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 19 | #include "irq.h" |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 20 | #include "mmu.h" |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 21 | #include "cpuid.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 22 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 23 | #include <linux/kvm_host.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 24 | #include <linux/module.h> |
Ahmed S. Darwish | 9d8f549 | 2007-02-19 14:37:46 +0200 | [diff] [blame] | 25 | #include <linux/kernel.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 26 | #include <linux/mm.h> |
| 27 | #include <linux/highmem.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 28 | #include <linux/sched.h> |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 29 | #include <linux/moduleparam.h> |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 30 | #include <linux/mod_devicetable.h> |
Steven Rostedt (Red Hat) | af658dc | 2015-04-29 14:36:05 -0400 | [diff] [blame] | 31 | #include <linux/trace_events.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 33 | #include <linux/tboot.h> |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 34 | #include <linux/hrtimer.h> |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 35 | #include "kvm_cache_regs.h" |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 36 | #include "x86.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 37 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 38 | #include <asm/cpu.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 39 | #include <asm/io.h> |
Anthony Liguori | 3b3be0d | 2006-12-13 00:33:43 -0800 | [diff] [blame] | 40 | #include <asm/desc.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 41 | #include <asm/vmx.h> |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 42 | #include <asm/virtext.h> |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 43 | #include <asm/mce.h> |
Ingo Molnar | 952f07e | 2015-04-26 16:56:05 +0200 | [diff] [blame] | 44 | #include <asm/fpu/internal.h> |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 45 | #include <asm/perf_event.h> |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 46 | #include <asm/debugreg.h> |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 47 | #include <asm/kexec.h> |
Radim Krčmář | dab2087 | 2015-02-09 22:44:07 +0100 | [diff] [blame] | 48 | #include <asm/apic.h> |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 49 | #include <asm/irq_remapping.h> |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 50 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 51 | #include "trace.h" |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 52 | #include "pmu.h" |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 53 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 54 | #define __ex(x) __kvm_handle_fault_on_reboot(x) |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 55 | #define __ex_clear(x, reg) \ |
| 56 | ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg) |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 57 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 58 | MODULE_AUTHOR("Qumranet"); |
| 59 | MODULE_LICENSE("GPL"); |
| 60 | |
Josh Triplett | e9bda3b | 2012-03-20 23:33:51 -0700 | [diff] [blame] | 61 | static const struct x86_cpu_id vmx_cpu_id[] = { |
| 62 | X86_FEATURE_MATCH(X86_FEATURE_VMX), |
| 63 | {} |
| 64 | }; |
| 65 | MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id); |
| 66 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 67 | static bool __read_mostly enable_vpid = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 68 | module_param_named(vpid, enable_vpid, bool, 0444); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 69 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 70 | static bool __read_mostly flexpriority_enabled = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 71 | module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO); |
Avi Kivity | 4c9fc8e | 2008-03-24 18:15:14 +0200 | [diff] [blame] | 72 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 73 | static bool __read_mostly enable_ept = 1; |
Avi Kivity | 736caef | 2009-03-23 17:39:48 +0200 | [diff] [blame] | 74 | module_param_named(ept, enable_ept, bool, S_IRUGO); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 75 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 76 | static bool __read_mostly enable_unrestricted_guest = 1; |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 77 | module_param_named(unrestricted_guest, |
| 78 | enable_unrestricted_guest, bool, S_IRUGO); |
| 79 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 80 | static bool __read_mostly enable_ept_ad_bits = 1; |
| 81 | module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO); |
| 82 | |
Avi Kivity | a27685c | 2012-06-12 20:30:18 +0300 | [diff] [blame] | 83 | static bool __read_mostly emulate_invalid_guest_state = true; |
Avi Kivity | c1f8bc0 | 2009-03-23 15:41:17 +0200 | [diff] [blame] | 84 | module_param(emulate_invalid_guest_state, bool, S_IRUGO); |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 85 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 86 | static bool __read_mostly vmm_exclusive = 1; |
Dongxiao Xu | b923e62 | 2010-05-11 18:29:45 +0800 | [diff] [blame] | 87 | module_param(vmm_exclusive, bool, S_IRUGO); |
| 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 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 112 | #define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD) |
| 113 | #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] | 114 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 115 | (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] | 116 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 117 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
Andy Lutomirski | 52ce3c2 | 2014-10-07 17:16:21 -0700 | [diff] [blame] | 118 | | X86_CR4_OSXMMEXCPT | X86_CR4_TSD) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 119 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 120 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 121 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 122 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 123 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 124 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 125 | #define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5 |
| 126 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 127 | /* |
| 128 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 129 | * ple_gap: upper bound on the amount of time between two successive |
| 130 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 131 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 132 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 133 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 134 | * less than 2^12 cycles |
| 135 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 136 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 137 | */ |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 138 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
| 139 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 140 | #define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2 |
| 141 | #define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0 |
| 142 | #define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \ |
| 143 | INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW |
| 144 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 145 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 146 | module_param(ple_gap, int, S_IRUGO); |
| 147 | |
| 148 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 149 | module_param(ple_window, int, S_IRUGO); |
| 150 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 151 | /* Default doubles per-vcpu window every exit. */ |
| 152 | static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW; |
| 153 | module_param(ple_window_grow, int, S_IRUGO); |
| 154 | |
| 155 | /* Default resets per-vcpu window every exit to ple_window. */ |
| 156 | static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK; |
| 157 | module_param(ple_window_shrink, int, S_IRUGO); |
| 158 | |
| 159 | /* Default is to compute the maximum so we can never overflow. */ |
| 160 | static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 161 | static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 162 | module_param(ple_window_max, int, S_IRUGO); |
| 163 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 164 | extern const ulong vmx_return; |
| 165 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 166 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 167 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 168 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 169 | struct vmcs { |
| 170 | u32 revision_id; |
| 171 | u32 abort; |
| 172 | char data[0]; |
| 173 | }; |
| 174 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 175 | /* |
| 176 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 177 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 178 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 179 | */ |
| 180 | struct loaded_vmcs { |
| 181 | struct vmcs *vmcs; |
| 182 | int cpu; |
| 183 | int launched; |
| 184 | struct list_head loaded_vmcss_on_cpu_link; |
| 185 | }; |
| 186 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 187 | struct shared_msr_entry { |
| 188 | unsigned index; |
| 189 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 190 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 191 | }; |
| 192 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 193 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 194 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 195 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 196 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 197 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 198 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 199 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 200 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 201 | * underlying hardware which will be used to run L2. |
| 202 | * This structure is packed to ensure that its layout is identical across |
| 203 | * machines (necessary for live migration). |
| 204 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 205 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 206 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 207 | struct __packed vmcs12 { |
| 208 | /* According to the Intel spec, a VMCS region must start with the |
| 209 | * following two fields. Then follow implementation-specific data. |
| 210 | */ |
| 211 | u32 revision_id; |
| 212 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 213 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 214 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 215 | u32 padding[7]; /* room for future expansion */ |
| 216 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 217 | u64 io_bitmap_a; |
| 218 | u64 io_bitmap_b; |
| 219 | u64 msr_bitmap; |
| 220 | u64 vm_exit_msr_store_addr; |
| 221 | u64 vm_exit_msr_load_addr; |
| 222 | u64 vm_entry_msr_load_addr; |
| 223 | u64 tsc_offset; |
| 224 | u64 virtual_apic_page_addr; |
| 225 | u64 apic_access_addr; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 226 | u64 posted_intr_desc_addr; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 227 | u64 ept_pointer; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 228 | u64 eoi_exit_bitmap0; |
| 229 | u64 eoi_exit_bitmap1; |
| 230 | u64 eoi_exit_bitmap2; |
| 231 | u64 eoi_exit_bitmap3; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 232 | u64 xss_exit_bitmap; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 233 | u64 guest_physical_address; |
| 234 | u64 vmcs_link_pointer; |
| 235 | u64 guest_ia32_debugctl; |
| 236 | u64 guest_ia32_pat; |
| 237 | u64 guest_ia32_efer; |
| 238 | u64 guest_ia32_perf_global_ctrl; |
| 239 | u64 guest_pdptr0; |
| 240 | u64 guest_pdptr1; |
| 241 | u64 guest_pdptr2; |
| 242 | u64 guest_pdptr3; |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 243 | u64 guest_bndcfgs; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 244 | u64 host_ia32_pat; |
| 245 | u64 host_ia32_efer; |
| 246 | u64 host_ia32_perf_global_ctrl; |
| 247 | u64 padding64[8]; /* room for future expansion */ |
| 248 | /* |
| 249 | * To allow migration of L1 (complete with its L2 guests) between |
| 250 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 251 | * unsigned long fields with no explict size. We use u64 (aliased |
| 252 | * natural_width) instead. Luckily, x86 is little-endian. |
| 253 | */ |
| 254 | natural_width cr0_guest_host_mask; |
| 255 | natural_width cr4_guest_host_mask; |
| 256 | natural_width cr0_read_shadow; |
| 257 | natural_width cr4_read_shadow; |
| 258 | natural_width cr3_target_value0; |
| 259 | natural_width cr3_target_value1; |
| 260 | natural_width cr3_target_value2; |
| 261 | natural_width cr3_target_value3; |
| 262 | natural_width exit_qualification; |
| 263 | natural_width guest_linear_address; |
| 264 | natural_width guest_cr0; |
| 265 | natural_width guest_cr3; |
| 266 | natural_width guest_cr4; |
| 267 | natural_width guest_es_base; |
| 268 | natural_width guest_cs_base; |
| 269 | natural_width guest_ss_base; |
| 270 | natural_width guest_ds_base; |
| 271 | natural_width guest_fs_base; |
| 272 | natural_width guest_gs_base; |
| 273 | natural_width guest_ldtr_base; |
| 274 | natural_width guest_tr_base; |
| 275 | natural_width guest_gdtr_base; |
| 276 | natural_width guest_idtr_base; |
| 277 | natural_width guest_dr7; |
| 278 | natural_width guest_rsp; |
| 279 | natural_width guest_rip; |
| 280 | natural_width guest_rflags; |
| 281 | natural_width guest_pending_dbg_exceptions; |
| 282 | natural_width guest_sysenter_esp; |
| 283 | natural_width guest_sysenter_eip; |
| 284 | natural_width host_cr0; |
| 285 | natural_width host_cr3; |
| 286 | natural_width host_cr4; |
| 287 | natural_width host_fs_base; |
| 288 | natural_width host_gs_base; |
| 289 | natural_width host_tr_base; |
| 290 | natural_width host_gdtr_base; |
| 291 | natural_width host_idtr_base; |
| 292 | natural_width host_ia32_sysenter_esp; |
| 293 | natural_width host_ia32_sysenter_eip; |
| 294 | natural_width host_rsp; |
| 295 | natural_width host_rip; |
| 296 | natural_width paddingl[8]; /* room for future expansion */ |
| 297 | u32 pin_based_vm_exec_control; |
| 298 | u32 cpu_based_vm_exec_control; |
| 299 | u32 exception_bitmap; |
| 300 | u32 page_fault_error_code_mask; |
| 301 | u32 page_fault_error_code_match; |
| 302 | u32 cr3_target_count; |
| 303 | u32 vm_exit_controls; |
| 304 | u32 vm_exit_msr_store_count; |
| 305 | u32 vm_exit_msr_load_count; |
| 306 | u32 vm_entry_controls; |
| 307 | u32 vm_entry_msr_load_count; |
| 308 | u32 vm_entry_intr_info_field; |
| 309 | u32 vm_entry_exception_error_code; |
| 310 | u32 vm_entry_instruction_len; |
| 311 | u32 tpr_threshold; |
| 312 | u32 secondary_vm_exec_control; |
| 313 | u32 vm_instruction_error; |
| 314 | u32 vm_exit_reason; |
| 315 | u32 vm_exit_intr_info; |
| 316 | u32 vm_exit_intr_error_code; |
| 317 | u32 idt_vectoring_info_field; |
| 318 | u32 idt_vectoring_error_code; |
| 319 | u32 vm_exit_instruction_len; |
| 320 | u32 vmx_instruction_info; |
| 321 | u32 guest_es_limit; |
| 322 | u32 guest_cs_limit; |
| 323 | u32 guest_ss_limit; |
| 324 | u32 guest_ds_limit; |
| 325 | u32 guest_fs_limit; |
| 326 | u32 guest_gs_limit; |
| 327 | u32 guest_ldtr_limit; |
| 328 | u32 guest_tr_limit; |
| 329 | u32 guest_gdtr_limit; |
| 330 | u32 guest_idtr_limit; |
| 331 | u32 guest_es_ar_bytes; |
| 332 | u32 guest_cs_ar_bytes; |
| 333 | u32 guest_ss_ar_bytes; |
| 334 | u32 guest_ds_ar_bytes; |
| 335 | u32 guest_fs_ar_bytes; |
| 336 | u32 guest_gs_ar_bytes; |
| 337 | u32 guest_ldtr_ar_bytes; |
| 338 | u32 guest_tr_ar_bytes; |
| 339 | u32 guest_interruptibility_info; |
| 340 | u32 guest_activity_state; |
| 341 | u32 guest_sysenter_cs; |
| 342 | u32 host_ia32_sysenter_cs; |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 343 | u32 vmx_preemption_timer_value; |
| 344 | u32 padding32[7]; /* room for future expansion */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 345 | u16 virtual_processor_id; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 346 | u16 posted_intr_nv; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 347 | u16 guest_es_selector; |
| 348 | u16 guest_cs_selector; |
| 349 | u16 guest_ss_selector; |
| 350 | u16 guest_ds_selector; |
| 351 | u16 guest_fs_selector; |
| 352 | u16 guest_gs_selector; |
| 353 | u16 guest_ldtr_selector; |
| 354 | u16 guest_tr_selector; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 355 | u16 guest_intr_status; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 356 | u16 host_es_selector; |
| 357 | u16 host_cs_selector; |
| 358 | u16 host_ss_selector; |
| 359 | u16 host_ds_selector; |
| 360 | u16 host_fs_selector; |
| 361 | u16 host_gs_selector; |
| 362 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 363 | }; |
| 364 | |
| 365 | /* |
| 366 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 367 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 368 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 369 | */ |
| 370 | #define VMCS12_REVISION 0x11e57ed0 |
| 371 | |
| 372 | /* |
| 373 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 374 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 375 | * current implementation, 4K are reserved to avoid future complications. |
| 376 | */ |
| 377 | #define VMCS12_SIZE 0x1000 |
| 378 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 379 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 380 | struct vmcs02_list { |
| 381 | struct list_head list; |
| 382 | gpa_t vmptr; |
| 383 | struct loaded_vmcs vmcs02; |
| 384 | }; |
| 385 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 386 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 387 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 388 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 389 | */ |
| 390 | struct nested_vmx { |
| 391 | /* Has the level1 guest done vmxon? */ |
| 392 | bool vmxon; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 393 | gpa_t vmxon_ptr; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 394 | |
| 395 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 396 | gpa_t current_vmptr; |
| 397 | /* The host-usable pointer to the above */ |
| 398 | struct page *current_vmcs12_page; |
| 399 | struct vmcs12 *current_vmcs12; |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 400 | struct vmcs *current_shadow_vmcs; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 401 | /* |
| 402 | * Indicates if the shadow vmcs must be updated with the |
| 403 | * data hold by vmcs12 |
| 404 | */ |
| 405 | bool sync_shadow_vmcs; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 406 | |
| 407 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 408 | struct list_head vmcs02_pool; |
| 409 | int vmcs02_num; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 410 | u64 vmcs01_tsc_offset; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 411 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 412 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 413 | /* |
| 414 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 415 | * we must keep them pinned while L2 runs. |
| 416 | */ |
| 417 | struct page *apic_access_page; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 418 | struct page *virtual_apic_page; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 419 | struct page *pi_desc_page; |
| 420 | struct pi_desc *pi_desc; |
| 421 | bool pi_pending; |
| 422 | u16 posted_intr_nv; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 423 | u64 msr_ia32_feature_control; |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 424 | |
| 425 | struct hrtimer preemption_timer; |
| 426 | bool preemption_timer_expired; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 427 | |
| 428 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 429 | u64 vmcs01_debugctl; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 430 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 431 | u16 vpid02; |
| 432 | u16 last_vpid; |
| 433 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 434 | u32 nested_vmx_procbased_ctls_low; |
| 435 | u32 nested_vmx_procbased_ctls_high; |
| 436 | u32 nested_vmx_true_procbased_ctls_low; |
| 437 | u32 nested_vmx_secondary_ctls_low; |
| 438 | u32 nested_vmx_secondary_ctls_high; |
| 439 | u32 nested_vmx_pinbased_ctls_low; |
| 440 | u32 nested_vmx_pinbased_ctls_high; |
| 441 | u32 nested_vmx_exit_ctls_low; |
| 442 | u32 nested_vmx_exit_ctls_high; |
| 443 | u32 nested_vmx_true_exit_ctls_low; |
| 444 | u32 nested_vmx_entry_ctls_low; |
| 445 | u32 nested_vmx_entry_ctls_high; |
| 446 | u32 nested_vmx_true_entry_ctls_low; |
| 447 | u32 nested_vmx_misc_low; |
| 448 | u32 nested_vmx_misc_high; |
| 449 | u32 nested_vmx_ept_caps; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 450 | u32 nested_vmx_vpid_caps; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 451 | }; |
| 452 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 453 | #define POSTED_INTR_ON 0 |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 454 | #define POSTED_INTR_SN 1 |
| 455 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 456 | /* Posted-Interrupt Descriptor */ |
| 457 | struct pi_desc { |
| 458 | u32 pir[8]; /* Posted interrupt requested */ |
Feng Wu | 6ef1522 | 2015-09-18 22:29:45 +0800 | [diff] [blame] | 459 | union { |
| 460 | struct { |
| 461 | /* bit 256 - Outstanding Notification */ |
| 462 | u16 on : 1, |
| 463 | /* bit 257 - Suppress Notification */ |
| 464 | sn : 1, |
| 465 | /* bit 271:258 - Reserved */ |
| 466 | rsvd_1 : 14; |
| 467 | /* bit 279:272 - Notification Vector */ |
| 468 | u8 nv; |
| 469 | /* bit 287:280 - Reserved */ |
| 470 | u8 rsvd_2; |
| 471 | /* bit 319:288 - Notification Destination */ |
| 472 | u32 ndst; |
| 473 | }; |
| 474 | u64 control; |
| 475 | }; |
| 476 | u32 rsvd[6]; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 477 | } __aligned(64); |
| 478 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 479 | static bool pi_test_and_set_on(struct pi_desc *pi_desc) |
| 480 | { |
| 481 | return test_and_set_bit(POSTED_INTR_ON, |
| 482 | (unsigned long *)&pi_desc->control); |
| 483 | } |
| 484 | |
| 485 | static bool pi_test_and_clear_on(struct pi_desc *pi_desc) |
| 486 | { |
| 487 | return test_and_clear_bit(POSTED_INTR_ON, |
| 488 | (unsigned long *)&pi_desc->control); |
| 489 | } |
| 490 | |
| 491 | static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc) |
| 492 | { |
| 493 | return test_and_set_bit(vector, (unsigned long *)pi_desc->pir); |
| 494 | } |
| 495 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 496 | static inline void pi_clear_sn(struct pi_desc *pi_desc) |
| 497 | { |
| 498 | return clear_bit(POSTED_INTR_SN, |
| 499 | (unsigned long *)&pi_desc->control); |
| 500 | } |
| 501 | |
| 502 | static inline void pi_set_sn(struct pi_desc *pi_desc) |
| 503 | { |
| 504 | return set_bit(POSTED_INTR_SN, |
| 505 | (unsigned long *)&pi_desc->control); |
| 506 | } |
| 507 | |
| 508 | static inline int pi_test_on(struct pi_desc *pi_desc) |
| 509 | { |
| 510 | return test_bit(POSTED_INTR_ON, |
| 511 | (unsigned long *)&pi_desc->control); |
| 512 | } |
| 513 | |
| 514 | static inline int pi_test_sn(struct pi_desc *pi_desc) |
| 515 | { |
| 516 | return test_bit(POSTED_INTR_SN, |
| 517 | (unsigned long *)&pi_desc->control); |
| 518 | } |
| 519 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 520 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 521 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 522 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 523 | u8 fail; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 524 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 525 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 526 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 527 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 528 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 529 | int nmsrs; |
| 530 | int save_nmsrs; |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 531 | unsigned long host_idt_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 532 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 533 | u64 msr_host_kernel_gs_base; |
| 534 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 535 | #endif |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 536 | u32 vm_entry_controls_shadow; |
| 537 | u32 vm_exit_controls_shadow; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 538 | /* |
| 539 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 540 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 541 | * guest (L2), it points to a different VMCS. |
| 542 | */ |
| 543 | struct loaded_vmcs vmcs01; |
| 544 | struct loaded_vmcs *loaded_vmcs; |
| 545 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 546 | struct msr_autoload { |
| 547 | unsigned nr; |
| 548 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 549 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 550 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 551 | struct { |
| 552 | int loaded; |
| 553 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 554 | #ifdef CONFIG_X86_64 |
| 555 | u16 ds_sel, es_sel; |
| 556 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 557 | int gs_ldt_reload_needed; |
| 558 | int fs_reload_needed; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 559 | u64 msr_host_bndcfgs; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 560 | unsigned long vmcs_host_cr4; /* May not match real cr4 */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 561 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 562 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 563 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 564 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 565 | struct kvm_segment segs[8]; |
| 566 | } rmode; |
| 567 | struct { |
| 568 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 569 | struct kvm_save_segment { |
| 570 | u16 selector; |
| 571 | unsigned long base; |
| 572 | u32 limit; |
| 573 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 574 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 575 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 576 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 577 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 578 | |
| 579 | /* Support for vnmi-less CPUs */ |
| 580 | int soft_vnmi_blocked; |
| 581 | ktime_t entry_time; |
| 582 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 583 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 584 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 585 | /* Posted interrupt descriptor */ |
| 586 | struct pi_desc pi_desc; |
| 587 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 588 | /* Support for a guest hypervisor (nested VMX) */ |
| 589 | struct nested_vmx nested; |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 590 | |
| 591 | /* Dynamic PLE window. */ |
| 592 | int ple_window; |
| 593 | bool ple_window_dirty; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 594 | |
| 595 | /* Support for PML */ |
| 596 | #define PML_ENTITY_NUM 512 |
| 597 | struct page *pml_pg; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 598 | }; |
| 599 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 600 | enum segment_cache_field { |
| 601 | SEG_FIELD_SEL = 0, |
| 602 | SEG_FIELD_BASE = 1, |
| 603 | SEG_FIELD_LIMIT = 2, |
| 604 | SEG_FIELD_AR = 3, |
| 605 | |
| 606 | SEG_FIELD_NR = 4 |
| 607 | }; |
| 608 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 609 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 610 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 611 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 612 | } |
| 613 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 614 | static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu) |
| 615 | { |
| 616 | return &(to_vmx(vcpu)->pi_desc); |
| 617 | } |
| 618 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 619 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 620 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 621 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 622 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 623 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 624 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 625 | static unsigned long shadow_read_only_fields[] = { |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 626 | /* |
| 627 | * We do NOT shadow fields that are modified when L0 |
| 628 | * traps and emulates any vmx instruction (e.g. VMPTRLD, |
| 629 | * VMXON...) executed by L1. |
| 630 | * For example, VM_INSTRUCTION_ERROR is read |
| 631 | * by L1 if a vmx instruction fails (part of the error path). |
| 632 | * Note the code assumes this logic. If for some reason |
| 633 | * we start shadowing these fields then we need to |
| 634 | * force a shadow sync when L0 emulates vmx instructions |
| 635 | * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified |
| 636 | * by nested_vmx_failValid) |
| 637 | */ |
| 638 | VM_EXIT_REASON, |
| 639 | VM_EXIT_INTR_INFO, |
| 640 | VM_EXIT_INSTRUCTION_LEN, |
| 641 | IDT_VECTORING_INFO_FIELD, |
| 642 | IDT_VECTORING_ERROR_CODE, |
| 643 | VM_EXIT_INTR_ERROR_CODE, |
| 644 | EXIT_QUALIFICATION, |
| 645 | GUEST_LINEAR_ADDRESS, |
| 646 | GUEST_PHYSICAL_ADDRESS |
| 647 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 648 | static int max_shadow_read_only_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 649 | ARRAY_SIZE(shadow_read_only_fields); |
| 650 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 651 | static unsigned long shadow_read_write_fields[] = { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 652 | TPR_THRESHOLD, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 653 | GUEST_RIP, |
| 654 | GUEST_RSP, |
| 655 | GUEST_CR0, |
| 656 | GUEST_CR3, |
| 657 | GUEST_CR4, |
| 658 | GUEST_INTERRUPTIBILITY_INFO, |
| 659 | GUEST_RFLAGS, |
| 660 | GUEST_CS_SELECTOR, |
| 661 | GUEST_CS_AR_BYTES, |
| 662 | GUEST_CS_LIMIT, |
| 663 | GUEST_CS_BASE, |
| 664 | GUEST_ES_BASE, |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 665 | GUEST_BNDCFGS, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 666 | CR0_GUEST_HOST_MASK, |
| 667 | CR0_READ_SHADOW, |
| 668 | CR4_READ_SHADOW, |
| 669 | TSC_OFFSET, |
| 670 | EXCEPTION_BITMAP, |
| 671 | CPU_BASED_VM_EXEC_CONTROL, |
| 672 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 673 | VM_ENTRY_INTR_INFO_FIELD, |
| 674 | VM_ENTRY_INSTRUCTION_LEN, |
| 675 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 676 | HOST_FS_BASE, |
| 677 | HOST_GS_BASE, |
| 678 | HOST_FS_SELECTOR, |
| 679 | HOST_GS_SELECTOR |
| 680 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 681 | static int max_shadow_read_write_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 682 | ARRAY_SIZE(shadow_read_write_fields); |
| 683 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 684 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 685 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 686 | FIELD(POSTED_INTR_NV, posted_intr_nv), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 687 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 688 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 689 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 690 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 691 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 692 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 693 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 694 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 695 | FIELD(GUEST_INTR_STATUS, guest_intr_status), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 696 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 697 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 698 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 699 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 700 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 701 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 702 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 703 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 704 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 705 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 706 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 707 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 708 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 709 | FIELD64(TSC_OFFSET, tsc_offset), |
| 710 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 711 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 712 | FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 713 | FIELD64(EPT_POINTER, ept_pointer), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 714 | FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0), |
| 715 | FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1), |
| 716 | FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2), |
| 717 | FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3), |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 718 | FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 719 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 720 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
| 721 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 722 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 723 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 724 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 725 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 726 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 727 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 728 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 729 | FIELD64(GUEST_BNDCFGS, guest_bndcfgs), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 730 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 731 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 732 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 733 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 734 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 735 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 736 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 737 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 738 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 739 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 740 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 741 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 742 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 743 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 744 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 745 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 746 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 747 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 748 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 749 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 750 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 751 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 752 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 753 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 754 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 755 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 756 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 757 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 758 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 759 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 760 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 761 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 762 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 763 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 764 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 765 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 766 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 767 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 768 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 769 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 770 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 771 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 772 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 773 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 774 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 775 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 776 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 777 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 778 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 779 | FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 780 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 781 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 782 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 783 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 784 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 785 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 786 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 787 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 788 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 789 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 790 | FIELD(GUEST_CR0, guest_cr0), |
| 791 | FIELD(GUEST_CR3, guest_cr3), |
| 792 | FIELD(GUEST_CR4, guest_cr4), |
| 793 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 794 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 795 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 796 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 797 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 798 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 799 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 800 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 801 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 802 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 803 | FIELD(GUEST_DR7, guest_dr7), |
| 804 | FIELD(GUEST_RSP, guest_rsp), |
| 805 | FIELD(GUEST_RIP, guest_rip), |
| 806 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 807 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 808 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 809 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 810 | FIELD(HOST_CR0, host_cr0), |
| 811 | FIELD(HOST_CR3, host_cr3), |
| 812 | FIELD(HOST_CR4, host_cr4), |
| 813 | FIELD(HOST_FS_BASE, host_fs_base), |
| 814 | FIELD(HOST_GS_BASE, host_gs_base), |
| 815 | FIELD(HOST_TR_BASE, host_tr_base), |
| 816 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 817 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 818 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 819 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 820 | FIELD(HOST_RSP, host_rsp), |
| 821 | FIELD(HOST_RIP, host_rip), |
| 822 | }; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 823 | |
| 824 | static inline short vmcs_field_to_offset(unsigned long field) |
| 825 | { |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 826 | BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX); |
| 827 | |
| 828 | if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) || |
| 829 | vmcs_field_to_offset_table[field] == 0) |
| 830 | return -ENOENT; |
| 831 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 832 | return vmcs_field_to_offset_table[field]; |
| 833 | } |
| 834 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 835 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 836 | { |
| 837 | return to_vmx(vcpu)->nested.current_vmcs12; |
| 838 | } |
| 839 | |
| 840 | static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr) |
| 841 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 842 | struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 843 | if (is_error_page(page)) |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 844 | return NULL; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 845 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 846 | return page; |
| 847 | } |
| 848 | |
| 849 | static void nested_release_page(struct page *page) |
| 850 | { |
| 851 | kvm_release_page_dirty(page); |
| 852 | } |
| 853 | |
| 854 | static void nested_release_page_clean(struct page *page) |
| 855 | { |
| 856 | kvm_release_page_clean(page); |
| 857 | } |
| 858 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 859 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu); |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 860 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 861 | static void kvm_cpu_vmxon(u64 addr); |
| 862 | static void kvm_cpu_vmxoff(void); |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 863 | static bool vmx_mpx_supported(void); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 864 | static bool vmx_xsaves_supported(void); |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 865 | static int vmx_cpu_uses_apicv(struct kvm_vcpu *vcpu); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 866 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 867 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 868 | struct kvm_segment *var, int seg); |
| 869 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 870 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 871 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 872 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 873 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu); |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 874 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 875 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 876 | static int alloc_identity_pagetable(struct kvm *kvm); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 877 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 878 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 879 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 880 | /* |
| 881 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 882 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 883 | */ |
| 884 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 885 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 886 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 887 | /* |
| 888 | * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we |
| 889 | * can find which vCPU should be waken up. |
| 890 | */ |
| 891 | static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu); |
| 892 | static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock); |
| 893 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 894 | static unsigned long *vmx_io_bitmap_a; |
| 895 | static unsigned long *vmx_io_bitmap_b; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 896 | static unsigned long *vmx_msr_bitmap_legacy; |
| 897 | static unsigned long *vmx_msr_bitmap_longmode; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 898 | static unsigned long *vmx_msr_bitmap_legacy_x2apic; |
| 899 | static unsigned long *vmx_msr_bitmap_longmode_x2apic; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 900 | static unsigned long *vmx_msr_bitmap_nested; |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 901 | static unsigned long *vmx_vmread_bitmap; |
| 902 | static unsigned long *vmx_vmwrite_bitmap; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 903 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 904 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 905 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 906 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 907 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 908 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 909 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 910 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 911 | int size; |
| 912 | int order; |
| 913 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 914 | u32 pin_based_exec_ctrl; |
| 915 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 916 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 917 | u32 vmexit_ctrl; |
| 918 | u32 vmentry_ctrl; |
| 919 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 920 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 921 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 922 | u32 ept; |
| 923 | u32 vpid; |
| 924 | } vmx_capability; |
| 925 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 926 | #define VMX_SEGMENT_FIELD(seg) \ |
| 927 | [VCPU_SREG_##seg] = { \ |
| 928 | .selector = GUEST_##seg##_SELECTOR, \ |
| 929 | .base = GUEST_##seg##_BASE, \ |
| 930 | .limit = GUEST_##seg##_LIMIT, \ |
| 931 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 932 | } |
| 933 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 934 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 935 | unsigned selector; |
| 936 | unsigned base; |
| 937 | unsigned limit; |
| 938 | unsigned ar_bytes; |
| 939 | } kvm_vmx_segment_fields[] = { |
| 940 | VMX_SEGMENT_FIELD(CS), |
| 941 | VMX_SEGMENT_FIELD(DS), |
| 942 | VMX_SEGMENT_FIELD(ES), |
| 943 | VMX_SEGMENT_FIELD(FS), |
| 944 | VMX_SEGMENT_FIELD(GS), |
| 945 | VMX_SEGMENT_FIELD(SS), |
| 946 | VMX_SEGMENT_FIELD(TR), |
| 947 | VMX_SEGMENT_FIELD(LDTR), |
| 948 | }; |
| 949 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 950 | static u64 host_efer; |
| 951 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 952 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 953 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 954 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 955 | * 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] | 956 | * away by decrementing the array size. |
| 957 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 958 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 959 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 960 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 961 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 962 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 963 | }; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 964 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 965 | static inline bool is_page_fault(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 966 | { |
| 967 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 968 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 969 | (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 972 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 973 | { |
| 974 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 975 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 976 | (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 977 | } |
| 978 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 979 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 980 | { |
| 981 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 982 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 983 | (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 984 | } |
| 985 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 986 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 987 | { |
| 988 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 989 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 990 | } |
| 991 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 992 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 993 | { |
| 994 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 995 | INTR_INFO_VALID_MASK)) == |
| 996 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 997 | } |
| 998 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 999 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1000 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1001 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 1002 | } |
| 1003 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1004 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1005 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1006 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1007 | } |
| 1008 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1009 | static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1010 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1011 | return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1012 | } |
| 1013 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1014 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1015 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1016 | return vmcs_config.cpu_based_exec_ctrl & |
| 1017 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1018 | } |
| 1019 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 1020 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1021 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1022 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1023 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 1024 | } |
| 1025 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 1026 | static inline bool cpu_has_vmx_virtualize_x2apic_mode(void) |
| 1027 | { |
| 1028 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1029 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 1030 | } |
| 1031 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 1032 | static inline bool cpu_has_vmx_apic_register_virt(void) |
| 1033 | { |
| 1034 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1035 | SECONDARY_EXEC_APIC_REGISTER_VIRT; |
| 1036 | } |
| 1037 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 1038 | static inline bool cpu_has_vmx_virtual_intr_delivery(void) |
| 1039 | { |
| 1040 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1041 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY; |
| 1042 | } |
| 1043 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1044 | static inline bool cpu_has_vmx_posted_intr(void) |
| 1045 | { |
Paolo Bonzini | d6a858d | 2015-09-28 11:58:14 +0200 | [diff] [blame] | 1046 | return IS_ENABLED(CONFIG_X86_LOCAL_APIC) && |
| 1047 | vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1048 | } |
| 1049 | |
| 1050 | static inline bool cpu_has_vmx_apicv(void) |
| 1051 | { |
| 1052 | return cpu_has_vmx_apic_register_virt() && |
| 1053 | cpu_has_vmx_virtual_intr_delivery() && |
| 1054 | cpu_has_vmx_posted_intr(); |
| 1055 | } |
| 1056 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1057 | static inline bool cpu_has_vmx_flexpriority(void) |
| 1058 | { |
| 1059 | return cpu_has_vmx_tpr_shadow() && |
| 1060 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1061 | } |
| 1062 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1063 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 1064 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1065 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1066 | } |
| 1067 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1068 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 1069 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1070 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1071 | } |
| 1072 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1073 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 1074 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1075 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1076 | } |
| 1077 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 1078 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 1079 | { |
| 1080 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 1081 | } |
| 1082 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 1083 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 1084 | { |
| 1085 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 1086 | } |
| 1087 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1088 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1089 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1090 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1091 | } |
| 1092 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1093 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1094 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1095 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1096 | } |
| 1097 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1098 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 1099 | { |
| 1100 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 1101 | } |
| 1102 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1103 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 1104 | { |
| 1105 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 1106 | } |
| 1107 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1108 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1109 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1110 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1111 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1112 | } |
| 1113 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1114 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 1115 | { |
| 1116 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1117 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 1118 | } |
| 1119 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1120 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 1121 | { |
| 1122 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1123 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 1124 | } |
| 1125 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1126 | static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1127 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1128 | return flexpriority_enabled && lapic_in_kernel(vcpu); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1129 | } |
| 1130 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1131 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1132 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1133 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1134 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1135 | } |
| 1136 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1137 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1138 | { |
| 1139 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1140 | SECONDARY_EXEC_RDTSCP; |
| 1141 | } |
| 1142 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1143 | static inline bool cpu_has_vmx_invpcid(void) |
| 1144 | { |
| 1145 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1146 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 1147 | } |
| 1148 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1149 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 1150 | { |
| 1151 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 1152 | } |
| 1153 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1154 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 1155 | { |
| 1156 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1157 | SECONDARY_EXEC_WBINVD_EXITING; |
| 1158 | } |
| 1159 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 1160 | static inline bool cpu_has_vmx_shadow_vmcs(void) |
| 1161 | { |
| 1162 | u64 vmx_msr; |
| 1163 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 1164 | /* check if the cpu supports writing r/o exit information fields */ |
| 1165 | if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS)) |
| 1166 | return false; |
| 1167 | |
| 1168 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1169 | SECONDARY_EXEC_SHADOW_VMCS; |
| 1170 | } |
| 1171 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 1172 | static inline bool cpu_has_vmx_pml(void) |
| 1173 | { |
| 1174 | return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML; |
| 1175 | } |
| 1176 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame^] | 1177 | static inline bool cpu_has_vmx_tsc_scaling(void) |
| 1178 | { |
| 1179 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1180 | SECONDARY_EXEC_TSC_SCALING; |
| 1181 | } |
| 1182 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1183 | static inline bool report_flexpriority(void) |
| 1184 | { |
| 1185 | return flexpriority_enabled; |
| 1186 | } |
| 1187 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1188 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 1189 | { |
| 1190 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 1191 | } |
| 1192 | |
| 1193 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 1194 | { |
| 1195 | return (vmcs12->cpu_based_vm_exec_control & |
| 1196 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 1197 | (vmcs12->secondary_vm_exec_control & bit); |
| 1198 | } |
| 1199 | |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 1200 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1201 | { |
| 1202 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 1203 | } |
| 1204 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 1205 | static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12) |
| 1206 | { |
| 1207 | return vmcs12->pin_based_vm_exec_control & |
| 1208 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1209 | } |
| 1210 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 1211 | static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12) |
| 1212 | { |
| 1213 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT); |
| 1214 | } |
| 1215 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1216 | static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12) |
| 1217 | { |
| 1218 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) && |
| 1219 | vmx_xsaves_supported(); |
| 1220 | } |
| 1221 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 1222 | static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12) |
| 1223 | { |
| 1224 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE); |
| 1225 | } |
| 1226 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 1227 | static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12) |
| 1228 | { |
| 1229 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID); |
| 1230 | } |
| 1231 | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 1232 | static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12) |
| 1233 | { |
| 1234 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT); |
| 1235 | } |
| 1236 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 1237 | static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12) |
| 1238 | { |
| 1239 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 1240 | } |
| 1241 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 1242 | static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12) |
| 1243 | { |
| 1244 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; |
| 1245 | } |
| 1246 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1247 | static inline bool is_exception(u32 intr_info) |
| 1248 | { |
| 1249 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 1250 | == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK); |
| 1251 | } |
| 1252 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 1253 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 1254 | u32 exit_intr_info, |
| 1255 | unsigned long exit_qualification); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 1256 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 1257 | struct vmcs12 *vmcs12, |
| 1258 | u32 reason, unsigned long qualification); |
| 1259 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1260 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1261 | { |
| 1262 | int i; |
| 1263 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1264 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1265 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1266 | return i; |
| 1267 | return -1; |
| 1268 | } |
| 1269 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1270 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 1271 | { |
| 1272 | struct { |
| 1273 | u64 vpid : 16; |
| 1274 | u64 rsvd : 48; |
| 1275 | u64 gva; |
| 1276 | } operand = { vpid, 0, gva }; |
| 1277 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1278 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1279 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1280 | "; ja 1f ; ud2 ; 1:" |
| 1281 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 1282 | } |
| 1283 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1284 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 1285 | { |
| 1286 | struct { |
| 1287 | u64 eptp, gpa; |
| 1288 | } operand = {eptp, gpa}; |
| 1289 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1290 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1291 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1292 | "; ja 1f ; ud2 ; 1:\n" |
| 1293 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 1294 | } |
| 1295 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1296 | 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] | 1297 | { |
| 1298 | int i; |
| 1299 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1300 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1301 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1302 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 1303 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1304 | } |
| 1305 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1306 | static void vmcs_clear(struct vmcs *vmcs) |
| 1307 | { |
| 1308 | u64 phys_addr = __pa(vmcs); |
| 1309 | u8 error; |
| 1310 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1311 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1312 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1313 | : "cc", "memory"); |
| 1314 | if (error) |
| 1315 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 1316 | vmcs, phys_addr); |
| 1317 | } |
| 1318 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1319 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 1320 | { |
| 1321 | vmcs_clear(loaded_vmcs->vmcs); |
| 1322 | loaded_vmcs->cpu = -1; |
| 1323 | loaded_vmcs->launched = 0; |
| 1324 | } |
| 1325 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1326 | static void vmcs_load(struct vmcs *vmcs) |
| 1327 | { |
| 1328 | u64 phys_addr = __pa(vmcs); |
| 1329 | u8 error; |
| 1330 | |
| 1331 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1332 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1333 | : "cc", "memory"); |
| 1334 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 1335 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1336 | vmcs, phys_addr); |
| 1337 | } |
| 1338 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1339 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1340 | /* |
| 1341 | * This bitmap is used to indicate whether the vmclear |
| 1342 | * operation is enabled on all cpus. All disabled by |
| 1343 | * default. |
| 1344 | */ |
| 1345 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1346 | |
| 1347 | static inline void crash_enable_local_vmclear(int cpu) |
| 1348 | { |
| 1349 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1350 | } |
| 1351 | |
| 1352 | static inline void crash_disable_local_vmclear(int cpu) |
| 1353 | { |
| 1354 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1355 | } |
| 1356 | |
| 1357 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1358 | { |
| 1359 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1360 | } |
| 1361 | |
| 1362 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1363 | { |
| 1364 | int cpu = raw_smp_processor_id(); |
| 1365 | struct loaded_vmcs *v; |
| 1366 | |
| 1367 | if (!crash_local_vmclear_enabled(cpu)) |
| 1368 | return; |
| 1369 | |
| 1370 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1371 | loaded_vmcss_on_cpu_link) |
| 1372 | vmcs_clear(v->vmcs); |
| 1373 | } |
| 1374 | #else |
| 1375 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1376 | static inline void crash_disable_local_vmclear(int cpu) { } |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1377 | #endif /* CONFIG_KEXEC_CORE */ |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1378 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1379 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1380 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1381 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1382 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1383 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1384 | if (loaded_vmcs->cpu != cpu) |
| 1385 | return; /* vcpu migration can race with cpu offline */ |
| 1386 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1387 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1388 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1389 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1390 | |
| 1391 | /* |
| 1392 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1393 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1394 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1395 | * then adds the vmcs into percpu list before it is deleted. |
| 1396 | */ |
| 1397 | smp_wmb(); |
| 1398 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1399 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1400 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1401 | } |
| 1402 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1403 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1404 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1405 | int cpu = loaded_vmcs->cpu; |
| 1406 | |
| 1407 | if (cpu != -1) |
| 1408 | smp_call_function_single(cpu, |
| 1409 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1410 | } |
| 1411 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1412 | static inline void vpid_sync_vcpu_single(int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1413 | { |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1414 | if (vpid == 0) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1415 | return; |
| 1416 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1417 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1418 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1419 | } |
| 1420 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1421 | static inline void vpid_sync_vcpu_global(void) |
| 1422 | { |
| 1423 | if (cpu_has_vmx_invvpid_global()) |
| 1424 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1425 | } |
| 1426 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1427 | static inline void vpid_sync_context(int vpid) |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1428 | { |
| 1429 | if (cpu_has_vmx_invvpid_single()) |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 1430 | vpid_sync_vcpu_single(vpid); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1431 | else |
| 1432 | vpid_sync_vcpu_global(); |
| 1433 | } |
| 1434 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1435 | static inline void ept_sync_global(void) |
| 1436 | { |
| 1437 | if (cpu_has_vmx_invept_global()) |
| 1438 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1439 | } |
| 1440 | |
| 1441 | static inline void ept_sync_context(u64 eptp) |
| 1442 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1443 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1444 | if (cpu_has_vmx_invept_context()) |
| 1445 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1446 | else |
| 1447 | ept_sync_global(); |
| 1448 | } |
| 1449 | } |
| 1450 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1451 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1452 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1453 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1454 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1455 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1456 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1457 | return value; |
| 1458 | } |
| 1459 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1460 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1461 | { |
| 1462 | return vmcs_readl(field); |
| 1463 | } |
| 1464 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1465 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1466 | { |
| 1467 | return vmcs_readl(field); |
| 1468 | } |
| 1469 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1470 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1471 | { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1472 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1473 | return vmcs_readl(field); |
| 1474 | #else |
| 1475 | return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32); |
| 1476 | #endif |
| 1477 | } |
| 1478 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1479 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1480 | { |
| 1481 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1482 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1483 | dump_stack(); |
| 1484 | } |
| 1485 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1486 | static void vmcs_writel(unsigned long field, unsigned long value) |
| 1487 | { |
| 1488 | u8 error; |
| 1489 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1490 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1491 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1492 | if (unlikely(error)) |
| 1493 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | static void vmcs_write16(unsigned long field, u16 value) |
| 1497 | { |
| 1498 | vmcs_writel(field, value); |
| 1499 | } |
| 1500 | |
| 1501 | static void vmcs_write32(unsigned long field, u32 value) |
| 1502 | { |
| 1503 | vmcs_writel(field, value); |
| 1504 | } |
| 1505 | |
| 1506 | static void vmcs_write64(unsigned long field, u64 value) |
| 1507 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1508 | vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1509 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1510 | asm volatile (""); |
| 1511 | vmcs_writel(field+1, value >> 32); |
| 1512 | #endif |
| 1513 | } |
| 1514 | |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1515 | static void vmcs_clear_bits(unsigned long field, u32 mask) |
| 1516 | { |
| 1517 | vmcs_writel(field, vmcs_readl(field) & ~mask); |
| 1518 | } |
| 1519 | |
| 1520 | static void vmcs_set_bits(unsigned long field, u32 mask) |
| 1521 | { |
| 1522 | vmcs_writel(field, vmcs_readl(field) | mask); |
| 1523 | } |
| 1524 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1525 | static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1526 | { |
| 1527 | vmcs_write32(VM_ENTRY_CONTROLS, val); |
| 1528 | vmx->vm_entry_controls_shadow = val; |
| 1529 | } |
| 1530 | |
| 1531 | static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1532 | { |
| 1533 | if (vmx->vm_entry_controls_shadow != val) |
| 1534 | vm_entry_controls_init(vmx, val); |
| 1535 | } |
| 1536 | |
| 1537 | static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx) |
| 1538 | { |
| 1539 | return vmx->vm_entry_controls_shadow; |
| 1540 | } |
| 1541 | |
| 1542 | |
| 1543 | static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1544 | { |
| 1545 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val); |
| 1546 | } |
| 1547 | |
| 1548 | static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1549 | { |
| 1550 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val); |
| 1551 | } |
| 1552 | |
| 1553 | static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1554 | { |
| 1555 | vmcs_write32(VM_EXIT_CONTROLS, val); |
| 1556 | vmx->vm_exit_controls_shadow = val; |
| 1557 | } |
| 1558 | |
| 1559 | static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1560 | { |
| 1561 | if (vmx->vm_exit_controls_shadow != val) |
| 1562 | vm_exit_controls_init(vmx, val); |
| 1563 | } |
| 1564 | |
| 1565 | static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx) |
| 1566 | { |
| 1567 | return vmx->vm_exit_controls_shadow; |
| 1568 | } |
| 1569 | |
| 1570 | |
| 1571 | static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1572 | { |
| 1573 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val); |
| 1574 | } |
| 1575 | |
| 1576 | static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1577 | { |
| 1578 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val); |
| 1579 | } |
| 1580 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1581 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1582 | { |
| 1583 | vmx->segment_cache.bitmask = 0; |
| 1584 | } |
| 1585 | |
| 1586 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1587 | unsigned field) |
| 1588 | { |
| 1589 | bool ret; |
| 1590 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1591 | |
| 1592 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1593 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1594 | vmx->segment_cache.bitmask = 0; |
| 1595 | } |
| 1596 | ret = vmx->segment_cache.bitmask & mask; |
| 1597 | vmx->segment_cache.bitmask |= mask; |
| 1598 | return ret; |
| 1599 | } |
| 1600 | |
| 1601 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1602 | { |
| 1603 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1604 | |
| 1605 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1606 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1607 | return *p; |
| 1608 | } |
| 1609 | |
| 1610 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1611 | { |
| 1612 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1613 | |
| 1614 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1615 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1616 | return *p; |
| 1617 | } |
| 1618 | |
| 1619 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1620 | { |
| 1621 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1622 | |
| 1623 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1624 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1625 | return *p; |
| 1626 | } |
| 1627 | |
| 1628 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1629 | { |
| 1630 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1631 | |
| 1632 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1633 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1634 | return *p; |
| 1635 | } |
| 1636 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1637 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1638 | { |
| 1639 | u32 eb; |
| 1640 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1641 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
| 1642 | (1u << NM_VECTOR) | (1u << DB_VECTOR); |
| 1643 | if ((vcpu->guest_debug & |
| 1644 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1645 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1646 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1647 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1648 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1649 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1650 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 1651 | if (vcpu->fpu_active) |
| 1652 | eb &= ~(1u << NM_VECTOR); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1653 | |
| 1654 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1655 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1656 | * them to L1. When running L2, we will only handle the exceptions |
| 1657 | * specified above if L1 did not want them. |
| 1658 | */ |
| 1659 | if (is_guest_mode(vcpu)) |
| 1660 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1661 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1662 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1663 | } |
| 1664 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1665 | static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1666 | unsigned long entry, unsigned long exit) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1667 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1668 | vm_entry_controls_clearbit(vmx, entry); |
| 1669 | vm_exit_controls_clearbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1670 | } |
| 1671 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1672 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1673 | { |
| 1674 | unsigned i; |
| 1675 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1676 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1677 | switch (msr) { |
| 1678 | case MSR_EFER: |
| 1679 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1680 | clear_atomic_switch_msr_special(vmx, |
| 1681 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1682 | VM_EXIT_LOAD_IA32_EFER); |
| 1683 | return; |
| 1684 | } |
| 1685 | break; |
| 1686 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1687 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1688 | clear_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1689 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1690 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1691 | return; |
| 1692 | } |
| 1693 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1694 | } |
| 1695 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1696 | for (i = 0; i < m->nr; ++i) |
| 1697 | if (m->guest[i].index == msr) |
| 1698 | break; |
| 1699 | |
| 1700 | if (i == m->nr) |
| 1701 | return; |
| 1702 | --m->nr; |
| 1703 | m->guest[i] = m->guest[m->nr]; |
| 1704 | m->host[i] = m->host[m->nr]; |
| 1705 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1706 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1707 | } |
| 1708 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1709 | static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1710 | unsigned long entry, unsigned long exit, |
| 1711 | unsigned long guest_val_vmcs, unsigned long host_val_vmcs, |
| 1712 | u64 guest_val, u64 host_val) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1713 | { |
| 1714 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1715 | vmcs_write64(host_val_vmcs, host_val); |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1716 | vm_entry_controls_setbit(vmx, entry); |
| 1717 | vm_exit_controls_setbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1718 | } |
| 1719 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1720 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1721 | u64 guest_val, u64 host_val) |
| 1722 | { |
| 1723 | unsigned i; |
| 1724 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1725 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1726 | switch (msr) { |
| 1727 | case MSR_EFER: |
| 1728 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1729 | add_atomic_switch_msr_special(vmx, |
| 1730 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1731 | VM_EXIT_LOAD_IA32_EFER, |
| 1732 | GUEST_IA32_EFER, |
| 1733 | HOST_IA32_EFER, |
| 1734 | guest_val, host_val); |
| 1735 | return; |
| 1736 | } |
| 1737 | break; |
| 1738 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1739 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1740 | add_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1741 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1742 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1743 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1744 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1745 | guest_val, host_val); |
| 1746 | return; |
| 1747 | } |
| 1748 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1749 | } |
| 1750 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1751 | for (i = 0; i < m->nr; ++i) |
| 1752 | if (m->guest[i].index == msr) |
| 1753 | break; |
| 1754 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1755 | if (i == NR_AUTOLOAD_MSRS) { |
Michael S. Tsirkin | 6026620 | 2013-10-31 00:34:56 +0200 | [diff] [blame] | 1756 | printk_once(KERN_WARNING "Not enough msr switch entries. " |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1757 | "Can't add msr %x\n", msr); |
| 1758 | return; |
| 1759 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1760 | ++m->nr; |
| 1761 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1762 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1763 | } |
| 1764 | |
| 1765 | m->guest[i].index = msr; |
| 1766 | m->guest[i].value = guest_val; |
| 1767 | m->host[i].index = msr; |
| 1768 | m->host[i].value = host_val; |
| 1769 | } |
| 1770 | |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1771 | static void reload_tss(void) |
| 1772 | { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1773 | /* |
| 1774 | * VT restores TR but not its size. Useless. |
| 1775 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1776 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 1777 | struct desc_struct *descs; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1778 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1779 | descs = (void *)gdt->address; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1780 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
| 1781 | load_TR_desc(); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1782 | } |
| 1783 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1784 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1785 | { |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1786 | u64 guest_efer; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1787 | u64 ignore_bits; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1788 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1789 | guest_efer = vmx->vcpu.arch.efer; |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1790 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1791 | /* |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 1792 | * NX is emulated; LMA and LME handled by hardware; SCE meaningless |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1793 | * outside long mode |
| 1794 | */ |
| 1795 | ignore_bits = EFER_NX | EFER_SCE; |
| 1796 | #ifdef CONFIG_X86_64 |
| 1797 | ignore_bits |= EFER_LMA | EFER_LME; |
| 1798 | /* SCE is meaningful only in long mode on Intel */ |
| 1799 | if (guest_efer & EFER_LMA) |
| 1800 | ignore_bits &= ~(u64)EFER_SCE; |
| 1801 | #endif |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1802 | guest_efer &= ~ignore_bits; |
| 1803 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1804 | vmx->guest_msrs[efer_offset].data = guest_efer; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1805 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1806 | |
| 1807 | clear_atomic_switch_msr(vmx, MSR_EFER); |
Andy Lutomirski | f6577a5f | 2014-11-07 18:25:18 -0800 | [diff] [blame] | 1808 | |
| 1809 | /* |
| 1810 | * On EPT, we can't emulate NX, so we must switch EFER atomically. |
| 1811 | * On CPUs that support "load IA32_EFER", always switch EFER |
| 1812 | * atomically, since it's faster than switching it manually. |
| 1813 | */ |
| 1814 | if (cpu_has_load_ia32_efer || |
| 1815 | (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) { |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1816 | guest_efer = vmx->vcpu.arch.efer; |
| 1817 | if (!(guest_efer & EFER_LMA)) |
| 1818 | guest_efer &= ~EFER_LME; |
Andy Lutomirski | 54b98bf | 2014-11-10 11:19:15 -0800 | [diff] [blame] | 1819 | if (guest_efer != host_efer) |
| 1820 | add_atomic_switch_msr(vmx, MSR_EFER, |
| 1821 | guest_efer, host_efer); |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1822 | return false; |
| 1823 | } |
| 1824 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1825 | return true; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1826 | } |
| 1827 | |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1828 | static unsigned long segment_base(u16 selector) |
| 1829 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1830 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1831 | struct desc_struct *d; |
| 1832 | unsigned long table_base; |
| 1833 | unsigned long v; |
| 1834 | |
| 1835 | if (!(selector & ~3)) |
| 1836 | return 0; |
| 1837 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1838 | table_base = gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1839 | |
| 1840 | if (selector & 4) { /* from ldt */ |
| 1841 | u16 ldt_selector = kvm_read_ldt(); |
| 1842 | |
| 1843 | if (!(ldt_selector & ~3)) |
| 1844 | return 0; |
| 1845 | |
| 1846 | table_base = segment_base(ldt_selector); |
| 1847 | } |
| 1848 | d = (struct desc_struct *)(table_base + (selector & ~7)); |
| 1849 | v = get_desc_base(d); |
| 1850 | #ifdef CONFIG_X86_64 |
| 1851 | if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11)) |
| 1852 | v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32; |
| 1853 | #endif |
| 1854 | return v; |
| 1855 | } |
| 1856 | |
| 1857 | static inline unsigned long kvm_read_tr_base(void) |
| 1858 | { |
| 1859 | u16 tr; |
| 1860 | asm("str %0" : "=g"(tr)); |
| 1861 | return segment_base(tr); |
| 1862 | } |
| 1863 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1864 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1865 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1866 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1867 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1868 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1869 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1870 | return; |
| 1871 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1872 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1873 | /* |
| 1874 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 1875 | * allow segment selectors with cpl > 0 or ti == 1. |
| 1876 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1877 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1878 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1879 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1880 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1881 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1882 | vmx->host_state.fs_reload_needed = 0; |
| 1883 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1884 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1885 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1886 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1887 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1888 | if (!(vmx->host_state.gs_sel & 7)) |
| 1889 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1890 | else { |
| 1891 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1892 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1893 | } |
| 1894 | |
| 1895 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1896 | savesegment(ds, vmx->host_state.ds_sel); |
| 1897 | savesegment(es, vmx->host_state.es_sel); |
| 1898 | #endif |
| 1899 | |
| 1900 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1901 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 1902 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 1903 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1904 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 1905 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1906 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1907 | |
| 1908 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1909 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 1910 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1911 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1912 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1913 | if (boot_cpu_has(X86_FEATURE_MPX)) |
| 1914 | rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1915 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 1916 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1917 | vmx->guest_msrs[i].data, |
| 1918 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1919 | } |
| 1920 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1921 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1922 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1923 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1924 | return; |
| 1925 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 1926 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1927 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1928 | #ifdef CONFIG_X86_64 |
| 1929 | if (is_long_mode(&vmx->vcpu)) |
| 1930 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 1931 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1932 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1933 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1934 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1935 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1936 | #else |
| 1937 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1938 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1939 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 1940 | if (vmx->host_state.fs_reload_needed) |
| 1941 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1942 | #ifdef CONFIG_X86_64 |
| 1943 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 1944 | loadsegment(ds, vmx->host_state.ds_sel); |
| 1945 | loadsegment(es, vmx->host_state.es_sel); |
| 1946 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1947 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1948 | reload_tss(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1949 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1950 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1951 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1952 | if (vmx->host_state.msr_host_bndcfgs) |
| 1953 | wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1954 | /* |
| 1955 | * If the FPU is not active (through the host task or |
| 1956 | * the guest vcpu), then restore the cr0.TS bit. |
| 1957 | */ |
Ingo Molnar | 3c6dffa | 2015-04-28 12:28:08 +0200 | [diff] [blame] | 1958 | if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded) |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1959 | stts(); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1960 | load_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1961 | } |
| 1962 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1963 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 1964 | { |
| 1965 | preempt_disable(); |
| 1966 | __vmx_load_host_state(vmx); |
| 1967 | preempt_enable(); |
| 1968 | } |
| 1969 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 1970 | static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu) |
| 1971 | { |
| 1972 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 1973 | struct pi_desc old, new; |
| 1974 | unsigned int dest; |
| 1975 | |
| 1976 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 1977 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 1978 | return; |
| 1979 | |
| 1980 | do { |
| 1981 | old.control = new.control = pi_desc->control; |
| 1982 | |
| 1983 | /* |
| 1984 | * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there |
| 1985 | * are two possible cases: |
| 1986 | * 1. After running 'pre_block', context switch |
| 1987 | * happened. For this case, 'sn' was set in |
| 1988 | * vmx_vcpu_put(), so we need to clear it here. |
| 1989 | * 2. After running 'pre_block', we were blocked, |
| 1990 | * and woken up by some other guy. For this case, |
| 1991 | * we don't need to do anything, 'pi_post_block' |
| 1992 | * will do everything for us. However, we cannot |
| 1993 | * check whether it is case #1 or case #2 here |
| 1994 | * (maybe, not needed), so we also clear sn here, |
| 1995 | * I think it is not a big deal. |
| 1996 | */ |
| 1997 | if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) { |
| 1998 | if (vcpu->cpu != cpu) { |
| 1999 | dest = cpu_physical_id(cpu); |
| 2000 | |
| 2001 | if (x2apic_enabled()) |
| 2002 | new.ndst = dest; |
| 2003 | else |
| 2004 | new.ndst = (dest << 8) & 0xFF00; |
| 2005 | } |
| 2006 | |
| 2007 | /* set 'NV' to 'notification vector' */ |
| 2008 | new.nv = POSTED_INTR_VECTOR; |
| 2009 | } |
| 2010 | |
| 2011 | /* Allow posting non-urgent interrupts */ |
| 2012 | new.sn = 0; |
| 2013 | } while (cmpxchg(&pi_desc->control, old.control, |
| 2014 | new.control) != old.control); |
| 2015 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2016 | /* |
| 2017 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 2018 | * vcpu mutex is already taken. |
| 2019 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 2020 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2021 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2022 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2023 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2024 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2025 | if (!vmm_exclusive) |
| 2026 | kvm_cpu_vmxon(phys_addr); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2027 | else if (vmx->loaded_vmcs->cpu != cpu) |
| 2028 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2029 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2030 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 2031 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 2032 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2033 | } |
| 2034 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2035 | if (vmx->loaded_vmcs->cpu != cpu) { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 2036 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2037 | unsigned long sysenter_esp; |
| 2038 | |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2039 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2040 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2041 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 2042 | |
| 2043 | /* |
| 2044 | * Read loaded_vmcs->cpu should be before fetching |
| 2045 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 2046 | * See the comments in __loaded_vmcs_clear(). |
| 2047 | */ |
| 2048 | smp_rmb(); |
| 2049 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2050 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 2051 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2052 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2053 | local_irq_enable(); |
| 2054 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2055 | /* |
| 2056 | * Linux uses per-cpu TSS and GDT, so set these when switching |
| 2057 | * processors. |
| 2058 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2059 | vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 2060 | vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2061 | |
| 2062 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 2063 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2064 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2065 | } |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2066 | |
| 2067 | vmx_vcpu_pi_load(vcpu, cpu); |
| 2068 | } |
| 2069 | |
| 2070 | static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu) |
| 2071 | { |
| 2072 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2073 | |
| 2074 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 2075 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 2076 | return; |
| 2077 | |
| 2078 | /* Set SN when the vCPU is preempted */ |
| 2079 | if (vcpu->preempted) |
| 2080 | pi_set_sn(pi_desc); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 2084 | { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2085 | vmx_vcpu_pi_put(vcpu); |
| 2086 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2087 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2088 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2089 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 2090 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2091 | kvm_cpu_vmxoff(); |
| 2092 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2093 | } |
| 2094 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2095 | static void vmx_fpu_activate(struct kvm_vcpu *vcpu) |
| 2096 | { |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2097 | ulong cr0; |
| 2098 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2099 | if (vcpu->fpu_active) |
| 2100 | return; |
| 2101 | vcpu->fpu_active = 1; |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2102 | cr0 = vmcs_readl(GUEST_CR0); |
| 2103 | cr0 &= ~(X86_CR0_TS | X86_CR0_MP); |
| 2104 | cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP); |
| 2105 | vmcs_writel(GUEST_CR0, cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2106 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2107 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 2108 | if (is_guest_mode(vcpu)) |
| 2109 | vcpu->arch.cr0_guest_owned_bits &= |
| 2110 | ~get_vmcs12(vcpu)->cr0_guest_host_mask; |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2111 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2112 | } |
| 2113 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2114 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 2115 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 2116 | /* |
| 2117 | * Return the cr0 value that a nested guest would read. This is a combination |
| 2118 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 2119 | * its hypervisor (cr0_read_shadow). |
| 2120 | */ |
| 2121 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 2122 | { |
| 2123 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 2124 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 2125 | } |
| 2126 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 2127 | { |
| 2128 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 2129 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 2130 | } |
| 2131 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2132 | static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu) |
| 2133 | { |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 2134 | /* Note that there is no vcpu->fpu_active = 0 here. The caller must |
| 2135 | * set this *before* calling this function. |
| 2136 | */ |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2137 | vmx_decache_cr0_guest_bits(vcpu); |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2138 | vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2139 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2140 | vcpu->arch.cr0_guest_owned_bits = 0; |
| 2141 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 2142 | if (is_guest_mode(vcpu)) { |
| 2143 | /* |
| 2144 | * L1's specified read shadow might not contain the TS bit, |
| 2145 | * so now that we turned on shadowing of this bit, we need to |
| 2146 | * set this bit of the shadow. Like in nested_vmx_run we need |
| 2147 | * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet |
| 2148 | * up-to-date here because we just decached cr0.TS (and we'll |
| 2149 | * only update vmcs12->guest_cr0 on nested exit). |
| 2150 | */ |
| 2151 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2152 | vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) | |
| 2153 | (vcpu->arch.cr0 & X86_CR0_TS); |
| 2154 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 2155 | } else |
| 2156 | vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2157 | } |
| 2158 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2159 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 2160 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2161 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 2162 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2163 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 2164 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2165 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 2166 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2167 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2168 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 2169 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2170 | } |
| 2171 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2172 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2173 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 2177 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2178 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2179 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2180 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2181 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2182 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2183 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2184 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 2185 | } |
| 2186 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2187 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2188 | { |
| 2189 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2190 | int ret = 0; |
| 2191 | |
| 2192 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2193 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2194 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2195 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2196 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2197 | return ret; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2198 | } |
| 2199 | |
| 2200 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 2201 | { |
| 2202 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2203 | u32 interruptibility = interruptibility_old; |
| 2204 | |
| 2205 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 2206 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2207 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2208 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2209 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2210 | interruptibility |= GUEST_INTR_STATE_STI; |
| 2211 | |
| 2212 | if ((interruptibility != interruptibility_old)) |
| 2213 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 2214 | } |
| 2215 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2216 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 2217 | { |
| 2218 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2219 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2220 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2221 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2222 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2223 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2224 | /* skipping an emulated instruction also counts */ |
| 2225 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2226 | } |
| 2227 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2228 | /* |
| 2229 | * KVM wants to inject page-faults which it got to the guest. This function |
| 2230 | * 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] | 2231 | */ |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2232 | static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2233 | { |
| 2234 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2235 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2236 | if (!(vmcs12->exception_bitmap & (1u << nr))) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2237 | return 0; |
| 2238 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 2239 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 2240 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 2241 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2242 | return 1; |
| 2243 | } |
| 2244 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2245 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 2246 | bool has_error_code, u32 error_code, |
| 2247 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2248 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2249 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2250 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2251 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2252 | if (!reinject && is_guest_mode(vcpu) && |
| 2253 | nested_vmx_check_exception(vcpu, nr)) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2254 | return; |
| 2255 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2256 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2257 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2258 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2259 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2260 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2261 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 2262 | int inc_eip = 0; |
| 2263 | if (kvm_exception_is_soft(nr)) |
| 2264 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 2265 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 2266 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2267 | return; |
| 2268 | } |
| 2269 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2270 | if (kvm_exception_is_soft(nr)) { |
| 2271 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 2272 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2273 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2274 | } else |
| 2275 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2276 | |
| 2277 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2278 | } |
| 2279 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2280 | static bool vmx_rdtscp_supported(void) |
| 2281 | { |
| 2282 | return cpu_has_vmx_rdtscp(); |
| 2283 | } |
| 2284 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2285 | static bool vmx_invpcid_supported(void) |
| 2286 | { |
| 2287 | return cpu_has_vmx_invpcid() && enable_ept; |
| 2288 | } |
| 2289 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2290 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2291 | * Swap MSR entry in host/guest MSR entry array. |
| 2292 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2293 | 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] | 2294 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2295 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2296 | |
| 2297 | tmp = vmx->guest_msrs[to]; |
| 2298 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 2299 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2300 | } |
| 2301 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2302 | static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu) |
| 2303 | { |
| 2304 | unsigned long *msr_bitmap; |
| 2305 | |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 2306 | if (is_guest_mode(vcpu)) |
| 2307 | msr_bitmap = vmx_msr_bitmap_nested; |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 2308 | else if (vcpu->arch.apic_base & X2APIC_ENABLE) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2309 | if (is_long_mode(vcpu)) |
| 2310 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic; |
| 2311 | else |
| 2312 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic; |
| 2313 | } else { |
| 2314 | if (is_long_mode(vcpu)) |
| 2315 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 2316 | else |
| 2317 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 2318 | } |
| 2319 | |
| 2320 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 2321 | } |
| 2322 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2323 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2324 | * Set up the vmcs to automatically save and restore system |
| 2325 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 2326 | * mode, as fiddling with msrs is very expensive. |
| 2327 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2328 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2329 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2330 | int save_nmsrs, index; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2331 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2332 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2333 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2334 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2335 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2336 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2337 | move_msr_up(vmx, index, save_nmsrs++); |
| 2338 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2339 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2340 | move_msr_up(vmx, index, save_nmsrs++); |
| 2341 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2342 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2343 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2344 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2345 | if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2346 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2347 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2348 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2349 | * if efer.sce is enabled. |
| 2350 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2351 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2352 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2353 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2354 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2355 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2356 | index = __find_msr_index(vmx, MSR_EFER); |
| 2357 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2358 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2359 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2360 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 2361 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2362 | if (cpu_has_vmx_msr_bitmap()) |
| 2363 | vmx_set_msr_bitmap(&vmx->vcpu); |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2364 | } |
| 2365 | |
| 2366 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2367 | * reads and returns guest's timestamp counter "register" |
| 2368 | * guest_tsc = host_tsc + tsc_offset -- 21.3 |
| 2369 | */ |
| 2370 | static u64 guest_read_tsc(void) |
| 2371 | { |
| 2372 | u64 host_tsc, tsc_offset; |
| 2373 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2374 | host_tsc = rdtsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2375 | tsc_offset = vmcs_read64(TSC_OFFSET); |
| 2376 | return host_tsc + tsc_offset; |
| 2377 | } |
| 2378 | |
| 2379 | /* |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2380 | * Like guest_read_tsc, but always returns L1's notion of the timestamp |
| 2381 | * counter, even if a nested guest (L2) is currently running. |
| 2382 | */ |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 2383 | static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc) |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2384 | { |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 2385 | u64 tsc_offset; |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2386 | |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2387 | tsc_offset = is_guest_mode(vcpu) ? |
| 2388 | to_vmx(vcpu)->nested.vmcs01_tsc_offset : |
| 2389 | vmcs_read64(TSC_OFFSET); |
| 2390 | return host_tsc + tsc_offset; |
| 2391 | } |
| 2392 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2393 | static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu) |
| 2394 | { |
| 2395 | return vmcs_read64(TSC_OFFSET); |
| 2396 | } |
| 2397 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2398 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2399 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2400 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2401 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2402 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2403 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2404 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2405 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 2406 | * to the spec, this should set L1's TSC; The offset that L1 |
| 2407 | * set for L2 remains unchanged, and still needs to be added |
| 2408 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2409 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2410 | struct vmcs12 *vmcs12; |
| 2411 | to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset; |
| 2412 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 2413 | vmcs12 = get_vmcs12(vcpu); |
| 2414 | vmcs_write64(TSC_OFFSET, offset + |
| 2415 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 2416 | vmcs12->tsc_offset : 0)); |
| 2417 | } else { |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2418 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, |
| 2419 | vmcs_read64(TSC_OFFSET), offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2420 | vmcs_write64(TSC_OFFSET, offset); |
| 2421 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2422 | } |
| 2423 | |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 2424 | static void vmx_adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, s64 adjustment) |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2425 | { |
| 2426 | u64 offset = vmcs_read64(TSC_OFFSET); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2427 | |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2428 | vmcs_write64(TSC_OFFSET, offset + adjustment); |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2429 | if (is_guest_mode(vcpu)) { |
| 2430 | /* Even when running L2, the adjustment needs to apply to L1 */ |
| 2431 | to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment; |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2432 | } else |
| 2433 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset, |
| 2434 | offset + adjustment); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2435 | } |
| 2436 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2437 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 2438 | { |
| 2439 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 2440 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 2441 | } |
| 2442 | |
| 2443 | /* |
| 2444 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 2445 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 2446 | * all guests if the "nested" module option is off, and can also be disabled |
| 2447 | * for a single guest by disabling its VMX cpuid bit. |
| 2448 | */ |
| 2449 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 2450 | { |
| 2451 | return nested && guest_cpuid_has_vmx(vcpu); |
| 2452 | } |
| 2453 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2454 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2455 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 2456 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 2457 | * The same values should also be used to verify that vmcs12 control fields are |
| 2458 | * valid during nested entry from L1 to L2. |
| 2459 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 2460 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 2461 | * bit in the high half is on if the corresponding bit in the control field |
| 2462 | * may be on. See also vmx_control_verify(). |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2463 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2464 | static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx) |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2465 | { |
| 2466 | /* |
| 2467 | * Note that as a general rule, the high half of the MSRs (bits in |
| 2468 | * the control fields which may be 1) should be initialized by the |
| 2469 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2470 | * can be supported) and the list of features we want to expose - |
| 2471 | * because they are known to be properly supported in our code. |
| 2472 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2473 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2474 | * reason is that if one of these bits is necessary, it will appear |
| 2475 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2476 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 2477 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 2478 | * These rules have exceptions below. |
| 2479 | */ |
| 2480 | |
| 2481 | /* pin-based controls */ |
Jan Kiszka | eabeaac | 2013-03-13 11:30:50 +0100 | [diff] [blame] | 2482 | rdmsr(MSR_IA32_VMX_PINBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2483 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2484 | vmx->nested.nested_vmx_pinbased_ctls_high); |
| 2485 | vmx->nested.nested_vmx_pinbased_ctls_low |= |
| 2486 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2487 | vmx->nested.nested_vmx_pinbased_ctls_high &= |
| 2488 | PIN_BASED_EXT_INTR_MASK | |
| 2489 | PIN_BASED_NMI_EXITING | |
| 2490 | PIN_BASED_VIRTUAL_NMIS; |
| 2491 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2492 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 2493 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 2494 | if (vmx_cpu_uses_apicv(&vmx->vcpu)) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 2495 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2496 | PIN_BASED_POSTED_INTR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2497 | |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2498 | /* exit controls */ |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2499 | rdmsr(MSR_IA32_VMX_EXIT_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2500 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2501 | vmx->nested.nested_vmx_exit_ctls_high); |
| 2502 | vmx->nested.nested_vmx_exit_ctls_low = |
| 2503 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2504 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2505 | vmx->nested.nested_vmx_exit_ctls_high &= |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2506 | #ifdef CONFIG_X86_64 |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2507 | VM_EXIT_HOST_ADDR_SPACE_SIZE | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2508 | #endif |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2509 | VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2510 | vmx->nested.nested_vmx_exit_ctls_high |= |
| 2511 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2512 | VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2513 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; |
| 2514 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2515 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2516 | vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2517 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2518 | /* We support free control of debug control saving. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2519 | vmx->nested.nested_vmx_true_exit_ctls_low = |
| 2520 | vmx->nested.nested_vmx_exit_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2521 | ~VM_EXIT_SAVE_DEBUG_CONTROLS; |
| 2522 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2523 | /* entry controls */ |
| 2524 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2525 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2526 | vmx->nested.nested_vmx_entry_ctls_high); |
| 2527 | vmx->nested.nested_vmx_entry_ctls_low = |
| 2528 | VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2529 | vmx->nested.nested_vmx_entry_ctls_high &= |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2530 | #ifdef CONFIG_X86_64 |
| 2531 | VM_ENTRY_IA32E_MODE | |
| 2532 | #endif |
| 2533 | VM_ENTRY_LOAD_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2534 | vmx->nested.nested_vmx_entry_ctls_high |= |
| 2535 | (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2536 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2537 | vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2538 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2539 | /* We support free control of debug control loading. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2540 | vmx->nested.nested_vmx_true_entry_ctls_low = |
| 2541 | vmx->nested.nested_vmx_entry_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2542 | ~VM_ENTRY_LOAD_DEBUG_CONTROLS; |
| 2543 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2544 | /* cpu-based controls */ |
| 2545 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2546 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2547 | vmx->nested.nested_vmx_procbased_ctls_high); |
| 2548 | vmx->nested.nested_vmx_procbased_ctls_low = |
| 2549 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2550 | vmx->nested.nested_vmx_procbased_ctls_high &= |
Jan Kiszka | a294c9b | 2013-10-23 17:43:09 +0100 | [diff] [blame] | 2551 | CPU_BASED_VIRTUAL_INTR_PENDING | |
| 2552 | CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2553 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2554 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2555 | CPU_BASED_CR3_STORE_EXITING | |
| 2556 | #ifdef CONFIG_X86_64 |
| 2557 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2558 | #endif |
| 2559 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 2560 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG | |
| 2561 | CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING | |
| 2562 | CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING | |
| 2563 | CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2564 | /* |
| 2565 | * We can allow some features even when not supported by the |
| 2566 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2567 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2568 | * without MSR bitmaps. |
| 2569 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2570 | vmx->nested.nested_vmx_procbased_ctls_high |= |
| 2571 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 560b7ee | 2014-06-16 13:59:42 +0200 | [diff] [blame] | 2572 | CPU_BASED_USE_MSR_BITMAPS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2573 | |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2574 | /* We support free control of CR3 access interception. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2575 | vmx->nested.nested_vmx_true_procbased_ctls_low = |
| 2576 | vmx->nested.nested_vmx_procbased_ctls_low & |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2577 | ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING); |
| 2578 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2579 | /* secondary cpu-based controls */ |
| 2580 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2581 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2582 | vmx->nested.nested_vmx_secondary_ctls_high); |
| 2583 | vmx->nested.nested_vmx_secondary_ctls_low = 0; |
| 2584 | vmx->nested.nested_vmx_secondary_ctls_high &= |
Jan Kiszka | d6851fb | 2013-02-23 22:34:39 +0100 | [diff] [blame] | 2585 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 2586 | SECONDARY_EXEC_RDTSCP | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 2587 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 2588 | SECONDARY_EXEC_ENABLE_VPID | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 2589 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 2590 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 2591 | SECONDARY_EXEC_WBINVD_EXITING | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 2592 | SECONDARY_EXEC_XSAVES | |
| 2593 | SECONDARY_EXEC_PCOMMIT; |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2594 | |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2595 | if (enable_ept) { |
| 2596 | /* nested EPT: emulate EPT also to L1 */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2597 | vmx->nested.nested_vmx_secondary_ctls_high |= |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2598 | SECONDARY_EXEC_ENABLE_EPT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2599 | vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT | |
Jan Kiszka | d3134db | 2013-10-23 14:40:31 +0100 | [diff] [blame] | 2600 | VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT | |
| 2601 | VMX_EPT_INVEPT_BIT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2602 | vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2603 | /* |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 2604 | * For nested guests, we don't do anything specific |
| 2605 | * for single context invalidation. Hence, only advertise |
| 2606 | * support for global context invalidation. |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2607 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2608 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2609 | } else |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2610 | vmx->nested.nested_vmx_ept_caps = 0; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2611 | |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 2612 | if (enable_vpid) |
| 2613 | vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT | |
| 2614 | VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 2615 | else |
| 2616 | vmx->nested.nested_vmx_vpid_caps = 0; |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 2617 | |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2618 | if (enable_unrestricted_guest) |
| 2619 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2620 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 2621 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2622 | /* miscellaneous data */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2623 | rdmsr(MSR_IA32_VMX_MISC, |
| 2624 | vmx->nested.nested_vmx_misc_low, |
| 2625 | vmx->nested.nested_vmx_misc_high); |
| 2626 | vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA; |
| 2627 | vmx->nested.nested_vmx_misc_low |= |
| 2628 | VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2629 | VMX_MISC_ACTIVITY_HLT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2630 | vmx->nested.nested_vmx_misc_high = 0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2631 | } |
| 2632 | |
| 2633 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2634 | { |
| 2635 | /* |
| 2636 | * Bits 0 in high must be 0, and bits 1 in low must be 1. |
| 2637 | */ |
| 2638 | return ((control & high) | low) == control; |
| 2639 | } |
| 2640 | |
| 2641 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2642 | { |
| 2643 | return low | ((u64)high << 32); |
| 2644 | } |
| 2645 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2646 | /* Returns 0 on success, non-0 otherwise. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2647 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2648 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2649 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 2650 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2651 | switch (msr_index) { |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2652 | case MSR_IA32_VMX_BASIC: |
| 2653 | /* |
| 2654 | * This MSR reports some information about VMX support. We |
| 2655 | * should return information about the VMX we emulate for the |
| 2656 | * guest, and the VMCS structure we give it - not about the |
| 2657 | * VMX support of the underlying hardware. |
| 2658 | */ |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2659 | *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2660 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2661 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2662 | break; |
| 2663 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2664 | case MSR_IA32_VMX_PINBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2665 | *pdata = vmx_control_msr( |
| 2666 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2667 | vmx->nested.nested_vmx_pinbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2668 | break; |
| 2669 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2670 | *pdata = vmx_control_msr( |
| 2671 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 2672 | vmx->nested.nested_vmx_procbased_ctls_high); |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2673 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2674 | case MSR_IA32_VMX_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2675 | *pdata = vmx_control_msr( |
| 2676 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2677 | vmx->nested.nested_vmx_procbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2678 | break; |
| 2679 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2680 | *pdata = vmx_control_msr( |
| 2681 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 2682 | vmx->nested.nested_vmx_exit_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2683 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2684 | case MSR_IA32_VMX_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2685 | *pdata = vmx_control_msr( |
| 2686 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2687 | vmx->nested.nested_vmx_exit_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2688 | break; |
| 2689 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2690 | *pdata = vmx_control_msr( |
| 2691 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 2692 | vmx->nested.nested_vmx_entry_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2693 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2694 | case MSR_IA32_VMX_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2695 | *pdata = vmx_control_msr( |
| 2696 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2697 | vmx->nested.nested_vmx_entry_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2698 | break; |
| 2699 | case MSR_IA32_VMX_MISC: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2700 | *pdata = vmx_control_msr( |
| 2701 | vmx->nested.nested_vmx_misc_low, |
| 2702 | vmx->nested.nested_vmx_misc_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2703 | break; |
| 2704 | /* |
| 2705 | * These MSRs specify bits which the guest must keep fixed (on or off) |
| 2706 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2707 | * We picked the standard core2 setting. |
| 2708 | */ |
| 2709 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2710 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2711 | case MSR_IA32_VMX_CR0_FIXED0: |
| 2712 | *pdata = VMXON_CR0_ALWAYSON; |
| 2713 | break; |
| 2714 | case MSR_IA32_VMX_CR0_FIXED1: |
| 2715 | *pdata = -1ULL; |
| 2716 | break; |
| 2717 | case MSR_IA32_VMX_CR4_FIXED0: |
| 2718 | *pdata = VMXON_CR4_ALWAYSON; |
| 2719 | break; |
| 2720 | case MSR_IA32_VMX_CR4_FIXED1: |
| 2721 | *pdata = -1ULL; |
| 2722 | break; |
| 2723 | case MSR_IA32_VMX_VMCS_ENUM: |
Jan Kiszka | 5381417 | 2014-06-16 13:59:44 +0200 | [diff] [blame] | 2724 | *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2725 | break; |
| 2726 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2727 | *pdata = vmx_control_msr( |
| 2728 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2729 | vmx->nested.nested_vmx_secondary_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2730 | break; |
| 2731 | case MSR_IA32_VMX_EPT_VPID_CAP: |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2732 | /* Currently, no nested vpid support */ |
Wanpeng Li | 089d7b6 | 2015-10-13 09:18:37 -0700 | [diff] [blame] | 2733 | *pdata = vmx->nested.nested_vmx_ept_caps | |
| 2734 | ((u64)vmx->nested.nested_vmx_vpid_caps << 32); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2735 | break; |
| 2736 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2737 | return 1; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 2738 | } |
| 2739 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2740 | return 0; |
| 2741 | } |
| 2742 | |
| 2743 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2744 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2745 | * Returns 0 on success, non-0 otherwise. |
| 2746 | * Assumes vcpu_load() was already called. |
| 2747 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2748 | 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] | 2749 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2750 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2751 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2752 | switch (msr_info->index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2753 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2754 | case MSR_FS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2755 | msr_info->data = vmcs_readl(GUEST_FS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2756 | break; |
| 2757 | case MSR_GS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2758 | msr_info->data = vmcs_readl(GUEST_GS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2759 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2760 | case MSR_KERNEL_GS_BASE: |
| 2761 | vmx_load_host_state(to_vmx(vcpu)); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2762 | msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2763 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2764 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2765 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2766 | return kvm_get_msr_common(vcpu, msr_info); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2767 | case MSR_IA32_TSC: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2768 | msr_info->data = guest_read_tsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2769 | break; |
| 2770 | case MSR_IA32_SYSENTER_CS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2771 | msr_info->data = vmcs_read32(GUEST_SYSENTER_CS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2772 | break; |
| 2773 | case MSR_IA32_SYSENTER_EIP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2774 | msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2775 | break; |
| 2776 | case MSR_IA32_SYSENTER_ESP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2777 | msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2778 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2779 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2780 | if (!vmx_mpx_supported()) |
| 2781 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2782 | msr_info->data = vmcs_read64(GUEST_BNDCFGS); |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2783 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2784 | case MSR_IA32_FEATURE_CONTROL: |
| 2785 | if (!nested_vmx_allowed(vcpu)) |
| 2786 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2787 | msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2788 | break; |
| 2789 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2790 | if (!nested_vmx_allowed(vcpu)) |
| 2791 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2792 | return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2793 | case MSR_IA32_XSS: |
| 2794 | if (!vmx_xsaves_supported()) |
| 2795 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2796 | msr_info->data = vcpu->arch.ia32_xss; |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2797 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2798 | case MSR_TSC_AUX: |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2799 | if (!guest_cpuid_has_rdtscp(vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2800 | return 1; |
| 2801 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2802 | default: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2803 | msr = find_msr_entry(to_vmx(vcpu), msr_info->index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2804 | if (msr) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2805 | msr_info->data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2806 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2807 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2808 | return kvm_get_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2809 | } |
| 2810 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2811 | return 0; |
| 2812 | } |
| 2813 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2814 | static void vmx_leave_nested(struct kvm_vcpu *vcpu); |
| 2815 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2816 | /* |
| 2817 | * Writes msr value into into the appropriate "register". |
| 2818 | * Returns 0 on success, non-0 otherwise. |
| 2819 | * Assumes vcpu_load() was already called. |
| 2820 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2821 | 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] | 2822 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2823 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2824 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2825 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2826 | u32 msr_index = msr_info->index; |
| 2827 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2828 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2829 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2830 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2831 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2832 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 2833 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2834 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2835 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2836 | vmcs_writel(GUEST_FS_BASE, data); |
| 2837 | break; |
| 2838 | case MSR_GS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2839 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2840 | vmcs_writel(GUEST_GS_BASE, data); |
| 2841 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2842 | case MSR_KERNEL_GS_BASE: |
| 2843 | vmx_load_host_state(vmx); |
| 2844 | vmx->msr_guest_kernel_gs_base = data; |
| 2845 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2846 | #endif |
| 2847 | case MSR_IA32_SYSENTER_CS: |
| 2848 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 2849 | break; |
| 2850 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2851 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2852 | break; |
| 2853 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2854 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2855 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2856 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2857 | if (!vmx_mpx_supported()) |
| 2858 | return 1; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2859 | vmcs_write64(GUEST_BNDCFGS, data); |
| 2860 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2861 | case MSR_IA32_TSC: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2862 | kvm_write_tsc(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2863 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2864 | case MSR_IA32_CR_PAT: |
| 2865 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Amit | 4566654 | 2014-09-18 22:39:44 +0300 | [diff] [blame] | 2866 | if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data)) |
| 2867 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2868 | vmcs_write64(GUEST_IA32_PAT, data); |
| 2869 | vcpu->arch.pat = data; |
| 2870 | break; |
| 2871 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2872 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2873 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2874 | case MSR_IA32_TSC_ADJUST: |
| 2875 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2876 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2877 | case MSR_IA32_FEATURE_CONTROL: |
| 2878 | if (!nested_vmx_allowed(vcpu) || |
| 2879 | (to_vmx(vcpu)->nested.msr_ia32_feature_control & |
| 2880 | FEATURE_CONTROL_LOCKED && !msr_info->host_initiated)) |
| 2881 | return 1; |
| 2882 | vmx->nested.msr_ia32_feature_control = data; |
| 2883 | if (msr_info->host_initiated && data == 0) |
| 2884 | vmx_leave_nested(vcpu); |
| 2885 | break; |
| 2886 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2887 | return 1; /* they are read-only */ |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2888 | case MSR_IA32_XSS: |
| 2889 | if (!vmx_xsaves_supported()) |
| 2890 | return 1; |
| 2891 | /* |
| 2892 | * The only supported bit as of Skylake is bit 8, but |
| 2893 | * it is not supported on KVM. |
| 2894 | */ |
| 2895 | if (data != 0) |
| 2896 | return 1; |
| 2897 | vcpu->arch.ia32_xss = data; |
| 2898 | if (vcpu->arch.ia32_xss != host_xss) |
| 2899 | add_atomic_switch_msr(vmx, MSR_IA32_XSS, |
| 2900 | vcpu->arch.ia32_xss, host_xss); |
| 2901 | else |
| 2902 | clear_atomic_switch_msr(vmx, MSR_IA32_XSS); |
| 2903 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2904 | case MSR_TSC_AUX: |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2905 | if (!guest_cpuid_has_rdtscp(vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2906 | return 1; |
| 2907 | /* Check reserved bit, higher 32 bits should be zero */ |
| 2908 | if ((data >> 32) != 0) |
| 2909 | return 1; |
| 2910 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2911 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2912 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2913 | if (msr) { |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2914 | u64 old_msr_data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2915 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2916 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 2917 | preempt_disable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2918 | ret = kvm_set_shared_msr(msr->index, msr->data, |
| 2919 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2920 | preempt_enable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2921 | if (ret) |
| 2922 | msr->data = old_msr_data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2923 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2924 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2925 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2926 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2927 | } |
| 2928 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2929 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2930 | } |
| 2931 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2932 | 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] | 2933 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2934 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 2935 | switch (reg) { |
| 2936 | case VCPU_REGS_RSP: |
| 2937 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 2938 | break; |
| 2939 | case VCPU_REGS_RIP: |
| 2940 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 2941 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2942 | case VCPU_EXREG_PDPTR: |
| 2943 | if (enable_ept) |
| 2944 | ept_save_pdptrs(vcpu); |
| 2945 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2946 | default: |
| 2947 | break; |
| 2948 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2949 | } |
| 2950 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2951 | static __init int cpu_has_kvm_support(void) |
| 2952 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 2953 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2954 | } |
| 2955 | |
| 2956 | static __init int vmx_disabled_by_bios(void) |
| 2957 | { |
| 2958 | u64 msr; |
| 2959 | |
| 2960 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2961 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2962 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2963 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 2964 | && tboot_enabled()) |
| 2965 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2966 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2967 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2968 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2969 | && !tboot_enabled()) { |
| 2970 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2971 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2972 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2973 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2974 | /* launched w/o TXT and VMX disabled */ |
| 2975 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 2976 | && !tboot_enabled()) |
| 2977 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2978 | } |
| 2979 | |
| 2980 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2981 | } |
| 2982 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2983 | static void kvm_cpu_vmxon(u64 addr) |
| 2984 | { |
| 2985 | asm volatile (ASM_VMX_VMXON_RAX |
| 2986 | : : "a"(&addr), "m"(addr) |
| 2987 | : "memory", "cc"); |
| 2988 | } |
| 2989 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 2990 | static int hardware_enable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2991 | { |
| 2992 | int cpu = raw_smp_processor_id(); |
| 2993 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2994 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2995 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 2996 | if (cr4_read_shadow() & X86_CR4_VMXE) |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2997 | return -EBUSY; |
| 2998 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2999 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 3000 | INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu)); |
| 3001 | spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 3002 | |
| 3003 | /* |
| 3004 | * Now we can enable the vmclear operation in kdump |
| 3005 | * since the loaded_vmcss_on_cpu list on this cpu |
| 3006 | * has been initialized. |
| 3007 | * |
| 3008 | * Though the cpu is not in VMX operation now, there |
| 3009 | * is no problem to enable the vmclear operation |
| 3010 | * for the loaded_vmcss_on_cpu list is empty! |
| 3011 | */ |
| 3012 | crash_enable_local_vmclear(cpu); |
| 3013 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3014 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3015 | |
| 3016 | test_bits = FEATURE_CONTROL_LOCKED; |
| 3017 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 3018 | if (tboot_enabled()) |
| 3019 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 3020 | |
| 3021 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3022 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3023 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 3024 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3025 | cr4_set_bits(X86_CR4_VMXE); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3026 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3027 | if (vmm_exclusive) { |
| 3028 | kvm_cpu_vmxon(phys_addr); |
| 3029 | ept_sync_global(); |
| 3030 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3031 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 3032 | native_store_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 3033 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3034 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3035 | } |
| 3036 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3037 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3038 | { |
| 3039 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3040 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3041 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3042 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 3043 | loaded_vmcss_on_cpu_link) |
| 3044 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3045 | } |
| 3046 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3047 | |
| 3048 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 3049 | * tricks. |
| 3050 | */ |
| 3051 | static void kvm_cpu_vmxoff(void) |
| 3052 | { |
| 3053 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3054 | } |
| 3055 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3056 | static void hardware_disable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3057 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3058 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3059 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3060 | kvm_cpu_vmxoff(); |
| 3061 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3062 | cr4_clear_bits(X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3063 | } |
| 3064 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3065 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3066 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3067 | { |
| 3068 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3069 | u32 ctl = ctl_min | ctl_opt; |
| 3070 | |
| 3071 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3072 | |
| 3073 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 3074 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 3075 | |
| 3076 | /* Ensure minimum (required) set of control bits are supported. */ |
| 3077 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3078 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3079 | |
| 3080 | *result = ctl; |
| 3081 | return 0; |
| 3082 | } |
| 3083 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3084 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 3085 | { |
| 3086 | u32 vmx_msr_low, vmx_msr_high; |
| 3087 | |
| 3088 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3089 | return vmx_msr_high & ctl; |
| 3090 | } |
| 3091 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3092 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3093 | { |
| 3094 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3095 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3096 | u32 _pin_based_exec_control = 0; |
| 3097 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3098 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3099 | u32 _vmexit_control = 0; |
| 3100 | u32 _vmentry_control = 0; |
| 3101 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 3102 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3103 | #ifdef CONFIG_X86_64 |
| 3104 | CPU_BASED_CR8_LOAD_EXITING | |
| 3105 | CPU_BASED_CR8_STORE_EXITING | |
| 3106 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3107 | CPU_BASED_CR3_LOAD_EXITING | |
| 3108 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3109 | CPU_BASED_USE_IO_BITMAPS | |
| 3110 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3111 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 3112 | CPU_BASED_MWAIT_EXITING | |
| 3113 | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 3114 | CPU_BASED_INVLPG_EXITING | |
| 3115 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3116 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3117 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3118 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3119 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3120 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 3121 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3122 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3123 | #ifdef CONFIG_X86_64 |
| 3124 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3125 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 3126 | ~CPU_BASED_CR8_STORE_EXITING; |
| 3127 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3128 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3129 | min2 = 0; |
| 3130 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3131 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3132 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3133 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3134 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3135 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3136 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3137 | SECONDARY_EXEC_RDTSCP | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3138 | SECONDARY_EXEC_ENABLE_INVPCID | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3139 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 3140 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3141 | SECONDARY_EXEC_SHADOW_VMCS | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 3142 | SECONDARY_EXEC_XSAVES | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 3143 | SECONDARY_EXEC_ENABLE_PML | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame^] | 3144 | SECONDARY_EXEC_PCOMMIT | |
| 3145 | SECONDARY_EXEC_TSC_SCALING; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3146 | if (adjust_vmx_controls(min2, opt2, |
| 3147 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3148 | &_cpu_based_2nd_exec_control) < 0) |
| 3149 | return -EIO; |
| 3150 | } |
| 3151 | #ifndef CONFIG_X86_64 |
| 3152 | if (!(_cpu_based_2nd_exec_control & |
| 3153 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 3154 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3155 | #endif |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3156 | |
| 3157 | if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3158 | _cpu_based_2nd_exec_control &= ~( |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3159 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3160 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 3161 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3162 | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3163 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3164 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 3165 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 3166 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3167 | CPU_BASED_CR3_STORE_EXITING | |
| 3168 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3169 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 3170 | vmx_capability.ept, vmx_capability.vpid); |
| 3171 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3172 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 3173 | min = VM_EXIT_SAVE_DEBUG_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3174 | #ifdef CONFIG_X86_64 |
| 3175 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 3176 | #endif |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 3177 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3178 | VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3179 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 3180 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3181 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3182 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3183 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
| 3184 | opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR; |
| 3185 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 3186 | &_pin_based_exec_control) < 0) |
| 3187 | return -EIO; |
| 3188 | |
| 3189 | if (!(_cpu_based_2nd_exec_control & |
| 3190 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) || |
| 3191 | !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT)) |
| 3192 | _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR; |
| 3193 | |
Paolo Bonzini | c845f9c | 2014-02-21 10:55:44 +0100 | [diff] [blame] | 3194 | min = VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3195 | opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3196 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 3197 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3198 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3199 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3200 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3201 | |
| 3202 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 3203 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3204 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3205 | |
| 3206 | #ifdef CONFIG_X86_64 |
| 3207 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 3208 | if (vmx_msr_high & (1u<<16)) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3209 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3210 | #endif |
| 3211 | |
| 3212 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 3213 | if (((vmx_msr_high >> 18) & 15) != 6) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3214 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3215 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3216 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
| 3217 | vmcs_conf->order = get_order(vmcs_config.size); |
| 3218 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3219 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3220 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 3221 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3222 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3223 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 3224 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3225 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3226 | cpu_has_load_ia32_efer = |
| 3227 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3228 | VM_ENTRY_LOAD_IA32_EFER) |
| 3229 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3230 | VM_EXIT_LOAD_IA32_EFER); |
| 3231 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3232 | cpu_has_load_perf_global_ctrl = |
| 3233 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3234 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 3235 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3236 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 3237 | |
| 3238 | /* |
| 3239 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
| 3240 | * but due to arrata below it can't be used. Workaround is to use |
| 3241 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 3242 | * |
| 3243 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 3244 | * |
| 3245 | * AAK155 (model 26) |
| 3246 | * AAP115 (model 30) |
| 3247 | * AAT100 (model 37) |
| 3248 | * BC86,AAY89,BD102 (model 44) |
| 3249 | * BA97 (model 46) |
| 3250 | * |
| 3251 | */ |
| 3252 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 3253 | switch (boot_cpu_data.x86_model) { |
| 3254 | case 26: |
| 3255 | case 30: |
| 3256 | case 37: |
| 3257 | case 44: |
| 3258 | case 46: |
| 3259 | cpu_has_load_perf_global_ctrl = false; |
| 3260 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 3261 | "does not work properly. Using workaround\n"); |
| 3262 | break; |
| 3263 | default: |
| 3264 | break; |
| 3265 | } |
| 3266 | } |
| 3267 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3268 | if (cpu_has_xsaves) |
| 3269 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 3270 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3271 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3272 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3273 | |
| 3274 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 3275 | { |
| 3276 | int node = cpu_to_node(cpu); |
| 3277 | struct page *pages; |
| 3278 | struct vmcs *vmcs; |
| 3279 | |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 3280 | pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3281 | if (!pages) |
| 3282 | return NULL; |
| 3283 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3284 | memset(vmcs, 0, vmcs_config.size); |
| 3285 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3286 | return vmcs; |
| 3287 | } |
| 3288 | |
| 3289 | static struct vmcs *alloc_vmcs(void) |
| 3290 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 3291 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3292 | } |
| 3293 | |
| 3294 | static void free_vmcs(struct vmcs *vmcs) |
| 3295 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3296 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3297 | } |
| 3298 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3299 | /* |
| 3300 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 3301 | */ |
| 3302 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 3303 | { |
| 3304 | if (!loaded_vmcs->vmcs) |
| 3305 | return; |
| 3306 | loaded_vmcs_clear(loaded_vmcs); |
| 3307 | free_vmcs(loaded_vmcs->vmcs); |
| 3308 | loaded_vmcs->vmcs = NULL; |
| 3309 | } |
| 3310 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 3311 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3312 | { |
| 3313 | int cpu; |
| 3314 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3315 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3316 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3317 | per_cpu(vmxarea, cpu) = NULL; |
| 3318 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3319 | } |
| 3320 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3321 | static void init_vmcs_shadow_fields(void) |
| 3322 | { |
| 3323 | int i, j; |
| 3324 | |
| 3325 | /* No checks for read only fields yet */ |
| 3326 | |
| 3327 | for (i = j = 0; i < max_shadow_read_write_fields; i++) { |
| 3328 | switch (shadow_read_write_fields[i]) { |
| 3329 | case GUEST_BNDCFGS: |
| 3330 | if (!vmx_mpx_supported()) |
| 3331 | continue; |
| 3332 | break; |
| 3333 | default: |
| 3334 | break; |
| 3335 | } |
| 3336 | |
| 3337 | if (j < i) |
| 3338 | shadow_read_write_fields[j] = |
| 3339 | shadow_read_write_fields[i]; |
| 3340 | j++; |
| 3341 | } |
| 3342 | max_shadow_read_write_fields = j; |
| 3343 | |
| 3344 | /* shadowed fields guest access without vmexit */ |
| 3345 | for (i = 0; i < max_shadow_read_write_fields; i++) { |
| 3346 | clear_bit(shadow_read_write_fields[i], |
| 3347 | vmx_vmwrite_bitmap); |
| 3348 | clear_bit(shadow_read_write_fields[i], |
| 3349 | vmx_vmread_bitmap); |
| 3350 | } |
| 3351 | for (i = 0; i < max_shadow_read_only_fields; i++) |
| 3352 | clear_bit(shadow_read_only_fields[i], |
| 3353 | vmx_vmread_bitmap); |
| 3354 | } |
| 3355 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3356 | static __init int alloc_kvm_area(void) |
| 3357 | { |
| 3358 | int cpu; |
| 3359 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3360 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3361 | struct vmcs *vmcs; |
| 3362 | |
| 3363 | vmcs = alloc_vmcs_cpu(cpu); |
| 3364 | if (!vmcs) { |
| 3365 | free_kvm_area(); |
| 3366 | return -ENOMEM; |
| 3367 | } |
| 3368 | |
| 3369 | per_cpu(vmxarea, cpu) = vmcs; |
| 3370 | } |
| 3371 | return 0; |
| 3372 | } |
| 3373 | |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3374 | static bool emulation_required(struct kvm_vcpu *vcpu) |
| 3375 | { |
| 3376 | return emulate_invalid_guest_state && !guest_state_valid(vcpu); |
| 3377 | } |
| 3378 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3379 | static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg, |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3380 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3381 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3382 | if (!emulate_invalid_guest_state) { |
| 3383 | /* |
| 3384 | * CS and SS RPL should be equal during guest entry according |
| 3385 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 3386 | * is in the middle of the transition from real mode to |
| 3387 | * protected mode it is safe to assume that RPL 0 is a good |
| 3388 | * default value. |
| 3389 | */ |
| 3390 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3391 | save->selector &= ~SEGMENT_RPL_MASK; |
| 3392 | save->dpl = save->selector & SEGMENT_RPL_MASK; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3393 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3394 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3395 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3396 | } |
| 3397 | |
| 3398 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 3399 | { |
| 3400 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3401 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3402 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3403 | /* |
| 3404 | * Update real mode segment cache. It may be not up-to-date if sement |
| 3405 | * register was written while vcpu was in a guest mode. |
| 3406 | */ |
| 3407 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3408 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3409 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3410 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 3411 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3412 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 3413 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3414 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3415 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3416 | vmx_segment_cache_clear(vmx); |
| 3417 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3418 | 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] | 3419 | |
| 3420 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3421 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 3422 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3423 | vmcs_writel(GUEST_RFLAGS, flags); |
| 3424 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3425 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 3426 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3427 | |
| 3428 | update_exception_bitmap(vcpu); |
| 3429 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3430 | fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3431 | fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3432 | fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3433 | fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3434 | fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 3435 | 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] | 3436 | } |
| 3437 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3438 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3439 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3440 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3441 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3442 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3443 | var.dpl = 0x3; |
| 3444 | if (seg == VCPU_SREG_CS) |
| 3445 | var.type = 0x3; |
| 3446 | |
| 3447 | if (!emulate_invalid_guest_state) { |
| 3448 | var.selector = var.base >> 4; |
| 3449 | var.base = var.base & 0xffff0; |
| 3450 | var.limit = 0xffff; |
| 3451 | var.g = 0; |
| 3452 | var.db = 0; |
| 3453 | var.present = 1; |
| 3454 | var.s = 1; |
| 3455 | var.l = 0; |
| 3456 | var.unusable = 0; |
| 3457 | var.type = 0x3; |
| 3458 | var.avl = 0; |
| 3459 | if (save->base & 0xf) |
| 3460 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 3461 | "paragraph aligned when entering " |
| 3462 | "protected mode (seg=%d)", seg); |
| 3463 | } |
| 3464 | |
| 3465 | vmcs_write16(sf->selector, var.selector); |
| 3466 | vmcs_write32(sf->base, var.base); |
| 3467 | vmcs_write32(sf->limit, var.limit); |
| 3468 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3469 | } |
| 3470 | |
| 3471 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 3472 | { |
| 3473 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3474 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3475 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3476 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 3477 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3478 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3479 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3480 | 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] | 3481 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3482 | 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] | 3483 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3484 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3485 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3486 | /* |
| 3487 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3488 | * vcpu. Warn the user that an update is overdue. |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3489 | */ |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3490 | if (!vcpu->kvm->arch.tss_addr) |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3491 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 3492 | "called before entering vcpu\n"); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3493 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3494 | vmx_segment_cache_clear(vmx); |
| 3495 | |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3496 | vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3497 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3498 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3499 | |
| 3500 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3501 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3502 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 3503 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3504 | |
| 3505 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3506 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3507 | update_exception_bitmap(vcpu); |
| 3508 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3509 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3510 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3511 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3512 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3513 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 3514 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3515 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 3516 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3517 | } |
| 3518 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3519 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 3520 | { |
| 3521 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3522 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 3523 | |
| 3524 | if (!msr) |
| 3525 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3526 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3527 | /* |
| 3528 | * Force kernel_gs_base reloading before EFER changes, as control |
| 3529 | * of this msr depends on is_long_mode(). |
| 3530 | */ |
| 3531 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3532 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3533 | if (efer & EFER_LMA) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3534 | vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3535 | msr->data = efer; |
| 3536 | } else { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3537 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3538 | |
| 3539 | msr->data = efer & ~EFER_LME; |
| 3540 | } |
| 3541 | setup_msrs(vmx); |
| 3542 | } |
| 3543 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3544 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3545 | |
| 3546 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 3547 | { |
| 3548 | u32 guest_tr_ar; |
| 3549 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3550 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 3551 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3552 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3553 | 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] | 3554 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 3555 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3556 | vmcs_write32(GUEST_TR_AR_BYTES, |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3557 | (guest_tr_ar & ~VMX_AR_TYPE_MASK) |
| 3558 | | VMX_AR_TYPE_BUSY_64_TSS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3559 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3560 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3561 | } |
| 3562 | |
| 3563 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 3564 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3565 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3566 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3567 | } |
| 3568 | |
| 3569 | #endif |
| 3570 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 3571 | static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3572 | { |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 3573 | vpid_sync_context(vpid); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3574 | if (enable_ept) { |
| 3575 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3576 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 3577 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3578 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3579 | } |
| 3580 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 3581 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 3582 | { |
| 3583 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid); |
| 3584 | } |
| 3585 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 3586 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 3587 | { |
| 3588 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 3589 | |
| 3590 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 3591 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 3592 | } |
| 3593 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 3594 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 3595 | { |
| 3596 | if (enable_ept && is_paging(vcpu)) |
| 3597 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 3598 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 3599 | } |
| 3600 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 3601 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3602 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3603 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 3604 | |
| 3605 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 3606 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3607 | } |
| 3608 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3609 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 3610 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3611 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3612 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3613 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 3614 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 3615 | return; |
| 3616 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3617 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3618 | vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]); |
| 3619 | vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]); |
| 3620 | vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]); |
| 3621 | vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3622 | } |
| 3623 | } |
| 3624 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3625 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 3626 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3627 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3628 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3629 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3630 | mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 3631 | mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 3632 | mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 3633 | mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3634 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3635 | |
| 3636 | __set_bit(VCPU_EXREG_PDPTR, |
| 3637 | (unsigned long *)&vcpu->arch.regs_avail); |
| 3638 | __set_bit(VCPU_EXREG_PDPTR, |
| 3639 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3640 | } |
| 3641 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3642 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3643 | |
| 3644 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 3645 | unsigned long cr0, |
| 3646 | struct kvm_vcpu *vcpu) |
| 3647 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 3648 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 3649 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3650 | if (!(cr0 & X86_CR0_PG)) { |
| 3651 | /* From paging/starting to nonpaging */ |
| 3652 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3653 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3654 | (CPU_BASED_CR3_LOAD_EXITING | |
| 3655 | CPU_BASED_CR3_STORE_EXITING)); |
| 3656 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3657 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3658 | } else if (!is_paging(vcpu)) { |
| 3659 | /* From nonpaging to paging */ |
| 3660 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3661 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3662 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3663 | CPU_BASED_CR3_STORE_EXITING)); |
| 3664 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3665 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3666 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 3667 | |
| 3668 | if (!(cr0 & X86_CR0_WP)) |
| 3669 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3670 | } |
| 3671 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3672 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 3673 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3674 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3675 | unsigned long hw_cr0; |
| 3676 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3677 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3678 | if (enable_unrestricted_guest) |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3679 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3680 | else { |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3681 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3682 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3683 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
| 3684 | enter_pmode(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3685 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3686 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
| 3687 | enter_rmode(vcpu); |
| 3688 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3689 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3690 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3691 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3692 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3693 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3694 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3695 | exit_lmode(vcpu); |
| 3696 | } |
| 3697 | #endif |
| 3698 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3699 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3700 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 3701 | |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3702 | if (!vcpu->fpu_active) |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 3703 | hw_cr0 |= X86_CR0_TS | X86_CR0_MP; |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3704 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3705 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3706 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3707 | vcpu->arch.cr0 = cr0; |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3708 | |
| 3709 | /* depends on vcpu->arch.cr0 to be set to a new value */ |
| 3710 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3711 | } |
| 3712 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3713 | static u64 construct_eptp(unsigned long root_hpa) |
| 3714 | { |
| 3715 | u64 eptp; |
| 3716 | |
| 3717 | /* TODO write the value reading from MSR */ |
| 3718 | eptp = VMX_EPT_DEFAULT_MT | |
| 3719 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
Xudong Hao | b38f993 | 2012-05-28 19:33:36 +0800 | [diff] [blame] | 3720 | if (enable_ept_ad_bits) |
| 3721 | eptp |= VMX_EPT_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3722 | eptp |= (root_hpa & PAGE_MASK); |
| 3723 | |
| 3724 | return eptp; |
| 3725 | } |
| 3726 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3727 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 3728 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3729 | unsigned long guest_cr3; |
| 3730 | u64 eptp; |
| 3731 | |
| 3732 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3733 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3734 | eptp = construct_eptp(cr3); |
| 3735 | vmcs_write64(EPT_POINTER, eptp); |
Jan Kiszka | 59ab5a8 | 2013-08-08 16:26:29 +0200 | [diff] [blame] | 3736 | if (is_paging(vcpu) || is_guest_mode(vcpu)) |
| 3737 | guest_cr3 = kvm_read_cr3(vcpu); |
| 3738 | else |
| 3739 | guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 3740 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3741 | } |
| 3742 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3743 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3744 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3745 | } |
| 3746 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3747 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3748 | { |
Ben Serebrin | 085e68e | 2015-04-16 11:58:05 -0700 | [diff] [blame] | 3749 | /* |
| 3750 | * Pass through host's Machine Check Enable value to hw_cr4, which |
| 3751 | * is in force while we are in guest mode. Do not let guests control |
| 3752 | * this bit, even if host CR4.MCE == 0. |
| 3753 | */ |
| 3754 | unsigned long hw_cr4 = |
| 3755 | (cr4_read_shadow() & X86_CR4_MCE) | |
| 3756 | (cr4 & ~X86_CR4_MCE) | |
| 3757 | (to_vmx(vcpu)->rmode.vm86_active ? |
| 3758 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3759 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3760 | if (cr4 & X86_CR4_VMXE) { |
| 3761 | /* |
| 3762 | * To use VMXON (and later other VMX instructions), a guest |
| 3763 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 3764 | * So basically the check on whether to allow nested VMX |
| 3765 | * is here. |
| 3766 | */ |
| 3767 | if (!nested_vmx_allowed(vcpu)) |
| 3768 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 3769 | } |
| 3770 | if (to_vmx(vcpu)->nested.vmxon && |
| 3771 | ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3772 | return 1; |
| 3773 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3774 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3775 | if (enable_ept) { |
| 3776 | if (!is_paging(vcpu)) { |
| 3777 | hw_cr4 &= ~X86_CR4_PAE; |
| 3778 | hw_cr4 |= X86_CR4_PSE; |
| 3779 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 3780 | hw_cr4 &= ~X86_CR4_PAE; |
| 3781 | } |
| 3782 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3783 | |
Radim Krčmář | 656ec4a | 2015-11-02 22:20:00 +0100 | [diff] [blame] | 3784 | if (!enable_unrestricted_guest && !is_paging(vcpu)) |
| 3785 | /* |
| 3786 | * SMEP/SMAP is disabled if CPU is in non-paging mode in |
| 3787 | * hardware. However KVM always uses paging mode without |
| 3788 | * unrestricted guest. |
| 3789 | * To emulate this behavior, SMEP/SMAP needs to be manually |
| 3790 | * disabled when guest switches to non-paging mode. |
| 3791 | */ |
| 3792 | hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP); |
| 3793 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3794 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 3795 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3796 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3797 | } |
| 3798 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3799 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 3800 | struct kvm_segment *var, int seg) |
| 3801 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3802 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3803 | u32 ar; |
| 3804 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 3805 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3806 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3807 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3808 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3809 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 3810 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3811 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3812 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3813 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3814 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3815 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 3816 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3817 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3818 | var->unusable = (ar >> 16) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3819 | var->type = ar & 15; |
| 3820 | var->s = (ar >> 4) & 1; |
| 3821 | var->dpl = (ar >> 5) & 3; |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3822 | /* |
| 3823 | * Some userspaces do not preserve unusable property. Since usable |
| 3824 | * segment has to be present according to VMX spec we can use present |
| 3825 | * property to amend userspace bug by making unusable segment always |
| 3826 | * nonpresent. vmx_segment_access_rights() already marks nonpresent |
| 3827 | * segment as unusable. |
| 3828 | */ |
| 3829 | var->present = !var->unusable; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3830 | var->avl = (ar >> 12) & 1; |
| 3831 | var->l = (ar >> 13) & 1; |
| 3832 | var->db = (ar >> 14) & 1; |
| 3833 | var->g = (ar >> 15) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3834 | } |
| 3835 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3836 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 3837 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3838 | struct kvm_segment s; |
| 3839 | |
| 3840 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 3841 | vmx_get_segment(vcpu, &s, seg); |
| 3842 | return s.base; |
| 3843 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3844 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3845 | } |
| 3846 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3847 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3848 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3849 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3850 | |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3851 | if (unlikely(vmx->rmode.vm86_active)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3852 | return 0; |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3853 | else { |
| 3854 | int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3855 | return VMX_AR_DPL(ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3856 | } |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3857 | } |
| 3858 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3859 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3860 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3861 | u32 ar; |
| 3862 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 3863 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3864 | ar = 1 << 16; |
| 3865 | else { |
| 3866 | ar = var->type & 15; |
| 3867 | ar |= (var->s & 1) << 4; |
| 3868 | ar |= (var->dpl & 3) << 5; |
| 3869 | ar |= (var->present & 1) << 7; |
| 3870 | ar |= (var->avl & 1) << 12; |
| 3871 | ar |= (var->l & 1) << 13; |
| 3872 | ar |= (var->db & 1) << 14; |
| 3873 | ar |= (var->g & 1) << 15; |
| 3874 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3875 | |
| 3876 | return ar; |
| 3877 | } |
| 3878 | |
| 3879 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 3880 | struct kvm_segment *var, int seg) |
| 3881 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3882 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3883 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3884 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3885 | vmx_segment_cache_clear(vmx); |
| 3886 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3887 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 3888 | vmx->rmode.segs[seg] = *var; |
| 3889 | if (seg == VCPU_SREG_TR) |
| 3890 | vmcs_write16(sf->selector, var->selector); |
| 3891 | else if (var->s) |
| 3892 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3893 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3894 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3895 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3896 | vmcs_writel(sf->base, var->base); |
| 3897 | vmcs_write32(sf->limit, var->limit); |
| 3898 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3899 | |
| 3900 | /* |
| 3901 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 3902 | * qemu binaries. |
| 3903 | * IA32 arch specifies that at the time of processor reset the |
| 3904 | * "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] | 3905 | * 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] | 3906 | * state vmexit when "unrestricted guest" mode is turned on. |
| 3907 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 3908 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 3909 | * kvm hack. |
| 3910 | */ |
| 3911 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3912 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3913 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3914 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3915 | |
| 3916 | out: |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 3917 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3918 | } |
| 3919 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3920 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 3921 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3922 | 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] | 3923 | |
| 3924 | *db = (ar >> 14) & 1; |
| 3925 | *l = (ar >> 13) & 1; |
| 3926 | } |
| 3927 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3928 | 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] | 3929 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3930 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 3931 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3932 | } |
| 3933 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3934 | 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] | 3935 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3936 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 3937 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3938 | } |
| 3939 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3940 | 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] | 3941 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3942 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 3943 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3944 | } |
| 3945 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3946 | 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] | 3947 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3948 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 3949 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3950 | } |
| 3951 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3952 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3953 | { |
| 3954 | struct kvm_segment var; |
| 3955 | u32 ar; |
| 3956 | |
| 3957 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3958 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 3959 | if (seg == VCPU_SREG_CS) |
| 3960 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3961 | ar = vmx_segment_access_rights(&var); |
| 3962 | |
| 3963 | if (var.base != (var.selector << 4)) |
| 3964 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 3965 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3966 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3967 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3968 | return false; |
| 3969 | |
| 3970 | return true; |
| 3971 | } |
| 3972 | |
| 3973 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 3974 | { |
| 3975 | struct kvm_segment cs; |
| 3976 | unsigned int cs_rpl; |
| 3977 | |
| 3978 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3979 | cs_rpl = cs.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3980 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3981 | if (cs.unusable) |
| 3982 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3983 | 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] | 3984 | return false; |
| 3985 | if (!cs.s) |
| 3986 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3987 | if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3988 | if (cs.dpl > cs_rpl) |
| 3989 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3990 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3991 | if (cs.dpl != cs_rpl) |
| 3992 | return false; |
| 3993 | } |
| 3994 | if (!cs.present) |
| 3995 | return false; |
| 3996 | |
| 3997 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 3998 | return true; |
| 3999 | } |
| 4000 | |
| 4001 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 4002 | { |
| 4003 | struct kvm_segment ss; |
| 4004 | unsigned int ss_rpl; |
| 4005 | |
| 4006 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4007 | ss_rpl = ss.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4008 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4009 | if (ss.unusable) |
| 4010 | return true; |
| 4011 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4012 | return false; |
| 4013 | if (!ss.s) |
| 4014 | return false; |
| 4015 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 4016 | return false; |
| 4017 | if (!ss.present) |
| 4018 | return false; |
| 4019 | |
| 4020 | return true; |
| 4021 | } |
| 4022 | |
| 4023 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4024 | { |
| 4025 | struct kvm_segment var; |
| 4026 | unsigned int rpl; |
| 4027 | |
| 4028 | vmx_get_segment(vcpu, &var, seg); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4029 | rpl = var.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4030 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4031 | if (var.unusable) |
| 4032 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4033 | if (!var.s) |
| 4034 | return false; |
| 4035 | if (!var.present) |
| 4036 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4037 | 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] | 4038 | if (var.dpl < rpl) /* DPL < RPL */ |
| 4039 | return false; |
| 4040 | } |
| 4041 | |
| 4042 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 4043 | * rights flags |
| 4044 | */ |
| 4045 | return true; |
| 4046 | } |
| 4047 | |
| 4048 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 4049 | { |
| 4050 | struct kvm_segment tr; |
| 4051 | |
| 4052 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 4053 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4054 | if (tr.unusable) |
| 4055 | return false; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4056 | if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4057 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4058 | 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] | 4059 | return false; |
| 4060 | if (!tr.present) |
| 4061 | return false; |
| 4062 | |
| 4063 | return true; |
| 4064 | } |
| 4065 | |
| 4066 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 4067 | { |
| 4068 | struct kvm_segment ldtr; |
| 4069 | |
| 4070 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 4071 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4072 | if (ldtr.unusable) |
| 4073 | return true; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4074 | if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4075 | return false; |
| 4076 | if (ldtr.type != 2) |
| 4077 | return false; |
| 4078 | if (!ldtr.present) |
| 4079 | return false; |
| 4080 | |
| 4081 | return true; |
| 4082 | } |
| 4083 | |
| 4084 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 4085 | { |
| 4086 | struct kvm_segment cs, ss; |
| 4087 | |
| 4088 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4089 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 4090 | |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4091 | return ((cs.selector & SEGMENT_RPL_MASK) == |
| 4092 | (ss.selector & SEGMENT_RPL_MASK)); |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4093 | } |
| 4094 | |
| 4095 | /* |
| 4096 | * Check if guest state is valid. Returns true if valid, false if |
| 4097 | * not. |
| 4098 | * We assume that registers are always usable |
| 4099 | */ |
| 4100 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 4101 | { |
Gleb Natapov | c5e97c8 | 2013-01-21 15:36:43 +0200 | [diff] [blame] | 4102 | if (enable_unrestricted_guest) |
| 4103 | return true; |
| 4104 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4105 | /* real mode guest state checks */ |
Gleb Natapov | f13882d | 2013-04-14 16:07:37 +0300 | [diff] [blame] | 4106 | if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4107 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 4108 | return false; |
| 4109 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 4110 | return false; |
| 4111 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4112 | return false; |
| 4113 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4114 | return false; |
| 4115 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4116 | return false; |
| 4117 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4118 | return false; |
| 4119 | } else { |
| 4120 | /* protected mode guest state checks */ |
| 4121 | if (!cs_ss_rpl_check(vcpu)) |
| 4122 | return false; |
| 4123 | if (!code_segment_valid(vcpu)) |
| 4124 | return false; |
| 4125 | if (!stack_segment_valid(vcpu)) |
| 4126 | return false; |
| 4127 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4128 | return false; |
| 4129 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4130 | return false; |
| 4131 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4132 | return false; |
| 4133 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4134 | return false; |
| 4135 | if (!tr_valid(vcpu)) |
| 4136 | return false; |
| 4137 | if (!ldtr_valid(vcpu)) |
| 4138 | return false; |
| 4139 | } |
| 4140 | /* TODO: |
| 4141 | * - Add checks on RIP |
| 4142 | * - Add checks on RFLAGS |
| 4143 | */ |
| 4144 | |
| 4145 | return true; |
| 4146 | } |
| 4147 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 4148 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4149 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4150 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4151 | u16 data = 0; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4152 | int idx, r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4153 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4154 | idx = srcu_read_lock(&kvm->srcu); |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4155 | fn = kvm->arch.tss_addr >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4156 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4157 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4158 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4159 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 4160 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 4161 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4162 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4163 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4164 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 4165 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4166 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4167 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4168 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4169 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4170 | data = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4171 | r = kvm_write_guest_page(kvm, fn, &data, |
| 4172 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 4173 | sizeof(u8)); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4174 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4175 | srcu_read_unlock(&kvm->srcu, idx); |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4176 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4177 | } |
| 4178 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4179 | static int init_rmode_identity_map(struct kvm *kvm) |
| 4180 | { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4181 | int i, idx, r = 0; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4182 | pfn_t identity_map_pfn; |
| 4183 | u32 tmp; |
| 4184 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4185 | if (!enable_ept) |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4186 | return 0; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4187 | |
| 4188 | /* Protect kvm->arch.ept_identity_pagetable_done. */ |
| 4189 | mutex_lock(&kvm->slots_lock); |
| 4190 | |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4191 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4192 | goto out2; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4193 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4194 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4195 | |
| 4196 | r = alloc_identity_pagetable(kvm); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4197 | if (r < 0) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4198 | goto out2; |
| 4199 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4200 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4201 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 4202 | if (r < 0) |
| 4203 | goto out; |
| 4204 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 4205 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 4206 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 4207 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 4208 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 4209 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 4210 | if (r < 0) |
| 4211 | goto out; |
| 4212 | } |
| 4213 | kvm->arch.ept_identity_pagetable_done = true; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4214 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4215 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4216 | srcu_read_unlock(&kvm->srcu, idx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4217 | |
| 4218 | out2: |
| 4219 | mutex_unlock(&kvm->slots_lock); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4220 | return r; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4221 | } |
| 4222 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4223 | static void seg_setup(int seg) |
| 4224 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4225 | 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] | 4226 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4227 | |
| 4228 | vmcs_write16(sf->selector, 0); |
| 4229 | vmcs_writel(sf->base, 0); |
| 4230 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 4231 | ar = 0x93; |
| 4232 | if (seg == VCPU_SREG_CS) |
| 4233 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4234 | |
| 4235 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4236 | } |
| 4237 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4238 | static int alloc_apic_access_page(struct kvm *kvm) |
| 4239 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4240 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4241 | int r = 0; |
| 4242 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4243 | mutex_lock(&kvm->slots_lock); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4244 | if (kvm->arch.apic_access_page_done) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4245 | goto out; |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 4246 | r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, |
| 4247 | APIC_DEFAULT_PHYS_BASE, PAGE_SIZE); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4248 | if (r) |
| 4249 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4250 | |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4251 | page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4252 | if (is_error_page(page)) { |
| 4253 | r = -EFAULT; |
| 4254 | goto out; |
| 4255 | } |
| 4256 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4257 | /* |
| 4258 | * Do not pin the page in memory, so that memory hot-unplug |
| 4259 | * is able to migrate it. |
| 4260 | */ |
| 4261 | put_page(page); |
| 4262 | kvm->arch.apic_access_page_done = true; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4263 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4264 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4265 | return r; |
| 4266 | } |
| 4267 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4268 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 4269 | { |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4270 | /* Called with kvm->slots_lock held. */ |
| 4271 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4272 | int r = 0; |
| 4273 | |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4274 | BUG_ON(kvm->arch.ept_identity_pagetable_done); |
| 4275 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 4276 | r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, |
| 4277 | kvm->arch.ept_identity_map_addr, PAGE_SIZE); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4278 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4279 | return r; |
| 4280 | } |
| 4281 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4282 | static int allocate_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4283 | { |
| 4284 | int vpid; |
| 4285 | |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 4286 | if (!enable_vpid) |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4287 | return 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4288 | spin_lock(&vmx_vpid_lock); |
| 4289 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4290 | if (vpid < VMX_NR_VPIDS) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4291 | __set_bit(vpid, vmx_vpid_bitmap); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4292 | else |
| 4293 | vpid = 0; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4294 | spin_unlock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4295 | return vpid; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4296 | } |
| 4297 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4298 | static void free_vpid(int vpid) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4299 | { |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4300 | if (!enable_vpid || vpid == 0) |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4301 | return; |
| 4302 | spin_lock(&vmx_vpid_lock); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 4303 | __clear_bit(vpid, vmx_vpid_bitmap); |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4304 | spin_unlock(&vmx_vpid_lock); |
| 4305 | } |
| 4306 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4307 | #define MSR_TYPE_R 1 |
| 4308 | #define MSR_TYPE_W 2 |
| 4309 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4310 | u32 msr, int type) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4311 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4312 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4313 | |
| 4314 | if (!cpu_has_vmx_msr_bitmap()) |
| 4315 | return; |
| 4316 | |
| 4317 | /* |
| 4318 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4319 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4320 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4321 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4322 | if (msr <= 0x1fff) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4323 | if (type & MSR_TYPE_R) |
| 4324 | /* read-low */ |
| 4325 | __clear_bit(msr, msr_bitmap + 0x000 / f); |
| 4326 | |
| 4327 | if (type & MSR_TYPE_W) |
| 4328 | /* write-low */ |
| 4329 | __clear_bit(msr, msr_bitmap + 0x800 / f); |
| 4330 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4331 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4332 | msr &= 0x1fff; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4333 | if (type & MSR_TYPE_R) |
| 4334 | /* read-high */ |
| 4335 | __clear_bit(msr, msr_bitmap + 0x400 / f); |
| 4336 | |
| 4337 | if (type & MSR_TYPE_W) |
| 4338 | /* write-high */ |
| 4339 | __clear_bit(msr, msr_bitmap + 0xc00 / f); |
| 4340 | |
| 4341 | } |
| 4342 | } |
| 4343 | |
| 4344 | static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4345 | u32 msr, int type) |
| 4346 | { |
| 4347 | int f = sizeof(unsigned long); |
| 4348 | |
| 4349 | if (!cpu_has_vmx_msr_bitmap()) |
| 4350 | return; |
| 4351 | |
| 4352 | /* |
| 4353 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4354 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4355 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4356 | */ |
| 4357 | if (msr <= 0x1fff) { |
| 4358 | if (type & MSR_TYPE_R) |
| 4359 | /* read-low */ |
| 4360 | __set_bit(msr, msr_bitmap + 0x000 / f); |
| 4361 | |
| 4362 | if (type & MSR_TYPE_W) |
| 4363 | /* write-low */ |
| 4364 | __set_bit(msr, msr_bitmap + 0x800 / f); |
| 4365 | |
| 4366 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4367 | msr &= 0x1fff; |
| 4368 | if (type & MSR_TYPE_R) |
| 4369 | /* read-high */ |
| 4370 | __set_bit(msr, msr_bitmap + 0x400 / f); |
| 4371 | |
| 4372 | if (type & MSR_TYPE_W) |
| 4373 | /* write-high */ |
| 4374 | __set_bit(msr, msr_bitmap + 0xc00 / f); |
| 4375 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4376 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4377 | } |
| 4378 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 4379 | /* |
| 4380 | * If a msr is allowed by L0, we should check whether it is allowed by L1. |
| 4381 | * The corresponding bit will be cleared unless both of L0 and L1 allow it. |
| 4382 | */ |
| 4383 | static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1, |
| 4384 | unsigned long *msr_bitmap_nested, |
| 4385 | u32 msr, int type) |
| 4386 | { |
| 4387 | int f = sizeof(unsigned long); |
| 4388 | |
| 4389 | if (!cpu_has_vmx_msr_bitmap()) { |
| 4390 | WARN_ON(1); |
| 4391 | return; |
| 4392 | } |
| 4393 | |
| 4394 | /* |
| 4395 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4396 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4397 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4398 | */ |
| 4399 | if (msr <= 0x1fff) { |
| 4400 | if (type & MSR_TYPE_R && |
| 4401 | !test_bit(msr, msr_bitmap_l1 + 0x000 / f)) |
| 4402 | /* read-low */ |
| 4403 | __clear_bit(msr, msr_bitmap_nested + 0x000 / f); |
| 4404 | |
| 4405 | if (type & MSR_TYPE_W && |
| 4406 | !test_bit(msr, msr_bitmap_l1 + 0x800 / f)) |
| 4407 | /* write-low */ |
| 4408 | __clear_bit(msr, msr_bitmap_nested + 0x800 / f); |
| 4409 | |
| 4410 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4411 | msr &= 0x1fff; |
| 4412 | if (type & MSR_TYPE_R && |
| 4413 | !test_bit(msr, msr_bitmap_l1 + 0x400 / f)) |
| 4414 | /* read-high */ |
| 4415 | __clear_bit(msr, msr_bitmap_nested + 0x400 / f); |
| 4416 | |
| 4417 | if (type & MSR_TYPE_W && |
| 4418 | !test_bit(msr, msr_bitmap_l1 + 0xc00 / f)) |
| 4419 | /* write-high */ |
| 4420 | __clear_bit(msr, msr_bitmap_nested + 0xc00 / f); |
| 4421 | |
| 4422 | } |
| 4423 | } |
| 4424 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4425 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 4426 | { |
| 4427 | if (!longmode_only) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4428 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, |
| 4429 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4430 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, |
| 4431 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4432 | } |
| 4433 | |
| 4434 | static void vmx_enable_intercept_msr_read_x2apic(u32 msr) |
| 4435 | { |
| 4436 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4437 | msr, MSR_TYPE_R); |
| 4438 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4439 | msr, MSR_TYPE_R); |
| 4440 | } |
| 4441 | |
| 4442 | static void vmx_disable_intercept_msr_read_x2apic(u32 msr) |
| 4443 | { |
| 4444 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4445 | msr, MSR_TYPE_R); |
| 4446 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4447 | msr, MSR_TYPE_R); |
| 4448 | } |
| 4449 | |
| 4450 | static void vmx_disable_intercept_msr_write_x2apic(u32 msr) |
| 4451 | { |
| 4452 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4453 | msr, MSR_TYPE_W); |
| 4454 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4455 | msr, MSR_TYPE_W); |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4456 | } |
| 4457 | |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4458 | static int vmx_cpu_uses_apicv(struct kvm_vcpu *vcpu) |
| 4459 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4460 | return enable_apicv && lapic_in_kernel(vcpu); |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4461 | } |
| 4462 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4463 | static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4464 | { |
| 4465 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4466 | int max_irr; |
| 4467 | void *vapic_page; |
| 4468 | u16 status; |
| 4469 | |
| 4470 | if (vmx->nested.pi_desc && |
| 4471 | vmx->nested.pi_pending) { |
| 4472 | vmx->nested.pi_pending = false; |
| 4473 | if (!pi_test_and_clear_on(vmx->nested.pi_desc)) |
| 4474 | return 0; |
| 4475 | |
| 4476 | max_irr = find_last_bit( |
| 4477 | (unsigned long *)vmx->nested.pi_desc->pir, 256); |
| 4478 | |
| 4479 | if (max_irr == 256) |
| 4480 | return 0; |
| 4481 | |
| 4482 | vapic_page = kmap(vmx->nested.virtual_apic_page); |
| 4483 | if (!vapic_page) { |
| 4484 | WARN_ON(1); |
| 4485 | return -ENOMEM; |
| 4486 | } |
| 4487 | __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page); |
| 4488 | kunmap(vmx->nested.virtual_apic_page); |
| 4489 | |
| 4490 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 4491 | if ((u8)max_irr > ((u8)status & 0xff)) { |
| 4492 | status &= ~0xff; |
| 4493 | status |= (u8)max_irr; |
| 4494 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 4495 | } |
| 4496 | } |
| 4497 | return 0; |
| 4498 | } |
| 4499 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4500 | static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4501 | { |
| 4502 | #ifdef CONFIG_SMP |
| 4503 | if (vcpu->mode == IN_GUEST_MODE) { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 4504 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4505 | |
| 4506 | /* |
| 4507 | * Currently, we don't support urgent interrupt, |
| 4508 | * all interrupts are recognized as non-urgent |
| 4509 | * interrupt, so we cannot post interrupts when |
| 4510 | * 'SN' is set. |
| 4511 | * |
| 4512 | * If the vcpu is in guest mode, it means it is |
| 4513 | * running instead of being scheduled out and |
| 4514 | * waiting in the run queue, and that's the only |
| 4515 | * case when 'SN' is set currently, warning if |
| 4516 | * 'SN' is set. |
| 4517 | */ |
| 4518 | WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc)); |
| 4519 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4520 | apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), |
| 4521 | POSTED_INTR_VECTOR); |
| 4522 | return true; |
| 4523 | } |
| 4524 | #endif |
| 4525 | return false; |
| 4526 | } |
| 4527 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4528 | static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu, |
| 4529 | int vector) |
| 4530 | { |
| 4531 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4532 | |
| 4533 | if (is_guest_mode(vcpu) && |
| 4534 | vector == vmx->nested.posted_intr_nv) { |
| 4535 | /* the PIR and ON have been set by L1. */ |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4536 | kvm_vcpu_trigger_posted_interrupt(vcpu); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4537 | /* |
| 4538 | * If a posted intr is not recognized by hardware, |
| 4539 | * we will accomplish it in the next vmentry. |
| 4540 | */ |
| 4541 | vmx->nested.pi_pending = true; |
| 4542 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4543 | return 0; |
| 4544 | } |
| 4545 | return -1; |
| 4546 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4547 | /* |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4548 | * Send interrupt to vcpu via posted interrupt way. |
| 4549 | * 1. If target vcpu is running(non-root mode), send posted interrupt |
| 4550 | * notification to vcpu and hardware will sync PIR to vIRR atomically. |
| 4551 | * 2. If target vcpu isn't running(root mode), kick it to pick up the |
| 4552 | * interrupt from PIR in next vmentry. |
| 4553 | */ |
| 4554 | static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector) |
| 4555 | { |
| 4556 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4557 | int r; |
| 4558 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4559 | r = vmx_deliver_nested_posted_interrupt(vcpu, vector); |
| 4560 | if (!r) |
| 4561 | return; |
| 4562 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4563 | if (pi_test_and_set_pir(vector, &vmx->pi_desc)) |
| 4564 | return; |
| 4565 | |
| 4566 | r = pi_test_and_set_on(&vmx->pi_desc); |
| 4567 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4568 | if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu)) |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4569 | kvm_vcpu_kick(vcpu); |
| 4570 | } |
| 4571 | |
| 4572 | static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu) |
| 4573 | { |
| 4574 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4575 | |
| 4576 | if (!pi_test_and_clear_on(&vmx->pi_desc)) |
| 4577 | return; |
| 4578 | |
| 4579 | kvm_apic_update_irr(vcpu, vmx->pi_desc.pir); |
| 4580 | } |
| 4581 | |
| 4582 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu) |
| 4583 | { |
| 4584 | return; |
| 4585 | } |
| 4586 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4587 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4588 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 4589 | * will not change in the lifetime of the guest. |
| 4590 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 4591 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 4592 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4593 | static void vmx_set_constant_host_state(struct vcpu_vmx *vmx) |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4594 | { |
| 4595 | u32 low32, high32; |
| 4596 | unsigned long tmpl; |
| 4597 | struct desc_ptr dt; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4598 | unsigned long cr4; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4599 | |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 4600 | vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4601 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 4602 | |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4603 | /* 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] | 4604 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4605 | vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */ |
| 4606 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 4607 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4608 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4609 | #ifdef CONFIG_X86_64 |
| 4610 | /* |
| 4611 | * Load null selectors, so we can avoid reloading them in |
| 4612 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 4613 | * too (the expected case). |
| 4614 | */ |
| 4615 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 4616 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 4617 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4618 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4619 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4620 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4621 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4622 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 4623 | |
| 4624 | native_store_idt(&dt); |
| 4625 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4626 | vmx->host_idt_base = dt.address; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4627 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 4628 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4629 | |
| 4630 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 4631 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 4632 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 4633 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 4634 | |
| 4635 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 4636 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 4637 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 4638 | } |
| 4639 | } |
| 4640 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4641 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 4642 | { |
| 4643 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 4644 | if (enable_ept) |
| 4645 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 4646 | if (is_guest_mode(&vmx->vcpu)) |
| 4647 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 4648 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4649 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 4650 | } |
| 4651 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4652 | static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx) |
| 4653 | { |
| 4654 | u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; |
| 4655 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4656 | if (!vmx_cpu_uses_apicv(&vmx->vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4657 | pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; |
| 4658 | return pin_based_exec_ctrl; |
| 4659 | } |
| 4660 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4661 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 4662 | { |
| 4663 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
Paolo Bonzini | d16c293 | 2014-02-21 10:36:37 +0100 | [diff] [blame] | 4664 | |
| 4665 | if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT) |
| 4666 | exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 4667 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4668 | if (!cpu_need_tpr_shadow(&vmx->vcpu)) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4669 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 4670 | #ifdef CONFIG_X86_64 |
| 4671 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 4672 | CPU_BASED_CR8_LOAD_EXITING; |
| 4673 | #endif |
| 4674 | } |
| 4675 | if (!enable_ept) |
| 4676 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 4677 | CPU_BASED_CR3_LOAD_EXITING | |
| 4678 | CPU_BASED_INVLPG_EXITING; |
| 4679 | return exec_control; |
| 4680 | } |
| 4681 | |
| 4682 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 4683 | { |
| 4684 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4685 | if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu)) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4686 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 4687 | if (vmx->vpid == 0) |
| 4688 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 4689 | if (!enable_ept) { |
| 4690 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 4691 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 4692 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 4693 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4694 | } |
| 4695 | if (!enable_unrestricted_guest) |
| 4696 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 4697 | if (!ple_gap) |
| 4698 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4699 | if (!vmx_cpu_uses_apicv(&vmx->vcpu)) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4700 | exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 4701 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4702 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 4703 | /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD |
| 4704 | (handle_vmptrld). |
| 4705 | We can NOT enable shadow_vmcs here because we don't have yet |
| 4706 | a current VMCS12 |
| 4707 | */ |
| 4708 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 4709 | |
| 4710 | if (!enable_pml) |
| 4711 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 4712 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 4713 | /* Currently, we allow L1 guest to directly run pcommit instruction. */ |
| 4714 | exec_control &= ~SECONDARY_EXEC_PCOMMIT; |
| 4715 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4716 | return exec_control; |
| 4717 | } |
| 4718 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4719 | static void ept_set_mmio_spte_mask(void) |
| 4720 | { |
| 4721 | /* |
| 4722 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 4723 | * of an EPT paging-structure entry is 110b (write/execute). |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4724 | * Also, magic bits (0x3ull << 62) is set to quickly identify mmio |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4725 | * spte. |
| 4726 | */ |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4727 | kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4728 | } |
| 4729 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4730 | #define VMX_XSS_EXIT_BITMAP 0 |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4731 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4732 | * Sets up the vmcs for emulated real mode. |
| 4733 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4734 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4735 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4736 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4737 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4738 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4739 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4740 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4741 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4742 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 4743 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4744 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 4745 | if (enable_shadow_vmcs) { |
| 4746 | vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap)); |
| 4747 | vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap)); |
| 4748 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4749 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4750 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4751 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4752 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 4753 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4754 | /* Control */ |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4755 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx)); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 4756 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4757 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4758 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 4759 | if (cpu_has_secondary_exec_ctrls()) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4760 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 4761 | vmx_secondary_exec_control(vmx)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4762 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4763 | if (vmx_cpu_uses_apicv(&vmx->vcpu)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4764 | vmcs_write64(EOI_EXIT_BITMAP0, 0); |
| 4765 | vmcs_write64(EOI_EXIT_BITMAP1, 0); |
| 4766 | vmcs_write64(EOI_EXIT_BITMAP2, 0); |
| 4767 | vmcs_write64(EOI_EXIT_BITMAP3, 0); |
| 4768 | |
| 4769 | vmcs_write16(GUEST_INTR_STATUS, 0); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4770 | |
| 4771 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 4772 | vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4773 | } |
| 4774 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4775 | if (ple_gap) { |
| 4776 | vmcs_write32(PLE_GAP, ple_gap); |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 4777 | vmx->ple_window = ple_window; |
| 4778 | vmx->ple_window_dirty = true; |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4779 | } |
| 4780 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 4781 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 4782 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4783 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 4784 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 4785 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 4786 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4787 | vmx_set_constant_host_state(vmx); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4788 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4789 | rdmsrl(MSR_FS_BASE, a); |
| 4790 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 4791 | rdmsrl(MSR_GS_BASE, a); |
| 4792 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 4793 | #else |
| 4794 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 4795 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 4796 | #endif |
| 4797 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4798 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 4799 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4800 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4801 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4802 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4803 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 4804 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 4805 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 4806 | |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 4807 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4808 | u32 index = vmx_msr_index[i]; |
| 4809 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4810 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4811 | |
| 4812 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 4813 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 4814 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 4815 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 4816 | vmx->guest_msrs[j].index = i; |
| 4817 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 4818 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4819 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4820 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4821 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4822 | |
| 4823 | vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4824 | |
| 4825 | /* 22.2.1, 20.8.1 */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4826 | vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 4827 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4828 | vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4829 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4830 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4831 | if (vmx_xsaves_supported()) |
| 4832 | vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP); |
| 4833 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4834 | return 0; |
| 4835 | } |
| 4836 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4837 | static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4838 | { |
| 4839 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 4840 | struct msr_data apic_base_msr; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4841 | u64 cr0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4842 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4843 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4844 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4845 | vmx->soft_vnmi_blocked = 0; |
| 4846 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4847 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4848 | kvm_set_cr8(vcpu, 0); |
| 4849 | |
| 4850 | if (!init_event) { |
| 4851 | apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | |
| 4852 | MSR_IA32_APICBASE_ENABLE; |
| 4853 | if (kvm_vcpu_is_reset_bsp(vcpu)) |
| 4854 | apic_base_msr.data |= MSR_IA32_APICBASE_BSP; |
| 4855 | apic_base_msr.host_initiated = true; |
| 4856 | kvm_set_apic_base(vcpu, &apic_base_msr); |
| 4857 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4858 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4859 | vmx_segment_cache_clear(vmx); |
| 4860 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 4861 | seg_setup(VCPU_SREG_CS); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4862 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Paolo Bonzini | 04b6683 | 2013-03-19 16:30:26 +0100 | [diff] [blame] | 4863 | vmcs_write32(GUEST_CS_BASE, 0xffff0000); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4864 | |
| 4865 | seg_setup(VCPU_SREG_DS); |
| 4866 | seg_setup(VCPU_SREG_ES); |
| 4867 | seg_setup(VCPU_SREG_FS); |
| 4868 | seg_setup(VCPU_SREG_GS); |
| 4869 | seg_setup(VCPU_SREG_SS); |
| 4870 | |
| 4871 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 4872 | vmcs_writel(GUEST_TR_BASE, 0); |
| 4873 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 4874 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 4875 | |
| 4876 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 4877 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 4878 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 4879 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 4880 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4881 | if (!init_event) { |
| 4882 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 4883 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 4884 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 4885 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 4886 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4887 | |
| 4888 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4889 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4890 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4891 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 4892 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 4893 | |
| 4894 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 4895 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 4896 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 4897 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4898 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
| 4899 | vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
| 4900 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4901 | setup_msrs(vmx); |
| 4902 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4903 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 4904 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4905 | if (cpu_has_vmx_tpr_shadow() && !init_event) { |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4906 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4907 | if (cpu_need_tpr_shadow(vcpu)) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4908 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4909 | __pa(vcpu->arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4910 | vmcs_write32(TPR_THRESHOLD, 0); |
| 4911 | } |
| 4912 | |
Paolo Bonzini | a73896c | 2014-11-02 07:54:30 +0100 | [diff] [blame] | 4913 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4914 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4915 | if (vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4916 | memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); |
| 4917 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4918 | if (vmx->vpid != 0) |
| 4919 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 4920 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4921 | cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
| 4922 | vmx_set_cr0(vcpu, cr0); /* enter rmode */ |
| 4923 | vmx->vcpu.arch.cr0 = cr0; |
| 4924 | vmx_set_cr4(vcpu, 0); |
Paolo Bonzini | 5690891 | 2015-10-19 11:30:19 +0200 | [diff] [blame] | 4925 | vmx_set_efer(vcpu, 0); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4926 | vmx_fpu_activate(vcpu); |
| 4927 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4928 | |
Wanpeng Li | dd5f534 | 2015-09-23 18:26:57 +0800 | [diff] [blame] | 4929 | vpid_sync_context(vmx->vpid); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4930 | } |
| 4931 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4932 | /* |
| 4933 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 4934 | * For most existing hypervisors, this will always return true. |
| 4935 | */ |
| 4936 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 4937 | { |
| 4938 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4939 | PIN_BASED_EXT_INTR_MASK; |
| 4940 | } |
| 4941 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 4942 | /* |
| 4943 | * In nested virtualization, check if L1 has set |
| 4944 | * VM_EXIT_ACK_INTR_ON_EXIT |
| 4945 | */ |
| 4946 | static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu) |
| 4947 | { |
| 4948 | return get_vmcs12(vcpu)->vm_exit_controls & |
| 4949 | VM_EXIT_ACK_INTR_ON_EXIT; |
| 4950 | } |
| 4951 | |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 4952 | static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu) |
| 4953 | { |
| 4954 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4955 | PIN_BASED_NMI_EXITING; |
| 4956 | } |
| 4957 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4958 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4959 | { |
| 4960 | u32 cpu_based_vm_exec_control; |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 4961 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4962 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4963 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4964 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4965 | } |
| 4966 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4967 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4968 | { |
| 4969 | u32 cpu_based_vm_exec_control; |
| 4970 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4971 | if (!cpu_has_virtual_nmis() || |
| 4972 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 4973 | enable_irq_window(vcpu); |
| 4974 | return; |
| 4975 | } |
Jan Kiszka | 03b28f8 | 2013-04-29 16:46:42 +0200 | [diff] [blame] | 4976 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4977 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4978 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4979 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4980 | } |
| 4981 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4982 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4983 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4984 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4985 | uint32_t intr; |
| 4986 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4987 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4988 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4989 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 4990 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4991 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4992 | int inc_eip = 0; |
| 4993 | if (vcpu->arch.interrupt.soft) |
| 4994 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 4995 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4996 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4997 | return; |
| 4998 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4999 | intr = irq | INTR_INFO_VALID_MASK; |
| 5000 | if (vcpu->arch.interrupt.soft) { |
| 5001 | intr |= INTR_TYPE_SOFT_INTR; |
| 5002 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 5003 | vmx->vcpu.arch.event_exit_inst_len); |
| 5004 | } else |
| 5005 | intr |= INTR_TYPE_EXT_INTR; |
| 5006 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5007 | } |
| 5008 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5009 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 5010 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5011 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5012 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 5013 | if (is_guest_mode(vcpu)) |
| 5014 | return; |
| 5015 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5016 | if (!cpu_has_virtual_nmis()) { |
| 5017 | /* |
| 5018 | * Tracking the NMI-blocked state in software is built upon |
| 5019 | * finding the next open IRQ window. This, in turn, depends on |
| 5020 | * well-behaving guests: They have to keep IRQs disabled at |
| 5021 | * least as long as the NMI handler runs. Otherwise we may |
| 5022 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 5023 | * highly unlikely, we can live with the residual risk. |
| 5024 | */ |
| 5025 | vmx->soft_vnmi_blocked = 1; |
| 5026 | vmx->vnmi_blocked_time = 0; |
| 5027 | } |
| 5028 | |
Jan Kiszka | 487b391 | 2008-09-26 09:30:56 +0200 | [diff] [blame] | 5029 | ++vcpu->stat.nmi_injections; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5030 | vmx->nmi_known_unmasked = false; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5031 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5032 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5033 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5034 | return; |
| 5035 | } |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5036 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 5037 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5038 | } |
| 5039 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5040 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 5041 | { |
| 5042 | if (!cpu_has_virtual_nmis()) |
| 5043 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5044 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 5045 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 5046 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5047 | } |
| 5048 | |
| 5049 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 5050 | { |
| 5051 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5052 | |
| 5053 | if (!cpu_has_virtual_nmis()) { |
| 5054 | if (vmx->soft_vnmi_blocked != masked) { |
| 5055 | vmx->soft_vnmi_blocked = masked; |
| 5056 | vmx->vnmi_blocked_time = 0; |
| 5057 | } |
| 5058 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5059 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5060 | if (masked) |
| 5061 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5062 | GUEST_INTR_STATE_NMI); |
| 5063 | else |
| 5064 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5065 | GUEST_INTR_STATE_NMI); |
| 5066 | } |
| 5067 | } |
| 5068 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5069 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
| 5070 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5071 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 5072 | return 0; |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5073 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5074 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
| 5075 | return 0; |
| 5076 | |
| 5077 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5078 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 5079 | | GUEST_INTR_STATE_NMI)); |
| 5080 | } |
| 5081 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5082 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 5083 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5084 | return (!to_vmx(vcpu)->nested.nested_run_pending && |
| 5085 | vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 5086 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5087 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5088 | } |
| 5089 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5090 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 5091 | { |
| 5092 | int ret; |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5093 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 5094 | ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr, |
| 5095 | PAGE_SIZE * 3); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5096 | if (ret) |
| 5097 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 5098 | kvm->arch.tss_addr = addr; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 5099 | return init_rmode_tss(kvm); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5100 | } |
| 5101 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5102 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5103 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5104 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5105 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5106 | /* |
| 5107 | * Update instruction length as we may reinject the exception |
| 5108 | * from user space while in guest debugging mode. |
| 5109 | */ |
| 5110 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 5111 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5112 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5113 | return false; |
| 5114 | /* fall through */ |
| 5115 | case DB_VECTOR: |
| 5116 | if (vcpu->guest_debug & |
| 5117 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 5118 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5119 | /* fall through */ |
| 5120 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5121 | case OF_VECTOR: |
| 5122 | case BR_VECTOR: |
| 5123 | case UD_VECTOR: |
| 5124 | case DF_VECTOR: |
| 5125 | case SS_VECTOR: |
| 5126 | case GP_VECTOR: |
| 5127 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5128 | return true; |
| 5129 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5130 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5131 | return false; |
| 5132 | } |
| 5133 | |
| 5134 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 5135 | int vec, u32 err_code) |
| 5136 | { |
| 5137 | /* |
| 5138 | * Instruction with address size override prefix opcode 0x67 |
| 5139 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 5140 | */ |
| 5141 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 5142 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 5143 | if (vcpu->arch.halt_request) { |
| 5144 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5145 | return kvm_vcpu_halt(vcpu); |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5146 | } |
| 5147 | return 1; |
| 5148 | } |
| 5149 | return 0; |
| 5150 | } |
| 5151 | |
| 5152 | /* |
| 5153 | * Forward all other exceptions that are valid in real mode. |
| 5154 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 5155 | * the required debugging infrastructure rework. |
| 5156 | */ |
| 5157 | kvm_queue_exception(vcpu, vec); |
| 5158 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5159 | } |
| 5160 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5161 | /* |
| 5162 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 5163 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 5164 | * We pass a fake environment to the machine check handler because we want |
| 5165 | * the guest to be always treated like user space, no matter what context |
| 5166 | * it used internally. |
| 5167 | */ |
| 5168 | static void kvm_machine_check(void) |
| 5169 | { |
| 5170 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 5171 | struct pt_regs regs = { |
| 5172 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 5173 | .flags = X86_EFLAGS_IF, |
| 5174 | }; |
| 5175 | |
| 5176 | do_machine_check(®s, 0); |
| 5177 | #endif |
| 5178 | } |
| 5179 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5180 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5181 | { |
| 5182 | /* already handled by vcpu_run */ |
| 5183 | return 1; |
| 5184 | } |
| 5185 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5186 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5187 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5188 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5189 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5190 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5191 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5192 | u32 vect_info; |
| 5193 | enum emulation_result er; |
| 5194 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5195 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 5196 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5197 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5198 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5199 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5200 | |
Jan Kiszka | e4a4188 | 2008-09-26 09:30:46 +0200 | [diff] [blame] | 5201 | if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5202 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5203 | |
| 5204 | if (is_no_device(intr_info)) { |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 5205 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5206 | return 1; |
| 5207 | } |
| 5208 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5209 | if (is_invalid_opcode(intr_info)) { |
Jan Kiszka | ae1f576 | 2015-03-09 20:56:43 +0100 | [diff] [blame] | 5210 | if (is_guest_mode(vcpu)) { |
| 5211 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5212 | return 1; |
| 5213 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5214 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5215 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 5216 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5217 | return 1; |
| 5218 | } |
| 5219 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5220 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 5221 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5222 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5223 | |
| 5224 | /* |
| 5225 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 5226 | * MMIO, it is better to report an internal error. |
| 5227 | * See the comments in vmx_handle_exit. |
| 5228 | */ |
| 5229 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 5230 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 5231 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5232 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5233 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5234 | vcpu->run->internal.data[0] = vect_info; |
| 5235 | vcpu->run->internal.data[1] = intr_info; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5236 | vcpu->run->internal.data[2] = error_code; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5237 | return 0; |
| 5238 | } |
| 5239 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5240 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5241 | /* EPT won't cause page fault directly */ |
Julia Lawall | cf3ace7 | 2011-08-02 12:34:57 +0200 | [diff] [blame] | 5242 | BUG_ON(enable_ept); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5243 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5244 | trace_kvm_page_fault(cr2, error_code); |
| 5245 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 5246 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 5247 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5248 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5249 | } |
| 5250 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5251 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5252 | |
| 5253 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 5254 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 5255 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5256 | switch (ex_no) { |
| 5257 | case DB_VECTOR: |
| 5258 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 5259 | if (!(vcpu->guest_debug & |
| 5260 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
Jan Kiszka | 8246bf5 | 2014-01-04 18:47:17 +0100 | [diff] [blame] | 5261 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5262 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Huw Davies | fd2a445 | 2014-04-16 10:02:51 +0100 | [diff] [blame] | 5263 | if (!(dr6 & ~DR6_RESERVED)) /* icebp */ |
| 5264 | skip_emulated_instruction(vcpu); |
| 5265 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5266 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5267 | return 1; |
| 5268 | } |
| 5269 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 5270 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5271 | /* fall through */ |
| 5272 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5273 | /* |
| 5274 | * Update instruction length as we may reinject #BP from |
| 5275 | * user space while in guest debugging mode. Reading it for |
| 5276 | * #DB as well causes no harm, it is not used in that case. |
| 5277 | */ |
| 5278 | vmx->vcpu.arch.event_exit_inst_len = |
| 5279 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5280 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 5281 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5282 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 5283 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5284 | break; |
| 5285 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5286 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 5287 | kvm_run->ex.exception = ex_no; |
| 5288 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5289 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5290 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5291 | return 0; |
| 5292 | } |
| 5293 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5294 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5295 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 5296 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5297 | return 1; |
| 5298 | } |
| 5299 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5300 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5301 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5302 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5303 | return 0; |
| 5304 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5305 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5306 | static int handle_io(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5307 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5308 | unsigned long exit_qualification; |
Jan Kiszka | 34c33d1 | 2009-02-08 13:28:15 +0100 | [diff] [blame] | 5309 | int size, in, string; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5310 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5311 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5312 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5313 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5314 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5315 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5316 | ++vcpu->stat.io_exits; |
| 5317 | |
| 5318 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5319 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5320 | |
| 5321 | port = exit_qualification >> 16; |
| 5322 | size = (exit_qualification & 7) + 1; |
Guillaume Thouvenin | e93f36b | 2008-10-28 10:51:30 +0100 | [diff] [blame] | 5323 | skip_emulated_instruction(vcpu); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5324 | |
| 5325 | return kvm_fast_pio_out(vcpu, size, port); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5326 | } |
| 5327 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5328 | static void |
| 5329 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 5330 | { |
| 5331 | /* |
| 5332 | * Patch in the VMCALL instruction: |
| 5333 | */ |
| 5334 | hypercall[0] = 0x0f; |
| 5335 | hypercall[1] = 0x01; |
| 5336 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5337 | } |
| 5338 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5339 | static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5340 | { |
| 5341 | unsigned long always_on = VMXON_CR0_ALWAYSON; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5342 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5343 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5344 | if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high & |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5345 | SECONDARY_EXEC_UNRESTRICTED_GUEST && |
| 5346 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST)) |
| 5347 | always_on &= ~(X86_CR0_PE | X86_CR0_PG); |
| 5348 | return (val & always_on) == always_on; |
| 5349 | } |
| 5350 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 5351 | /* 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] | 5352 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 5353 | { |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5354 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5355 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5356 | unsigned long orig_val = val; |
| 5357 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5358 | /* |
| 5359 | * We get here when L2 changed cr0 in a way that did not change |
| 5360 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5361 | * but did change L0 shadowed bits. So we first calculate the |
| 5362 | * effective cr0 value that L1 would like to write into the |
| 5363 | * hardware. It consists of the L2-owned bits from the new |
| 5364 | * 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] | 5365 | */ |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5366 | val = (val & ~vmcs12->cr0_guest_host_mask) | |
| 5367 | (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask); |
| 5368 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5369 | if (!nested_cr0_valid(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5370 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5371 | |
| 5372 | if (kvm_set_cr0(vcpu, val)) |
| 5373 | return 1; |
| 5374 | vmcs_writel(CR0_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5375 | return 0; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5376 | } else { |
| 5377 | if (to_vmx(vcpu)->nested.vmxon && |
| 5378 | ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON)) |
| 5379 | return 1; |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5380 | return kvm_set_cr0(vcpu, val); |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5381 | } |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5382 | } |
| 5383 | |
| 5384 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 5385 | { |
| 5386 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5387 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5388 | unsigned long orig_val = val; |
| 5389 | |
| 5390 | /* analogously to handle_set_cr0 */ |
| 5391 | val = (val & ~vmcs12->cr4_guest_host_mask) | |
| 5392 | (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask); |
| 5393 | if (kvm_set_cr4(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5394 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5395 | vmcs_writel(CR4_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5396 | return 0; |
| 5397 | } else |
| 5398 | return kvm_set_cr4(vcpu, val); |
| 5399 | } |
| 5400 | |
| 5401 | /* called to set cr0 as approriate for clts instruction exit. */ |
| 5402 | static void handle_clts(struct kvm_vcpu *vcpu) |
| 5403 | { |
| 5404 | if (is_guest_mode(vcpu)) { |
| 5405 | /* |
| 5406 | * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS |
| 5407 | * but we did (!fpu_active). We need to keep GUEST_CR0.TS on, |
| 5408 | * just pretend it's off (also in arch.cr0 for fpu_activate). |
| 5409 | */ |
| 5410 | vmcs_writel(CR0_READ_SHADOW, |
| 5411 | vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS); |
| 5412 | vcpu->arch.cr0 &= ~X86_CR0_TS; |
| 5413 | } else |
| 5414 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
| 5415 | } |
| 5416 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5417 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5418 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5419 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5420 | int cr; |
| 5421 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 5422 | int err; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5423 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5424 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5425 | cr = exit_qualification & 15; |
| 5426 | reg = (exit_qualification >> 8) & 15; |
| 5427 | switch ((exit_qualification >> 4) & 3) { |
| 5428 | case 0: /* mov to cr */ |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5429 | val = kvm_register_readl(vcpu, reg); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5430 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5431 | switch (cr) { |
| 5432 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5433 | err = handle_set_cr0(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5434 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5435 | return 1; |
| 5436 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 5437 | err = kvm_set_cr3(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5438 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5439 | return 1; |
| 5440 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5441 | err = handle_set_cr4(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5442 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5443 | return 1; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5444 | case 8: { |
| 5445 | u8 cr8_prev = kvm_get_cr8(vcpu); |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5446 | u8 cr8 = (u8)val; |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 5447 | err = kvm_set_cr8(vcpu, cr8); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5448 | kvm_complete_insn_gp(vcpu, err); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5449 | if (lapic_in_kernel(vcpu)) |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5450 | return 1; |
| 5451 | if (cr8_prev <= cr8) |
| 5452 | return 1; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5453 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5454 | return 0; |
| 5455 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 5456 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5457 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5458 | case 2: /* clts */ |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5459 | handle_clts(vcpu); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5460 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5461 | skip_emulated_instruction(vcpu); |
Avi Kivity | 6b52d18 | 2010-01-21 15:31:47 +0200 | [diff] [blame] | 5462 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5463 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5464 | case 1: /*mov from cr*/ |
| 5465 | switch (cr) { |
| 5466 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 5467 | val = kvm_read_cr3(vcpu); |
| 5468 | kvm_register_write(vcpu, reg, val); |
| 5469 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5470 | skip_emulated_instruction(vcpu); |
| 5471 | return 1; |
| 5472 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5473 | val = kvm_get_cr8(vcpu); |
| 5474 | kvm_register_write(vcpu, reg, val); |
| 5475 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5476 | skip_emulated_instruction(vcpu); |
| 5477 | return 1; |
| 5478 | } |
| 5479 | break; |
| 5480 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5481 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5482 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5483 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5484 | |
| 5485 | skip_emulated_instruction(vcpu); |
| 5486 | return 1; |
| 5487 | default: |
| 5488 | break; |
| 5489 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5490 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 5491 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5492 | (int)(exit_qualification >> 4) & 3, cr); |
| 5493 | return 0; |
| 5494 | } |
| 5495 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5496 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5497 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5498 | unsigned long exit_qualification; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5499 | int dr, dr7, reg; |
| 5500 | |
| 5501 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5502 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 5503 | |
| 5504 | /* First, if DR does not exist, trigger UD */ |
| 5505 | if (!kvm_require_dr(vcpu, dr)) |
| 5506 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5507 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 5508 | /* 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] | 5509 | if (!kvm_require_cpl(vcpu, 0)) |
| 5510 | return 1; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5511 | dr7 = vmcs_readl(GUEST_DR7); |
| 5512 | if (dr7 & DR7_GD) { |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5513 | /* |
| 5514 | * As the vm-exit takes precedence over the debug trap, we |
| 5515 | * need to emulate the latter, either for the host or the |
| 5516 | * guest debugging itself. |
| 5517 | */ |
| 5518 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5519 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5520 | vcpu->run->debug.arch.dr7 = dr7; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5521 | vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5522 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 5523 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5524 | return 0; |
| 5525 | } else { |
Nadav Amit | 7305eb5 | 2014-11-02 11:54:44 +0200 | [diff] [blame] | 5526 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5527 | vcpu->arch.dr6 |= DR6_BD | DR6_RTM; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5528 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5529 | return 1; |
| 5530 | } |
| 5531 | } |
| 5532 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5533 | if (vcpu->guest_debug == 0) { |
| 5534 | u32 cpu_based_vm_exec_control; |
| 5535 | |
| 5536 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5537 | cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 5538 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5539 | |
| 5540 | /* |
| 5541 | * No more DR vmexits; force a reload of the debug registers |
| 5542 | * and reenter on this instruction. The next vmexit will |
| 5543 | * retrieve the full state of the debug registers. |
| 5544 | */ |
| 5545 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT; |
| 5546 | return 1; |
| 5547 | } |
| 5548 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5549 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 5550 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5551 | unsigned long val; |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5552 | |
| 5553 | if (kvm_get_dr(vcpu, dr, &val)) |
| 5554 | return 1; |
| 5555 | kvm_register_write(vcpu, reg, val); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5556 | } else |
Nadav Amit | 5777392 | 2014-06-18 17:19:23 +0300 | [diff] [blame] | 5557 | if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg))) |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5558 | return 1; |
| 5559 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5560 | skip_emulated_instruction(vcpu); |
| 5561 | return 1; |
| 5562 | } |
| 5563 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 5564 | static u64 vmx_get_dr6(struct kvm_vcpu *vcpu) |
| 5565 | { |
| 5566 | return vcpu->arch.dr6; |
| 5567 | } |
| 5568 | |
| 5569 | static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val) |
| 5570 | { |
| 5571 | } |
| 5572 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5573 | static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu) |
| 5574 | { |
| 5575 | u32 cpu_based_vm_exec_control; |
| 5576 | |
| 5577 | get_debugreg(vcpu->arch.db[0], 0); |
| 5578 | get_debugreg(vcpu->arch.db[1], 1); |
| 5579 | get_debugreg(vcpu->arch.db[2], 2); |
| 5580 | get_debugreg(vcpu->arch.db[3], 3); |
| 5581 | get_debugreg(vcpu->arch.dr6, 6); |
| 5582 | vcpu->arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5583 | |
| 5584 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT; |
| 5585 | |
| 5586 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5587 | cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING; |
| 5588 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5589 | } |
| 5590 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5591 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 5592 | { |
| 5593 | vmcs_writel(GUEST_DR7, val); |
| 5594 | } |
| 5595 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5596 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5597 | { |
Avi Kivity | 06465c5 | 2007-02-28 20:46:53 +0200 | [diff] [blame] | 5598 | kvm_emulate_cpuid(vcpu); |
| 5599 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5600 | } |
| 5601 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5602 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5603 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5604 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5605 | struct msr_data msr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5606 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5607 | msr_info.index = ecx; |
| 5608 | msr_info.host_initiated = false; |
| 5609 | if (vmx_get_msr(vcpu, &msr_info)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5610 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5611 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5612 | return 1; |
| 5613 | } |
| 5614 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5615 | trace_kvm_msr_read(ecx, msr_info.data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5616 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5617 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5618 | vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u; |
| 5619 | vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5620 | skip_emulated_instruction(vcpu); |
| 5621 | return 1; |
| 5622 | } |
| 5623 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5624 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5625 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5626 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5627 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 5628 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 5629 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5630 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5631 | msr.data = data; |
| 5632 | msr.index = ecx; |
| 5633 | msr.host_initiated = false; |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 5634 | if (kvm_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5635 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5636 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5637 | return 1; |
| 5638 | } |
| 5639 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5640 | trace_kvm_msr_write(ecx, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5641 | skip_emulated_instruction(vcpu); |
| 5642 | return 1; |
| 5643 | } |
| 5644 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5645 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5646 | { |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5647 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5648 | return 1; |
| 5649 | } |
| 5650 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5651 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5652 | { |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5653 | u32 cpu_based_vm_exec_control; |
| 5654 | |
| 5655 | /* clear pending irq */ |
| 5656 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5657 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 5658 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5659 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5660 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5661 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 5662 | ++vcpu->stat.irq_window_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5663 | return 1; |
| 5664 | } |
| 5665 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5666 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5667 | { |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 5668 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5669 | } |
| 5670 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5671 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5672 | { |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5673 | kvm_emulate_hypercall(vcpu); |
| 5674 | return 1; |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5675 | } |
| 5676 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5677 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 5678 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5679 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5680 | } |
| 5681 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5682 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5683 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5684 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5685 | |
| 5686 | kvm_mmu_invlpg(vcpu, exit_qualification); |
| 5687 | skip_emulated_instruction(vcpu); |
| 5688 | return 1; |
| 5689 | } |
| 5690 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 5691 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 5692 | { |
| 5693 | int err; |
| 5694 | |
| 5695 | err = kvm_rdpmc(vcpu); |
| 5696 | kvm_complete_insn_gp(vcpu, err); |
| 5697 | |
| 5698 | return 1; |
| 5699 | } |
| 5700 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5701 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5702 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 5703 | kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5704 | return 1; |
| 5705 | } |
| 5706 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5707 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 5708 | { |
| 5709 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 5710 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5711 | |
| 5712 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
| 5713 | skip_emulated_instruction(vcpu); |
| 5714 | return 1; |
| 5715 | } |
| 5716 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5717 | static int handle_xsaves(struct kvm_vcpu *vcpu) |
| 5718 | { |
| 5719 | skip_emulated_instruction(vcpu); |
| 5720 | WARN(1, "this should never happen\n"); |
| 5721 | return 1; |
| 5722 | } |
| 5723 | |
| 5724 | static int handle_xrstors(struct kvm_vcpu *vcpu) |
| 5725 | { |
| 5726 | skip_emulated_instruction(vcpu); |
| 5727 | WARN(1, "this should never happen\n"); |
| 5728 | return 1; |
| 5729 | } |
| 5730 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5731 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5732 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 5733 | if (likely(fasteoi)) { |
| 5734 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5735 | int access_type, offset; |
| 5736 | |
| 5737 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 5738 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 5739 | /* |
| 5740 | * Sane guest uses MOV to write EOI, with written value |
| 5741 | * not cared. So make a short-circuit here by avoiding |
| 5742 | * heavy instruction emulation. |
| 5743 | */ |
| 5744 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 5745 | (offset == APIC_EOI)) { |
| 5746 | kvm_lapic_set_eoi(vcpu); |
| 5747 | skip_emulated_instruction(vcpu); |
| 5748 | return 1; |
| 5749 | } |
| 5750 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5751 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5752 | } |
| 5753 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5754 | static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu) |
| 5755 | { |
| 5756 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5757 | int vector = exit_qualification & 0xff; |
| 5758 | |
| 5759 | /* EOI-induced VM exit is trap-like and thus no need to adjust IP */ |
| 5760 | kvm_apic_set_eoi_accelerated(vcpu, vector); |
| 5761 | return 1; |
| 5762 | } |
| 5763 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 5764 | static int handle_apic_write(struct kvm_vcpu *vcpu) |
| 5765 | { |
| 5766 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5767 | u32 offset = exit_qualification & 0xfff; |
| 5768 | |
| 5769 | /* APIC-write VM exit is trap-like and thus no need to adjust IP */ |
| 5770 | kvm_apic_write_nodecode(vcpu, offset); |
| 5771 | return 1; |
| 5772 | } |
| 5773 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5774 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5775 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5776 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5777 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5778 | bool has_error_code = false; |
| 5779 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5780 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5781 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5782 | |
| 5783 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5784 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5785 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5786 | |
| 5787 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5788 | |
| 5789 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5790 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 5791 | switch (type) { |
| 5792 | case INTR_TYPE_NMI_INTR: |
| 5793 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 5794 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5795 | break; |
| 5796 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5797 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5798 | kvm_clear_interrupt_queue(vcpu); |
| 5799 | break; |
| 5800 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5801 | if (vmx->idt_vectoring_info & |
| 5802 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 5803 | has_error_code = true; |
| 5804 | error_code = |
| 5805 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 5806 | } |
| 5807 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5808 | case INTR_TYPE_SOFT_EXCEPTION: |
| 5809 | kvm_clear_exception_queue(vcpu); |
| 5810 | break; |
| 5811 | default: |
| 5812 | break; |
| 5813 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5814 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5815 | tss_selector = exit_qualification; |
| 5816 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5817 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 5818 | type != INTR_TYPE_EXT_INTR && |
| 5819 | type != INTR_TYPE_NMI_INTR)) |
| 5820 | skip_emulated_instruction(vcpu); |
| 5821 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5822 | if (kvm_task_switch(vcpu, tss_selector, |
| 5823 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 5824 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5825 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5826 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5827 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5828 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5829 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5830 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5831 | /* |
| 5832 | * TODO: What about debug traps on tss switch? |
| 5833 | * Are we supposed to inject them and update dr6? |
| 5834 | */ |
| 5835 | |
| 5836 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5837 | } |
| 5838 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5839 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5840 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5841 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5842 | gpa_t gpa; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5843 | u32 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5844 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5845 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5846 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5847 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5848 | gla_validity = (exit_qualification >> 7) & 0x3; |
| 5849 | if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) { |
| 5850 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 5851 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 5852 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5853 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5854 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 5855 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5856 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5857 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 5858 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5859 | } |
| 5860 | |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5861 | /* |
| 5862 | * EPT violation happened while executing iret from NMI, |
| 5863 | * "blocked by NMI" bit has to be set before next VM entry. |
| 5864 | * There are errata that may cause this bit to not be set: |
| 5865 | * AAK134, BY25. |
| 5866 | */ |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 5867 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 5868 | cpu_has_virtual_nmis() && |
| 5869 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5870 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI); |
| 5871 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5872 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5873 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5874 | |
| 5875 | /* It is a write fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5876 | error_code = exit_qualification & PFERR_WRITE_MASK; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5877 | /* It is a fetch fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5878 | error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5879 | /* ept page table is present? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5880 | error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5881 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5882 | vcpu->arch.exit_qualification = exit_qualification; |
| 5883 | |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5884 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5885 | } |
| 5886 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5887 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5888 | { |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 5889 | int ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5890 | gpa_t gpa; |
| 5891 | |
| 5892 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 5893 | if (!kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) { |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 5894 | skip_emulated_instruction(vcpu); |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 5895 | trace_kvm_fast_mmio(gpa); |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 5896 | return 1; |
| 5897 | } |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5898 | |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 5899 | ret = handle_mmio_page_fault(vcpu, gpa, true); |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5900 | if (likely(ret == RET_MMIO_PF_EMULATE)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5901 | return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) == |
| 5902 | EMULATE_DONE; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5903 | |
| 5904 | if (unlikely(ret == RET_MMIO_PF_INVALID)) |
| 5905 | return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0); |
| 5906 | |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5907 | if (unlikely(ret == RET_MMIO_PF_RETRY)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5908 | return 1; |
| 5909 | |
| 5910 | /* It is the real ept misconfig */ |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 5911 | WARN_ON(1); |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5912 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5913 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5914 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5915 | |
| 5916 | return 0; |
| 5917 | } |
| 5918 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5919 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5920 | { |
| 5921 | u32 cpu_based_vm_exec_control; |
| 5922 | |
| 5923 | /* clear pending NMI */ |
| 5924 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5925 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 5926 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5927 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5928 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5929 | |
| 5930 | return 1; |
| 5931 | } |
| 5932 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5933 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5934 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 5935 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5936 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5937 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5938 | u32 cpu_exec_ctrl; |
| 5939 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 5940 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5941 | |
| 5942 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5943 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5944 | |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 5945 | while (vmx->emulation_required && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 5946 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5947 | return handle_interrupt_window(&vmx->vcpu); |
| 5948 | |
Avi Kivity | de87dcdd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 5949 | if (test_bit(KVM_REQ_EVENT, &vcpu->requests)) |
| 5950 | return 1; |
| 5951 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5952 | err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5953 | |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5954 | if (err == EMULATE_USER_EXIT) { |
Paolo Bonzini | 94452b9 | 2013-08-27 15:41:42 +0200 | [diff] [blame] | 5955 | ++vcpu->stat.mmio_exits; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5956 | ret = 0; |
| 5957 | goto out; |
| 5958 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5959 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5960 | if (err != EMULATE_DONE) { |
| 5961 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5962 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5963 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5964 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5965 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5966 | |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5967 | if (vcpu->arch.halt_request) { |
| 5968 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5969 | ret = kvm_vcpu_halt(vcpu); |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5970 | goto out; |
| 5971 | } |
| 5972 | |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5973 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5974 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5975 | if (need_resched()) |
| 5976 | schedule(); |
| 5977 | } |
| 5978 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5979 | out: |
| 5980 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5981 | } |
| 5982 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 5983 | static int __grow_ple_window(int val) |
| 5984 | { |
| 5985 | if (ple_window_grow < 1) |
| 5986 | return ple_window; |
| 5987 | |
| 5988 | val = min(val, ple_window_actual_max); |
| 5989 | |
| 5990 | if (ple_window_grow < ple_window) |
| 5991 | val *= ple_window_grow; |
| 5992 | else |
| 5993 | val += ple_window_grow; |
| 5994 | |
| 5995 | return val; |
| 5996 | } |
| 5997 | |
| 5998 | static int __shrink_ple_window(int val, int modifier, int minimum) |
| 5999 | { |
| 6000 | if (modifier < 1) |
| 6001 | return ple_window; |
| 6002 | |
| 6003 | if (modifier < ple_window) |
| 6004 | val /= modifier; |
| 6005 | else |
| 6006 | val -= modifier; |
| 6007 | |
| 6008 | return max(val, minimum); |
| 6009 | } |
| 6010 | |
| 6011 | static void grow_ple_window(struct kvm_vcpu *vcpu) |
| 6012 | { |
| 6013 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6014 | int old = vmx->ple_window; |
| 6015 | |
| 6016 | vmx->ple_window = __grow_ple_window(old); |
| 6017 | |
| 6018 | if (vmx->ple_window != old) |
| 6019 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6020 | |
| 6021 | 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] | 6022 | } |
| 6023 | |
| 6024 | static void shrink_ple_window(struct kvm_vcpu *vcpu) |
| 6025 | { |
| 6026 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6027 | int old = vmx->ple_window; |
| 6028 | |
| 6029 | vmx->ple_window = __shrink_ple_window(old, |
| 6030 | ple_window_shrink, ple_window); |
| 6031 | |
| 6032 | if (vmx->ple_window != old) |
| 6033 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6034 | |
| 6035 | 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] | 6036 | } |
| 6037 | |
| 6038 | /* |
| 6039 | * ple_window_actual_max is computed to be one grow_ple_window() below |
| 6040 | * ple_window_max. (See __grow_ple_window for the reason.) |
| 6041 | * This prevents overflows, because ple_window_max is int. |
| 6042 | * ple_window_max effectively rounded down to a multiple of ple_window_grow in |
| 6043 | * this process. |
| 6044 | * ple_window_max is also prevented from setting vmx->ple_window < ple_window. |
| 6045 | */ |
| 6046 | static void update_ple_window_actual_max(void) |
| 6047 | { |
| 6048 | ple_window_actual_max = |
| 6049 | __shrink_ple_window(max(ple_window_max, ple_window), |
| 6050 | ple_window_grow, INT_MIN); |
| 6051 | } |
| 6052 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6053 | /* |
| 6054 | * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR. |
| 6055 | */ |
| 6056 | static void wakeup_handler(void) |
| 6057 | { |
| 6058 | struct kvm_vcpu *vcpu; |
| 6059 | int cpu = smp_processor_id(); |
| 6060 | |
| 6061 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6062 | list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu), |
| 6063 | blocked_vcpu_list) { |
| 6064 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 6065 | |
| 6066 | if (pi_test_on(pi_desc) == 1) |
| 6067 | kvm_vcpu_kick(vcpu); |
| 6068 | } |
| 6069 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6070 | } |
| 6071 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6072 | static __init int hardware_setup(void) |
| 6073 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6074 | int r = -ENOMEM, i, msr; |
| 6075 | |
| 6076 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6077 | |
| 6078 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) |
| 6079 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
| 6080 | |
| 6081 | vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6082 | if (!vmx_io_bitmap_a) |
| 6083 | return r; |
| 6084 | |
| 6085 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6086 | if (!vmx_io_bitmap_b) |
| 6087 | goto out; |
| 6088 | |
| 6089 | vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6090 | if (!vmx_msr_bitmap_legacy) |
| 6091 | goto out1; |
| 6092 | |
| 6093 | vmx_msr_bitmap_legacy_x2apic = |
| 6094 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6095 | if (!vmx_msr_bitmap_legacy_x2apic) |
| 6096 | goto out2; |
| 6097 | |
| 6098 | vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6099 | if (!vmx_msr_bitmap_longmode) |
| 6100 | goto out3; |
| 6101 | |
| 6102 | vmx_msr_bitmap_longmode_x2apic = |
| 6103 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6104 | if (!vmx_msr_bitmap_longmode_x2apic) |
| 6105 | goto out4; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6106 | |
| 6107 | if (nested) { |
| 6108 | vmx_msr_bitmap_nested = |
| 6109 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6110 | if (!vmx_msr_bitmap_nested) |
| 6111 | goto out5; |
| 6112 | } |
| 6113 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6114 | vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6115 | if (!vmx_vmread_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6116 | goto out6; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6117 | |
| 6118 | vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6119 | if (!vmx_vmwrite_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6120 | goto out7; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6121 | |
| 6122 | memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE); |
| 6123 | memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE); |
| 6124 | |
| 6125 | /* |
| 6126 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6127 | * delays, but the vmexits simply slow things down). |
| 6128 | */ |
| 6129 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6130 | clear_bit(0x80, vmx_io_bitmap_a); |
| 6131 | |
| 6132 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
| 6133 | |
| 6134 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6135 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6136 | if (nested) |
| 6137 | memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6138 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6139 | if (setup_vmcs_config(&vmcs_config) < 0) { |
| 6140 | r = -EIO; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6141 | goto out8; |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6142 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6143 | |
| 6144 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 6145 | kvm_enable_efer_bits(EFER_NX); |
| 6146 | |
| 6147 | if (!cpu_has_vmx_vpid()) |
| 6148 | enable_vpid = 0; |
| 6149 | if (!cpu_has_vmx_shadow_vmcs()) |
| 6150 | enable_shadow_vmcs = 0; |
| 6151 | if (enable_shadow_vmcs) |
| 6152 | init_vmcs_shadow_fields(); |
| 6153 | |
| 6154 | if (!cpu_has_vmx_ept() || |
| 6155 | !cpu_has_vmx_ept_4levels()) { |
| 6156 | enable_ept = 0; |
| 6157 | enable_unrestricted_guest = 0; |
| 6158 | enable_ept_ad_bits = 0; |
| 6159 | } |
| 6160 | |
| 6161 | if (!cpu_has_vmx_ept_ad_bits()) |
| 6162 | enable_ept_ad_bits = 0; |
| 6163 | |
| 6164 | if (!cpu_has_vmx_unrestricted_guest()) |
| 6165 | enable_unrestricted_guest = 0; |
| 6166 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6167 | if (!cpu_has_vmx_flexpriority()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6168 | flexpriority_enabled = 0; |
| 6169 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6170 | /* |
| 6171 | * set_apic_access_page_addr() is used to reload apic access |
| 6172 | * page upon invalidation. No need to do anything if not |
| 6173 | * using the APIC_ACCESS_ADDR VMCS field. |
| 6174 | */ |
| 6175 | if (!flexpriority_enabled) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6176 | kvm_x86_ops->set_apic_access_page_addr = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6177 | |
| 6178 | if (!cpu_has_vmx_tpr_shadow()) |
| 6179 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6180 | |
| 6181 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 6182 | kvm_disable_largepages(); |
| 6183 | |
| 6184 | if (!cpu_has_vmx_ple()) |
| 6185 | ple_gap = 0; |
| 6186 | |
| 6187 | if (!cpu_has_vmx_apicv()) |
| 6188 | enable_apicv = 0; |
| 6189 | |
Haozhong Zhang | 64903d6 | 2015-10-20 15:39:09 +0800 | [diff] [blame^] | 6190 | if (cpu_has_vmx_tsc_scaling()) { |
| 6191 | kvm_has_tsc_control = true; |
| 6192 | kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX; |
| 6193 | kvm_tsc_scaling_ratio_frac_bits = 48; |
| 6194 | } |
| 6195 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6196 | if (enable_apicv) |
| 6197 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6198 | else { |
| 6199 | kvm_x86_ops->hwapic_irr_update = NULL; |
Tiejun Chen | b4eef9b | 2014-12-22 10:32:57 +0100 | [diff] [blame] | 6200 | kvm_x86_ops->hwapic_isr_update = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6201 | kvm_x86_ops->deliver_posted_interrupt = NULL; |
| 6202 | kvm_x86_ops->sync_pir_to_irr = vmx_sync_pir_to_irr_dummy; |
| 6203 | } |
| 6204 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6205 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6206 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6207 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6208 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6209 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6210 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
| 6211 | vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); |
| 6212 | |
| 6213 | memcpy(vmx_msr_bitmap_legacy_x2apic, |
| 6214 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6215 | memcpy(vmx_msr_bitmap_longmode_x2apic, |
| 6216 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
| 6217 | |
Wanpeng Li | 04bb92e | 2015-09-16 19:31:11 +0800 | [diff] [blame] | 6218 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 6219 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6220 | if (enable_apicv) { |
| 6221 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 6222 | vmx_disable_intercept_msr_read_x2apic(msr); |
| 6223 | |
| 6224 | /* According SDM, in x2apic mode, the whole id reg is used. |
| 6225 | * But in KVM, it only use the highest eight bits. Need to |
| 6226 | * intercept it */ |
| 6227 | vmx_enable_intercept_msr_read_x2apic(0x802); |
| 6228 | /* TMCCT */ |
| 6229 | vmx_enable_intercept_msr_read_x2apic(0x839); |
| 6230 | /* TPR */ |
| 6231 | vmx_disable_intercept_msr_write_x2apic(0x808); |
| 6232 | /* EOI */ |
| 6233 | vmx_disable_intercept_msr_write_x2apic(0x80b); |
| 6234 | /* SELF-IPI */ |
| 6235 | vmx_disable_intercept_msr_write_x2apic(0x83f); |
| 6236 | } |
| 6237 | |
| 6238 | if (enable_ept) { |
| 6239 | kvm_mmu_set_mask_ptes(0ull, |
| 6240 | (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull, |
| 6241 | (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull, |
| 6242 | 0ull, VMX_EPT_EXECUTABLE_MASK); |
| 6243 | ept_set_mmio_spte_mask(); |
| 6244 | kvm_enable_tdp(); |
| 6245 | } else |
| 6246 | kvm_disable_tdp(); |
| 6247 | |
| 6248 | update_ple_window_actual_max(); |
| 6249 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 6250 | /* |
| 6251 | * Only enable PML when hardware supports PML feature, and both EPT |
| 6252 | * and EPT A/D bit features are enabled -- PML depends on them to work. |
| 6253 | */ |
| 6254 | if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml()) |
| 6255 | enable_pml = 0; |
| 6256 | |
| 6257 | if (!enable_pml) { |
| 6258 | kvm_x86_ops->slot_enable_log_dirty = NULL; |
| 6259 | kvm_x86_ops->slot_disable_log_dirty = NULL; |
| 6260 | kvm_x86_ops->flush_log_dirty = NULL; |
| 6261 | kvm_x86_ops->enable_log_dirty_pt_masked = NULL; |
| 6262 | } |
| 6263 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6264 | kvm_set_posted_intr_wakeup_handler(wakeup_handler); |
| 6265 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6266 | return alloc_kvm_area(); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6267 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6268 | out8: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6269 | free_page((unsigned long)vmx_vmwrite_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6270 | out7: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6271 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6272 | out6: |
| 6273 | if (nested) |
| 6274 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6275 | out5: |
| 6276 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6277 | out4: |
| 6278 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6279 | out3: |
| 6280 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6281 | out2: |
| 6282 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6283 | out1: |
| 6284 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6285 | out: |
| 6286 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6287 | |
| 6288 | return r; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6289 | } |
| 6290 | |
| 6291 | static __exit void hardware_unsetup(void) |
| 6292 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6293 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6294 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6295 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6296 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6297 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6298 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6299 | free_page((unsigned long)vmx_vmwrite_bitmap); |
| 6300 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6301 | if (nested) |
| 6302 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6303 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6304 | free_kvm_area(); |
| 6305 | } |
| 6306 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6307 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6308 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 6309 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 6310 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 6311 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6312 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6313 | if (ple_gap) |
| 6314 | grow_ple_window(vcpu); |
| 6315 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6316 | skip_emulated_instruction(vcpu); |
| 6317 | kvm_vcpu_on_spin(vcpu); |
| 6318 | |
| 6319 | return 1; |
| 6320 | } |
| 6321 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6322 | static int handle_nop(struct kvm_vcpu *vcpu) |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6323 | { |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6324 | skip_emulated_instruction(vcpu); |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6325 | return 1; |
| 6326 | } |
| 6327 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6328 | static int handle_mwait(struct kvm_vcpu *vcpu) |
| 6329 | { |
| 6330 | printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n"); |
| 6331 | return handle_nop(vcpu); |
| 6332 | } |
| 6333 | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 6334 | static int handle_monitor_trap(struct kvm_vcpu *vcpu) |
| 6335 | { |
| 6336 | return 1; |
| 6337 | } |
| 6338 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6339 | static int handle_monitor(struct kvm_vcpu *vcpu) |
| 6340 | { |
| 6341 | printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n"); |
| 6342 | return handle_nop(vcpu); |
| 6343 | } |
| 6344 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6345 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6346 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 6347 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 6348 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 6349 | * allows keeping them loaded on the processor, and in the future will allow |
| 6350 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 6351 | * every entry if they never change. |
| 6352 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 6353 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 6354 | * |
| 6355 | * The following functions allocate and free a vmcs02 in this pool. |
| 6356 | */ |
| 6357 | |
| 6358 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 6359 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 6360 | { |
| 6361 | struct vmcs02_list *item; |
| 6362 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6363 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 6364 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6365 | return &item->vmcs02; |
| 6366 | } |
| 6367 | |
| 6368 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 6369 | /* Recycle the least recently used VMCS. */ |
| 6370 | item = list_entry(vmx->nested.vmcs02_pool.prev, |
| 6371 | struct vmcs02_list, list); |
| 6372 | item->vmptr = vmx->nested.current_vmptr; |
| 6373 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6374 | return &item->vmcs02; |
| 6375 | } |
| 6376 | |
| 6377 | /* Create a new VMCS */ |
Ioan Orghici | 0fa24ce | 2013-03-10 15:46:00 +0200 | [diff] [blame] | 6378 | item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6379 | if (!item) |
| 6380 | return NULL; |
| 6381 | item->vmcs02.vmcs = alloc_vmcs(); |
| 6382 | if (!item->vmcs02.vmcs) { |
| 6383 | kfree(item); |
| 6384 | return NULL; |
| 6385 | } |
| 6386 | loaded_vmcs_init(&item->vmcs02); |
| 6387 | item->vmptr = vmx->nested.current_vmptr; |
| 6388 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 6389 | vmx->nested.vmcs02_num++; |
| 6390 | return &item->vmcs02; |
| 6391 | } |
| 6392 | |
| 6393 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 6394 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 6395 | { |
| 6396 | struct vmcs02_list *item; |
| 6397 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6398 | if (item->vmptr == vmptr) { |
| 6399 | free_loaded_vmcs(&item->vmcs02); |
| 6400 | list_del(&item->list); |
| 6401 | kfree(item); |
| 6402 | vmx->nested.vmcs02_num--; |
| 6403 | return; |
| 6404 | } |
| 6405 | } |
| 6406 | |
| 6407 | /* |
| 6408 | * Free all VMCSs saved for this vcpu, except the one pointed by |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6409 | * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs |
| 6410 | * must be &vmx->vmcs01. |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6411 | */ |
| 6412 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 6413 | { |
| 6414 | struct vmcs02_list *item, *n; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6415 | |
| 6416 | WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6417 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6418 | /* |
| 6419 | * Something will leak if the above WARN triggers. Better than |
| 6420 | * a use-after-free. |
| 6421 | */ |
| 6422 | if (vmx->loaded_vmcs == &item->vmcs02) |
| 6423 | continue; |
| 6424 | |
| 6425 | free_loaded_vmcs(&item->vmcs02); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6426 | list_del(&item->list); |
| 6427 | kfree(item); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6428 | vmx->nested.vmcs02_num--; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6429 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6430 | } |
| 6431 | |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6432 | /* |
| 6433 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 6434 | * set the success or error code of an emulated VMX instruction, as specified |
| 6435 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 6436 | */ |
| 6437 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 6438 | { |
| 6439 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 6440 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6441 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 6442 | } |
| 6443 | |
| 6444 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 6445 | { |
| 6446 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6447 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 6448 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6449 | | X86_EFLAGS_CF); |
| 6450 | } |
| 6451 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6452 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6453 | u32 vm_instruction_error) |
| 6454 | { |
| 6455 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 6456 | /* |
| 6457 | * failValid writes the error number to the current VMCS, which |
| 6458 | * can't be done there isn't a current VMCS. |
| 6459 | */ |
| 6460 | nested_vmx_failInvalid(vcpu); |
| 6461 | return; |
| 6462 | } |
| 6463 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6464 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6465 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6466 | | X86_EFLAGS_ZF); |
| 6467 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 6468 | /* |
| 6469 | * We don't need to force a shadow sync because |
| 6470 | * VM_INSTRUCTION_ERROR is not shadowed |
| 6471 | */ |
| 6472 | } |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6473 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 6474 | static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator) |
| 6475 | { |
| 6476 | /* TODO: not to reset guest simply here. */ |
| 6477 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6478 | pr_warn("kvm: nested vmx abort, indicator %d\n", indicator); |
| 6479 | } |
| 6480 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6481 | static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer) |
| 6482 | { |
| 6483 | struct vcpu_vmx *vmx = |
| 6484 | container_of(timer, struct vcpu_vmx, nested.preemption_timer); |
| 6485 | |
| 6486 | vmx->nested.preemption_timer_expired = true; |
| 6487 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 6488 | kvm_vcpu_kick(&vmx->vcpu); |
| 6489 | |
| 6490 | return HRTIMER_NORESTART; |
| 6491 | } |
| 6492 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6493 | /* |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6494 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 6495 | * exit caused by such an instruction (run by a guest hypervisor). |
| 6496 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 6497 | * #UD or #GP. |
| 6498 | */ |
| 6499 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 6500 | unsigned long exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6501 | u32 vmx_instruction_info, bool wr, gva_t *ret) |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6502 | { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6503 | gva_t off; |
| 6504 | bool exn; |
| 6505 | struct kvm_segment s; |
| 6506 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6507 | /* |
| 6508 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 6509 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 6510 | * addressing components of the operand. Only the displacement part |
| 6511 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 6512 | * For how an actual address is calculated from all these components, |
| 6513 | * refer to Vol. 1, "Operand Addressing". |
| 6514 | */ |
| 6515 | int scaling = vmx_instruction_info & 3; |
| 6516 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 6517 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 6518 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 6519 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 6520 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 6521 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 6522 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 6523 | |
| 6524 | if (is_reg) { |
| 6525 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6526 | return 1; |
| 6527 | } |
| 6528 | |
| 6529 | /* Addr = segment_base + offset */ |
| 6530 | /* offset = base + [index * scale] + displacement */ |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6531 | off = exit_qualification; /* holds the displacement */ |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6532 | if (base_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6533 | off += kvm_register_read(vcpu, base_reg); |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6534 | if (index_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6535 | off += kvm_register_read(vcpu, index_reg)<<scaling; |
| 6536 | vmx_get_segment(vcpu, &s, seg_reg); |
| 6537 | *ret = s.base + off; |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6538 | |
| 6539 | if (addr_size == 1) /* 32 bit */ |
| 6540 | *ret &= 0xffffffff; |
| 6541 | |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6542 | /* Checks for #GP/#SS exceptions. */ |
| 6543 | exn = false; |
| 6544 | if (is_protmode(vcpu)) { |
| 6545 | /* Protected mode: apply checks for segment validity in the |
| 6546 | * following order: |
| 6547 | * - segment type check (#GP(0) may be thrown) |
| 6548 | * - usability check (#GP(0)/#SS(0)) |
| 6549 | * - limit check (#GP(0)/#SS(0)) |
| 6550 | */ |
| 6551 | if (wr) |
| 6552 | /* #GP(0) if the destination operand is located in a |
| 6553 | * read-only data segment or any code segment. |
| 6554 | */ |
| 6555 | exn = ((s.type & 0xa) == 0 || (s.type & 8)); |
| 6556 | else |
| 6557 | /* #GP(0) if the source operand is located in an |
| 6558 | * execute-only code segment |
| 6559 | */ |
| 6560 | exn = ((s.type & 0xa) == 8); |
| 6561 | } |
| 6562 | if (exn) { |
| 6563 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 6564 | return 1; |
| 6565 | } |
| 6566 | if (is_long_mode(vcpu)) { |
| 6567 | /* Long mode: #GP(0)/#SS(0) if the memory address is in a |
| 6568 | * non-canonical form. This is an only check for long mode. |
| 6569 | */ |
| 6570 | exn = is_noncanonical_address(*ret); |
| 6571 | } else if (is_protmode(vcpu)) { |
| 6572 | /* Protected mode: #GP(0)/#SS(0) if the segment is unusable. |
| 6573 | */ |
| 6574 | exn = (s.unusable != 0); |
| 6575 | /* Protected mode: #GP(0)/#SS(0) if the memory |
| 6576 | * operand is outside the segment limit. |
| 6577 | */ |
| 6578 | exn = exn || (off + sizeof(u64) > s.limit); |
| 6579 | } |
| 6580 | if (exn) { |
| 6581 | kvm_queue_exception_e(vcpu, |
| 6582 | seg_reg == VCPU_SREG_SS ? |
| 6583 | SS_VECTOR : GP_VECTOR, |
| 6584 | 0); |
| 6585 | return 1; |
| 6586 | } |
| 6587 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6588 | return 0; |
| 6589 | } |
| 6590 | |
| 6591 | /* |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6592 | * This function performs the various checks including |
| 6593 | * - if it's 4KB aligned |
| 6594 | * - No bits beyond the physical address width are set |
| 6595 | * - Returns 0 on success or else 1 |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6596 | * (Intel SDM Section 30.3) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6597 | */ |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6598 | static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason, |
| 6599 | gpa_t *vmpointer) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6600 | { |
| 6601 | gva_t gva; |
| 6602 | gpa_t vmptr; |
| 6603 | struct x86_exception e; |
| 6604 | struct page *page; |
| 6605 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6606 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 6607 | |
| 6608 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6609 | vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6610 | return 1; |
| 6611 | |
| 6612 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 6613 | sizeof(vmptr), &e)) { |
| 6614 | kvm_inject_page_fault(vcpu, &e); |
| 6615 | return 1; |
| 6616 | } |
| 6617 | |
| 6618 | switch (exit_reason) { |
| 6619 | case EXIT_REASON_VMON: |
| 6620 | /* |
| 6621 | * SDM 3: 24.11.5 |
| 6622 | * The first 4 bytes of VMXON region contain the supported |
| 6623 | * VMCS revision identifier |
| 6624 | * |
| 6625 | * Note - IA32_VMX_BASIC[48] will never be 1 |
| 6626 | * for the nested case; |
| 6627 | * which replaces physical address width with 32 |
| 6628 | * |
| 6629 | */ |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6630 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6631 | nested_vmx_failInvalid(vcpu); |
| 6632 | skip_emulated_instruction(vcpu); |
| 6633 | return 1; |
| 6634 | } |
| 6635 | |
| 6636 | page = nested_get_page(vcpu, vmptr); |
| 6637 | if (page == NULL || |
| 6638 | *(u32 *)kmap(page) != VMCS12_REVISION) { |
| 6639 | nested_vmx_failInvalid(vcpu); |
| 6640 | kunmap(page); |
| 6641 | skip_emulated_instruction(vcpu); |
| 6642 | return 1; |
| 6643 | } |
| 6644 | kunmap(page); |
| 6645 | vmx->nested.vmxon_ptr = vmptr; |
| 6646 | break; |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6647 | case EXIT_REASON_VMCLEAR: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6648 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6649 | nested_vmx_failValid(vcpu, |
| 6650 | VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 6651 | skip_emulated_instruction(vcpu); |
| 6652 | return 1; |
| 6653 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6654 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6655 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6656 | nested_vmx_failValid(vcpu, |
| 6657 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6658 | skip_emulated_instruction(vcpu); |
| 6659 | return 1; |
| 6660 | } |
| 6661 | break; |
| 6662 | case EXIT_REASON_VMPTRLD: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6663 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6664 | nested_vmx_failValid(vcpu, |
| 6665 | VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 6666 | skip_emulated_instruction(vcpu); |
| 6667 | return 1; |
| 6668 | } |
| 6669 | |
| 6670 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6671 | nested_vmx_failValid(vcpu, |
| 6672 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6673 | skip_emulated_instruction(vcpu); |
| 6674 | return 1; |
| 6675 | } |
| 6676 | break; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6677 | default: |
| 6678 | return 1; /* shouldn't happen */ |
| 6679 | } |
| 6680 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6681 | if (vmpointer) |
| 6682 | *vmpointer = vmptr; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6683 | return 0; |
| 6684 | } |
| 6685 | |
| 6686 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6687 | * Emulate the VMXON instruction. |
| 6688 | * Currently, we just remember that VMX is active, and do not save or even |
| 6689 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 6690 | * do not currently need to store anything in that guest-allocated memory |
| 6691 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 6692 | * argument is different from the VMXON pointer (which the spec says they do). |
| 6693 | */ |
| 6694 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 6695 | { |
| 6696 | struct kvm_segment cs; |
| 6697 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6698 | struct vmcs *shadow_vmcs; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6699 | const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED |
| 6700 | | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6701 | |
| 6702 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 6703 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 6704 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 6705 | * Otherwise, we should fail with #UD. We test these now: |
| 6706 | */ |
| 6707 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 6708 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 6709 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 6710 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6711 | return 1; |
| 6712 | } |
| 6713 | |
| 6714 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6715 | if (is_long_mode(vcpu) && !cs.l) { |
| 6716 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6717 | return 1; |
| 6718 | } |
| 6719 | |
| 6720 | if (vmx_get_cpl(vcpu)) { |
| 6721 | kvm_inject_gp(vcpu, 0); |
| 6722 | return 1; |
| 6723 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6724 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6725 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6726 | return 1; |
| 6727 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6728 | if (vmx->nested.vmxon) { |
| 6729 | nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION); |
| 6730 | skip_emulated_instruction(vcpu); |
| 6731 | return 1; |
| 6732 | } |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6733 | |
| 6734 | if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES) |
| 6735 | != VMXON_NEEDED_FEATURES) { |
| 6736 | kvm_inject_gp(vcpu, 0); |
| 6737 | return 1; |
| 6738 | } |
| 6739 | |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6740 | if (enable_shadow_vmcs) { |
| 6741 | shadow_vmcs = alloc_vmcs(); |
| 6742 | if (!shadow_vmcs) |
| 6743 | return -ENOMEM; |
| 6744 | /* mark vmcs as shadow */ |
| 6745 | shadow_vmcs->revision_id |= (1u << 31); |
| 6746 | /* init shadow vmcs */ |
| 6747 | vmcs_clear(shadow_vmcs); |
| 6748 | vmx->nested.current_shadow_vmcs = shadow_vmcs; |
| 6749 | } |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6750 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6751 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 6752 | vmx->nested.vmcs02_num = 0; |
| 6753 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6754 | hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC, |
| 6755 | HRTIMER_MODE_REL); |
| 6756 | vmx->nested.preemption_timer.function = vmx_preemption_timer_fn; |
| 6757 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6758 | vmx->nested.vmxon = true; |
| 6759 | |
| 6760 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6761 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6762 | return 1; |
| 6763 | } |
| 6764 | |
| 6765 | /* |
| 6766 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 6767 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 6768 | * slightly different). It also specifies what exception to inject otherwise. |
| 6769 | */ |
| 6770 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 6771 | { |
| 6772 | struct kvm_segment cs; |
| 6773 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6774 | |
| 6775 | if (!vmx->nested.vmxon) { |
| 6776 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6777 | return 0; |
| 6778 | } |
| 6779 | |
| 6780 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6781 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 6782 | (is_long_mode(vcpu) && !cs.l)) { |
| 6783 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6784 | return 0; |
| 6785 | } |
| 6786 | |
| 6787 | if (vmx_get_cpl(vcpu)) { |
| 6788 | kvm_inject_gp(vcpu, 0); |
| 6789 | return 0; |
| 6790 | } |
| 6791 | |
| 6792 | return 1; |
| 6793 | } |
| 6794 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6795 | static inline void nested_release_vmcs12(struct vcpu_vmx *vmx) |
| 6796 | { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6797 | if (vmx->nested.current_vmptr == -1ull) |
| 6798 | return; |
| 6799 | |
| 6800 | /* current_vmptr and current_vmcs12 are always set/reset together */ |
| 6801 | if (WARN_ON(vmx->nested.current_vmcs12 == NULL)) |
| 6802 | return; |
| 6803 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6804 | if (enable_shadow_vmcs) { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6805 | /* copy to memory all shadowed fields in case |
| 6806 | they were modified */ |
| 6807 | copy_shadow_to_vmcs12(vmx); |
| 6808 | vmx->nested.sync_shadow_vmcs = false; |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 6809 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 6810 | SECONDARY_EXEC_SHADOW_VMCS); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6811 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6812 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6813 | vmx->nested.posted_intr_nv = -1; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6814 | kunmap(vmx->nested.current_vmcs12_page); |
| 6815 | nested_release_page(vmx->nested.current_vmcs12_page); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6816 | vmx->nested.current_vmptr = -1ull; |
| 6817 | vmx->nested.current_vmcs12 = NULL; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6818 | } |
| 6819 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6820 | /* |
| 6821 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 6822 | * just stops using VMX. |
| 6823 | */ |
| 6824 | static void free_nested(struct vcpu_vmx *vmx) |
| 6825 | { |
| 6826 | if (!vmx->nested.vmxon) |
| 6827 | return; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6828 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6829 | vmx->nested.vmxon = false; |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 6830 | free_vpid(vmx->nested.vpid02); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6831 | nested_release_vmcs12(vmx); |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6832 | if (enable_shadow_vmcs) |
| 6833 | free_vmcs(vmx->nested.current_shadow_vmcs); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6834 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 6835 | if (vmx->nested.apic_access_page) { |
| 6836 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6837 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6838 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6839 | if (vmx->nested.virtual_apic_page) { |
| 6840 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6841 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6842 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6843 | if (vmx->nested.pi_desc_page) { |
| 6844 | kunmap(vmx->nested.pi_desc_page); |
| 6845 | nested_release_page(vmx->nested.pi_desc_page); |
| 6846 | vmx->nested.pi_desc_page = NULL; |
| 6847 | vmx->nested.pi_desc = NULL; |
| 6848 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6849 | |
| 6850 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6851 | } |
| 6852 | |
| 6853 | /* Emulate the VMXOFF instruction */ |
| 6854 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 6855 | { |
| 6856 | if (!nested_vmx_check_permission(vcpu)) |
| 6857 | return 1; |
| 6858 | free_nested(to_vmx(vcpu)); |
| 6859 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6860 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6861 | return 1; |
| 6862 | } |
| 6863 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6864 | /* Emulate the VMCLEAR instruction */ |
| 6865 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 6866 | { |
| 6867 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6868 | gpa_t vmptr; |
| 6869 | struct vmcs12 *vmcs12; |
| 6870 | struct page *page; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6871 | |
| 6872 | if (!nested_vmx_check_permission(vcpu)) |
| 6873 | return 1; |
| 6874 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6875 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr)) |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6876 | return 1; |
| 6877 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6878 | if (vmptr == vmx->nested.current_vmptr) |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6879 | nested_release_vmcs12(vmx); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6880 | |
| 6881 | page = nested_get_page(vcpu, vmptr); |
| 6882 | if (page == NULL) { |
| 6883 | /* |
| 6884 | * For accurate processor emulation, VMCLEAR beyond available |
| 6885 | * physical memory should do nothing at all. However, it is |
| 6886 | * possible that a nested vmx bug, not a guest hypervisor bug, |
| 6887 | * resulted in this case, so let's shut down before doing any |
| 6888 | * more damage: |
| 6889 | */ |
| 6890 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6891 | return 1; |
| 6892 | } |
| 6893 | vmcs12 = kmap(page); |
| 6894 | vmcs12->launch_state = 0; |
| 6895 | kunmap(page); |
| 6896 | nested_release_page(page); |
| 6897 | |
| 6898 | nested_free_vmcs02(vmx, vmptr); |
| 6899 | |
| 6900 | skip_emulated_instruction(vcpu); |
| 6901 | nested_vmx_succeed(vcpu); |
| 6902 | return 1; |
| 6903 | } |
| 6904 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6905 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 6906 | |
| 6907 | /* Emulate the VMLAUNCH instruction */ |
| 6908 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 6909 | { |
| 6910 | return nested_vmx_run(vcpu, true); |
| 6911 | } |
| 6912 | |
| 6913 | /* Emulate the VMRESUME instruction */ |
| 6914 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 6915 | { |
| 6916 | |
| 6917 | return nested_vmx_run(vcpu, false); |
| 6918 | } |
| 6919 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6920 | enum vmcs_field_type { |
| 6921 | VMCS_FIELD_TYPE_U16 = 0, |
| 6922 | VMCS_FIELD_TYPE_U64 = 1, |
| 6923 | VMCS_FIELD_TYPE_U32 = 2, |
| 6924 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 6925 | }; |
| 6926 | |
| 6927 | static inline int vmcs_field_type(unsigned long field) |
| 6928 | { |
| 6929 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 6930 | return VMCS_FIELD_TYPE_U32; |
| 6931 | return (field >> 13) & 0x3 ; |
| 6932 | } |
| 6933 | |
| 6934 | static inline int vmcs_field_readonly(unsigned long field) |
| 6935 | { |
| 6936 | return (((field >> 10) & 0x3) == 1); |
| 6937 | } |
| 6938 | |
| 6939 | /* |
| 6940 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 6941 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 6942 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 6943 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 6944 | * 64-bit fields are to be returned). |
| 6945 | */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6946 | static inline int vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 6947 | unsigned long field, u64 *ret) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6948 | { |
| 6949 | short offset = vmcs_field_to_offset(field); |
| 6950 | char *p; |
| 6951 | |
| 6952 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6953 | return offset; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6954 | |
| 6955 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 6956 | |
| 6957 | switch (vmcs_field_type(field)) { |
| 6958 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6959 | *ret = *((natural_width *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6960 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6961 | case VMCS_FIELD_TYPE_U16: |
| 6962 | *ret = *((u16 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6963 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6964 | case VMCS_FIELD_TYPE_U32: |
| 6965 | *ret = *((u32 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6966 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6967 | case VMCS_FIELD_TYPE_U64: |
| 6968 | *ret = *((u64 *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6969 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6970 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6971 | WARN_ON(1); |
| 6972 | return -ENOENT; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6973 | } |
| 6974 | } |
| 6975 | |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6976 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6977 | static inline int vmcs12_write_any(struct kvm_vcpu *vcpu, |
| 6978 | unsigned long field, u64 field_value){ |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6979 | short offset = vmcs_field_to_offset(field); |
| 6980 | char *p = ((char *) get_vmcs12(vcpu)) + offset; |
| 6981 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6982 | return offset; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6983 | |
| 6984 | switch (vmcs_field_type(field)) { |
| 6985 | case VMCS_FIELD_TYPE_U16: |
| 6986 | *(u16 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6987 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6988 | case VMCS_FIELD_TYPE_U32: |
| 6989 | *(u32 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6990 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6991 | case VMCS_FIELD_TYPE_U64: |
| 6992 | *(u64 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6993 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6994 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6995 | *(natural_width *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6996 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6997 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6998 | WARN_ON(1); |
| 6999 | return -ENOENT; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 7000 | } |
| 7001 | |
| 7002 | } |
| 7003 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7004 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx) |
| 7005 | { |
| 7006 | int i; |
| 7007 | unsigned long field; |
| 7008 | u64 field_value; |
| 7009 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7010 | const unsigned long *fields = shadow_read_write_fields; |
| 7011 | const int num_fields = max_shadow_read_write_fields; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7012 | |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7013 | preempt_disable(); |
| 7014 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7015 | vmcs_load(shadow_vmcs); |
| 7016 | |
| 7017 | for (i = 0; i < num_fields; i++) { |
| 7018 | field = fields[i]; |
| 7019 | switch (vmcs_field_type(field)) { |
| 7020 | case VMCS_FIELD_TYPE_U16: |
| 7021 | field_value = vmcs_read16(field); |
| 7022 | break; |
| 7023 | case VMCS_FIELD_TYPE_U32: |
| 7024 | field_value = vmcs_read32(field); |
| 7025 | break; |
| 7026 | case VMCS_FIELD_TYPE_U64: |
| 7027 | field_value = vmcs_read64(field); |
| 7028 | break; |
| 7029 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7030 | field_value = vmcs_readl(field); |
| 7031 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7032 | default: |
| 7033 | WARN_ON(1); |
| 7034 | continue; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7035 | } |
| 7036 | vmcs12_write_any(&vmx->vcpu, field, field_value); |
| 7037 | } |
| 7038 | |
| 7039 | vmcs_clear(shadow_vmcs); |
| 7040 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7041 | |
| 7042 | preempt_enable(); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7043 | } |
| 7044 | |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7045 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx) |
| 7046 | { |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7047 | const unsigned long *fields[] = { |
| 7048 | shadow_read_write_fields, |
| 7049 | shadow_read_only_fields |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7050 | }; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7051 | const int max_fields[] = { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7052 | max_shadow_read_write_fields, |
| 7053 | max_shadow_read_only_fields |
| 7054 | }; |
| 7055 | int i, q; |
| 7056 | unsigned long field; |
| 7057 | u64 field_value = 0; |
| 7058 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
| 7059 | |
| 7060 | vmcs_load(shadow_vmcs); |
| 7061 | |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7062 | for (q = 0; q < ARRAY_SIZE(fields); q++) { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7063 | for (i = 0; i < max_fields[q]; i++) { |
| 7064 | field = fields[q][i]; |
| 7065 | vmcs12_read_any(&vmx->vcpu, field, &field_value); |
| 7066 | |
| 7067 | switch (vmcs_field_type(field)) { |
| 7068 | case VMCS_FIELD_TYPE_U16: |
| 7069 | vmcs_write16(field, (u16)field_value); |
| 7070 | break; |
| 7071 | case VMCS_FIELD_TYPE_U32: |
| 7072 | vmcs_write32(field, (u32)field_value); |
| 7073 | break; |
| 7074 | case VMCS_FIELD_TYPE_U64: |
| 7075 | vmcs_write64(field, (u64)field_value); |
| 7076 | break; |
| 7077 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7078 | vmcs_writel(field, (long)field_value); |
| 7079 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7080 | default: |
| 7081 | WARN_ON(1); |
| 7082 | break; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7083 | } |
| 7084 | } |
| 7085 | } |
| 7086 | |
| 7087 | vmcs_clear(shadow_vmcs); |
| 7088 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 7089 | } |
| 7090 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7091 | /* |
| 7092 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 7093 | * used before) all generate the same failure when it is missing. |
| 7094 | */ |
| 7095 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 7096 | { |
| 7097 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7098 | if (vmx->nested.current_vmptr == -1ull) { |
| 7099 | nested_vmx_failInvalid(vcpu); |
| 7100 | skip_emulated_instruction(vcpu); |
| 7101 | return 0; |
| 7102 | } |
| 7103 | return 1; |
| 7104 | } |
| 7105 | |
| 7106 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 7107 | { |
| 7108 | unsigned long field; |
| 7109 | u64 field_value; |
| 7110 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7111 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7112 | gva_t gva = 0; |
| 7113 | |
| 7114 | if (!nested_vmx_check_permission(vcpu) || |
| 7115 | !nested_vmx_check_vmcs12(vcpu)) |
| 7116 | return 1; |
| 7117 | |
| 7118 | /* Decode instruction info and find the field to read */ |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7119 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7120 | /* Read the field, zero-extended to a u64 field_value */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7121 | if (vmcs12_read_any(vcpu, field, &field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7122 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 7123 | skip_emulated_instruction(vcpu); |
| 7124 | return 1; |
| 7125 | } |
| 7126 | /* |
| 7127 | * Now copy part of this value to register or memory, as requested. |
| 7128 | * Note that the number of bits actually copied is 32 or 64 depending |
| 7129 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 7130 | */ |
| 7131 | if (vmx_instruction_info & (1u << 10)) { |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7132 | kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7133 | field_value); |
| 7134 | } else { |
| 7135 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7136 | vmx_instruction_info, true, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7137 | return 1; |
| 7138 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 7139 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 7140 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 7141 | } |
| 7142 | |
| 7143 | nested_vmx_succeed(vcpu); |
| 7144 | skip_emulated_instruction(vcpu); |
| 7145 | return 1; |
| 7146 | } |
| 7147 | |
| 7148 | |
| 7149 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 7150 | { |
| 7151 | unsigned long field; |
| 7152 | gva_t gva; |
| 7153 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7154 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7155 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 7156 | * mode, and eventually we need to write that into a field of several |
| 7157 | * possible lengths. The code below first zero-extends the value to 64 |
| 7158 | * bit (field_value), and then copies only the approriate number of |
| 7159 | * bits into the vmcs12 field. |
| 7160 | */ |
| 7161 | u64 field_value = 0; |
| 7162 | struct x86_exception e; |
| 7163 | |
| 7164 | if (!nested_vmx_check_permission(vcpu) || |
| 7165 | !nested_vmx_check_vmcs12(vcpu)) |
| 7166 | return 1; |
| 7167 | |
| 7168 | if (vmx_instruction_info & (1u << 10)) |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7169 | field_value = kvm_register_readl(vcpu, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7170 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 7171 | else { |
| 7172 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7173 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7174 | return 1; |
| 7175 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7176 | &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7177 | kvm_inject_page_fault(vcpu, &e); |
| 7178 | return 1; |
| 7179 | } |
| 7180 | } |
| 7181 | |
| 7182 | |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7183 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7184 | if (vmcs_field_readonly(field)) { |
| 7185 | nested_vmx_failValid(vcpu, |
| 7186 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
| 7187 | skip_emulated_instruction(vcpu); |
| 7188 | return 1; |
| 7189 | } |
| 7190 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7191 | if (vmcs12_write_any(vcpu, field, field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7192 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 7193 | skip_emulated_instruction(vcpu); |
| 7194 | return 1; |
| 7195 | } |
| 7196 | |
| 7197 | nested_vmx_succeed(vcpu); |
| 7198 | skip_emulated_instruction(vcpu); |
| 7199 | return 1; |
| 7200 | } |
| 7201 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7202 | /* Emulate the VMPTRLD instruction */ |
| 7203 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 7204 | { |
| 7205 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7206 | gpa_t vmptr; |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7207 | |
| 7208 | if (!nested_vmx_check_permission(vcpu)) |
| 7209 | return 1; |
| 7210 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7211 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr)) |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7212 | return 1; |
| 7213 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7214 | if (vmx->nested.current_vmptr != vmptr) { |
| 7215 | struct vmcs12 *new_vmcs12; |
| 7216 | struct page *page; |
| 7217 | page = nested_get_page(vcpu, vmptr); |
| 7218 | if (page == NULL) { |
| 7219 | nested_vmx_failInvalid(vcpu); |
| 7220 | skip_emulated_instruction(vcpu); |
| 7221 | return 1; |
| 7222 | } |
| 7223 | new_vmcs12 = kmap(page); |
| 7224 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 7225 | kunmap(page); |
| 7226 | nested_release_page_clean(page); |
| 7227 | nested_vmx_failValid(vcpu, |
| 7228 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
| 7229 | skip_emulated_instruction(vcpu); |
| 7230 | return 1; |
| 7231 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7232 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7233 | nested_release_vmcs12(vmx); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7234 | vmx->nested.current_vmptr = vmptr; |
| 7235 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 7236 | vmx->nested.current_vmcs12_page = page; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7237 | if (enable_shadow_vmcs) { |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 7238 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 7239 | SECONDARY_EXEC_SHADOW_VMCS); |
Abel Gordon | 8a1b9dd | 2013-04-18 14:39:55 +0300 | [diff] [blame] | 7240 | vmcs_write64(VMCS_LINK_POINTER, |
| 7241 | __pa(vmx->nested.current_shadow_vmcs)); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7242 | vmx->nested.sync_shadow_vmcs = true; |
| 7243 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7244 | } |
| 7245 | |
| 7246 | nested_vmx_succeed(vcpu); |
| 7247 | skip_emulated_instruction(vcpu); |
| 7248 | return 1; |
| 7249 | } |
| 7250 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7251 | /* Emulate the VMPTRST instruction */ |
| 7252 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 7253 | { |
| 7254 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7255 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7256 | gva_t vmcs_gva; |
| 7257 | struct x86_exception e; |
| 7258 | |
| 7259 | if (!nested_vmx_check_permission(vcpu)) |
| 7260 | return 1; |
| 7261 | |
| 7262 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7263 | vmx_instruction_info, true, &vmcs_gva)) |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7264 | return 1; |
| 7265 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 7266 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 7267 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 7268 | sizeof(u64), &e)) { |
| 7269 | kvm_inject_page_fault(vcpu, &e); |
| 7270 | return 1; |
| 7271 | } |
| 7272 | nested_vmx_succeed(vcpu); |
| 7273 | skip_emulated_instruction(vcpu); |
| 7274 | return 1; |
| 7275 | } |
| 7276 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7277 | /* Emulate the INVEPT instruction */ |
| 7278 | static int handle_invept(struct kvm_vcpu *vcpu) |
| 7279 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7280 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7281 | u32 vmx_instruction_info, types; |
| 7282 | unsigned long type; |
| 7283 | gva_t gva; |
| 7284 | struct x86_exception e; |
| 7285 | struct { |
| 7286 | u64 eptp, gpa; |
| 7287 | } operand; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7288 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7289 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7290 | SECONDARY_EXEC_ENABLE_EPT) || |
| 7291 | !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7292 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7293 | return 1; |
| 7294 | } |
| 7295 | |
| 7296 | if (!nested_vmx_check_permission(vcpu)) |
| 7297 | return 1; |
| 7298 | |
| 7299 | if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) { |
| 7300 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7301 | return 1; |
| 7302 | } |
| 7303 | |
| 7304 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7305 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7306 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7307 | 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] | 7308 | |
| 7309 | if (!(types & (1UL << type))) { |
| 7310 | nested_vmx_failValid(vcpu, |
| 7311 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7312 | return 1; |
| 7313 | } |
| 7314 | |
| 7315 | /* According to the Intel VMX instruction reference, the memory |
| 7316 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7317 | */ |
| 7318 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7319 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7320 | return 1; |
| 7321 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7322 | sizeof(operand), &e)) { |
| 7323 | kvm_inject_page_fault(vcpu, &e); |
| 7324 | return 1; |
| 7325 | } |
| 7326 | |
| 7327 | switch (type) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7328 | case VMX_EPT_EXTENT_GLOBAL: |
| 7329 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 7330 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7331 | nested_vmx_succeed(vcpu); |
| 7332 | break; |
| 7333 | default: |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 7334 | /* Trap single context invalidation invept calls */ |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7335 | BUG_ON(1); |
| 7336 | break; |
| 7337 | } |
| 7338 | |
| 7339 | skip_emulated_instruction(vcpu); |
| 7340 | return 1; |
| 7341 | } |
| 7342 | |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7343 | static int handle_invvpid(struct kvm_vcpu *vcpu) |
| 7344 | { |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7345 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7346 | u32 vmx_instruction_info; |
| 7347 | unsigned long type, types; |
| 7348 | gva_t gva; |
| 7349 | struct x86_exception e; |
| 7350 | int vpid; |
| 7351 | |
| 7352 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7353 | SECONDARY_EXEC_ENABLE_VPID) || |
| 7354 | !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) { |
| 7355 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7356 | return 1; |
| 7357 | } |
| 7358 | |
| 7359 | if (!nested_vmx_check_permission(vcpu)) |
| 7360 | return 1; |
| 7361 | |
| 7362 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7363 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
| 7364 | |
| 7365 | types = (vmx->nested.nested_vmx_vpid_caps >> 8) & 0x7; |
| 7366 | |
| 7367 | if (!(types & (1UL << type))) { |
| 7368 | nested_vmx_failValid(vcpu, |
| 7369 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7370 | return 1; |
| 7371 | } |
| 7372 | |
| 7373 | /* according to the intel vmx instruction reference, the memory |
| 7374 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7375 | */ |
| 7376 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
| 7377 | vmx_instruction_info, false, &gva)) |
| 7378 | return 1; |
| 7379 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vpid, |
| 7380 | sizeof(u32), &e)) { |
| 7381 | kvm_inject_page_fault(vcpu, &e); |
| 7382 | return 1; |
| 7383 | } |
| 7384 | |
| 7385 | switch (type) { |
| 7386 | case VMX_VPID_EXTENT_ALL_CONTEXT: |
| 7387 | if (get_vmcs12(vcpu)->virtual_processor_id == 0) { |
| 7388 | nested_vmx_failValid(vcpu, |
| 7389 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7390 | return 1; |
| 7391 | } |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 7392 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02); |
Wanpeng Li | 99b83ac | 2015-10-13 09:12:21 -0700 | [diff] [blame] | 7393 | nested_vmx_succeed(vcpu); |
| 7394 | break; |
| 7395 | default: |
| 7396 | /* Trap single context invalidation invvpid calls */ |
| 7397 | BUG_ON(1); |
| 7398 | break; |
| 7399 | } |
| 7400 | |
| 7401 | skip_emulated_instruction(vcpu); |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7402 | return 1; |
| 7403 | } |
| 7404 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7405 | static int handle_pml_full(struct kvm_vcpu *vcpu) |
| 7406 | { |
| 7407 | unsigned long exit_qualification; |
| 7408 | |
| 7409 | trace_kvm_pml_full(vcpu->vcpu_id); |
| 7410 | |
| 7411 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7412 | |
| 7413 | /* |
| 7414 | * PML buffer FULL happened while executing iret from NMI, |
| 7415 | * "blocked by NMI" bit has to be set before next VM entry. |
| 7416 | */ |
| 7417 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 7418 | cpu_has_virtual_nmis() && |
| 7419 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
| 7420 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 7421 | GUEST_INTR_STATE_NMI); |
| 7422 | |
| 7423 | /* |
| 7424 | * PML buffer already flushed at beginning of VMEXIT. Nothing to do |
| 7425 | * here.., and there's no userspace involvement needed for PML. |
| 7426 | */ |
| 7427 | return 1; |
| 7428 | } |
| 7429 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7430 | static int handle_pcommit(struct kvm_vcpu *vcpu) |
| 7431 | { |
| 7432 | /* we never catch pcommit instruct for L1 guest. */ |
| 7433 | WARN_ON(1); |
| 7434 | return 1; |
| 7435 | } |
| 7436 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 7437 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7438 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 7439 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 7440 | * to be done to userspace and return 0. |
| 7441 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 7442 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7443 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 7444 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 7445 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 7446 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7447 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7448 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 7449 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 7450 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 7451 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 7452 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 7453 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 7454 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 7455 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 7456 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 7457 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 7458 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7459 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7460 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7461 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7462 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7463 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7464 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7465 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7466 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 7467 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 7468 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 7469 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 7470 | [EXIT_REASON_APIC_WRITE] = handle_apic_write, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7471 | [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 7472 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7473 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7474 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7475 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 7476 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 7477 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 7478 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7479 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait, |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 7480 | [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7481 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor, |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7482 | [EXIT_REASON_INVEPT] = handle_invept, |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7483 | [EXIT_REASON_INVVPID] = handle_invvpid, |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 7484 | [EXIT_REASON_XSAVES] = handle_xsaves, |
| 7485 | [EXIT_REASON_XRSTORS] = handle_xrstors, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7486 | [EXIT_REASON_PML_FULL] = handle_pml_full, |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7487 | [EXIT_REASON_PCOMMIT] = handle_pcommit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7488 | }; |
| 7489 | |
| 7490 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 7491 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7492 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7493 | static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu, |
| 7494 | struct vmcs12 *vmcs12) |
| 7495 | { |
| 7496 | unsigned long exit_qualification; |
| 7497 | gpa_t bitmap, last_bitmap; |
| 7498 | unsigned int port; |
| 7499 | int size; |
| 7500 | u8 b; |
| 7501 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7502 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
Zhihui Zhang | 2f0a639 | 2013-12-30 15:56:29 -0500 | [diff] [blame] | 7503 | return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING); |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7504 | |
| 7505 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7506 | |
| 7507 | port = exit_qualification >> 16; |
| 7508 | size = (exit_qualification & 7) + 1; |
| 7509 | |
| 7510 | last_bitmap = (gpa_t)-1; |
| 7511 | b = -1; |
| 7512 | |
| 7513 | while (size > 0) { |
| 7514 | if (port < 0x8000) |
| 7515 | bitmap = vmcs12->io_bitmap_a; |
| 7516 | else if (port < 0x10000) |
| 7517 | bitmap = vmcs12->io_bitmap_b; |
| 7518 | else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7519 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7520 | bitmap += (port & 0x7fff) / 8; |
| 7521 | |
| 7522 | if (last_bitmap != bitmap) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7523 | if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7524 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7525 | if (b & (1 << (port & 7))) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7526 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7527 | |
| 7528 | port++; |
| 7529 | size--; |
| 7530 | last_bitmap = bitmap; |
| 7531 | } |
| 7532 | |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7533 | return false; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7534 | } |
| 7535 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7536 | /* |
| 7537 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 7538 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 7539 | * disinterest in the current event (read or write a specific MSR) by using an |
| 7540 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 7541 | */ |
| 7542 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 7543 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 7544 | { |
| 7545 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 7546 | gpa_t bitmap; |
| 7547 | |
Jan Kiszka | cbd29cb | 2013-02-11 12:19:28 +0100 | [diff] [blame] | 7548 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7549 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7550 | |
| 7551 | /* |
| 7552 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 7553 | * for the four combinations of read/write and low/high MSR numbers. |
| 7554 | * First we need to figure out which of the four to use: |
| 7555 | */ |
| 7556 | bitmap = vmcs12->msr_bitmap; |
| 7557 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 7558 | bitmap += 2048; |
| 7559 | if (msr_index >= 0xc0000000) { |
| 7560 | msr_index -= 0xc0000000; |
| 7561 | bitmap += 1024; |
| 7562 | } |
| 7563 | |
| 7564 | /* Then read the msr_index'th bit from this bitmap: */ |
| 7565 | if (msr_index < 1024*8) { |
| 7566 | unsigned char b; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7567 | if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7568 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7569 | return 1 & (b >> (msr_index & 7)); |
| 7570 | } else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7571 | return true; /* let L1 handle the wrong parameter */ |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7572 | } |
| 7573 | |
| 7574 | /* |
| 7575 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 7576 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 7577 | * intercept (via guest_host_mask etc.) the current event. |
| 7578 | */ |
| 7579 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 7580 | struct vmcs12 *vmcs12) |
| 7581 | { |
| 7582 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7583 | int cr = exit_qualification & 15; |
| 7584 | int reg = (exit_qualification >> 8) & 15; |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 7585 | unsigned long val = kvm_register_readl(vcpu, reg); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7586 | |
| 7587 | switch ((exit_qualification >> 4) & 3) { |
| 7588 | case 0: /* mov to cr */ |
| 7589 | switch (cr) { |
| 7590 | case 0: |
| 7591 | if (vmcs12->cr0_guest_host_mask & |
| 7592 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7593 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7594 | break; |
| 7595 | case 3: |
| 7596 | if ((vmcs12->cr3_target_count >= 1 && |
| 7597 | vmcs12->cr3_target_value0 == val) || |
| 7598 | (vmcs12->cr3_target_count >= 2 && |
| 7599 | vmcs12->cr3_target_value1 == val) || |
| 7600 | (vmcs12->cr3_target_count >= 3 && |
| 7601 | vmcs12->cr3_target_value2 == val) || |
| 7602 | (vmcs12->cr3_target_count >= 4 && |
| 7603 | vmcs12->cr3_target_value3 == val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7604 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7605 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7606 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7607 | break; |
| 7608 | case 4: |
| 7609 | if (vmcs12->cr4_guest_host_mask & |
| 7610 | (vmcs12->cr4_read_shadow ^ val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7611 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7612 | break; |
| 7613 | case 8: |
| 7614 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7615 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7616 | break; |
| 7617 | } |
| 7618 | break; |
| 7619 | case 2: /* clts */ |
| 7620 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 7621 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7622 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7623 | break; |
| 7624 | case 1: /* mov from cr */ |
| 7625 | switch (cr) { |
| 7626 | case 3: |
| 7627 | if (vmcs12->cpu_based_vm_exec_control & |
| 7628 | CPU_BASED_CR3_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7629 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7630 | break; |
| 7631 | case 8: |
| 7632 | if (vmcs12->cpu_based_vm_exec_control & |
| 7633 | CPU_BASED_CR8_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7634 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7635 | break; |
| 7636 | } |
| 7637 | break; |
| 7638 | case 3: /* lmsw */ |
| 7639 | /* |
| 7640 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 7641 | * cr0. Other attempted changes are ignored, with no exit. |
| 7642 | */ |
| 7643 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 7644 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7645 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7646 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 7647 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 7648 | (val & 0x1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7649 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7650 | break; |
| 7651 | } |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7652 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7653 | } |
| 7654 | |
| 7655 | /* |
| 7656 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 7657 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 7658 | * when in is_guest_mode (L2). |
| 7659 | */ |
| 7660 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 7661 | { |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7662 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7663 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7664 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 957c897 | 2013-02-24 14:11:34 +0100 | [diff] [blame] | 7665 | u32 exit_reason = vmx->exit_reason; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7666 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 7667 | trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, |
| 7668 | vmcs_readl(EXIT_QUALIFICATION), |
| 7669 | vmx->idt_vectoring_info, |
| 7670 | intr_info, |
| 7671 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7672 | KVM_ISA_VMX); |
| 7673 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7674 | if (vmx->nested.nested_run_pending) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7675 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7676 | |
| 7677 | if (unlikely(vmx->fail)) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 7678 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 7679 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7680 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7681 | } |
| 7682 | |
| 7683 | switch (exit_reason) { |
| 7684 | case EXIT_REASON_EXCEPTION_NMI: |
| 7685 | if (!is_exception(intr_info)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7686 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7687 | else if (is_page_fault(intr_info)) |
| 7688 | return enable_ept; |
Anthoine Bourgeois | e504c90 | 2013-11-13 11:45:37 +0100 | [diff] [blame] | 7689 | else if (is_no_device(intr_info) && |
Paolo Bonzini | ccf9844 | 2014-02-27 22:54:11 +0100 | [diff] [blame] | 7690 | !(vmcs12->guest_cr0 & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7691 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7692 | return vmcs12->exception_bitmap & |
| 7693 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 7694 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7695 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7696 | case EXIT_REASON_TRIPLE_FAULT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7697 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7698 | case EXIT_REASON_PENDING_INTERRUPT: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7699 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7700 | case EXIT_REASON_NMI_WINDOW: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7701 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7702 | case EXIT_REASON_TASK_SWITCH: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7703 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7704 | case EXIT_REASON_CPUID: |
Marcelo Tosatti | bc61349 | 2014-09-18 18:24:57 -0300 | [diff] [blame] | 7705 | if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7706 | return false; |
| 7707 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7708 | case EXIT_REASON_HLT: |
| 7709 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 7710 | case EXIT_REASON_INVD: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7711 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7712 | case EXIT_REASON_INVLPG: |
| 7713 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 7714 | case EXIT_REASON_RDPMC: |
| 7715 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 7716 | case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7717 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 7718 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 7719 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 7720 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 7721 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 7722 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7723 | case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7724 | /* |
| 7725 | * VMX instructions trap unconditionally. This allows L1 to |
| 7726 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 7727 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7728 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7729 | case EXIT_REASON_CR_ACCESS: |
| 7730 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 7731 | case EXIT_REASON_DR_ACCESS: |
| 7732 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 7733 | case EXIT_REASON_IO_INSTRUCTION: |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7734 | return nested_vmx_exit_handled_io(vcpu, vmcs12); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7735 | case EXIT_REASON_MSR_READ: |
| 7736 | case EXIT_REASON_MSR_WRITE: |
| 7737 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 7738 | case EXIT_REASON_INVALID_STATE: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7739 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7740 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 7741 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 7742 | case EXIT_REASON_MONITOR_TRAP_FLAG: |
| 7743 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7744 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 7745 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 7746 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 7747 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 7748 | nested_cpu_has2(vmcs12, |
| 7749 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 7750 | case EXIT_REASON_MCE_DURING_VMENTRY: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7751 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7752 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7753 | return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7754 | case EXIT_REASON_APIC_ACCESS: |
| 7755 | return nested_cpu_has2(vmcs12, |
| 7756 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 7757 | case EXIT_REASON_APIC_WRITE: |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 7758 | case EXIT_REASON_EOI_INDUCED: |
| 7759 | /* apic_write and eoi_induced should exit unconditionally. */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7760 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7761 | case EXIT_REASON_EPT_VIOLATION: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7762 | /* |
| 7763 | * L0 always deals with the EPT violation. If nested EPT is |
| 7764 | * used, and the nested mmu code discovers that the address is |
| 7765 | * missing in the guest EPT table (EPT12), the EPT violation |
| 7766 | * will be injected with nested_ept_inject_page_fault() |
| 7767 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7768 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7769 | case EXIT_REASON_EPT_MISCONFIG: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7770 | /* |
| 7771 | * L2 never uses directly L1's EPT, but rather L0's own EPT |
| 7772 | * table (shadow on EPT) or a merged EPT table that L0 built |
| 7773 | * (EPT on EPT). So any problems with the structure of the |
| 7774 | * table is L0's fault. |
| 7775 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7776 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7777 | case EXIT_REASON_WBINVD: |
| 7778 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 7779 | case EXIT_REASON_XSETBV: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7780 | return true; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 7781 | case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS: |
| 7782 | /* |
| 7783 | * This should never happen, since it is not possible to |
| 7784 | * set XSS to a non-zero value---neither in L1 nor in L2. |
| 7785 | * If if it were, XSS would have to be checked against |
| 7786 | * the XSS exit bitmap in vmcs12. |
| 7787 | */ |
| 7788 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7789 | case EXIT_REASON_PCOMMIT: |
| 7790 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7791 | default: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7792 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7793 | } |
| 7794 | } |
| 7795 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 7796 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 7797 | { |
| 7798 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 7799 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7800 | } |
| 7801 | |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 7802 | static int vmx_create_pml_buffer(struct vcpu_vmx *vmx) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7803 | { |
| 7804 | struct page *pml_pg; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7805 | |
| 7806 | pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 7807 | if (!pml_pg) |
| 7808 | return -ENOMEM; |
| 7809 | |
| 7810 | vmx->pml_pg = pml_pg; |
| 7811 | |
| 7812 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 7813 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7814 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7815 | return 0; |
| 7816 | } |
| 7817 | |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 7818 | static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7819 | { |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 7820 | if (vmx->pml_pg) { |
| 7821 | __free_page(vmx->pml_pg); |
| 7822 | vmx->pml_pg = NULL; |
| 7823 | } |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7824 | } |
| 7825 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7826 | static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7827 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7828 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7829 | u64 *pml_buf; |
| 7830 | u16 pml_idx; |
| 7831 | |
| 7832 | pml_idx = vmcs_read16(GUEST_PML_INDEX); |
| 7833 | |
| 7834 | /* Do nothing if PML buffer is empty */ |
| 7835 | if (pml_idx == (PML_ENTITY_NUM - 1)) |
| 7836 | return; |
| 7837 | |
| 7838 | /* PML index always points to next available PML buffer entity */ |
| 7839 | if (pml_idx >= PML_ENTITY_NUM) |
| 7840 | pml_idx = 0; |
| 7841 | else |
| 7842 | pml_idx++; |
| 7843 | |
| 7844 | pml_buf = page_address(vmx->pml_pg); |
| 7845 | for (; pml_idx < PML_ENTITY_NUM; pml_idx++) { |
| 7846 | u64 gpa; |
| 7847 | |
| 7848 | gpa = pml_buf[pml_idx]; |
| 7849 | WARN_ON(gpa & (PAGE_SIZE - 1)); |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7850 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7851 | } |
| 7852 | |
| 7853 | /* reset PML index */ |
| 7854 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7855 | } |
| 7856 | |
| 7857 | /* |
| 7858 | * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap. |
| 7859 | * Called before reporting dirty_bitmap to userspace. |
| 7860 | */ |
| 7861 | static void kvm_flush_pml_buffers(struct kvm *kvm) |
| 7862 | { |
| 7863 | int i; |
| 7864 | struct kvm_vcpu *vcpu; |
| 7865 | /* |
| 7866 | * We only need to kick vcpu out of guest mode here, as PML buffer |
| 7867 | * is flushed at beginning of all VMEXITs, and it's obvious that only |
| 7868 | * vcpus running in guest are possible to have unflushed GPAs in PML |
| 7869 | * buffer. |
| 7870 | */ |
| 7871 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 7872 | kvm_vcpu_kick(vcpu); |
| 7873 | } |
| 7874 | |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 7875 | static void vmx_dump_sel(char *name, uint32_t sel) |
| 7876 | { |
| 7877 | pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n", |
| 7878 | name, vmcs_read32(sel), |
| 7879 | vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR), |
| 7880 | vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR), |
| 7881 | vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR)); |
| 7882 | } |
| 7883 | |
| 7884 | static void vmx_dump_dtsel(char *name, uint32_t limit) |
| 7885 | { |
| 7886 | pr_err("%s limit=0x%08x, base=0x%016lx\n", |
| 7887 | name, vmcs_read32(limit), |
| 7888 | vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT)); |
| 7889 | } |
| 7890 | |
| 7891 | static void dump_vmcs(void) |
| 7892 | { |
| 7893 | u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS); |
| 7894 | u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS); |
| 7895 | u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 7896 | u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); |
| 7897 | u32 secondary_exec_control = 0; |
| 7898 | unsigned long cr4 = vmcs_readl(GUEST_CR4); |
| 7899 | u64 efer = vmcs_readl(GUEST_IA32_EFER); |
| 7900 | int i, n; |
| 7901 | |
| 7902 | if (cpu_has_secondary_exec_ctrls()) |
| 7903 | secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7904 | |
| 7905 | pr_err("*** Guest State ***\n"); |
| 7906 | pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7907 | vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW), |
| 7908 | vmcs_readl(CR0_GUEST_HOST_MASK)); |
| 7909 | pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7910 | cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK)); |
| 7911 | pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3)); |
| 7912 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) && |
| 7913 | (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) |
| 7914 | { |
| 7915 | pr_err("PDPTR0 = 0x%016lx PDPTR1 = 0x%016lx\n", |
| 7916 | vmcs_readl(GUEST_PDPTR0), vmcs_readl(GUEST_PDPTR1)); |
| 7917 | pr_err("PDPTR2 = 0x%016lx PDPTR3 = 0x%016lx\n", |
| 7918 | vmcs_readl(GUEST_PDPTR2), vmcs_readl(GUEST_PDPTR3)); |
| 7919 | } |
| 7920 | pr_err("RSP = 0x%016lx RIP = 0x%016lx\n", |
| 7921 | vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP)); |
| 7922 | pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n", |
| 7923 | vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7)); |
| 7924 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7925 | vmcs_readl(GUEST_SYSENTER_ESP), |
| 7926 | vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP)); |
| 7927 | vmx_dump_sel("CS: ", GUEST_CS_SELECTOR); |
| 7928 | vmx_dump_sel("DS: ", GUEST_DS_SELECTOR); |
| 7929 | vmx_dump_sel("SS: ", GUEST_SS_SELECTOR); |
| 7930 | vmx_dump_sel("ES: ", GUEST_ES_SELECTOR); |
| 7931 | vmx_dump_sel("FS: ", GUEST_FS_SELECTOR); |
| 7932 | vmx_dump_sel("GS: ", GUEST_GS_SELECTOR); |
| 7933 | vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT); |
| 7934 | vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR); |
| 7935 | vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT); |
| 7936 | vmx_dump_sel("TR: ", GUEST_TR_SELECTOR); |
| 7937 | if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) || |
| 7938 | (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER))) |
| 7939 | pr_err("EFER = 0x%016llx PAT = 0x%016lx\n", |
| 7940 | efer, vmcs_readl(GUEST_IA32_PAT)); |
| 7941 | pr_err("DebugCtl = 0x%016lx DebugExceptions = 0x%016lx\n", |
| 7942 | vmcs_readl(GUEST_IA32_DEBUGCTL), |
| 7943 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS)); |
| 7944 | if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7945 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7946 | vmcs_readl(GUEST_IA32_PERF_GLOBAL_CTRL)); |
| 7947 | if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS) |
| 7948 | pr_err("BndCfgS = 0x%016lx\n", vmcs_readl(GUEST_BNDCFGS)); |
| 7949 | pr_err("Interruptibility = %08x ActivityState = %08x\n", |
| 7950 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO), |
| 7951 | vmcs_read32(GUEST_ACTIVITY_STATE)); |
| 7952 | if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) |
| 7953 | pr_err("InterruptStatus = %04x\n", |
| 7954 | vmcs_read16(GUEST_INTR_STATUS)); |
| 7955 | |
| 7956 | pr_err("*** Host State ***\n"); |
| 7957 | pr_err("RIP = 0x%016lx RSP = 0x%016lx\n", |
| 7958 | vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP)); |
| 7959 | pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n", |
| 7960 | vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR), |
| 7961 | vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR), |
| 7962 | vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR), |
| 7963 | vmcs_read16(HOST_TR_SELECTOR)); |
| 7964 | pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n", |
| 7965 | vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE), |
| 7966 | vmcs_readl(HOST_TR_BASE)); |
| 7967 | pr_err("GDTBase=%016lx IDTBase=%016lx\n", |
| 7968 | vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE)); |
| 7969 | pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n", |
| 7970 | vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3), |
| 7971 | vmcs_readl(HOST_CR4)); |
| 7972 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7973 | vmcs_readl(HOST_IA32_SYSENTER_ESP), |
| 7974 | vmcs_read32(HOST_IA32_SYSENTER_CS), |
| 7975 | vmcs_readl(HOST_IA32_SYSENTER_EIP)); |
| 7976 | if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER)) |
| 7977 | pr_err("EFER = 0x%016lx PAT = 0x%016lx\n", |
| 7978 | vmcs_readl(HOST_IA32_EFER), vmcs_readl(HOST_IA32_PAT)); |
| 7979 | if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7980 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7981 | vmcs_readl(HOST_IA32_PERF_GLOBAL_CTRL)); |
| 7982 | |
| 7983 | pr_err("*** Control State ***\n"); |
| 7984 | pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n", |
| 7985 | pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control); |
| 7986 | pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl); |
| 7987 | pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n", |
| 7988 | vmcs_read32(EXCEPTION_BITMAP), |
| 7989 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK), |
| 7990 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH)); |
| 7991 | pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7992 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 7993 | vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE), |
| 7994 | vmcs_read32(VM_ENTRY_INSTRUCTION_LEN)); |
| 7995 | pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7996 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 7997 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7998 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN)); |
| 7999 | pr_err(" reason=%08x qualification=%016lx\n", |
| 8000 | vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION)); |
| 8001 | pr_err("IDTVectoring: info=%08x errcode=%08x\n", |
| 8002 | vmcs_read32(IDT_VECTORING_INFO_FIELD), |
| 8003 | vmcs_read32(IDT_VECTORING_ERROR_CODE)); |
| 8004 | pr_err("TSC Offset = 0x%016lx\n", vmcs_readl(TSC_OFFSET)); |
| 8005 | if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) |
| 8006 | pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD)); |
| 8007 | if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) |
| 8008 | pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV)); |
| 8009 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT)) |
| 8010 | pr_err("EPT pointer = 0x%016lx\n", vmcs_readl(EPT_POINTER)); |
| 8011 | n = vmcs_read32(CR3_TARGET_COUNT); |
| 8012 | for (i = 0; i + 1 < n; i += 4) |
| 8013 | pr_err("CR3 target%u=%016lx target%u=%016lx\n", |
| 8014 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2), |
| 8015 | i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2)); |
| 8016 | if (i < n) |
| 8017 | pr_err("CR3 target%u=%016lx\n", |
| 8018 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2)); |
| 8019 | if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING) |
| 8020 | pr_err("PLE Gap=%08x Window=%08x\n", |
| 8021 | vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW)); |
| 8022 | if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID) |
| 8023 | pr_err("Virtual processor ID = 0x%04x\n", |
| 8024 | vmcs_read16(VIRTUAL_PROCESSOR_ID)); |
| 8025 | } |
| 8026 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8027 | /* |
| 8028 | * The guest has exited. See if we can fix it or if we need userspace |
| 8029 | * assistance. |
| 8030 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8031 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8032 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8033 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8034 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8035 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8036 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8037 | /* |
| 8038 | * Flush logged GPAs PML buffer, this will make dirty_bitmap more |
| 8039 | * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before |
| 8040 | * querying dirty_bitmap, we only need to kick all vcpus out of guest |
| 8041 | * mode as if vcpus is in root mode, the PML buffer must has been |
| 8042 | * flushed already. |
| 8043 | */ |
| 8044 | if (enable_pml) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8045 | vmx_flush_pml_buffer(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8046 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8047 | /* If guest state is invalid, start emulating */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8048 | if (vmx->emulation_required) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 8049 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 8050 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8051 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8052 | nested_vmx_vmexit(vcpu, exit_reason, |
| 8053 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8054 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8055 | return 1; |
| 8056 | } |
| 8057 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8058 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8059 | dump_vmcs(); |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8060 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8061 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 8062 | = exit_reason; |
| 8063 | return 0; |
| 8064 | } |
| 8065 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8066 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8067 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8068 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8069 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 8070 | return 0; |
| 8071 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8072 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8073 | /* |
| 8074 | * Note: |
| 8075 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 8076 | * delivery event since it indicates guest is accessing MMIO. |
| 8077 | * The vm-exit can be triggered again after return to guest that |
| 8078 | * will cause infinite loop. |
| 8079 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 8080 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 8081 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 8082 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8083 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 8084 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 8085 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
| 8086 | vcpu->run->internal.ndata = 2; |
| 8087 | vcpu->run->internal.data[0] = vectoring_info; |
| 8088 | vcpu->run->internal.data[1] = exit_reason; |
| 8089 | return 0; |
| 8090 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8091 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8092 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 8093 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 8094 | get_vmcs12(vcpu))))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 8095 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8096 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8097 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 8098 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8099 | /* |
| 8100 | * This CPU don't support us in finding the end of an |
| 8101 | * NMI-blocked window if the guest runs with IRQs |
| 8102 | * disabled. So we pull the trigger after 1 s of |
| 8103 | * futile waiting, but inform the user about this. |
| 8104 | */ |
| 8105 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 8106 | "state on VCPU %d after 1 s timeout\n", |
| 8107 | __func__, vcpu->vcpu_id); |
| 8108 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8109 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8110 | } |
| 8111 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8112 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 8113 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8114 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8115 | else { |
Michael S. Tsirkin | 2bc19dc | 2014-09-18 16:21:16 +0300 | [diff] [blame] | 8116 | WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason); |
| 8117 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 8118 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8119 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8120 | } |
| 8121 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8122 | 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] | 8123 | { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8124 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8125 | |
| 8126 | if (is_guest_mode(vcpu) && |
| 8127 | nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 8128 | return; |
| 8129 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8130 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8131 | vmcs_write32(TPR_THRESHOLD, 0); |
| 8132 | return; |
| 8133 | } |
| 8134 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8135 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8136 | } |
| 8137 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8138 | static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set) |
| 8139 | { |
| 8140 | u32 sec_exec_control; |
| 8141 | |
| 8142 | /* |
| 8143 | * There is not point to enable virtualize x2apic without enable |
| 8144 | * apicv |
| 8145 | */ |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8146 | if (!cpu_has_vmx_virtualize_x2apic_mode() || |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8147 | !vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8148 | return; |
| 8149 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8150 | if (!cpu_need_tpr_shadow(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8151 | return; |
| 8152 | |
| 8153 | sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8154 | |
| 8155 | if (set) { |
| 8156 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8157 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8158 | } else { |
| 8159 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8160 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8161 | } |
| 8162 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control); |
| 8163 | |
| 8164 | vmx_set_msr_bitmap(vcpu); |
| 8165 | } |
| 8166 | |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8167 | static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa) |
| 8168 | { |
| 8169 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8170 | |
| 8171 | /* |
| 8172 | * Currently we do not handle the nested case where L2 has an |
| 8173 | * APIC access page of its own; that page is still pinned. |
| 8174 | * Hence, we skip the case where the VCPU is in guest mode _and_ |
| 8175 | * L1 prepared an APIC access page for L2. |
| 8176 | * |
| 8177 | * For the case where L1 and L2 share the same APIC access page |
| 8178 | * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear |
| 8179 | * in the vmcs12), this function will only update either the vmcs01 |
| 8180 | * or the vmcs02. If the former, the vmcs02 will be updated by |
| 8181 | * prepare_vmcs02. If the latter, the vmcs01 will be updated in |
| 8182 | * the next L2->L1 exit. |
| 8183 | */ |
| 8184 | if (!is_guest_mode(vcpu) || |
| 8185 | !nested_cpu_has2(vmx->nested.current_vmcs12, |
| 8186 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 8187 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 8188 | } |
| 8189 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8190 | static void vmx_hwapic_isr_update(struct kvm *kvm, int isr) |
| 8191 | { |
| 8192 | u16 status; |
| 8193 | u8 old; |
| 8194 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8195 | if (isr == -1) |
| 8196 | isr = 0; |
| 8197 | |
| 8198 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8199 | old = status >> 8; |
| 8200 | if (isr != old) { |
| 8201 | status &= 0xff; |
| 8202 | status |= isr << 8; |
| 8203 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8204 | } |
| 8205 | } |
| 8206 | |
| 8207 | static void vmx_set_rvi(int vector) |
| 8208 | { |
| 8209 | u16 status; |
| 8210 | u8 old; |
| 8211 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8212 | if (vector == -1) |
| 8213 | vector = 0; |
| 8214 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8215 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8216 | old = (u8)status & 0xff; |
| 8217 | if ((u8)vector != old) { |
| 8218 | status &= ~0xff; |
| 8219 | status |= (u8)vector; |
| 8220 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8221 | } |
| 8222 | } |
| 8223 | |
| 8224 | static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr) |
| 8225 | { |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8226 | if (!is_guest_mode(vcpu)) { |
| 8227 | vmx_set_rvi(max_irr); |
| 8228 | return; |
| 8229 | } |
| 8230 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8231 | if (max_irr == -1) |
| 8232 | return; |
| 8233 | |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8234 | /* |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8235 | * In guest mode. If a vmexit is needed, vmx_check_nested_events |
| 8236 | * handles it. |
| 8237 | */ |
| 8238 | if (nested_exit_on_intr(vcpu)) |
| 8239 | return; |
| 8240 | |
| 8241 | /* |
| 8242 | * Else, fall back to pre-APICv interrupt injection since L2 |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8243 | * is run without virtual interrupt delivery. |
| 8244 | */ |
| 8245 | if (!kvm_event_needs_reinjection(vcpu) && |
| 8246 | vmx_interrupt_allowed(vcpu)) { |
| 8247 | kvm_queue_interrupt(vcpu, max_irr, false); |
| 8248 | vmx_inject_irq(vcpu); |
| 8249 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8250 | } |
| 8251 | |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 8252 | static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8253 | { |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 8254 | u64 *eoi_exit_bitmap = vcpu->arch.eoi_exit_bitmap; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8255 | if (!vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8256 | return; |
| 8257 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8258 | vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]); |
| 8259 | vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]); |
| 8260 | vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]); |
| 8261 | vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]); |
| 8262 | } |
| 8263 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8264 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8265 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8266 | u32 exit_intr_info; |
| 8267 | |
| 8268 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 8269 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 8270 | return; |
| 8271 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8272 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8273 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8274 | |
| 8275 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8276 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8277 | kvm_machine_check(); |
| 8278 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8279 | /* We need to handle NMIs before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8280 | if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR && |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8281 | (exit_intr_info & INTR_INFO_VALID_MASK)) { |
| 8282 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8283 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8284 | kvm_after_handle_nmi(&vmx->vcpu); |
| 8285 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8286 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8287 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8288 | static void vmx_handle_external_intr(struct kvm_vcpu *vcpu) |
| 8289 | { |
| 8290 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8291 | |
| 8292 | /* |
| 8293 | * If external interrupt exists, IF bit is set in rflags/eflags on the |
| 8294 | * interrupt stack frame, and interrupt will be enabled on a return |
| 8295 | * from interrupt handler. |
| 8296 | */ |
| 8297 | if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK)) |
| 8298 | == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) { |
| 8299 | unsigned int vector; |
| 8300 | unsigned long entry; |
| 8301 | gate_desc *desc; |
| 8302 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8303 | #ifdef CONFIG_X86_64 |
| 8304 | unsigned long tmp; |
| 8305 | #endif |
| 8306 | |
| 8307 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8308 | desc = (gate_desc *)vmx->host_idt_base + vector; |
| 8309 | entry = gate_offset(*desc); |
| 8310 | asm volatile( |
| 8311 | #ifdef CONFIG_X86_64 |
| 8312 | "mov %%" _ASM_SP ", %[sp]\n\t" |
| 8313 | "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t" |
| 8314 | "push $%c[ss]\n\t" |
| 8315 | "push %[sp]\n\t" |
| 8316 | #endif |
| 8317 | "pushf\n\t" |
| 8318 | "orl $0x200, (%%" _ASM_SP ")\n\t" |
| 8319 | __ASM_SIZE(push) " $%c[cs]\n\t" |
| 8320 | "call *%[entry]\n\t" |
| 8321 | : |
| 8322 | #ifdef CONFIG_X86_64 |
| 8323 | [sp]"=&r"(tmp) |
| 8324 | #endif |
| 8325 | : |
| 8326 | [entry]"r"(entry), |
| 8327 | [ss]"i"(__KERNEL_DS), |
| 8328 | [cs]"i"(__KERNEL_CS) |
| 8329 | ); |
| 8330 | } else |
| 8331 | local_irq_enable(); |
| 8332 | } |
| 8333 | |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 8334 | static bool vmx_has_high_real_mode_segbase(void) |
| 8335 | { |
| 8336 | return enable_unrestricted_guest || emulate_invalid_guest_state; |
| 8337 | } |
| 8338 | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 8339 | static bool vmx_mpx_supported(void) |
| 8340 | { |
| 8341 | return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) && |
| 8342 | (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS); |
| 8343 | } |
| 8344 | |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 8345 | static bool vmx_xsaves_supported(void) |
| 8346 | { |
| 8347 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 8348 | SECONDARY_EXEC_XSAVES; |
| 8349 | } |
| 8350 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8351 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 8352 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8353 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8354 | bool unblock_nmi; |
| 8355 | u8 vector; |
| 8356 | bool idtv_info_valid; |
| 8357 | |
| 8358 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8359 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8360 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8361 | if (vmx->nmi_known_unmasked) |
| 8362 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8363 | /* |
| 8364 | * Can't use vmx->exit_intr_info since we're not sure what |
| 8365 | * the exit reason is. |
| 8366 | */ |
| 8367 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8368 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 8369 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8370 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8371 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8372 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 8373 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8374 | * SDM 3: 23.2.2 (September 2008) |
| 8375 | * Bit 12 is undefined in any of the following cases: |
| 8376 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 8377 | * information field. |
| 8378 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8379 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8380 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 8381 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8382 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 8383 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8384 | else |
| 8385 | vmx->nmi_known_unmasked = |
| 8386 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 8387 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8388 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 8389 | vmx->vnmi_blocked_time += |
| 8390 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8391 | } |
| 8392 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8393 | static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8394 | u32 idt_vectoring_info, |
| 8395 | int instr_len_field, |
| 8396 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8397 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8398 | u8 vector; |
| 8399 | int type; |
| 8400 | bool idtv_info_valid; |
| 8401 | |
| 8402 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8403 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8404 | vcpu->arch.nmi_injected = false; |
| 8405 | kvm_clear_exception_queue(vcpu); |
| 8406 | kvm_clear_interrupt_queue(vcpu); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8407 | |
| 8408 | if (!idtv_info_valid) |
| 8409 | return; |
| 8410 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8411 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8412 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8413 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 8414 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8415 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 8416 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8417 | case INTR_TYPE_NMI_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8418 | vcpu->arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8419 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8420 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8421 | * Clear bit "block by NMI" before VM entry if a NMI |
| 8422 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8423 | */ |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8424 | vmx_set_nmi_mask(vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8425 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8426 | case INTR_TYPE_SOFT_EXCEPTION: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8427 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8428 | /* fall through */ |
| 8429 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8430 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8431 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8432 | kvm_requeue_exception_e(vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8433 | } else |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8434 | kvm_requeue_exception(vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8435 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8436 | case INTR_TYPE_SOFT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8437 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8438 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8439 | case INTR_TYPE_EXT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8440 | kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8441 | break; |
| 8442 | default: |
| 8443 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 8444 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8445 | } |
| 8446 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8447 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 8448 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8449 | __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8450 | VM_EXIT_INSTRUCTION_LEN, |
| 8451 | IDT_VECTORING_ERROR_CODE); |
| 8452 | } |
| 8453 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8454 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 8455 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8456 | __vmx_complete_interrupts(vcpu, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8457 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8458 | VM_ENTRY_INSTRUCTION_LEN, |
| 8459 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 8460 | |
| 8461 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 8462 | } |
| 8463 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8464 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 8465 | { |
| 8466 | int i, nr_msrs; |
| 8467 | struct perf_guest_switch_msr *msrs; |
| 8468 | |
| 8469 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 8470 | |
| 8471 | if (!msrs) |
| 8472 | return; |
| 8473 | |
| 8474 | for (i = 0; i < nr_msrs; i++) |
| 8475 | if (msrs[i].host == msrs[i].guest) |
| 8476 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 8477 | else |
| 8478 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 8479 | msrs[i].host); |
| 8480 | } |
| 8481 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 8482 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8483 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8484 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8485 | unsigned long debugctlmsr, cr4; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8486 | |
| 8487 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 8488 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 8489 | vmx->entry_time = ktime_get(); |
| 8490 | |
| 8491 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 8492 | start emulation until we arrive back to a valid state */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8493 | if (vmx->emulation_required) |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8494 | return; |
| 8495 | |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 8496 | if (vmx->ple_window_dirty) { |
| 8497 | vmx->ple_window_dirty = false; |
| 8498 | vmcs_write32(PLE_WINDOW, vmx->ple_window); |
| 8499 | } |
| 8500 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 8501 | if (vmx->nested.sync_shadow_vmcs) { |
| 8502 | copy_vmcs12_to_shadow(vmx); |
| 8503 | vmx->nested.sync_shadow_vmcs = false; |
| 8504 | } |
| 8505 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8506 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8507 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 8508 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8509 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 8510 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 8511 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8512 | if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) { |
| 8513 | vmcs_writel(HOST_CR4, cr4); |
| 8514 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 8515 | } |
| 8516 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8517 | /* When single-stepping over STI and MOV SS, we must clear the |
| 8518 | * corresponding interruptibility bits in the guest state. Otherwise |
| 8519 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 8520 | * exceptions being set, but that's not correct for the guest debugging |
| 8521 | * case. */ |
| 8522 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 8523 | vmx_set_interrupt_shadow(vcpu, 0); |
| 8524 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8525 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8526 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8527 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8528 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8529 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8530 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8531 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 8532 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 8533 | "push %%" _ASM_CX " \n\t" |
| 8534 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8535 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8536 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8537 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8538 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8539 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8540 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 8541 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 8542 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8543 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8544 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8545 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8546 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8547 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8548 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8549 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 8550 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 8551 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 8552 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 8553 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 8554 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8555 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8556 | "mov %c[r8](%0), %%r8 \n\t" |
| 8557 | "mov %c[r9](%0), %%r9 \n\t" |
| 8558 | "mov %c[r10](%0), %%r10 \n\t" |
| 8559 | "mov %c[r11](%0), %%r11 \n\t" |
| 8560 | "mov %c[r12](%0), %%r12 \n\t" |
| 8561 | "mov %c[r13](%0), %%r13 \n\t" |
| 8562 | "mov %c[r14](%0), %%r14 \n\t" |
| 8563 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8564 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8565 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8566 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8567 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8568 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8569 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8570 | "jmp 2f \n\t" |
| 8571 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 8572 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8573 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8574 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8575 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8576 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 8577 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 8578 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 8579 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 8580 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 8581 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 8582 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8583 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8584 | "mov %%r8, %c[r8](%0) \n\t" |
| 8585 | "mov %%r9, %c[r9](%0) \n\t" |
| 8586 | "mov %%r10, %c[r10](%0) \n\t" |
| 8587 | "mov %%r11, %c[r11](%0) \n\t" |
| 8588 | "mov %%r12, %c[r12](%0) \n\t" |
| 8589 | "mov %%r13, %c[r13](%0) \n\t" |
| 8590 | "mov %%r14, %c[r14](%0) \n\t" |
| 8591 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8592 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8593 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 8594 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8595 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8596 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8597 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8598 | ".pushsection .rodata \n\t" |
| 8599 | ".global vmx_return \n\t" |
| 8600 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 8601 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8602 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8603 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8604 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd4 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8605 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8606 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 8607 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 8608 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 8609 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 8610 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 8611 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 8612 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8613 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8614 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 8615 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 8616 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 8617 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 8618 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 8619 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 8620 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 8621 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8622 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8623 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 8624 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8625 | : "cc", "memory" |
| 8626 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8627 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8628 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8629 | #else |
| 8630 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8631 | #endif |
| 8632 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8633 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8634 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 8635 | if (debugctlmsr) |
| 8636 | update_debugctlmsr(debugctlmsr); |
| 8637 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 8638 | #ifndef CONFIG_X86_64 |
| 8639 | /* |
| 8640 | * The sysexit path does not restore ds/es, so we must set them to |
| 8641 | * a reasonable value ourselves. |
| 8642 | * |
| 8643 | * We can't defer this to vmx_load_host_state() since that function |
| 8644 | * may be executed in interrupt context, which saves and restore segments |
| 8645 | * around it, nullifying its effect. |
| 8646 | */ |
| 8647 | loadsegment(ds, __USER_DS); |
| 8648 | loadsegment(es, __USER_DS); |
| 8649 | #endif |
| 8650 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 8651 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 8652 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8653 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 8654 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8655 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8656 | vcpu->arch.regs_dirty = 0; |
| 8657 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8658 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 8659 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8660 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 8661 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8662 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Jan Kiszka | 1e2b1dd | 2011-09-12 10:52:24 +0200 | [diff] [blame] | 8663 | trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8664 | |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 8665 | /* |
| 8666 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 8667 | * we did not inject a still-pending event to L1 now because of |
| 8668 | * nested_run_pending, we need to re-enable this bit. |
| 8669 | */ |
| 8670 | if (vmx->nested.nested_run_pending) |
| 8671 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 8672 | |
| 8673 | vmx->nested.nested_run_pending = 0; |
| 8674 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8675 | vmx_complete_atomic_exit(vmx); |
| 8676 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8677 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8678 | } |
| 8679 | |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8680 | static void vmx_load_vmcs01(struct kvm_vcpu *vcpu) |
| 8681 | { |
| 8682 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8683 | int cpu; |
| 8684 | |
| 8685 | if (vmx->loaded_vmcs == &vmx->vmcs01) |
| 8686 | return; |
| 8687 | |
| 8688 | cpu = get_cpu(); |
| 8689 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8690 | vmx_vcpu_put(vcpu); |
| 8691 | vmx_vcpu_load(vcpu, cpu); |
| 8692 | vcpu->cpu = cpu; |
| 8693 | put_cpu(); |
| 8694 | } |
| 8695 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8696 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 8697 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8698 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8699 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8700 | if (enable_pml) |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8701 | vmx_destroy_pml_buffer(vmx); |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 8702 | free_vpid(vmx->vpid); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8703 | leave_guest_mode(vcpu); |
| 8704 | vmx_load_vmcs01(vcpu); |
Marcelo Tosatti | 26a865f | 2014-01-03 17:00:51 -0200 | [diff] [blame] | 8705 | free_nested(vmx); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8706 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8707 | kfree(vmx->guest_msrs); |
| 8708 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8709 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8710 | } |
| 8711 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8712 | 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] | 8713 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8714 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 8715 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8716 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8717 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8718 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8719 | return ERR_PTR(-ENOMEM); |
| 8720 | |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 8721 | vmx->vpid = allocate_vpid(); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 8722 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8723 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 8724 | if (err) |
| 8725 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8726 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8727 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 8728 | BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0]) |
| 8729 | > PAGE_SIZE); |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 8730 | |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8731 | err = -ENOMEM; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8732 | if (!vmx->guest_msrs) { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8733 | goto uninit_vcpu; |
| 8734 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8735 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8736 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8737 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
| 8738 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8739 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8740 | if (!vmm_exclusive) |
| 8741 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 8742 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 8743 | if (!vmm_exclusive) |
| 8744 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8745 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8746 | cpu = get_cpu(); |
| 8747 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 8748 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 8749 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8750 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8751 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8752 | if (err) |
| 8753 | goto free_vmcs; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8754 | if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8755 | err = alloc_apic_access_page(kvm); |
| 8756 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 8757 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 8758 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8759 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8760 | if (enable_ept) { |
| 8761 | if (!kvm->arch.ept_identity_map_addr) |
| 8762 | kvm->arch.ept_identity_map_addr = |
| 8763 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 8764 | err = init_rmode_identity_map(kvm); |
| 8765 | if (err) |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 8766 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8767 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 8768 | |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 8769 | if (nested) { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8770 | nested_vmx_setup_ctls_msrs(vmx); |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 8771 | vmx->nested.vpid02 = allocate_vpid(); |
| 8772 | } |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8773 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8774 | vmx->nested.posted_intr_nv = -1; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 8775 | vmx->nested.current_vmptr = -1ull; |
| 8776 | vmx->nested.current_vmcs12 = NULL; |
| 8777 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8778 | /* |
| 8779 | * If PML is turned on, failure on enabling PML just results in failure |
| 8780 | * of creating the vcpu, therefore we can simplify PML logic (by |
| 8781 | * avoiding dealing with cases, such as enabling PML partially on vcpus |
| 8782 | * for the guest, etc. |
| 8783 | */ |
| 8784 | if (enable_pml) { |
Kai Huang | a3eaa86 | 2015-11-04 13:46:05 +0800 | [diff] [blame] | 8785 | err = vmx_create_pml_buffer(vmx); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8786 | if (err) |
| 8787 | goto free_vmcs; |
| 8788 | } |
| 8789 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8790 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8791 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8792 | free_vmcs: |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 8793 | free_vpid(vmx->nested.vpid02); |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 8794 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8795 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8796 | kfree(vmx->guest_msrs); |
| 8797 | uninit_vcpu: |
| 8798 | kvm_vcpu_uninit(&vmx->vcpu); |
| 8799 | free_vcpu: |
Wanpeng Li | 991e7a0 | 2015-09-16 17:30:05 +0800 | [diff] [blame] | 8800 | free_vpid(vmx->vpid); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8801 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8802 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8803 | } |
| 8804 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 8805 | static void __init vmx_check_processor_compat(void *rtn) |
| 8806 | { |
| 8807 | struct vmcs_config vmcs_conf; |
| 8808 | |
| 8809 | *(int *)rtn = 0; |
| 8810 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 8811 | *(int *)rtn = -EIO; |
| 8812 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 8813 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 8814 | smp_processor_id()); |
| 8815 | *(int *)rtn = -EIO; |
| 8816 | } |
| 8817 | } |
| 8818 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 8819 | static int get_ept_level(void) |
| 8820 | { |
| 8821 | return VMX_EPT_DEFAULT_GAW + 1; |
| 8822 | } |
| 8823 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8824 | 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] | 8825 | { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8826 | u8 cache; |
| 8827 | u64 ipat = 0; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8828 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8829 | /* For VT-d and EPT combination |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8830 | * 1. MMIO: always map as UC |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8831 | * 2. EPT with VT-d: |
| 8832 | * a. VT-d without snooping control feature: can't guarantee the |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8833 | * result, try to trust guest. |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8834 | * b. VT-d with snooping control feature: snooping control feature of |
| 8835 | * VT-d engine can guarantee the cache correctness. Just set it |
| 8836 | * 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] | 8837 | * 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] | 8838 | * consistent with host MTRR |
| 8839 | */ |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8840 | if (is_mmio) { |
| 8841 | cache = MTRR_TYPE_UNCACHABLE; |
| 8842 | goto exit; |
| 8843 | } |
| 8844 | |
| 8845 | if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8846 | ipat = VMX_EPT_IPAT_BIT; |
| 8847 | cache = MTRR_TYPE_WRBACK; |
| 8848 | goto exit; |
| 8849 | } |
| 8850 | |
| 8851 | if (kvm_read_cr0(vcpu) & X86_CR0_CD) { |
| 8852 | ipat = VMX_EPT_IPAT_BIT; |
Paolo Bonzini | 0da029e | 2015-07-23 08:24:42 +0200 | [diff] [blame] | 8853 | 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] | 8854 | cache = MTRR_TYPE_WRBACK; |
| 8855 | else |
| 8856 | cache = MTRR_TYPE_UNCACHABLE; |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8857 | goto exit; |
| 8858 | } |
| 8859 | |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 8860 | cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8861 | |
| 8862 | exit: |
| 8863 | return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 8864 | } |
| 8865 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 8866 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8867 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 8868 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 8869 | return PT_DIRECTORY_LEVEL; |
| 8870 | else |
| 8871 | /* For shadow and EPT supported 1GB page */ |
| 8872 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8873 | } |
| 8874 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8875 | static void vmcs_set_secondary_exec_control(u32 new_ctl) |
| 8876 | { |
| 8877 | /* |
| 8878 | * These bits in the secondary execution controls field |
| 8879 | * are dynamic, the others are mostly based on the hypervisor |
| 8880 | * architecture and the guest's CPUID. Do not touch the |
| 8881 | * dynamic bits. |
| 8882 | */ |
| 8883 | u32 mask = |
| 8884 | SECONDARY_EXEC_SHADOW_VMCS | |
| 8885 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 8886 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8887 | |
| 8888 | u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8889 | |
| 8890 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 8891 | (new_ctl & ~mask) | (cur_ctl & mask)); |
| 8892 | } |
| 8893 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8894 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 8895 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8896 | struct kvm_cpuid_entry2 *best; |
| 8897 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8898 | u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8899 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8900 | if (vmx_rdtscp_supported()) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 8901 | bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu); |
| 8902 | if (!rdtscp_enabled) |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8903 | secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP; |
Xiao Guangrong | f36201e | 2015-09-09 14:05:53 +0800 | [diff] [blame] | 8904 | |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 8905 | if (nested) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 8906 | if (rdtscp_enabled) |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 8907 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 8908 | SECONDARY_EXEC_RDTSCP; |
| 8909 | else |
| 8910 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 8911 | ~SECONDARY_EXEC_RDTSCP; |
| 8912 | } |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8913 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8914 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8915 | /* Exposing INVPCID only when PCID is exposed */ |
| 8916 | best = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 8917 | if (vmx_invpcid_supported() && |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 8918 | (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) || |
| 8919 | !guest_cpuid_has_pcid(vcpu))) { |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8920 | secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 8921 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8922 | if (best) |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 8923 | best->ebx &= ~bit(X86_FEATURE_INVPCID); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8924 | } |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 8925 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8926 | vmcs_set_secondary_exec_control(secondary_exec_ctl); |
| 8927 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 8928 | if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) { |
| 8929 | if (guest_cpuid_has_pcommit(vcpu)) |
| 8930 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 8931 | SECONDARY_EXEC_PCOMMIT; |
| 8932 | else |
| 8933 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 8934 | ~SECONDARY_EXEC_PCOMMIT; |
| 8935 | } |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8936 | } |
| 8937 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8938 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 8939 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 8940 | if (func == 1 && nested) |
| 8941 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8942 | } |
| 8943 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8944 | static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu, |
| 8945 | struct x86_exception *fault) |
| 8946 | { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8947 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8948 | u32 exit_reason; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8949 | |
| 8950 | if (fault->error_code & PFERR_RSVD_MASK) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8951 | exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8952 | else |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8953 | exit_reason = EXIT_REASON_EPT_VIOLATION; |
| 8954 | nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8955 | vmcs12->guest_physical_address = fault->address; |
| 8956 | } |
| 8957 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8958 | /* Callbacks for nested_ept_init_mmu_context: */ |
| 8959 | |
| 8960 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu) |
| 8961 | { |
| 8962 | /* return the page table to be shadowed - in our case, EPT12 */ |
| 8963 | return get_vmcs12(vcpu)->ept_pointer; |
| 8964 | } |
| 8965 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 8966 | static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8967 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 8968 | WARN_ON(mmu_is_nested(vcpu)); |
| 8969 | kvm_init_shadow_ept_mmu(vcpu, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8970 | to_vmx(vcpu)->nested.nested_vmx_ept_caps & |
| 8971 | VMX_EPT_EXECUTE_ONLY_BIT); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8972 | vcpu->arch.mmu.set_cr3 = vmx_set_cr3; |
| 8973 | vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3; |
| 8974 | vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault; |
| 8975 | |
| 8976 | vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8977 | } |
| 8978 | |
| 8979 | static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu) |
| 8980 | { |
| 8981 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 8982 | } |
| 8983 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 8984 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 8985 | u16 error_code) |
| 8986 | { |
| 8987 | bool inequality, bit; |
| 8988 | |
| 8989 | bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; |
| 8990 | inequality = |
| 8991 | (error_code & vmcs12->page_fault_error_code_mask) != |
| 8992 | vmcs12->page_fault_error_code_match; |
| 8993 | return inequality ^ bit; |
| 8994 | } |
| 8995 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 8996 | static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu, |
| 8997 | struct x86_exception *fault) |
| 8998 | { |
| 8999 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 9000 | |
| 9001 | WARN_ON(!is_guest_mode(vcpu)); |
| 9002 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 9003 | if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 9004 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 9005 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 9006 | vmcs_readl(EXIT_QUALIFICATION)); |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9007 | else |
| 9008 | kvm_inject_page_fault(vcpu, fault); |
| 9009 | } |
| 9010 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9011 | static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu, |
| 9012 | struct vmcs12 *vmcs12) |
| 9013 | { |
| 9014 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 9015 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9016 | |
| 9017 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 9018 | if (!PAGE_ALIGNED(vmcs12->apic_access_addr) || |
| 9019 | vmcs12->apic_access_addr >> maxphyaddr) |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9020 | return false; |
| 9021 | |
| 9022 | /* |
| 9023 | * Translate L1 physical address to host physical |
| 9024 | * address for vmcs02. Keep the page pinned, so this |
| 9025 | * physical address remains valid. We keep a reference |
| 9026 | * to it so we can release it later. |
| 9027 | */ |
| 9028 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 9029 | nested_release_page(vmx->nested.apic_access_page); |
| 9030 | vmx->nested.apic_access_page = |
| 9031 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
| 9032 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9033 | |
| 9034 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 9035 | if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) || |
| 9036 | vmcs12->virtual_apic_page_addr >> maxphyaddr) |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9037 | return false; |
| 9038 | |
| 9039 | if (vmx->nested.virtual_apic_page) /* shouldn't happen */ |
| 9040 | nested_release_page(vmx->nested.virtual_apic_page); |
| 9041 | vmx->nested.virtual_apic_page = |
| 9042 | nested_get_page(vcpu, vmcs12->virtual_apic_page_addr); |
| 9043 | |
| 9044 | /* |
| 9045 | * Failing the vm entry is _not_ what the processor does |
| 9046 | * but it's basically the only possibility we have. |
| 9047 | * We could still enter the guest if CR8 load exits are |
| 9048 | * enabled, CR8 store exits are enabled, and virtualize APIC |
| 9049 | * access is disabled; in this case the processor would never |
| 9050 | * use the TPR shadow and we could simply clear the bit from |
| 9051 | * the execution control. But such a configuration is useless, |
| 9052 | * so let's keep the code simple. |
| 9053 | */ |
| 9054 | if (!vmx->nested.virtual_apic_page) |
| 9055 | return false; |
| 9056 | } |
| 9057 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9058 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 9059 | if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) || |
| 9060 | vmcs12->posted_intr_desc_addr >> maxphyaddr) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9061 | return false; |
| 9062 | |
| 9063 | if (vmx->nested.pi_desc_page) { /* shouldn't happen */ |
| 9064 | kunmap(vmx->nested.pi_desc_page); |
| 9065 | nested_release_page(vmx->nested.pi_desc_page); |
| 9066 | } |
| 9067 | vmx->nested.pi_desc_page = |
| 9068 | nested_get_page(vcpu, vmcs12->posted_intr_desc_addr); |
| 9069 | if (!vmx->nested.pi_desc_page) |
| 9070 | return false; |
| 9071 | |
| 9072 | vmx->nested.pi_desc = |
| 9073 | (struct pi_desc *)kmap(vmx->nested.pi_desc_page); |
| 9074 | if (!vmx->nested.pi_desc) { |
| 9075 | nested_release_page_clean(vmx->nested.pi_desc_page); |
| 9076 | return false; |
| 9077 | } |
| 9078 | vmx->nested.pi_desc = |
| 9079 | (struct pi_desc *)((void *)vmx->nested.pi_desc + |
| 9080 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9081 | (PAGE_SIZE - 1))); |
| 9082 | } |
| 9083 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9084 | return true; |
| 9085 | } |
| 9086 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9087 | static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu) |
| 9088 | { |
| 9089 | u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value; |
| 9090 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9091 | |
| 9092 | if (vcpu->arch.virtual_tsc_khz == 0) |
| 9093 | return; |
| 9094 | |
| 9095 | /* Make sure short timeouts reliably trigger an immediate vmexit. |
| 9096 | * hrtimer_start does not guarantee this. */ |
| 9097 | if (preemption_timeout <= 1) { |
| 9098 | vmx_preemption_timer_fn(&vmx->nested.preemption_timer); |
| 9099 | return; |
| 9100 | } |
| 9101 | |
| 9102 | preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 9103 | preemption_timeout *= 1000000; |
| 9104 | do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz); |
| 9105 | hrtimer_start(&vmx->nested.preemption_timer, |
| 9106 | ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL); |
| 9107 | } |
| 9108 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9109 | static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu, |
| 9110 | struct vmcs12 *vmcs12) |
| 9111 | { |
| 9112 | int maxphyaddr; |
| 9113 | u64 addr; |
| 9114 | |
| 9115 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
| 9116 | return 0; |
| 9117 | |
| 9118 | if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) { |
| 9119 | WARN_ON(1); |
| 9120 | return -EINVAL; |
| 9121 | } |
| 9122 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 9123 | |
| 9124 | if (!PAGE_ALIGNED(vmcs12->msr_bitmap) || |
| 9125 | ((addr + PAGE_SIZE) >> maxphyaddr)) |
| 9126 | return -EINVAL; |
| 9127 | |
| 9128 | return 0; |
| 9129 | } |
| 9130 | |
| 9131 | /* |
| 9132 | * Merge L0's and L1's MSR bitmap, return false to indicate that |
| 9133 | * we do not use the hardware. |
| 9134 | */ |
| 9135 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 9136 | struct vmcs12 *vmcs12) |
| 9137 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9138 | int msr; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9139 | struct page *page; |
| 9140 | unsigned long *msr_bitmap; |
| 9141 | |
| 9142 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12)) |
| 9143 | return false; |
| 9144 | |
| 9145 | page = nested_get_page(vcpu, vmcs12->msr_bitmap); |
| 9146 | if (!page) { |
| 9147 | WARN_ON(1); |
| 9148 | return false; |
| 9149 | } |
| 9150 | msr_bitmap = (unsigned long *)kmap(page); |
| 9151 | if (!msr_bitmap) { |
| 9152 | nested_release_page_clean(page); |
| 9153 | WARN_ON(1); |
| 9154 | return false; |
| 9155 | } |
| 9156 | |
| 9157 | if (nested_cpu_has_virt_x2apic_mode(vmcs12)) { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9158 | if (nested_cpu_has_apic_reg_virt(vmcs12)) |
| 9159 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 9160 | nested_vmx_disable_intercept_for_msr( |
| 9161 | msr_bitmap, |
| 9162 | vmx_msr_bitmap_nested, |
| 9163 | msr, MSR_TYPE_R); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9164 | /* TPR is allowed */ |
| 9165 | nested_vmx_disable_intercept_for_msr(msr_bitmap, |
| 9166 | vmx_msr_bitmap_nested, |
| 9167 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
| 9168 | MSR_TYPE_R | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9169 | if (nested_cpu_has_vid(vmcs12)) { |
| 9170 | /* EOI and self-IPI are allowed */ |
| 9171 | nested_vmx_disable_intercept_for_msr( |
| 9172 | msr_bitmap, |
| 9173 | vmx_msr_bitmap_nested, |
| 9174 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 9175 | MSR_TYPE_W); |
| 9176 | nested_vmx_disable_intercept_for_msr( |
| 9177 | msr_bitmap, |
| 9178 | vmx_msr_bitmap_nested, |
| 9179 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 9180 | MSR_TYPE_W); |
| 9181 | } |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9182 | } else { |
| 9183 | /* |
| 9184 | * Enable reading intercept of all the x2apic |
| 9185 | * MSRs. We should not rely on vmcs12 to do any |
| 9186 | * optimizations here, it may have been modified |
| 9187 | * by L1. |
| 9188 | */ |
| 9189 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 9190 | __vmx_enable_intercept_for_msr( |
| 9191 | vmx_msr_bitmap_nested, |
| 9192 | msr, |
| 9193 | MSR_TYPE_R); |
| 9194 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9195 | __vmx_enable_intercept_for_msr( |
| 9196 | vmx_msr_bitmap_nested, |
| 9197 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9198 | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9199 | __vmx_enable_intercept_for_msr( |
| 9200 | vmx_msr_bitmap_nested, |
| 9201 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 9202 | MSR_TYPE_W); |
| 9203 | __vmx_enable_intercept_for_msr( |
| 9204 | vmx_msr_bitmap_nested, |
| 9205 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 9206 | MSR_TYPE_W); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9207 | } |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9208 | kunmap(page); |
| 9209 | nested_release_page_clean(page); |
| 9210 | |
| 9211 | return true; |
| 9212 | } |
| 9213 | |
| 9214 | static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu, |
| 9215 | struct vmcs12 *vmcs12) |
| 9216 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9217 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12) && |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9218 | !nested_cpu_has_apic_reg_virt(vmcs12) && |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9219 | !nested_cpu_has_vid(vmcs12) && |
| 9220 | !nested_cpu_has_posted_intr(vmcs12)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9221 | return 0; |
| 9222 | |
| 9223 | /* |
| 9224 | * If virtualize x2apic mode is enabled, |
| 9225 | * virtualize apic access must be disabled. |
| 9226 | */ |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9227 | if (nested_cpu_has_virt_x2apic_mode(vmcs12) && |
| 9228 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9229 | return -EINVAL; |
| 9230 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9231 | /* |
| 9232 | * If virtual interrupt delivery is enabled, |
| 9233 | * we must exit on external interrupts. |
| 9234 | */ |
| 9235 | if (nested_cpu_has_vid(vmcs12) && |
| 9236 | !nested_exit_on_intr(vcpu)) |
| 9237 | return -EINVAL; |
| 9238 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9239 | /* |
| 9240 | * bits 15:8 should be zero in posted_intr_nv, |
| 9241 | * the descriptor address has been already checked |
| 9242 | * in nested_get_vmcs12_pages. |
| 9243 | */ |
| 9244 | if (nested_cpu_has_posted_intr(vmcs12) && |
| 9245 | (!nested_cpu_has_vid(vmcs12) || |
| 9246 | !nested_exit_intr_ack_set(vcpu) || |
| 9247 | vmcs12->posted_intr_nv & 0xff00)) |
| 9248 | return -EINVAL; |
| 9249 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9250 | /* tpr shadow is needed by all apicv features. */ |
| 9251 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 9252 | return -EINVAL; |
| 9253 | |
| 9254 | return 0; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9255 | } |
| 9256 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9257 | static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu, |
| 9258 | unsigned long count_field, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9259 | unsigned long addr_field) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9260 | { |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9261 | int maxphyaddr; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9262 | u64 count, addr; |
| 9263 | |
| 9264 | if (vmcs12_read_any(vcpu, count_field, &count) || |
| 9265 | vmcs12_read_any(vcpu, addr_field, &addr)) { |
| 9266 | WARN_ON(1); |
| 9267 | return -EINVAL; |
| 9268 | } |
| 9269 | if (count == 0) |
| 9270 | return 0; |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9271 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9272 | if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr || |
| 9273 | (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) { |
| 9274 | pr_warn_ratelimited( |
| 9275 | "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)", |
| 9276 | addr_field, maxphyaddr, count, addr); |
| 9277 | return -EINVAL; |
| 9278 | } |
| 9279 | return 0; |
| 9280 | } |
| 9281 | |
| 9282 | static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu, |
| 9283 | struct vmcs12 *vmcs12) |
| 9284 | { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9285 | if (vmcs12->vm_exit_msr_load_count == 0 && |
| 9286 | vmcs12->vm_exit_msr_store_count == 0 && |
| 9287 | vmcs12->vm_entry_msr_load_count == 0) |
| 9288 | return 0; /* Fast path */ |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9289 | if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9290 | VM_EXIT_MSR_LOAD_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9291 | nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9292 | VM_EXIT_MSR_STORE_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9293 | nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9294 | VM_ENTRY_MSR_LOAD_ADDR)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9295 | return -EINVAL; |
| 9296 | return 0; |
| 9297 | } |
| 9298 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9299 | static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu, |
| 9300 | struct vmx_msr_entry *e) |
| 9301 | { |
| 9302 | /* x2APIC MSR accesses are not allowed */ |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 9303 | if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8) |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9304 | return -EINVAL; |
| 9305 | if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */ |
| 9306 | e->index == MSR_IA32_UCODE_REV) |
| 9307 | return -EINVAL; |
| 9308 | if (e->reserved != 0) |
| 9309 | return -EINVAL; |
| 9310 | return 0; |
| 9311 | } |
| 9312 | |
| 9313 | static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu, |
| 9314 | struct vmx_msr_entry *e) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9315 | { |
| 9316 | if (e->index == MSR_FS_BASE || |
| 9317 | e->index == MSR_GS_BASE || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9318 | e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */ |
| 9319 | nested_vmx_msr_check_common(vcpu, e)) |
| 9320 | return -EINVAL; |
| 9321 | return 0; |
| 9322 | } |
| 9323 | |
| 9324 | static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu, |
| 9325 | struct vmx_msr_entry *e) |
| 9326 | { |
| 9327 | if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */ |
| 9328 | nested_vmx_msr_check_common(vcpu, e)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9329 | return -EINVAL; |
| 9330 | return 0; |
| 9331 | } |
| 9332 | |
| 9333 | /* |
| 9334 | * Load guest's/host's msr at nested entry/exit. |
| 9335 | * return 0 for success, entry index for failure. |
| 9336 | */ |
| 9337 | static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9338 | { |
| 9339 | u32 i; |
| 9340 | struct vmx_msr_entry e; |
| 9341 | struct msr_data msr; |
| 9342 | |
| 9343 | msr.host_initiated = false; |
| 9344 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9345 | if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e), |
| 9346 | &e, sizeof(e))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9347 | pr_warn_ratelimited( |
| 9348 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9349 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9350 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9351 | } |
| 9352 | if (nested_vmx_load_msr_check(vcpu, &e)) { |
| 9353 | pr_warn_ratelimited( |
| 9354 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9355 | __func__, i, e.index, e.reserved); |
| 9356 | goto fail; |
| 9357 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9358 | msr.index = e.index; |
| 9359 | msr.data = e.value; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9360 | if (kvm_set_msr(vcpu, &msr)) { |
| 9361 | pr_warn_ratelimited( |
| 9362 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 9363 | __func__, i, e.index, e.value); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9364 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9365 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9366 | } |
| 9367 | return 0; |
| 9368 | fail: |
| 9369 | return i + 1; |
| 9370 | } |
| 9371 | |
| 9372 | static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9373 | { |
| 9374 | u32 i; |
| 9375 | struct vmx_msr_entry e; |
| 9376 | |
| 9377 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9378 | struct msr_data msr_info; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9379 | if (kvm_vcpu_read_guest(vcpu, |
| 9380 | gpa + i * sizeof(e), |
| 9381 | &e, 2 * sizeof(u32))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9382 | pr_warn_ratelimited( |
| 9383 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9384 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9385 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9386 | } |
| 9387 | if (nested_vmx_store_msr_check(vcpu, &e)) { |
| 9388 | pr_warn_ratelimited( |
| 9389 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9390 | __func__, i, e.index, e.reserved); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9391 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9392 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9393 | msr_info.host_initiated = false; |
| 9394 | msr_info.index = e.index; |
| 9395 | if (kvm_get_msr(vcpu, &msr_info)) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9396 | pr_warn_ratelimited( |
| 9397 | "%s cannot read MSR (%u, 0x%x)\n", |
| 9398 | __func__, i, e.index); |
| 9399 | return -EINVAL; |
| 9400 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9401 | if (kvm_vcpu_write_guest(vcpu, |
| 9402 | gpa + i * sizeof(e) + |
| 9403 | offsetof(struct vmx_msr_entry, value), |
| 9404 | &msr_info.data, sizeof(msr_info.data))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9405 | pr_warn_ratelimited( |
| 9406 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9407 | __func__, i, e.index, msr_info.data); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9408 | return -EINVAL; |
| 9409 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9410 | } |
| 9411 | return 0; |
| 9412 | } |
| 9413 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9414 | /* |
| 9415 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 9416 | * 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] | 9417 | * 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] | 9418 | * guest in a way that will both be appropriate to L1's requests, and our |
| 9419 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 9420 | * function also has additional necessary side-effects, like setting various |
| 9421 | * vcpu->arch fields. |
| 9422 | */ |
| 9423 | static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9424 | { |
| 9425 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9426 | u32 exec_control; |
| 9427 | |
| 9428 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 9429 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 9430 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 9431 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 9432 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 9433 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 9434 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 9435 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 9436 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 9437 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 9438 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 9439 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 9440 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 9441 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 9442 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 9443 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 9444 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 9445 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 9446 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 9447 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 9448 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 9449 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 9450 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 9451 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 9452 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 9453 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 9454 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 9455 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 9456 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 9457 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 9458 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 9459 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 9460 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 9461 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 9462 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 9463 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 9464 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9465 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) { |
| 9466 | kvm_set_dr(vcpu, 7, vmcs12->guest_dr7); |
| 9467 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 9468 | } else { |
| 9469 | kvm_set_dr(vcpu, 7, vcpu->arch.dr7); |
| 9470 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl); |
| 9471 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9472 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 9473 | vmcs12->vm_entry_intr_info_field); |
| 9474 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 9475 | vmcs12->vm_entry_exception_error_code); |
| 9476 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 9477 | vmcs12->vm_entry_instruction_len); |
| 9478 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 9479 | vmcs12->guest_interruptibility_info); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9480 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
Gleb Natapov | 63fbf59 | 2013-07-28 18:31:06 +0300 | [diff] [blame] | 9481 | vmx_set_rflags(vcpu, vmcs12->guest_rflags); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9482 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 9483 | vmcs12->guest_pending_dbg_exceptions); |
| 9484 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 9485 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 9486 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 9487 | if (nested_cpu_has_xsaves(vmcs12)) |
| 9488 | vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9489 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 9490 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9491 | exec_control = vmcs12->pin_based_vm_exec_control; |
| 9492 | exec_control |= vmcs_config.pin_based_exec_ctrl; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9493 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 9494 | |
| 9495 | if (nested_cpu_has_posted_intr(vmcs12)) { |
| 9496 | /* |
| 9497 | * Note that we use L0's vector here and in |
| 9498 | * vmx_deliver_nested_posted_interrupt. |
| 9499 | */ |
| 9500 | vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; |
| 9501 | vmx->nested.pi_pending = false; |
| 9502 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 9503 | vmcs_write64(POSTED_INTR_DESC_ADDR, |
| 9504 | page_to_phys(vmx->nested.pi_desc_page) + |
| 9505 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9506 | (PAGE_SIZE - 1))); |
| 9507 | } else |
| 9508 | exec_control &= ~PIN_BASED_POSTED_INTR; |
| 9509 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9510 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9511 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9512 | vmx->nested.preemption_timer_expired = false; |
| 9513 | if (nested_cpu_has_preemption_timer(vmcs12)) |
| 9514 | vmx_start_preemption_timer(vcpu); |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 9515 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9516 | /* |
| 9517 | * Whether page-faults are trapped is determined by a combination of |
| 9518 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 9519 | * If enable_ept, L0 doesn't care about page faults and we should |
| 9520 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 9521 | * care about (at least some) page faults, and because it is not easy |
| 9522 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 9523 | * to exit on each and every L2 page fault. This is done by setting |
| 9524 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 9525 | * Note that below we don't need special code to set EB.PF beyond the |
| 9526 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 9527 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 9528 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 9529 | * |
| 9530 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 9531 | * injected with more page faults than it asked for. This could have |
| 9532 | * caused problems, but in practice existing hypervisors don't care. |
| 9533 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 9534 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 9535 | */ |
| 9536 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 9537 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 9538 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 9539 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 9540 | |
| 9541 | if (cpu_has_secondary_exec_ctrls()) { |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9542 | exec_control = vmx_secondary_exec_control(vmx); |
Xiao Guangrong | e282162 | 2015-09-09 14:05:52 +0800 | [diff] [blame] | 9543 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9544 | /* Take the following fields only from vmcs12 */ |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9545 | exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 9546 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9547 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 9548 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 9549 | SECONDARY_EXEC_PCOMMIT); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9550 | if (nested_cpu_has(vmcs12, |
| 9551 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 9552 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 9553 | |
| 9554 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) { |
| 9555 | /* |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9556 | * If translation failed, no matter: This feature asks |
| 9557 | * to exit when accessing the given address, and if it |
| 9558 | * can never be accessed, this feature won't do |
| 9559 | * anything anyway. |
| 9560 | */ |
| 9561 | if (!vmx->nested.apic_access_page) |
| 9562 | exec_control &= |
| 9563 | ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 9564 | else |
| 9565 | vmcs_write64(APIC_ACCESS_ADDR, |
| 9566 | page_to_phys(vmx->nested.apic_access_page)); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9567 | } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) && |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 9568 | cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | ca3f257 | 2013-12-16 12:55:46 +0100 | [diff] [blame] | 9569 | exec_control |= |
| 9570 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 9571 | kvm_vcpu_reload_apic_access_page(vcpu); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9572 | } |
| 9573 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9574 | if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) { |
| 9575 | vmcs_write64(EOI_EXIT_BITMAP0, |
| 9576 | vmcs12->eoi_exit_bitmap0); |
| 9577 | vmcs_write64(EOI_EXIT_BITMAP1, |
| 9578 | vmcs12->eoi_exit_bitmap1); |
| 9579 | vmcs_write64(EOI_EXIT_BITMAP2, |
| 9580 | vmcs12->eoi_exit_bitmap2); |
| 9581 | vmcs_write64(EOI_EXIT_BITMAP3, |
| 9582 | vmcs12->eoi_exit_bitmap3); |
| 9583 | vmcs_write16(GUEST_INTR_STATUS, |
| 9584 | vmcs12->guest_intr_status); |
| 9585 | } |
| 9586 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9587 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 9588 | } |
| 9589 | |
| 9590 | |
| 9591 | /* |
| 9592 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 9593 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 9594 | * Other fields are different per CPU, and will be set later when |
| 9595 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 9596 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9597 | vmx_set_constant_host_state(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9598 | |
| 9599 | /* |
| 9600 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 9601 | * entry, but only if the current (host) sp changed from the value |
| 9602 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 9603 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 9604 | * here we just force the write to happen on entry. |
| 9605 | */ |
| 9606 | vmx->host_rsp = 0; |
| 9607 | |
| 9608 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 9609 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 9610 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 9611 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 9612 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9613 | |
| 9614 | if (exec_control & CPU_BASED_TPR_SHADOW) { |
| 9615 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
| 9616 | page_to_phys(vmx->nested.virtual_apic_page)); |
| 9617 | vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); |
| 9618 | } |
| 9619 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9620 | if (cpu_has_vmx_msr_bitmap() && |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 9621 | exec_control & CPU_BASED_USE_MSR_BITMAPS) { |
| 9622 | nested_vmx_merge_msr_bitmap(vcpu, vmcs12); |
| 9623 | /* MSR_BITMAP will be set by following vmx_set_efer. */ |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9624 | } else |
| 9625 | exec_control &= ~CPU_BASED_USE_MSR_BITMAPS; |
| 9626 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9627 | /* |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9628 | * Merging of IO bitmap not currently supported. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9629 | * Rather, exit every time. |
| 9630 | */ |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9631 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 9632 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 9633 | |
| 9634 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 9635 | |
| 9636 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 9637 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 9638 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 9639 | */ |
| 9640 | update_exception_bitmap(vcpu); |
| 9641 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 9642 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 9643 | |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9644 | /* L2->L1 exit controls are emulated - the hardware exit is to L0 so |
| 9645 | * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER |
| 9646 | * bits are further modified by vmx_set_efer() below. |
| 9647 | */ |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9648 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9649 | |
| 9650 | /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are |
| 9651 | * emulated by vmx_set_efer(), below. |
| 9652 | */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 9653 | vm_entry_controls_init(vmx, |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9654 | (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER & |
| 9655 | ~VM_ENTRY_IA32E_MODE) | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9656 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 9657 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9658 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9659 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9660 | vcpu->arch.pat = vmcs12->guest_ia32_pat; |
| 9661 | } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9662 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
| 9663 | |
| 9664 | |
| 9665 | set_cr4_guest_host_mask(vmx); |
| 9666 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 9667 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) |
| 9668 | vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs); |
| 9669 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 9670 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 9671 | vmcs_write64(TSC_OFFSET, |
| 9672 | vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset); |
| 9673 | else |
| 9674 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9675 | |
| 9676 | if (enable_vpid) { |
| 9677 | /* |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9678 | * There is no direct mapping between vpid02 and vpid12, the |
| 9679 | * vpid02 is per-vCPU for L0 and reused while the value of |
| 9680 | * vpid12 is changed w/ one invvpid during nested vmentry. |
| 9681 | * The vpid12 is allocated by L1 for L2, so it will not |
| 9682 | * influence global bitmap(for vpid01 and vpid02 allocation) |
| 9683 | * even if spawn a lot of nested vCPUs. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9684 | */ |
Wanpeng Li | 5c614b3 | 2015-10-13 09:18:36 -0700 | [diff] [blame] | 9685 | if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) { |
| 9686 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02); |
| 9687 | if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) { |
| 9688 | vmx->nested.last_vpid = vmcs12->virtual_processor_id; |
| 9689 | __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02); |
| 9690 | } |
| 9691 | } else { |
| 9692 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 9693 | vmx_flush_tlb(vcpu); |
| 9694 | } |
| 9695 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9696 | } |
| 9697 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9698 | if (nested_cpu_has_ept(vmcs12)) { |
| 9699 | kvm_mmu_unload(vcpu); |
| 9700 | nested_ept_init_mmu_context(vcpu); |
| 9701 | } |
| 9702 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9703 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) |
| 9704 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 9705 | else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9706 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 9707 | else |
| 9708 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 9709 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 9710 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 9711 | |
| 9712 | /* |
| 9713 | * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified |
| 9714 | * TS bit (for lazy fpu) and bits which we consider mandatory enabled. |
| 9715 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 9716 | * the specifications by L1; It's not enough to take |
| 9717 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 9718 | * have more bits than L1 expected. |
| 9719 | */ |
| 9720 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 9721 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 9722 | |
| 9723 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 9724 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 9725 | |
| 9726 | /* shadow page tables on either EPT or shadow page tables */ |
| 9727 | kvm_set_cr3(vcpu, vmcs12->guest_cr3); |
| 9728 | kvm_mmu_reset_context(vcpu); |
| 9729 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9730 | if (!enable_ept) |
| 9731 | vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested; |
| 9732 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 9733 | /* |
| 9734 | * L1 may access the L2's PDPTR, so save them to construct vmcs12 |
| 9735 | */ |
| 9736 | if (enable_ept) { |
| 9737 | vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0); |
| 9738 | vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1); |
| 9739 | vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2); |
| 9740 | vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3); |
| 9741 | } |
| 9742 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9743 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 9744 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
| 9745 | } |
| 9746 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9747 | /* |
| 9748 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 9749 | * for running an L2 nested guest. |
| 9750 | */ |
| 9751 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 9752 | { |
| 9753 | struct vmcs12 *vmcs12; |
| 9754 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9755 | int cpu; |
| 9756 | struct loaded_vmcs *vmcs02; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 9757 | bool ia32e; |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9758 | u32 msr_entry_idx; |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9759 | |
| 9760 | if (!nested_vmx_check_permission(vcpu) || |
| 9761 | !nested_vmx_check_vmcs12(vcpu)) |
| 9762 | return 1; |
| 9763 | |
| 9764 | skip_emulated_instruction(vcpu); |
| 9765 | vmcs12 = get_vmcs12(vcpu); |
| 9766 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 9767 | if (enable_shadow_vmcs) |
| 9768 | copy_shadow_to_vmcs12(vmx); |
| 9769 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9770 | /* |
| 9771 | * The nested entry process starts with enforcing various prerequisites |
| 9772 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 9773 | * they fail: As the SDM explains, some conditions should cause the |
| 9774 | * instruction to fail, while others will cause the instruction to seem |
| 9775 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 9776 | * To speed up the normal (success) code path, we should avoid checking |
| 9777 | * for misconfigurations which will anyway be caught by the processor |
| 9778 | * when using the merged vmcs02. |
| 9779 | */ |
| 9780 | if (vmcs12->launch_state == launch) { |
| 9781 | nested_vmx_failValid(vcpu, |
| 9782 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 9783 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
| 9784 | return 1; |
| 9785 | } |
| 9786 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9787 | if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE && |
| 9788 | vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) { |
Paolo Bonzini | 26539bd | 2013-04-15 15:00:27 +0200 | [diff] [blame] | 9789 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9790 | return 1; |
| 9791 | } |
| 9792 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9793 | if (!nested_get_vmcs12_pages(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9794 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9795 | return 1; |
| 9796 | } |
| 9797 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9798 | if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9799 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9800 | return 1; |
| 9801 | } |
| 9802 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9803 | if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) { |
| 9804 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9805 | return 1; |
| 9806 | } |
| 9807 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9808 | if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) { |
| 9809 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9810 | return 1; |
| 9811 | } |
| 9812 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9813 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9814 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 9815 | vmx->nested.nested_vmx_procbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9816 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9817 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 9818 | vmx->nested.nested_vmx_secondary_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9819 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9820 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 9821 | vmx->nested.nested_vmx_pinbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9822 | !vmx_control_verify(vmcs12->vm_exit_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9823 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 9824 | vmx->nested.nested_vmx_exit_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9825 | !vmx_control_verify(vmcs12->vm_entry_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9826 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 9827 | vmx->nested.nested_vmx_entry_ctls_high)) |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9828 | { |
| 9829 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9830 | return 1; |
| 9831 | } |
| 9832 | |
| 9833 | if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 9834 | ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9835 | nested_vmx_failValid(vcpu, |
| 9836 | VMXERR_ENTRY_INVALID_HOST_STATE_FIELD); |
| 9837 | return 1; |
| 9838 | } |
| 9839 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9840 | if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9841 | ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9842 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9843 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9844 | return 1; |
| 9845 | } |
| 9846 | if (vmcs12->vmcs_link_pointer != -1ull) { |
| 9847 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9848 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR); |
| 9849 | return 1; |
| 9850 | } |
| 9851 | |
| 9852 | /* |
Jan Kiszka | cb0c8cda | 2013-04-27 12:58:00 +0200 | [diff] [blame] | 9853 | * If the load IA32_EFER VM-entry control is 1, the following checks |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 9854 | * are performed on the field for the IA32_EFER MSR: |
| 9855 | * - Bits reserved in the IA32_EFER MSR must be 0. |
| 9856 | * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of |
| 9857 | * the IA-32e mode guest VM-exit control. It must also be identical |
| 9858 | * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to |
| 9859 | * CR0.PG) is 1. |
| 9860 | */ |
| 9861 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) { |
| 9862 | ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; |
| 9863 | if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) || |
| 9864 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) || |
| 9865 | ((vmcs12->guest_cr0 & X86_CR0_PG) && |
| 9866 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) { |
| 9867 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9868 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9869 | return 1; |
| 9870 | } |
| 9871 | } |
| 9872 | |
| 9873 | /* |
| 9874 | * If the load IA32_EFER VM-exit control is 1, bits reserved in the |
| 9875 | * IA32_EFER MSR must be 0 in the field for that register. In addition, |
| 9876 | * the values of the LMA and LME bits in the field must each be that of |
| 9877 | * the host address-space size VM-exit control. |
| 9878 | */ |
| 9879 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) { |
| 9880 | ia32e = (vmcs12->vm_exit_controls & |
| 9881 | VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0; |
| 9882 | if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) || |
| 9883 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) || |
| 9884 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) { |
| 9885 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9886 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9887 | return 1; |
| 9888 | } |
| 9889 | } |
| 9890 | |
| 9891 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9892 | * We're finally done with prerequisite checking, and can start with |
| 9893 | * the nested entry. |
| 9894 | */ |
| 9895 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9896 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 9897 | if (!vmcs02) |
| 9898 | return -ENOMEM; |
| 9899 | |
| 9900 | enter_guest_mode(vcpu); |
| 9901 | |
| 9902 | vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET); |
| 9903 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9904 | if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) |
| 9905 | vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 9906 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9907 | cpu = get_cpu(); |
| 9908 | vmx->loaded_vmcs = vmcs02; |
| 9909 | vmx_vcpu_put(vcpu); |
| 9910 | vmx_vcpu_load(vcpu, cpu); |
| 9911 | vcpu->cpu = cpu; |
| 9912 | put_cpu(); |
| 9913 | |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 9914 | vmx_segment_cache_clear(vmx); |
| 9915 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9916 | prepare_vmcs02(vcpu, vmcs12); |
| 9917 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9918 | msr_entry_idx = nested_vmx_load_msr(vcpu, |
| 9919 | vmcs12->vm_entry_msr_load_addr, |
| 9920 | vmcs12->vm_entry_msr_load_count); |
| 9921 | if (msr_entry_idx) { |
| 9922 | leave_guest_mode(vcpu); |
| 9923 | vmx_load_vmcs01(vcpu); |
| 9924 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9925 | EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx); |
| 9926 | return 1; |
| 9927 | } |
| 9928 | |
| 9929 | vmcs12->launch_state = 1; |
| 9930 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9931 | if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 9932 | return kvm_vcpu_halt(vcpu); |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9933 | |
Jan Kiszka | 7af40ad3 | 2014-01-04 18:47:23 +0100 | [diff] [blame] | 9934 | vmx->nested.nested_run_pending = 1; |
| 9935 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9936 | /* |
| 9937 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 9938 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 9939 | * returned as far as L1 is concerned. It will only return (and set |
| 9940 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 9941 | */ |
| 9942 | return 1; |
| 9943 | } |
| 9944 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9945 | /* |
| 9946 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 9947 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 9948 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 9949 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 9950 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 9951 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 9952 | * didn't trap the bit, because if L1 did, so would L0). |
| 9953 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 9954 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 9955 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 9956 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 9957 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 9958 | * changed these bits, and therefore they need to be updated, but L0 |
| 9959 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 9960 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 9961 | */ |
| 9962 | static inline unsigned long |
| 9963 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9964 | { |
| 9965 | return |
| 9966 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 9967 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 9968 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 9969 | vcpu->arch.cr0_guest_owned_bits)); |
| 9970 | } |
| 9971 | |
| 9972 | static inline unsigned long |
| 9973 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9974 | { |
| 9975 | return |
| 9976 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 9977 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 9978 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 9979 | vcpu->arch.cr4_guest_owned_bits)); |
| 9980 | } |
| 9981 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9982 | static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, |
| 9983 | struct vmcs12 *vmcs12) |
| 9984 | { |
| 9985 | u32 idt_vectoring; |
| 9986 | unsigned int nr; |
| 9987 | |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 9988 | if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9989 | nr = vcpu->arch.exception.nr; |
| 9990 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 9991 | |
| 9992 | if (kvm_exception_is_soft(nr)) { |
| 9993 | vmcs12->vm_exit_instruction_len = |
| 9994 | vcpu->arch.event_exit_inst_len; |
| 9995 | idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION; |
| 9996 | } else |
| 9997 | idt_vectoring |= INTR_TYPE_HARD_EXCEPTION; |
| 9998 | |
| 9999 | if (vcpu->arch.exception.has_error_code) { |
| 10000 | idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK; |
| 10001 | vmcs12->idt_vectoring_error_code = |
| 10002 | vcpu->arch.exception.error_code; |
| 10003 | } |
| 10004 | |
| 10005 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
Jan Kiszka | cd2633c | 2013-10-23 17:42:15 +0100 | [diff] [blame] | 10006 | } else if (vcpu->arch.nmi_injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10007 | vmcs12->idt_vectoring_info_field = |
| 10008 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR; |
| 10009 | } else if (vcpu->arch.interrupt.pending) { |
| 10010 | nr = vcpu->arch.interrupt.nr; |
| 10011 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 10012 | |
| 10013 | if (vcpu->arch.interrupt.soft) { |
| 10014 | idt_vectoring |= INTR_TYPE_SOFT_INTR; |
| 10015 | vmcs12->vm_entry_instruction_len = |
| 10016 | vcpu->arch.event_exit_inst_len; |
| 10017 | } else |
| 10018 | idt_vectoring |= INTR_TYPE_EXT_INTR; |
| 10019 | |
| 10020 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
| 10021 | } |
| 10022 | } |
| 10023 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10024 | static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr) |
| 10025 | { |
| 10026 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 10027 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10028 | if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) && |
| 10029 | vmx->nested.preemption_timer_expired) { |
| 10030 | if (vmx->nested.nested_run_pending) |
| 10031 | return -EBUSY; |
| 10032 | nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0); |
| 10033 | return 0; |
| 10034 | } |
| 10035 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10036 | if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) { |
Jan Kiszka | 220c567 | 2014-03-07 20:03:14 +0100 | [diff] [blame] | 10037 | if (vmx->nested.nested_run_pending || |
| 10038 | vcpu->arch.interrupt.pending) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10039 | return -EBUSY; |
| 10040 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 10041 | NMI_VECTOR | INTR_TYPE_NMI_INTR | |
| 10042 | INTR_INFO_VALID_MASK, 0); |
| 10043 | /* |
| 10044 | * The NMI-triggered VM exit counts as injection: |
| 10045 | * clear this one and block further NMIs. |
| 10046 | */ |
| 10047 | vcpu->arch.nmi_pending = 0; |
| 10048 | vmx_set_nmi_mask(vcpu, true); |
| 10049 | return 0; |
| 10050 | } |
| 10051 | |
| 10052 | if ((kvm_cpu_has_interrupt(vcpu) || external_intr) && |
| 10053 | nested_exit_on_intr(vcpu)) { |
| 10054 | if (vmx->nested.nested_run_pending) |
| 10055 | return -EBUSY; |
| 10056 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10057 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10058 | } |
| 10059 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10060 | return vmx_complete_nested_posted_interrupt(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10061 | } |
| 10062 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10063 | static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu) |
| 10064 | { |
| 10065 | ktime_t remaining = |
| 10066 | hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer); |
| 10067 | u64 value; |
| 10068 | |
| 10069 | if (ktime_to_ns(remaining) <= 0) |
| 10070 | return 0; |
| 10071 | |
| 10072 | value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz; |
| 10073 | do_div(value, 1000000); |
| 10074 | return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 10075 | } |
| 10076 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10077 | /* |
| 10078 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 10079 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 10080 | * and this function updates it to reflect the changes to the guest state while |
| 10081 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 10082 | * without going back to L1), and to reflect the exit reason. |
| 10083 | * Note that we do not have to copy here all VMCS fields, just those that |
| 10084 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 10085 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 10086 | * which already writes to vmcs12 directly. |
| 10087 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10088 | static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 10089 | u32 exit_reason, u32 exit_intr_info, |
| 10090 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10091 | { |
| 10092 | /* update guest state fields: */ |
| 10093 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 10094 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 10095 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10096 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 10097 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 10098 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 10099 | |
| 10100 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 10101 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 10102 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 10103 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 10104 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 10105 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 10106 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 10107 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 10108 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 10109 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 10110 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 10111 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 10112 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 10113 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 10114 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 10115 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 10116 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 10117 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 10118 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 10119 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 10120 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 10121 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 10122 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 10123 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 10124 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 10125 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 10126 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 10127 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 10128 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 10129 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 10130 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 10131 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 10132 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 10133 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 10134 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 10135 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 10136 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10137 | vmcs12->guest_interruptibility_info = |
| 10138 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 10139 | vmcs12->guest_pending_dbg_exceptions = |
| 10140 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
Jan Kiszka | 3edf1e6 | 2014-01-04 18:47:24 +0100 | [diff] [blame] | 10141 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) |
| 10142 | vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT; |
| 10143 | else |
| 10144 | vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10145 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10146 | if (nested_cpu_has_preemption_timer(vmcs12)) { |
| 10147 | if (vmcs12->vm_exit_controls & |
| 10148 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) |
| 10149 | vmcs12->vmx_preemption_timer_value = |
| 10150 | vmx_get_preemption_timer_value(vcpu); |
| 10151 | hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer); |
| 10152 | } |
Arthur Chunqi Li | 7854cbc | 2013-09-16 16:11:44 +0800 | [diff] [blame] | 10153 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10154 | /* |
| 10155 | * In some cases (usually, nested EPT), L2 is allowed to change its |
| 10156 | * own CR3 without exiting. If it has changed it, we must keep it. |
| 10157 | * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined |
| 10158 | * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12. |
| 10159 | * |
| 10160 | * Additionally, restore L2's PDPTR to vmcs12. |
| 10161 | */ |
| 10162 | if (enable_ept) { |
| 10163 | vmcs12->guest_cr3 = vmcs_read64(GUEST_CR3); |
| 10164 | vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0); |
| 10165 | vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1); |
| 10166 | vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2); |
| 10167 | vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3); |
| 10168 | } |
| 10169 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10170 | if (nested_cpu_has_vid(vmcs12)) |
| 10171 | vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS); |
| 10172 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10173 | vmcs12->vm_entry_controls = |
| 10174 | (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10175 | (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE); |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10176 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 10177 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) { |
| 10178 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 10179 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 10180 | } |
| 10181 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10182 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 10183 | * the relevant bit asks not to trap the change */ |
Jan Kiszka | b8c07d5 | 2013-04-06 13:51:21 +0200 | [diff] [blame] | 10184 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10185 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
Jan Kiszka | 10ba54a | 2013-08-08 16:26:31 +0200 | [diff] [blame] | 10186 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER) |
| 10187 | vmcs12->guest_ia32_efer = vcpu->arch.efer; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10188 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 10189 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 10190 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10191 | if (vmx_mpx_supported()) |
| 10192 | vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 10193 | if (nested_cpu_has_xsaves(vmcs12)) |
| 10194 | vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10195 | |
| 10196 | /* update exit information fields: */ |
| 10197 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10198 | vmcs12->vm_exit_reason = exit_reason; |
| 10199 | vmcs12->exit_qualification = exit_qualification; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10200 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10201 | vmcs12->vm_exit_intr_info = exit_intr_info; |
Jan Kiszka | c0d1c77 | 2013-04-14 12:12:50 +0200 | [diff] [blame] | 10202 | if ((vmcs12->vm_exit_intr_info & |
| 10203 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) == |
| 10204 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) |
| 10205 | vmcs12->vm_exit_intr_error_code = |
| 10206 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10207 | vmcs12->idt_vectoring_info_field = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10208 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 10209 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 10210 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10211 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { |
| 10212 | /* vm_entry_intr_info_field is cleared on exit. Emulate this |
| 10213 | * instead of reading the real value. */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10214 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10215 | |
| 10216 | /* |
| 10217 | * Transfer the event that L0 or L1 may wanted to inject into |
| 10218 | * L2 to IDT_VECTORING_INFO_FIELD. |
| 10219 | */ |
| 10220 | vmcs12_save_pending_event(vcpu, vmcs12); |
| 10221 | } |
| 10222 | |
| 10223 | /* |
| 10224 | * Drop what we picked up for L2 via vmx_complete_interrupts. It is |
| 10225 | * preserved above and would only end up incorrectly in L1. |
| 10226 | */ |
| 10227 | vcpu->arch.nmi_injected = false; |
| 10228 | kvm_clear_exception_queue(vcpu); |
| 10229 | kvm_clear_interrupt_queue(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10230 | } |
| 10231 | |
| 10232 | /* |
| 10233 | * A part of what we need to when the nested L2 guest exits and we want to |
| 10234 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 10235 | * in vmcs12. |
| 10236 | * This function is to be called not only on normal nested exit, but also on |
| 10237 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 10238 | * Failures During or After Loading Guest State"). |
| 10239 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 10240 | */ |
Jan Kiszka | 733568f | 2013-02-23 15:07:47 +0100 | [diff] [blame] | 10241 | static void load_vmcs12_host_state(struct kvm_vcpu *vcpu, |
| 10242 | struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10243 | { |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10244 | struct kvm_segment seg; |
| 10245 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10246 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 10247 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 10248 | 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] | 10249 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10250 | else |
| 10251 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10252 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10253 | |
| 10254 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 10255 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
H. Peter Anvin | 1adfa76 | 2013-04-27 16:10:11 -0700 | [diff] [blame] | 10256 | vmx_set_rflags(vcpu, X86_EFLAGS_FIXED); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10257 | /* |
| 10258 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
| 10259 | * actually changed, because it depends on the current state of |
| 10260 | * fpu_active (which may have changed). |
| 10261 | * Note that vmx_set_cr0 refers to efer set above. |
| 10262 | */ |
Jan Kiszka | 9e3e4dbf | 2013-09-03 21:11:45 +0200 | [diff] [blame] | 10263 | vmx_set_cr0(vcpu, vmcs12->host_cr0); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10264 | /* |
| 10265 | * If we did fpu_activate()/fpu_deactivate() during L2's run, we need |
| 10266 | * to apply the same changes to L1's vmcs. We just set cr0 correctly, |
| 10267 | * but we also need to update cr0_guest_host_mask and exception_bitmap. |
| 10268 | */ |
| 10269 | update_exception_bitmap(vcpu); |
| 10270 | vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0); |
| 10271 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 10272 | |
| 10273 | /* |
| 10274 | * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01 |
| 10275 | * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); |
| 10276 | */ |
| 10277 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 10278 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 10279 | |
Jan Kiszka | 29bf08f | 2013-12-28 16:31:52 +0100 | [diff] [blame] | 10280 | nested_ept_uninit_mmu_context(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10281 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10282 | kvm_set_cr3(vcpu, vmcs12->host_cr3); |
| 10283 | kvm_mmu_reset_context(vcpu); |
| 10284 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10285 | if (!enable_ept) |
| 10286 | vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault; |
| 10287 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10288 | if (enable_vpid) { |
| 10289 | /* |
| 10290 | * Trivially support vpid by letting L2s share their parent |
| 10291 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 10292 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 10293 | */ |
| 10294 | vmx_flush_tlb(vcpu); |
| 10295 | } |
| 10296 | |
| 10297 | |
| 10298 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 10299 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 10300 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 10301 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 10302 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10303 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10304 | /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */ |
| 10305 | if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS) |
| 10306 | vmcs_write64(GUEST_BNDCFGS, 0); |
| 10307 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10308 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10309 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10310 | vcpu->arch.pat = vmcs12->host_ia32_pat; |
| 10311 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10312 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 10313 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 10314 | vmcs12->host_ia32_perf_global_ctrl); |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10315 | |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10316 | /* Set L1 segment info according to Intel SDM |
| 10317 | 27.5.2 Loading Host Segment and Descriptor-Table Registers */ |
| 10318 | seg = (struct kvm_segment) { |
| 10319 | .base = 0, |
| 10320 | .limit = 0xFFFFFFFF, |
| 10321 | .selector = vmcs12->host_cs_selector, |
| 10322 | .type = 11, |
| 10323 | .present = 1, |
| 10324 | .s = 1, |
| 10325 | .g = 1 |
| 10326 | }; |
| 10327 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 10328 | seg.l = 1; |
| 10329 | else |
| 10330 | seg.db = 1; |
| 10331 | vmx_set_segment(vcpu, &seg, VCPU_SREG_CS); |
| 10332 | seg = (struct kvm_segment) { |
| 10333 | .base = 0, |
| 10334 | .limit = 0xFFFFFFFF, |
| 10335 | .type = 3, |
| 10336 | .present = 1, |
| 10337 | .s = 1, |
| 10338 | .db = 1, |
| 10339 | .g = 1 |
| 10340 | }; |
| 10341 | seg.selector = vmcs12->host_ds_selector; |
| 10342 | vmx_set_segment(vcpu, &seg, VCPU_SREG_DS); |
| 10343 | seg.selector = vmcs12->host_es_selector; |
| 10344 | vmx_set_segment(vcpu, &seg, VCPU_SREG_ES); |
| 10345 | seg.selector = vmcs12->host_ss_selector; |
| 10346 | vmx_set_segment(vcpu, &seg, VCPU_SREG_SS); |
| 10347 | seg.selector = vmcs12->host_fs_selector; |
| 10348 | seg.base = vmcs12->host_fs_base; |
| 10349 | vmx_set_segment(vcpu, &seg, VCPU_SREG_FS); |
| 10350 | seg.selector = vmcs12->host_gs_selector; |
| 10351 | seg.base = vmcs12->host_gs_base; |
| 10352 | vmx_set_segment(vcpu, &seg, VCPU_SREG_GS); |
| 10353 | seg = (struct kvm_segment) { |
Gleb Natapov | 205befd | 2013-08-04 15:08:06 +0300 | [diff] [blame] | 10354 | .base = vmcs12->host_tr_base, |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10355 | .limit = 0x67, |
| 10356 | .selector = vmcs12->host_tr_selector, |
| 10357 | .type = 11, |
| 10358 | .present = 1 |
| 10359 | }; |
| 10360 | vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); |
| 10361 | |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10362 | kvm_set_dr(vcpu, 7, 0x400); |
| 10363 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10364 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10365 | if (cpu_has_vmx_msr_bitmap()) |
| 10366 | vmx_set_msr_bitmap(vcpu); |
| 10367 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10368 | if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr, |
| 10369 | vmcs12->vm_exit_msr_load_count)) |
| 10370 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10371 | } |
| 10372 | |
| 10373 | /* |
| 10374 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 10375 | * and modify vmcs12 to make it see what it would expect to see there if |
| 10376 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 10377 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10378 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 10379 | u32 exit_intr_info, |
| 10380 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10381 | { |
| 10382 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10383 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 10384 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10385 | /* trying to cancel vmlaunch/vmresume is a bug */ |
| 10386 | WARN_ON_ONCE(vmx->nested.nested_run_pending); |
| 10387 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10388 | leave_guest_mode(vcpu); |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10389 | prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info, |
| 10390 | exit_qualification); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10391 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10392 | if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr, |
| 10393 | vmcs12->vm_exit_msr_store_count)) |
| 10394 | nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); |
| 10395 | |
Wanpeng Li | f3380ca5 | 2014-08-05 12:42:23 +0800 | [diff] [blame] | 10396 | vmx_load_vmcs01(vcpu); |
| 10397 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 10398 | if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT) |
| 10399 | && nested_exit_intr_ack_set(vcpu)) { |
| 10400 | int irq = kvm_cpu_get_interrupt(vcpu); |
| 10401 | WARN_ON(irq < 0); |
| 10402 | vmcs12->vm_exit_intr_info = irq | |
| 10403 | INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR; |
| 10404 | } |
| 10405 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 10406 | trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason, |
| 10407 | vmcs12->exit_qualification, |
| 10408 | vmcs12->idt_vectoring_info_field, |
| 10409 | vmcs12->vm_exit_intr_info, |
| 10410 | vmcs12->vm_exit_intr_error_code, |
| 10411 | KVM_ISA_VMX); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10412 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10413 | vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS)); |
| 10414 | vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS)); |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 10415 | vmx_segment_cache_clear(vmx); |
| 10416 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10417 | /* if no vmcs02 cache requested, remove the one we used */ |
| 10418 | if (VMCS02_POOL_SIZE == 0) |
| 10419 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 10420 | |
| 10421 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10422 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10423 | /* Update TSC_OFFSET if TSC was changed while L2 ran */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10424 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
| 10425 | |
| 10426 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 10427 | vmx->host_rsp = 0; |
| 10428 | |
| 10429 | /* Unpin physical memory we referred to in vmcs02 */ |
| 10430 | if (vmx->nested.apic_access_page) { |
| 10431 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10432 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10433 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10434 | if (vmx->nested.virtual_apic_page) { |
| 10435 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10436 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10437 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10438 | if (vmx->nested.pi_desc_page) { |
| 10439 | kunmap(vmx->nested.pi_desc_page); |
| 10440 | nested_release_page(vmx->nested.pi_desc_page); |
| 10441 | vmx->nested.pi_desc_page = NULL; |
| 10442 | vmx->nested.pi_desc = NULL; |
| 10443 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10444 | |
| 10445 | /* |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10446 | * We are now running in L2, mmu_notifier will force to reload the |
| 10447 | * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1. |
| 10448 | */ |
| 10449 | kvm_vcpu_reload_apic_access_page(vcpu); |
| 10450 | |
| 10451 | /* |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10452 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 10453 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 10454 | * success or failure flag accordingly. |
| 10455 | */ |
| 10456 | if (unlikely(vmx->fail)) { |
| 10457 | vmx->fail = 0; |
| 10458 | nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 10459 | } else |
| 10460 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10461 | if (enable_shadow_vmcs) |
| 10462 | vmx->nested.sync_shadow_vmcs = true; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10463 | |
| 10464 | /* in case we halted in L2 */ |
| 10465 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10466 | } |
| 10467 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10468 | /* |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10469 | * Forcibly leave nested mode in order to be able to reset the VCPU later on. |
| 10470 | */ |
| 10471 | static void vmx_leave_nested(struct kvm_vcpu *vcpu) |
| 10472 | { |
| 10473 | if (is_guest_mode(vcpu)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10474 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10475 | free_nested(to_vmx(vcpu)); |
| 10476 | } |
| 10477 | |
| 10478 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10479 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 10480 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 10481 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 10482 | * It should only be called before L2 actually succeeded to run, and when |
| 10483 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 10484 | */ |
| 10485 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 10486 | struct vmcs12 *vmcs12, |
| 10487 | u32 reason, unsigned long qualification) |
| 10488 | { |
| 10489 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10490 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 10491 | vmcs12->exit_qualification = qualification; |
| 10492 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10493 | if (enable_shadow_vmcs) |
| 10494 | to_vmx(vcpu)->nested.sync_shadow_vmcs = true; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10495 | } |
| 10496 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10497 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 10498 | struct x86_instruction_info *info, |
| 10499 | enum x86_intercept_stage stage) |
| 10500 | { |
| 10501 | return X86EMUL_CONTINUE; |
| 10502 | } |
| 10503 | |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10504 | static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu) |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10505 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 10506 | if (ple_gap) |
| 10507 | shrink_ple_window(vcpu); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10508 | } |
| 10509 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10510 | static void vmx_slot_enable_log_dirty(struct kvm *kvm, |
| 10511 | struct kvm_memory_slot *slot) |
| 10512 | { |
| 10513 | kvm_mmu_slot_leaf_clear_dirty(kvm, slot); |
| 10514 | kvm_mmu_slot_largepage_remove_write_access(kvm, slot); |
| 10515 | } |
| 10516 | |
| 10517 | static void vmx_slot_disable_log_dirty(struct kvm *kvm, |
| 10518 | struct kvm_memory_slot *slot) |
| 10519 | { |
| 10520 | kvm_mmu_slot_set_dirty(kvm, slot); |
| 10521 | } |
| 10522 | |
| 10523 | static void vmx_flush_log_dirty(struct kvm *kvm) |
| 10524 | { |
| 10525 | kvm_flush_pml_buffers(kvm); |
| 10526 | } |
| 10527 | |
| 10528 | static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 10529 | struct kvm_memory_slot *memslot, |
| 10530 | gfn_t offset, unsigned long mask) |
| 10531 | { |
| 10532 | kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask); |
| 10533 | } |
| 10534 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10535 | /* |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 10536 | * This routine does the following things for vCPU which is going |
| 10537 | * to be blocked if VT-d PI is enabled. |
| 10538 | * - Store the vCPU to the wakeup list, so when interrupts happen |
| 10539 | * we can find the right vCPU to wake up. |
| 10540 | * - Change the Posted-interrupt descriptor as below: |
| 10541 | * 'NDST' <-- vcpu->pre_pcpu |
| 10542 | * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR |
| 10543 | * - If 'ON' is set during this process, which means at least one |
| 10544 | * interrupt is posted for this vCPU, we cannot block it, in |
| 10545 | * this case, return 1, otherwise, return 0. |
| 10546 | * |
| 10547 | */ |
| 10548 | static int vmx_pre_block(struct kvm_vcpu *vcpu) |
| 10549 | { |
| 10550 | unsigned long flags; |
| 10551 | unsigned int dest; |
| 10552 | struct pi_desc old, new; |
| 10553 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 10554 | |
| 10555 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 10556 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10557 | return 0; |
| 10558 | |
| 10559 | vcpu->pre_pcpu = vcpu->cpu; |
| 10560 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10561 | vcpu->pre_pcpu), flags); |
| 10562 | list_add_tail(&vcpu->blocked_vcpu_list, |
| 10563 | &per_cpu(blocked_vcpu_on_cpu, |
| 10564 | vcpu->pre_pcpu)); |
| 10565 | spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10566 | vcpu->pre_pcpu), flags); |
| 10567 | |
| 10568 | do { |
| 10569 | old.control = new.control = pi_desc->control; |
| 10570 | |
| 10571 | /* |
| 10572 | * We should not block the vCPU if |
| 10573 | * an interrupt is posted for it. |
| 10574 | */ |
| 10575 | if (pi_test_on(pi_desc) == 1) { |
| 10576 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10577 | vcpu->pre_pcpu), flags); |
| 10578 | list_del(&vcpu->blocked_vcpu_list); |
| 10579 | spin_unlock_irqrestore( |
| 10580 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10581 | vcpu->pre_pcpu), flags); |
| 10582 | vcpu->pre_pcpu = -1; |
| 10583 | |
| 10584 | return 1; |
| 10585 | } |
| 10586 | |
| 10587 | WARN((pi_desc->sn == 1), |
| 10588 | "Warning: SN field of posted-interrupts " |
| 10589 | "is set before blocking\n"); |
| 10590 | |
| 10591 | /* |
| 10592 | * Since vCPU can be preempted during this process, |
| 10593 | * vcpu->cpu could be different with pre_pcpu, we |
| 10594 | * need to set pre_pcpu as the destination of wakeup |
| 10595 | * notification event, then we can find the right vCPU |
| 10596 | * to wakeup in wakeup handler if interrupts happen |
| 10597 | * when the vCPU is in blocked state. |
| 10598 | */ |
| 10599 | dest = cpu_physical_id(vcpu->pre_pcpu); |
| 10600 | |
| 10601 | if (x2apic_enabled()) |
| 10602 | new.ndst = dest; |
| 10603 | else |
| 10604 | new.ndst = (dest << 8) & 0xFF00; |
| 10605 | |
| 10606 | /* set 'NV' to 'wakeup vector' */ |
| 10607 | new.nv = POSTED_INTR_WAKEUP_VECTOR; |
| 10608 | } while (cmpxchg(&pi_desc->control, old.control, |
| 10609 | new.control) != old.control); |
| 10610 | |
| 10611 | return 0; |
| 10612 | } |
| 10613 | |
| 10614 | static void vmx_post_block(struct kvm_vcpu *vcpu) |
| 10615 | { |
| 10616 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 10617 | struct pi_desc old, new; |
| 10618 | unsigned int dest; |
| 10619 | unsigned long flags; |
| 10620 | |
| 10621 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 10622 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10623 | return; |
| 10624 | |
| 10625 | do { |
| 10626 | old.control = new.control = pi_desc->control; |
| 10627 | |
| 10628 | dest = cpu_physical_id(vcpu->cpu); |
| 10629 | |
| 10630 | if (x2apic_enabled()) |
| 10631 | new.ndst = dest; |
| 10632 | else |
| 10633 | new.ndst = (dest << 8) & 0xFF00; |
| 10634 | |
| 10635 | /* Allow posting non-urgent interrupts */ |
| 10636 | new.sn = 0; |
| 10637 | |
| 10638 | /* set 'NV' to 'notification vector' */ |
| 10639 | new.nv = POSTED_INTR_VECTOR; |
| 10640 | } while (cmpxchg(&pi_desc->control, old.control, |
| 10641 | new.control) != old.control); |
| 10642 | |
| 10643 | if(vcpu->pre_pcpu != -1) { |
| 10644 | spin_lock_irqsave( |
| 10645 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10646 | vcpu->pre_pcpu), flags); |
| 10647 | list_del(&vcpu->blocked_vcpu_list); |
| 10648 | spin_unlock_irqrestore( |
| 10649 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10650 | vcpu->pre_pcpu), flags); |
| 10651 | vcpu->pre_pcpu = -1; |
| 10652 | } |
| 10653 | } |
| 10654 | |
| 10655 | /* |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10656 | * vmx_update_pi_irte - set IRTE for Posted-Interrupts |
| 10657 | * |
| 10658 | * @kvm: kvm |
| 10659 | * @host_irq: host irq of the interrupt |
| 10660 | * @guest_irq: gsi of the interrupt |
| 10661 | * @set: set or unset PI |
| 10662 | * returns 0 on success, < 0 on failure |
| 10663 | */ |
| 10664 | static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq, |
| 10665 | uint32_t guest_irq, bool set) |
| 10666 | { |
| 10667 | struct kvm_kernel_irq_routing_entry *e; |
| 10668 | struct kvm_irq_routing_table *irq_rt; |
| 10669 | struct kvm_lapic_irq irq; |
| 10670 | struct kvm_vcpu *vcpu; |
| 10671 | struct vcpu_data vcpu_info; |
| 10672 | int idx, ret = -EINVAL; |
| 10673 | |
| 10674 | if (!kvm_arch_has_assigned_device(kvm) || |
| 10675 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10676 | return 0; |
| 10677 | |
| 10678 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 10679 | irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); |
| 10680 | BUG_ON(guest_irq >= irq_rt->nr_rt_entries); |
| 10681 | |
| 10682 | hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { |
| 10683 | if (e->type != KVM_IRQ_ROUTING_MSI) |
| 10684 | continue; |
| 10685 | /* |
| 10686 | * VT-d PI cannot support posting multicast/broadcast |
| 10687 | * interrupts to a vCPU, we still use interrupt remapping |
| 10688 | * for these kind of interrupts. |
| 10689 | * |
| 10690 | * For lowest-priority interrupts, we only support |
| 10691 | * those with single CPU as the destination, e.g. user |
| 10692 | * configures the interrupts via /proc/irq or uses |
| 10693 | * irqbalance to make the interrupts single-CPU. |
| 10694 | * |
| 10695 | * We will support full lowest-priority interrupt later. |
| 10696 | */ |
| 10697 | |
| 10698 | kvm_set_msi_irq(e, &irq); |
| 10699 | if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) |
| 10700 | continue; |
| 10701 | |
| 10702 | vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu)); |
| 10703 | vcpu_info.vector = irq.vector; |
| 10704 | |
| 10705 | trace_kvm_pi_irte_update(vcpu->vcpu_id, e->gsi, |
| 10706 | vcpu_info.vector, vcpu_info.pi_desc_addr, set); |
| 10707 | |
| 10708 | if (set) |
| 10709 | ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); |
| 10710 | else { |
| 10711 | /* suppress notification event before unposting */ |
| 10712 | pi_set_sn(vcpu_to_pi_desc(vcpu)); |
| 10713 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
| 10714 | pi_clear_sn(vcpu_to_pi_desc(vcpu)); |
| 10715 | } |
| 10716 | |
| 10717 | if (ret < 0) { |
| 10718 | printk(KERN_INFO "%s: failed to update PI IRTE\n", |
| 10719 | __func__); |
| 10720 | goto out; |
| 10721 | } |
| 10722 | } |
| 10723 | |
| 10724 | ret = 0; |
| 10725 | out: |
| 10726 | srcu_read_unlock(&kvm->irq_srcu, idx); |
| 10727 | return ret; |
| 10728 | } |
| 10729 | |
Christian Ehrhardt | cbdd1be | 2007-09-09 15:41:59 +0300 | [diff] [blame] | 10730 | static struct kvm_x86_ops vmx_x86_ops = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10731 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 10732 | .disabled_by_bios = vmx_disabled_by_bios, |
| 10733 | .hardware_setup = hardware_setup, |
| 10734 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 10735 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10736 | .hardware_enable = hardware_enable, |
| 10737 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 10738 | .cpu_has_accelerated_tpr = report_flexpriority, |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 10739 | .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10740 | |
| 10741 | .vcpu_create = vmx_create_vcpu, |
| 10742 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10743 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10744 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10745 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10746 | .vcpu_load = vmx_vcpu_load, |
| 10747 | .vcpu_put = vmx_vcpu_put, |
| 10748 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 10749 | .update_db_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10750 | .get_msr = vmx_get_msr, |
| 10751 | .set_msr = vmx_set_msr, |
| 10752 | .get_segment_base = vmx_get_segment_base, |
| 10753 | .get_segment = vmx_get_segment, |
| 10754 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 10755 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10756 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 10757 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 10758 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 10759 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10760 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10761 | .set_cr3 = vmx_set_cr3, |
| 10762 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10763 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10764 | .get_idt = vmx_get_idt, |
| 10765 | .set_idt = vmx_set_idt, |
| 10766 | .get_gdt = vmx_get_gdt, |
| 10767 | .set_gdt = vmx_set_gdt, |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 10768 | .get_dr6 = vmx_get_dr6, |
| 10769 | .set_dr6 = vmx_set_dr6, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 10770 | .set_dr7 = vmx_set_dr7, |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 10771 | .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 10772 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10773 | .get_rflags = vmx_get_rflags, |
| 10774 | .set_rflags = vmx_set_rflags, |
Paolo Bonzini | 0fdd74f | 2015-05-20 11:33:43 +0200 | [diff] [blame] | 10775 | .fpu_activate = vmx_fpu_activate, |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 10776 | .fpu_deactivate = vmx_fpu_deactivate, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10777 | |
| 10778 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10779 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10780 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 10781 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10782 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 10783 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 10784 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 10785 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 10786 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10787 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 10788 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 10789 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 10790 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10791 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 10792 | .get_nmi_mask = vmx_get_nmi_mask, |
| 10793 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10794 | .enable_nmi_window = enable_nmi_window, |
| 10795 | .enable_irq_window = enable_irq_window, |
| 10796 | .update_cr8_intercept = update_cr8_intercept, |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 10797 | .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode, |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10798 | .set_apic_access_page_addr = vmx_set_apic_access_page_addr, |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 10799 | .cpu_uses_apicv = vmx_cpu_uses_apicv, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 10800 | .load_eoi_exitmap = vmx_load_eoi_exitmap, |
| 10801 | .hwapic_irr_update = vmx_hwapic_irr_update, |
| 10802 | .hwapic_isr_update = vmx_hwapic_isr_update, |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 10803 | .sync_pir_to_irr = vmx_sync_pir_to_irr, |
| 10804 | .deliver_posted_interrupt = vmx_deliver_posted_interrupt, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10805 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 10806 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 10807 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 10808 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10809 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10810 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10811 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 10812 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 10813 | |
| 10814 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 10815 | |
| 10816 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 10817 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 10818 | |
| 10819 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 10820 | |
| 10821 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10822 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 10823 | .read_tsc_offset = vmx_read_tsc_offset, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10824 | .write_tsc_offset = vmx_write_tsc_offset, |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 10825 | .adjust_tsc_offset_guest = vmx_adjust_tsc_offset_guest, |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 10826 | .read_l1_tsc = vmx_read_l1_tsc, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 10827 | |
| 10828 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10829 | |
| 10830 | .check_intercept = vmx_check_intercept, |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 10831 | .handle_external_intr = vmx_handle_external_intr, |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 10832 | .mpx_supported = vmx_mpx_supported, |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 10833 | .xsaves_supported = vmx_xsaves_supported, |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10834 | |
| 10835 | .check_nested_events = vmx_check_nested_events, |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10836 | |
| 10837 | .sched_in = vmx_sched_in, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10838 | |
| 10839 | .slot_enable_log_dirty = vmx_slot_enable_log_dirty, |
| 10840 | .slot_disable_log_dirty = vmx_slot_disable_log_dirty, |
| 10841 | .flush_log_dirty = vmx_flush_log_dirty, |
| 10842 | .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked, |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 10843 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 10844 | .pre_block = vmx_pre_block, |
| 10845 | .post_block = vmx_post_block, |
| 10846 | |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 10847 | .pmu_ops = &intel_pmu_ops, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10848 | |
| 10849 | .update_pi_irte = vmx_update_pi_irte, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10850 | }; |
| 10851 | |
| 10852 | static int __init vmx_init(void) |
| 10853 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10854 | int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 10855 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10856 | if (r) |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10857 | return r; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 10858 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 10859 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10860 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 10861 | crash_vmclear_local_loaded_vmcss); |
| 10862 | #endif |
| 10863 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10864 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10865 | } |
| 10866 | |
| 10867 | static void __exit vmx_exit(void) |
| 10868 | { |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 10869 | #ifdef CONFIG_KEXEC_CORE |
Monam Agarwal | 3b63a43 | 2014-03-22 12:28:10 +0530 | [diff] [blame] | 10870 | RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10871 | synchronize_rcu(); |
| 10872 | #endif |
| 10873 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 10874 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10875 | } |
| 10876 | |
| 10877 | module_init(vmx_init) |
| 10878 | module_exit(vmx_exit) |