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 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 110 | #define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD) |
| 111 | #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] | 112 | #define KVM_VM_CR0_ALWAYS_ON \ |
| 113 | (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] | 114 | #define KVM_CR4_GUEST_OWNED_BITS \ |
| 115 | (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ |
Andy Lutomirski | 52ce3c2 | 2014-10-07 17:16:21 -0700 | [diff] [blame] | 116 | | X86_CR4_OSXMMEXCPT | X86_CR4_TSD) |
Avi Kivity | 4c38609 | 2009-12-07 12:26:18 +0200 | [diff] [blame] | 117 | |
Avi Kivity | cdc0e24 | 2009-12-06 17:21:14 +0200 | [diff] [blame] | 118 | #define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE) |
| 119 | #define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE) |
| 120 | |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 121 | #define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM)) |
| 122 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 123 | #define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5 |
| 124 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 125 | /* |
| 126 | * These 2 parameters are used to config the controls for Pause-Loop Exiting: |
| 127 | * ple_gap: upper bound on the amount of time between two successive |
| 128 | * executions of PAUSE in a loop. Also indicate if ple enabled. |
Rik van Riel | 00c25bc | 2011-01-04 09:51:33 -0500 | [diff] [blame] | 129 | * According to test, this time is usually smaller than 128 cycles. |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 130 | * ple_window: upper bound on the amount of time a guest is allowed to execute |
| 131 | * in a PAUSE loop. Tests indicate that most spinlocks are held for |
| 132 | * less than 2^12 cycles |
| 133 | * Time is measured based on a counter that runs at the same rate as the TSC, |
| 134 | * refer SDM volume 3b section 21.6.13 & 22.1.3. |
| 135 | */ |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 136 | #define KVM_VMX_DEFAULT_PLE_GAP 128 |
| 137 | #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |
| 138 | #define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2 |
| 139 | #define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0 |
| 140 | #define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \ |
| 141 | INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW |
| 142 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 143 | static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP; |
| 144 | module_param(ple_gap, int, S_IRUGO); |
| 145 | |
| 146 | static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW; |
| 147 | module_param(ple_window, int, S_IRUGO); |
| 148 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 149 | /* Default doubles per-vcpu window every exit. */ |
| 150 | static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW; |
| 151 | module_param(ple_window_grow, int, S_IRUGO); |
| 152 | |
| 153 | /* Default resets per-vcpu window every exit to ple_window. */ |
| 154 | static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK; |
| 155 | module_param(ple_window_shrink, int, S_IRUGO); |
| 156 | |
| 157 | /* Default is to compute the maximum so we can never overflow. */ |
| 158 | static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 159 | static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX; |
| 160 | module_param(ple_window_max, int, S_IRUGO); |
| 161 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 162 | extern const ulong vmx_return; |
| 163 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 164 | #define NR_AUTOLOAD_MSRS 8 |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 165 | #define VMCS02_POOL_SIZE 1 |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 166 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 167 | struct vmcs { |
| 168 | u32 revision_id; |
| 169 | u32 abort; |
| 170 | char data[0]; |
| 171 | }; |
| 172 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 173 | /* |
| 174 | * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also |
| 175 | * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs |
| 176 | * loaded on this CPU (so we can clear them if the CPU goes down). |
| 177 | */ |
| 178 | struct loaded_vmcs { |
| 179 | struct vmcs *vmcs; |
| 180 | int cpu; |
| 181 | int launched; |
| 182 | struct list_head loaded_vmcss_on_cpu_link; |
| 183 | }; |
| 184 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 185 | struct shared_msr_entry { |
| 186 | unsigned index; |
| 187 | u64 data; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 188 | u64 mask; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 189 | }; |
| 190 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 191 | /* |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 192 | * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a |
| 193 | * single nested guest (L2), hence the name vmcs12. Any VMX implementation has |
| 194 | * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is |
| 195 | * stored in guest memory specified by VMPTRLD, but is opaque to the guest, |
| 196 | * which must access it using VMREAD/VMWRITE/VMCLEAR instructions. |
| 197 | * More than one of these structures may exist, if L1 runs multiple L2 guests. |
| 198 | * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the |
| 199 | * underlying hardware which will be used to run L2. |
| 200 | * This structure is packed to ensure that its layout is identical across |
| 201 | * machines (necessary for live migration). |
| 202 | * If there are changes in this struct, VMCS12_REVISION must be changed. |
| 203 | */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 204 | typedef u64 natural_width; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 205 | struct __packed vmcs12 { |
| 206 | /* According to the Intel spec, a VMCS region must start with the |
| 207 | * following two fields. Then follow implementation-specific data. |
| 208 | */ |
| 209 | u32 revision_id; |
| 210 | u32 abort; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 211 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 212 | u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */ |
| 213 | u32 padding[7]; /* room for future expansion */ |
| 214 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 215 | u64 io_bitmap_a; |
| 216 | u64 io_bitmap_b; |
| 217 | u64 msr_bitmap; |
| 218 | u64 vm_exit_msr_store_addr; |
| 219 | u64 vm_exit_msr_load_addr; |
| 220 | u64 vm_entry_msr_load_addr; |
| 221 | u64 tsc_offset; |
| 222 | u64 virtual_apic_page_addr; |
| 223 | u64 apic_access_addr; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 224 | u64 posted_intr_desc_addr; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 225 | u64 ept_pointer; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 226 | u64 eoi_exit_bitmap0; |
| 227 | u64 eoi_exit_bitmap1; |
| 228 | u64 eoi_exit_bitmap2; |
| 229 | u64 eoi_exit_bitmap3; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 230 | u64 xss_exit_bitmap; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 231 | u64 guest_physical_address; |
| 232 | u64 vmcs_link_pointer; |
| 233 | u64 guest_ia32_debugctl; |
| 234 | u64 guest_ia32_pat; |
| 235 | u64 guest_ia32_efer; |
| 236 | u64 guest_ia32_perf_global_ctrl; |
| 237 | u64 guest_pdptr0; |
| 238 | u64 guest_pdptr1; |
| 239 | u64 guest_pdptr2; |
| 240 | u64 guest_pdptr3; |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 241 | u64 guest_bndcfgs; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 242 | u64 host_ia32_pat; |
| 243 | u64 host_ia32_efer; |
| 244 | u64 host_ia32_perf_global_ctrl; |
| 245 | u64 padding64[8]; /* room for future expansion */ |
| 246 | /* |
| 247 | * To allow migration of L1 (complete with its L2 guests) between |
| 248 | * machines of different natural widths (32 or 64 bit), we cannot have |
| 249 | * unsigned long fields with no explict size. We use u64 (aliased |
| 250 | * natural_width) instead. Luckily, x86 is little-endian. |
| 251 | */ |
| 252 | natural_width cr0_guest_host_mask; |
| 253 | natural_width cr4_guest_host_mask; |
| 254 | natural_width cr0_read_shadow; |
| 255 | natural_width cr4_read_shadow; |
| 256 | natural_width cr3_target_value0; |
| 257 | natural_width cr3_target_value1; |
| 258 | natural_width cr3_target_value2; |
| 259 | natural_width cr3_target_value3; |
| 260 | natural_width exit_qualification; |
| 261 | natural_width guest_linear_address; |
| 262 | natural_width guest_cr0; |
| 263 | natural_width guest_cr3; |
| 264 | natural_width guest_cr4; |
| 265 | natural_width guest_es_base; |
| 266 | natural_width guest_cs_base; |
| 267 | natural_width guest_ss_base; |
| 268 | natural_width guest_ds_base; |
| 269 | natural_width guest_fs_base; |
| 270 | natural_width guest_gs_base; |
| 271 | natural_width guest_ldtr_base; |
| 272 | natural_width guest_tr_base; |
| 273 | natural_width guest_gdtr_base; |
| 274 | natural_width guest_idtr_base; |
| 275 | natural_width guest_dr7; |
| 276 | natural_width guest_rsp; |
| 277 | natural_width guest_rip; |
| 278 | natural_width guest_rflags; |
| 279 | natural_width guest_pending_dbg_exceptions; |
| 280 | natural_width guest_sysenter_esp; |
| 281 | natural_width guest_sysenter_eip; |
| 282 | natural_width host_cr0; |
| 283 | natural_width host_cr3; |
| 284 | natural_width host_cr4; |
| 285 | natural_width host_fs_base; |
| 286 | natural_width host_gs_base; |
| 287 | natural_width host_tr_base; |
| 288 | natural_width host_gdtr_base; |
| 289 | natural_width host_idtr_base; |
| 290 | natural_width host_ia32_sysenter_esp; |
| 291 | natural_width host_ia32_sysenter_eip; |
| 292 | natural_width host_rsp; |
| 293 | natural_width host_rip; |
| 294 | natural_width paddingl[8]; /* room for future expansion */ |
| 295 | u32 pin_based_vm_exec_control; |
| 296 | u32 cpu_based_vm_exec_control; |
| 297 | u32 exception_bitmap; |
| 298 | u32 page_fault_error_code_mask; |
| 299 | u32 page_fault_error_code_match; |
| 300 | u32 cr3_target_count; |
| 301 | u32 vm_exit_controls; |
| 302 | u32 vm_exit_msr_store_count; |
| 303 | u32 vm_exit_msr_load_count; |
| 304 | u32 vm_entry_controls; |
| 305 | u32 vm_entry_msr_load_count; |
| 306 | u32 vm_entry_intr_info_field; |
| 307 | u32 vm_entry_exception_error_code; |
| 308 | u32 vm_entry_instruction_len; |
| 309 | u32 tpr_threshold; |
| 310 | u32 secondary_vm_exec_control; |
| 311 | u32 vm_instruction_error; |
| 312 | u32 vm_exit_reason; |
| 313 | u32 vm_exit_intr_info; |
| 314 | u32 vm_exit_intr_error_code; |
| 315 | u32 idt_vectoring_info_field; |
| 316 | u32 idt_vectoring_error_code; |
| 317 | u32 vm_exit_instruction_len; |
| 318 | u32 vmx_instruction_info; |
| 319 | u32 guest_es_limit; |
| 320 | u32 guest_cs_limit; |
| 321 | u32 guest_ss_limit; |
| 322 | u32 guest_ds_limit; |
| 323 | u32 guest_fs_limit; |
| 324 | u32 guest_gs_limit; |
| 325 | u32 guest_ldtr_limit; |
| 326 | u32 guest_tr_limit; |
| 327 | u32 guest_gdtr_limit; |
| 328 | u32 guest_idtr_limit; |
| 329 | u32 guest_es_ar_bytes; |
| 330 | u32 guest_cs_ar_bytes; |
| 331 | u32 guest_ss_ar_bytes; |
| 332 | u32 guest_ds_ar_bytes; |
| 333 | u32 guest_fs_ar_bytes; |
| 334 | u32 guest_gs_ar_bytes; |
| 335 | u32 guest_ldtr_ar_bytes; |
| 336 | u32 guest_tr_ar_bytes; |
| 337 | u32 guest_interruptibility_info; |
| 338 | u32 guest_activity_state; |
| 339 | u32 guest_sysenter_cs; |
| 340 | u32 host_ia32_sysenter_cs; |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 341 | u32 vmx_preemption_timer_value; |
| 342 | u32 padding32[7]; /* room for future expansion */ |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 343 | u16 virtual_processor_id; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 344 | u16 posted_intr_nv; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 345 | u16 guest_es_selector; |
| 346 | u16 guest_cs_selector; |
| 347 | u16 guest_ss_selector; |
| 348 | u16 guest_ds_selector; |
| 349 | u16 guest_fs_selector; |
| 350 | u16 guest_gs_selector; |
| 351 | u16 guest_ldtr_selector; |
| 352 | u16 guest_tr_selector; |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 353 | u16 guest_intr_status; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 354 | u16 host_es_selector; |
| 355 | u16 host_cs_selector; |
| 356 | u16 host_ss_selector; |
| 357 | u16 host_ds_selector; |
| 358 | u16 host_fs_selector; |
| 359 | u16 host_gs_selector; |
| 360 | u16 host_tr_selector; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 361 | }; |
| 362 | |
| 363 | /* |
| 364 | * VMCS12_REVISION is an arbitrary id that should be changed if the content or |
| 365 | * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and |
| 366 | * VMPTRLD verifies that the VMCS region that L1 is loading contains this id. |
| 367 | */ |
| 368 | #define VMCS12_REVISION 0x11e57ed0 |
| 369 | |
| 370 | /* |
| 371 | * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region |
| 372 | * and any VMCS region. Although only sizeof(struct vmcs12) are used by the |
| 373 | * current implementation, 4K are reserved to avoid future complications. |
| 374 | */ |
| 375 | #define VMCS12_SIZE 0x1000 |
| 376 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 377 | /* Used to remember the last vmcs02 used for some recently used vmcs12s */ |
| 378 | struct vmcs02_list { |
| 379 | struct list_head list; |
| 380 | gpa_t vmptr; |
| 381 | struct loaded_vmcs vmcs02; |
| 382 | }; |
| 383 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 384 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 385 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 386 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 387 | */ |
| 388 | struct nested_vmx { |
| 389 | /* Has the level1 guest done vmxon? */ |
| 390 | bool vmxon; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 391 | gpa_t vmxon_ptr; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 392 | |
| 393 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 394 | gpa_t current_vmptr; |
| 395 | /* The host-usable pointer to the above */ |
| 396 | struct page *current_vmcs12_page; |
| 397 | struct vmcs12 *current_vmcs12; |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 398 | struct vmcs *current_shadow_vmcs; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 399 | /* |
| 400 | * Indicates if the shadow vmcs must be updated with the |
| 401 | * data hold by vmcs12 |
| 402 | */ |
| 403 | bool sync_shadow_vmcs; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 404 | |
| 405 | /* vmcs02_list cache of VMCSs recently used to run L2 guests */ |
| 406 | struct list_head vmcs02_pool; |
| 407 | int vmcs02_num; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 408 | u64 vmcs01_tsc_offset; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 409 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 410 | bool nested_run_pending; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 411 | /* |
| 412 | * Guest pages referred to in vmcs02 with host-physical pointers, so |
| 413 | * we must keep them pinned while L2 runs. |
| 414 | */ |
| 415 | struct page *apic_access_page; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 416 | struct page *virtual_apic_page; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 417 | struct page *pi_desc_page; |
| 418 | struct pi_desc *pi_desc; |
| 419 | bool pi_pending; |
| 420 | u16 posted_intr_nv; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 421 | u64 msr_ia32_feature_control; |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 422 | |
| 423 | struct hrtimer preemption_timer; |
| 424 | bool preemption_timer_expired; |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 425 | |
| 426 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 427 | u64 vmcs01_debugctl; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 428 | |
| 429 | u32 nested_vmx_procbased_ctls_low; |
| 430 | u32 nested_vmx_procbased_ctls_high; |
| 431 | u32 nested_vmx_true_procbased_ctls_low; |
| 432 | u32 nested_vmx_secondary_ctls_low; |
| 433 | u32 nested_vmx_secondary_ctls_high; |
| 434 | u32 nested_vmx_pinbased_ctls_low; |
| 435 | u32 nested_vmx_pinbased_ctls_high; |
| 436 | u32 nested_vmx_exit_ctls_low; |
| 437 | u32 nested_vmx_exit_ctls_high; |
| 438 | u32 nested_vmx_true_exit_ctls_low; |
| 439 | u32 nested_vmx_entry_ctls_low; |
| 440 | u32 nested_vmx_entry_ctls_high; |
| 441 | u32 nested_vmx_true_entry_ctls_low; |
| 442 | u32 nested_vmx_misc_low; |
| 443 | u32 nested_vmx_misc_high; |
| 444 | u32 nested_vmx_ept_caps; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 445 | }; |
| 446 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 447 | #define POSTED_INTR_ON 0 |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 448 | #define POSTED_INTR_SN 1 |
| 449 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 450 | /* Posted-Interrupt Descriptor */ |
| 451 | struct pi_desc { |
| 452 | u32 pir[8]; /* Posted interrupt requested */ |
Feng Wu | 6ef1522 | 2015-09-18 22:29:45 +0800 | [diff] [blame] | 453 | union { |
| 454 | struct { |
| 455 | /* bit 256 - Outstanding Notification */ |
| 456 | u16 on : 1, |
| 457 | /* bit 257 - Suppress Notification */ |
| 458 | sn : 1, |
| 459 | /* bit 271:258 - Reserved */ |
| 460 | rsvd_1 : 14; |
| 461 | /* bit 279:272 - Notification Vector */ |
| 462 | u8 nv; |
| 463 | /* bit 287:280 - Reserved */ |
| 464 | u8 rsvd_2; |
| 465 | /* bit 319:288 - Notification Destination */ |
| 466 | u32 ndst; |
| 467 | }; |
| 468 | u64 control; |
| 469 | }; |
| 470 | u32 rsvd[6]; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 471 | } __aligned(64); |
| 472 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 473 | static bool pi_test_and_set_on(struct pi_desc *pi_desc) |
| 474 | { |
| 475 | return test_and_set_bit(POSTED_INTR_ON, |
| 476 | (unsigned long *)&pi_desc->control); |
| 477 | } |
| 478 | |
| 479 | static bool pi_test_and_clear_on(struct pi_desc *pi_desc) |
| 480 | { |
| 481 | return test_and_clear_bit(POSTED_INTR_ON, |
| 482 | (unsigned long *)&pi_desc->control); |
| 483 | } |
| 484 | |
| 485 | static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc) |
| 486 | { |
| 487 | return test_and_set_bit(vector, (unsigned long *)pi_desc->pir); |
| 488 | } |
| 489 | |
Feng Wu | ebbfc76 | 2015-09-18 22:29:46 +0800 | [diff] [blame] | 490 | static inline void pi_clear_sn(struct pi_desc *pi_desc) |
| 491 | { |
| 492 | return clear_bit(POSTED_INTR_SN, |
| 493 | (unsigned long *)&pi_desc->control); |
| 494 | } |
| 495 | |
| 496 | static inline void pi_set_sn(struct pi_desc *pi_desc) |
| 497 | { |
| 498 | return set_bit(POSTED_INTR_SN, |
| 499 | (unsigned long *)&pi_desc->control); |
| 500 | } |
| 501 | |
| 502 | static inline int pi_test_on(struct pi_desc *pi_desc) |
| 503 | { |
| 504 | return test_bit(POSTED_INTR_ON, |
| 505 | (unsigned long *)&pi_desc->control); |
| 506 | } |
| 507 | |
| 508 | static inline int pi_test_sn(struct pi_desc *pi_desc) |
| 509 | { |
| 510 | return test_bit(POSTED_INTR_SN, |
| 511 | (unsigned long *)&pi_desc->control); |
| 512 | } |
| 513 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 514 | struct vcpu_vmx { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 515 | struct kvm_vcpu vcpu; |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 516 | unsigned long host_rsp; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 517 | u8 fail; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 518 | bool nmi_known_unmasked; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 519 | u32 exit_intr_info; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 520 | u32 idt_vectoring_info; |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 521 | ulong rflags; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 522 | struct shared_msr_entry *guest_msrs; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 523 | int nmsrs; |
| 524 | int save_nmsrs; |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 525 | unsigned long host_idt_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 526 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 527 | u64 msr_host_kernel_gs_base; |
| 528 | u64 msr_guest_kernel_gs_base; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 529 | #endif |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 530 | u32 vm_entry_controls_shadow; |
| 531 | u32 vm_exit_controls_shadow; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 532 | /* |
| 533 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 534 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
| 535 | * guest (L2), it points to a different VMCS. |
| 536 | */ |
| 537 | struct loaded_vmcs vmcs01; |
| 538 | struct loaded_vmcs *loaded_vmcs; |
| 539 | bool __launched; /* temporary, used in vmx_vcpu_run */ |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 540 | struct msr_autoload { |
| 541 | unsigned nr; |
| 542 | struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS]; |
| 543 | struct vmx_msr_entry host[NR_AUTOLOAD_MSRS]; |
| 544 | } msr_autoload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 545 | struct { |
| 546 | int loaded; |
| 547 | u16 fs_sel, gs_sel, ldt_sel; |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 548 | #ifdef CONFIG_X86_64 |
| 549 | u16 ds_sel, es_sel; |
| 550 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 551 | int gs_ldt_reload_needed; |
| 552 | int fs_reload_needed; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 553 | u64 msr_host_bndcfgs; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 554 | unsigned long vmcs_host_cr4; /* May not match real cr4 */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 555 | } host_state; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 556 | struct { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 557 | int vm86_active; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 558 | ulong save_rflags; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 559 | struct kvm_segment segs[8]; |
| 560 | } rmode; |
| 561 | struct { |
| 562 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 563 | struct kvm_save_segment { |
| 564 | u16 selector; |
| 565 | unsigned long base; |
| 566 | u32 limit; |
| 567 | u32 ar; |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 568 | } seg[8]; |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 569 | } segment_cache; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 570 | int vpid; |
Mohammed Gamal | 04fa4d3 | 2008-08-17 16:39:48 +0300 | [diff] [blame] | 571 | bool emulation_required; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 572 | |
| 573 | /* Support for vnmi-less CPUs */ |
| 574 | int soft_vnmi_blocked; |
| 575 | ktime_t entry_time; |
| 576 | s64 vnmi_blocked_time; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 577 | u32 exit_reason; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 578 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 579 | /* Posted interrupt descriptor */ |
| 580 | struct pi_desc pi_desc; |
| 581 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 582 | /* Support for a guest hypervisor (nested VMX) */ |
| 583 | struct nested_vmx nested; |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 584 | |
| 585 | /* Dynamic PLE window. */ |
| 586 | int ple_window; |
| 587 | bool ple_window_dirty; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 588 | |
| 589 | /* Support for PML */ |
| 590 | #define PML_ENTITY_NUM 512 |
| 591 | struct page *pml_pg; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 592 | }; |
| 593 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 594 | enum segment_cache_field { |
| 595 | SEG_FIELD_SEL = 0, |
| 596 | SEG_FIELD_BASE = 1, |
| 597 | SEG_FIELD_LIMIT = 2, |
| 598 | SEG_FIELD_AR = 3, |
| 599 | |
| 600 | SEG_FIELD_NR = 4 |
| 601 | }; |
| 602 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 603 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 604 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 605 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 606 | } |
| 607 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 608 | static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu) |
| 609 | { |
| 610 | return &(to_vmx(vcpu)->pi_desc); |
| 611 | } |
| 612 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 613 | #define VMCS12_OFFSET(x) offsetof(struct vmcs12, x) |
| 614 | #define FIELD(number, name) [number] = VMCS12_OFFSET(name) |
| 615 | #define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \ |
| 616 | [number##_HIGH] = VMCS12_OFFSET(name)+4 |
| 617 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 618 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 619 | static unsigned long shadow_read_only_fields[] = { |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 620 | /* |
| 621 | * We do NOT shadow fields that are modified when L0 |
| 622 | * traps and emulates any vmx instruction (e.g. VMPTRLD, |
| 623 | * VMXON...) executed by L1. |
| 624 | * For example, VM_INSTRUCTION_ERROR is read |
| 625 | * by L1 if a vmx instruction fails (part of the error path). |
| 626 | * Note the code assumes this logic. If for some reason |
| 627 | * we start shadowing these fields then we need to |
| 628 | * force a shadow sync when L0 emulates vmx instructions |
| 629 | * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified |
| 630 | * by nested_vmx_failValid) |
| 631 | */ |
| 632 | VM_EXIT_REASON, |
| 633 | VM_EXIT_INTR_INFO, |
| 634 | VM_EXIT_INSTRUCTION_LEN, |
| 635 | IDT_VECTORING_INFO_FIELD, |
| 636 | IDT_VECTORING_ERROR_CODE, |
| 637 | VM_EXIT_INTR_ERROR_CODE, |
| 638 | EXIT_QUALIFICATION, |
| 639 | GUEST_LINEAR_ADDRESS, |
| 640 | GUEST_PHYSICAL_ADDRESS |
| 641 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 642 | static int max_shadow_read_only_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 643 | ARRAY_SIZE(shadow_read_only_fields); |
| 644 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 645 | static unsigned long shadow_read_write_fields[] = { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 646 | TPR_THRESHOLD, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 647 | GUEST_RIP, |
| 648 | GUEST_RSP, |
| 649 | GUEST_CR0, |
| 650 | GUEST_CR3, |
| 651 | GUEST_CR4, |
| 652 | GUEST_INTERRUPTIBILITY_INFO, |
| 653 | GUEST_RFLAGS, |
| 654 | GUEST_CS_SELECTOR, |
| 655 | GUEST_CS_AR_BYTES, |
| 656 | GUEST_CS_LIMIT, |
| 657 | GUEST_CS_BASE, |
| 658 | GUEST_ES_BASE, |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 659 | GUEST_BNDCFGS, |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 660 | CR0_GUEST_HOST_MASK, |
| 661 | CR0_READ_SHADOW, |
| 662 | CR4_READ_SHADOW, |
| 663 | TSC_OFFSET, |
| 664 | EXCEPTION_BITMAP, |
| 665 | CPU_BASED_VM_EXEC_CONTROL, |
| 666 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 667 | VM_ENTRY_INTR_INFO_FIELD, |
| 668 | VM_ENTRY_INSTRUCTION_LEN, |
| 669 | VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 670 | HOST_FS_BASE, |
| 671 | HOST_GS_BASE, |
| 672 | HOST_FS_SELECTOR, |
| 673 | HOST_GS_SELECTOR |
| 674 | }; |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 675 | static int max_shadow_read_write_fields = |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 676 | ARRAY_SIZE(shadow_read_write_fields); |
| 677 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 678 | static const unsigned short vmcs_field_to_offset_table[] = { |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 679 | FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 680 | FIELD(POSTED_INTR_NV, posted_intr_nv), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 681 | FIELD(GUEST_ES_SELECTOR, guest_es_selector), |
| 682 | FIELD(GUEST_CS_SELECTOR, guest_cs_selector), |
| 683 | FIELD(GUEST_SS_SELECTOR, guest_ss_selector), |
| 684 | FIELD(GUEST_DS_SELECTOR, guest_ds_selector), |
| 685 | FIELD(GUEST_FS_SELECTOR, guest_fs_selector), |
| 686 | FIELD(GUEST_GS_SELECTOR, guest_gs_selector), |
| 687 | FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector), |
| 688 | FIELD(GUEST_TR_SELECTOR, guest_tr_selector), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 689 | FIELD(GUEST_INTR_STATUS, guest_intr_status), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 690 | FIELD(HOST_ES_SELECTOR, host_es_selector), |
| 691 | FIELD(HOST_CS_SELECTOR, host_cs_selector), |
| 692 | FIELD(HOST_SS_SELECTOR, host_ss_selector), |
| 693 | FIELD(HOST_DS_SELECTOR, host_ds_selector), |
| 694 | FIELD(HOST_FS_SELECTOR, host_fs_selector), |
| 695 | FIELD(HOST_GS_SELECTOR, host_gs_selector), |
| 696 | FIELD(HOST_TR_SELECTOR, host_tr_selector), |
| 697 | FIELD64(IO_BITMAP_A, io_bitmap_a), |
| 698 | FIELD64(IO_BITMAP_B, io_bitmap_b), |
| 699 | FIELD64(MSR_BITMAP, msr_bitmap), |
| 700 | FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr), |
| 701 | FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr), |
| 702 | FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr), |
| 703 | FIELD64(TSC_OFFSET, tsc_offset), |
| 704 | FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr), |
| 705 | FIELD64(APIC_ACCESS_ADDR, apic_access_addr), |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 706 | FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 707 | FIELD64(EPT_POINTER, ept_pointer), |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 708 | FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0), |
| 709 | FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1), |
| 710 | FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2), |
| 711 | FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3), |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 712 | FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 713 | FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address), |
| 714 | FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer), |
| 715 | FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl), |
| 716 | FIELD64(GUEST_IA32_PAT, guest_ia32_pat), |
| 717 | FIELD64(GUEST_IA32_EFER, guest_ia32_efer), |
| 718 | FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl), |
| 719 | FIELD64(GUEST_PDPTR0, guest_pdptr0), |
| 720 | FIELD64(GUEST_PDPTR1, guest_pdptr1), |
| 721 | FIELD64(GUEST_PDPTR2, guest_pdptr2), |
| 722 | FIELD64(GUEST_PDPTR3, guest_pdptr3), |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 723 | FIELD64(GUEST_BNDCFGS, guest_bndcfgs), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 724 | FIELD64(HOST_IA32_PAT, host_ia32_pat), |
| 725 | FIELD64(HOST_IA32_EFER, host_ia32_efer), |
| 726 | FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl), |
| 727 | FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control), |
| 728 | FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control), |
| 729 | FIELD(EXCEPTION_BITMAP, exception_bitmap), |
| 730 | FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask), |
| 731 | FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match), |
| 732 | FIELD(CR3_TARGET_COUNT, cr3_target_count), |
| 733 | FIELD(VM_EXIT_CONTROLS, vm_exit_controls), |
| 734 | FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count), |
| 735 | FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count), |
| 736 | FIELD(VM_ENTRY_CONTROLS, vm_entry_controls), |
| 737 | FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count), |
| 738 | FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field), |
| 739 | FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code), |
| 740 | FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len), |
| 741 | FIELD(TPR_THRESHOLD, tpr_threshold), |
| 742 | FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control), |
| 743 | FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error), |
| 744 | FIELD(VM_EXIT_REASON, vm_exit_reason), |
| 745 | FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info), |
| 746 | FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code), |
| 747 | FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field), |
| 748 | FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code), |
| 749 | FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len), |
| 750 | FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info), |
| 751 | FIELD(GUEST_ES_LIMIT, guest_es_limit), |
| 752 | FIELD(GUEST_CS_LIMIT, guest_cs_limit), |
| 753 | FIELD(GUEST_SS_LIMIT, guest_ss_limit), |
| 754 | FIELD(GUEST_DS_LIMIT, guest_ds_limit), |
| 755 | FIELD(GUEST_FS_LIMIT, guest_fs_limit), |
| 756 | FIELD(GUEST_GS_LIMIT, guest_gs_limit), |
| 757 | FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit), |
| 758 | FIELD(GUEST_TR_LIMIT, guest_tr_limit), |
| 759 | FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit), |
| 760 | FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit), |
| 761 | FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes), |
| 762 | FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes), |
| 763 | FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes), |
| 764 | FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes), |
| 765 | FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes), |
| 766 | FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes), |
| 767 | FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes), |
| 768 | FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes), |
| 769 | FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info), |
| 770 | FIELD(GUEST_ACTIVITY_STATE, guest_activity_state), |
| 771 | FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs), |
| 772 | FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs), |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 773 | FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value), |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 774 | FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask), |
| 775 | FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask), |
| 776 | FIELD(CR0_READ_SHADOW, cr0_read_shadow), |
| 777 | FIELD(CR4_READ_SHADOW, cr4_read_shadow), |
| 778 | FIELD(CR3_TARGET_VALUE0, cr3_target_value0), |
| 779 | FIELD(CR3_TARGET_VALUE1, cr3_target_value1), |
| 780 | FIELD(CR3_TARGET_VALUE2, cr3_target_value2), |
| 781 | FIELD(CR3_TARGET_VALUE3, cr3_target_value3), |
| 782 | FIELD(EXIT_QUALIFICATION, exit_qualification), |
| 783 | FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address), |
| 784 | FIELD(GUEST_CR0, guest_cr0), |
| 785 | FIELD(GUEST_CR3, guest_cr3), |
| 786 | FIELD(GUEST_CR4, guest_cr4), |
| 787 | FIELD(GUEST_ES_BASE, guest_es_base), |
| 788 | FIELD(GUEST_CS_BASE, guest_cs_base), |
| 789 | FIELD(GUEST_SS_BASE, guest_ss_base), |
| 790 | FIELD(GUEST_DS_BASE, guest_ds_base), |
| 791 | FIELD(GUEST_FS_BASE, guest_fs_base), |
| 792 | FIELD(GUEST_GS_BASE, guest_gs_base), |
| 793 | FIELD(GUEST_LDTR_BASE, guest_ldtr_base), |
| 794 | FIELD(GUEST_TR_BASE, guest_tr_base), |
| 795 | FIELD(GUEST_GDTR_BASE, guest_gdtr_base), |
| 796 | FIELD(GUEST_IDTR_BASE, guest_idtr_base), |
| 797 | FIELD(GUEST_DR7, guest_dr7), |
| 798 | FIELD(GUEST_RSP, guest_rsp), |
| 799 | FIELD(GUEST_RIP, guest_rip), |
| 800 | FIELD(GUEST_RFLAGS, guest_rflags), |
| 801 | FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions), |
| 802 | FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp), |
| 803 | FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip), |
| 804 | FIELD(HOST_CR0, host_cr0), |
| 805 | FIELD(HOST_CR3, host_cr3), |
| 806 | FIELD(HOST_CR4, host_cr4), |
| 807 | FIELD(HOST_FS_BASE, host_fs_base), |
| 808 | FIELD(HOST_GS_BASE, host_gs_base), |
| 809 | FIELD(HOST_TR_BASE, host_tr_base), |
| 810 | FIELD(HOST_GDTR_BASE, host_gdtr_base), |
| 811 | FIELD(HOST_IDTR_BASE, host_idtr_base), |
| 812 | FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp), |
| 813 | FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip), |
| 814 | FIELD(HOST_RSP, host_rsp), |
| 815 | FIELD(HOST_RIP, host_rip), |
| 816 | }; |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 817 | |
| 818 | static inline short vmcs_field_to_offset(unsigned long field) |
| 819 | { |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 820 | BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX); |
| 821 | |
| 822 | if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) || |
| 823 | vmcs_field_to_offset_table[field] == 0) |
| 824 | return -ENOENT; |
| 825 | |
Nadav Har'El | 22bd035 | 2011-05-25 23:05:57 +0300 | [diff] [blame] | 826 | return vmcs_field_to_offset_table[field]; |
| 827 | } |
| 828 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 829 | static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu) |
| 830 | { |
| 831 | return to_vmx(vcpu)->nested.current_vmcs12; |
| 832 | } |
| 833 | |
| 834 | static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr) |
| 835 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 836 | struct page *page = kvm_vcpu_gfn_to_page(vcpu, addr >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 837 | if (is_error_page(page)) |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 838 | return NULL; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 839 | |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 840 | return page; |
| 841 | } |
| 842 | |
| 843 | static void nested_release_page(struct page *page) |
| 844 | { |
| 845 | kvm_release_page_dirty(page); |
| 846 | } |
| 847 | |
| 848 | static void nested_release_page_clean(struct page *page) |
| 849 | { |
| 850 | kvm_release_page_clean(page); |
| 851 | } |
| 852 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 853 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu); |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 854 | static u64 construct_eptp(unsigned long root_hpa); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 855 | static void kvm_cpu_vmxon(u64 addr); |
| 856 | static void kvm_cpu_vmxoff(void); |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 857 | static bool vmx_mpx_supported(void); |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 858 | static bool vmx_xsaves_supported(void); |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 859 | static int vmx_cpu_uses_apicv(struct kvm_vcpu *vcpu); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 860 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr); |
Orit Wasserman | b246dd5 | 2012-05-31 14:49:22 +0300 | [diff] [blame] | 861 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 862 | struct kvm_segment *var, int seg); |
| 863 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 864 | struct kvm_segment *var, int seg); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 865 | static bool guest_state_valid(struct kvm_vcpu *vcpu); |
| 866 | static u32 vmx_segment_access_rights(struct kvm_segment *var); |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 867 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu); |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 868 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 869 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 870 | static int alloc_identity_pagetable(struct kvm *kvm); |
Avi Kivity | 75880a0 | 2007-06-20 11:20:04 +0300 | [diff] [blame] | 871 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 872 | static DEFINE_PER_CPU(struct vmcs *, vmxarea); |
| 873 | static DEFINE_PER_CPU(struct vmcs *, current_vmcs); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 874 | /* |
| 875 | * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed |
| 876 | * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it. |
| 877 | */ |
| 878 | static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 879 | static DEFINE_PER_CPU(struct desc_ptr, host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 880 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 881 | /* |
| 882 | * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we |
| 883 | * can find which vCPU should be waken up. |
| 884 | */ |
| 885 | static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu); |
| 886 | static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock); |
| 887 | |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 888 | static unsigned long *vmx_io_bitmap_a; |
| 889 | static unsigned long *vmx_io_bitmap_b; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 890 | static unsigned long *vmx_msr_bitmap_legacy; |
| 891 | static unsigned long *vmx_msr_bitmap_longmode; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 892 | static unsigned long *vmx_msr_bitmap_legacy_x2apic; |
| 893 | static unsigned long *vmx_msr_bitmap_longmode_x2apic; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 894 | static unsigned long *vmx_msr_bitmap_nested; |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 895 | static unsigned long *vmx_vmread_bitmap; |
| 896 | static unsigned long *vmx_vmwrite_bitmap; |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 897 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 898 | static bool cpu_has_load_ia32_efer; |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 899 | static bool cpu_has_load_perf_global_ctrl; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 900 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 901 | static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 902 | static DEFINE_SPINLOCK(vmx_vpid_lock); |
| 903 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 904 | static struct vmcs_config { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 905 | int size; |
| 906 | int order; |
| 907 | u32 revision_id; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 908 | u32 pin_based_exec_ctrl; |
| 909 | u32 cpu_based_exec_ctrl; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 910 | u32 cpu_based_2nd_exec_ctrl; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 911 | u32 vmexit_ctrl; |
| 912 | u32 vmentry_ctrl; |
| 913 | } vmcs_config; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 914 | |
Hannes Eder | efff9e5 | 2008-11-28 17:02:06 +0100 | [diff] [blame] | 915 | static struct vmx_capability { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 916 | u32 ept; |
| 917 | u32 vpid; |
| 918 | } vmx_capability; |
| 919 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 920 | #define VMX_SEGMENT_FIELD(seg) \ |
| 921 | [VCPU_SREG_##seg] = { \ |
| 922 | .selector = GUEST_##seg##_SELECTOR, \ |
| 923 | .base = GUEST_##seg##_BASE, \ |
| 924 | .limit = GUEST_##seg##_LIMIT, \ |
| 925 | .ar_bytes = GUEST_##seg##_AR_BYTES, \ |
| 926 | } |
| 927 | |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 928 | static const struct kvm_vmx_segment_field { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 929 | unsigned selector; |
| 930 | unsigned base; |
| 931 | unsigned limit; |
| 932 | unsigned ar_bytes; |
| 933 | } kvm_vmx_segment_fields[] = { |
| 934 | VMX_SEGMENT_FIELD(CS), |
| 935 | VMX_SEGMENT_FIELD(DS), |
| 936 | VMX_SEGMENT_FIELD(ES), |
| 937 | VMX_SEGMENT_FIELD(FS), |
| 938 | VMX_SEGMENT_FIELD(GS), |
| 939 | VMX_SEGMENT_FIELD(SS), |
| 940 | VMX_SEGMENT_FIELD(TR), |
| 941 | VMX_SEGMENT_FIELD(LDTR), |
| 942 | }; |
| 943 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 944 | static u64 host_efer; |
| 945 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 946 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 947 | |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 948 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 949 | * 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] | 950 | * away by decrementing the array size. |
| 951 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 952 | static const u32 vmx_msr_index[] = { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 953 | #ifdef CONFIG_X86_64 |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 954 | MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 955 | #endif |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 956 | MSR_EFER, MSR_TSC_AUX, MSR_STAR, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 957 | }; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 958 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 959 | static inline bool is_page_fault(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 960 | { |
| 961 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 962 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 963 | (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 964 | } |
| 965 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 966 | static inline bool is_no_device(u32 intr_info) |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 967 | { |
| 968 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 969 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 970 | (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 971 | } |
| 972 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 973 | static inline bool is_invalid_opcode(u32 intr_info) |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 974 | { |
| 975 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 976 | INTR_INFO_VALID_MASK)) == |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 977 | (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 978 | } |
| 979 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 980 | static inline bool is_external_interrupt(u32 intr_info) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 981 | { |
| 982 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 983 | == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK); |
| 984 | } |
| 985 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 986 | static inline bool is_machine_check(u32 intr_info) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 987 | { |
| 988 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK | |
| 989 | INTR_INFO_VALID_MASK)) == |
| 990 | (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK); |
| 991 | } |
| 992 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 993 | static inline bool cpu_has_vmx_msr_bitmap(void) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 994 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 995 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 996 | } |
| 997 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 998 | static inline bool cpu_has_vmx_tpr_shadow(void) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 999 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1000 | return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1001 | } |
| 1002 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1003 | static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1004 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1005 | return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 1006 | } |
| 1007 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1008 | static inline bool cpu_has_secondary_exec_ctrls(void) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1009 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1010 | return vmcs_config.cpu_based_exec_ctrl & |
| 1011 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1012 | } |
| 1013 | |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 1014 | static inline bool cpu_has_vmx_virtualize_apic_accesses(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_2nd_exec_ctrl & |
| 1017 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 1018 | } |
| 1019 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 1020 | static inline bool cpu_has_vmx_virtualize_x2apic_mode(void) |
| 1021 | { |
| 1022 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1023 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 1024 | } |
| 1025 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 1026 | static inline bool cpu_has_vmx_apic_register_virt(void) |
| 1027 | { |
| 1028 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1029 | SECONDARY_EXEC_APIC_REGISTER_VIRT; |
| 1030 | } |
| 1031 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 1032 | static inline bool cpu_has_vmx_virtual_intr_delivery(void) |
| 1033 | { |
| 1034 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1035 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY; |
| 1036 | } |
| 1037 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1038 | static inline bool cpu_has_vmx_posted_intr(void) |
| 1039 | { |
Paolo Bonzini | d6a858d | 2015-09-28 11:58:14 +0200 | [diff] [blame] | 1040 | return IS_ENABLED(CONFIG_X86_LOCAL_APIC) && |
| 1041 | vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 1042 | } |
| 1043 | |
| 1044 | static inline bool cpu_has_vmx_apicv(void) |
| 1045 | { |
| 1046 | return cpu_has_vmx_apic_register_virt() && |
| 1047 | cpu_has_vmx_virtual_intr_delivery() && |
| 1048 | cpu_has_vmx_posted_intr(); |
| 1049 | } |
| 1050 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1051 | static inline bool cpu_has_vmx_flexpriority(void) |
| 1052 | { |
| 1053 | return cpu_has_vmx_tpr_shadow() && |
| 1054 | cpu_has_vmx_virtualize_apic_accesses(); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1055 | } |
| 1056 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1057 | static inline bool cpu_has_vmx_ept_execute_only(void) |
| 1058 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1059 | return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1060 | } |
| 1061 | |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1062 | static inline bool cpu_has_vmx_ept_2m_page(void) |
| 1063 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1064 | return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT; |
Marcelo Tosatti | e799794 | 2009-06-11 12:07:40 -0300 | [diff] [blame] | 1065 | } |
| 1066 | |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1067 | static inline bool cpu_has_vmx_ept_1g_page(void) |
| 1068 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1069 | return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT; |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1070 | } |
| 1071 | |
Sheng Yang | 4bc9b98 | 2010-06-02 14:05:24 +0800 | [diff] [blame] | 1072 | static inline bool cpu_has_vmx_ept_4levels(void) |
| 1073 | { |
| 1074 | return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT; |
| 1075 | } |
| 1076 | |
Xudong Hao | 83c3a33 | 2012-05-28 19:33:35 +0800 | [diff] [blame] | 1077 | static inline bool cpu_has_vmx_ept_ad_bits(void) |
| 1078 | { |
| 1079 | return vmx_capability.ept & VMX_EPT_AD_BIT; |
| 1080 | } |
| 1081 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1082 | static inline bool cpu_has_vmx_invept_context(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1083 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1084 | return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1085 | } |
| 1086 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1087 | static inline bool cpu_has_vmx_invept_global(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1088 | { |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1089 | return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1090 | } |
| 1091 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1092 | static inline bool cpu_has_vmx_invvpid_single(void) |
| 1093 | { |
| 1094 | return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT; |
| 1095 | } |
| 1096 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1097 | static inline bool cpu_has_vmx_invvpid_global(void) |
| 1098 | { |
| 1099 | return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT; |
| 1100 | } |
| 1101 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1102 | static inline bool cpu_has_vmx_ept(void) |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1103 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1104 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1105 | SECONDARY_EXEC_ENABLE_EPT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 1106 | } |
| 1107 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1108 | static inline bool cpu_has_vmx_unrestricted_guest(void) |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 1109 | { |
| 1110 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1111 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 1112 | } |
| 1113 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1114 | static inline bool cpu_has_vmx_ple(void) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 1115 | { |
| 1116 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1117 | SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
| 1118 | } |
| 1119 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1120 | static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1121 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1122 | return flexpriority_enabled && lapic_in_kernel(vcpu); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 1123 | } |
| 1124 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1125 | static inline bool cpu_has_vmx_vpid(void) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1126 | { |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1127 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1128 | SECONDARY_EXEC_ENABLE_VPID; |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1129 | } |
| 1130 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1131 | static inline bool cpu_has_vmx_rdtscp(void) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 1132 | { |
| 1133 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1134 | SECONDARY_EXEC_RDTSCP; |
| 1135 | } |
| 1136 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 1137 | static inline bool cpu_has_vmx_invpcid(void) |
| 1138 | { |
| 1139 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1140 | SECONDARY_EXEC_ENABLE_INVPCID; |
| 1141 | } |
| 1142 | |
Gui Jianfeng | 3129994 | 2010-03-15 17:29:09 +0800 | [diff] [blame] | 1143 | static inline bool cpu_has_virtual_nmis(void) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 1144 | { |
| 1145 | return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS; |
| 1146 | } |
| 1147 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 1148 | static inline bool cpu_has_vmx_wbinvd_exit(void) |
| 1149 | { |
| 1150 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1151 | SECONDARY_EXEC_WBINVD_EXITING; |
| 1152 | } |
| 1153 | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 1154 | static inline bool cpu_has_vmx_shadow_vmcs(void) |
| 1155 | { |
| 1156 | u64 vmx_msr; |
| 1157 | rdmsrl(MSR_IA32_VMX_MISC, vmx_msr); |
| 1158 | /* check if the cpu supports writing r/o exit information fields */ |
| 1159 | if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS)) |
| 1160 | return false; |
| 1161 | |
| 1162 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 1163 | SECONDARY_EXEC_SHADOW_VMCS; |
| 1164 | } |
| 1165 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 1166 | static inline bool cpu_has_vmx_pml(void) |
| 1167 | { |
| 1168 | return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML; |
| 1169 | } |
| 1170 | |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 1171 | static inline bool report_flexpriority(void) |
| 1172 | { |
| 1173 | return flexpriority_enabled; |
| 1174 | } |
| 1175 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 1176 | static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit) |
| 1177 | { |
| 1178 | return vmcs12->cpu_based_vm_exec_control & bit; |
| 1179 | } |
| 1180 | |
| 1181 | static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit) |
| 1182 | { |
| 1183 | return (vmcs12->cpu_based_vm_exec_control & |
| 1184 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) && |
| 1185 | (vmcs12->secondary_vm_exec_control & bit); |
| 1186 | } |
| 1187 | |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 1188 | static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12) |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1189 | { |
| 1190 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS; |
| 1191 | } |
| 1192 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 1193 | static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12) |
| 1194 | { |
| 1195 | return vmcs12->pin_based_vm_exec_control & |
| 1196 | PIN_BASED_VMX_PREEMPTION_TIMER; |
| 1197 | } |
| 1198 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 1199 | static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12) |
| 1200 | { |
| 1201 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT); |
| 1202 | } |
| 1203 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 1204 | static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12) |
| 1205 | { |
| 1206 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES) && |
| 1207 | vmx_xsaves_supported(); |
| 1208 | } |
| 1209 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 1210 | static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12) |
| 1211 | { |
| 1212 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE); |
| 1213 | } |
| 1214 | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 1215 | static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12) |
| 1216 | { |
| 1217 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT); |
| 1218 | } |
| 1219 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 1220 | static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12) |
| 1221 | { |
| 1222 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
| 1223 | } |
| 1224 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 1225 | static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12) |
| 1226 | { |
| 1227 | return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR; |
| 1228 | } |
| 1229 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 1230 | static inline bool is_exception(u32 intr_info) |
| 1231 | { |
| 1232 | return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK)) |
| 1233 | == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK); |
| 1234 | } |
| 1235 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 1236 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 1237 | u32 exit_intr_info, |
| 1238 | unsigned long exit_qualification); |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 1239 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 1240 | struct vmcs12 *vmcs12, |
| 1241 | u32 reason, unsigned long qualification); |
| 1242 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1243 | static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr) |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1244 | { |
| 1245 | int i; |
| 1246 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1247 | for (i = 0; i < vmx->nmsrs; ++i) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1248 | if (vmx_msr_index[vmx->guest_msrs[i].index] == msr) |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1249 | return i; |
| 1250 | return -1; |
| 1251 | } |
| 1252 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1253 | static inline void __invvpid(int ext, u16 vpid, gva_t gva) |
| 1254 | { |
| 1255 | struct { |
| 1256 | u64 vpid : 16; |
| 1257 | u64 rsvd : 48; |
| 1258 | u64 gva; |
| 1259 | } operand = { vpid, 0, gva }; |
| 1260 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1261 | asm volatile (__ex(ASM_VMX_INVVPID) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1262 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1263 | "; ja 1f ; ud2 ; 1:" |
| 1264 | : : "a"(&operand), "c"(ext) : "cc", "memory"); |
| 1265 | } |
| 1266 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1267 | static inline void __invept(int ext, u64 eptp, gpa_t gpa) |
| 1268 | { |
| 1269 | struct { |
| 1270 | u64 eptp, gpa; |
| 1271 | } operand = {eptp, gpa}; |
| 1272 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1273 | asm volatile (__ex(ASM_VMX_INVEPT) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1274 | /* CF==1 or ZF==1 --> rc = -1 */ |
| 1275 | "; ja 1f ; ud2 ; 1:\n" |
| 1276 | : : "a" (&operand), "c" (ext) : "cc", "memory"); |
| 1277 | } |
| 1278 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1279 | 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] | 1280 | { |
| 1281 | int i; |
| 1282 | |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 1283 | i = __find_msr_index(vmx, msr); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 1284 | if (i >= 0) |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1285 | return &vmx->guest_msrs[i]; |
Al Viro | 8b6d44c | 2007-02-09 16:38:40 +0000 | [diff] [blame] | 1286 | return NULL; |
Avi Kivity | 7725f0b | 2006-12-13 00:34:01 -0800 | [diff] [blame] | 1287 | } |
| 1288 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1289 | static void vmcs_clear(struct vmcs *vmcs) |
| 1290 | { |
| 1291 | u64 phys_addr = __pa(vmcs); |
| 1292 | u8 error; |
| 1293 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1294 | asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1295 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1296 | : "cc", "memory"); |
| 1297 | if (error) |
| 1298 | printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n", |
| 1299 | vmcs, phys_addr); |
| 1300 | } |
| 1301 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1302 | static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs) |
| 1303 | { |
| 1304 | vmcs_clear(loaded_vmcs->vmcs); |
| 1305 | loaded_vmcs->cpu = -1; |
| 1306 | loaded_vmcs->launched = 0; |
| 1307 | } |
| 1308 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1309 | static void vmcs_load(struct vmcs *vmcs) |
| 1310 | { |
| 1311 | u64 phys_addr = __pa(vmcs); |
| 1312 | u8 error; |
| 1313 | |
| 1314 | asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0" |
Avi Kivity | 16d8f72 | 2010-12-21 16:51:50 +0200 | [diff] [blame] | 1315 | : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr) |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1316 | : "cc", "memory"); |
| 1317 | if (error) |
Nadav Har'El | 2844d84 | 2011-05-25 23:16:40 +0300 | [diff] [blame] | 1318 | printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n", |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 1319 | vmcs, phys_addr); |
| 1320 | } |
| 1321 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1322 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1323 | /* |
| 1324 | * This bitmap is used to indicate whether the vmclear |
| 1325 | * operation is enabled on all cpus. All disabled by |
| 1326 | * default. |
| 1327 | */ |
| 1328 | static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE; |
| 1329 | |
| 1330 | static inline void crash_enable_local_vmclear(int cpu) |
| 1331 | { |
| 1332 | cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1333 | } |
| 1334 | |
| 1335 | static inline void crash_disable_local_vmclear(int cpu) |
| 1336 | { |
| 1337 | cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1338 | } |
| 1339 | |
| 1340 | static inline int crash_local_vmclear_enabled(int cpu) |
| 1341 | { |
| 1342 | return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap); |
| 1343 | } |
| 1344 | |
| 1345 | static void crash_vmclear_local_loaded_vmcss(void) |
| 1346 | { |
| 1347 | int cpu = raw_smp_processor_id(); |
| 1348 | struct loaded_vmcs *v; |
| 1349 | |
| 1350 | if (!crash_local_vmclear_enabled(cpu)) |
| 1351 | return; |
| 1352 | |
| 1353 | list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 1354 | loaded_vmcss_on_cpu_link) |
| 1355 | vmcs_clear(v->vmcs); |
| 1356 | } |
| 1357 | #else |
| 1358 | static inline void crash_enable_local_vmclear(int cpu) { } |
| 1359 | static inline void crash_disable_local_vmclear(int cpu) { } |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 1360 | #endif /* CONFIG_KEXEC_CORE */ |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1361 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1362 | static void __loaded_vmcs_clear(void *arg) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1363 | { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1364 | struct loaded_vmcs *loaded_vmcs = arg; |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 1365 | int cpu = raw_smp_processor_id(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1366 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1367 | if (loaded_vmcs->cpu != cpu) |
| 1368 | return; /* vcpu migration can race with cpu offline */ |
| 1369 | if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1370 | per_cpu(current_vmcs, cpu) = NULL; |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1371 | crash_disable_local_vmclear(cpu); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1372 | list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 1373 | |
| 1374 | /* |
| 1375 | * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link |
| 1376 | * is before setting loaded_vmcs->vcpu to -1 which is done in |
| 1377 | * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist |
| 1378 | * then adds the vmcs into percpu list before it is deleted. |
| 1379 | */ |
| 1380 | smp_wmb(); |
| 1381 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1382 | loaded_vmcs_init(loaded_vmcs); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 1383 | crash_enable_local_vmclear(cpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1384 | } |
| 1385 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 1386 | static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs) |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1387 | { |
Xiao Guangrong | e6c7d32 | 2012-11-28 20:53:15 +0800 | [diff] [blame] | 1388 | int cpu = loaded_vmcs->cpu; |
| 1389 | |
| 1390 | if (cpu != -1) |
| 1391 | smp_call_function_single(cpu, |
| 1392 | __loaded_vmcs_clear, loaded_vmcs, 1); |
Avi Kivity | 8d0be2b | 2007-02-12 00:54:46 -0800 | [diff] [blame] | 1393 | } |
| 1394 | |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1395 | static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1396 | { |
| 1397 | if (vmx->vpid == 0) |
| 1398 | return; |
| 1399 | |
Gui Jianfeng | 518c8ae | 2010-06-04 08:51:39 +0800 | [diff] [blame] | 1400 | if (cpu_has_vmx_invvpid_single()) |
| 1401 | __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0); |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 1402 | } |
| 1403 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1404 | static inline void vpid_sync_vcpu_global(void) |
| 1405 | { |
| 1406 | if (cpu_has_vmx_invvpid_global()) |
| 1407 | __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0); |
| 1408 | } |
| 1409 | |
| 1410 | static inline void vpid_sync_context(struct vcpu_vmx *vmx) |
| 1411 | { |
| 1412 | if (cpu_has_vmx_invvpid_single()) |
Gui Jianfeng | 1760dd4 | 2010-06-07 10:33:27 +0800 | [diff] [blame] | 1413 | vpid_sync_vcpu_single(vmx); |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 1414 | else |
| 1415 | vpid_sync_vcpu_global(); |
| 1416 | } |
| 1417 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1418 | static inline void ept_sync_global(void) |
| 1419 | { |
| 1420 | if (cpu_has_vmx_invept_global()) |
| 1421 | __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0); |
| 1422 | } |
| 1423 | |
| 1424 | static inline void ept_sync_context(u64 eptp) |
| 1425 | { |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1426 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1427 | if (cpu_has_vmx_invept_context()) |
| 1428 | __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0); |
| 1429 | else |
| 1430 | ept_sync_global(); |
| 1431 | } |
| 1432 | } |
| 1433 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1434 | static __always_inline unsigned long vmcs_readl(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1435 | { |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1436 | unsigned long value; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1437 | |
Avi Kivity | 5e520e6 | 2011-05-15 10:13:12 -0400 | [diff] [blame] | 1438 | asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0") |
| 1439 | : "=a"(value) : "d"(field) : "cc"); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1440 | return value; |
| 1441 | } |
| 1442 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1443 | static __always_inline u16 vmcs_read16(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1444 | { |
| 1445 | return vmcs_readl(field); |
| 1446 | } |
| 1447 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1448 | static __always_inline u32 vmcs_read32(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1449 | { |
| 1450 | return vmcs_readl(field); |
| 1451 | } |
| 1452 | |
Avi Kivity | 9630421 | 2011-05-15 10:13:13 -0400 | [diff] [blame] | 1453 | static __always_inline u64 vmcs_read64(unsigned long field) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1454 | { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 1455 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1456 | return vmcs_readl(field); |
| 1457 | #else |
| 1458 | return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32); |
| 1459 | #endif |
| 1460 | } |
| 1461 | |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1462 | static noinline void vmwrite_error(unsigned long field, unsigned long value) |
| 1463 | { |
| 1464 | printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n", |
| 1465 | field, value, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 1466 | dump_stack(); |
| 1467 | } |
| 1468 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1469 | static void vmcs_writel(unsigned long field, unsigned long value) |
| 1470 | { |
| 1471 | u8 error; |
| 1472 | |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 1473 | asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0" |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 1474 | : "=q"(error) : "a"(value), "d"(field) : "cc"); |
Avi Kivity | e52de1b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 1475 | if (unlikely(error)) |
| 1476 | vmwrite_error(field, value); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | static void vmcs_write16(unsigned long field, u16 value) |
| 1480 | { |
| 1481 | vmcs_writel(field, value); |
| 1482 | } |
| 1483 | |
| 1484 | static void vmcs_write32(unsigned long field, u32 value) |
| 1485 | { |
| 1486 | vmcs_writel(field, value); |
| 1487 | } |
| 1488 | |
| 1489 | static void vmcs_write64(unsigned long field, u64 value) |
| 1490 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1491 | vmcs_writel(field, value); |
Avi Kivity | 7682f2d | 2008-05-12 19:25:43 +0300 | [diff] [blame] | 1492 | #ifndef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1493 | asm volatile (""); |
| 1494 | vmcs_writel(field+1, value >> 32); |
| 1495 | #endif |
| 1496 | } |
| 1497 | |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 1498 | static void vmcs_clear_bits(unsigned long field, u32 mask) |
| 1499 | { |
| 1500 | vmcs_writel(field, vmcs_readl(field) & ~mask); |
| 1501 | } |
| 1502 | |
| 1503 | static void vmcs_set_bits(unsigned long field, u32 mask) |
| 1504 | { |
| 1505 | vmcs_writel(field, vmcs_readl(field) | mask); |
| 1506 | } |
| 1507 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1508 | static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1509 | { |
| 1510 | vmcs_write32(VM_ENTRY_CONTROLS, val); |
| 1511 | vmx->vm_entry_controls_shadow = val; |
| 1512 | } |
| 1513 | |
| 1514 | static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1515 | { |
| 1516 | if (vmx->vm_entry_controls_shadow != val) |
| 1517 | vm_entry_controls_init(vmx, val); |
| 1518 | } |
| 1519 | |
| 1520 | static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx) |
| 1521 | { |
| 1522 | return vmx->vm_entry_controls_shadow; |
| 1523 | } |
| 1524 | |
| 1525 | |
| 1526 | static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1527 | { |
| 1528 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val); |
| 1529 | } |
| 1530 | |
| 1531 | static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1532 | { |
| 1533 | vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val); |
| 1534 | } |
| 1535 | |
| 1536 | static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val) |
| 1537 | { |
| 1538 | vmcs_write32(VM_EXIT_CONTROLS, val); |
| 1539 | vmx->vm_exit_controls_shadow = val; |
| 1540 | } |
| 1541 | |
| 1542 | static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val) |
| 1543 | { |
| 1544 | if (vmx->vm_exit_controls_shadow != val) |
| 1545 | vm_exit_controls_init(vmx, val); |
| 1546 | } |
| 1547 | |
| 1548 | static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx) |
| 1549 | { |
| 1550 | return vmx->vm_exit_controls_shadow; |
| 1551 | } |
| 1552 | |
| 1553 | |
| 1554 | static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val) |
| 1555 | { |
| 1556 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val); |
| 1557 | } |
| 1558 | |
| 1559 | static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val) |
| 1560 | { |
| 1561 | vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val); |
| 1562 | } |
| 1563 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 1564 | static void vmx_segment_cache_clear(struct vcpu_vmx *vmx) |
| 1565 | { |
| 1566 | vmx->segment_cache.bitmask = 0; |
| 1567 | } |
| 1568 | |
| 1569 | static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg, |
| 1570 | unsigned field) |
| 1571 | { |
| 1572 | bool ret; |
| 1573 | u32 mask = 1 << (seg * SEG_FIELD_NR + field); |
| 1574 | |
| 1575 | if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) { |
| 1576 | vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS); |
| 1577 | vmx->segment_cache.bitmask = 0; |
| 1578 | } |
| 1579 | ret = vmx->segment_cache.bitmask & mask; |
| 1580 | vmx->segment_cache.bitmask |= mask; |
| 1581 | return ret; |
| 1582 | } |
| 1583 | |
| 1584 | static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg) |
| 1585 | { |
| 1586 | u16 *p = &vmx->segment_cache.seg[seg].selector; |
| 1587 | |
| 1588 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL)) |
| 1589 | *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector); |
| 1590 | return *p; |
| 1591 | } |
| 1592 | |
| 1593 | static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg) |
| 1594 | { |
| 1595 | ulong *p = &vmx->segment_cache.seg[seg].base; |
| 1596 | |
| 1597 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE)) |
| 1598 | *p = vmcs_readl(kvm_vmx_segment_fields[seg].base); |
| 1599 | return *p; |
| 1600 | } |
| 1601 | |
| 1602 | static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg) |
| 1603 | { |
| 1604 | u32 *p = &vmx->segment_cache.seg[seg].limit; |
| 1605 | |
| 1606 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT)) |
| 1607 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit); |
| 1608 | return *p; |
| 1609 | } |
| 1610 | |
| 1611 | static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg) |
| 1612 | { |
| 1613 | u32 *p = &vmx->segment_cache.seg[seg].ar; |
| 1614 | |
| 1615 | if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR)) |
| 1616 | *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes); |
| 1617 | return *p; |
| 1618 | } |
| 1619 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1620 | static void update_exception_bitmap(struct kvm_vcpu *vcpu) |
| 1621 | { |
| 1622 | u32 eb; |
| 1623 | |
Jan Kiszka | fd7373c | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 1624 | eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) | |
| 1625 | (1u << NM_VECTOR) | (1u << DB_VECTOR); |
| 1626 | if ((vcpu->guest_debug & |
| 1627 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) == |
| 1628 | (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) |
| 1629 | eb |= 1u << BP_VECTOR; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 1630 | if (to_vmx(vcpu)->rmode.vm86_active) |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1631 | eb = ~0; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 1632 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 1633 | eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */ |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 1634 | if (vcpu->fpu_active) |
| 1635 | eb &= ~(1u << NM_VECTOR); |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 1636 | |
| 1637 | /* When we are running a nested L2 guest and L1 specified for it a |
| 1638 | * certain exception bitmap, we must trap the same exceptions and pass |
| 1639 | * them to L1. When running L2, we will only handle the exceptions |
| 1640 | * specified above if L1 did not want them. |
| 1641 | */ |
| 1642 | if (is_guest_mode(vcpu)) |
| 1643 | eb |= get_vmcs12(vcpu)->exception_bitmap; |
| 1644 | |
Avi Kivity | abd3f2d | 2007-05-02 17:57:40 +0300 | [diff] [blame] | 1645 | vmcs_write32(EXCEPTION_BITMAP, eb); |
| 1646 | } |
| 1647 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1648 | static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1649 | unsigned long entry, unsigned long exit) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1650 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1651 | vm_entry_controls_clearbit(vmx, entry); |
| 1652 | vm_exit_controls_clearbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1653 | } |
| 1654 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1655 | static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr) |
| 1656 | { |
| 1657 | unsigned i; |
| 1658 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1659 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1660 | switch (msr) { |
| 1661 | case MSR_EFER: |
| 1662 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1663 | clear_atomic_switch_msr_special(vmx, |
| 1664 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1665 | VM_EXIT_LOAD_IA32_EFER); |
| 1666 | return; |
| 1667 | } |
| 1668 | break; |
| 1669 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1670 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1671 | clear_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1672 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1673 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 1674 | return; |
| 1675 | } |
| 1676 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1677 | } |
| 1678 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1679 | for (i = 0; i < m->nr; ++i) |
| 1680 | if (m->guest[i].index == msr) |
| 1681 | break; |
| 1682 | |
| 1683 | if (i == m->nr) |
| 1684 | return; |
| 1685 | --m->nr; |
| 1686 | m->guest[i] = m->guest[m->nr]; |
| 1687 | m->host[i] = m->host[m->nr]; |
| 1688 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1689 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1690 | } |
| 1691 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1692 | static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx, |
| 1693 | unsigned long entry, unsigned long exit, |
| 1694 | unsigned long guest_val_vmcs, unsigned long host_val_vmcs, |
| 1695 | u64 guest_val, u64 host_val) |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1696 | { |
| 1697 | vmcs_write64(guest_val_vmcs, guest_val); |
| 1698 | vmcs_write64(host_val_vmcs, host_val); |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1699 | vm_entry_controls_setbit(vmx, entry); |
| 1700 | vm_exit_controls_setbit(vmx, exit); |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1701 | } |
| 1702 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1703 | static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr, |
| 1704 | u64 guest_val, u64 host_val) |
| 1705 | { |
| 1706 | unsigned i; |
| 1707 | struct msr_autoload *m = &vmx->msr_autoload; |
| 1708 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1709 | switch (msr) { |
| 1710 | case MSR_EFER: |
| 1711 | if (cpu_has_load_ia32_efer) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1712 | add_atomic_switch_msr_special(vmx, |
| 1713 | VM_ENTRY_LOAD_IA32_EFER, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1714 | VM_EXIT_LOAD_IA32_EFER, |
| 1715 | GUEST_IA32_EFER, |
| 1716 | HOST_IA32_EFER, |
| 1717 | guest_val, host_val); |
| 1718 | return; |
| 1719 | } |
| 1720 | break; |
| 1721 | case MSR_CORE_PERF_GLOBAL_CTRL: |
| 1722 | if (cpu_has_load_perf_global_ctrl) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 1723 | add_atomic_switch_msr_special(vmx, |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 1724 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1725 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL, |
| 1726 | GUEST_IA32_PERF_GLOBAL_CTRL, |
| 1727 | HOST_IA32_PERF_GLOBAL_CTRL, |
| 1728 | guest_val, host_val); |
| 1729 | return; |
| 1730 | } |
| 1731 | break; |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 1732 | } |
| 1733 | |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1734 | for (i = 0; i < m->nr; ++i) |
| 1735 | if (m->guest[i].index == msr) |
| 1736 | break; |
| 1737 | |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1738 | if (i == NR_AUTOLOAD_MSRS) { |
Michael S. Tsirkin | 6026620 | 2013-10-31 00:34:56 +0200 | [diff] [blame] | 1739 | printk_once(KERN_WARNING "Not enough msr switch entries. " |
Gleb Natapov | e7fc6f93b | 2011-10-05 14:01:24 +0200 | [diff] [blame] | 1740 | "Can't add msr %x\n", msr); |
| 1741 | return; |
| 1742 | } else if (i == m->nr) { |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 1743 | ++m->nr; |
| 1744 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr); |
| 1745 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr); |
| 1746 | } |
| 1747 | |
| 1748 | m->guest[i].index = msr; |
| 1749 | m->guest[i].value = guest_val; |
| 1750 | m->host[i].index = msr; |
| 1751 | m->host[i].value = host_val; |
| 1752 | } |
| 1753 | |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1754 | static void reload_tss(void) |
| 1755 | { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1756 | /* |
| 1757 | * VT restores TR but not its size. Useless. |
| 1758 | */ |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1759 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 1760 | struct desc_struct *descs; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1761 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1762 | descs = (void *)gdt->address; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1763 | descs[GDT_ENTRY_TSS].type = 9; /* available TSS */ |
| 1764 | load_TR_desc(); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1765 | } |
| 1766 | |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 1767 | static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1768 | { |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1769 | u64 guest_efer; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1770 | u64 ignore_bits; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 1771 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1772 | guest_efer = vmx->vcpu.arch.efer; |
Roel Kluin | 3a34a88 | 2009-08-04 02:08:45 -0700 | [diff] [blame] | 1773 | |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1774 | /* |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 1775 | * NX is emulated; LMA and LME handled by hardware; SCE meaningless |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1776 | * outside long mode |
| 1777 | */ |
| 1778 | ignore_bits = EFER_NX | EFER_SCE; |
| 1779 | #ifdef CONFIG_X86_64 |
| 1780 | ignore_bits |= EFER_LMA | EFER_LME; |
| 1781 | /* SCE is meaningful only in long mode on Intel */ |
| 1782 | if (guest_efer & EFER_LMA) |
| 1783 | ignore_bits &= ~(u64)EFER_SCE; |
| 1784 | #endif |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1785 | guest_efer &= ~ignore_bits; |
| 1786 | guest_efer |= host_efer & ignore_bits; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1787 | vmx->guest_msrs[efer_offset].data = guest_efer; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1788 | vmx->guest_msrs[efer_offset].mask = ~ignore_bits; |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1789 | |
| 1790 | clear_atomic_switch_msr(vmx, MSR_EFER); |
Andy Lutomirski | f6577a5f | 2014-11-07 18:25:18 -0800 | [diff] [blame] | 1791 | |
| 1792 | /* |
| 1793 | * On EPT, we can't emulate NX, so we must switch EFER atomically. |
| 1794 | * On CPUs that support "load IA32_EFER", always switch EFER |
| 1795 | * atomically, since it's faster than switching it manually. |
| 1796 | */ |
| 1797 | if (cpu_has_load_ia32_efer || |
| 1798 | (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) { |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1799 | guest_efer = vmx->vcpu.arch.efer; |
| 1800 | if (!(guest_efer & EFER_LMA)) |
| 1801 | guest_efer &= ~EFER_LME; |
Andy Lutomirski | 54b98bf | 2014-11-10 11:19:15 -0800 | [diff] [blame] | 1802 | if (guest_efer != host_efer) |
| 1803 | add_atomic_switch_msr(vmx, MSR_EFER, |
| 1804 | guest_efer, host_efer); |
Avi Kivity | 84ad33e | 2010-04-28 16:42:29 +0300 | [diff] [blame] | 1805 | return false; |
| 1806 | } |
| 1807 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1808 | return true; |
Avi Kivity | 51c6cf6 | 2007-08-29 03:48:05 +0300 | [diff] [blame] | 1809 | } |
| 1810 | |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1811 | static unsigned long segment_base(u16 selector) |
| 1812 | { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1813 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1814 | struct desc_struct *d; |
| 1815 | unsigned long table_base; |
| 1816 | unsigned long v; |
| 1817 | |
| 1818 | if (!(selector & ~3)) |
| 1819 | return 0; |
| 1820 | |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 1821 | table_base = gdt->address; |
Gleb Natapov | 2d49ec7 | 2010-02-25 12:43:09 +0200 | [diff] [blame] | 1822 | |
| 1823 | if (selector & 4) { /* from ldt */ |
| 1824 | u16 ldt_selector = kvm_read_ldt(); |
| 1825 | |
| 1826 | if (!(ldt_selector & ~3)) |
| 1827 | return 0; |
| 1828 | |
| 1829 | table_base = segment_base(ldt_selector); |
| 1830 | } |
| 1831 | d = (struct desc_struct *)(table_base + (selector & ~7)); |
| 1832 | v = get_desc_base(d); |
| 1833 | #ifdef CONFIG_X86_64 |
| 1834 | if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11)) |
| 1835 | v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32; |
| 1836 | #endif |
| 1837 | return v; |
| 1838 | } |
| 1839 | |
| 1840 | static inline unsigned long kvm_read_tr_base(void) |
| 1841 | { |
| 1842 | u16 tr; |
| 1843 | asm("str %0" : "=g"(tr)); |
| 1844 | return segment_base(tr); |
| 1845 | } |
| 1846 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1847 | static void vmx_save_host_state(struct kvm_vcpu *vcpu) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1848 | { |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1849 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1850 | int i; |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 1851 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1852 | if (vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1853 | return; |
| 1854 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1855 | vmx->host_state.loaded = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1856 | /* |
| 1857 | * Set host fs and gs selectors. Unfortunately, 22.2.3 does not |
| 1858 | * allow segment selectors with cpl > 0 or ti == 1. |
| 1859 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1860 | vmx->host_state.ldt_sel = kvm_read_ldt(); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1861 | vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel; |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1862 | savesegment(fs, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1863 | if (!(vmx->host_state.fs_sel & 7)) { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1864 | vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1865 | vmx->host_state.fs_reload_needed = 0; |
| 1866 | } else { |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1867 | vmcs_write16(HOST_FS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1868 | vmx->host_state.fs_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1869 | } |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1870 | savesegment(gs, vmx->host_state.gs_sel); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1871 | if (!(vmx->host_state.gs_sel & 7)) |
| 1872 | vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1873 | else { |
| 1874 | vmcs_write16(HOST_GS_SELECTOR, 0); |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1875 | vmx->host_state.gs_ldt_reload_needed = 1; |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | #ifdef CONFIG_X86_64 |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1879 | savesegment(ds, vmx->host_state.ds_sel); |
| 1880 | savesegment(es, vmx->host_state.es_sel); |
| 1881 | #endif |
| 1882 | |
| 1883 | #ifdef CONFIG_X86_64 |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1884 | vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE)); |
| 1885 | vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE)); |
| 1886 | #else |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1887 | vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel)); |
| 1888 | vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1889 | #endif |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1890 | |
| 1891 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1892 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
| 1893 | if (is_long_mode(&vmx->vcpu)) |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1894 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
Avi Kivity | 707c087 | 2007-05-02 17:33:43 +0300 | [diff] [blame] | 1895 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1896 | if (boot_cpu_has(X86_FEATURE_MPX)) |
| 1897 | rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 1898 | for (i = 0; i < vmx->save_nmsrs; ++i) |
| 1899 | kvm_set_shared_msr(vmx->guest_msrs[i].index, |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 1900 | vmx->guest_msrs[i].data, |
| 1901 | vmx->guest_msrs[i].mask); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1902 | } |
| 1903 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1904 | static void __vmx_load_host_state(struct vcpu_vmx *vmx) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1905 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1906 | if (!vmx->host_state.loaded) |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1907 | return; |
| 1908 | |
Avi Kivity | e1beb1d | 2007-11-18 13:50:24 +0200 | [diff] [blame] | 1909 | ++vmx->vcpu.stat.host_state_reload; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 1910 | vmx->host_state.loaded = 0; |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1911 | #ifdef CONFIG_X86_64 |
| 1912 | if (is_long_mode(&vmx->vcpu)) |
| 1913 | rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base); |
| 1914 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1915 | if (vmx->host_state.gs_ldt_reload_needed) { |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 1916 | kvm_load_ldt(vmx->host_state.ldt_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1917 | #ifdef CONFIG_X86_64 |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1918 | load_gs_index(vmx->host_state.gs_sel); |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 1919 | #else |
| 1920 | loadsegment(gs, vmx->host_state.gs_sel); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1921 | #endif |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1922 | } |
Avi Kivity | 0a77fe4 | 2010-10-19 18:48:35 +0200 | [diff] [blame] | 1923 | if (vmx->host_state.fs_reload_needed) |
| 1924 | loadsegment(fs, vmx->host_state.fs_sel); |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1925 | #ifdef CONFIG_X86_64 |
| 1926 | if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) { |
| 1927 | loadsegment(ds, vmx->host_state.ds_sel); |
| 1928 | loadsegment(es, vmx->host_state.es_sel); |
| 1929 | } |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 1930 | #endif |
Laurent Vivier | 152d3f2 | 2007-08-23 16:33:11 +0200 | [diff] [blame] | 1931 | reload_tss(); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1932 | #ifdef CONFIG_X86_64 |
Avi Kivity | c8770e7 | 2010-11-11 12:37:26 +0200 | [diff] [blame] | 1933 | wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base); |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 1934 | #endif |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 1935 | if (vmx->host_state.msr_host_bndcfgs) |
| 1936 | wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs); |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1937 | /* |
| 1938 | * If the FPU is not active (through the host task or |
| 1939 | * the guest vcpu), then restore the cr0.TS bit. |
| 1940 | */ |
Ingo Molnar | 3c6dffa | 2015-04-28 12:28:08 +0200 | [diff] [blame] | 1941 | if (!fpregs_active() && !vmx->vcpu.guest_fpu_loaded) |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 1942 | stts(); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1943 | load_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 33ed632 | 2007-05-02 16:54:03 +0300 | [diff] [blame] | 1944 | } |
| 1945 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 1946 | static void vmx_load_host_state(struct vcpu_vmx *vmx) |
| 1947 | { |
| 1948 | preempt_disable(); |
| 1949 | __vmx_load_host_state(vmx); |
| 1950 | preempt_enable(); |
| 1951 | } |
| 1952 | |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 1953 | static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu) |
| 1954 | { |
| 1955 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 1956 | struct pi_desc old, new; |
| 1957 | unsigned int dest; |
| 1958 | |
| 1959 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 1960 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 1961 | return; |
| 1962 | |
| 1963 | do { |
| 1964 | old.control = new.control = pi_desc->control; |
| 1965 | |
| 1966 | /* |
| 1967 | * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there |
| 1968 | * are two possible cases: |
| 1969 | * 1. After running 'pre_block', context switch |
| 1970 | * happened. For this case, 'sn' was set in |
| 1971 | * vmx_vcpu_put(), so we need to clear it here. |
| 1972 | * 2. After running 'pre_block', we were blocked, |
| 1973 | * and woken up by some other guy. For this case, |
| 1974 | * we don't need to do anything, 'pi_post_block' |
| 1975 | * will do everything for us. However, we cannot |
| 1976 | * check whether it is case #1 or case #2 here |
| 1977 | * (maybe, not needed), so we also clear sn here, |
| 1978 | * I think it is not a big deal. |
| 1979 | */ |
| 1980 | if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) { |
| 1981 | if (vcpu->cpu != cpu) { |
| 1982 | dest = cpu_physical_id(cpu); |
| 1983 | |
| 1984 | if (x2apic_enabled()) |
| 1985 | new.ndst = dest; |
| 1986 | else |
| 1987 | new.ndst = (dest << 8) & 0xFF00; |
| 1988 | } |
| 1989 | |
| 1990 | /* set 'NV' to 'notification vector' */ |
| 1991 | new.nv = POSTED_INTR_VECTOR; |
| 1992 | } |
| 1993 | |
| 1994 | /* Allow posting non-urgent interrupts */ |
| 1995 | new.sn = 0; |
| 1996 | } while (cmpxchg(&pi_desc->control, old.control, |
| 1997 | new.control) != old.control); |
| 1998 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1999 | /* |
| 2000 | * Switches to specified vcpu, until a matching vcpu_put(), but assumes |
| 2001 | * vcpu mutex is already taken. |
| 2002 | */ |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 2003 | static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2004 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2005 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2006 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2007 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2008 | if (!vmm_exclusive) |
| 2009 | kvm_cpu_vmxon(phys_addr); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2010 | else if (vmx->loaded_vmcs->cpu != cpu) |
| 2011 | loaded_vmcs_clear(vmx->loaded_vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2012 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2013 | if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) { |
| 2014 | per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs; |
| 2015 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2016 | } |
| 2017 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2018 | if (vmx->loaded_vmcs->cpu != cpu) { |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 2019 | struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2020 | unsigned long sysenter_esp; |
| 2021 | |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2022 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2023 | local_irq_disable(); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2024 | crash_disable_local_vmclear(cpu); |
Xiao Guangrong | 5a560f8 | 2012-11-28 20:54:14 +0800 | [diff] [blame] | 2025 | |
| 2026 | /* |
| 2027 | * Read loaded_vmcs->cpu should be before fetching |
| 2028 | * loaded_vmcs->loaded_vmcss_on_cpu_link. |
| 2029 | * See the comments in __loaded_vmcs_clear(). |
| 2030 | */ |
| 2031 | smp_rmb(); |
| 2032 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2033 | list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link, |
| 2034 | &per_cpu(loaded_vmcss_on_cpu, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2035 | crash_enable_local_vmclear(cpu); |
Dongxiao Xu | 92fe13b | 2010-05-11 18:29:42 +0800 | [diff] [blame] | 2036 | local_irq_enable(); |
| 2037 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2038 | /* |
| 2039 | * Linux uses per-cpu TSS and GDT, so set these when switching |
| 2040 | * processors. |
| 2041 | */ |
Avi Kivity | d6e88ae | 2008-07-10 16:53:33 +0300 | [diff] [blame] | 2042 | vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */ |
Avi Kivity | d359192 | 2010-07-26 18:32:39 +0300 | [diff] [blame] | 2043 | vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2044 | |
| 2045 | rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp); |
| 2046 | vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */ |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2047 | vmx->loaded_vmcs->cpu = cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2048 | } |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2049 | |
| 2050 | vmx_vcpu_pi_load(vcpu, cpu); |
| 2051 | } |
| 2052 | |
| 2053 | static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu) |
| 2054 | { |
| 2055 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 2056 | |
| 2057 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 2058 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 2059 | return; |
| 2060 | |
| 2061 | /* Set SN when the vCPU is preempted */ |
| 2062 | if (vcpu->preempted) |
| 2063 | pi_set_sn(pi_desc); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2064 | } |
| 2065 | |
| 2066 | static void vmx_vcpu_put(struct kvm_vcpu *vcpu) |
| 2067 | { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 2068 | vmx_vcpu_pi_put(vcpu); |
| 2069 | |
Avi Kivity | a9b21b6 | 2008-06-24 11:48:49 +0300 | [diff] [blame] | 2070 | __vmx_load_host_state(to_vmx(vcpu)); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2071 | if (!vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2072 | __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs); |
| 2073 | vcpu->cpu = -1; |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 2074 | kvm_cpu_vmxoff(); |
| 2075 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2076 | } |
| 2077 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2078 | static void vmx_fpu_activate(struct kvm_vcpu *vcpu) |
| 2079 | { |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2080 | ulong cr0; |
| 2081 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2082 | if (vcpu->fpu_active) |
| 2083 | return; |
| 2084 | vcpu->fpu_active = 1; |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2085 | cr0 = vmcs_readl(GUEST_CR0); |
| 2086 | cr0 &= ~(X86_CR0_TS | X86_CR0_MP); |
| 2087 | cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP); |
| 2088 | vmcs_writel(GUEST_CR0, cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2089 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2090 | vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 2091 | if (is_guest_mode(vcpu)) |
| 2092 | vcpu->arch.cr0_guest_owned_bits &= |
| 2093 | ~get_vmcs12(vcpu)->cr0_guest_host_mask; |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2094 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2095 | } |
| 2096 | |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2097 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu); |
| 2098 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 2099 | /* |
| 2100 | * Return the cr0 value that a nested guest would read. This is a combination |
| 2101 | * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by |
| 2102 | * its hypervisor (cr0_read_shadow). |
| 2103 | */ |
| 2104 | static inline unsigned long nested_read_cr0(struct vmcs12 *fields) |
| 2105 | { |
| 2106 | return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) | |
| 2107 | (fields->cr0_read_shadow & fields->cr0_guest_host_mask); |
| 2108 | } |
| 2109 | static inline unsigned long nested_read_cr4(struct vmcs12 *fields) |
| 2110 | { |
| 2111 | return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) | |
| 2112 | (fields->cr4_read_shadow & fields->cr4_guest_host_mask); |
| 2113 | } |
| 2114 | |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2115 | static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu) |
| 2116 | { |
Nadav Har'El | 36cf24e | 2011-05-25 23:15:08 +0300 | [diff] [blame] | 2117 | /* Note that there is no vcpu->fpu_active = 0 here. The caller must |
| 2118 | * set this *before* calling this function. |
| 2119 | */ |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2120 | vmx_decache_cr0_guest_bits(vcpu); |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 2121 | vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2122 | update_exception_bitmap(vcpu); |
Avi Kivity | edcafe3 | 2009-12-30 18:07:40 +0200 | [diff] [blame] | 2123 | vcpu->arch.cr0_guest_owned_bits = 0; |
| 2124 | 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] | 2125 | if (is_guest_mode(vcpu)) { |
| 2126 | /* |
| 2127 | * L1's specified read shadow might not contain the TS bit, |
| 2128 | * so now that we turned on shadowing of this bit, we need to |
| 2129 | * set this bit of the shadow. Like in nested_vmx_run we need |
| 2130 | * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet |
| 2131 | * up-to-date here because we just decached cr0.TS (and we'll |
| 2132 | * only update vmcs12->guest_cr0 on nested exit). |
| 2133 | */ |
| 2134 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2135 | vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) | |
| 2136 | (vcpu->arch.cr0 & X86_CR0_TS); |
| 2137 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 2138 | } else |
| 2139 | vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0); |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 2140 | } |
| 2141 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2142 | static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu) |
| 2143 | { |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2144 | unsigned long rflags, save_rflags; |
Avi Kivity | 345dcaa | 2009-08-12 15:29:37 +0300 | [diff] [blame] | 2145 | |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2146 | if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) { |
| 2147 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2148 | rflags = vmcs_readl(GUEST_RFLAGS); |
| 2149 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2150 | rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2151 | save_rflags = to_vmx(vcpu)->rmode.save_rflags; |
| 2152 | rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 2153 | } |
| 2154 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2155 | } |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2156 | return to_vmx(vcpu)->rflags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2157 | } |
| 2158 | |
| 2159 | static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 2160 | { |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 2161 | __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail); |
| 2162 | to_vmx(vcpu)->rflags = rflags; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2163 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 2164 | to_vmx(vcpu)->rmode.save_rflags = rflags; |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 2165 | rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 2166 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2167 | vmcs_writel(GUEST_RFLAGS, rflags); |
| 2168 | } |
| 2169 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2170 | static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2171 | { |
| 2172 | u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2173 | int ret = 0; |
| 2174 | |
| 2175 | if (interruptibility & GUEST_INTR_STATE_STI) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2176 | ret |= KVM_X86_SHADOW_INT_STI; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2177 | if (interruptibility & GUEST_INTR_STATE_MOV_SS) |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2178 | ret |= KVM_X86_SHADOW_INT_MOV_SS; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2179 | |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2180 | return ret; |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask) |
| 2184 | { |
| 2185 | u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 2186 | u32 interruptibility = interruptibility_old; |
| 2187 | |
| 2188 | interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS); |
| 2189 | |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2190 | if (mask & KVM_X86_SHADOW_INT_MOV_SS) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2191 | interruptibility |= GUEST_INTR_STATE_MOV_SS; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2192 | else if (mask & KVM_X86_SHADOW_INT_STI) |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2193 | interruptibility |= GUEST_INTR_STATE_STI; |
| 2194 | |
| 2195 | if ((interruptibility != interruptibility_old)) |
| 2196 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility); |
| 2197 | } |
| 2198 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2199 | static void skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 2200 | { |
| 2201 | unsigned long rip; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2202 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2203 | rip = kvm_rip_read(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2204 | rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2205 | kvm_rip_write(vcpu, rip); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2206 | |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 2207 | /* skipping an emulated instruction also counts */ |
| 2208 | vmx_set_interrupt_shadow(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2209 | } |
| 2210 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2211 | /* |
| 2212 | * KVM wants to inject page-faults which it got to the guest. This function |
| 2213 | * 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] | 2214 | */ |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2215 | 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] | 2216 | { |
| 2217 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 2218 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2219 | if (!(vmcs12->exception_bitmap & (1u << nr))) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2220 | return 0; |
| 2221 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 2222 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 2223 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 2224 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2225 | return 1; |
| 2226 | } |
| 2227 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2228 | static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 2229 | bool has_error_code, u32 error_code, |
| 2230 | bool reinject) |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2231 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2232 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2233 | u32 intr_info = nr | INTR_INFO_VALID_MASK; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2234 | |
Gleb Natapov | e011c66 | 2013-09-25 12:51:35 +0300 | [diff] [blame] | 2235 | if (!reinject && is_guest_mode(vcpu) && |
| 2236 | nested_vmx_check_exception(vcpu, nr)) |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 2237 | return; |
| 2238 | |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2239 | if (has_error_code) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2240 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2241 | intr_info |= INTR_INFO_DELIVER_CODE_MASK; |
| 2242 | } |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2243 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 2244 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 2245 | int inc_eip = 0; |
| 2246 | if (kvm_exception_is_soft(nr)) |
| 2247 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 2248 | if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 2249 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 2250 | return; |
| 2251 | } |
| 2252 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2253 | if (kvm_exception_is_soft(nr)) { |
| 2254 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 2255 | vmx->vcpu.arch.event_exit_inst_len); |
Jan Kiszka | 8ab2d2e | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 2256 | intr_info |= INTR_TYPE_SOFT_EXCEPTION; |
| 2257 | } else |
| 2258 | intr_info |= INTR_TYPE_HARD_EXCEPTION; |
| 2259 | |
| 2260 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 2261 | } |
| 2262 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2263 | static bool vmx_rdtscp_supported(void) |
| 2264 | { |
| 2265 | return cpu_has_vmx_rdtscp(); |
| 2266 | } |
| 2267 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 2268 | static bool vmx_invpcid_supported(void) |
| 2269 | { |
| 2270 | return cpu_has_vmx_invpcid() && enable_ept; |
| 2271 | } |
| 2272 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2273 | /* |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2274 | * Swap MSR entry in host/guest MSR entry array. |
| 2275 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2276 | 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] | 2277 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2278 | struct shared_msr_entry tmp; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2279 | |
| 2280 | tmp = vmx->guest_msrs[to]; |
| 2281 | vmx->guest_msrs[to] = vmx->guest_msrs[from]; |
| 2282 | vmx->guest_msrs[from] = tmp; |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2283 | } |
| 2284 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2285 | static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu) |
| 2286 | { |
| 2287 | unsigned long *msr_bitmap; |
| 2288 | |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 2289 | if (is_guest_mode(vcpu)) |
| 2290 | msr_bitmap = vmx_msr_bitmap_nested; |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 2291 | else if (vcpu->arch.apic_base & X2APIC_ENABLE) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2292 | if (is_long_mode(vcpu)) |
| 2293 | msr_bitmap = vmx_msr_bitmap_longmode_x2apic; |
| 2294 | else |
| 2295 | msr_bitmap = vmx_msr_bitmap_legacy_x2apic; |
| 2296 | } else { |
| 2297 | if (is_long_mode(vcpu)) |
| 2298 | msr_bitmap = vmx_msr_bitmap_longmode; |
| 2299 | else |
| 2300 | msr_bitmap = vmx_msr_bitmap_legacy; |
| 2301 | } |
| 2302 | |
| 2303 | vmcs_write64(MSR_BITMAP, __pa(msr_bitmap)); |
| 2304 | } |
| 2305 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2306 | /* |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2307 | * Set up the vmcs to automatically save and restore system |
| 2308 | * msrs. Don't touch the 64-bit msrs if the guest is in legacy |
| 2309 | * mode, as fiddling with msrs is very expensive. |
| 2310 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2311 | static void setup_msrs(struct vcpu_vmx *vmx) |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2312 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2313 | int save_nmsrs, index; |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2314 | |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2315 | save_nmsrs = 0; |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2316 | #ifdef CONFIG_X86_64 |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2317 | if (is_long_mode(&vmx->vcpu)) { |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2318 | index = __find_msr_index(vmx, MSR_SYSCALL_MASK); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2319 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2320 | move_msr_up(vmx, index, save_nmsrs++); |
| 2321 | index = __find_msr_index(vmx, MSR_LSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2322 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2323 | move_msr_up(vmx, index, save_nmsrs++); |
| 2324 | index = __find_msr_index(vmx, MSR_CSTAR); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2325 | if (index >= 0) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2326 | move_msr_up(vmx, index, save_nmsrs++); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2327 | index = __find_msr_index(vmx, MSR_TSC_AUX); |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2328 | if (index >= 0 && guest_cpuid_has_rdtscp(&vmx->vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2329 | move_msr_up(vmx, index, save_nmsrs++); |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2330 | /* |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2331 | * MSR_STAR is only needed on long mode guests, and only |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2332 | * if efer.sce is enabled. |
| 2333 | */ |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 2334 | index = __find_msr_index(vmx, MSR_STAR); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 2335 | if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE)) |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2336 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2337 | } |
Eddie Dong | a75beee | 2007-05-17 18:55:15 +0300 | [diff] [blame] | 2338 | #endif |
Avi Kivity | 92c0d90 | 2009-10-29 11:00:16 +0200 | [diff] [blame] | 2339 | index = __find_msr_index(vmx, MSR_EFER); |
| 2340 | if (index >= 0 && update_transition_efer(vmx, index)) |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2341 | move_msr_up(vmx, index, save_nmsrs++); |
Avi Kivity | 4d56c8a | 2007-04-19 14:28:44 +0300 | [diff] [blame] | 2342 | |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2343 | vmx->save_nmsrs = save_nmsrs; |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 2344 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 2345 | if (cpu_has_vmx_msr_bitmap()) |
| 2346 | vmx_set_msr_bitmap(&vmx->vcpu); |
Avi Kivity | e38aea3 | 2007-04-19 13:22:48 +0300 | [diff] [blame] | 2347 | } |
| 2348 | |
| 2349 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2350 | * reads and returns guest's timestamp counter "register" |
| 2351 | * guest_tsc = host_tsc + tsc_offset -- 21.3 |
| 2352 | */ |
| 2353 | static u64 guest_read_tsc(void) |
| 2354 | { |
| 2355 | u64 host_tsc, tsc_offset; |
| 2356 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2357 | host_tsc = rdtsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2358 | tsc_offset = vmcs_read64(TSC_OFFSET); |
| 2359 | return host_tsc + tsc_offset; |
| 2360 | } |
| 2361 | |
| 2362 | /* |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2363 | * Like guest_read_tsc, but always returns L1's notion of the timestamp |
| 2364 | * counter, even if a nested guest (L2) is currently running. |
| 2365 | */ |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 2366 | 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] | 2367 | { |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 2368 | u64 tsc_offset; |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2369 | |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 2370 | tsc_offset = is_guest_mode(vcpu) ? |
| 2371 | to_vmx(vcpu)->nested.vmcs01_tsc_offset : |
| 2372 | vmcs_read64(TSC_OFFSET); |
| 2373 | return host_tsc + tsc_offset; |
| 2374 | } |
| 2375 | |
| 2376 | /* |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2377 | * Engage any workarounds for mis-matched TSC rates. Currently limited to |
| 2378 | * software catchup for faster rates on slower CPUs. |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2379 | */ |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2380 | static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale) |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2381 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 2382 | if (!scale) |
| 2383 | return; |
| 2384 | |
| 2385 | if (user_tsc_khz > tsc_khz) { |
| 2386 | vcpu->arch.tsc_catchup = 1; |
| 2387 | vcpu->arch.tsc_always_catchup = 1; |
| 2388 | } else |
| 2389 | WARN(1, "user requested TSC rate below hardware speed\n"); |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2390 | } |
| 2391 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2392 | static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu) |
| 2393 | { |
| 2394 | return vmcs_read64(TSC_OFFSET); |
| 2395 | } |
| 2396 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 2397 | /* |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2398 | * writes 'offset' into guest's timestamp counter offset register |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2399 | */ |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2400 | static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2401 | { |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2402 | if (is_guest_mode(vcpu)) { |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2403 | /* |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2404 | * We're here if L1 chose not to trap WRMSR to TSC. According |
| 2405 | * to the spec, this should set L1's TSC; The offset that L1 |
| 2406 | * set for L2 remains unchanged, and still needs to be added |
| 2407 | * to the newly set TSC to get L2's TSC. |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2408 | */ |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2409 | struct vmcs12 *vmcs12; |
| 2410 | to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset; |
| 2411 | /* recalculate vmcs02.TSC_OFFSET: */ |
| 2412 | vmcs12 = get_vmcs12(vcpu); |
| 2413 | vmcs_write64(TSC_OFFSET, offset + |
| 2414 | (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ? |
| 2415 | vmcs12->tsc_offset : 0)); |
| 2416 | } else { |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2417 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, |
| 2418 | vmcs_read64(TSC_OFFSET), offset); |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 2419 | vmcs_write64(TSC_OFFSET, offset); |
| 2420 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2421 | } |
| 2422 | |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 2423 | static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment, bool host) |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2424 | { |
| 2425 | u64 offset = vmcs_read64(TSC_OFFSET); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2426 | |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2427 | vmcs_write64(TSC_OFFSET, offset + adjustment); |
Nadav Har'El | 7991825 | 2011-05-25 23:15:39 +0300 | [diff] [blame] | 2428 | if (is_guest_mode(vcpu)) { |
| 2429 | /* Even when running L2, the adjustment needs to apply to L1 */ |
| 2430 | to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment; |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 2431 | } else |
| 2432 | trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset, |
| 2433 | offset + adjustment); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2434 | } |
| 2435 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 2436 | static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 2437 | { |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2438 | return target_tsc - rdtsc(); |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 2439 | } |
| 2440 | |
Nadav Har'El | 801d342 | 2011-05-25 23:02:23 +0300 | [diff] [blame] | 2441 | static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu) |
| 2442 | { |
| 2443 | struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0); |
| 2444 | return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31))); |
| 2445 | } |
| 2446 | |
| 2447 | /* |
| 2448 | * nested_vmx_allowed() checks whether a guest should be allowed to use VMX |
| 2449 | * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for |
| 2450 | * all guests if the "nested" module option is off, and can also be disabled |
| 2451 | * for a single guest by disabling its VMX cpuid bit. |
| 2452 | */ |
| 2453 | static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu) |
| 2454 | { |
| 2455 | return nested && guest_cpuid_has_vmx(vcpu); |
| 2456 | } |
| 2457 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2458 | /* |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2459 | * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be |
| 2460 | * returned for the various VMX controls MSRs when nested VMX is enabled. |
| 2461 | * The same values should also be used to verify that vmcs12 control fields are |
| 2462 | * valid during nested entry from L1 to L2. |
| 2463 | * Each of these control msrs has a low and high 32-bit half: A low bit is on |
| 2464 | * if the corresponding bit in the (32-bit) control field *must* be on, and a |
| 2465 | * bit in the high half is on if the corresponding bit in the control field |
| 2466 | * may be on. See also vmx_control_verify(). |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2467 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2468 | static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx) |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2469 | { |
| 2470 | /* |
| 2471 | * Note that as a general rule, the high half of the MSRs (bits in |
| 2472 | * the control fields which may be 1) should be initialized by the |
| 2473 | * intersection of the underlying hardware's MSR (i.e., features which |
| 2474 | * can be supported) and the list of features we want to expose - |
| 2475 | * because they are known to be properly supported in our code. |
| 2476 | * Also, usually, the low half of the MSRs (bits which must be 1) can |
| 2477 | * be set to 0, meaning that L1 may turn off any of these bits. The |
| 2478 | * reason is that if one of these bits is necessary, it will appear |
| 2479 | * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control |
| 2480 | * fields of vmcs01 and vmcs02, will turn these bits off - and |
| 2481 | * nested_vmx_exit_handled() will not pass related exits to L1. |
| 2482 | * These rules have exceptions below. |
| 2483 | */ |
| 2484 | |
| 2485 | /* pin-based controls */ |
Jan Kiszka | eabeaac | 2013-03-13 11:30:50 +0100 | [diff] [blame] | 2486 | rdmsr(MSR_IA32_VMX_PINBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2487 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2488 | vmx->nested.nested_vmx_pinbased_ctls_high); |
| 2489 | vmx->nested.nested_vmx_pinbased_ctls_low |= |
| 2490 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2491 | vmx->nested.nested_vmx_pinbased_ctls_high &= |
| 2492 | PIN_BASED_EXT_INTR_MASK | |
| 2493 | PIN_BASED_NMI_EXITING | |
| 2494 | PIN_BASED_VIRTUAL_NMIS; |
| 2495 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2496 | PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 2497 | PIN_BASED_VMX_PREEMPTION_TIMER; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 2498 | if (vmx_cpu_uses_apicv(&vmx->vcpu)) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 2499 | vmx->nested.nested_vmx_pinbased_ctls_high |= |
| 2500 | PIN_BASED_POSTED_INTR; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2501 | |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2502 | /* exit controls */ |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2503 | rdmsr(MSR_IA32_VMX_EXIT_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2504 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2505 | vmx->nested.nested_vmx_exit_ctls_high); |
| 2506 | vmx->nested.nested_vmx_exit_ctls_low = |
| 2507 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR; |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2508 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2509 | vmx->nested.nested_vmx_exit_ctls_high &= |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2510 | #ifdef CONFIG_X86_64 |
Arthur Chunqi Li | c0dfee5 | 2013-08-06 18:41:45 +0800 | [diff] [blame] | 2511 | VM_EXIT_HOST_ADDR_SPACE_SIZE | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2512 | #endif |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2513 | VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2514 | vmx->nested.nested_vmx_exit_ctls_high |= |
| 2515 | VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2516 | VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER | |
Bandan Das | e0ba1a6 | 2014-04-19 18:17:46 -0400 | [diff] [blame] | 2517 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT; |
| 2518 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2519 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2520 | vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2521 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2522 | /* We support free control of debug control saving. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2523 | vmx->nested.nested_vmx_true_exit_ctls_low = |
| 2524 | vmx->nested.nested_vmx_exit_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2525 | ~VM_EXIT_SAVE_DEBUG_CONTROLS; |
| 2526 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2527 | /* entry controls */ |
| 2528 | rdmsr(MSR_IA32_VMX_ENTRY_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2529 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2530 | vmx->nested.nested_vmx_entry_ctls_high); |
| 2531 | vmx->nested.nested_vmx_entry_ctls_low = |
| 2532 | VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2533 | vmx->nested.nested_vmx_entry_ctls_high &= |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2534 | #ifdef CONFIG_X86_64 |
| 2535 | VM_ENTRY_IA32E_MODE | |
| 2536 | #endif |
| 2537 | VM_ENTRY_LOAD_IA32_PAT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2538 | vmx->nested.nested_vmx_entry_ctls_high |= |
| 2539 | (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 2540 | if (vmx_mpx_supported()) |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2541 | vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS; |
Jan Kiszka | 5743534 | 2013-08-06 10:39:56 +0200 | [diff] [blame] | 2542 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2543 | /* We support free control of debug control loading. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2544 | vmx->nested.nested_vmx_true_entry_ctls_low = |
| 2545 | vmx->nested.nested_vmx_entry_ctls_low & |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2546 | ~VM_ENTRY_LOAD_DEBUG_CONTROLS; |
| 2547 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2548 | /* cpu-based controls */ |
| 2549 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2550 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2551 | vmx->nested.nested_vmx_procbased_ctls_high); |
| 2552 | vmx->nested.nested_vmx_procbased_ctls_low = |
| 2553 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR; |
| 2554 | vmx->nested.nested_vmx_procbased_ctls_high &= |
Jan Kiszka | a294c9b | 2013-10-23 17:43:09 +0100 | [diff] [blame] | 2555 | CPU_BASED_VIRTUAL_INTR_PENDING | |
| 2556 | CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2557 | CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING | |
| 2558 | CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING | |
| 2559 | CPU_BASED_CR3_STORE_EXITING | |
| 2560 | #ifdef CONFIG_X86_64 |
| 2561 | CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING | |
| 2562 | #endif |
| 2563 | CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 2564 | CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG | |
| 2565 | CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING | |
| 2566 | CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING | |
| 2567 | CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2568 | /* |
| 2569 | * We can allow some features even when not supported by the |
| 2570 | * hardware. For example, L1 can specify an MSR bitmap - and we |
| 2571 | * can use it to avoid exits to L1 - even when L0 runs L2 |
| 2572 | * without MSR bitmaps. |
| 2573 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2574 | vmx->nested.nested_vmx_procbased_ctls_high |= |
| 2575 | CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR | |
Jan Kiszka | 560b7ee | 2014-06-16 13:59:42 +0200 | [diff] [blame] | 2576 | CPU_BASED_USE_MSR_BITMAPS; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2577 | |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2578 | /* We support free control of CR3 access interception. */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2579 | vmx->nested.nested_vmx_true_procbased_ctls_low = |
| 2580 | vmx->nested.nested_vmx_procbased_ctls_low & |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2581 | ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING); |
| 2582 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2583 | /* secondary cpu-based controls */ |
| 2584 | rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2585 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2586 | vmx->nested.nested_vmx_secondary_ctls_high); |
| 2587 | vmx->nested.nested_vmx_secondary_ctls_low = 0; |
| 2588 | vmx->nested.nested_vmx_secondary_ctls_high &= |
Jan Kiszka | d6851fb | 2013-02-23 22:34:39 +0100 | [diff] [blame] | 2589 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 2590 | SECONDARY_EXEC_RDTSCP | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 2591 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 2592 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 2593 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 2594 | SECONDARY_EXEC_WBINVD_EXITING | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 2595 | SECONDARY_EXEC_XSAVES | |
| 2596 | SECONDARY_EXEC_PCOMMIT; |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2597 | |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2598 | if (enable_ept) { |
| 2599 | /* nested EPT: emulate EPT also to L1 */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2600 | vmx->nested.nested_vmx_secondary_ctls_high |= |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2601 | SECONDARY_EXEC_ENABLE_EPT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2602 | vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT | |
Jan Kiszka | d3134db | 2013-10-23 14:40:31 +0100 | [diff] [blame] | 2603 | VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT | |
| 2604 | VMX_EPT_INVEPT_BIT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2605 | vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2606 | /* |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 2607 | * For nested guests, we don't do anything specific |
| 2608 | * for single context invalidation. Hence, only advertise |
| 2609 | * support for global context invalidation. |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2610 | */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2611 | vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2612 | } else |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2613 | vmx->nested.nested_vmx_ept_caps = 0; |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2614 | |
Radim Krčmář | 0790ec1 | 2015-03-17 14:02:32 +0100 | [diff] [blame] | 2615 | if (enable_unrestricted_guest) |
| 2616 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 2617 | SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 2618 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 2619 | /* miscellaneous data */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2620 | rdmsr(MSR_IA32_VMX_MISC, |
| 2621 | vmx->nested.nested_vmx_misc_low, |
| 2622 | vmx->nested.nested_vmx_misc_high); |
| 2623 | vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA; |
| 2624 | vmx->nested.nested_vmx_misc_low |= |
| 2625 | VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 2626 | VMX_MISC_ACTIVITY_HLT; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2627 | vmx->nested.nested_vmx_misc_high = 0; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2628 | } |
| 2629 | |
| 2630 | static inline bool vmx_control_verify(u32 control, u32 low, u32 high) |
| 2631 | { |
| 2632 | /* |
| 2633 | * Bits 0 in high must be 0, and bits 1 in low must be 1. |
| 2634 | */ |
| 2635 | return ((control & high) | low) == control; |
| 2636 | } |
| 2637 | |
| 2638 | static inline u64 vmx_control_msr(u32 low, u32 high) |
| 2639 | { |
| 2640 | return low | ((u64)high << 32); |
| 2641 | } |
| 2642 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2643 | /* Returns 0 on success, non-0 otherwise. */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2644 | static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata) |
| 2645 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2646 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 2647 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2648 | switch (msr_index) { |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2649 | case MSR_IA32_VMX_BASIC: |
| 2650 | /* |
| 2651 | * This MSR reports some information about VMX support. We |
| 2652 | * should return information about the VMX we emulate for the |
| 2653 | * guest, and the VMCS structure we give it - not about the |
| 2654 | * VMX support of the underlying hardware. |
| 2655 | */ |
Jan Kiszka | 3dbcd8d | 2014-06-16 13:59:40 +0200 | [diff] [blame] | 2656 | *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2657 | ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) | |
| 2658 | (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT); |
| 2659 | break; |
| 2660 | case MSR_IA32_VMX_TRUE_PINBASED_CTLS: |
| 2661 | case MSR_IA32_VMX_PINBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2662 | *pdata = vmx_control_msr( |
| 2663 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 2664 | vmx->nested.nested_vmx_pinbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2665 | break; |
| 2666 | case MSR_IA32_VMX_TRUE_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2667 | *pdata = vmx_control_msr( |
| 2668 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 2669 | vmx->nested.nested_vmx_procbased_ctls_high); |
Jan Kiszka | 3dcdf3ec | 2014-06-16 13:59:41 +0200 | [diff] [blame] | 2670 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2671 | case MSR_IA32_VMX_PROCBASED_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2672 | *pdata = vmx_control_msr( |
| 2673 | vmx->nested.nested_vmx_procbased_ctls_low, |
| 2674 | vmx->nested.nested_vmx_procbased_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2675 | break; |
| 2676 | case MSR_IA32_VMX_TRUE_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2677 | *pdata = vmx_control_msr( |
| 2678 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 2679 | vmx->nested.nested_vmx_exit_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2680 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2681 | case MSR_IA32_VMX_EXIT_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2682 | *pdata = vmx_control_msr( |
| 2683 | vmx->nested.nested_vmx_exit_ctls_low, |
| 2684 | vmx->nested.nested_vmx_exit_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2685 | break; |
| 2686 | case MSR_IA32_VMX_TRUE_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2687 | *pdata = vmx_control_msr( |
| 2688 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 2689 | vmx->nested.nested_vmx_entry_ctls_high); |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 2690 | break; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2691 | case MSR_IA32_VMX_ENTRY_CTLS: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2692 | *pdata = vmx_control_msr( |
| 2693 | vmx->nested.nested_vmx_entry_ctls_low, |
| 2694 | vmx->nested.nested_vmx_entry_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2695 | break; |
| 2696 | case MSR_IA32_VMX_MISC: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2697 | *pdata = vmx_control_msr( |
| 2698 | vmx->nested.nested_vmx_misc_low, |
| 2699 | vmx->nested.nested_vmx_misc_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2700 | break; |
| 2701 | /* |
| 2702 | * These MSRs specify bits which the guest must keep fixed (on or off) |
| 2703 | * while L1 is in VMXON mode (in L1's root mode, or running an L2). |
| 2704 | * We picked the standard core2 setting. |
| 2705 | */ |
| 2706 | #define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE) |
| 2707 | #define VMXON_CR4_ALWAYSON X86_CR4_VMXE |
| 2708 | case MSR_IA32_VMX_CR0_FIXED0: |
| 2709 | *pdata = VMXON_CR0_ALWAYSON; |
| 2710 | break; |
| 2711 | case MSR_IA32_VMX_CR0_FIXED1: |
| 2712 | *pdata = -1ULL; |
| 2713 | break; |
| 2714 | case MSR_IA32_VMX_CR4_FIXED0: |
| 2715 | *pdata = VMXON_CR4_ALWAYSON; |
| 2716 | break; |
| 2717 | case MSR_IA32_VMX_CR4_FIXED1: |
| 2718 | *pdata = -1ULL; |
| 2719 | break; |
| 2720 | case MSR_IA32_VMX_VMCS_ENUM: |
Jan Kiszka | 5381417 | 2014-06-16 13:59:44 +0200 | [diff] [blame] | 2721 | *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */ |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2722 | break; |
| 2723 | case MSR_IA32_VMX_PROCBASED_CTLS2: |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2724 | *pdata = vmx_control_msr( |
| 2725 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 2726 | vmx->nested.nested_vmx_secondary_ctls_high); |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2727 | break; |
| 2728 | case MSR_IA32_VMX_EPT_VPID_CAP: |
Nadav Har'El | afa61f752 | 2013-08-07 14:59:22 +0200 | [diff] [blame] | 2729 | /* Currently, no nested vpid support */ |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 2730 | *pdata = vmx->nested.nested_vmx_ept_caps; |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2731 | break; |
| 2732 | default: |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2733 | return 1; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 2734 | } |
| 2735 | |
Nadav Har'El | b87a51a | 2011-05-25 23:04:25 +0300 | [diff] [blame] | 2736 | return 0; |
| 2737 | } |
| 2738 | |
| 2739 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2740 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2741 | * Returns 0 on success, non-0 otherwise. |
| 2742 | * Assumes vcpu_load() was already called. |
| 2743 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2744 | 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] | 2745 | { |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2746 | struct shared_msr_entry *msr; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2747 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2748 | switch (msr_info->index) { |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 2749 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2750 | case MSR_FS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2751 | msr_info->data = vmcs_readl(GUEST_FS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2752 | break; |
| 2753 | case MSR_GS_BASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2754 | msr_info->data = vmcs_readl(GUEST_GS_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2755 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2756 | case MSR_KERNEL_GS_BASE: |
| 2757 | vmx_load_host_state(to_vmx(vcpu)); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2758 | msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2759 | break; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2760 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2761 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2762 | return kvm_get_msr_common(vcpu, msr_info); |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2763 | case MSR_IA32_TSC: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2764 | msr_info->data = guest_read_tsc(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2765 | break; |
| 2766 | case MSR_IA32_SYSENTER_CS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2767 | msr_info->data = vmcs_read32(GUEST_SYSENTER_CS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2768 | break; |
| 2769 | case MSR_IA32_SYSENTER_EIP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2770 | msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2771 | break; |
| 2772 | case MSR_IA32_SYSENTER_ESP: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2773 | msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2774 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2775 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2776 | if (!vmx_mpx_supported()) |
| 2777 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2778 | msr_info->data = vmcs_read64(GUEST_BNDCFGS); |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2779 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2780 | case MSR_IA32_FEATURE_CONTROL: |
| 2781 | if (!nested_vmx_allowed(vcpu)) |
| 2782 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2783 | msr_info->data = to_vmx(vcpu)->nested.msr_ia32_feature_control; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2784 | break; |
| 2785 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2786 | if (!nested_vmx_allowed(vcpu)) |
| 2787 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2788 | return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data); |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2789 | case MSR_IA32_XSS: |
| 2790 | if (!vmx_xsaves_supported()) |
| 2791 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2792 | msr_info->data = vcpu->arch.ia32_xss; |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2793 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2794 | case MSR_TSC_AUX: |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2795 | if (!guest_cpuid_has_rdtscp(vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2796 | return 1; |
| 2797 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2798 | default: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2799 | msr = find_msr_entry(to_vmx(vcpu), msr_info->index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2800 | if (msr) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2801 | msr_info->data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2802 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2803 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2804 | return kvm_get_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2805 | } |
| 2806 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2807 | return 0; |
| 2808 | } |
| 2809 | |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2810 | static void vmx_leave_nested(struct kvm_vcpu *vcpu); |
| 2811 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2812 | /* |
| 2813 | * Writes msr value into into the appropriate "register". |
| 2814 | * Returns 0 on success, non-0 otherwise. |
| 2815 | * Assumes vcpu_load() was already called. |
| 2816 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2817 | 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] | 2818 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 2819 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 2820 | struct shared_msr_entry *msr; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2821 | int ret = 0; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2822 | u32 msr_index = msr_info->index; |
| 2823 | u64 data = msr_info->data; |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2824 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2825 | switch (msr_index) { |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2826 | case MSR_EFER: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2827 | ret = kvm_set_msr_common(vcpu, msr_info); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2828 | break; |
Avi Kivity | 16175a7 | 2009-03-23 22:13:44 +0200 | [diff] [blame] | 2829 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2830 | case MSR_FS_BASE: |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 2831 | vmx_segment_cache_clear(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2832 | vmcs_writel(GUEST_FS_BASE, data); |
| 2833 | break; |
| 2834 | case MSR_GS_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_GS_BASE, data); |
| 2837 | break; |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 2838 | case MSR_KERNEL_GS_BASE: |
| 2839 | vmx_load_host_state(vmx); |
| 2840 | vmx->msr_guest_kernel_gs_base = data; |
| 2841 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2842 | #endif |
| 2843 | case MSR_IA32_SYSENTER_CS: |
| 2844 | vmcs_write32(GUEST_SYSENTER_CS, data); |
| 2845 | break; |
| 2846 | case MSR_IA32_SYSENTER_EIP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2847 | vmcs_writel(GUEST_SYSENTER_EIP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2848 | break; |
| 2849 | case MSR_IA32_SYSENTER_ESP: |
Avi Kivity | f5b42c3 | 2007-03-06 12:05:53 +0200 | [diff] [blame] | 2850 | vmcs_writel(GUEST_SYSENTER_ESP, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2851 | break; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2852 | case MSR_IA32_BNDCFGS: |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 2853 | if (!vmx_mpx_supported()) |
| 2854 | return 1; |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 2855 | vmcs_write64(GUEST_BNDCFGS, data); |
| 2856 | break; |
Jaswinder Singh Rajput | af24a4e | 2009-05-15 18:42:05 +0530 | [diff] [blame] | 2857 | case MSR_IA32_TSC: |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2858 | kvm_write_tsc(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2859 | break; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2860 | case MSR_IA32_CR_PAT: |
| 2861 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Amit | 4566654 | 2014-09-18 22:39:44 +0300 | [diff] [blame] | 2862 | if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data)) |
| 2863 | return 1; |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 2864 | vmcs_write64(GUEST_IA32_PAT, data); |
| 2865 | vcpu->arch.pat = data; |
| 2866 | break; |
| 2867 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2868 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2869 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2870 | case MSR_IA32_TSC_ADJUST: |
| 2871 | ret = kvm_set_msr_common(vcpu, msr_info); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2872 | break; |
Jan Kiszka | cae5013 | 2014-01-04 18:47:22 +0100 | [diff] [blame] | 2873 | case MSR_IA32_FEATURE_CONTROL: |
| 2874 | if (!nested_vmx_allowed(vcpu) || |
| 2875 | (to_vmx(vcpu)->nested.msr_ia32_feature_control & |
| 2876 | FEATURE_CONTROL_LOCKED && !msr_info->host_initiated)) |
| 2877 | return 1; |
| 2878 | vmx->nested.msr_ia32_feature_control = data; |
| 2879 | if (msr_info->host_initiated && data == 0) |
| 2880 | vmx_leave_nested(vcpu); |
| 2881 | break; |
| 2882 | case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC: |
| 2883 | return 1; /* they are read-only */ |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 2884 | case MSR_IA32_XSS: |
| 2885 | if (!vmx_xsaves_supported()) |
| 2886 | return 1; |
| 2887 | /* |
| 2888 | * The only supported bit as of Skylake is bit 8, but |
| 2889 | * it is not supported on KVM. |
| 2890 | */ |
| 2891 | if (data != 0) |
| 2892 | return 1; |
| 2893 | vcpu->arch.ia32_xss = data; |
| 2894 | if (vcpu->arch.ia32_xss != host_xss) |
| 2895 | add_atomic_switch_msr(vmx, MSR_IA32_XSS, |
| 2896 | vcpu->arch.ia32_xss, host_xss); |
| 2897 | else |
| 2898 | clear_atomic_switch_msr(vmx, MSR_IA32_XSS); |
| 2899 | break; |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2900 | case MSR_TSC_AUX: |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 2901 | if (!guest_cpuid_has_rdtscp(vcpu)) |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 2902 | return 1; |
| 2903 | /* Check reserved bit, higher 32 bits should be zero */ |
| 2904 | if ((data >> 32) != 0) |
| 2905 | return 1; |
| 2906 | /* Otherwise falls through */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2907 | default: |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 2908 | msr = find_msr_entry(vmx, msr_index); |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2909 | if (msr) { |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2910 | u64 old_msr_data = msr->data; |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2911 | msr->data = data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2912 | if (msr - vmx->guest_msrs < vmx->save_nmsrs) { |
| 2913 | preempt_disable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2914 | ret = kvm_set_shared_msr(msr->index, msr->data, |
| 2915 | msr->mask); |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2916 | preempt_enable(); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 2917 | if (ret) |
| 2918 | msr->data = old_msr_data; |
Avi Kivity | 2225fd5 | 2012-04-18 15:03:04 +0300 | [diff] [blame] | 2919 | } |
Avi Kivity | 3bab1f5 | 2006-12-29 16:49:48 -0800 | [diff] [blame] | 2920 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2921 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2922 | ret = kvm_set_msr_common(vcpu, msr_info); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2923 | } |
| 2924 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 2925 | return ret; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2926 | } |
| 2927 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2928 | 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] | 2929 | { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2930 | __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail); |
| 2931 | switch (reg) { |
| 2932 | case VCPU_REGS_RSP: |
| 2933 | vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP); |
| 2934 | break; |
| 2935 | case VCPU_REGS_RIP: |
| 2936 | vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP); |
| 2937 | break; |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 2938 | case VCPU_EXREG_PDPTR: |
| 2939 | if (enable_ept) |
| 2940 | ept_save_pdptrs(vcpu); |
| 2941 | break; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 2942 | default: |
| 2943 | break; |
| 2944 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2945 | } |
| 2946 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2947 | static __init int cpu_has_kvm_support(void) |
| 2948 | { |
Eduardo Habkost | 6210e37 | 2008-11-17 19:03:16 -0200 | [diff] [blame] | 2949 | return cpu_has_vmx(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2950 | } |
| 2951 | |
| 2952 | static __init int vmx_disabled_by_bios(void) |
| 2953 | { |
| 2954 | u64 msr; |
| 2955 | |
| 2956 | rdmsrl(MSR_IA32_FEATURE_CONTROL, msr); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2957 | if (msr & FEATURE_CONTROL_LOCKED) { |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2958 | /* launched w/ TXT and VMX disabled */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2959 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
| 2960 | && tboot_enabled()) |
| 2961 | return 1; |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2962 | /* launched w/o TXT and VMX only enabled w/ TXT */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2963 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2964 | && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX) |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2965 | && !tboot_enabled()) { |
| 2966 | printk(KERN_WARNING "kvm: disable TXT in the BIOS or " |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2967 | "activate TXT before enabling KVM\n"); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2968 | return 1; |
Shane Wang | f9335af | 2010-11-17 11:40:17 +0800 | [diff] [blame] | 2969 | } |
Joseph Cihula | 23f3e99 | 2011-02-08 11:45:56 -0800 | [diff] [blame] | 2970 | /* launched w/o TXT and VMX disabled */ |
| 2971 | if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX) |
| 2972 | && !tboot_enabled()) |
| 2973 | return 1; |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2974 | } |
| 2975 | |
| 2976 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2977 | } |
| 2978 | |
Dongxiao Xu | 7725b89 | 2010-05-11 18:29:38 +0800 | [diff] [blame] | 2979 | static void kvm_cpu_vmxon(u64 addr) |
| 2980 | { |
| 2981 | asm volatile (ASM_VMX_VMXON_RAX |
| 2982 | : : "a"(&addr), "m"(addr) |
| 2983 | : "memory", "cc"); |
| 2984 | } |
| 2985 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 2986 | static int hardware_enable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2987 | { |
| 2988 | int cpu = raw_smp_processor_id(); |
| 2989 | u64 phys_addr = __pa(per_cpu(vmxarea, cpu)); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 2990 | u64 old, test_bits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2991 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 2992 | if (cr4_read_shadow() & X86_CR4_VMXE) |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 2993 | return -EBUSY; |
| 2994 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 2995 | INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu)); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 2996 | INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu)); |
| 2997 | spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 2998 | |
| 2999 | /* |
| 3000 | * Now we can enable the vmclear operation in kdump |
| 3001 | * since the loaded_vmcss_on_cpu list on this cpu |
| 3002 | * has been initialized. |
| 3003 | * |
| 3004 | * Though the cpu is not in VMX operation now, there |
| 3005 | * is no problem to enable the vmclear operation |
| 3006 | * for the loaded_vmcss_on_cpu list is empty! |
| 3007 | */ |
| 3008 | crash_enable_local_vmclear(cpu); |
| 3009 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3010 | rdmsrl(MSR_IA32_FEATURE_CONTROL, old); |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3011 | |
| 3012 | test_bits = FEATURE_CONTROL_LOCKED; |
| 3013 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
| 3014 | if (tboot_enabled()) |
| 3015 | test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX; |
| 3016 | |
| 3017 | if ((old & test_bits) != test_bits) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3018 | /* enable and lock */ |
Shane Wang | cafd665 | 2010-04-29 12:09:01 -0400 | [diff] [blame] | 3019 | wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits); |
| 3020 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3021 | cr4_set_bits(X86_CR4_VMXE); |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3022 | |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3023 | if (vmm_exclusive) { |
| 3024 | kvm_cpu_vmxon(phys_addr); |
| 3025 | ept_sync_global(); |
| 3026 | } |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3027 | |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 3028 | native_store_gdt(this_cpu_ptr(&host_gdt)); |
Avi Kivity | 3444d7d | 2010-07-26 18:32:38 +0300 | [diff] [blame] | 3029 | |
Alexander Graf | 10474ae | 2009-09-15 11:37:46 +0200 | [diff] [blame] | 3030 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3031 | } |
| 3032 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3033 | static void vmclear_local_loaded_vmcss(void) |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3034 | { |
| 3035 | int cpu = raw_smp_processor_id(); |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3036 | struct loaded_vmcs *v, *n; |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3037 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3038 | list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu), |
| 3039 | loaded_vmcss_on_cpu_link) |
| 3040 | __loaded_vmcs_clear(v); |
Avi Kivity | 543e424 | 2008-05-13 16:22:47 +0300 | [diff] [blame] | 3041 | } |
| 3042 | |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3043 | |
| 3044 | /* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot() |
| 3045 | * tricks. |
| 3046 | */ |
| 3047 | static void kvm_cpu_vmxoff(void) |
| 3048 | { |
| 3049 | asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc"); |
Eduardo Habkost | 710ff4a | 2008-11-17 19:03:18 -0200 | [diff] [blame] | 3050 | } |
| 3051 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 3052 | static void hardware_disable(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3053 | { |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3054 | if (vmm_exclusive) { |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3055 | vmclear_local_loaded_vmcss(); |
Dongxiao Xu | 4610c9c | 2010-05-11 18:29:48 +0800 | [diff] [blame] | 3056 | kvm_cpu_vmxoff(); |
| 3057 | } |
Andy Lutomirski | 375074c | 2014-10-24 15:58:07 -0700 | [diff] [blame] | 3058 | cr4_clear_bits(X86_CR4_VMXE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3059 | } |
| 3060 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3061 | static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt, |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 3062 | u32 msr, u32 *result) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3063 | { |
| 3064 | u32 vmx_msr_low, vmx_msr_high; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3065 | u32 ctl = ctl_min | ctl_opt; |
| 3066 | |
| 3067 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3068 | |
| 3069 | ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */ |
| 3070 | ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */ |
| 3071 | |
| 3072 | /* Ensure minimum (required) set of control bits are supported. */ |
| 3073 | if (ctl_min & ~ctl) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3074 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3075 | |
| 3076 | *result = ctl; |
| 3077 | return 0; |
| 3078 | } |
| 3079 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3080 | static __init bool allow_1_setting(u32 msr, u32 ctl) |
| 3081 | { |
| 3082 | u32 vmx_msr_low, vmx_msr_high; |
| 3083 | |
| 3084 | rdmsr(msr, vmx_msr_low, vmx_msr_high); |
| 3085 | return vmx_msr_high & ctl; |
| 3086 | } |
| 3087 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3088 | static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf) |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3089 | { |
| 3090 | u32 vmx_msr_low, vmx_msr_high; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3091 | u32 min, opt, min2, opt2; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3092 | u32 _pin_based_exec_control = 0; |
| 3093 | u32 _cpu_based_exec_control = 0; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3094 | u32 _cpu_based_2nd_exec_control = 0; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3095 | u32 _vmexit_control = 0; |
| 3096 | u32 _vmentry_control = 0; |
| 3097 | |
Raghavendra K T | 1016674 | 2012-02-07 23:19:20 +0530 | [diff] [blame] | 3098 | min = CPU_BASED_HLT_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3099 | #ifdef CONFIG_X86_64 |
| 3100 | CPU_BASED_CR8_LOAD_EXITING | |
| 3101 | CPU_BASED_CR8_STORE_EXITING | |
| 3102 | #endif |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3103 | CPU_BASED_CR3_LOAD_EXITING | |
| 3104 | CPU_BASED_CR3_STORE_EXITING | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3105 | CPU_BASED_USE_IO_BITMAPS | |
| 3106 | CPU_BASED_MOV_DR_EXITING | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3107 | CPU_BASED_USE_TSC_OFFSETING | |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 3108 | CPU_BASED_MWAIT_EXITING | |
| 3109 | CPU_BASED_MONITOR_EXITING | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 3110 | CPU_BASED_INVLPG_EXITING | |
| 3111 | CPU_BASED_RDPMC_EXITING; |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 3112 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3113 | opt = CPU_BASED_TPR_SHADOW | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 3114 | CPU_BASED_USE_MSR_BITMAPS | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3115 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3116 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS, |
| 3117 | &_cpu_based_exec_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3118 | return -EIO; |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 3119 | #ifdef CONFIG_X86_64 |
| 3120 | if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3121 | _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING & |
| 3122 | ~CPU_BASED_CR8_STORE_EXITING; |
| 3123 | #endif |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3124 | if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) { |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3125 | min2 = 0; |
| 3126 | opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3127 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3128 | SECONDARY_EXEC_WBINVD_EXITING | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3129 | SECONDARY_EXEC_ENABLE_VPID | |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3130 | SECONDARY_EXEC_ENABLE_EPT | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 3131 | SECONDARY_EXEC_UNRESTRICTED_GUEST | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 3132 | SECONDARY_EXEC_PAUSE_LOOP_EXITING | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 3133 | SECONDARY_EXEC_RDTSCP | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3134 | SECONDARY_EXEC_ENABLE_INVPCID | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3135 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 3136 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3137 | SECONDARY_EXEC_SHADOW_VMCS | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 3138 | SECONDARY_EXEC_XSAVES | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 3139 | SECONDARY_EXEC_ENABLE_PML | |
| 3140 | SECONDARY_EXEC_PCOMMIT; |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3141 | if (adjust_vmx_controls(min2, opt2, |
| 3142 | MSR_IA32_VMX_PROCBASED_CTLS2, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3143 | &_cpu_based_2nd_exec_control) < 0) |
| 3144 | return -EIO; |
| 3145 | } |
| 3146 | #ifndef CONFIG_X86_64 |
| 3147 | if (!(_cpu_based_2nd_exec_control & |
| 3148 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 3149 | _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 3150 | #endif |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3151 | |
| 3152 | if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW)) |
| 3153 | _cpu_based_2nd_exec_control &= ~( |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 3154 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 3155 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 3156 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 3157 | |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3158 | if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3159 | /* CR3 accesses and invlpg don't need to cause VM Exits when EPT |
| 3160 | enabled */ |
Gleb Natapov | 5fff7d2 | 2009-08-27 18:41:30 +0300 | [diff] [blame] | 3161 | _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3162 | CPU_BASED_CR3_STORE_EXITING | |
| 3163 | CPU_BASED_INVLPG_EXITING); |
Sheng Yang | d56f546 | 2008-04-25 10:13:16 +0800 | [diff] [blame] | 3164 | rdmsr(MSR_IA32_VMX_EPT_VPID_CAP, |
| 3165 | vmx_capability.ept, vmx_capability.vpid); |
| 3166 | } |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3167 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 3168 | min = VM_EXIT_SAVE_DEBUG_CONTROLS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3169 | #ifdef CONFIG_X86_64 |
| 3170 | min |= VM_EXIT_HOST_ADDR_SPACE_SIZE; |
| 3171 | #endif |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 3172 | opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3173 | VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3174 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS, |
| 3175 | &_vmexit_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3176 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3177 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 3178 | min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING; |
| 3179 | opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR; |
| 3180 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS, |
| 3181 | &_pin_based_exec_control) < 0) |
| 3182 | return -EIO; |
| 3183 | |
| 3184 | if (!(_cpu_based_2nd_exec_control & |
| 3185 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) || |
| 3186 | !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT)) |
| 3187 | _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR; |
| 3188 | |
Paolo Bonzini | c845f9c | 2014-02-21 10:55:44 +0100 | [diff] [blame] | 3189 | min = VM_ENTRY_LOAD_DEBUG_CONTROLS; |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 3190 | opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3191 | if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS, |
| 3192 | &_vmentry_control) < 0) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3193 | return -EIO; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3194 | |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3195 | rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3196 | |
| 3197 | /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */ |
| 3198 | if ((vmx_msr_high & 0x1fff) > PAGE_SIZE) |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3199 | return -EIO; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3200 | |
| 3201 | #ifdef CONFIG_X86_64 |
| 3202 | /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */ |
| 3203 | if (vmx_msr_high & (1u<<16)) |
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 | #endif |
| 3206 | |
| 3207 | /* Require Write-Back (WB) memory type for VMCS accesses. */ |
| 3208 | if (((vmx_msr_high >> 18) & 15) != 6) |
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 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3211 | vmcs_conf->size = vmx_msr_high & 0x1fff; |
| 3212 | vmcs_conf->order = get_order(vmcs_config.size); |
| 3213 | vmcs_conf->revision_id = vmx_msr_low; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3214 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3215 | vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; |
| 3216 | vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 3217 | vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control; |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 3218 | vmcs_conf->vmexit_ctrl = _vmexit_control; |
| 3219 | vmcs_conf->vmentry_ctrl = _vmentry_control; |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3220 | |
Avi Kivity | 110312c | 2010-12-21 12:54:20 +0200 | [diff] [blame] | 3221 | cpu_has_load_ia32_efer = |
| 3222 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3223 | VM_ENTRY_LOAD_IA32_EFER) |
| 3224 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3225 | VM_EXIT_LOAD_IA32_EFER); |
| 3226 | |
Gleb Natapov | 8bf00a5 | 2011-10-05 14:01:22 +0200 | [diff] [blame] | 3227 | cpu_has_load_perf_global_ctrl = |
| 3228 | allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS, |
| 3229 | VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 3230 | && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS, |
| 3231 | VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL); |
| 3232 | |
| 3233 | /* |
| 3234 | * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL |
| 3235 | * but due to arrata below it can't be used. Workaround is to use |
| 3236 | * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL. |
| 3237 | * |
| 3238 | * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32] |
| 3239 | * |
| 3240 | * AAK155 (model 26) |
| 3241 | * AAP115 (model 30) |
| 3242 | * AAT100 (model 37) |
| 3243 | * BC86,AAY89,BD102 (model 44) |
| 3244 | * BA97 (model 46) |
| 3245 | * |
| 3246 | */ |
| 3247 | if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) { |
| 3248 | switch (boot_cpu_data.x86_model) { |
| 3249 | case 26: |
| 3250 | case 30: |
| 3251 | case 37: |
| 3252 | case 44: |
| 3253 | case 46: |
| 3254 | cpu_has_load_perf_global_ctrl = false; |
| 3255 | printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL " |
| 3256 | "does not work properly. Using workaround\n"); |
| 3257 | break; |
| 3258 | default: |
| 3259 | break; |
| 3260 | } |
| 3261 | } |
| 3262 | |
Wanpeng Li | 2030009 | 2014-12-02 19:14:59 +0800 | [diff] [blame] | 3263 | if (cpu_has_xsaves) |
| 3264 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 3265 | |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3266 | return 0; |
Nguyen Anh Quynh | c68876f | 2006-12-29 16:49:54 -0800 | [diff] [blame] | 3267 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3268 | |
| 3269 | static struct vmcs *alloc_vmcs_cpu(int cpu) |
| 3270 | { |
| 3271 | int node = cpu_to_node(cpu); |
| 3272 | struct page *pages; |
| 3273 | struct vmcs *vmcs; |
| 3274 | |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 3275 | pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3276 | if (!pages) |
| 3277 | return NULL; |
| 3278 | vmcs = page_address(pages); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3279 | memset(vmcs, 0, vmcs_config.size); |
| 3280 | vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3281 | return vmcs; |
| 3282 | } |
| 3283 | |
| 3284 | static struct vmcs *alloc_vmcs(void) |
| 3285 | { |
Ingo Molnar | d3b2c33 | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 3286 | return alloc_vmcs_cpu(raw_smp_processor_id()); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3287 | } |
| 3288 | |
| 3289 | static void free_vmcs(struct vmcs *vmcs) |
| 3290 | { |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 3291 | free_pages((unsigned long)vmcs, vmcs_config.order); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3292 | } |
| 3293 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 3294 | /* |
| 3295 | * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded |
| 3296 | */ |
| 3297 | static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs) |
| 3298 | { |
| 3299 | if (!loaded_vmcs->vmcs) |
| 3300 | return; |
| 3301 | loaded_vmcs_clear(loaded_vmcs); |
| 3302 | free_vmcs(loaded_vmcs->vmcs); |
| 3303 | loaded_vmcs->vmcs = NULL; |
| 3304 | } |
| 3305 | |
Sam Ravnborg | 3995958 | 2007-06-01 00:47:13 -0700 | [diff] [blame] | 3306 | static void free_kvm_area(void) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3307 | { |
| 3308 | int cpu; |
| 3309 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3310 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3311 | free_vmcs(per_cpu(vmxarea, cpu)); |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3312 | per_cpu(vmxarea, cpu) = NULL; |
| 3313 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3314 | } |
| 3315 | |
Bandan Das | fe2b201 | 2014-04-21 15:20:14 -0400 | [diff] [blame] | 3316 | static void init_vmcs_shadow_fields(void) |
| 3317 | { |
| 3318 | int i, j; |
| 3319 | |
| 3320 | /* No checks for read only fields yet */ |
| 3321 | |
| 3322 | for (i = j = 0; i < max_shadow_read_write_fields; i++) { |
| 3323 | switch (shadow_read_write_fields[i]) { |
| 3324 | case GUEST_BNDCFGS: |
| 3325 | if (!vmx_mpx_supported()) |
| 3326 | continue; |
| 3327 | break; |
| 3328 | default: |
| 3329 | break; |
| 3330 | } |
| 3331 | |
| 3332 | if (j < i) |
| 3333 | shadow_read_write_fields[j] = |
| 3334 | shadow_read_write_fields[i]; |
| 3335 | j++; |
| 3336 | } |
| 3337 | max_shadow_read_write_fields = j; |
| 3338 | |
| 3339 | /* shadowed fields guest access without vmexit */ |
| 3340 | for (i = 0; i < max_shadow_read_write_fields; i++) { |
| 3341 | clear_bit(shadow_read_write_fields[i], |
| 3342 | vmx_vmwrite_bitmap); |
| 3343 | clear_bit(shadow_read_write_fields[i], |
| 3344 | vmx_vmread_bitmap); |
| 3345 | } |
| 3346 | for (i = 0; i < max_shadow_read_only_fields; i++) |
| 3347 | clear_bit(shadow_read_only_fields[i], |
| 3348 | vmx_vmread_bitmap); |
| 3349 | } |
| 3350 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3351 | static __init int alloc_kvm_area(void) |
| 3352 | { |
| 3353 | int cpu; |
| 3354 | |
Zachary Amsden | 3230bb4 | 2009-09-29 11:38:37 -1000 | [diff] [blame] | 3355 | for_each_possible_cpu(cpu) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3356 | struct vmcs *vmcs; |
| 3357 | |
| 3358 | vmcs = alloc_vmcs_cpu(cpu); |
| 3359 | if (!vmcs) { |
| 3360 | free_kvm_area(); |
| 3361 | return -ENOMEM; |
| 3362 | } |
| 3363 | |
| 3364 | per_cpu(vmxarea, cpu) = vmcs; |
| 3365 | } |
| 3366 | return 0; |
| 3367 | } |
| 3368 | |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3369 | static bool emulation_required(struct kvm_vcpu *vcpu) |
| 3370 | { |
| 3371 | return emulate_invalid_guest_state && !guest_state_valid(vcpu); |
| 3372 | } |
| 3373 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3374 | static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg, |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3375 | struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3376 | { |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3377 | if (!emulate_invalid_guest_state) { |
| 3378 | /* |
| 3379 | * CS and SS RPL should be equal during guest entry according |
| 3380 | * to VMX spec, but in reality it is not always so. Since vcpu |
| 3381 | * is in the middle of the transition from real mode to |
| 3382 | * protected mode it is safe to assume that RPL 0 is a good |
| 3383 | * default value. |
| 3384 | */ |
| 3385 | if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS) |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3386 | save->selector &= ~SEGMENT_RPL_MASK; |
| 3387 | save->dpl = save->selector & SEGMENT_RPL_MASK; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3388 | save->s = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3389 | } |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3390 | vmx_set_segment(vcpu, save, seg); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3391 | } |
| 3392 | |
| 3393 | static void enter_pmode(struct kvm_vcpu *vcpu) |
| 3394 | { |
| 3395 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3396 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3397 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3398 | /* |
| 3399 | * Update real mode segment cache. It may be not up-to-date if sement |
| 3400 | * register was written while vcpu was in a guest mode. |
| 3401 | */ |
| 3402 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3403 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3404 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3405 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS); |
| 3406 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3407 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS); |
| 3408 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3409 | vmx->rmode.vm86_active = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3410 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3411 | vmx_segment_cache_clear(vmx); |
| 3412 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3413 | 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] | 3414 | |
| 3415 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3416 | flags &= RMODE_GUEST_OWNED_EFLAGS_BITS; |
| 3417 | flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3418 | vmcs_writel(GUEST_RFLAGS, flags); |
| 3419 | |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3420 | vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) | |
| 3421 | (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3422 | |
| 3423 | update_exception_bitmap(vcpu); |
| 3424 | |
Gleb Natapov | 91b0aa2 | 2013-01-21 15:36:47 +0200 | [diff] [blame] | 3425 | fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3426 | fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3427 | fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3428 | fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3429 | fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
| 3430 | 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] | 3431 | } |
| 3432 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3433 | static void fix_rmode_seg(int seg, struct kvm_segment *save) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3434 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3435 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3436 | struct kvm_segment var = *save; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3437 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3438 | var.dpl = 0x3; |
| 3439 | if (seg == VCPU_SREG_CS) |
| 3440 | var.type = 0x3; |
| 3441 | |
| 3442 | if (!emulate_invalid_guest_state) { |
| 3443 | var.selector = var.base >> 4; |
| 3444 | var.base = var.base & 0xffff0; |
| 3445 | var.limit = 0xffff; |
| 3446 | var.g = 0; |
| 3447 | var.db = 0; |
| 3448 | var.present = 1; |
| 3449 | var.s = 1; |
| 3450 | var.l = 0; |
| 3451 | var.unusable = 0; |
| 3452 | var.type = 0x3; |
| 3453 | var.avl = 0; |
| 3454 | if (save->base & 0xf) |
| 3455 | printk_once(KERN_WARNING "kvm: segment base is not " |
| 3456 | "paragraph aligned when entering " |
| 3457 | "protected mode (seg=%d)", seg); |
| 3458 | } |
| 3459 | |
| 3460 | vmcs_write16(sf->selector, var.selector); |
| 3461 | vmcs_write32(sf->base, var.base); |
| 3462 | vmcs_write32(sf->limit, var.limit); |
| 3463 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3464 | } |
| 3465 | |
| 3466 | static void enter_rmode(struct kvm_vcpu *vcpu) |
| 3467 | { |
| 3468 | unsigned long flags; |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3469 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3470 | |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3471 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR); |
| 3472 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES); |
| 3473 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS); |
| 3474 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS); |
| 3475 | 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] | 3476 | vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS); |
| 3477 | 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] | 3478 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3479 | vmx->rmode.vm86_active = 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3480 | |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3481 | /* |
| 3482 | * Very old userspace does not call KVM_SET_TSS_ADDR before entering |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3483 | * vcpu. Warn the user that an update is overdue. |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3484 | */ |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3485 | if (!vcpu->kvm->arch.tss_addr) |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3486 | printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be " |
| 3487 | "called before entering vcpu\n"); |
Gleb Natapov | 776e58e | 2011-03-13 12:34:27 +0200 | [diff] [blame] | 3488 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3489 | vmx_segment_cache_clear(vmx); |
| 3490 | |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 3491 | vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3492 | vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3493 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 3494 | |
| 3495 | flags = vmcs_readl(GUEST_RFLAGS); |
Avi Kivity | 78ac8b4 | 2010-04-08 18:19:35 +0300 | [diff] [blame] | 3496 | vmx->rmode.save_rflags = flags; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3497 | |
Glauber de Oliveira Costa | 053de04 | 2008-01-30 13:31:27 +0100 | [diff] [blame] | 3498 | flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3499 | |
| 3500 | vmcs_writel(GUEST_RFLAGS, flags); |
Rusty Russell | 66aee91 | 2007-07-17 23:34:16 +1000 | [diff] [blame] | 3501 | vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3502 | update_exception_bitmap(vcpu); |
| 3503 | |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3504 | fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]); |
| 3505 | fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]); |
| 3506 | fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]); |
| 3507 | fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]); |
| 3508 | fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]); |
| 3509 | fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]); |
Mohammed Gamal | a89a8fb | 2008-08-17 16:42:16 +0300 | [diff] [blame] | 3510 | |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 3511 | kvm_mmu_reset_context(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3512 | } |
| 3513 | |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3514 | static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 3515 | { |
| 3516 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 3517 | struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER); |
| 3518 | |
| 3519 | if (!msr) |
| 3520 | return; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3521 | |
Avi Kivity | 44ea2b1 | 2009-09-06 15:55:37 +0300 | [diff] [blame] | 3522 | /* |
| 3523 | * Force kernel_gs_base reloading before EFER changes, as control |
| 3524 | * of this msr depends on is_long_mode(). |
| 3525 | */ |
| 3526 | vmx_load_host_state(to_vmx(vcpu)); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3527 | vcpu->arch.efer = efer; |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3528 | if (efer & EFER_LMA) { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3529 | vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3530 | msr->data = efer; |
| 3531 | } else { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3532 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Amit Shah | 401d10d | 2009-02-20 22:53:37 +0530 | [diff] [blame] | 3533 | |
| 3534 | msr->data = efer & ~EFER_LME; |
| 3535 | } |
| 3536 | setup_msrs(vmx); |
| 3537 | } |
| 3538 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3539 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3540 | |
| 3541 | static void enter_lmode(struct kvm_vcpu *vcpu) |
| 3542 | { |
| 3543 | u32 guest_tr_ar; |
| 3544 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3545 | vmx_segment_cache_clear(to_vmx(vcpu)); |
| 3546 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3547 | guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3548 | 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] | 3549 | pr_debug_ratelimited("%s: tss fixup for long mode. \n", |
| 3550 | __func__); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3551 | vmcs_write32(GUEST_TR_AR_BYTES, |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3552 | (guest_tr_ar & ~VMX_AR_TYPE_MASK) |
| 3553 | | VMX_AR_TYPE_BUSY_64_TSS); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3554 | } |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3555 | vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3556 | } |
| 3557 | |
| 3558 | static void exit_lmode(struct kvm_vcpu *vcpu) |
| 3559 | { |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 3560 | vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE); |
Avi Kivity | da38f43 | 2010-07-06 11:30:49 +0300 | [diff] [blame] | 3561 | vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3562 | } |
| 3563 | |
| 3564 | #endif |
| 3565 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3566 | static void vmx_flush_tlb(struct kvm_vcpu *vcpu) |
| 3567 | { |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 3568 | vpid_sync_context(to_vmx(vcpu)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3569 | if (enable_ept) { |
| 3570 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3571 | return; |
Sheng Yang | 4e1096d | 2008-07-06 19:16:51 +0800 | [diff] [blame] | 3572 | ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa)); |
Xiao Guangrong | dd180b3 | 2010-07-03 16:02:42 +0800 | [diff] [blame] | 3573 | } |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3574 | } |
| 3575 | |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 3576 | static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu) |
| 3577 | { |
| 3578 | ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; |
| 3579 | |
| 3580 | vcpu->arch.cr0 &= ~cr0_guest_owned_bits; |
| 3581 | vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; |
| 3582 | } |
| 3583 | |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 3584 | static void vmx_decache_cr3(struct kvm_vcpu *vcpu) |
| 3585 | { |
| 3586 | if (enable_ept && is_paging(vcpu)) |
| 3587 | vcpu->arch.cr3 = vmcs_readl(GUEST_CR3); |
| 3588 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
| 3589 | } |
| 3590 | |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 3591 | static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu) |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3592 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3593 | ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits; |
| 3594 | |
| 3595 | vcpu->arch.cr4 &= ~cr4_guest_owned_bits; |
| 3596 | vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits; |
Avi Kivity | 399badf | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 3597 | } |
| 3598 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3599 | static void ept_load_pdptrs(struct kvm_vcpu *vcpu) |
| 3600 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3601 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3602 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3603 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 3604 | (unsigned long *)&vcpu->arch.regs_dirty)) |
| 3605 | return; |
| 3606 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3607 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3608 | vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]); |
| 3609 | vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]); |
| 3610 | vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]); |
| 3611 | vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3612 | } |
| 3613 | } |
| 3614 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3615 | static void ept_save_pdptrs(struct kvm_vcpu *vcpu) |
| 3616 | { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3617 | struct kvm_mmu *mmu = vcpu->arch.walk_mmu; |
| 3618 | |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3619 | if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) { |
Gleb Natapov | d0d538b | 2013-10-09 19:13:19 +0300 | [diff] [blame] | 3620 | mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0); |
| 3621 | mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1); |
| 3622 | mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2); |
| 3623 | mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3624 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3625 | |
| 3626 | __set_bit(VCPU_EXREG_PDPTR, |
| 3627 | (unsigned long *)&vcpu->arch.regs_avail); |
| 3628 | __set_bit(VCPU_EXREG_PDPTR, |
| 3629 | (unsigned long *)&vcpu->arch.regs_dirty); |
Avi Kivity | 8f5d549 | 2009-05-31 18:41:29 +0300 | [diff] [blame] | 3630 | } |
| 3631 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3632 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3633 | |
| 3634 | static void ept_update_paging_mode_cr0(unsigned long *hw_cr0, |
| 3635 | unsigned long cr0, |
| 3636 | struct kvm_vcpu *vcpu) |
| 3637 | { |
Marcelo Tosatti | 5233dd5 | 2011-06-06 14:27:47 -0300 | [diff] [blame] | 3638 | if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail)) |
| 3639 | vmx_decache_cr3(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3640 | if (!(cr0 & X86_CR0_PG)) { |
| 3641 | /* From paging/starting to nonpaging */ |
| 3642 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3643 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3644 | (CPU_BASED_CR3_LOAD_EXITING | |
| 3645 | CPU_BASED_CR3_STORE_EXITING)); |
| 3646 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3647 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3648 | } else if (!is_paging(vcpu)) { |
| 3649 | /* From nonpaging to paging */ |
| 3650 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, |
Sheng Yang | 65267ea | 2008-06-18 14:43:38 +0800 | [diff] [blame] | 3651 | vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) & |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3652 | ~(CPU_BASED_CR3_LOAD_EXITING | |
| 3653 | CPU_BASED_CR3_STORE_EXITING)); |
| 3654 | vcpu->arch.cr0 = cr0; |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3655 | vmx_set_cr4(vcpu, kvm_read_cr4(vcpu)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3656 | } |
Sheng Yang | 95eb84a | 2009-08-19 09:52:18 +0800 | [diff] [blame] | 3657 | |
| 3658 | if (!(cr0 & X86_CR0_WP)) |
| 3659 | *hw_cr0 &= ~X86_CR0_WP; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3660 | } |
| 3661 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3662 | static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
| 3663 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3664 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3665 | unsigned long hw_cr0; |
| 3666 | |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3667 | hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3668 | if (enable_unrestricted_guest) |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3669 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST; |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3670 | else { |
Gleb Natapov | 5037878 | 2013-02-04 16:00:28 +0200 | [diff] [blame] | 3671 | hw_cr0 |= KVM_VM_CR0_ALWAYS_ON; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3672 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3673 | if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE)) |
| 3674 | enter_pmode(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3675 | |
Gleb Natapov | 218e763 | 2013-01-21 15:36:45 +0200 | [diff] [blame] | 3676 | if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE)) |
| 3677 | enter_rmode(vcpu); |
| 3678 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3679 | |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 3680 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 3681 | if (vcpu->arch.efer & EFER_LME) { |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3682 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3683 | enter_lmode(vcpu); |
Rusty Russell | 707d92fa | 2007-07-17 23:19:08 +1000 | [diff] [blame] | 3684 | if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3685 | exit_lmode(vcpu); |
| 3686 | } |
| 3687 | #endif |
| 3688 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3689 | if (enable_ept) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3690 | ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu); |
| 3691 | |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3692 | if (!vcpu->fpu_active) |
Avi Kivity | 81231c6 | 2010-01-24 16:26:40 +0200 | [diff] [blame] | 3693 | hw_cr0 |= X86_CR0_TS | X86_CR0_MP; |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 3694 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3695 | vmcs_writel(CR0_READ_SHADOW, cr0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3696 | vmcs_writel(GUEST_CR0, hw_cr0); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3697 | vcpu->arch.cr0 = cr0; |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 3698 | |
| 3699 | /* depends on vcpu->arch.cr0 to be set to a new value */ |
| 3700 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3701 | } |
| 3702 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3703 | static u64 construct_eptp(unsigned long root_hpa) |
| 3704 | { |
| 3705 | u64 eptp; |
| 3706 | |
| 3707 | /* TODO write the value reading from MSR */ |
| 3708 | eptp = VMX_EPT_DEFAULT_MT | |
| 3709 | VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT; |
Xudong Hao | b38f993 | 2012-05-28 19:33:36 +0800 | [diff] [blame] | 3710 | if (enable_ept_ad_bits) |
| 3711 | eptp |= VMX_EPT_AD_ENABLE_BIT; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3712 | eptp |= (root_hpa & PAGE_MASK); |
| 3713 | |
| 3714 | return eptp; |
| 3715 | } |
| 3716 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3717 | static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
| 3718 | { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3719 | unsigned long guest_cr3; |
| 3720 | u64 eptp; |
| 3721 | |
| 3722 | guest_cr3 = cr3; |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 3723 | if (enable_ept) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3724 | eptp = construct_eptp(cr3); |
| 3725 | vmcs_write64(EPT_POINTER, eptp); |
Jan Kiszka | 59ab5a8 | 2013-08-08 16:26:29 +0200 | [diff] [blame] | 3726 | if (is_paging(vcpu) || is_guest_mode(vcpu)) |
| 3727 | guest_cr3 = kvm_read_cr3(vcpu); |
| 3728 | else |
| 3729 | guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr; |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 3730 | ept_load_pdptrs(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3731 | } |
| 3732 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 3733 | vmx_flush_tlb(vcpu); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3734 | vmcs_writel(GUEST_CR3, guest_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3735 | } |
| 3736 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3737 | static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3738 | { |
Ben Serebrin | 085e68e | 2015-04-16 11:58:05 -0700 | [diff] [blame] | 3739 | /* |
| 3740 | * Pass through host's Machine Check Enable value to hw_cr4, which |
| 3741 | * is in force while we are in guest mode. Do not let guests control |
| 3742 | * this bit, even if host CR4.MCE == 0. |
| 3743 | */ |
| 3744 | unsigned long hw_cr4 = |
| 3745 | (cr4_read_shadow() & X86_CR4_MCE) | |
| 3746 | (cr4 & ~X86_CR4_MCE) | |
| 3747 | (to_vmx(vcpu)->rmode.vm86_active ? |
| 3748 | KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3749 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3750 | if (cr4 & X86_CR4_VMXE) { |
| 3751 | /* |
| 3752 | * To use VMXON (and later other VMX instructions), a guest |
| 3753 | * must first be able to turn on cr4.VMXE (see handle_vmon()). |
| 3754 | * So basically the check on whether to allow nested VMX |
| 3755 | * is here. |
| 3756 | */ |
| 3757 | if (!nested_vmx_allowed(vcpu)) |
| 3758 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 3759 | } |
| 3760 | if (to_vmx(vcpu)->nested.vmxon && |
| 3761 | ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3762 | return 1; |
| 3763 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3764 | vcpu->arch.cr4 = cr4; |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3765 | if (enable_ept) { |
| 3766 | if (!is_paging(vcpu)) { |
| 3767 | hw_cr4 &= ~X86_CR4_PAE; |
| 3768 | hw_cr4 |= X86_CR4_PSE; |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3769 | /* |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3770 | * SMEP/SMAP is disabled if CPU is in non-paging mode |
| 3771 | * in hardware. However KVM always uses paging mode to |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3772 | * emulate guest non-paging mode with TDP. |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3773 | * To emulate this behavior, SMEP/SMAP needs to be |
| 3774 | * manually disabled when guest switches to non-paging |
| 3775 | * mode. |
Dongxiao Xu | c08800a | 2013-02-04 11:50:43 +0800 | [diff] [blame] | 3776 | */ |
Feng Wu | e1e746b | 2014-04-01 17:46:35 +0800 | [diff] [blame] | 3777 | hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP); |
Avi Kivity | bc23008 | 2009-12-08 12:14:42 +0200 | [diff] [blame] | 3778 | } else if (!(cr4 & X86_CR4_PAE)) { |
| 3779 | hw_cr4 &= ~X86_CR4_PAE; |
| 3780 | } |
| 3781 | } |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 3782 | |
| 3783 | vmcs_writel(CR4_READ_SHADOW, cr4); |
| 3784 | vmcs_writel(GUEST_CR4, hw_cr4); |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 3785 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3786 | } |
| 3787 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3788 | static void vmx_get_segment(struct kvm_vcpu *vcpu, |
| 3789 | struct kvm_segment *var, int seg) |
| 3790 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3791 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3792 | u32 ar; |
| 3793 | |
Gleb Natapov | c6ad1153 | 2012-12-12 19:10:51 +0200 | [diff] [blame] | 3794 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3795 | *var = vmx->rmode.segs[seg]; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3796 | if (seg == VCPU_SREG_TR |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3797 | || var->selector == vmx_read_guest_seg_selector(vmx, seg)) |
Avi Kivity | f5f7b2f | 2012-08-21 17:07:00 +0300 | [diff] [blame] | 3798 | return; |
Avi Kivity | 1390a28 | 2012-08-21 17:07:08 +0300 | [diff] [blame] | 3799 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3800 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3801 | return; |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3802 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3803 | var->base = vmx_read_guest_seg_base(vmx, seg); |
| 3804 | var->limit = vmx_read_guest_seg_limit(vmx, seg); |
| 3805 | var->selector = vmx_read_guest_seg_selector(vmx, seg); |
| 3806 | ar = vmx_read_guest_seg_ar(vmx, seg); |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3807 | var->unusable = (ar >> 16) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3808 | var->type = ar & 15; |
| 3809 | var->s = (ar >> 4) & 1; |
| 3810 | var->dpl = (ar >> 5) & 3; |
Gleb Natapov | 03617c1 | 2013-06-28 13:17:18 +0300 | [diff] [blame] | 3811 | /* |
| 3812 | * Some userspaces do not preserve unusable property. Since usable |
| 3813 | * segment has to be present according to VMX spec we can use present |
| 3814 | * property to amend userspace bug by making unusable segment always |
| 3815 | * nonpresent. vmx_segment_access_rights() already marks nonpresent |
| 3816 | * segment as unusable. |
| 3817 | */ |
| 3818 | var->present = !var->unusable; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3819 | var->avl = (ar >> 12) & 1; |
| 3820 | var->l = (ar >> 13) & 1; |
| 3821 | var->db = (ar >> 14) & 1; |
| 3822 | var->g = (ar >> 15) & 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3823 | } |
| 3824 | |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3825 | static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 3826 | { |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3827 | struct kvm_segment s; |
| 3828 | |
| 3829 | if (to_vmx(vcpu)->rmode.vm86_active) { |
| 3830 | vmx_get_segment(vcpu, &s, seg); |
| 3831 | return s.base; |
| 3832 | } |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3833 | return vmx_read_guest_seg_base(to_vmx(vcpu), seg); |
Avi Kivity | a917949 | 2011-01-03 14:28:52 +0200 | [diff] [blame] | 3834 | } |
| 3835 | |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3836 | static int vmx_get_cpl(struct kvm_vcpu *vcpu) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3837 | { |
Marcelo Tosatti | b09408d | 2013-01-07 19:27:06 -0200 | [diff] [blame] | 3838 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 3839 | |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3840 | if (unlikely(vmx->rmode.vm86_active)) |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 3841 | return 0; |
Paolo Bonzini | ae9fedc | 2014-05-14 09:39:49 +0200 | [diff] [blame] | 3842 | else { |
| 3843 | int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS); |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3844 | return VMX_AR_DPL(ar); |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3845 | } |
Avi Kivity | 69c7302 | 2011-03-07 15:26:44 +0200 | [diff] [blame] | 3846 | } |
| 3847 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3848 | static u32 vmx_segment_access_rights(struct kvm_segment *var) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3849 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3850 | u32 ar; |
| 3851 | |
Avi Kivity | f0495f9 | 2012-06-07 17:06:10 +0300 | [diff] [blame] | 3852 | if (var->unusable || !var->present) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3853 | ar = 1 << 16; |
| 3854 | else { |
| 3855 | ar = var->type & 15; |
| 3856 | ar |= (var->s & 1) << 4; |
| 3857 | ar |= (var->dpl & 3) << 5; |
| 3858 | ar |= (var->present & 1) << 7; |
| 3859 | ar |= (var->avl & 1) << 12; |
| 3860 | ar |= (var->l & 1) << 13; |
| 3861 | ar |= (var->db & 1) << 14; |
| 3862 | ar |= (var->g & 1) << 15; |
| 3863 | } |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3864 | |
| 3865 | return ar; |
| 3866 | } |
| 3867 | |
| 3868 | static void vmx_set_segment(struct kvm_vcpu *vcpu, |
| 3869 | struct kvm_segment *var, int seg) |
| 3870 | { |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 3871 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 3872 | const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg]; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3873 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3874 | vmx_segment_cache_clear(vmx); |
| 3875 | |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3876 | if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) { |
| 3877 | vmx->rmode.segs[seg] = *var; |
| 3878 | if (seg == VCPU_SREG_TR) |
| 3879 | vmcs_write16(sf->selector, var->selector); |
| 3880 | else if (var->s) |
| 3881 | fix_rmode_seg(seg, &vmx->rmode.segs[seg]); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3882 | goto out; |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3883 | } |
Gleb Natapov | 1ecd50a | 2012-12-12 19:10:54 +0200 | [diff] [blame] | 3884 | |
Avi Kivity | 653e310 | 2007-05-07 10:55:37 +0300 | [diff] [blame] | 3885 | vmcs_writel(sf->base, var->base); |
| 3886 | vmcs_write32(sf->limit, var->limit); |
| 3887 | vmcs_write16(sf->selector, var->selector); |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3888 | |
| 3889 | /* |
| 3890 | * Fix the "Accessed" bit in AR field of segment registers for older |
| 3891 | * qemu binaries. |
| 3892 | * IA32 arch specifies that at the time of processor reset the |
| 3893 | * "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] | 3894 | * 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] | 3895 | * state vmexit when "unrestricted guest" mode is turned on. |
| 3896 | * Fix for this setup issue in cpu_reset is being pushed in the qemu |
| 3897 | * tree. Newer qemu binaries with that qemu fix would not need this |
| 3898 | * kvm hack. |
| 3899 | */ |
| 3900 | if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR)) |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3901 | var->type |= 0x1; /* Accessed */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 3902 | |
Gleb Natapov | f924d66 | 2012-12-12 19:10:55 +0200 | [diff] [blame] | 3903 | vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var)); |
Gleb Natapov | d99e415 | 2012-12-20 16:57:45 +0200 | [diff] [blame] | 3904 | |
| 3905 | out: |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 3906 | vmx->emulation_required = emulation_required(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3907 | } |
| 3908 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3909 | static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 3910 | { |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 3911 | 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] | 3912 | |
| 3913 | *db = (ar >> 14) & 1; |
| 3914 | *l = (ar >> 13) & 1; |
| 3915 | } |
| 3916 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3917 | 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] | 3918 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3919 | dt->size = vmcs_read32(GUEST_IDTR_LIMIT); |
| 3920 | dt->address = vmcs_readl(GUEST_IDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3921 | } |
| 3922 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3923 | 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] | 3924 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3925 | vmcs_write32(GUEST_IDTR_LIMIT, dt->size); |
| 3926 | vmcs_writel(GUEST_IDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3927 | } |
| 3928 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3929 | 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] | 3930 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3931 | dt->size = vmcs_read32(GUEST_GDTR_LIMIT); |
| 3932 | dt->address = vmcs_readl(GUEST_GDTR_BASE); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3933 | } |
| 3934 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3935 | 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] | 3936 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 3937 | vmcs_write32(GUEST_GDTR_LIMIT, dt->size); |
| 3938 | vmcs_writel(GUEST_GDTR_BASE, dt->address); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3939 | } |
| 3940 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3941 | static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 3942 | { |
| 3943 | struct kvm_segment var; |
| 3944 | u32 ar; |
| 3945 | |
| 3946 | vmx_get_segment(vcpu, &var, seg); |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3947 | var.dpl = 0x3; |
Gleb Natapov | 0647f4a | 2012-12-12 19:10:50 +0200 | [diff] [blame] | 3948 | if (seg == VCPU_SREG_CS) |
| 3949 | var.type = 0x3; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3950 | ar = vmx_segment_access_rights(&var); |
| 3951 | |
| 3952 | if (var.base != (var.selector << 4)) |
| 3953 | return false; |
Gleb Natapov | 89efbed | 2012-12-20 16:57:44 +0200 | [diff] [blame] | 3954 | if (var.limit != 0xffff) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3955 | return false; |
Gleb Natapov | 07f42f5 | 2012-12-12 19:10:49 +0200 | [diff] [blame] | 3956 | if (ar != 0xf3) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3957 | return false; |
| 3958 | |
| 3959 | return true; |
| 3960 | } |
| 3961 | |
| 3962 | static bool code_segment_valid(struct kvm_vcpu *vcpu) |
| 3963 | { |
| 3964 | struct kvm_segment cs; |
| 3965 | unsigned int cs_rpl; |
| 3966 | |
| 3967 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3968 | cs_rpl = cs.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3969 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3970 | if (cs.unusable) |
| 3971 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3972 | 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] | 3973 | return false; |
| 3974 | if (!cs.s) |
| 3975 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 3976 | if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3977 | if (cs.dpl > cs_rpl) |
| 3978 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3979 | } else { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3980 | if (cs.dpl != cs_rpl) |
| 3981 | return false; |
| 3982 | } |
| 3983 | if (!cs.present) |
| 3984 | return false; |
| 3985 | |
| 3986 | /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */ |
| 3987 | return true; |
| 3988 | } |
| 3989 | |
| 3990 | static bool stack_segment_valid(struct kvm_vcpu *vcpu) |
| 3991 | { |
| 3992 | struct kvm_segment ss; |
| 3993 | unsigned int ss_rpl; |
| 3994 | |
| 3995 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 3996 | ss_rpl = ss.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 3997 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 3998 | if (ss.unusable) |
| 3999 | return true; |
| 4000 | if (ss.type != 3 && ss.type != 7) |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4001 | return false; |
| 4002 | if (!ss.s) |
| 4003 | return false; |
| 4004 | if (ss.dpl != ss_rpl) /* DPL != RPL */ |
| 4005 | return false; |
| 4006 | if (!ss.present) |
| 4007 | return false; |
| 4008 | |
| 4009 | return true; |
| 4010 | } |
| 4011 | |
| 4012 | static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg) |
| 4013 | { |
| 4014 | struct kvm_segment var; |
| 4015 | unsigned int rpl; |
| 4016 | |
| 4017 | vmx_get_segment(vcpu, &var, seg); |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4018 | rpl = var.selector & SEGMENT_RPL_MASK; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4019 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4020 | if (var.unusable) |
| 4021 | return true; |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4022 | if (!var.s) |
| 4023 | return false; |
| 4024 | if (!var.present) |
| 4025 | return false; |
Andy Lutomirski | 4d283ec | 2015-08-13 13:18:48 -0700 | [diff] [blame] | 4026 | 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] | 4027 | if (var.dpl < rpl) /* DPL < RPL */ |
| 4028 | return false; |
| 4029 | } |
| 4030 | |
| 4031 | /* TODO: Add other members to kvm_segment_field to allow checking for other access |
| 4032 | * rights flags |
| 4033 | */ |
| 4034 | return true; |
| 4035 | } |
| 4036 | |
| 4037 | static bool tr_valid(struct kvm_vcpu *vcpu) |
| 4038 | { |
| 4039 | struct kvm_segment tr; |
| 4040 | |
| 4041 | vmx_get_segment(vcpu, &tr, VCPU_SREG_TR); |
| 4042 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4043 | if (tr.unusable) |
| 4044 | return false; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4045 | if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4046 | return false; |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4047 | 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] | 4048 | return false; |
| 4049 | if (!tr.present) |
| 4050 | return false; |
| 4051 | |
| 4052 | return true; |
| 4053 | } |
| 4054 | |
| 4055 | static bool ldtr_valid(struct kvm_vcpu *vcpu) |
| 4056 | { |
| 4057 | struct kvm_segment ldtr; |
| 4058 | |
| 4059 | vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR); |
| 4060 | |
Avi Kivity | 1872a3f | 2009-01-04 23:26:52 +0200 | [diff] [blame] | 4061 | if (ldtr.unusable) |
| 4062 | return true; |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4063 | if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */ |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4064 | return false; |
| 4065 | if (ldtr.type != 2) |
| 4066 | return false; |
| 4067 | if (!ldtr.present) |
| 4068 | return false; |
| 4069 | |
| 4070 | return true; |
| 4071 | } |
| 4072 | |
| 4073 | static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu) |
| 4074 | { |
| 4075 | struct kvm_segment cs, ss; |
| 4076 | |
| 4077 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 4078 | vmx_get_segment(vcpu, &ss, VCPU_SREG_SS); |
| 4079 | |
Nadav Amit | b32a991 | 2015-03-29 16:33:04 +0300 | [diff] [blame] | 4080 | return ((cs.selector & SEGMENT_RPL_MASK) == |
| 4081 | (ss.selector & SEGMENT_RPL_MASK)); |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4082 | } |
| 4083 | |
| 4084 | /* |
| 4085 | * Check if guest state is valid. Returns true if valid, false if |
| 4086 | * not. |
| 4087 | * We assume that registers are always usable |
| 4088 | */ |
| 4089 | static bool guest_state_valid(struct kvm_vcpu *vcpu) |
| 4090 | { |
Gleb Natapov | c5e97c8 | 2013-01-21 15:36:43 +0200 | [diff] [blame] | 4091 | if (enable_unrestricted_guest) |
| 4092 | return true; |
| 4093 | |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4094 | /* real mode guest state checks */ |
Gleb Natapov | f13882d | 2013-04-14 16:07:37 +0300 | [diff] [blame] | 4095 | if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
Mohammed Gamal | 648dfaa | 2008-08-17 16:38:32 +0300 | [diff] [blame] | 4096 | if (!rmode_segment_valid(vcpu, VCPU_SREG_CS)) |
| 4097 | return false; |
| 4098 | if (!rmode_segment_valid(vcpu, VCPU_SREG_SS)) |
| 4099 | return false; |
| 4100 | if (!rmode_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4101 | return false; |
| 4102 | if (!rmode_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4103 | return false; |
| 4104 | if (!rmode_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4105 | return false; |
| 4106 | if (!rmode_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4107 | return false; |
| 4108 | } else { |
| 4109 | /* protected mode guest state checks */ |
| 4110 | if (!cs_ss_rpl_check(vcpu)) |
| 4111 | return false; |
| 4112 | if (!code_segment_valid(vcpu)) |
| 4113 | return false; |
| 4114 | if (!stack_segment_valid(vcpu)) |
| 4115 | return false; |
| 4116 | if (!data_segment_valid(vcpu, VCPU_SREG_DS)) |
| 4117 | return false; |
| 4118 | if (!data_segment_valid(vcpu, VCPU_SREG_ES)) |
| 4119 | return false; |
| 4120 | if (!data_segment_valid(vcpu, VCPU_SREG_FS)) |
| 4121 | return false; |
| 4122 | if (!data_segment_valid(vcpu, VCPU_SREG_GS)) |
| 4123 | return false; |
| 4124 | if (!tr_valid(vcpu)) |
| 4125 | return false; |
| 4126 | if (!ldtr_valid(vcpu)) |
| 4127 | return false; |
| 4128 | } |
| 4129 | /* TODO: |
| 4130 | * - Add checks on RIP |
| 4131 | * - Add checks on RFLAGS |
| 4132 | */ |
| 4133 | |
| 4134 | return true; |
| 4135 | } |
| 4136 | |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 4137 | static int init_rmode_tss(struct kvm *kvm) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4138 | { |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4139 | gfn_t fn; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4140 | u16 data = 0; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4141 | int idx, r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4142 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4143 | idx = srcu_read_lock(&kvm->srcu); |
Jan Kiszka | 4918c6c | 2013-03-15 08:38:56 +0100 | [diff] [blame] | 4144 | fn = kvm->arch.tss_addr >> PAGE_SHIFT; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4145 | r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE); |
| 4146 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4147 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4148 | data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE; |
Sheng Yang | 464d17c | 2008-08-13 14:10:33 +0800 | [diff] [blame] | 4149 | r = kvm_write_guest_page(kvm, fn++, &data, |
| 4150 | TSS_IOPB_BASE_OFFSET, sizeof(u16)); |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4151 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4152 | goto out; |
Izik Eidus | 195aefd | 2007-10-01 22:14:18 +0200 | [diff] [blame] | 4153 | r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE); |
| 4154 | if (r < 0) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4155 | goto out; |
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 = ~0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4160 | r = kvm_write_guest_page(kvm, fn, &data, |
| 4161 | RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1, |
| 4162 | sizeof(u8)); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4163 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4164 | srcu_read_unlock(&kvm->srcu, idx); |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 4165 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4166 | } |
| 4167 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4168 | static int init_rmode_identity_map(struct kvm *kvm) |
| 4169 | { |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4170 | int i, idx, r = 0; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4171 | pfn_t identity_map_pfn; |
| 4172 | u32 tmp; |
| 4173 | |
Avi Kivity | 089d034 | 2009-03-23 18:26:32 +0200 | [diff] [blame] | 4174 | if (!enable_ept) |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4175 | return 0; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4176 | |
| 4177 | /* Protect kvm->arch.ept_identity_pagetable_done. */ |
| 4178 | mutex_lock(&kvm->slots_lock); |
| 4179 | |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4180 | if (likely(kvm->arch.ept_identity_pagetable_done)) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4181 | goto out2; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4182 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4183 | identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT; |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4184 | |
| 4185 | r = alloc_identity_pagetable(kvm); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4186 | if (r < 0) |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4187 | goto out2; |
| 4188 | |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4189 | idx = srcu_read_lock(&kvm->srcu); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4190 | r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE); |
| 4191 | if (r < 0) |
| 4192 | goto out; |
| 4193 | /* Set up identity-mapping pagetable for EPT in real mode */ |
| 4194 | for (i = 0; i < PT32_ENT_PER_PAGE; i++) { |
| 4195 | tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | |
| 4196 | _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE); |
| 4197 | r = kvm_write_guest_page(kvm, identity_map_pfn, |
| 4198 | &tmp, i * sizeof(tmp), sizeof(tmp)); |
| 4199 | if (r < 0) |
| 4200 | goto out; |
| 4201 | } |
| 4202 | kvm->arch.ept_identity_pagetable_done = true; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4203 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4204 | out: |
Xiao Guangrong | 40dcaa9 | 2011-03-09 15:41:04 +0800 | [diff] [blame] | 4205 | srcu_read_unlock(&kvm->srcu, idx); |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4206 | |
| 4207 | out2: |
| 4208 | mutex_unlock(&kvm->slots_lock); |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 4209 | return r; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4210 | } |
| 4211 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4212 | static void seg_setup(int seg) |
| 4213 | { |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 4214 | 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] | 4215 | unsigned int ar; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4216 | |
| 4217 | vmcs_write16(sf->selector, 0); |
| 4218 | vmcs_writel(sf->base, 0); |
| 4219 | vmcs_write32(sf->limit, 0xffff); |
Gleb Natapov | d54d07b | 2012-12-20 16:57:46 +0200 | [diff] [blame] | 4220 | ar = 0x93; |
| 4221 | if (seg == VCPU_SREG_CS) |
| 4222 | ar |= 0x08; /* code segment */ |
Nitin A Kamble | 3a624e2 | 2009-06-08 11:34:16 -0700 | [diff] [blame] | 4223 | |
| 4224 | vmcs_write32(sf->ar_bytes, ar); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4225 | } |
| 4226 | |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4227 | static int alloc_apic_access_page(struct kvm *kvm) |
| 4228 | { |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4229 | struct page *page; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4230 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 4231 | int r = 0; |
| 4232 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4233 | mutex_lock(&kvm->slots_lock); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4234 | if (kvm->arch.apic_access_page_done) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4235 | goto out; |
| 4236 | kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT; |
| 4237 | kvm_userspace_mem.flags = 0; |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4238 | kvm_userspace_mem.guest_phys_addr = APIC_DEFAULT_PHYS_BASE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4239 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4240 | r = __x86_set_memory_region(kvm, &kvm_userspace_mem); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4241 | if (r) |
| 4242 | goto out; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4243 | |
Tang Chen | 73a6d94 | 2014-09-11 13:38:00 +0800 | [diff] [blame] | 4244 | page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Xiao Guangrong | 4484141 | 2012-09-07 14:14:20 +0800 | [diff] [blame] | 4245 | if (is_error_page(page)) { |
| 4246 | r = -EFAULT; |
| 4247 | goto out; |
| 4248 | } |
| 4249 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 4250 | /* |
| 4251 | * Do not pin the page in memory, so that memory hot-unplug |
| 4252 | * is able to migrate it. |
| 4253 | */ |
| 4254 | put_page(page); |
| 4255 | kvm->arch.apic_access_page_done = true; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4256 | out: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4257 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4258 | return r; |
| 4259 | } |
| 4260 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4261 | static int alloc_identity_pagetable(struct kvm *kvm) |
| 4262 | { |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4263 | /* Called with kvm->slots_lock held. */ |
| 4264 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4265 | struct kvm_userspace_memory_region kvm_userspace_mem; |
| 4266 | int r = 0; |
| 4267 | |
Tang Chen | a255d47 | 2014-09-16 18:41:58 +0800 | [diff] [blame] | 4268 | BUG_ON(kvm->arch.ept_identity_pagetable_done); |
| 4269 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4270 | kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT; |
| 4271 | kvm_userspace_mem.flags = 0; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4272 | kvm_userspace_mem.guest_phys_addr = |
| 4273 | kvm->arch.ept_identity_map_addr; |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4274 | kvm_userspace_mem.memory_size = PAGE_SIZE; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4275 | r = __x86_set_memory_region(kvm, &kvm_userspace_mem); |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4276 | |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 4277 | return r; |
| 4278 | } |
| 4279 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4280 | static void allocate_vpid(struct vcpu_vmx *vmx) |
| 4281 | { |
| 4282 | int vpid; |
| 4283 | |
| 4284 | vmx->vpid = 0; |
Avi Kivity | 919818a | 2009-03-23 18:01:29 +0200 | [diff] [blame] | 4285 | if (!enable_vpid) |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4286 | return; |
| 4287 | spin_lock(&vmx_vpid_lock); |
| 4288 | vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS); |
| 4289 | if (vpid < VMX_NR_VPIDS) { |
| 4290 | vmx->vpid = vpid; |
| 4291 | __set_bit(vpid, vmx_vpid_bitmap); |
| 4292 | } |
| 4293 | spin_unlock(&vmx_vpid_lock); |
| 4294 | } |
| 4295 | |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 4296 | static void free_vpid(struct vcpu_vmx *vmx) |
| 4297 | { |
| 4298 | if (!enable_vpid) |
| 4299 | return; |
| 4300 | spin_lock(&vmx_vpid_lock); |
| 4301 | if (vmx->vpid != 0) |
| 4302 | __clear_bit(vmx->vpid, vmx_vpid_bitmap); |
| 4303 | spin_unlock(&vmx_vpid_lock); |
| 4304 | } |
| 4305 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4306 | #define MSR_TYPE_R 1 |
| 4307 | #define MSR_TYPE_W 2 |
| 4308 | static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4309 | u32 msr, int type) |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4310 | { |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4311 | int f = sizeof(unsigned long); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4312 | |
| 4313 | if (!cpu_has_vmx_msr_bitmap()) |
| 4314 | return; |
| 4315 | |
| 4316 | /* |
| 4317 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4318 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4319 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4320 | */ |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4321 | if (msr <= 0x1fff) { |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4322 | if (type & MSR_TYPE_R) |
| 4323 | /* read-low */ |
| 4324 | __clear_bit(msr, msr_bitmap + 0x000 / f); |
| 4325 | |
| 4326 | if (type & MSR_TYPE_W) |
| 4327 | /* write-low */ |
| 4328 | __clear_bit(msr, msr_bitmap + 0x800 / f); |
| 4329 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4330 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4331 | msr &= 0x1fff; |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4332 | if (type & MSR_TYPE_R) |
| 4333 | /* read-high */ |
| 4334 | __clear_bit(msr, msr_bitmap + 0x400 / f); |
| 4335 | |
| 4336 | if (type & MSR_TYPE_W) |
| 4337 | /* write-high */ |
| 4338 | __clear_bit(msr, msr_bitmap + 0xc00 / f); |
| 4339 | |
| 4340 | } |
| 4341 | } |
| 4342 | |
| 4343 | static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap, |
| 4344 | u32 msr, int type) |
| 4345 | { |
| 4346 | int f = sizeof(unsigned long); |
| 4347 | |
| 4348 | if (!cpu_has_vmx_msr_bitmap()) |
| 4349 | return; |
| 4350 | |
| 4351 | /* |
| 4352 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4353 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4354 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4355 | */ |
| 4356 | if (msr <= 0x1fff) { |
| 4357 | if (type & MSR_TYPE_R) |
| 4358 | /* read-low */ |
| 4359 | __set_bit(msr, msr_bitmap + 0x000 / f); |
| 4360 | |
| 4361 | if (type & MSR_TYPE_W) |
| 4362 | /* write-low */ |
| 4363 | __set_bit(msr, msr_bitmap + 0x800 / f); |
| 4364 | |
| 4365 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4366 | msr &= 0x1fff; |
| 4367 | if (type & MSR_TYPE_R) |
| 4368 | /* read-high */ |
| 4369 | __set_bit(msr, msr_bitmap + 0x400 / f); |
| 4370 | |
| 4371 | if (type & MSR_TYPE_W) |
| 4372 | /* write-high */ |
| 4373 | __set_bit(msr, msr_bitmap + 0xc00 / f); |
| 4374 | |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4375 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4376 | } |
| 4377 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 4378 | /* |
| 4379 | * If a msr is allowed by L0, we should check whether it is allowed by L1. |
| 4380 | * The corresponding bit will be cleared unless both of L0 and L1 allow it. |
| 4381 | */ |
| 4382 | static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1, |
| 4383 | unsigned long *msr_bitmap_nested, |
| 4384 | u32 msr, int type) |
| 4385 | { |
| 4386 | int f = sizeof(unsigned long); |
| 4387 | |
| 4388 | if (!cpu_has_vmx_msr_bitmap()) { |
| 4389 | WARN_ON(1); |
| 4390 | return; |
| 4391 | } |
| 4392 | |
| 4393 | /* |
| 4394 | * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals |
| 4395 | * have the write-low and read-high bitmap offsets the wrong way round. |
| 4396 | * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff. |
| 4397 | */ |
| 4398 | if (msr <= 0x1fff) { |
| 4399 | if (type & MSR_TYPE_R && |
| 4400 | !test_bit(msr, msr_bitmap_l1 + 0x000 / f)) |
| 4401 | /* read-low */ |
| 4402 | __clear_bit(msr, msr_bitmap_nested + 0x000 / f); |
| 4403 | |
| 4404 | if (type & MSR_TYPE_W && |
| 4405 | !test_bit(msr, msr_bitmap_l1 + 0x800 / f)) |
| 4406 | /* write-low */ |
| 4407 | __clear_bit(msr, msr_bitmap_nested + 0x800 / f); |
| 4408 | |
| 4409 | } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) { |
| 4410 | msr &= 0x1fff; |
| 4411 | if (type & MSR_TYPE_R && |
| 4412 | !test_bit(msr, msr_bitmap_l1 + 0x400 / f)) |
| 4413 | /* read-high */ |
| 4414 | __clear_bit(msr, msr_bitmap_nested + 0x400 / f); |
| 4415 | |
| 4416 | if (type & MSR_TYPE_W && |
| 4417 | !test_bit(msr, msr_bitmap_l1 + 0xc00 / f)) |
| 4418 | /* write-high */ |
| 4419 | __clear_bit(msr, msr_bitmap_nested + 0xc00 / f); |
| 4420 | |
| 4421 | } |
| 4422 | } |
| 4423 | |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4424 | static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only) |
| 4425 | { |
| 4426 | if (!longmode_only) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4427 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy, |
| 4428 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4429 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode, |
| 4430 | msr, MSR_TYPE_R | MSR_TYPE_W); |
| 4431 | } |
| 4432 | |
| 4433 | static void vmx_enable_intercept_msr_read_x2apic(u32 msr) |
| 4434 | { |
| 4435 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4436 | msr, MSR_TYPE_R); |
| 4437 | __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4438 | msr, MSR_TYPE_R); |
| 4439 | } |
| 4440 | |
| 4441 | static void vmx_disable_intercept_msr_read_x2apic(u32 msr) |
| 4442 | { |
| 4443 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4444 | msr, MSR_TYPE_R); |
| 4445 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4446 | msr, MSR_TYPE_R); |
| 4447 | } |
| 4448 | |
| 4449 | static void vmx_disable_intercept_msr_write_x2apic(u32 msr) |
| 4450 | { |
| 4451 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic, |
| 4452 | msr, MSR_TYPE_W); |
| 4453 | __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic, |
| 4454 | msr, MSR_TYPE_W); |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4455 | } |
| 4456 | |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4457 | static int vmx_cpu_uses_apicv(struct kvm_vcpu *vcpu) |
| 4458 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4459 | return enable_apicv && lapic_in_kernel(vcpu); |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 4460 | } |
| 4461 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4462 | static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4463 | { |
| 4464 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4465 | int max_irr; |
| 4466 | void *vapic_page; |
| 4467 | u16 status; |
| 4468 | |
| 4469 | if (vmx->nested.pi_desc && |
| 4470 | vmx->nested.pi_pending) { |
| 4471 | vmx->nested.pi_pending = false; |
| 4472 | if (!pi_test_and_clear_on(vmx->nested.pi_desc)) |
| 4473 | return 0; |
| 4474 | |
| 4475 | max_irr = find_last_bit( |
| 4476 | (unsigned long *)vmx->nested.pi_desc->pir, 256); |
| 4477 | |
| 4478 | if (max_irr == 256) |
| 4479 | return 0; |
| 4480 | |
| 4481 | vapic_page = kmap(vmx->nested.virtual_apic_page); |
| 4482 | if (!vapic_page) { |
| 4483 | WARN_ON(1); |
| 4484 | return -ENOMEM; |
| 4485 | } |
| 4486 | __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page); |
| 4487 | kunmap(vmx->nested.virtual_apic_page); |
| 4488 | |
| 4489 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 4490 | if ((u8)max_irr > ((u8)status & 0xff)) { |
| 4491 | status &= ~0xff; |
| 4492 | status |= (u8)max_irr; |
| 4493 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 4494 | } |
| 4495 | } |
| 4496 | return 0; |
| 4497 | } |
| 4498 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4499 | static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu) |
| 4500 | { |
| 4501 | #ifdef CONFIG_SMP |
| 4502 | if (vcpu->mode == IN_GUEST_MODE) { |
Feng Wu | 28b835d | 2015-09-18 22:29:54 +0800 | [diff] [blame] | 4503 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4504 | |
| 4505 | /* |
| 4506 | * Currently, we don't support urgent interrupt, |
| 4507 | * all interrupts are recognized as non-urgent |
| 4508 | * interrupt, so we cannot post interrupts when |
| 4509 | * 'SN' is set. |
| 4510 | * |
| 4511 | * If the vcpu is in guest mode, it means it is |
| 4512 | * running instead of being scheduled out and |
| 4513 | * waiting in the run queue, and that's the only |
| 4514 | * case when 'SN' is set currently, warning if |
| 4515 | * 'SN' is set. |
| 4516 | */ |
| 4517 | WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc)); |
| 4518 | |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4519 | apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), |
| 4520 | POSTED_INTR_VECTOR); |
| 4521 | return true; |
| 4522 | } |
| 4523 | #endif |
| 4524 | return false; |
| 4525 | } |
| 4526 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4527 | static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu, |
| 4528 | int vector) |
| 4529 | { |
| 4530 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4531 | |
| 4532 | if (is_guest_mode(vcpu) && |
| 4533 | vector == vmx->nested.posted_intr_nv) { |
| 4534 | /* the PIR and ON have been set by L1. */ |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4535 | kvm_vcpu_trigger_posted_interrupt(vcpu); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4536 | /* |
| 4537 | * If a posted intr is not recognized by hardware, |
| 4538 | * we will accomplish it in the next vmentry. |
| 4539 | */ |
| 4540 | vmx->nested.pi_pending = true; |
| 4541 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 4542 | return 0; |
| 4543 | } |
| 4544 | return -1; |
| 4545 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4546 | /* |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4547 | * Send interrupt to vcpu via posted interrupt way. |
| 4548 | * 1. If target vcpu is running(non-root mode), send posted interrupt |
| 4549 | * notification to vcpu and hardware will sync PIR to vIRR atomically. |
| 4550 | * 2. If target vcpu isn't running(root mode), kick it to pick up the |
| 4551 | * interrupt from PIR in next vmentry. |
| 4552 | */ |
| 4553 | static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector) |
| 4554 | { |
| 4555 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4556 | int r; |
| 4557 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 4558 | r = vmx_deliver_nested_posted_interrupt(vcpu, vector); |
| 4559 | if (!r) |
| 4560 | return; |
| 4561 | |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4562 | if (pi_test_and_set_pir(vector, &vmx->pi_desc)) |
| 4563 | return; |
| 4564 | |
| 4565 | r = pi_test_and_set_on(&vmx->pi_desc); |
| 4566 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Radim Krčmář | 21bc8dc | 2015-02-16 15:36:33 +0100 | [diff] [blame] | 4567 | if (r || !kvm_vcpu_trigger_posted_interrupt(vcpu)) |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 4568 | kvm_vcpu_kick(vcpu); |
| 4569 | } |
| 4570 | |
| 4571 | static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu) |
| 4572 | { |
| 4573 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 4574 | |
| 4575 | if (!pi_test_and_clear_on(&vmx->pi_desc)) |
| 4576 | return; |
| 4577 | |
| 4578 | kvm_apic_update_irr(vcpu, vmx->pi_desc.pir); |
| 4579 | } |
| 4580 | |
| 4581 | static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu) |
| 4582 | { |
| 4583 | return; |
| 4584 | } |
| 4585 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4586 | /* |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4587 | * Set up the vmcs's constant host-state fields, i.e., host-state fields that |
| 4588 | * will not change in the lifetime of the guest. |
| 4589 | * Note that host-state that does change is set elsewhere. E.g., host-state |
| 4590 | * that is set differently for each CPU is set in vmx_vcpu_load(), not here. |
| 4591 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4592 | static void vmx_set_constant_host_state(struct vcpu_vmx *vmx) |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4593 | { |
| 4594 | u32 low32, high32; |
| 4595 | unsigned long tmpl; |
| 4596 | struct desc_ptr dt; |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4597 | unsigned long cr4; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4598 | |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 4599 | 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] | 4600 | vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */ |
| 4601 | |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4602 | /* 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] | 4603 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 4604 | vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */ |
| 4605 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 4606 | |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4607 | vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4608 | #ifdef CONFIG_X86_64 |
| 4609 | /* |
| 4610 | * Load null selectors, so we can avoid reloading them in |
| 4611 | * __vmx_load_host_state(), in case userspace uses the null selectors |
| 4612 | * too (the expected case). |
| 4613 | */ |
| 4614 | vmcs_write16(HOST_DS_SELECTOR, 0); |
| 4615 | vmcs_write16(HOST_ES_SELECTOR, 0); |
| 4616 | #else |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4617 | vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4618 | vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
Avi Kivity | b2da15a | 2012-05-13 19:53:24 +0300 | [diff] [blame] | 4619 | #endif |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4620 | vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */ |
| 4621 | vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */ |
| 4622 | |
| 4623 | native_store_idt(&dt); |
| 4624 | vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4625 | vmx->host_idt_base = dt.address; |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4626 | |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 4627 | vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */ |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4628 | |
| 4629 | rdmsr(MSR_IA32_SYSENTER_CS, low32, high32); |
| 4630 | vmcs_write32(HOST_IA32_SYSENTER_CS, low32); |
| 4631 | rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl); |
| 4632 | vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */ |
| 4633 | |
| 4634 | if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) { |
| 4635 | rdmsr(MSR_IA32_CR_PAT, low32, high32); |
| 4636 | vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32)); |
| 4637 | } |
| 4638 | } |
| 4639 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4640 | static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx) |
| 4641 | { |
| 4642 | vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS; |
| 4643 | if (enable_ept) |
| 4644 | vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 4645 | if (is_guest_mode(&vmx->vcpu)) |
| 4646 | vmx->vcpu.arch.cr4_guest_owned_bits &= |
| 4647 | ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4648 | vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits); |
| 4649 | } |
| 4650 | |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4651 | static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx) |
| 4652 | { |
| 4653 | u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; |
| 4654 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4655 | if (!vmx_cpu_uses_apicv(&vmx->vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4656 | pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; |
| 4657 | return pin_based_exec_ctrl; |
| 4658 | } |
| 4659 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4660 | static u32 vmx_exec_control(struct vcpu_vmx *vmx) |
| 4661 | { |
| 4662 | u32 exec_control = vmcs_config.cpu_based_exec_ctrl; |
Paolo Bonzini | d16c293 | 2014-02-21 10:36:37 +0100 | [diff] [blame] | 4663 | |
| 4664 | if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT) |
| 4665 | exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 4666 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4667 | if (!cpu_need_tpr_shadow(&vmx->vcpu)) { |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4668 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 4669 | #ifdef CONFIG_X86_64 |
| 4670 | exec_control |= CPU_BASED_CR8_STORE_EXITING | |
| 4671 | CPU_BASED_CR8_LOAD_EXITING; |
| 4672 | #endif |
| 4673 | } |
| 4674 | if (!enable_ept) |
| 4675 | exec_control |= CPU_BASED_CR3_STORE_EXITING | |
| 4676 | CPU_BASED_CR3_LOAD_EXITING | |
| 4677 | CPU_BASED_INVLPG_EXITING; |
| 4678 | return exec_control; |
| 4679 | } |
| 4680 | |
| 4681 | static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx) |
| 4682 | { |
| 4683 | u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4684 | if (!cpu_need_virtualize_apic_accesses(&vmx->vcpu)) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4685 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 4686 | if (vmx->vpid == 0) |
| 4687 | exec_control &= ~SECONDARY_EXEC_ENABLE_VPID; |
| 4688 | if (!enable_ept) { |
| 4689 | exec_control &= ~SECONDARY_EXEC_ENABLE_EPT; |
| 4690 | enable_unrestricted_guest = 0; |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 4691 | /* Enable INVPCID for non-ept guests may cause performance regression. */ |
| 4692 | exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4693 | } |
| 4694 | if (!enable_unrestricted_guest) |
| 4695 | exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST; |
| 4696 | if (!ple_gap) |
| 4697 | exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4698 | if (!vmx_cpu_uses_apicv(&vmx->vcpu)) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4699 | exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 4700 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY); |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 4701 | exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
Abel Gordon | abc4fc5 | 2013-04-18 14:35:25 +0300 | [diff] [blame] | 4702 | /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD |
| 4703 | (handle_vmptrld). |
| 4704 | We can NOT enable shadow_vmcs here because we don't have yet |
| 4705 | a current VMCS12 |
| 4706 | */ |
| 4707 | exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 4708 | /* PML is enabled/disabled in creating/destorying vcpu */ |
| 4709 | exec_control &= ~SECONDARY_EXEC_ENABLE_PML; |
| 4710 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 4711 | /* Currently, we allow L1 guest to directly run pcommit instruction. */ |
| 4712 | exec_control &= ~SECONDARY_EXEC_PCOMMIT; |
| 4713 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4714 | return exec_control; |
| 4715 | } |
| 4716 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4717 | static void ept_set_mmio_spte_mask(void) |
| 4718 | { |
| 4719 | /* |
| 4720 | * EPT Misconfigurations can be generated if the value of bits 2:0 |
| 4721 | * of an EPT paging-structure entry is 110b (write/execute). |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4722 | * Also, magic bits (0x3ull << 62) is set to quickly identify mmio |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4723 | * spte. |
| 4724 | */ |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 4725 | kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4726 | } |
| 4727 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4728 | #define VMX_XSS_EXIT_BITMAP 0 |
Nadav Har'El | a3a8ff8 | 2011-05-25 23:09:01 +0300 | [diff] [blame] | 4729 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4730 | * Sets up the vmcs for emulated real mode. |
| 4731 | */ |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 4732 | static int vmx_vcpu_setup(struct vcpu_vmx *vmx) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4733 | { |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4734 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4735 | unsigned long a; |
Jan Kiszka | 2e4ce7f | 2011-06-01 12:57:30 +0200 | [diff] [blame] | 4736 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4737 | int i; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4738 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4739 | /* I/O */ |
Avi Kivity | 3e7c73e | 2009-02-24 21:46:19 +0200 | [diff] [blame] | 4740 | vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a)); |
| 4741 | vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4742 | |
Abel Gordon | 4607c2d | 2013-04-18 14:35:55 +0300 | [diff] [blame] | 4743 | if (enable_shadow_vmcs) { |
| 4744 | vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap)); |
| 4745 | vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap)); |
| 4746 | } |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4747 | if (cpu_has_vmx_msr_bitmap()) |
Avi Kivity | 5897297 | 2009-02-24 22:26:47 +0200 | [diff] [blame] | 4748 | vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy)); |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 4749 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4750 | vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */ |
| 4751 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4752 | /* Control */ |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4753 | 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] | 4754 | |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4755 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4756 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 4757 | if (cpu_has_secondary_exec_ctrls()) |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4758 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 4759 | vmx_secondary_exec_control(vmx)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4760 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4761 | if (vmx_cpu_uses_apicv(&vmx->vcpu)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4762 | vmcs_write64(EOI_EXIT_BITMAP0, 0); |
| 4763 | vmcs_write64(EOI_EXIT_BITMAP1, 0); |
| 4764 | vmcs_write64(EOI_EXIT_BITMAP2, 0); |
| 4765 | vmcs_write64(EOI_EXIT_BITMAP3, 0); |
| 4766 | |
| 4767 | vmcs_write16(GUEST_INTR_STATUS, 0); |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4768 | |
| 4769 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 4770 | vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc))); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 4771 | } |
| 4772 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4773 | if (ple_gap) { |
| 4774 | vmcs_write32(PLE_GAP, ple_gap); |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 4775 | vmx->ple_window = ple_window; |
| 4776 | vmx->ple_window_dirty = true; |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 4777 | } |
| 4778 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 4779 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0); |
| 4780 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4781 | vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */ |
| 4782 | |
Avi Kivity | 9581d44 | 2010-10-19 16:46:55 +0200 | [diff] [blame] | 4783 | vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */ |
| 4784 | vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 4785 | vmx_set_constant_host_state(vmx); |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 4786 | #ifdef CONFIG_X86_64 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4787 | rdmsrl(MSR_FS_BASE, a); |
| 4788 | vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */ |
| 4789 | rdmsrl(MSR_GS_BASE, a); |
| 4790 | vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */ |
| 4791 | #else |
| 4792 | vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */ |
| 4793 | vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */ |
| 4794 | #endif |
| 4795 | |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4796 | vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0); |
| 4797 | vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4798 | vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host)); |
Eddie Dong | 2cc5156 | 2007-05-21 07:28:09 +0300 | [diff] [blame] | 4799 | vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0); |
Avi Kivity | 61d2ef2 | 2010-04-28 16:40:38 +0300 | [diff] [blame] | 4800 | vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4801 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 4802 | if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
| 4803 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
Sheng Yang | 468d472 | 2008-10-09 16:01:55 +0800 | [diff] [blame] | 4804 | |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 4805 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4806 | u32 index = vmx_msr_index[i]; |
| 4807 | u32 data_low, data_high; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4808 | int j = vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4809 | |
| 4810 | if (rdmsr_safe(index, &data_low, &data_high) < 0) |
| 4811 | continue; |
Avi Kivity | 432bd6c | 2007-01-31 23:48:13 -0800 | [diff] [blame] | 4812 | if (wrmsr_safe(index, data_low, data_high) < 0) |
| 4813 | continue; |
Avi Kivity | 26bb098 | 2009-09-07 11:14:12 +0300 | [diff] [blame] | 4814 | vmx->guest_msrs[j].index = i; |
| 4815 | vmx->guest_msrs[j].data = 0; |
Avi Kivity | d569672 | 2009-12-02 12:28:47 +0200 | [diff] [blame] | 4816 | vmx->guest_msrs[j].mask = -1ull; |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 4817 | ++vmx->nmsrs; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4818 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4819 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4820 | |
| 4821 | vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4822 | |
| 4823 | /* 22.2.1, 20.8.1 */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 4824 | vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl); |
Yang, Sheng | 1c3d14fe | 2007-07-29 11:07:42 +0300 | [diff] [blame] | 4825 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4826 | vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL); |
Nadav Har'El | bf8179a | 2011-05-25 23:09:31 +0300 | [diff] [blame] | 4827 | set_cr4_guest_host_mask(vmx); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4828 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 4829 | if (vmx_xsaves_supported()) |
| 4830 | vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP); |
| 4831 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4832 | return 0; |
| 4833 | } |
| 4834 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4835 | static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4836 | { |
| 4837 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 4838 | struct msr_data apic_base_msr; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4839 | u64 cr0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4840 | |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4841 | vmx->rmode.vm86_active = 0; |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4842 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4843 | vmx->soft_vnmi_blocked = 0; |
| 4844 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4845 | vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val(); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4846 | kvm_set_cr8(vcpu, 0); |
| 4847 | |
| 4848 | if (!init_event) { |
| 4849 | apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | |
| 4850 | MSR_IA32_APICBASE_ENABLE; |
| 4851 | if (kvm_vcpu_is_reset_bsp(vcpu)) |
| 4852 | apic_base_msr.data |= MSR_IA32_APICBASE_BSP; |
| 4853 | apic_base_msr.host_initiated = true; |
| 4854 | kvm_set_apic_base(vcpu, &apic_base_msr); |
| 4855 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4856 | |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 4857 | vmx_segment_cache_clear(vmx); |
| 4858 | |
Avi Kivity | 5706be0 | 2008-08-20 15:07:31 +0300 | [diff] [blame] | 4859 | seg_setup(VCPU_SREG_CS); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4860 | vmcs_write16(GUEST_CS_SELECTOR, 0xf000); |
Paolo Bonzini | 04b6683 | 2013-03-19 16:30:26 +0100 | [diff] [blame] | 4861 | vmcs_write32(GUEST_CS_BASE, 0xffff0000); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4862 | |
| 4863 | seg_setup(VCPU_SREG_DS); |
| 4864 | seg_setup(VCPU_SREG_ES); |
| 4865 | seg_setup(VCPU_SREG_FS); |
| 4866 | seg_setup(VCPU_SREG_GS); |
| 4867 | seg_setup(VCPU_SREG_SS); |
| 4868 | |
| 4869 | vmcs_write16(GUEST_TR_SELECTOR, 0); |
| 4870 | vmcs_writel(GUEST_TR_BASE, 0); |
| 4871 | vmcs_write32(GUEST_TR_LIMIT, 0xffff); |
| 4872 | vmcs_write32(GUEST_TR_AR_BYTES, 0x008b); |
| 4873 | |
| 4874 | vmcs_write16(GUEST_LDTR_SELECTOR, 0); |
| 4875 | vmcs_writel(GUEST_LDTR_BASE, 0); |
| 4876 | vmcs_write32(GUEST_LDTR_LIMIT, 0xffff); |
| 4877 | vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082); |
| 4878 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4879 | if (!init_event) { |
| 4880 | vmcs_write32(GUEST_SYSENTER_CS, 0); |
| 4881 | vmcs_writel(GUEST_SYSENTER_ESP, 0); |
| 4882 | vmcs_writel(GUEST_SYSENTER_EIP, 0); |
| 4883 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
| 4884 | } |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4885 | |
| 4886 | vmcs_writel(GUEST_RFLAGS, 0x02); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 4887 | kvm_rip_write(vcpu, 0xfff0); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4888 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4889 | vmcs_writel(GUEST_GDTR_BASE, 0); |
| 4890 | vmcs_write32(GUEST_GDTR_LIMIT, 0xffff); |
| 4891 | |
| 4892 | vmcs_writel(GUEST_IDTR_BASE, 0); |
| 4893 | vmcs_write32(GUEST_IDTR_LIMIT, 0xffff); |
| 4894 | |
Anthony Liguori | 443381a | 2010-12-06 10:53:38 -0600 | [diff] [blame] | 4895 | vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE); |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4896 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0); |
| 4897 | vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0); |
| 4898 | |
Avi Kivity | e00c8cf | 2007-10-21 11:00:39 +0200 | [diff] [blame] | 4899 | setup_msrs(vmx); |
| 4900 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4901 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */ |
| 4902 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4903 | if (cpu_has_vmx_tpr_shadow() && !init_event) { |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4904 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4905 | if (cpu_need_tpr_shadow(vcpu)) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4906 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4907 | __pa(vcpu->arch.apic->regs)); |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 4908 | vmcs_write32(TPR_THRESHOLD, 0); |
| 4909 | } |
| 4910 | |
Paolo Bonzini | a73896c | 2014-11-02 07:54:30 +0100 | [diff] [blame] | 4911 | kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4912 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4913 | if (vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 01e439b | 2013-04-11 19:25:12 +0800 | [diff] [blame] | 4914 | memset(&vmx->pi_desc, 0, sizeof(struct pi_desc)); |
| 4915 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 4916 | if (vmx->vpid != 0) |
| 4917 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 4918 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 4919 | cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET; |
| 4920 | vmx_set_cr0(vcpu, cr0); /* enter rmode */ |
| 4921 | vmx->vcpu.arch.cr0 = cr0; |
| 4922 | vmx_set_cr4(vcpu, 0); |
| 4923 | if (!init_event) |
| 4924 | vmx_set_efer(vcpu, 0); |
| 4925 | vmx_fpu_activate(vcpu); |
| 4926 | update_exception_bitmap(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4927 | |
Gui Jianfeng | b9d762f | 2010-06-07 10:32:29 +0800 | [diff] [blame] | 4928 | vpid_sync_context(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4929 | } |
| 4930 | |
Nadav Har'El | b6f1250 | 2011-05-25 23:13:06 +0300 | [diff] [blame] | 4931 | /* |
| 4932 | * In nested virtualization, check if L1 asked to exit on external interrupts. |
| 4933 | * For most existing hypervisors, this will always return true. |
| 4934 | */ |
| 4935 | static bool nested_exit_on_intr(struct kvm_vcpu *vcpu) |
| 4936 | { |
| 4937 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4938 | PIN_BASED_EXT_INTR_MASK; |
| 4939 | } |
| 4940 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 4941 | /* |
| 4942 | * In nested virtualization, check if L1 has set |
| 4943 | * VM_EXIT_ACK_INTR_ON_EXIT |
| 4944 | */ |
| 4945 | static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu) |
| 4946 | { |
| 4947 | return get_vmcs12(vcpu)->vm_exit_controls & |
| 4948 | VM_EXIT_ACK_INTR_ON_EXIT; |
| 4949 | } |
| 4950 | |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 4951 | static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu) |
| 4952 | { |
| 4953 | return get_vmcs12(vcpu)->pin_based_vm_exec_control & |
| 4954 | PIN_BASED_NMI_EXITING; |
| 4955 | } |
| 4956 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4957 | static void enable_irq_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4958 | { |
| 4959 | u32 cpu_based_vm_exec_control; |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 4960 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4961 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4962 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING; |
| 4963 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4964 | } |
| 4965 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4966 | static void enable_nmi_window(struct kvm_vcpu *vcpu) |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4967 | { |
| 4968 | u32 cpu_based_vm_exec_control; |
| 4969 | |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 4970 | if (!cpu_has_virtual_nmis() || |
| 4971 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) { |
| 4972 | enable_irq_window(vcpu); |
| 4973 | return; |
| 4974 | } |
Jan Kiszka | 03b28f8 | 2013-04-29 16:46:42 +0200 | [diff] [blame] | 4975 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 4976 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 4977 | cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING; |
| 4978 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 4979 | } |
| 4980 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4981 | static void vmx_inject_irq(struct kvm_vcpu *vcpu) |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4982 | { |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4983 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4984 | uint32_t intr; |
| 4985 | int irq = vcpu->arch.interrupt.nr; |
Avi Kivity | 9c8cba3 | 2007-11-22 11:42:59 +0200 | [diff] [blame] | 4986 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 4987 | trace_kvm_inj_virq(irq); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 4988 | |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 4989 | ++vcpu->stat.irq_injections; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 4990 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 4991 | int inc_eip = 0; |
| 4992 | if (vcpu->arch.interrupt.soft) |
| 4993 | inc_eip = vcpu->arch.event_exit_inst_len; |
| 4994 | if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 4995 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 4996 | return; |
| 4997 | } |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 4998 | intr = irq | INTR_INFO_VALID_MASK; |
| 4999 | if (vcpu->arch.interrupt.soft) { |
| 5000 | intr |= INTR_TYPE_SOFT_INTR; |
| 5001 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 5002 | vmx->vcpu.arch.event_exit_inst_len); |
| 5003 | } else |
| 5004 | intr |= INTR_TYPE_EXT_INTR; |
| 5005 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr); |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5006 | } |
| 5007 | |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5008 | static void vmx_inject_nmi(struct kvm_vcpu *vcpu) |
| 5009 | { |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5010 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5011 | |
Nadav Har'El | 0b6ac34 | 2011-05-25 23:13:36 +0300 | [diff] [blame] | 5012 | if (is_guest_mode(vcpu)) |
| 5013 | return; |
| 5014 | |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 5015 | if (!cpu_has_virtual_nmis()) { |
| 5016 | /* |
| 5017 | * Tracking the NMI-blocked state in software is built upon |
| 5018 | * finding the next open IRQ window. This, in turn, depends on |
| 5019 | * well-behaving guests: They have to keep IRQs disabled at |
| 5020 | * least as long as the NMI handler runs. Otherwise we may |
| 5021 | * cause NMI nesting, maybe breaking the guest. But as this is |
| 5022 | * highly unlikely, we can live with the residual risk. |
| 5023 | */ |
| 5024 | vmx->soft_vnmi_blocked = 1; |
| 5025 | vmx->vnmi_blocked_time = 0; |
| 5026 | } |
| 5027 | |
Jan Kiszka | 487b391 | 2008-09-26 09:30:56 +0200 | [diff] [blame] | 5028 | ++vcpu->stat.nmi_injections; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5029 | vmx->nmi_known_unmasked = false; |
Avi Kivity | 7ffd92c | 2009-06-09 14:10:45 +0300 | [diff] [blame] | 5030 | if (vmx->rmode.vm86_active) { |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5031 | if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE) |
Mohammed Gamal | a92601b | 2010-09-19 14:34:07 +0200 | [diff] [blame] | 5032 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Jan Kiszka | 66a5a34 | 2008-09-26 09:30:51 +0200 | [diff] [blame] | 5033 | return; |
| 5034 | } |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5035 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 5036 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5037 | } |
| 5038 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5039 | static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) |
| 5040 | { |
| 5041 | if (!cpu_has_virtual_nmis()) |
| 5042 | return to_vmx(vcpu)->soft_vnmi_blocked; |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5043 | if (to_vmx(vcpu)->nmi_known_unmasked) |
| 5044 | return false; |
Avi Kivity | c332c83 | 2010-05-04 12:24:12 +0300 | [diff] [blame] | 5045 | return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5046 | } |
| 5047 | |
| 5048 | static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |
| 5049 | { |
| 5050 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5051 | |
| 5052 | if (!cpu_has_virtual_nmis()) { |
| 5053 | if (vmx->soft_vnmi_blocked != masked) { |
| 5054 | vmx->soft_vnmi_blocked = masked; |
| 5055 | vmx->vnmi_blocked_time = 0; |
| 5056 | } |
| 5057 | } else { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 5058 | vmx->nmi_known_unmasked = !masked; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 5059 | if (masked) |
| 5060 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5061 | GUEST_INTR_STATE_NMI); |
| 5062 | else |
| 5063 | vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 5064 | GUEST_INTR_STATE_NMI); |
| 5065 | } |
| 5066 | } |
| 5067 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5068 | static int vmx_nmi_allowed(struct kvm_vcpu *vcpu) |
| 5069 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5070 | if (to_vmx(vcpu)->nested.nested_run_pending) |
| 5071 | return 0; |
Jan Kiszka | ea8ceb8 | 2013-04-14 21:04:26 +0200 | [diff] [blame] | 5072 | |
Jan Kiszka | 2505dc9 | 2013-04-14 12:12:47 +0200 | [diff] [blame] | 5073 | if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked) |
| 5074 | return 0; |
| 5075 | |
| 5076 | return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5077 | (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI |
| 5078 | | GUEST_INTR_STATE_NMI)); |
| 5079 | } |
| 5080 | |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5081 | static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 5082 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 5083 | return (!to_vmx(vcpu)->nested.nested_run_pending && |
| 5084 | vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) && |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 5085 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & |
| 5086 | (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS)); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 5087 | } |
| 5088 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5089 | static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) |
| 5090 | { |
| 5091 | int ret; |
| 5092 | struct kvm_userspace_memory_region tss_mem = { |
Sheng Yang | 6fe6397 | 2008-10-16 17:30:58 +0800 | [diff] [blame] | 5093 | .slot = TSS_PRIVATE_MEMSLOT, |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5094 | .guest_phys_addr = addr, |
| 5095 | .memory_size = PAGE_SIZE * 3, |
| 5096 | .flags = 0, |
| 5097 | }; |
| 5098 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5099 | ret = x86_set_memory_region(kvm, &tss_mem); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5100 | if (ret) |
| 5101 | return ret; |
Zhang Xiantao | bfc6d22 | 2007-12-14 10:20:16 +0800 | [diff] [blame] | 5102 | kvm->arch.tss_addr = addr; |
Paolo Bonzini | 1f755a8 | 2014-09-16 13:37:40 +0200 | [diff] [blame] | 5103 | return init_rmode_tss(kvm); |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 5104 | } |
| 5105 | |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5106 | static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5107 | { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5108 | switch (vec) { |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5109 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5110 | /* |
| 5111 | * Update instruction length as we may reinject the exception |
| 5112 | * from user space while in guest debugging mode. |
| 5113 | */ |
| 5114 | to_vmx(vcpu)->vcpu.arch.event_exit_inst_len = |
| 5115 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5116 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP) |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5117 | return false; |
| 5118 | /* fall through */ |
| 5119 | case DB_VECTOR: |
| 5120 | if (vcpu->guest_debug & |
| 5121 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP)) |
| 5122 | return false; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5123 | /* fall through */ |
| 5124 | case DE_VECTOR: |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5125 | case OF_VECTOR: |
| 5126 | case BR_VECTOR: |
| 5127 | case UD_VECTOR: |
| 5128 | case DF_VECTOR: |
| 5129 | case SS_VECTOR: |
| 5130 | case GP_VECTOR: |
| 5131 | case MF_VECTOR: |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5132 | return true; |
| 5133 | break; |
Jan Kiszka | 77ab6db | 2008-07-14 12:28:51 +0200 | [diff] [blame] | 5134 | } |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5135 | return false; |
| 5136 | } |
| 5137 | |
| 5138 | static int handle_rmode_exception(struct kvm_vcpu *vcpu, |
| 5139 | int vec, u32 err_code) |
| 5140 | { |
| 5141 | /* |
| 5142 | * Instruction with address size override prefix opcode 0x67 |
| 5143 | * Cause the #SS fault with 0 error code in VM86 mode. |
| 5144 | */ |
| 5145 | if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) { |
| 5146 | if (emulate_instruction(vcpu, 0) == EMULATE_DONE) { |
| 5147 | if (vcpu->arch.halt_request) { |
| 5148 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5149 | return kvm_vcpu_halt(vcpu); |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5150 | } |
| 5151 | return 1; |
| 5152 | } |
| 5153 | return 0; |
| 5154 | } |
| 5155 | |
| 5156 | /* |
| 5157 | * Forward all other exceptions that are valid in real mode. |
| 5158 | * FIXME: Breaks guest debugging in real mode, needs to be fixed with |
| 5159 | * the required debugging infrastructure rework. |
| 5160 | */ |
| 5161 | kvm_queue_exception(vcpu, vec); |
| 5162 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5163 | } |
| 5164 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5165 | /* |
| 5166 | * Trigger machine check on the host. We assume all the MSRs are already set up |
| 5167 | * by the CPU and that we still run on the same CPU as the MCE occurred on. |
| 5168 | * We pass a fake environment to the machine check handler because we want |
| 5169 | * the guest to be always treated like user space, no matter what context |
| 5170 | * it used internally. |
| 5171 | */ |
| 5172 | static void kvm_machine_check(void) |
| 5173 | { |
| 5174 | #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64) |
| 5175 | struct pt_regs regs = { |
| 5176 | .cs = 3, /* Fake ring 3 no matter what the guest ran on */ |
| 5177 | .flags = X86_EFLAGS_IF, |
| 5178 | }; |
| 5179 | |
| 5180 | do_machine_check(®s, 0); |
| 5181 | #endif |
| 5182 | } |
| 5183 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5184 | static int handle_machine_check(struct kvm_vcpu *vcpu) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5185 | { |
| 5186 | /* already handled by vcpu_run */ |
| 5187 | return 1; |
| 5188 | } |
| 5189 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5190 | static int handle_exception(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5191 | { |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5192 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5193 | struct kvm_run *kvm_run = vcpu->run; |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5194 | u32 intr_info, ex_no, error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5195 | unsigned long cr2, rip, dr6; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5196 | u32 vect_info; |
| 5197 | enum emulation_result er; |
| 5198 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 5199 | vect_info = vmx->idt_vectoring_info; |
Avi Kivity | 8878647 | 2011-03-07 17:39:45 +0200 | [diff] [blame] | 5200 | intr_info = vmx->exit_intr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5201 | |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5202 | if (is_machine_check(intr_info)) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5203 | return handle_machine_check(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 5204 | |
Jan Kiszka | e4a4188 | 2008-09-26 09:30:46 +0200 | [diff] [blame] | 5205 | if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR) |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 5206 | return 1; /* already handled by vmx_vcpu_run() */ |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5207 | |
| 5208 | if (is_no_device(intr_info)) { |
Avi Kivity | 5fd86fc | 2007-05-02 20:40:00 +0300 | [diff] [blame] | 5209 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 2ab455c | 2007-04-27 09:29:49 +0300 | [diff] [blame] | 5210 | return 1; |
| 5211 | } |
| 5212 | |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5213 | if (is_invalid_opcode(intr_info)) { |
Jan Kiszka | ae1f576 | 2015-03-09 20:56:43 +0100 | [diff] [blame] | 5214 | if (is_guest_mode(vcpu)) { |
| 5215 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5216 | return 1; |
| 5217 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5218 | er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5219 | if (er != EMULATE_DONE) |
Avi Kivity | 7ee5d940 | 2007-11-25 15:22:50 +0200 | [diff] [blame] | 5220 | kvm_queue_exception(vcpu, UD_VECTOR); |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5221 | return 1; |
| 5222 | } |
| 5223 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5224 | error_code = 0; |
Ryan Harper | 2e11384 | 2008-02-11 10:26:38 -0600 | [diff] [blame] | 5225 | if (intr_info & INTR_INFO_DELIVER_CODE_MASK) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5226 | error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5227 | |
| 5228 | /* |
| 5229 | * The #PF with PFEC.RSVD = 1 indicates the guest is accessing |
| 5230 | * MMIO, it is better to report an internal error. |
| 5231 | * See the comments in vmx_handle_exit. |
| 5232 | */ |
| 5233 | if ((vect_info & VECTORING_INFO_VALID_MASK) && |
| 5234 | !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) { |
| 5235 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5236 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5237 | vcpu->run->internal.ndata = 3; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5238 | vcpu->run->internal.data[0] = vect_info; |
| 5239 | vcpu->run->internal.data[1] = intr_info; |
Radim Krčmář | 80f0e95 | 2015-04-02 21:11:05 +0200 | [diff] [blame] | 5240 | vcpu->run->internal.data[2] = error_code; |
Xiao Guangrong | bf4ca23 | 2012-10-17 13:48:06 +0800 | [diff] [blame] | 5241 | return 0; |
| 5242 | } |
| 5243 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5244 | if (is_page_fault(intr_info)) { |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5245 | /* EPT won't cause page fault directly */ |
Julia Lawall | cf3ace7 | 2011-08-02 12:34:57 +0200 | [diff] [blame] | 5246 | BUG_ON(enable_ept); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5247 | cr2 = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5248 | trace_kvm_page_fault(cr2, error_code); |
| 5249 | |
Gleb Natapov | 3298b75 | 2009-05-11 13:35:46 +0300 | [diff] [blame] | 5250 | if (kvm_event_needs_reinjection(vcpu)) |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 5251 | kvm_mmu_unprotect_page_virt(vcpu, cr2); |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5252 | return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5253 | } |
| 5254 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5255 | ex_no = intr_info & INTR_INFO_VECTOR_MASK; |
Gleb Natapov | 0ca1b4f | 2012-12-20 16:57:47 +0200 | [diff] [blame] | 5256 | |
| 5257 | if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no)) |
| 5258 | return handle_rmode_exception(vcpu, ex_no, error_code); |
| 5259 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5260 | switch (ex_no) { |
| 5261 | case DB_VECTOR: |
| 5262 | dr6 = vmcs_readl(EXIT_QUALIFICATION); |
| 5263 | if (!(vcpu->guest_debug & |
| 5264 | (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) { |
Jan Kiszka | 8246bf5 | 2014-01-04 18:47:17 +0100 | [diff] [blame] | 5265 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5266 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Huw Davies | fd2a445 | 2014-04-16 10:02:51 +0100 | [diff] [blame] | 5267 | if (!(dr6 & ~DR6_RESERVED)) /* icebp */ |
| 5268 | skip_emulated_instruction(vcpu); |
| 5269 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5270 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5271 | return 1; |
| 5272 | } |
| 5273 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1; |
| 5274 | kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5275 | /* fall through */ |
| 5276 | case BP_VECTOR: |
Jan Kiszka | c573cd22 | 2010-02-23 17:47:53 +0100 | [diff] [blame] | 5277 | /* |
| 5278 | * Update instruction length as we may reinject #BP from |
| 5279 | * user space while in guest debugging mode. Reading it for |
| 5280 | * #DB as well causes no harm, it is not used in that case. |
| 5281 | */ |
| 5282 | vmx->vcpu.arch.event_exit_inst_len = |
| 5283 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5284 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Avi Kivity | 0a434bb | 2011-04-28 15:59:33 +0300 | [diff] [blame] | 5285 | rip = kvm_rip_read(vcpu); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5286 | kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip; |
| 5287 | kvm_run->debug.arch.exception = ex_no; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5288 | break; |
| 5289 | default: |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5290 | kvm_run->exit_reason = KVM_EXIT_EXCEPTION; |
| 5291 | kvm_run->ex.exception = ex_no; |
| 5292 | kvm_run->ex.error_code = error_code; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5293 | break; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5294 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5295 | return 0; |
| 5296 | } |
| 5297 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5298 | static int handle_external_interrupt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5299 | { |
Avi Kivity | 1165f5f | 2007-04-19 17:27:43 +0300 | [diff] [blame] | 5300 | ++vcpu->stat.irq_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5301 | return 1; |
| 5302 | } |
| 5303 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5304 | static int handle_triple_fault(struct kvm_vcpu *vcpu) |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5305 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5306 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 5307 | return 0; |
| 5308 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5309 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5310 | static int handle_io(struct kvm_vcpu *vcpu) |
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 | unsigned long exit_qualification; |
Jan Kiszka | 34c33d1 | 2009-02-08 13:28:15 +0100 | [diff] [blame] | 5313 | int size, in, string; |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5314 | unsigned port; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5315 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5316 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 039576c | 2007-03-20 12:46:50 +0200 | [diff] [blame] | 5317 | string = (exit_qualification & 16) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5318 | in = (exit_qualification & 8) != 0; |
Laurent Vivier | e70669a | 2007-08-05 10:36:40 +0300 | [diff] [blame] | 5319 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5320 | ++vcpu->stat.io_exits; |
| 5321 | |
| 5322 | if (string || in) |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5323 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5324 | |
| 5325 | port = exit_qualification >> 16; |
| 5326 | size = (exit_qualification & 7) + 1; |
Guillaume Thouvenin | e93f36b | 2008-10-28 10:51:30 +0100 | [diff] [blame] | 5327 | skip_emulated_instruction(vcpu); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5328 | |
| 5329 | return kvm_fast_pio_out(vcpu, size, port); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5330 | } |
| 5331 | |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5332 | static void |
| 5333 | vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall) |
| 5334 | { |
| 5335 | /* |
| 5336 | * Patch in the VMCALL instruction: |
| 5337 | */ |
| 5338 | hypercall[0] = 0x0f; |
| 5339 | hypercall[1] = 0x01; |
| 5340 | hypercall[2] = 0xc1; |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5341 | } |
| 5342 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5343 | static bool nested_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val) |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5344 | { |
| 5345 | unsigned long always_on = VMXON_CR0_ALWAYSON; |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5346 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5347 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5348 | if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high & |
Jan Kiszka | 92fbc7b | 2013-08-08 16:26:33 +0200 | [diff] [blame] | 5349 | SECONDARY_EXEC_UNRESTRICTED_GUEST && |
| 5350 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST)) |
| 5351 | always_on &= ~(X86_CR0_PE | X86_CR0_PG); |
| 5352 | return (val & always_on) == always_on; |
| 5353 | } |
| 5354 | |
Guo Chao | 0fa0607 | 2012-06-28 15:16:19 +0800 | [diff] [blame] | 5355 | /* 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] | 5356 | static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val) |
| 5357 | { |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5358 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5359 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5360 | unsigned long orig_val = val; |
| 5361 | |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5362 | /* |
| 5363 | * We get here when L2 changed cr0 in a way that did not change |
| 5364 | * any of L1's shadowed bits (see nested_vmx_exit_handled_cr), |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5365 | * but did change L0 shadowed bits. So we first calculate the |
| 5366 | * effective cr0 value that L1 would like to write into the |
| 5367 | * hardware. It consists of the L2-owned bits from the new |
| 5368 | * 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] | 5369 | */ |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5370 | val = (val & ~vmcs12->cr0_guest_host_mask) | |
| 5371 | (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask); |
| 5372 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 5373 | if (!nested_cr0_valid(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5374 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5375 | |
| 5376 | if (kvm_set_cr0(vcpu, val)) |
| 5377 | return 1; |
| 5378 | vmcs_writel(CR0_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5379 | return 0; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5380 | } else { |
| 5381 | if (to_vmx(vcpu)->nested.vmxon && |
| 5382 | ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON)) |
| 5383 | return 1; |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5384 | return kvm_set_cr0(vcpu, val); |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5385 | } |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5386 | } |
| 5387 | |
| 5388 | static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val) |
| 5389 | { |
| 5390 | if (is_guest_mode(vcpu)) { |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5391 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 5392 | unsigned long orig_val = val; |
| 5393 | |
| 5394 | /* analogously to handle_set_cr0 */ |
| 5395 | val = (val & ~vmcs12->cr4_guest_host_mask) | |
| 5396 | (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask); |
| 5397 | if (kvm_set_cr4(vcpu, val)) |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5398 | return 1; |
Jan Kiszka | 1a0d74e | 2013-03-07 14:08:07 +0100 | [diff] [blame] | 5399 | vmcs_writel(CR4_READ_SHADOW, orig_val); |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5400 | return 0; |
| 5401 | } else |
| 5402 | return kvm_set_cr4(vcpu, val); |
| 5403 | } |
| 5404 | |
| 5405 | /* called to set cr0 as approriate for clts instruction exit. */ |
| 5406 | static void handle_clts(struct kvm_vcpu *vcpu) |
| 5407 | { |
| 5408 | if (is_guest_mode(vcpu)) { |
| 5409 | /* |
| 5410 | * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS |
| 5411 | * but we did (!fpu_active). We need to keep GUEST_CR0.TS on, |
| 5412 | * just pretend it's off (also in arch.cr0 for fpu_activate). |
| 5413 | */ |
| 5414 | vmcs_writel(CR0_READ_SHADOW, |
| 5415 | vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS); |
| 5416 | vcpu->arch.cr0 &= ~X86_CR0_TS; |
| 5417 | } else |
| 5418 | vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS)); |
| 5419 | } |
| 5420 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5421 | static int handle_cr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5422 | { |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5423 | unsigned long exit_qualification, val; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5424 | int cr; |
| 5425 | int reg; |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 5426 | int err; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5427 | |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5428 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5429 | cr = exit_qualification & 15; |
| 5430 | reg = (exit_qualification >> 8) & 15; |
| 5431 | switch ((exit_qualification >> 4) & 3) { |
| 5432 | case 0: /* mov to cr */ |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5433 | val = kvm_register_readl(vcpu, reg); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5434 | trace_kvm_cr_write(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5435 | switch (cr) { |
| 5436 | case 0: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5437 | err = handle_set_cr0(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 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 5441 | err = kvm_set_cr3(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; |
| 5444 | case 4: |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5445 | err = handle_set_cr4(vcpu, val); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5446 | kvm_complete_insn_gp(vcpu, err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5447 | return 1; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5448 | case 8: { |
| 5449 | u8 cr8_prev = kvm_get_cr8(vcpu); |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 5450 | u8 cr8 = (u8)val; |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 5451 | err = kvm_set_cr8(vcpu, cr8); |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 5452 | kvm_complete_insn_gp(vcpu, err); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5453 | if (lapic_in_kernel(vcpu)) |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5454 | return 1; |
| 5455 | if (cr8_prev <= cr8) |
| 5456 | return 1; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5457 | vcpu->run->exit_reason = KVM_EXIT_SET_TPR; |
Gleb Natapov | 0a5fff19 | 2009-04-21 17:45:06 +0300 | [diff] [blame] | 5458 | return 0; |
| 5459 | } |
Peter Senna Tschudin | 4b8073e | 2012-09-18 18:36:14 +0200 | [diff] [blame] | 5460 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5461 | break; |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5462 | case 2: /* clts */ |
Nadav Har'El | eeadf9e | 2011-05-25 23:14:38 +0300 | [diff] [blame] | 5463 | handle_clts(vcpu); |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5464 | trace_kvm_cr_write(0, kvm_read_cr0(vcpu)); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5465 | skip_emulated_instruction(vcpu); |
Avi Kivity | 6b52d18 | 2010-01-21 15:31:47 +0200 | [diff] [blame] | 5466 | vmx_fpu_activate(vcpu); |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 5467 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5468 | case 1: /*mov from cr*/ |
| 5469 | switch (cr) { |
| 5470 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 5471 | val = kvm_read_cr3(vcpu); |
| 5472 | kvm_register_write(vcpu, reg, val); |
| 5473 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5474 | skip_emulated_instruction(vcpu); |
| 5475 | return 1; |
| 5476 | case 8: |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5477 | val = kvm_get_cr8(vcpu); |
| 5478 | kvm_register_write(vcpu, reg, val); |
| 5479 | trace_kvm_cr_read(cr, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5480 | skip_emulated_instruction(vcpu); |
| 5481 | return 1; |
| 5482 | } |
| 5483 | break; |
| 5484 | case 3: /* lmsw */ |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5485 | val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 5486 | trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); |
Avi Kivity | a1f83a7 | 2009-12-29 17:33:58 +0200 | [diff] [blame] | 5487 | kvm_lmsw(vcpu, val); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5488 | |
| 5489 | skip_emulated_instruction(vcpu); |
| 5490 | return 1; |
| 5491 | default: |
| 5492 | break; |
| 5493 | } |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5494 | vcpu->run->exit_reason = 0; |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 5495 | vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n", |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5496 | (int)(exit_qualification >> 4) & 3, cr); |
| 5497 | return 0; |
| 5498 | } |
| 5499 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5500 | static int handle_dr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5501 | { |
He, Qing | bfdaab0 | 2007-09-12 14:18:28 +0800 | [diff] [blame] | 5502 | unsigned long exit_qualification; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5503 | int dr, dr7, reg; |
| 5504 | |
| 5505 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5506 | dr = exit_qualification & DEBUG_REG_ACCESS_NUM; |
| 5507 | |
| 5508 | /* First, if DR does not exist, trigger UD */ |
| 5509 | if (!kvm_require_dr(vcpu, dr)) |
| 5510 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5511 | |
Jan Kiszka | f248341 | 2010-01-20 18:20:20 +0100 | [diff] [blame] | 5512 | /* 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] | 5513 | if (!kvm_require_cpl(vcpu, 0)) |
| 5514 | return 1; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5515 | dr7 = vmcs_readl(GUEST_DR7); |
| 5516 | if (dr7 & DR7_GD) { |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5517 | /* |
| 5518 | * As the vm-exit takes precedence over the debug trap, we |
| 5519 | * need to emulate the latter, either for the host or the |
| 5520 | * guest debugging itself. |
| 5521 | */ |
| 5522 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5523 | vcpu->run->debug.arch.dr6 = vcpu->arch.dr6; |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 5524 | vcpu->run->debug.arch.dr7 = dr7; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5525 | vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5526 | vcpu->run->debug.arch.exception = DB_VECTOR; |
| 5527 | vcpu->run->exit_reason = KVM_EXIT_DEBUG; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5528 | return 0; |
| 5529 | } else { |
Nadav Amit | 7305eb5 | 2014-11-02 11:54:44 +0200 | [diff] [blame] | 5530 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5531 | vcpu->arch.dr6 |= DR6_BD | DR6_RTM; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5532 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5533 | return 1; |
| 5534 | } |
| 5535 | } |
| 5536 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5537 | if (vcpu->guest_debug == 0) { |
| 5538 | u32 cpu_based_vm_exec_control; |
| 5539 | |
| 5540 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5541 | cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING; |
| 5542 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5543 | |
| 5544 | /* |
| 5545 | * No more DR vmexits; force a reload of the debug registers |
| 5546 | * and reenter on this instruction. The next vmexit will |
| 5547 | * retrieve the full state of the debug registers. |
| 5548 | */ |
| 5549 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT; |
| 5550 | return 1; |
| 5551 | } |
| 5552 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5553 | reg = DEBUG_REG_ACCESS_REG(exit_qualification); |
| 5554 | if (exit_qualification & TYPE_MOV_FROM_DR) { |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5555 | unsigned long val; |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5556 | |
| 5557 | if (kvm_get_dr(vcpu, dr, &val)) |
| 5558 | return 1; |
| 5559 | kvm_register_write(vcpu, reg, val); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5560 | } else |
Nadav Amit | 5777392 | 2014-06-18 17:19:23 +0300 | [diff] [blame] | 5561 | if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg))) |
Jan Kiszka | 4c4d563 | 2013-12-18 19:16:24 +0100 | [diff] [blame] | 5562 | return 1; |
| 5563 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5564 | skip_emulated_instruction(vcpu); |
| 5565 | return 1; |
| 5566 | } |
| 5567 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 5568 | static u64 vmx_get_dr6(struct kvm_vcpu *vcpu) |
| 5569 | { |
| 5570 | return vcpu->arch.dr6; |
| 5571 | } |
| 5572 | |
| 5573 | static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val) |
| 5574 | { |
| 5575 | } |
| 5576 | |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 5577 | static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu) |
| 5578 | { |
| 5579 | u32 cpu_based_vm_exec_control; |
| 5580 | |
| 5581 | get_debugreg(vcpu->arch.db[0], 0); |
| 5582 | get_debugreg(vcpu->arch.db[1], 1); |
| 5583 | get_debugreg(vcpu->arch.db[2], 2); |
| 5584 | get_debugreg(vcpu->arch.db[3], 3); |
| 5585 | get_debugreg(vcpu->arch.dr6, 6); |
| 5586 | vcpu->arch.dr7 = vmcs_readl(GUEST_DR7); |
| 5587 | |
| 5588 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT; |
| 5589 | |
| 5590 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5591 | cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING; |
| 5592 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5593 | } |
| 5594 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 5595 | static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val) |
| 5596 | { |
| 5597 | vmcs_writel(GUEST_DR7, val); |
| 5598 | } |
| 5599 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5600 | static int handle_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5601 | { |
Avi Kivity | 06465c5 | 2007-02-28 20:46:53 +0200 | [diff] [blame] | 5602 | kvm_emulate_cpuid(vcpu); |
| 5603 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5604 | } |
| 5605 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5606 | static int handle_rdmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5607 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5608 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5609 | struct msr_data msr_info; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5610 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5611 | msr_info.index = ecx; |
| 5612 | msr_info.host_initiated = false; |
| 5613 | if (vmx_get_msr(vcpu, &msr_info)) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5614 | trace_kvm_msr_read_ex(ecx); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5615 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5616 | return 1; |
| 5617 | } |
| 5618 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5619 | trace_kvm_msr_read(ecx, msr_info.data); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5620 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5621 | /* FIXME: handling of bits 32:63 of rax, rdx */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 5622 | vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u; |
| 5623 | vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5624 | skip_emulated_instruction(vcpu); |
| 5625 | return 1; |
| 5626 | } |
| 5627 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5628 | static int handle_wrmsr(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5629 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5630 | struct msr_data msr; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5631 | u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 5632 | u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u) |
| 5633 | | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5634 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 5635 | msr.data = data; |
| 5636 | msr.index = ecx; |
| 5637 | msr.host_initiated = false; |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 5638 | if (kvm_set_msr(vcpu, &msr) != 0) { |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5639 | trace_kvm_msr_write_ex(ecx, data); |
Avi Kivity | c1a5d4f | 2007-11-25 14:12:03 +0200 | [diff] [blame] | 5640 | kvm_inject_gp(vcpu, 0); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5641 | return 1; |
| 5642 | } |
| 5643 | |
Avi Kivity | 5920027 | 2010-01-25 19:47:02 +0200 | [diff] [blame] | 5644 | trace_kvm_msr_write(ecx, data); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5645 | skip_emulated_instruction(vcpu); |
| 5646 | return 1; |
| 5647 | } |
| 5648 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5649 | static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu) |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5650 | { |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5651 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 5652 | return 1; |
| 5653 | } |
| 5654 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5655 | static int handle_interrupt_window(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5656 | { |
Eddie Dong | 85f455f | 2007-07-06 12:20:49 +0300 | [diff] [blame] | 5657 | u32 cpu_based_vm_exec_control; |
| 5658 | |
| 5659 | /* clear pending irq */ |
| 5660 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5661 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 5662 | 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] | 5663 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5664 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5665 | |
Jan Kiszka | a26bf12 | 2008-09-26 09:30:45 +0200 | [diff] [blame] | 5666 | ++vcpu->stat.irq_window_exits; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5667 | return 1; |
| 5668 | } |
| 5669 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5670 | static int handle_halt(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5671 | { |
Avi Kivity | d3bef15 | 2007-06-05 15:53:05 +0300 | [diff] [blame] | 5672 | return kvm_emulate_halt(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5673 | } |
| 5674 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5675 | static int handle_vmcall(struct kvm_vcpu *vcpu) |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5676 | { |
Anthony Liguori | 7aa81cc | 2007-09-17 14:57:50 -0500 | [diff] [blame] | 5677 | kvm_emulate_hypercall(vcpu); |
| 5678 | return 1; |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 5679 | } |
| 5680 | |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5681 | static int handle_invd(struct kvm_vcpu *vcpu) |
| 5682 | { |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5683 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 5684 | } |
| 5685 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5686 | static int handle_invlpg(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5687 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5688 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5689 | |
| 5690 | kvm_mmu_invlpg(vcpu, exit_qualification); |
| 5691 | skip_emulated_instruction(vcpu); |
| 5692 | return 1; |
| 5693 | } |
| 5694 | |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 5695 | static int handle_rdpmc(struct kvm_vcpu *vcpu) |
| 5696 | { |
| 5697 | int err; |
| 5698 | |
| 5699 | err = kvm_rdpmc(vcpu); |
| 5700 | kvm_complete_insn_gp(vcpu, err); |
| 5701 | |
| 5702 | return 1; |
| 5703 | } |
| 5704 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5705 | static int handle_wbinvd(struct kvm_vcpu *vcpu) |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5706 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 5707 | kvm_emulate_wbinvd(vcpu); |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 5708 | return 1; |
| 5709 | } |
| 5710 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5711 | static int handle_xsetbv(struct kvm_vcpu *vcpu) |
| 5712 | { |
| 5713 | u64 new_bv = kvm_read_edx_eax(vcpu); |
| 5714 | u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5715 | |
| 5716 | if (kvm_set_xcr(vcpu, index, new_bv) == 0) |
| 5717 | skip_emulated_instruction(vcpu); |
| 5718 | return 1; |
| 5719 | } |
| 5720 | |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 5721 | static int handle_xsaves(struct kvm_vcpu *vcpu) |
| 5722 | { |
| 5723 | skip_emulated_instruction(vcpu); |
| 5724 | WARN(1, "this should never happen\n"); |
| 5725 | return 1; |
| 5726 | } |
| 5727 | |
| 5728 | static int handle_xrstors(struct kvm_vcpu *vcpu) |
| 5729 | { |
| 5730 | skip_emulated_instruction(vcpu); |
| 5731 | WARN(1, "this should never happen\n"); |
| 5732 | return 1; |
| 5733 | } |
| 5734 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5735 | static int handle_apic_access(struct kvm_vcpu *vcpu) |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5736 | { |
Kevin Tian | 58fbbf2 | 2011-08-30 13:56:17 +0300 | [diff] [blame] | 5737 | if (likely(fasteoi)) { |
| 5738 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5739 | int access_type, offset; |
| 5740 | |
| 5741 | access_type = exit_qualification & APIC_ACCESS_TYPE; |
| 5742 | offset = exit_qualification & APIC_ACCESS_OFFSET; |
| 5743 | /* |
| 5744 | * Sane guest uses MOV to write EOI, with written value |
| 5745 | * not cared. So make a short-circuit here by avoiding |
| 5746 | * heavy instruction emulation. |
| 5747 | */ |
| 5748 | if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) && |
| 5749 | (offset == APIC_EOI)) { |
| 5750 | kvm_lapic_set_eoi(vcpu); |
| 5751 | skip_emulated_instruction(vcpu); |
| 5752 | return 1; |
| 5753 | } |
| 5754 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5755 | return emulate_instruction(vcpu, 0) == EMULATE_DONE; |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 5756 | } |
| 5757 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 5758 | static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu) |
| 5759 | { |
| 5760 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5761 | int vector = exit_qualification & 0xff; |
| 5762 | |
| 5763 | /* EOI-induced VM exit is trap-like and thus no need to adjust IP */ |
| 5764 | kvm_apic_set_eoi_accelerated(vcpu, vector); |
| 5765 | return 1; |
| 5766 | } |
| 5767 | |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 5768 | static int handle_apic_write(struct kvm_vcpu *vcpu) |
| 5769 | { |
| 5770 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5771 | u32 offset = exit_qualification & 0xfff; |
| 5772 | |
| 5773 | /* APIC-write VM exit is trap-like and thus no need to adjust IP */ |
| 5774 | kvm_apic_write_nodecode(vcpu, offset); |
| 5775 | return 1; |
| 5776 | } |
| 5777 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5778 | static int handle_task_switch(struct kvm_vcpu *vcpu) |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5779 | { |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5780 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5781 | unsigned long exit_qualification; |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5782 | bool has_error_code = false; |
| 5783 | u32 error_code = 0; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5784 | u16 tss_selector; |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5785 | int reason, type, idt_v, idt_index; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5786 | |
| 5787 | idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK); |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5788 | idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5789 | type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5790 | |
| 5791 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 5792 | |
| 5793 | reason = (u32)exit_qualification >> 30; |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5794 | if (reason == TASK_SWITCH_GATE && idt_v) { |
| 5795 | switch (type) { |
| 5796 | case INTR_TYPE_NMI_INTR: |
| 5797 | vcpu->arch.nmi_injected = false; |
Avi Kivity | 654f06f | 2011-03-23 15:02:47 +0200 | [diff] [blame] | 5798 | vmx_set_nmi_mask(vcpu, true); |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5799 | break; |
| 5800 | case INTR_TYPE_EXT_INTR: |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 5801 | case INTR_TYPE_SOFT_INTR: |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5802 | kvm_clear_interrupt_queue(vcpu); |
| 5803 | break; |
| 5804 | case INTR_TYPE_HARD_EXCEPTION: |
Jan Kiszka | e269fb2 | 2010-04-14 15:51:09 +0200 | [diff] [blame] | 5805 | if (vmx->idt_vectoring_info & |
| 5806 | VECTORING_INFO_DELIVER_CODE_MASK) { |
| 5807 | has_error_code = true; |
| 5808 | error_code = |
| 5809 | vmcs_read32(IDT_VECTORING_ERROR_CODE); |
| 5810 | } |
| 5811 | /* fall through */ |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5812 | case INTR_TYPE_SOFT_EXCEPTION: |
| 5813 | kvm_clear_exception_queue(vcpu); |
| 5814 | break; |
| 5815 | default: |
| 5816 | break; |
| 5817 | } |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 5818 | } |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5819 | tss_selector = exit_qualification; |
| 5820 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 5821 | if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION && |
| 5822 | type != INTR_TYPE_EXT_INTR && |
| 5823 | type != INTR_TYPE_NMI_INTR)) |
| 5824 | skip_emulated_instruction(vcpu); |
| 5825 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 5826 | if (kvm_task_switch(vcpu, tss_selector, |
| 5827 | type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason, |
| 5828 | has_error_code, error_code) == EMULATE_FAIL) { |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5829 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5830 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5831 | vcpu->run->internal.ndata = 0; |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5832 | return 0; |
Gleb Natapov | acb5451 | 2010-04-15 21:03:50 +0300 | [diff] [blame] | 5833 | } |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5834 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 5835 | /* |
| 5836 | * TODO: What about debug traps on tss switch? |
| 5837 | * Are we supposed to inject them and update dr6? |
| 5838 | */ |
| 5839 | |
| 5840 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 5841 | } |
| 5842 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5843 | static int handle_ept_violation(struct kvm_vcpu *vcpu) |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5844 | { |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5845 | unsigned long exit_qualification; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5846 | gpa_t gpa; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5847 | u32 error_code; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5848 | int gla_validity; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5849 | |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5850 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5851 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5852 | gla_validity = (exit_qualification >> 7) & 0x3; |
| 5853 | if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) { |
| 5854 | printk(KERN_ERR "EPT: Handling EPT violation failed!\n"); |
| 5855 | printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n", |
| 5856 | (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS), |
Sheng Yang | f9c617f | 2009-03-25 10:08:52 +0800 | [diff] [blame] | 5857 | vmcs_readl(GUEST_LINEAR_ADDRESS)); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5858 | printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n", |
| 5859 | (long unsigned int)exit_qualification); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5860 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5861 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION; |
Avi Kivity | 596ae89 | 2009-06-03 14:12:10 +0300 | [diff] [blame] | 5862 | return 0; |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5863 | } |
| 5864 | |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5865 | /* |
| 5866 | * EPT violation happened while executing iret from NMI, |
| 5867 | * "blocked by NMI" bit has to be set before next VM entry. |
| 5868 | * There are errata that may cause this bit to not be set: |
| 5869 | * AAK134, BY25. |
| 5870 | */ |
Gleb Natapov | bcd1c29 | 2013-09-25 10:58:22 +0300 | [diff] [blame] | 5871 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 5872 | cpu_has_virtual_nmis() && |
| 5873 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
Gleb Natapov | 0be9c7a | 2013-09-15 11:07:23 +0300 | [diff] [blame] | 5874 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI); |
| 5875 | |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5876 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5877 | trace_kvm_page_fault(gpa, exit_qualification); |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5878 | |
| 5879 | /* It is a write fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5880 | error_code = exit_qualification & PFERR_WRITE_MASK; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5881 | /* It is a fetch fault? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5882 | error_code |= (exit_qualification << 2) & PFERR_FETCH_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5883 | /* ept page table is present? */ |
Tiejun Chen | 81ed33e | 2014-11-18 17:12:56 +0800 | [diff] [blame] | 5884 | error_code |= (exit_qualification >> 3) & PFERR_PRESENT_MASK; |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5885 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5886 | vcpu->arch.exit_qualification = exit_qualification; |
| 5887 | |
Xiao Guangrong | 4f5982a | 2012-06-20 15:58:04 +0800 | [diff] [blame] | 5888 | return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0); |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 5889 | } |
| 5890 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5891 | static int handle_ept_misconfig(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5892 | { |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 5893 | int ret; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5894 | gpa_t gpa; |
| 5895 | |
| 5896 | gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS); |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 5897 | 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] | 5898 | skip_emulated_instruction(vcpu); |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 5899 | trace_kvm_fast_mmio(gpa); |
Michael S. Tsirkin | 68c3b4d | 2014-03-31 21:50:44 +0300 | [diff] [blame] | 5900 | return 1; |
| 5901 | } |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5902 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5903 | ret = handle_mmio_page_fault_common(vcpu, gpa, true); |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5904 | if (likely(ret == RET_MMIO_PF_EMULATE)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5905 | return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) == |
| 5906 | EMULATE_DONE; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5907 | |
| 5908 | if (unlikely(ret == RET_MMIO_PF_INVALID)) |
| 5909 | return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0); |
| 5910 | |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 5911 | if (unlikely(ret == RET_MMIO_PF_RETRY)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5912 | return 1; |
| 5913 | |
| 5914 | /* It is the real ept misconfig */ |
Xiao Guangrong | f735d4a | 2015-08-05 12:04:27 +0800 | [diff] [blame] | 5915 | WARN_ON(1); |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5916 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5917 | vcpu->run->exit_reason = KVM_EXIT_UNKNOWN; |
| 5918 | vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 5919 | |
| 5920 | return 0; |
| 5921 | } |
| 5922 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 5923 | static int handle_nmi_window(struct kvm_vcpu *vcpu) |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5924 | { |
| 5925 | u32 cpu_based_vm_exec_control; |
| 5926 | |
| 5927 | /* clear pending NMI */ |
| 5928 | cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5929 | cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 5930 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control); |
| 5931 | ++vcpu->stat.nmi_window_exits; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 5932 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 5933 | |
| 5934 | return 1; |
| 5935 | } |
| 5936 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5937 | static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5938 | { |
Avi Kivity | 8b3079a | 2009-01-05 12:10:54 +0200 | [diff] [blame] | 5939 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 5940 | enum emulation_result err = EMULATE_DONE; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5941 | int ret = 1; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5942 | u32 cpu_exec_ctrl; |
| 5943 | bool intr_window_requested; |
Avi Kivity | b8405c1 | 2012-06-07 17:08:48 +0300 | [diff] [blame] | 5944 | unsigned count = 130; |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5945 | |
| 5946 | cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 5947 | intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5948 | |
Paolo Bonzini | 98eb2f8 | 2014-03-27 09:51:52 +0100 | [diff] [blame] | 5949 | while (vmx->emulation_required && count-- != 0) { |
Avi Kivity | bdea48e | 2012-06-10 18:07:57 +0300 | [diff] [blame] | 5950 | if (intr_window_requested && vmx_interrupt_allowed(vcpu)) |
Avi Kivity | 49e9d55 | 2010-09-19 14:34:08 +0200 | [diff] [blame] | 5951 | return handle_interrupt_window(&vmx->vcpu); |
| 5952 | |
Avi Kivity | de87dcdd | 2012-06-12 20:21:38 +0300 | [diff] [blame] | 5953 | if (test_bit(KVM_REQ_EVENT, &vcpu->requests)) |
| 5954 | return 1; |
| 5955 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5956 | err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5957 | |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5958 | if (err == EMULATE_USER_EXIT) { |
Paolo Bonzini | 94452b9 | 2013-08-27 15:41:42 +0200 | [diff] [blame] | 5959 | ++vcpu->stat.mmio_exits; |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5960 | ret = 0; |
| 5961 | goto out; |
| 5962 | } |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 5963 | |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5964 | if (err != EMULATE_DONE) { |
| 5965 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5966 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5967 | vcpu->run->internal.ndata = 0; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5968 | return 0; |
Avi Kivity | de5f70e | 2012-06-12 20:22:28 +0300 | [diff] [blame] | 5969 | } |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5970 | |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5971 | if (vcpu->arch.halt_request) { |
| 5972 | vcpu->arch.halt_request = 0; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5973 | ret = kvm_vcpu_halt(vcpu); |
Gleb Natapov | 8d76c49 | 2013-05-08 18:38:44 +0300 | [diff] [blame] | 5974 | goto out; |
| 5975 | } |
| 5976 | |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5977 | if (signal_pending(current)) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5978 | goto out; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5979 | if (need_resched()) |
| 5980 | schedule(); |
| 5981 | } |
| 5982 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 5983 | out: |
| 5984 | return ret; |
Mohammed Gamal | ea953ef | 2008-08-17 16:47:05 +0300 | [diff] [blame] | 5985 | } |
| 5986 | |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 5987 | static int __grow_ple_window(int val) |
| 5988 | { |
| 5989 | if (ple_window_grow < 1) |
| 5990 | return ple_window; |
| 5991 | |
| 5992 | val = min(val, ple_window_actual_max); |
| 5993 | |
| 5994 | if (ple_window_grow < ple_window) |
| 5995 | val *= ple_window_grow; |
| 5996 | else |
| 5997 | val += ple_window_grow; |
| 5998 | |
| 5999 | return val; |
| 6000 | } |
| 6001 | |
| 6002 | static int __shrink_ple_window(int val, int modifier, int minimum) |
| 6003 | { |
| 6004 | if (modifier < 1) |
| 6005 | return ple_window; |
| 6006 | |
| 6007 | if (modifier < ple_window) |
| 6008 | val /= modifier; |
| 6009 | else |
| 6010 | val -= modifier; |
| 6011 | |
| 6012 | return max(val, minimum); |
| 6013 | } |
| 6014 | |
| 6015 | static void grow_ple_window(struct kvm_vcpu *vcpu) |
| 6016 | { |
| 6017 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6018 | int old = vmx->ple_window; |
| 6019 | |
| 6020 | vmx->ple_window = __grow_ple_window(old); |
| 6021 | |
| 6022 | if (vmx->ple_window != old) |
| 6023 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6024 | |
| 6025 | 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] | 6026 | } |
| 6027 | |
| 6028 | static void shrink_ple_window(struct kvm_vcpu *vcpu) |
| 6029 | { |
| 6030 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6031 | int old = vmx->ple_window; |
| 6032 | |
| 6033 | vmx->ple_window = __shrink_ple_window(old, |
| 6034 | ple_window_shrink, ple_window); |
| 6035 | |
| 6036 | if (vmx->ple_window != old) |
| 6037 | vmx->ple_window_dirty = true; |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 6038 | |
| 6039 | 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] | 6040 | } |
| 6041 | |
| 6042 | /* |
| 6043 | * ple_window_actual_max is computed to be one grow_ple_window() below |
| 6044 | * ple_window_max. (See __grow_ple_window for the reason.) |
| 6045 | * This prevents overflows, because ple_window_max is int. |
| 6046 | * ple_window_max effectively rounded down to a multiple of ple_window_grow in |
| 6047 | * this process. |
| 6048 | * ple_window_max is also prevented from setting vmx->ple_window < ple_window. |
| 6049 | */ |
| 6050 | static void update_ple_window_actual_max(void) |
| 6051 | { |
| 6052 | ple_window_actual_max = |
| 6053 | __shrink_ple_window(max(ple_window_max, ple_window), |
| 6054 | ple_window_grow, INT_MIN); |
| 6055 | } |
| 6056 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 6057 | /* |
| 6058 | * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR. |
| 6059 | */ |
| 6060 | static void wakeup_handler(void) |
| 6061 | { |
| 6062 | struct kvm_vcpu *vcpu; |
| 6063 | int cpu = smp_processor_id(); |
| 6064 | |
| 6065 | spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6066 | list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu), |
| 6067 | blocked_vcpu_list) { |
| 6068 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 6069 | |
| 6070 | if (pi_test_on(pi_desc) == 1) |
| 6071 | kvm_vcpu_kick(vcpu); |
| 6072 | } |
| 6073 | spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); |
| 6074 | } |
| 6075 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6076 | static __init int hardware_setup(void) |
| 6077 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6078 | int r = -ENOMEM, i, msr; |
| 6079 | |
| 6080 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 6081 | |
| 6082 | for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) |
| 6083 | kvm_define_shared_msr(i, vmx_msr_index[i]); |
| 6084 | |
| 6085 | vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6086 | if (!vmx_io_bitmap_a) |
| 6087 | return r; |
| 6088 | |
| 6089 | vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6090 | if (!vmx_io_bitmap_b) |
| 6091 | goto out; |
| 6092 | |
| 6093 | vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6094 | if (!vmx_msr_bitmap_legacy) |
| 6095 | goto out1; |
| 6096 | |
| 6097 | vmx_msr_bitmap_legacy_x2apic = |
| 6098 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6099 | if (!vmx_msr_bitmap_legacy_x2apic) |
| 6100 | goto out2; |
| 6101 | |
| 6102 | vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6103 | if (!vmx_msr_bitmap_longmode) |
| 6104 | goto out3; |
| 6105 | |
| 6106 | vmx_msr_bitmap_longmode_x2apic = |
| 6107 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6108 | if (!vmx_msr_bitmap_longmode_x2apic) |
| 6109 | goto out4; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6110 | |
| 6111 | if (nested) { |
| 6112 | vmx_msr_bitmap_nested = |
| 6113 | (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6114 | if (!vmx_msr_bitmap_nested) |
| 6115 | goto out5; |
| 6116 | } |
| 6117 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6118 | vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6119 | if (!vmx_vmread_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6120 | goto out6; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6121 | |
| 6122 | vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL); |
| 6123 | if (!vmx_vmwrite_bitmap) |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6124 | goto out7; |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6125 | |
| 6126 | memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE); |
| 6127 | memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE); |
| 6128 | |
| 6129 | /* |
| 6130 | * Allow direct access to the PC debug port (it is often used for I/O |
| 6131 | * delays, but the vmexits simply slow things down). |
| 6132 | */ |
| 6133 | memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE); |
| 6134 | clear_bit(0x80, vmx_io_bitmap_a); |
| 6135 | |
| 6136 | memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE); |
| 6137 | |
| 6138 | memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE); |
| 6139 | memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6140 | if (nested) |
| 6141 | memset(vmx_msr_bitmap_nested, 0xff, PAGE_SIZE); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6142 | |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6143 | if (setup_vmcs_config(&vmcs_config) < 0) { |
| 6144 | r = -EIO; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6145 | goto out8; |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6146 | } |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6147 | |
| 6148 | if (boot_cpu_has(X86_FEATURE_NX)) |
| 6149 | kvm_enable_efer_bits(EFER_NX); |
| 6150 | |
| 6151 | if (!cpu_has_vmx_vpid()) |
| 6152 | enable_vpid = 0; |
| 6153 | if (!cpu_has_vmx_shadow_vmcs()) |
| 6154 | enable_shadow_vmcs = 0; |
| 6155 | if (enable_shadow_vmcs) |
| 6156 | init_vmcs_shadow_fields(); |
| 6157 | |
| 6158 | if (!cpu_has_vmx_ept() || |
| 6159 | !cpu_has_vmx_ept_4levels()) { |
| 6160 | enable_ept = 0; |
| 6161 | enable_unrestricted_guest = 0; |
| 6162 | enable_ept_ad_bits = 0; |
| 6163 | } |
| 6164 | |
| 6165 | if (!cpu_has_vmx_ept_ad_bits()) |
| 6166 | enable_ept_ad_bits = 0; |
| 6167 | |
| 6168 | if (!cpu_has_vmx_unrestricted_guest()) |
| 6169 | enable_unrestricted_guest = 0; |
| 6170 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6171 | if (!cpu_has_vmx_flexpriority()) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6172 | flexpriority_enabled = 0; |
| 6173 | |
Paolo Bonzini | ad15a29 | 2015-01-30 16:18:49 +0100 | [diff] [blame] | 6174 | /* |
| 6175 | * set_apic_access_page_addr() is used to reload apic access |
| 6176 | * page upon invalidation. No need to do anything if not |
| 6177 | * using the APIC_ACCESS_ADDR VMCS field. |
| 6178 | */ |
| 6179 | if (!flexpriority_enabled) |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6180 | kvm_x86_ops->set_apic_access_page_addr = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6181 | |
| 6182 | if (!cpu_has_vmx_tpr_shadow()) |
| 6183 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6184 | |
| 6185 | if (enable_ept && !cpu_has_vmx_ept_2m_page()) |
| 6186 | kvm_disable_largepages(); |
| 6187 | |
| 6188 | if (!cpu_has_vmx_ple()) |
| 6189 | ple_gap = 0; |
| 6190 | |
| 6191 | if (!cpu_has_vmx_apicv()) |
| 6192 | enable_apicv = 0; |
| 6193 | |
| 6194 | if (enable_apicv) |
| 6195 | kvm_x86_ops->update_cr8_intercept = NULL; |
| 6196 | else { |
| 6197 | kvm_x86_ops->hwapic_irr_update = NULL; |
Tiejun Chen | b4eef9b | 2014-12-22 10:32:57 +0100 | [diff] [blame] | 6198 | kvm_x86_ops->hwapic_isr_update = NULL; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6199 | kvm_x86_ops->deliver_posted_interrupt = NULL; |
| 6200 | kvm_x86_ops->sync_pir_to_irr = vmx_sync_pir_to_irr_dummy; |
| 6201 | } |
| 6202 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6203 | vmx_disable_intercept_for_msr(MSR_FS_BASE, false); |
| 6204 | vmx_disable_intercept_for_msr(MSR_GS_BASE, false); |
| 6205 | vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true); |
| 6206 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false); |
| 6207 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false); |
| 6208 | vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false); |
| 6209 | vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true); |
| 6210 | |
| 6211 | memcpy(vmx_msr_bitmap_legacy_x2apic, |
| 6212 | vmx_msr_bitmap_legacy, PAGE_SIZE); |
| 6213 | memcpy(vmx_msr_bitmap_longmode_x2apic, |
| 6214 | vmx_msr_bitmap_longmode, PAGE_SIZE); |
| 6215 | |
Wanpeng Li | 04bb92e | 2015-09-16 19:31:11 +0800 | [diff] [blame] | 6216 | set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */ |
| 6217 | |
Tiejun Chen | baa0352 | 2014-12-23 16:21:11 +0800 | [diff] [blame] | 6218 | if (enable_apicv) { |
| 6219 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 6220 | vmx_disable_intercept_msr_read_x2apic(msr); |
| 6221 | |
| 6222 | /* According SDM, in x2apic mode, the whole id reg is used. |
| 6223 | * But in KVM, it only use the highest eight bits. Need to |
| 6224 | * intercept it */ |
| 6225 | vmx_enable_intercept_msr_read_x2apic(0x802); |
| 6226 | /* TMCCT */ |
| 6227 | vmx_enable_intercept_msr_read_x2apic(0x839); |
| 6228 | /* TPR */ |
| 6229 | vmx_disable_intercept_msr_write_x2apic(0x808); |
| 6230 | /* EOI */ |
| 6231 | vmx_disable_intercept_msr_write_x2apic(0x80b); |
| 6232 | /* SELF-IPI */ |
| 6233 | vmx_disable_intercept_msr_write_x2apic(0x83f); |
| 6234 | } |
| 6235 | |
| 6236 | if (enable_ept) { |
| 6237 | kvm_mmu_set_mask_ptes(0ull, |
| 6238 | (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull, |
| 6239 | (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull, |
| 6240 | 0ull, VMX_EPT_EXECUTABLE_MASK); |
| 6241 | ept_set_mmio_spte_mask(); |
| 6242 | kvm_enable_tdp(); |
| 6243 | } else |
| 6244 | kvm_disable_tdp(); |
| 6245 | |
| 6246 | update_ple_window_actual_max(); |
| 6247 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 6248 | /* |
| 6249 | * Only enable PML when hardware supports PML feature, and both EPT |
| 6250 | * and EPT A/D bit features are enabled -- PML depends on them to work. |
| 6251 | */ |
| 6252 | if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml()) |
| 6253 | enable_pml = 0; |
| 6254 | |
| 6255 | if (!enable_pml) { |
| 6256 | kvm_x86_ops->slot_enable_log_dirty = NULL; |
| 6257 | kvm_x86_ops->slot_disable_log_dirty = NULL; |
| 6258 | kvm_x86_ops->flush_log_dirty = NULL; |
| 6259 | kvm_x86_ops->enable_log_dirty_pt_masked = NULL; |
| 6260 | } |
| 6261 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 6262 | kvm_set_posted_intr_wakeup_handler(wakeup_handler); |
| 6263 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6264 | return alloc_kvm_area(); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6265 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6266 | out8: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6267 | free_page((unsigned long)vmx_vmwrite_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6268 | out7: |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6269 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6270 | out6: |
| 6271 | if (nested) |
| 6272 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6273 | out5: |
| 6274 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6275 | out4: |
| 6276 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6277 | out3: |
| 6278 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6279 | out2: |
| 6280 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6281 | out1: |
| 6282 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6283 | out: |
| 6284 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6285 | |
| 6286 | return r; |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6287 | } |
| 6288 | |
| 6289 | static __exit void hardware_unsetup(void) |
| 6290 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6291 | free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic); |
| 6292 | free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic); |
| 6293 | free_page((unsigned long)vmx_msr_bitmap_legacy); |
| 6294 | free_page((unsigned long)vmx_msr_bitmap_longmode); |
| 6295 | free_page((unsigned long)vmx_io_bitmap_b); |
| 6296 | free_page((unsigned long)vmx_io_bitmap_a); |
| 6297 | free_page((unsigned long)vmx_vmwrite_bitmap); |
| 6298 | free_page((unsigned long)vmx_vmread_bitmap); |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 6299 | if (nested) |
| 6300 | free_page((unsigned long)vmx_msr_bitmap_nested); |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 6301 | |
Tiejun Chen | f2c7648 | 2014-10-28 10:14:47 +0800 | [diff] [blame] | 6302 | free_kvm_area(); |
| 6303 | } |
| 6304 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 6305 | /* |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6306 | * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE |
| 6307 | * exiting, so only get here on cpu with PAUSE-Loop-Exiting. |
| 6308 | */ |
Marcelo Tosatti | 9fb41ba | 2009-10-12 19:37:31 -0300 | [diff] [blame] | 6309 | static int handle_pause(struct kvm_vcpu *vcpu) |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6310 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 6311 | if (ple_gap) |
| 6312 | grow_ple_window(vcpu); |
| 6313 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6314 | skip_emulated_instruction(vcpu); |
| 6315 | kvm_vcpu_on_spin(vcpu); |
| 6316 | |
| 6317 | return 1; |
| 6318 | } |
| 6319 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6320 | static int handle_nop(struct kvm_vcpu *vcpu) |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6321 | { |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6322 | skip_emulated_instruction(vcpu); |
Sheng Yang | 5970867 | 2009-12-15 13:29:54 +0800 | [diff] [blame] | 6323 | return 1; |
| 6324 | } |
| 6325 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6326 | static int handle_mwait(struct kvm_vcpu *vcpu) |
| 6327 | { |
| 6328 | printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n"); |
| 6329 | return handle_nop(vcpu); |
| 6330 | } |
| 6331 | |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 6332 | static int handle_monitor_trap(struct kvm_vcpu *vcpu) |
| 6333 | { |
| 6334 | return 1; |
| 6335 | } |
| 6336 | |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 6337 | static int handle_monitor(struct kvm_vcpu *vcpu) |
| 6338 | { |
| 6339 | printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n"); |
| 6340 | return handle_nop(vcpu); |
| 6341 | } |
| 6342 | |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 6343 | /* |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6344 | * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12. |
| 6345 | * We could reuse a single VMCS for all the L2 guests, but we also want the |
| 6346 | * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this |
| 6347 | * allows keeping them loaded on the processor, and in the future will allow |
| 6348 | * optimizations where prepare_vmcs02 doesn't need to set all the fields on |
| 6349 | * every entry if they never change. |
| 6350 | * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE |
| 6351 | * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first. |
| 6352 | * |
| 6353 | * The following functions allocate and free a vmcs02 in this pool. |
| 6354 | */ |
| 6355 | |
| 6356 | /* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */ |
| 6357 | static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx) |
| 6358 | { |
| 6359 | struct vmcs02_list *item; |
| 6360 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6361 | if (item->vmptr == vmx->nested.current_vmptr) { |
| 6362 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6363 | return &item->vmcs02; |
| 6364 | } |
| 6365 | |
| 6366 | if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) { |
| 6367 | /* Recycle the least recently used VMCS. */ |
| 6368 | item = list_entry(vmx->nested.vmcs02_pool.prev, |
| 6369 | struct vmcs02_list, list); |
| 6370 | item->vmptr = vmx->nested.current_vmptr; |
| 6371 | list_move(&item->list, &vmx->nested.vmcs02_pool); |
| 6372 | return &item->vmcs02; |
| 6373 | } |
| 6374 | |
| 6375 | /* Create a new VMCS */ |
Ioan Orghici | 0fa24ce | 2013-03-10 15:46:00 +0200 | [diff] [blame] | 6376 | item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6377 | if (!item) |
| 6378 | return NULL; |
| 6379 | item->vmcs02.vmcs = alloc_vmcs(); |
| 6380 | if (!item->vmcs02.vmcs) { |
| 6381 | kfree(item); |
| 6382 | return NULL; |
| 6383 | } |
| 6384 | loaded_vmcs_init(&item->vmcs02); |
| 6385 | item->vmptr = vmx->nested.current_vmptr; |
| 6386 | list_add(&(item->list), &(vmx->nested.vmcs02_pool)); |
| 6387 | vmx->nested.vmcs02_num++; |
| 6388 | return &item->vmcs02; |
| 6389 | } |
| 6390 | |
| 6391 | /* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */ |
| 6392 | static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr) |
| 6393 | { |
| 6394 | struct vmcs02_list *item; |
| 6395 | list_for_each_entry(item, &vmx->nested.vmcs02_pool, list) |
| 6396 | if (item->vmptr == vmptr) { |
| 6397 | free_loaded_vmcs(&item->vmcs02); |
| 6398 | list_del(&item->list); |
| 6399 | kfree(item); |
| 6400 | vmx->nested.vmcs02_num--; |
| 6401 | return; |
| 6402 | } |
| 6403 | } |
| 6404 | |
| 6405 | /* |
| 6406 | * Free all VMCSs saved for this vcpu, except the one pointed by |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6407 | * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs |
| 6408 | * must be &vmx->vmcs01. |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6409 | */ |
| 6410 | static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx) |
| 6411 | { |
| 6412 | struct vmcs02_list *item, *n; |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6413 | |
| 6414 | WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6415 | list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) { |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6416 | /* |
| 6417 | * Something will leak if the above WARN triggers. Better than |
| 6418 | * a use-after-free. |
| 6419 | */ |
| 6420 | if (vmx->loaded_vmcs == &item->vmcs02) |
| 6421 | continue; |
| 6422 | |
| 6423 | free_loaded_vmcs(&item->vmcs02); |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6424 | list_del(&item->list); |
| 6425 | kfree(item); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 6426 | vmx->nested.vmcs02_num--; |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6427 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6428 | } |
| 6429 | |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6430 | /* |
| 6431 | * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(), |
| 6432 | * set the success or error code of an emulated VMX instruction, as specified |
| 6433 | * by Vol 2B, VMX Instruction Reference, "Conventions". |
| 6434 | */ |
| 6435 | static void nested_vmx_succeed(struct kvm_vcpu *vcpu) |
| 6436 | { |
| 6437 | vmx_set_rflags(vcpu, vmx_get_rflags(vcpu) |
| 6438 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6439 | X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF)); |
| 6440 | } |
| 6441 | |
| 6442 | static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu) |
| 6443 | { |
| 6444 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6445 | & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF | |
| 6446 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6447 | | X86_EFLAGS_CF); |
| 6448 | } |
| 6449 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6450 | static void nested_vmx_failValid(struct kvm_vcpu *vcpu, |
Arthur Chunqi Li | 0658fba | 2013-07-04 15:03:32 +0800 | [diff] [blame] | 6451 | u32 vm_instruction_error) |
| 6452 | { |
| 6453 | if (to_vmx(vcpu)->nested.current_vmptr == -1ull) { |
| 6454 | /* |
| 6455 | * failValid writes the error number to the current VMCS, which |
| 6456 | * can't be done there isn't a current VMCS. |
| 6457 | */ |
| 6458 | nested_vmx_failInvalid(vcpu); |
| 6459 | return; |
| 6460 | } |
| 6461 | vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu) |
| 6462 | & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF | |
| 6463 | X86_EFLAGS_SF | X86_EFLAGS_OF)) |
| 6464 | | X86_EFLAGS_ZF); |
| 6465 | get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error; |
| 6466 | /* |
| 6467 | * We don't need to force a shadow sync because |
| 6468 | * VM_INSTRUCTION_ERROR is not shadowed |
| 6469 | */ |
| 6470 | } |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6471 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 6472 | static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator) |
| 6473 | { |
| 6474 | /* TODO: not to reset guest simply here. */ |
| 6475 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6476 | pr_warn("kvm: nested vmx abort, indicator %d\n", indicator); |
| 6477 | } |
| 6478 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6479 | static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer) |
| 6480 | { |
| 6481 | struct vcpu_vmx *vmx = |
| 6482 | container_of(timer, struct vcpu_vmx, nested.preemption_timer); |
| 6483 | |
| 6484 | vmx->nested.preemption_timer_expired = true; |
| 6485 | kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu); |
| 6486 | kvm_vcpu_kick(&vmx->vcpu); |
| 6487 | |
| 6488 | return HRTIMER_NORESTART; |
| 6489 | } |
| 6490 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6491 | /* |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6492 | * Decode the memory-address operand of a vmx instruction, as recorded on an |
| 6493 | * exit caused by such an instruction (run by a guest hypervisor). |
| 6494 | * On success, returns 0. When the operand is invalid, returns 1 and throws |
| 6495 | * #UD or #GP. |
| 6496 | */ |
| 6497 | static int get_vmx_mem_address(struct kvm_vcpu *vcpu, |
| 6498 | unsigned long exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6499 | u32 vmx_instruction_info, bool wr, gva_t *ret) |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6500 | { |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6501 | gva_t off; |
| 6502 | bool exn; |
| 6503 | struct kvm_segment s; |
| 6504 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6505 | /* |
| 6506 | * According to Vol. 3B, "Information for VM Exits Due to Instruction |
| 6507 | * Execution", on an exit, vmx_instruction_info holds most of the |
| 6508 | * addressing components of the operand. Only the displacement part |
| 6509 | * is put in exit_qualification (see 3B, "Basic VM-Exit Information"). |
| 6510 | * For how an actual address is calculated from all these components, |
| 6511 | * refer to Vol. 1, "Operand Addressing". |
| 6512 | */ |
| 6513 | int scaling = vmx_instruction_info & 3; |
| 6514 | int addr_size = (vmx_instruction_info >> 7) & 7; |
| 6515 | bool is_reg = vmx_instruction_info & (1u << 10); |
| 6516 | int seg_reg = (vmx_instruction_info >> 15) & 7; |
| 6517 | int index_reg = (vmx_instruction_info >> 18) & 0xf; |
| 6518 | bool index_is_valid = !(vmx_instruction_info & (1u << 22)); |
| 6519 | int base_reg = (vmx_instruction_info >> 23) & 0xf; |
| 6520 | bool base_is_valid = !(vmx_instruction_info & (1u << 27)); |
| 6521 | |
| 6522 | if (is_reg) { |
| 6523 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6524 | return 1; |
| 6525 | } |
| 6526 | |
| 6527 | /* Addr = segment_base + offset */ |
| 6528 | /* offset = base + [index * scale] + displacement */ |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6529 | off = exit_qualification; /* holds the displacement */ |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6530 | if (base_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6531 | off += kvm_register_read(vcpu, base_reg); |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6532 | if (index_is_valid) |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6533 | off += kvm_register_read(vcpu, index_reg)<<scaling; |
| 6534 | vmx_get_segment(vcpu, &s, seg_reg); |
| 6535 | *ret = s.base + off; |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6536 | |
| 6537 | if (addr_size == 1) /* 32 bit */ |
| 6538 | *ret &= 0xffffffff; |
| 6539 | |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6540 | /* Checks for #GP/#SS exceptions. */ |
| 6541 | exn = false; |
| 6542 | if (is_protmode(vcpu)) { |
| 6543 | /* Protected mode: apply checks for segment validity in the |
| 6544 | * following order: |
| 6545 | * - segment type check (#GP(0) may be thrown) |
| 6546 | * - usability check (#GP(0)/#SS(0)) |
| 6547 | * - limit check (#GP(0)/#SS(0)) |
| 6548 | */ |
| 6549 | if (wr) |
| 6550 | /* #GP(0) if the destination operand is located in a |
| 6551 | * read-only data segment or any code segment. |
| 6552 | */ |
| 6553 | exn = ((s.type & 0xa) == 0 || (s.type & 8)); |
| 6554 | else |
| 6555 | /* #GP(0) if the source operand is located in an |
| 6556 | * execute-only code segment |
| 6557 | */ |
| 6558 | exn = ((s.type & 0xa) == 8); |
| 6559 | } |
| 6560 | if (exn) { |
| 6561 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 6562 | return 1; |
| 6563 | } |
| 6564 | if (is_long_mode(vcpu)) { |
| 6565 | /* Long mode: #GP(0)/#SS(0) if the memory address is in a |
| 6566 | * non-canonical form. This is an only check for long mode. |
| 6567 | */ |
| 6568 | exn = is_noncanonical_address(*ret); |
| 6569 | } else if (is_protmode(vcpu)) { |
| 6570 | /* Protected mode: #GP(0)/#SS(0) if the segment is unusable. |
| 6571 | */ |
| 6572 | exn = (s.unusable != 0); |
| 6573 | /* Protected mode: #GP(0)/#SS(0) if the memory |
| 6574 | * operand is outside the segment limit. |
| 6575 | */ |
| 6576 | exn = exn || (off + sizeof(u64) > s.limit); |
| 6577 | } |
| 6578 | if (exn) { |
| 6579 | kvm_queue_exception_e(vcpu, |
| 6580 | seg_reg == VCPU_SREG_SS ? |
| 6581 | SS_VECTOR : GP_VECTOR, |
| 6582 | 0); |
| 6583 | return 1; |
| 6584 | } |
| 6585 | |
Bandan Das | 19677e3 | 2014-05-06 02:19:15 -0400 | [diff] [blame] | 6586 | return 0; |
| 6587 | } |
| 6588 | |
| 6589 | /* |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6590 | * This function performs the various checks including |
| 6591 | * - if it's 4KB aligned |
| 6592 | * - No bits beyond the physical address width are set |
| 6593 | * - Returns 0 on success or else 1 |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6594 | * (Intel SDM Section 30.3) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6595 | */ |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6596 | static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason, |
| 6597 | gpa_t *vmpointer) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6598 | { |
| 6599 | gva_t gva; |
| 6600 | gpa_t vmptr; |
| 6601 | struct x86_exception e; |
| 6602 | struct page *page; |
| 6603 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6604 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 6605 | |
| 6606 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 6607 | vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6608 | return 1; |
| 6609 | |
| 6610 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr, |
| 6611 | sizeof(vmptr), &e)) { |
| 6612 | kvm_inject_page_fault(vcpu, &e); |
| 6613 | return 1; |
| 6614 | } |
| 6615 | |
| 6616 | switch (exit_reason) { |
| 6617 | case EXIT_REASON_VMON: |
| 6618 | /* |
| 6619 | * SDM 3: 24.11.5 |
| 6620 | * The first 4 bytes of VMXON region contain the supported |
| 6621 | * VMCS revision identifier |
| 6622 | * |
| 6623 | * Note - IA32_VMX_BASIC[48] will never be 1 |
| 6624 | * for the nested case; |
| 6625 | * which replaces physical address width with 32 |
| 6626 | * |
| 6627 | */ |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6628 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6629 | nested_vmx_failInvalid(vcpu); |
| 6630 | skip_emulated_instruction(vcpu); |
| 6631 | return 1; |
| 6632 | } |
| 6633 | |
| 6634 | page = nested_get_page(vcpu, vmptr); |
| 6635 | if (page == NULL || |
| 6636 | *(u32 *)kmap(page) != VMCS12_REVISION) { |
| 6637 | nested_vmx_failInvalid(vcpu); |
| 6638 | kunmap(page); |
| 6639 | skip_emulated_instruction(vcpu); |
| 6640 | return 1; |
| 6641 | } |
| 6642 | kunmap(page); |
| 6643 | vmx->nested.vmxon_ptr = vmptr; |
| 6644 | break; |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6645 | case EXIT_REASON_VMCLEAR: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6646 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6647 | nested_vmx_failValid(vcpu, |
| 6648 | VMXERR_VMCLEAR_INVALID_ADDRESS); |
| 6649 | skip_emulated_instruction(vcpu); |
| 6650 | return 1; |
| 6651 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6652 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6653 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6654 | nested_vmx_failValid(vcpu, |
| 6655 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6656 | skip_emulated_instruction(vcpu); |
| 6657 | return 1; |
| 6658 | } |
| 6659 | break; |
| 6660 | case EXIT_REASON_VMPTRLD: |
Fabian Frederick | bc39c4d | 2014-06-14 23:44:29 +0200 | [diff] [blame] | 6661 | if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) { |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6662 | nested_vmx_failValid(vcpu, |
| 6663 | VMXERR_VMPTRLD_INVALID_ADDRESS); |
| 6664 | skip_emulated_instruction(vcpu); |
| 6665 | return 1; |
| 6666 | } |
| 6667 | |
| 6668 | if (vmptr == vmx->nested.vmxon_ptr) { |
| 6669 | nested_vmx_failValid(vcpu, |
| 6670 | VMXERR_VMCLEAR_VMXON_POINTER); |
| 6671 | skip_emulated_instruction(vcpu); |
| 6672 | return 1; |
| 6673 | } |
| 6674 | break; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6675 | default: |
| 6676 | return 1; /* shouldn't happen */ |
| 6677 | } |
| 6678 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6679 | if (vmpointer) |
| 6680 | *vmpointer = vmptr; |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6681 | return 0; |
| 6682 | } |
| 6683 | |
| 6684 | /* |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6685 | * Emulate the VMXON instruction. |
| 6686 | * Currently, we just remember that VMX is active, and do not save or even |
| 6687 | * inspect the argument to VMXON (the so-called "VMXON pointer") because we |
| 6688 | * do not currently need to store anything in that guest-allocated memory |
| 6689 | * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their |
| 6690 | * argument is different from the VMXON pointer (which the spec says they do). |
| 6691 | */ |
| 6692 | static int handle_vmon(struct kvm_vcpu *vcpu) |
| 6693 | { |
| 6694 | struct kvm_segment cs; |
| 6695 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6696 | struct vmcs *shadow_vmcs; |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6697 | const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED |
| 6698 | | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX; |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6699 | |
| 6700 | /* The Intel VMX Instruction Reference lists a bunch of bits that |
| 6701 | * are prerequisite to running VMXON, most notably cr4.VMXE must be |
| 6702 | * set to 1 (see vmx_set_cr4() for when we allow the guest to set this). |
| 6703 | * Otherwise, we should fail with #UD. We test these now: |
| 6704 | */ |
| 6705 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) || |
| 6706 | !kvm_read_cr0_bits(vcpu, X86_CR0_PE) || |
| 6707 | (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) { |
| 6708 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6709 | return 1; |
| 6710 | } |
| 6711 | |
| 6712 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6713 | if (is_long_mode(vcpu) && !cs.l) { |
| 6714 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6715 | return 1; |
| 6716 | } |
| 6717 | |
| 6718 | if (vmx_get_cpl(vcpu)) { |
| 6719 | kvm_inject_gp(vcpu, 0); |
| 6720 | return 1; |
| 6721 | } |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6722 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6723 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL)) |
Bandan Das | 3573e22 | 2014-05-06 02:19:16 -0400 | [diff] [blame] | 6724 | return 1; |
| 6725 | |
Abel Gordon | 145c28d | 2013-04-18 14:36:55 +0300 | [diff] [blame] | 6726 | if (vmx->nested.vmxon) { |
| 6727 | nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION); |
| 6728 | skip_emulated_instruction(vcpu); |
| 6729 | return 1; |
| 6730 | } |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 6731 | |
| 6732 | if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES) |
| 6733 | != VMXON_NEEDED_FEATURES) { |
| 6734 | kvm_inject_gp(vcpu, 0); |
| 6735 | return 1; |
| 6736 | } |
| 6737 | |
Abel Gordon | 8de4883 | 2013-04-18 14:37:25 +0300 | [diff] [blame] | 6738 | if (enable_shadow_vmcs) { |
| 6739 | shadow_vmcs = alloc_vmcs(); |
| 6740 | if (!shadow_vmcs) |
| 6741 | return -ENOMEM; |
| 6742 | /* mark vmcs as shadow */ |
| 6743 | shadow_vmcs->revision_id |= (1u << 31); |
| 6744 | /* init shadow vmcs */ |
| 6745 | vmcs_clear(shadow_vmcs); |
| 6746 | vmx->nested.current_shadow_vmcs = shadow_vmcs; |
| 6747 | } |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6748 | |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6749 | INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool)); |
| 6750 | vmx->nested.vmcs02_num = 0; |
| 6751 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 6752 | hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC, |
| 6753 | HRTIMER_MODE_REL); |
| 6754 | vmx->nested.preemption_timer.function = vmx_preemption_timer_fn; |
| 6755 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6756 | vmx->nested.vmxon = true; |
| 6757 | |
| 6758 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6759 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6760 | return 1; |
| 6761 | } |
| 6762 | |
| 6763 | /* |
| 6764 | * Intel's VMX Instruction Reference specifies a common set of prerequisites |
| 6765 | * for running VMX instructions (except VMXON, whose prerequisites are |
| 6766 | * slightly different). It also specifies what exception to inject otherwise. |
| 6767 | */ |
| 6768 | static int nested_vmx_check_permission(struct kvm_vcpu *vcpu) |
| 6769 | { |
| 6770 | struct kvm_segment cs; |
| 6771 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 6772 | |
| 6773 | if (!vmx->nested.vmxon) { |
| 6774 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6775 | return 0; |
| 6776 | } |
| 6777 | |
| 6778 | vmx_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6779 | if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) || |
| 6780 | (is_long_mode(vcpu) && !cs.l)) { |
| 6781 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6782 | return 0; |
| 6783 | } |
| 6784 | |
| 6785 | if (vmx_get_cpl(vcpu)) { |
| 6786 | kvm_inject_gp(vcpu, 0); |
| 6787 | return 0; |
| 6788 | } |
| 6789 | |
| 6790 | return 1; |
| 6791 | } |
| 6792 | |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6793 | static inline void nested_release_vmcs12(struct vcpu_vmx *vmx) |
| 6794 | { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6795 | if (vmx->nested.current_vmptr == -1ull) |
| 6796 | return; |
| 6797 | |
| 6798 | /* current_vmptr and current_vmcs12 are always set/reset together */ |
| 6799 | if (WARN_ON(vmx->nested.current_vmcs12 == NULL)) |
| 6800 | return; |
| 6801 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6802 | if (enable_shadow_vmcs) { |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6803 | /* copy to memory all shadowed fields in case |
| 6804 | they were modified */ |
| 6805 | copy_shadow_to_vmcs12(vmx); |
| 6806 | vmx->nested.sync_shadow_vmcs = false; |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 6807 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, |
| 6808 | SECONDARY_EXEC_SHADOW_VMCS); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6809 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 6810 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6811 | vmx->nested.posted_intr_nv = -1; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6812 | kunmap(vmx->nested.current_vmcs12_page); |
| 6813 | nested_release_page(vmx->nested.current_vmcs12_page); |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6814 | vmx->nested.current_vmptr = -1ull; |
| 6815 | vmx->nested.current_vmcs12 = NULL; |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6816 | } |
| 6817 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6818 | /* |
| 6819 | * Free whatever needs to be freed from vmx->nested when L1 goes down, or |
| 6820 | * just stops using VMX. |
| 6821 | */ |
| 6822 | static void free_nested(struct vcpu_vmx *vmx) |
| 6823 | { |
| 6824 | if (!vmx->nested.vmxon) |
| 6825 | return; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6826 | |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6827 | vmx->nested.vmxon = false; |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6828 | nested_release_vmcs12(vmx); |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6829 | if (enable_shadow_vmcs) |
| 6830 | free_vmcs(vmx->nested.current_shadow_vmcs); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6831 | /* Unpin physical memory we referred to in current vmcs02 */ |
| 6832 | if (vmx->nested.apic_access_page) { |
| 6833 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6834 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 6835 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6836 | if (vmx->nested.virtual_apic_page) { |
| 6837 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 6838 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 6839 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 6840 | if (vmx->nested.pi_desc_page) { |
| 6841 | kunmap(vmx->nested.pi_desc_page); |
| 6842 | nested_release_page(vmx->nested.pi_desc_page); |
| 6843 | vmx->nested.pi_desc_page = NULL; |
| 6844 | vmx->nested.pi_desc = NULL; |
| 6845 | } |
Nadav Har'El | ff2f6fe | 2011-05-25 23:05:27 +0300 | [diff] [blame] | 6846 | |
| 6847 | nested_free_all_saved_vmcss(vmx); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6848 | } |
| 6849 | |
| 6850 | /* Emulate the VMXOFF instruction */ |
| 6851 | static int handle_vmoff(struct kvm_vcpu *vcpu) |
| 6852 | { |
| 6853 | if (!nested_vmx_check_permission(vcpu)) |
| 6854 | return 1; |
| 6855 | free_nested(to_vmx(vcpu)); |
| 6856 | skip_emulated_instruction(vcpu); |
Arthur Chunqi Li | a25eb11 | 2013-07-04 15:03:33 +0800 | [diff] [blame] | 6857 | nested_vmx_succeed(vcpu); |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 6858 | return 1; |
| 6859 | } |
| 6860 | |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6861 | /* Emulate the VMCLEAR instruction */ |
| 6862 | static int handle_vmclear(struct kvm_vcpu *vcpu) |
| 6863 | { |
| 6864 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6865 | gpa_t vmptr; |
| 6866 | struct vmcs12 *vmcs12; |
| 6867 | struct page *page; |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6868 | |
| 6869 | if (!nested_vmx_check_permission(vcpu)) |
| 6870 | return 1; |
| 6871 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 6872 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr)) |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6873 | return 1; |
| 6874 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 6875 | if (vmptr == vmx->nested.current_vmptr) |
Abel Gordon | e7953d7 | 2013-04-18 14:37:55 +0300 | [diff] [blame] | 6876 | nested_release_vmcs12(vmx); |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 6877 | |
| 6878 | page = nested_get_page(vcpu, vmptr); |
| 6879 | if (page == NULL) { |
| 6880 | /* |
| 6881 | * For accurate processor emulation, VMCLEAR beyond available |
| 6882 | * physical memory should do nothing at all. However, it is |
| 6883 | * possible that a nested vmx bug, not a guest hypervisor bug, |
| 6884 | * resulted in this case, so let's shut down before doing any |
| 6885 | * more damage: |
| 6886 | */ |
| 6887 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6888 | return 1; |
| 6889 | } |
| 6890 | vmcs12 = kmap(page); |
| 6891 | vmcs12->launch_state = 0; |
| 6892 | kunmap(page); |
| 6893 | nested_release_page(page); |
| 6894 | |
| 6895 | nested_free_vmcs02(vmx, vmptr); |
| 6896 | |
| 6897 | skip_emulated_instruction(vcpu); |
| 6898 | nested_vmx_succeed(vcpu); |
| 6899 | return 1; |
| 6900 | } |
| 6901 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 6902 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch); |
| 6903 | |
| 6904 | /* Emulate the VMLAUNCH instruction */ |
| 6905 | static int handle_vmlaunch(struct kvm_vcpu *vcpu) |
| 6906 | { |
| 6907 | return nested_vmx_run(vcpu, true); |
| 6908 | } |
| 6909 | |
| 6910 | /* Emulate the VMRESUME instruction */ |
| 6911 | static int handle_vmresume(struct kvm_vcpu *vcpu) |
| 6912 | { |
| 6913 | |
| 6914 | return nested_vmx_run(vcpu, false); |
| 6915 | } |
| 6916 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6917 | enum vmcs_field_type { |
| 6918 | VMCS_FIELD_TYPE_U16 = 0, |
| 6919 | VMCS_FIELD_TYPE_U64 = 1, |
| 6920 | VMCS_FIELD_TYPE_U32 = 2, |
| 6921 | VMCS_FIELD_TYPE_NATURAL_WIDTH = 3 |
| 6922 | }; |
| 6923 | |
| 6924 | static inline int vmcs_field_type(unsigned long field) |
| 6925 | { |
| 6926 | if (0x1 & field) /* the *_HIGH fields are all 32 bit */ |
| 6927 | return VMCS_FIELD_TYPE_U32; |
| 6928 | return (field >> 13) & 0x3 ; |
| 6929 | } |
| 6930 | |
| 6931 | static inline int vmcs_field_readonly(unsigned long field) |
| 6932 | { |
| 6933 | return (((field >> 10) & 0x3) == 1); |
| 6934 | } |
| 6935 | |
| 6936 | /* |
| 6937 | * Read a vmcs12 field. Since these can have varying lengths and we return |
| 6938 | * one type, we chose the biggest type (u64) and zero-extend the return value |
| 6939 | * to that size. Note that the caller, handle_vmread, might need to use only |
| 6940 | * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of |
| 6941 | * 64-bit fields are to be returned). |
| 6942 | */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6943 | static inline int vmcs12_read_any(struct kvm_vcpu *vcpu, |
| 6944 | unsigned long field, u64 *ret) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6945 | { |
| 6946 | short offset = vmcs_field_to_offset(field); |
| 6947 | char *p; |
| 6948 | |
| 6949 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6950 | return offset; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6951 | |
| 6952 | p = ((char *)(get_vmcs12(vcpu))) + offset; |
| 6953 | |
| 6954 | switch (vmcs_field_type(field)) { |
| 6955 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 6956 | *ret = *((natural_width *)p); |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6957 | return 0; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6958 | case VMCS_FIELD_TYPE_U16: |
| 6959 | *ret = *((u16 *)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_U32: |
| 6962 | *ret = *((u32 *)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_U64: |
| 6965 | *ret = *((u64 *)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 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6968 | WARN_ON(1); |
| 6969 | return -ENOENT; |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 6970 | } |
| 6971 | } |
| 6972 | |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6973 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6974 | static inline int vmcs12_write_any(struct kvm_vcpu *vcpu, |
| 6975 | unsigned long field, u64 field_value){ |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6976 | short offset = vmcs_field_to_offset(field); |
| 6977 | char *p = ((char *) get_vmcs12(vcpu)) + offset; |
| 6978 | if (offset < 0) |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6979 | return offset; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6980 | |
| 6981 | switch (vmcs_field_type(field)) { |
| 6982 | case VMCS_FIELD_TYPE_U16: |
| 6983 | *(u16 *)p = field_value; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6984 | return 0; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6985 | case VMCS_FIELD_TYPE_U32: |
| 6986 | *(u32 *)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_U64: |
| 6989 | *(u64 *)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_NATURAL_WIDTH: |
| 6992 | *(natural_width *)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 | default: |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 6995 | WARN_ON(1); |
| 6996 | return -ENOENT; |
Abel Gordon | 20b97fe | 2013-04-18 14:36:25 +0300 | [diff] [blame] | 6997 | } |
| 6998 | |
| 6999 | } |
| 7000 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7001 | static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx) |
| 7002 | { |
| 7003 | int i; |
| 7004 | unsigned long field; |
| 7005 | u64 field_value; |
| 7006 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7007 | const unsigned long *fields = shadow_read_write_fields; |
| 7008 | const int num_fields = max_shadow_read_write_fields; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7009 | |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7010 | preempt_disable(); |
| 7011 | |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7012 | vmcs_load(shadow_vmcs); |
| 7013 | |
| 7014 | for (i = 0; i < num_fields; i++) { |
| 7015 | field = fields[i]; |
| 7016 | switch (vmcs_field_type(field)) { |
| 7017 | case VMCS_FIELD_TYPE_U16: |
| 7018 | field_value = vmcs_read16(field); |
| 7019 | break; |
| 7020 | case VMCS_FIELD_TYPE_U32: |
| 7021 | field_value = vmcs_read32(field); |
| 7022 | break; |
| 7023 | case VMCS_FIELD_TYPE_U64: |
| 7024 | field_value = vmcs_read64(field); |
| 7025 | break; |
| 7026 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7027 | field_value = vmcs_readl(field); |
| 7028 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7029 | default: |
| 7030 | WARN_ON(1); |
| 7031 | continue; |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7032 | } |
| 7033 | vmcs12_write_any(&vmx->vcpu, field, field_value); |
| 7034 | } |
| 7035 | |
| 7036 | vmcs_clear(shadow_vmcs); |
| 7037 | vmcs_load(vmx->loaded_vmcs->vmcs); |
Jan Kiszka | 282da87 | 2014-10-08 18:05:39 +0200 | [diff] [blame] | 7038 | |
| 7039 | preempt_enable(); |
Abel Gordon | 16f5b90 | 2013-04-18 14:38:25 +0300 | [diff] [blame] | 7040 | } |
| 7041 | |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7042 | static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx) |
| 7043 | { |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7044 | const unsigned long *fields[] = { |
| 7045 | shadow_read_write_fields, |
| 7046 | shadow_read_only_fields |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7047 | }; |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7048 | const int max_fields[] = { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7049 | max_shadow_read_write_fields, |
| 7050 | max_shadow_read_only_fields |
| 7051 | }; |
| 7052 | int i, q; |
| 7053 | unsigned long field; |
| 7054 | u64 field_value = 0; |
| 7055 | struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs; |
| 7056 | |
| 7057 | vmcs_load(shadow_vmcs); |
| 7058 | |
Mathias Krause | c2bae89 | 2013-06-26 20:36:21 +0200 | [diff] [blame] | 7059 | for (q = 0; q < ARRAY_SIZE(fields); q++) { |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7060 | for (i = 0; i < max_fields[q]; i++) { |
| 7061 | field = fields[q][i]; |
| 7062 | vmcs12_read_any(&vmx->vcpu, field, &field_value); |
| 7063 | |
| 7064 | switch (vmcs_field_type(field)) { |
| 7065 | case VMCS_FIELD_TYPE_U16: |
| 7066 | vmcs_write16(field, (u16)field_value); |
| 7067 | break; |
| 7068 | case VMCS_FIELD_TYPE_U32: |
| 7069 | vmcs_write32(field, (u32)field_value); |
| 7070 | break; |
| 7071 | case VMCS_FIELD_TYPE_U64: |
| 7072 | vmcs_write64(field, (u64)field_value); |
| 7073 | break; |
| 7074 | case VMCS_FIELD_TYPE_NATURAL_WIDTH: |
| 7075 | vmcs_writel(field, (long)field_value); |
| 7076 | break; |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7077 | default: |
| 7078 | WARN_ON(1); |
| 7079 | break; |
Abel Gordon | c311442 | 2013-04-18 14:38:55 +0300 | [diff] [blame] | 7080 | } |
| 7081 | } |
| 7082 | } |
| 7083 | |
| 7084 | vmcs_clear(shadow_vmcs); |
| 7085 | vmcs_load(vmx->loaded_vmcs->vmcs); |
| 7086 | } |
| 7087 | |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7088 | /* |
| 7089 | * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was |
| 7090 | * used before) all generate the same failure when it is missing. |
| 7091 | */ |
| 7092 | static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu) |
| 7093 | { |
| 7094 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7095 | if (vmx->nested.current_vmptr == -1ull) { |
| 7096 | nested_vmx_failInvalid(vcpu); |
| 7097 | skip_emulated_instruction(vcpu); |
| 7098 | return 0; |
| 7099 | } |
| 7100 | return 1; |
| 7101 | } |
| 7102 | |
| 7103 | static int handle_vmread(struct kvm_vcpu *vcpu) |
| 7104 | { |
| 7105 | unsigned long field; |
| 7106 | u64 field_value; |
| 7107 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7108 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7109 | gva_t gva = 0; |
| 7110 | |
| 7111 | if (!nested_vmx_check_permission(vcpu) || |
| 7112 | !nested_vmx_check_vmcs12(vcpu)) |
| 7113 | return 1; |
| 7114 | |
| 7115 | /* Decode instruction info and find the field to read */ |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7116 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7117 | /* Read the field, zero-extended to a u64 field_value */ |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7118 | if (vmcs12_read_any(vcpu, field, &field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7119 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 7120 | skip_emulated_instruction(vcpu); |
| 7121 | return 1; |
| 7122 | } |
| 7123 | /* |
| 7124 | * Now copy part of this value to register or memory, as requested. |
| 7125 | * Note that the number of bits actually copied is 32 or 64 depending |
| 7126 | * on the guest's mode (32 or 64 bit), not on the given field's length. |
| 7127 | */ |
| 7128 | if (vmx_instruction_info & (1u << 10)) { |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7129 | kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf), |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7130 | field_value); |
| 7131 | } else { |
| 7132 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7133 | vmx_instruction_info, true, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7134 | return 1; |
| 7135 | /* _system ok, as nested_vmx_check_permission verified cpl=0 */ |
| 7136 | kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva, |
| 7137 | &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL); |
| 7138 | } |
| 7139 | |
| 7140 | nested_vmx_succeed(vcpu); |
| 7141 | skip_emulated_instruction(vcpu); |
| 7142 | return 1; |
| 7143 | } |
| 7144 | |
| 7145 | |
| 7146 | static int handle_vmwrite(struct kvm_vcpu *vcpu) |
| 7147 | { |
| 7148 | unsigned long field; |
| 7149 | gva_t gva; |
| 7150 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7151 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7152 | /* The value to write might be 32 or 64 bits, depending on L1's long |
| 7153 | * mode, and eventually we need to write that into a field of several |
| 7154 | * possible lengths. The code below first zero-extends the value to 64 |
| 7155 | * bit (field_value), and then copies only the approriate number of |
| 7156 | * bits into the vmcs12 field. |
| 7157 | */ |
| 7158 | u64 field_value = 0; |
| 7159 | struct x86_exception e; |
| 7160 | |
| 7161 | if (!nested_vmx_check_permission(vcpu) || |
| 7162 | !nested_vmx_check_vmcs12(vcpu)) |
| 7163 | return 1; |
| 7164 | |
| 7165 | if (vmx_instruction_info & (1u << 10)) |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7166 | field_value = kvm_register_readl(vcpu, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7167 | (((vmx_instruction_info) >> 3) & 0xf)); |
| 7168 | else { |
| 7169 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7170 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7171 | return 1; |
| 7172 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7173 | &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7174 | kvm_inject_page_fault(vcpu, &e); |
| 7175 | return 1; |
| 7176 | } |
| 7177 | } |
| 7178 | |
| 7179 | |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7180 | field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf)); |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7181 | if (vmcs_field_readonly(field)) { |
| 7182 | nested_vmx_failValid(vcpu, |
| 7183 | VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT); |
| 7184 | skip_emulated_instruction(vcpu); |
| 7185 | return 1; |
| 7186 | } |
| 7187 | |
Paolo Bonzini | a2ae9df | 2014-11-04 18:31:19 +0100 | [diff] [blame] | 7188 | if (vmcs12_write_any(vcpu, field, field_value) < 0) { |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7189 | nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT); |
| 7190 | skip_emulated_instruction(vcpu); |
| 7191 | return 1; |
| 7192 | } |
| 7193 | |
| 7194 | nested_vmx_succeed(vcpu); |
| 7195 | skip_emulated_instruction(vcpu); |
| 7196 | return 1; |
| 7197 | } |
| 7198 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7199 | /* Emulate the VMPTRLD instruction */ |
| 7200 | static int handle_vmptrld(struct kvm_vcpu *vcpu) |
| 7201 | { |
| 7202 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7203 | gpa_t vmptr; |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7204 | |
| 7205 | if (!nested_vmx_check_permission(vcpu)) |
| 7206 | return 1; |
| 7207 | |
Bandan Das | 4291b58 | 2014-05-06 02:19:18 -0400 | [diff] [blame] | 7208 | if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr)) |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7209 | return 1; |
| 7210 | |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7211 | if (vmx->nested.current_vmptr != vmptr) { |
| 7212 | struct vmcs12 *new_vmcs12; |
| 7213 | struct page *page; |
| 7214 | page = nested_get_page(vcpu, vmptr); |
| 7215 | if (page == NULL) { |
| 7216 | nested_vmx_failInvalid(vcpu); |
| 7217 | skip_emulated_instruction(vcpu); |
| 7218 | return 1; |
| 7219 | } |
| 7220 | new_vmcs12 = kmap(page); |
| 7221 | if (new_vmcs12->revision_id != VMCS12_REVISION) { |
| 7222 | kunmap(page); |
| 7223 | nested_release_page_clean(page); |
| 7224 | nested_vmx_failValid(vcpu, |
| 7225 | VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID); |
| 7226 | skip_emulated_instruction(vcpu); |
| 7227 | return 1; |
| 7228 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7229 | |
Paolo Bonzini | 9a2a05b | 2014-07-17 11:55:46 +0200 | [diff] [blame] | 7230 | nested_release_vmcs12(vmx); |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7231 | vmx->nested.current_vmptr = vmptr; |
| 7232 | vmx->nested.current_vmcs12 = new_vmcs12; |
| 7233 | vmx->nested.current_vmcs12_page = page; |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7234 | if (enable_shadow_vmcs) { |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 7235 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, |
| 7236 | SECONDARY_EXEC_SHADOW_VMCS); |
Abel Gordon | 8a1b9dd | 2013-04-18 14:39:55 +0300 | [diff] [blame] | 7237 | vmcs_write64(VMCS_LINK_POINTER, |
| 7238 | __pa(vmx->nested.current_shadow_vmcs)); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 7239 | vmx->nested.sync_shadow_vmcs = true; |
| 7240 | } |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7241 | } |
| 7242 | |
| 7243 | nested_vmx_succeed(vcpu); |
| 7244 | skip_emulated_instruction(vcpu); |
| 7245 | return 1; |
| 7246 | } |
| 7247 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7248 | /* Emulate the VMPTRST instruction */ |
| 7249 | static int handle_vmptrst(struct kvm_vcpu *vcpu) |
| 7250 | { |
| 7251 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7252 | u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 7253 | gva_t vmcs_gva; |
| 7254 | struct x86_exception e; |
| 7255 | |
| 7256 | if (!nested_vmx_check_permission(vcpu)) |
| 7257 | return 1; |
| 7258 | |
| 7259 | if (get_vmx_mem_address(vcpu, exit_qualification, |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7260 | vmx_instruction_info, true, &vmcs_gva)) |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7261 | return 1; |
| 7262 | /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */ |
| 7263 | if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva, |
| 7264 | (void *)&to_vmx(vcpu)->nested.current_vmptr, |
| 7265 | sizeof(u64), &e)) { |
| 7266 | kvm_inject_page_fault(vcpu, &e); |
| 7267 | return 1; |
| 7268 | } |
| 7269 | nested_vmx_succeed(vcpu); |
| 7270 | skip_emulated_instruction(vcpu); |
| 7271 | return 1; |
| 7272 | } |
| 7273 | |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7274 | /* Emulate the INVEPT instruction */ |
| 7275 | static int handle_invept(struct kvm_vcpu *vcpu) |
| 7276 | { |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7277 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7278 | u32 vmx_instruction_info, types; |
| 7279 | unsigned long type; |
| 7280 | gva_t gva; |
| 7281 | struct x86_exception e; |
| 7282 | struct { |
| 7283 | u64 eptp, gpa; |
| 7284 | } operand; |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7285 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7286 | if (!(vmx->nested.nested_vmx_secondary_ctls_high & |
| 7287 | SECONDARY_EXEC_ENABLE_EPT) || |
| 7288 | !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7289 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7290 | return 1; |
| 7291 | } |
| 7292 | |
| 7293 | if (!nested_vmx_check_permission(vcpu)) |
| 7294 | return 1; |
| 7295 | |
| 7296 | if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) { |
| 7297 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7298 | return 1; |
| 7299 | } |
| 7300 | |
| 7301 | vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
Nadav Amit | 27e6fb5 | 2014-06-18 17:19:26 +0300 | [diff] [blame] | 7302 | type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7303 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 7304 | 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] | 7305 | |
| 7306 | if (!(types & (1UL << type))) { |
| 7307 | nested_vmx_failValid(vcpu, |
| 7308 | VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID); |
| 7309 | return 1; |
| 7310 | } |
| 7311 | |
| 7312 | /* According to the Intel VMX instruction reference, the memory |
| 7313 | * operand is read even if it isn't needed (e.g., for type==global) |
| 7314 | */ |
| 7315 | if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION), |
Eugene Korenevsky | f9eb4af | 2015-04-17 02:22:21 +0000 | [diff] [blame] | 7316 | vmx_instruction_info, false, &gva)) |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7317 | return 1; |
| 7318 | if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand, |
| 7319 | sizeof(operand), &e)) { |
| 7320 | kvm_inject_page_fault(vcpu, &e); |
| 7321 | return 1; |
| 7322 | } |
| 7323 | |
| 7324 | switch (type) { |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7325 | case VMX_EPT_EXTENT_GLOBAL: |
| 7326 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 7327 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7328 | nested_vmx_succeed(vcpu); |
| 7329 | break; |
| 7330 | default: |
Bandan Das | 4b85507 | 2014-04-19 18:17:44 -0400 | [diff] [blame] | 7331 | /* Trap single context invalidation invept calls */ |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7332 | BUG_ON(1); |
| 7333 | break; |
| 7334 | } |
| 7335 | |
| 7336 | skip_emulated_instruction(vcpu); |
| 7337 | return 1; |
| 7338 | } |
| 7339 | |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7340 | static int handle_invvpid(struct kvm_vcpu *vcpu) |
| 7341 | { |
| 7342 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 7343 | return 1; |
| 7344 | } |
| 7345 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7346 | static int handle_pml_full(struct kvm_vcpu *vcpu) |
| 7347 | { |
| 7348 | unsigned long exit_qualification; |
| 7349 | |
| 7350 | trace_kvm_pml_full(vcpu->vcpu_id); |
| 7351 | |
| 7352 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7353 | |
| 7354 | /* |
| 7355 | * PML buffer FULL happened while executing iret from NMI, |
| 7356 | * "blocked by NMI" bit has to be set before next VM entry. |
| 7357 | */ |
| 7358 | if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) && |
| 7359 | cpu_has_virtual_nmis() && |
| 7360 | (exit_qualification & INTR_INFO_UNBLOCK_NMI)) |
| 7361 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 7362 | GUEST_INTR_STATE_NMI); |
| 7363 | |
| 7364 | /* |
| 7365 | * PML buffer already flushed at beginning of VMEXIT. Nothing to do |
| 7366 | * here.., and there's no userspace involvement needed for PML. |
| 7367 | */ |
| 7368 | return 1; |
| 7369 | } |
| 7370 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7371 | static int handle_pcommit(struct kvm_vcpu *vcpu) |
| 7372 | { |
| 7373 | /* we never catch pcommit instruct for L1 guest. */ |
| 7374 | WARN_ON(1); |
| 7375 | return 1; |
| 7376 | } |
| 7377 | |
Nadav Har'El | 0140cae | 2011-05-25 23:06:28 +0300 | [diff] [blame] | 7378 | /* |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7379 | * The exit handlers return 1 if the exit was handled fully and guest execution |
| 7380 | * may resume. Otherwise they set the kvm_run parameter to indicate what needs |
| 7381 | * to be done to userspace and return 0. |
| 7382 | */ |
Mathias Krause | 772e031 | 2012-08-30 01:30:19 +0200 | [diff] [blame] | 7383 | static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7384 | [EXIT_REASON_EXCEPTION_NMI] = handle_exception, |
| 7385 | [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt, |
Avi Kivity | 988ad74 | 2007-02-12 00:54:36 -0800 | [diff] [blame] | 7386 | [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 7387 | [EXIT_REASON_NMI_WINDOW] = handle_nmi_window, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7388 | [EXIT_REASON_IO_INSTRUCTION] = handle_io, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7389 | [EXIT_REASON_CR_ACCESS] = handle_cr, |
| 7390 | [EXIT_REASON_DR_ACCESS] = handle_dr, |
| 7391 | [EXIT_REASON_CPUID] = handle_cpuid, |
| 7392 | [EXIT_REASON_MSR_READ] = handle_rdmsr, |
| 7393 | [EXIT_REASON_MSR_WRITE] = handle_wrmsr, |
| 7394 | [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window, |
| 7395 | [EXIT_REASON_HLT] = handle_halt, |
Gleb Natapov | ec25d5e | 2010-11-01 15:35:01 +0200 | [diff] [blame] | 7396 | [EXIT_REASON_INVD] = handle_invd, |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 7397 | [EXIT_REASON_INVLPG] = handle_invlpg, |
Avi Kivity | fee84b0 | 2011-11-10 14:57:25 +0200 | [diff] [blame] | 7398 | [EXIT_REASON_RDPMC] = handle_rdpmc, |
Ingo Molnar | c21415e | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 7399 | [EXIT_REASON_VMCALL] = handle_vmcall, |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 7400 | [EXIT_REASON_VMCLEAR] = handle_vmclear, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7401 | [EXIT_REASON_VMLAUNCH] = handle_vmlaunch, |
Nadav Har'El | 6384666 | 2011-05-25 23:07:29 +0300 | [diff] [blame] | 7402 | [EXIT_REASON_VMPTRLD] = handle_vmptrld, |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 7403 | [EXIT_REASON_VMPTRST] = handle_vmptrst, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7404 | [EXIT_REASON_VMREAD] = handle_vmread, |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 7405 | [EXIT_REASON_VMRESUME] = handle_vmresume, |
Nadav Har'El | 49f705c | 2011-05-25 23:08:30 +0300 | [diff] [blame] | 7406 | [EXIT_REASON_VMWRITE] = handle_vmwrite, |
Nadav Har'El | ec378ae | 2011-05-25 23:02:54 +0300 | [diff] [blame] | 7407 | [EXIT_REASON_VMOFF] = handle_vmoff, |
| 7408 | [EXIT_REASON_VMON] = handle_vmon, |
Sheng Yang | f78e0e2 | 2007-10-29 09:40:42 +0800 | [diff] [blame] | 7409 | [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold, |
| 7410 | [EXIT_REASON_APIC_ACCESS] = handle_apic_access, |
Yang Zhang | 83d4c28 | 2013-01-25 10:18:49 +0800 | [diff] [blame] | 7411 | [EXIT_REASON_APIC_WRITE] = handle_apic_write, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7412 | [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced, |
Eddie Dong | e5edaa0 | 2007-11-11 12:28:35 +0200 | [diff] [blame] | 7413 | [EXIT_REASON_WBINVD] = handle_wbinvd, |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7414 | [EXIT_REASON_XSETBV] = handle_xsetbv, |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7415 | [EXIT_REASON_TASK_SWITCH] = handle_task_switch, |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7416 | [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check, |
Marcelo Tosatti | 68f8940 | 2009-06-11 12:07:43 -0300 | [diff] [blame] | 7417 | [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation, |
| 7418 | [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig, |
Zhai, Edwin | 4b8d54f | 2009-10-09 18:03:20 +0800 | [diff] [blame] | 7419 | [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7420 | [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait, |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 7421 | [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap, |
Gabriel L. Somlo | 87c0057 | 2014-05-07 16:52:13 -0400 | [diff] [blame] | 7422 | [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor, |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 7423 | [EXIT_REASON_INVEPT] = handle_invept, |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7424 | [EXIT_REASON_INVVPID] = handle_invvpid, |
Wanpeng Li | f53cd63 | 2014-12-02 19:14:58 +0800 | [diff] [blame] | 7425 | [EXIT_REASON_XSAVES] = handle_xsaves, |
| 7426 | [EXIT_REASON_XRSTORS] = handle_xrstors, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7427 | [EXIT_REASON_PML_FULL] = handle_pml_full, |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7428 | [EXIT_REASON_PCOMMIT] = handle_pcommit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7429 | }; |
| 7430 | |
| 7431 | static const int kvm_vmx_max_exit_handlers = |
Robert P. J. Day | 50a3485 | 2007-06-03 13:35:29 -0400 | [diff] [blame] | 7432 | ARRAY_SIZE(kvm_vmx_exit_handlers); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7433 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7434 | static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu, |
| 7435 | struct vmcs12 *vmcs12) |
| 7436 | { |
| 7437 | unsigned long exit_qualification; |
| 7438 | gpa_t bitmap, last_bitmap; |
| 7439 | unsigned int port; |
| 7440 | int size; |
| 7441 | u8 b; |
| 7442 | |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7443 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS)) |
Zhihui Zhang | 2f0a639 | 2013-12-30 15:56:29 -0500 | [diff] [blame] | 7444 | return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING); |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7445 | |
| 7446 | exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7447 | |
| 7448 | port = exit_qualification >> 16; |
| 7449 | size = (exit_qualification & 7) + 1; |
| 7450 | |
| 7451 | last_bitmap = (gpa_t)-1; |
| 7452 | b = -1; |
| 7453 | |
| 7454 | while (size > 0) { |
| 7455 | if (port < 0x8000) |
| 7456 | bitmap = vmcs12->io_bitmap_a; |
| 7457 | else if (port < 0x10000) |
| 7458 | bitmap = vmcs12->io_bitmap_b; |
| 7459 | else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7460 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7461 | bitmap += (port & 0x7fff) / 8; |
| 7462 | |
| 7463 | if (last_bitmap != bitmap) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7464 | if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7465 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7466 | if (b & (1 << (port & 7))) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7467 | return true; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7468 | |
| 7469 | port++; |
| 7470 | size--; |
| 7471 | last_bitmap = bitmap; |
| 7472 | } |
| 7473 | |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7474 | return false; |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7475 | } |
| 7476 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7477 | /* |
| 7478 | * Return 1 if we should exit from L2 to L1 to handle an MSR access access, |
| 7479 | * rather than handle it ourselves in L0. I.e., check whether L1 expressed |
| 7480 | * disinterest in the current event (read or write a specific MSR) by using an |
| 7481 | * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps. |
| 7482 | */ |
| 7483 | static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu, |
| 7484 | struct vmcs12 *vmcs12, u32 exit_reason) |
| 7485 | { |
| 7486 | u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX]; |
| 7487 | gpa_t bitmap; |
| 7488 | |
Jan Kiszka | cbd29cb | 2013-02-11 12:19:28 +0100 | [diff] [blame] | 7489 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7490 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7491 | |
| 7492 | /* |
| 7493 | * The MSR_BITMAP page is divided into four 1024-byte bitmaps, |
| 7494 | * for the four combinations of read/write and low/high MSR numbers. |
| 7495 | * First we need to figure out which of the four to use: |
| 7496 | */ |
| 7497 | bitmap = vmcs12->msr_bitmap; |
| 7498 | if (exit_reason == EXIT_REASON_MSR_WRITE) |
| 7499 | bitmap += 2048; |
| 7500 | if (msr_index >= 0xc0000000) { |
| 7501 | msr_index -= 0xc0000000; |
| 7502 | bitmap += 1024; |
| 7503 | } |
| 7504 | |
| 7505 | /* Then read the msr_index'th bit from this bitmap: */ |
| 7506 | if (msr_index < 1024*8) { |
| 7507 | unsigned char b; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7508 | if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7509 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7510 | return 1 & (b >> (msr_index & 7)); |
| 7511 | } else |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7512 | return true; /* let L1 handle the wrong parameter */ |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7513 | } |
| 7514 | |
| 7515 | /* |
| 7516 | * Return 1 if we should exit from L2 to L1 to handle a CR access exit, |
| 7517 | * rather than handle it ourselves in L0. I.e., check if L1 wanted to |
| 7518 | * intercept (via guest_host_mask etc.) the current event. |
| 7519 | */ |
| 7520 | static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu, |
| 7521 | struct vmcs12 *vmcs12) |
| 7522 | { |
| 7523 | unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 7524 | int cr = exit_qualification & 15; |
| 7525 | int reg = (exit_qualification >> 8) & 15; |
Nadav Amit | 1e32c07 | 2014-06-18 17:19:25 +0300 | [diff] [blame] | 7526 | unsigned long val = kvm_register_readl(vcpu, reg); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7527 | |
| 7528 | switch ((exit_qualification >> 4) & 3) { |
| 7529 | case 0: /* mov to cr */ |
| 7530 | switch (cr) { |
| 7531 | case 0: |
| 7532 | if (vmcs12->cr0_guest_host_mask & |
| 7533 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7534 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7535 | break; |
| 7536 | case 3: |
| 7537 | if ((vmcs12->cr3_target_count >= 1 && |
| 7538 | vmcs12->cr3_target_value0 == val) || |
| 7539 | (vmcs12->cr3_target_count >= 2 && |
| 7540 | vmcs12->cr3_target_value1 == val) || |
| 7541 | (vmcs12->cr3_target_count >= 3 && |
| 7542 | vmcs12->cr3_target_value2 == val) || |
| 7543 | (vmcs12->cr3_target_count >= 4 && |
| 7544 | vmcs12->cr3_target_value3 == val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7545 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7546 | if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7547 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7548 | break; |
| 7549 | case 4: |
| 7550 | if (vmcs12->cr4_guest_host_mask & |
| 7551 | (vmcs12->cr4_read_shadow ^ val)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7552 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7553 | break; |
| 7554 | case 8: |
| 7555 | if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7556 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7557 | break; |
| 7558 | } |
| 7559 | break; |
| 7560 | case 2: /* clts */ |
| 7561 | if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) && |
| 7562 | (vmcs12->cr0_read_shadow & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7563 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7564 | break; |
| 7565 | case 1: /* mov from cr */ |
| 7566 | switch (cr) { |
| 7567 | case 3: |
| 7568 | if (vmcs12->cpu_based_vm_exec_control & |
| 7569 | CPU_BASED_CR3_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7570 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7571 | break; |
| 7572 | case 8: |
| 7573 | if (vmcs12->cpu_based_vm_exec_control & |
| 7574 | CPU_BASED_CR8_STORE_EXITING) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7575 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7576 | break; |
| 7577 | } |
| 7578 | break; |
| 7579 | case 3: /* lmsw */ |
| 7580 | /* |
| 7581 | * lmsw can change bits 1..3 of cr0, and only set bit 0 of |
| 7582 | * cr0. Other attempted changes are ignored, with no exit. |
| 7583 | */ |
| 7584 | if (vmcs12->cr0_guest_host_mask & 0xe & |
| 7585 | (val ^ vmcs12->cr0_read_shadow)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7586 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7587 | if ((vmcs12->cr0_guest_host_mask & 0x1) && |
| 7588 | !(vmcs12->cr0_read_shadow & 0x1) && |
| 7589 | (val & 0x1)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7590 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7591 | break; |
| 7592 | } |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7593 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7594 | } |
| 7595 | |
| 7596 | /* |
| 7597 | * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we |
| 7598 | * should handle it ourselves in L0 (and then continue L2). Only call this |
| 7599 | * when in is_guest_mode (L2). |
| 7600 | */ |
| 7601 | static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu) |
| 7602 | { |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7603 | u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7604 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 7605 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
Jan Kiszka | 957c897 | 2013-02-24 14:11:34 +0100 | [diff] [blame] | 7606 | u32 exit_reason = vmx->exit_reason; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7607 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 7608 | trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, |
| 7609 | vmcs_readl(EXIT_QUALIFICATION), |
| 7610 | vmx->idt_vectoring_info, |
| 7611 | intr_info, |
| 7612 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7613 | KVM_ISA_VMX); |
| 7614 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7615 | if (vmx->nested.nested_run_pending) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7616 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7617 | |
| 7618 | if (unlikely(vmx->fail)) { |
Jan Kiszka | bd80158 | 2011-09-12 11:26:22 +0200 | [diff] [blame] | 7619 | pr_info_ratelimited("%s failed vm entry %x\n", __func__, |
| 7620 | vmcs_read32(VM_INSTRUCTION_ERROR)); |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7621 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7622 | } |
| 7623 | |
| 7624 | switch (exit_reason) { |
| 7625 | case EXIT_REASON_EXCEPTION_NMI: |
| 7626 | if (!is_exception(intr_info)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7627 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7628 | else if (is_page_fault(intr_info)) |
| 7629 | return enable_ept; |
Anthoine Bourgeois | e504c90 | 2013-11-13 11:45:37 +0100 | [diff] [blame] | 7630 | else if (is_no_device(intr_info) && |
Paolo Bonzini | ccf9844 | 2014-02-27 22:54:11 +0100 | [diff] [blame] | 7631 | !(vmcs12->guest_cr0 & X86_CR0_TS)) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7632 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7633 | return vmcs12->exception_bitmap & |
| 7634 | (1u << (intr_info & INTR_INFO_VECTOR_MASK)); |
| 7635 | case EXIT_REASON_EXTERNAL_INTERRUPT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7636 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7637 | case EXIT_REASON_TRIPLE_FAULT: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7638 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7639 | case EXIT_REASON_PENDING_INTERRUPT: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7640 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7641 | case EXIT_REASON_NMI_WINDOW: |
Jan Kiszka | 3b656cf | 2013-04-14 12:12:45 +0200 | [diff] [blame] | 7642 | return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7643 | case EXIT_REASON_TASK_SWITCH: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7644 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7645 | case EXIT_REASON_CPUID: |
Marcelo Tosatti | bc61349 | 2014-09-18 18:24:57 -0300 | [diff] [blame] | 7646 | if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa) |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7647 | return false; |
| 7648 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7649 | case EXIT_REASON_HLT: |
| 7650 | return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING); |
| 7651 | case EXIT_REASON_INVD: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7652 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7653 | case EXIT_REASON_INVLPG: |
| 7654 | return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING); |
| 7655 | case EXIT_REASON_RDPMC: |
| 7656 | return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING); |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 7657 | case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7658 | return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING); |
| 7659 | case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR: |
| 7660 | case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD: |
| 7661 | case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD: |
| 7662 | case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE: |
| 7663 | case EXIT_REASON_VMOFF: case EXIT_REASON_VMON: |
Petr Matousek | a642fc3 | 2014-09-23 20:22:30 +0200 | [diff] [blame] | 7664 | case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID: |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7665 | /* |
| 7666 | * VMX instructions trap unconditionally. This allows L1 to |
| 7667 | * emulate them for its L2 guest, i.e., allows 3-level nesting! |
| 7668 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7669 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7670 | case EXIT_REASON_CR_ACCESS: |
| 7671 | return nested_vmx_exit_handled_cr(vcpu, vmcs12); |
| 7672 | case EXIT_REASON_DR_ACCESS: |
| 7673 | return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING); |
| 7674 | case EXIT_REASON_IO_INSTRUCTION: |
Jan Kiszka | 908a7bd | 2013-02-18 11:21:16 +0100 | [diff] [blame] | 7675 | return nested_vmx_exit_handled_io(vcpu, vmcs12); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7676 | case EXIT_REASON_MSR_READ: |
| 7677 | case EXIT_REASON_MSR_WRITE: |
| 7678 | return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason); |
| 7679 | case EXIT_REASON_INVALID_STATE: |
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 | case EXIT_REASON_MWAIT_INSTRUCTION: |
| 7682 | return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING); |
Mihai Donțu | 5f3d45e | 2015-07-05 20:08:57 +0300 | [diff] [blame] | 7683 | case EXIT_REASON_MONITOR_TRAP_FLAG: |
| 7684 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7685 | case EXIT_REASON_MONITOR_INSTRUCTION: |
| 7686 | return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING); |
| 7687 | case EXIT_REASON_PAUSE_INSTRUCTION: |
| 7688 | return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) || |
| 7689 | nested_cpu_has2(vmcs12, |
| 7690 | SECONDARY_EXEC_PAUSE_LOOP_EXITING); |
| 7691 | case EXIT_REASON_MCE_DURING_VMENTRY: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7692 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7693 | case EXIT_REASON_TPR_BELOW_THRESHOLD: |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 7694 | return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7695 | case EXIT_REASON_APIC_ACCESS: |
| 7696 | return nested_cpu_has2(vmcs12, |
| 7697 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 7698 | case EXIT_REASON_APIC_WRITE: |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 7699 | case EXIT_REASON_EOI_INDUCED: |
| 7700 | /* apic_write and eoi_induced should exit unconditionally. */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7701 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7702 | case EXIT_REASON_EPT_VIOLATION: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7703 | /* |
| 7704 | * L0 always deals with the EPT violation. If nested EPT is |
| 7705 | * used, and the nested mmu code discovers that the address is |
| 7706 | * missing in the guest EPT table (EPT12), the EPT violation |
| 7707 | * will be injected with nested_ept_inject_page_fault() |
| 7708 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7709 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7710 | case EXIT_REASON_EPT_MISCONFIG: |
Nadav Har'El | 2b1be67 | 2013-08-05 11:07:19 +0300 | [diff] [blame] | 7711 | /* |
| 7712 | * L2 never uses directly L1's EPT, but rather L0's own EPT |
| 7713 | * table (shadow on EPT) or a merged EPT table that L0 built |
| 7714 | * (EPT on EPT). So any problems with the structure of the |
| 7715 | * table is L0's fault. |
| 7716 | */ |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7717 | return false; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7718 | case EXIT_REASON_WBINVD: |
| 7719 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING); |
| 7720 | case EXIT_REASON_XSETBV: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7721 | return true; |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 7722 | case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS: |
| 7723 | /* |
| 7724 | * This should never happen, since it is not possible to |
| 7725 | * set XSS to a non-zero value---neither in L1 nor in L2. |
| 7726 | * If if it were, XSS would have to be checked against |
| 7727 | * the XSS exit bitmap in vmcs12. |
| 7728 | */ |
| 7729 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES); |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 7730 | case EXIT_REASON_PCOMMIT: |
| 7731 | return nested_cpu_has2(vmcs12, SECONDARY_EXEC_PCOMMIT); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7732 | default: |
Joe Perches | 1d804d0 | 2015-03-30 16:46:09 -0700 | [diff] [blame] | 7733 | return true; |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7734 | } |
| 7735 | } |
| 7736 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 7737 | static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2) |
| 7738 | { |
| 7739 | *info1 = vmcs_readl(EXIT_QUALIFICATION); |
| 7740 | *info2 = vmcs_read32(VM_EXIT_INTR_INFO); |
| 7741 | } |
| 7742 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7743 | static int vmx_enable_pml(struct vcpu_vmx *vmx) |
| 7744 | { |
| 7745 | struct page *pml_pg; |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7746 | |
| 7747 | pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 7748 | if (!pml_pg) |
| 7749 | return -ENOMEM; |
| 7750 | |
| 7751 | vmx->pml_pg = pml_pg; |
| 7752 | |
| 7753 | vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); |
| 7754 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7755 | |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 7756 | vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_ENABLE_PML); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7757 | |
| 7758 | return 0; |
| 7759 | } |
| 7760 | |
| 7761 | static void vmx_disable_pml(struct vcpu_vmx *vmx) |
| 7762 | { |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7763 | ASSERT(vmx->pml_pg); |
| 7764 | __free_page(vmx->pml_pg); |
| 7765 | vmx->pml_pg = NULL; |
| 7766 | |
Xiao Guangrong | 7ec3629 | 2015-09-09 14:05:56 +0800 | [diff] [blame] | 7767 | vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_ENABLE_PML); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7768 | } |
| 7769 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7770 | static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu) |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7771 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7772 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7773 | u64 *pml_buf; |
| 7774 | u16 pml_idx; |
| 7775 | |
| 7776 | pml_idx = vmcs_read16(GUEST_PML_INDEX); |
| 7777 | |
| 7778 | /* Do nothing if PML buffer is empty */ |
| 7779 | if (pml_idx == (PML_ENTITY_NUM - 1)) |
| 7780 | return; |
| 7781 | |
| 7782 | /* PML index always points to next available PML buffer entity */ |
| 7783 | if (pml_idx >= PML_ENTITY_NUM) |
| 7784 | pml_idx = 0; |
| 7785 | else |
| 7786 | pml_idx++; |
| 7787 | |
| 7788 | pml_buf = page_address(vmx->pml_pg); |
| 7789 | for (; pml_idx < PML_ENTITY_NUM; pml_idx++) { |
| 7790 | u64 gpa; |
| 7791 | |
| 7792 | gpa = pml_buf[pml_idx]; |
| 7793 | WARN_ON(gpa & (PAGE_SIZE - 1)); |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7794 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7795 | } |
| 7796 | |
| 7797 | /* reset PML index */ |
| 7798 | vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1); |
| 7799 | } |
| 7800 | |
| 7801 | /* |
| 7802 | * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap. |
| 7803 | * Called before reporting dirty_bitmap to userspace. |
| 7804 | */ |
| 7805 | static void kvm_flush_pml_buffers(struct kvm *kvm) |
| 7806 | { |
| 7807 | int i; |
| 7808 | struct kvm_vcpu *vcpu; |
| 7809 | /* |
| 7810 | * We only need to kick vcpu out of guest mode here, as PML buffer |
| 7811 | * is flushed at beginning of all VMEXITs, and it's obvious that only |
| 7812 | * vcpus running in guest are possible to have unflushed GPAs in PML |
| 7813 | * buffer. |
| 7814 | */ |
| 7815 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 7816 | kvm_vcpu_kick(vcpu); |
| 7817 | } |
| 7818 | |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 7819 | static void vmx_dump_sel(char *name, uint32_t sel) |
| 7820 | { |
| 7821 | pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n", |
| 7822 | name, vmcs_read32(sel), |
| 7823 | vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR), |
| 7824 | vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR), |
| 7825 | vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR)); |
| 7826 | } |
| 7827 | |
| 7828 | static void vmx_dump_dtsel(char *name, uint32_t limit) |
| 7829 | { |
| 7830 | pr_err("%s limit=0x%08x, base=0x%016lx\n", |
| 7831 | name, vmcs_read32(limit), |
| 7832 | vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT)); |
| 7833 | } |
| 7834 | |
| 7835 | static void dump_vmcs(void) |
| 7836 | { |
| 7837 | u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS); |
| 7838 | u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS); |
| 7839 | u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL); |
| 7840 | u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); |
| 7841 | u32 secondary_exec_control = 0; |
| 7842 | unsigned long cr4 = vmcs_readl(GUEST_CR4); |
| 7843 | u64 efer = vmcs_readl(GUEST_IA32_EFER); |
| 7844 | int i, n; |
| 7845 | |
| 7846 | if (cpu_has_secondary_exec_ctrls()) |
| 7847 | secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 7848 | |
| 7849 | pr_err("*** Guest State ***\n"); |
| 7850 | pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7851 | vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW), |
| 7852 | vmcs_readl(CR0_GUEST_HOST_MASK)); |
| 7853 | pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n", |
| 7854 | cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK)); |
| 7855 | pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3)); |
| 7856 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) && |
| 7857 | (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA)) |
| 7858 | { |
| 7859 | pr_err("PDPTR0 = 0x%016lx PDPTR1 = 0x%016lx\n", |
| 7860 | vmcs_readl(GUEST_PDPTR0), vmcs_readl(GUEST_PDPTR1)); |
| 7861 | pr_err("PDPTR2 = 0x%016lx PDPTR3 = 0x%016lx\n", |
| 7862 | vmcs_readl(GUEST_PDPTR2), vmcs_readl(GUEST_PDPTR3)); |
| 7863 | } |
| 7864 | pr_err("RSP = 0x%016lx RIP = 0x%016lx\n", |
| 7865 | vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP)); |
| 7866 | pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n", |
| 7867 | vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7)); |
| 7868 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7869 | vmcs_readl(GUEST_SYSENTER_ESP), |
| 7870 | vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP)); |
| 7871 | vmx_dump_sel("CS: ", GUEST_CS_SELECTOR); |
| 7872 | vmx_dump_sel("DS: ", GUEST_DS_SELECTOR); |
| 7873 | vmx_dump_sel("SS: ", GUEST_SS_SELECTOR); |
| 7874 | vmx_dump_sel("ES: ", GUEST_ES_SELECTOR); |
| 7875 | vmx_dump_sel("FS: ", GUEST_FS_SELECTOR); |
| 7876 | vmx_dump_sel("GS: ", GUEST_GS_SELECTOR); |
| 7877 | vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT); |
| 7878 | vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR); |
| 7879 | vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT); |
| 7880 | vmx_dump_sel("TR: ", GUEST_TR_SELECTOR); |
| 7881 | if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) || |
| 7882 | (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER))) |
| 7883 | pr_err("EFER = 0x%016llx PAT = 0x%016lx\n", |
| 7884 | efer, vmcs_readl(GUEST_IA32_PAT)); |
| 7885 | pr_err("DebugCtl = 0x%016lx DebugExceptions = 0x%016lx\n", |
| 7886 | vmcs_readl(GUEST_IA32_DEBUGCTL), |
| 7887 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS)); |
| 7888 | if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7889 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7890 | vmcs_readl(GUEST_IA32_PERF_GLOBAL_CTRL)); |
| 7891 | if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS) |
| 7892 | pr_err("BndCfgS = 0x%016lx\n", vmcs_readl(GUEST_BNDCFGS)); |
| 7893 | pr_err("Interruptibility = %08x ActivityState = %08x\n", |
| 7894 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO), |
| 7895 | vmcs_read32(GUEST_ACTIVITY_STATE)); |
| 7896 | if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) |
| 7897 | pr_err("InterruptStatus = %04x\n", |
| 7898 | vmcs_read16(GUEST_INTR_STATUS)); |
| 7899 | |
| 7900 | pr_err("*** Host State ***\n"); |
| 7901 | pr_err("RIP = 0x%016lx RSP = 0x%016lx\n", |
| 7902 | vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP)); |
| 7903 | pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n", |
| 7904 | vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR), |
| 7905 | vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR), |
| 7906 | vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR), |
| 7907 | vmcs_read16(HOST_TR_SELECTOR)); |
| 7908 | pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n", |
| 7909 | vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE), |
| 7910 | vmcs_readl(HOST_TR_BASE)); |
| 7911 | pr_err("GDTBase=%016lx IDTBase=%016lx\n", |
| 7912 | vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE)); |
| 7913 | pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n", |
| 7914 | vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3), |
| 7915 | vmcs_readl(HOST_CR4)); |
| 7916 | pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n", |
| 7917 | vmcs_readl(HOST_IA32_SYSENTER_ESP), |
| 7918 | vmcs_read32(HOST_IA32_SYSENTER_CS), |
| 7919 | vmcs_readl(HOST_IA32_SYSENTER_EIP)); |
| 7920 | if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER)) |
| 7921 | pr_err("EFER = 0x%016lx PAT = 0x%016lx\n", |
| 7922 | vmcs_readl(HOST_IA32_EFER), vmcs_readl(HOST_IA32_PAT)); |
| 7923 | if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 7924 | pr_err("PerfGlobCtl = 0x%016lx\n", |
| 7925 | vmcs_readl(HOST_IA32_PERF_GLOBAL_CTRL)); |
| 7926 | |
| 7927 | pr_err("*** Control State ***\n"); |
| 7928 | pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n", |
| 7929 | pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control); |
| 7930 | pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl); |
| 7931 | pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n", |
| 7932 | vmcs_read32(EXCEPTION_BITMAP), |
| 7933 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK), |
| 7934 | vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH)); |
| 7935 | pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7936 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 7937 | vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE), |
| 7938 | vmcs_read32(VM_ENTRY_INSTRUCTION_LEN)); |
| 7939 | pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n", |
| 7940 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 7941 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE), |
| 7942 | vmcs_read32(VM_EXIT_INSTRUCTION_LEN)); |
| 7943 | pr_err(" reason=%08x qualification=%016lx\n", |
| 7944 | vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION)); |
| 7945 | pr_err("IDTVectoring: info=%08x errcode=%08x\n", |
| 7946 | vmcs_read32(IDT_VECTORING_INFO_FIELD), |
| 7947 | vmcs_read32(IDT_VECTORING_ERROR_CODE)); |
| 7948 | pr_err("TSC Offset = 0x%016lx\n", vmcs_readl(TSC_OFFSET)); |
| 7949 | if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW) |
| 7950 | pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD)); |
| 7951 | if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) |
| 7952 | pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV)); |
| 7953 | if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT)) |
| 7954 | pr_err("EPT pointer = 0x%016lx\n", vmcs_readl(EPT_POINTER)); |
| 7955 | n = vmcs_read32(CR3_TARGET_COUNT); |
| 7956 | for (i = 0; i + 1 < n; i += 4) |
| 7957 | pr_err("CR3 target%u=%016lx target%u=%016lx\n", |
| 7958 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2), |
| 7959 | i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2)); |
| 7960 | if (i < n) |
| 7961 | pr_err("CR3 target%u=%016lx\n", |
| 7962 | i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2)); |
| 7963 | if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING) |
| 7964 | pr_err("PLE Gap=%08x Window=%08x\n", |
| 7965 | vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW)); |
| 7966 | if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID) |
| 7967 | pr_err("Virtual processor ID = 0x%04x\n", |
| 7968 | vmcs_read16(VIRTUAL_PROCESSOR_ID)); |
| 7969 | } |
| 7970 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7971 | /* |
| 7972 | * The guest has exited. See if we can fix it or if we need userspace |
| 7973 | * assistance. |
| 7974 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7975 | static int vmx_handle_exit(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 7976 | { |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7977 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 7978 | u32 exit_reason = vmx->exit_reason; |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 7979 | u32 vectoring_info = vmx->idt_vectoring_info; |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 7980 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7981 | /* |
| 7982 | * Flush logged GPAs PML buffer, this will make dirty_bitmap more |
| 7983 | * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before |
| 7984 | * querying dirty_bitmap, we only need to kick all vcpus out of guest |
| 7985 | * mode as if vcpus is in root mode, the PML buffer must has been |
| 7986 | * flushed already. |
| 7987 | */ |
| 7988 | if (enable_pml) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7989 | vmx_flush_pml_buffer(vcpu); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 7990 | |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 7991 | /* If guest state is invalid, start emulating */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 7992 | if (vmx->emulation_required) |
Mohammed Gamal | 80ced18 | 2009-09-01 12:48:18 +0200 | [diff] [blame] | 7993 | return handle_invalid_guest_state(vcpu); |
Guillaume Thouvenin | 1d5a4d9 | 2008-10-29 09:39:42 +0100 | [diff] [blame] | 7994 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7995 | if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 7996 | nested_vmx_vmexit(vcpu, exit_reason, |
| 7997 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 7998 | vmcs_readl(EXIT_QUALIFICATION)); |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 7999 | return 1; |
| 8000 | } |
| 8001 | |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8002 | if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) { |
Paolo Bonzini | 4eb64dc | 2015-04-30 12:57:28 +0200 | [diff] [blame] | 8003 | dump_vmcs(); |
Mohammed Gamal | 5120702 | 2010-05-31 22:40:54 +0300 | [diff] [blame] | 8004 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8005 | vcpu->run->fail_entry.hardware_entry_failure_reason |
| 8006 | = exit_reason; |
| 8007 | return 0; |
| 8008 | } |
| 8009 | |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8010 | if (unlikely(vmx->fail)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8011 | vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY; |
| 8012 | vcpu->run->fail_entry.hardware_entry_failure_reason |
Avi Kivity | 29bd8a7 | 2007-09-10 17:27:03 +0300 | [diff] [blame] | 8013 | = vmcs_read32(VM_INSTRUCTION_ERROR); |
| 8014 | return 0; |
| 8015 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8016 | |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8017 | /* |
| 8018 | * Note: |
| 8019 | * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by |
| 8020 | * delivery event since it indicates guest is accessing MMIO. |
| 8021 | * The vm-exit can be triggered again after return to guest that |
| 8022 | * will cause infinite loop. |
| 8023 | */ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 8024 | if ((vectoring_info & VECTORING_INFO_VALID_MASK) && |
Sheng Yang | 1439442 | 2008-04-28 12:24:45 +0800 | [diff] [blame] | 8025 | (exit_reason != EXIT_REASON_EXCEPTION_NMI && |
Jan Kiszka | 60637aa | 2008-09-26 09:30:47 +0200 | [diff] [blame] | 8026 | exit_reason != EXIT_REASON_EPT_VIOLATION && |
Xiao Guangrong | b9bf688 | 2012-10-17 13:46:52 +0800 | [diff] [blame] | 8027 | exit_reason != EXIT_REASON_TASK_SWITCH)) { |
| 8028 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 8029 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV; |
| 8030 | vcpu->run->internal.ndata = 2; |
| 8031 | vcpu->run->internal.data[0] = vectoring_info; |
| 8032 | vcpu->run->internal.data[1] = exit_reason; |
| 8033 | return 0; |
| 8034 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8035 | |
Nadav Har'El | 644d711 | 2011-05-25 23:12:35 +0300 | [diff] [blame] | 8036 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked && |
| 8037 | !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis( |
Nadav Har'El | f5c4368 | 2013-08-05 11:07:20 +0300 | [diff] [blame] | 8038 | get_vmcs12(vcpu))))) { |
Gleb Natapov | c4282df | 2009-04-21 17:45:07 +0300 | [diff] [blame] | 8039 | if (vmx_interrupt_allowed(vcpu)) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8040 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8041 | } else if (vmx->vnmi_blocked_time > 1000000000LL && |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 8042 | vcpu->arch.nmi_pending) { |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8043 | /* |
| 8044 | * This CPU don't support us in finding the end of an |
| 8045 | * NMI-blocked window if the guest runs with IRQs |
| 8046 | * disabled. So we pull the trigger after 1 s of |
| 8047 | * futile waiting, but inform the user about this. |
| 8048 | */ |
| 8049 | printk(KERN_WARNING "%s: Breaking out of NMI-blocked " |
| 8050 | "state on VCPU %d after 1 s timeout\n", |
| 8051 | __func__, vcpu->vcpu_id); |
| 8052 | vmx->soft_vnmi_blocked = 0; |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8053 | } |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8054 | } |
| 8055 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8056 | if (exit_reason < kvm_vmx_max_exit_handlers |
| 8057 | && kvm_vmx_exit_handlers[exit_reason]) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8058 | return kvm_vmx_exit_handlers[exit_reason](vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8059 | else { |
Michael S. Tsirkin | 2bc19dc | 2014-09-18 16:21:16 +0300 | [diff] [blame] | 8060 | WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_reason); |
| 8061 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 8062 | return 1; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8063 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8064 | } |
| 8065 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8066 | 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] | 8067 | { |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8068 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8069 | |
| 8070 | if (is_guest_mode(vcpu) && |
| 8071 | nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 8072 | return; |
| 8073 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8074 | if (irr == -1 || tpr < irr) { |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8075 | vmcs_write32(TPR_THRESHOLD, 0); |
| 8076 | return; |
| 8077 | } |
| 8078 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8079 | vmcs_write32(TPR_THRESHOLD, irr); |
Yang, Sheng | 6e5d865 | 2007-09-12 18:03:11 +0800 | [diff] [blame] | 8080 | } |
| 8081 | |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8082 | static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set) |
| 8083 | { |
| 8084 | u32 sec_exec_control; |
| 8085 | |
| 8086 | /* |
| 8087 | * There is not point to enable virtualize x2apic without enable |
| 8088 | * apicv |
| 8089 | */ |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8090 | if (!cpu_has_vmx_virtualize_x2apic_mode() || |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8091 | !vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8092 | return; |
| 8093 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8094 | if (!cpu_need_tpr_shadow(vcpu)) |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 8095 | return; |
| 8096 | |
| 8097 | sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8098 | |
| 8099 | if (set) { |
| 8100 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8101 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8102 | } else { |
| 8103 | sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE; |
| 8104 | sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8105 | } |
| 8106 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control); |
| 8107 | |
| 8108 | vmx_set_msr_bitmap(vcpu); |
| 8109 | } |
| 8110 | |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8111 | static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa) |
| 8112 | { |
| 8113 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8114 | |
| 8115 | /* |
| 8116 | * Currently we do not handle the nested case where L2 has an |
| 8117 | * APIC access page of its own; that page is still pinned. |
| 8118 | * Hence, we skip the case where the VCPU is in guest mode _and_ |
| 8119 | * L1 prepared an APIC access page for L2. |
| 8120 | * |
| 8121 | * For the case where L1 and L2 share the same APIC access page |
| 8122 | * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear |
| 8123 | * in the vmcs12), this function will only update either the vmcs01 |
| 8124 | * or the vmcs02. If the former, the vmcs02 will be updated by |
| 8125 | * prepare_vmcs02. If the latter, the vmcs01 will be updated in |
| 8126 | * the next L2->L1 exit. |
| 8127 | */ |
| 8128 | if (!is_guest_mode(vcpu) || |
| 8129 | !nested_cpu_has2(vmx->nested.current_vmcs12, |
| 8130 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
| 8131 | vmcs_write64(APIC_ACCESS_ADDR, hpa); |
| 8132 | } |
| 8133 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8134 | static void vmx_hwapic_isr_update(struct kvm *kvm, int isr) |
| 8135 | { |
| 8136 | u16 status; |
| 8137 | u8 old; |
| 8138 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8139 | if (isr == -1) |
| 8140 | isr = 0; |
| 8141 | |
| 8142 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8143 | old = status >> 8; |
| 8144 | if (isr != old) { |
| 8145 | status &= 0xff; |
| 8146 | status |= isr << 8; |
| 8147 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8148 | } |
| 8149 | } |
| 8150 | |
| 8151 | static void vmx_set_rvi(int vector) |
| 8152 | { |
| 8153 | u16 status; |
| 8154 | u8 old; |
| 8155 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8156 | if (vector == -1) |
| 8157 | vector = 0; |
| 8158 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8159 | status = vmcs_read16(GUEST_INTR_STATUS); |
| 8160 | old = (u8)status & 0xff; |
| 8161 | if ((u8)vector != old) { |
| 8162 | status &= ~0xff; |
| 8163 | status |= (u8)vector; |
| 8164 | vmcs_write16(GUEST_INTR_STATUS, status); |
| 8165 | } |
| 8166 | } |
| 8167 | |
| 8168 | static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr) |
| 8169 | { |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8170 | if (!is_guest_mode(vcpu)) { |
| 8171 | vmx_set_rvi(max_irr); |
| 8172 | return; |
| 8173 | } |
| 8174 | |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8175 | if (max_irr == -1) |
| 8176 | return; |
| 8177 | |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8178 | /* |
Wei Wang | 4114c27 | 2014-11-05 10:53:43 +0800 | [diff] [blame] | 8179 | * In guest mode. If a vmexit is needed, vmx_check_nested_events |
| 8180 | * handles it. |
| 8181 | */ |
| 8182 | if (nested_exit_on_intr(vcpu)) |
| 8183 | return; |
| 8184 | |
| 8185 | /* |
| 8186 | * Else, fall back to pre-APICv interrupt injection since L2 |
Wanpeng Li | 963fee1 | 2014-07-17 19:03:00 +0800 | [diff] [blame] | 8187 | * is run without virtual interrupt delivery. |
| 8188 | */ |
| 8189 | if (!kvm_event_needs_reinjection(vcpu) && |
| 8190 | vmx_interrupt_allowed(vcpu)) { |
| 8191 | kvm_queue_interrupt(vcpu, max_irr, false); |
| 8192 | vmx_inject_irq(vcpu); |
| 8193 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8194 | } |
| 8195 | |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 8196 | static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8197 | { |
Paolo Bonzini | 3bb345f | 2015-07-29 10:43:18 +0200 | [diff] [blame] | 8198 | u64 *eoi_exit_bitmap = vcpu->arch.eoi_exit_bitmap; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8199 | if (!vmx_cpu_uses_apicv(vcpu)) |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8200 | return; |
| 8201 | |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8202 | vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]); |
| 8203 | vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]); |
| 8204 | vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]); |
| 8205 | vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]); |
| 8206 | } |
| 8207 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8208 | static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8209 | { |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8210 | u32 exit_intr_info; |
| 8211 | |
| 8212 | if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY |
| 8213 | || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI)) |
| 8214 | return; |
| 8215 | |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8216 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8217 | exit_intr_info = vmx->exit_intr_info; |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8218 | |
| 8219 | /* Handle machine checks before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8220 | if (is_machine_check(exit_intr_info)) |
Andi Kleen | a0861c0 | 2009-06-08 17:37:09 +0800 | [diff] [blame] | 8221 | kvm_machine_check(); |
| 8222 | |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8223 | /* We need to handle NMIs before interrupts are enabled */ |
Avi Kivity | 00eba01 | 2011-03-07 17:24:54 +0200 | [diff] [blame] | 8224 | 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] | 8225 | (exit_intr_info & INTR_INFO_VALID_MASK)) { |
| 8226 | kvm_before_handle_nmi(&vmx->vcpu); |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8227 | asm("int $2"); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 8228 | kvm_after_handle_nmi(&vmx->vcpu); |
| 8229 | } |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8230 | } |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8231 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8232 | static void vmx_handle_external_intr(struct kvm_vcpu *vcpu) |
| 8233 | { |
| 8234 | u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 8235 | |
| 8236 | /* |
| 8237 | * If external interrupt exists, IF bit is set in rflags/eflags on the |
| 8238 | * interrupt stack frame, and interrupt will be enabled on a return |
| 8239 | * from interrupt handler. |
| 8240 | */ |
| 8241 | if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK)) |
| 8242 | == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) { |
| 8243 | unsigned int vector; |
| 8244 | unsigned long entry; |
| 8245 | gate_desc *desc; |
| 8246 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8247 | #ifdef CONFIG_X86_64 |
| 8248 | unsigned long tmp; |
| 8249 | #endif |
| 8250 | |
| 8251 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8252 | desc = (gate_desc *)vmx->host_idt_base + vector; |
| 8253 | entry = gate_offset(*desc); |
| 8254 | asm volatile( |
| 8255 | #ifdef CONFIG_X86_64 |
| 8256 | "mov %%" _ASM_SP ", %[sp]\n\t" |
| 8257 | "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t" |
| 8258 | "push $%c[ss]\n\t" |
| 8259 | "push %[sp]\n\t" |
| 8260 | #endif |
| 8261 | "pushf\n\t" |
| 8262 | "orl $0x200, (%%" _ASM_SP ")\n\t" |
| 8263 | __ASM_SIZE(push) " $%c[cs]\n\t" |
| 8264 | "call *%[entry]\n\t" |
| 8265 | : |
| 8266 | #ifdef CONFIG_X86_64 |
| 8267 | [sp]"=&r"(tmp) |
| 8268 | #endif |
| 8269 | : |
| 8270 | [entry]"r"(entry), |
| 8271 | [ss]"i"(__KERNEL_DS), |
| 8272 | [cs]"i"(__KERNEL_CS) |
| 8273 | ); |
| 8274 | } else |
| 8275 | local_irq_enable(); |
| 8276 | } |
| 8277 | |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 8278 | static bool vmx_has_high_real_mode_segbase(void) |
| 8279 | { |
| 8280 | return enable_unrestricted_guest || emulate_invalid_guest_state; |
| 8281 | } |
| 8282 | |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 8283 | static bool vmx_mpx_supported(void) |
| 8284 | { |
| 8285 | return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) && |
| 8286 | (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS); |
| 8287 | } |
| 8288 | |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 8289 | static bool vmx_xsaves_supported(void) |
| 8290 | { |
| 8291 | return vmcs_config.cpu_based_2nd_exec_ctrl & |
| 8292 | SECONDARY_EXEC_XSAVES; |
| 8293 | } |
| 8294 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8295 | static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx) |
| 8296 | { |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8297 | u32 exit_intr_info; |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8298 | bool unblock_nmi; |
| 8299 | u8 vector; |
| 8300 | bool idtv_info_valid; |
| 8301 | |
| 8302 | idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Gleb Natapov | 20f6598 | 2009-05-11 13:35:55 +0300 | [diff] [blame] | 8303 | |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8304 | if (cpu_has_virtual_nmis()) { |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8305 | if (vmx->nmi_known_unmasked) |
| 8306 | return; |
Avi Kivity | c5ca8e5 | 2011-03-07 17:37:37 +0200 | [diff] [blame] | 8307 | /* |
| 8308 | * Can't use vmx->exit_intr_info since we're not sure what |
| 8309 | * the exit reason is. |
| 8310 | */ |
| 8311 | exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8312 | unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0; |
| 8313 | vector = exit_intr_info & INTR_INFO_VECTOR_MASK; |
| 8314 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8315 | * SDM 3: 27.7.1.2 (September 2008) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8316 | * Re-set bit "block by NMI" before VM entry if vmexit caused by |
| 8317 | * a guest IRET fault. |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8318 | * SDM 3: 23.2.2 (September 2008) |
| 8319 | * Bit 12 is undefined in any of the following cases: |
| 8320 | * If the VM exit sets the valid bit in the IDT-vectoring |
| 8321 | * information field. |
| 8322 | * If the VM exit is due to a double fault. |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8323 | */ |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8324 | if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi && |
| 8325 | vector != DF_VECTOR && !idtv_info_valid) |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8326 | vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, |
| 8327 | GUEST_INTR_STATE_NMI); |
Avi Kivity | 9d58b93 | 2011-03-07 16:52:07 +0200 | [diff] [blame] | 8328 | else |
| 8329 | vmx->nmi_known_unmasked = |
| 8330 | !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) |
| 8331 | & GUEST_INTR_STATE_NMI); |
Jan Kiszka | 3b86cd9 | 2008-09-26 09:30:57 +0200 | [diff] [blame] | 8332 | } else if (unlikely(vmx->soft_vnmi_blocked)) |
| 8333 | vmx->vnmi_blocked_time += |
| 8334 | ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time)); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8335 | } |
| 8336 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8337 | static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8338 | u32 idt_vectoring_info, |
| 8339 | int instr_len_field, |
| 8340 | int error_code_field) |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8341 | { |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8342 | u8 vector; |
| 8343 | int type; |
| 8344 | bool idtv_info_valid; |
| 8345 | |
| 8346 | idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8347 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8348 | vcpu->arch.nmi_injected = false; |
| 8349 | kvm_clear_exception_queue(vcpu); |
| 8350 | kvm_clear_interrupt_queue(vcpu); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8351 | |
| 8352 | if (!idtv_info_valid) |
| 8353 | return; |
| 8354 | |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8355 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8356 | |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8357 | vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK; |
| 8358 | type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8359 | |
Gleb Natapov | 64a7ec0 | 2009-03-30 16:03:29 +0300 | [diff] [blame] | 8360 | switch (type) { |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8361 | case INTR_TYPE_NMI_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8362 | vcpu->arch.nmi_injected = true; |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8363 | /* |
Gleb Natapov | 7b4a25c | 2009-03-30 16:03:08 +0300 | [diff] [blame] | 8364 | * SDM 3: 27.7.1.2 (September 2008) |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8365 | * Clear bit "block by NMI" before VM entry if a NMI |
| 8366 | * delivery faulted. |
Avi Kivity | 668f612 | 2008-07-02 09:28:55 +0300 | [diff] [blame] | 8367 | */ |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8368 | vmx_set_nmi_mask(vcpu, false); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8369 | break; |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8370 | case INTR_TYPE_SOFT_EXCEPTION: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8371 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8372 | /* fall through */ |
| 8373 | case INTR_TYPE_HARD_EXCEPTION: |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8374 | if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) { |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8375 | u32 err = vmcs_read32(error_code_field); |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8376 | kvm_requeue_exception_e(vcpu, vector, err); |
Avi Kivity | 35920a3 | 2008-07-03 14:50:12 +0300 | [diff] [blame] | 8377 | } else |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 8378 | kvm_requeue_exception(vcpu, vector); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8379 | break; |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8380 | case INTR_TYPE_SOFT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8381 | vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field); |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 8382 | /* fall through */ |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8383 | case INTR_TYPE_EXT_INTR: |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8384 | kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR); |
Gleb Natapov | 37b96e9 | 2009-03-30 16:03:13 +0300 | [diff] [blame] | 8385 | break; |
| 8386 | default: |
| 8387 | break; |
Avi Kivity | f7d9238 | 2008-07-03 16:14:28 +0300 | [diff] [blame] | 8388 | } |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8389 | } |
| 8390 | |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8391 | static void vmx_complete_interrupts(struct vcpu_vmx *vmx) |
| 8392 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8393 | __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info, |
Avi Kivity | 83422e1 | 2010-07-20 14:43:23 +0300 | [diff] [blame] | 8394 | VM_EXIT_INSTRUCTION_LEN, |
| 8395 | IDT_VECTORING_ERROR_CODE); |
| 8396 | } |
| 8397 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8398 | static void vmx_cancel_injection(struct kvm_vcpu *vcpu) |
| 8399 | { |
Jan Kiszka | 3ab66e8 | 2013-02-20 14:03:24 +0100 | [diff] [blame] | 8400 | __vmx_complete_interrupts(vcpu, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8401 | vmcs_read32(VM_ENTRY_INTR_INFO_FIELD), |
| 8402 | VM_ENTRY_INSTRUCTION_LEN, |
| 8403 | VM_ENTRY_EXCEPTION_ERROR_CODE); |
| 8404 | |
| 8405 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); |
| 8406 | } |
| 8407 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8408 | static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx) |
| 8409 | { |
| 8410 | int i, nr_msrs; |
| 8411 | struct perf_guest_switch_msr *msrs; |
| 8412 | |
| 8413 | msrs = perf_guest_get_msrs(&nr_msrs); |
| 8414 | |
| 8415 | if (!msrs) |
| 8416 | return; |
| 8417 | |
| 8418 | for (i = 0; i < nr_msrs; i++) |
| 8419 | if (msrs[i].host == msrs[i].guest) |
| 8420 | clear_atomic_switch_msr(vmx, msrs[i].msr); |
| 8421 | else |
| 8422 | add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest, |
| 8423 | msrs[i].host); |
| 8424 | } |
| 8425 | |
Lai Jiangshan | a3b5ba4 | 2011-02-11 14:29:40 +0800 | [diff] [blame] | 8426 | static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8427 | { |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8428 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8429 | unsigned long debugctlmsr, cr4; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8430 | |
| 8431 | /* Record the guest's net vcpu time for enforced NMI injections. */ |
| 8432 | if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked)) |
| 8433 | vmx->entry_time = ktime_get(); |
| 8434 | |
| 8435 | /* Don't enter VMX if guest state is invalid, let the exit handler |
| 8436 | start emulation until we arrive back to a valid state */ |
Gleb Natapov | 1416878 | 2013-01-21 15:36:49 +0200 | [diff] [blame] | 8437 | if (vmx->emulation_required) |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8438 | return; |
| 8439 | |
Radim Krčmář | a7653ec | 2014-08-21 18:08:07 +0200 | [diff] [blame] | 8440 | if (vmx->ple_window_dirty) { |
| 8441 | vmx->ple_window_dirty = false; |
| 8442 | vmcs_write32(PLE_WINDOW, vmx->ple_window); |
| 8443 | } |
| 8444 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 8445 | if (vmx->nested.sync_shadow_vmcs) { |
| 8446 | copy_vmcs12_to_shadow(vmx); |
| 8447 | vmx->nested.sync_shadow_vmcs = false; |
| 8448 | } |
| 8449 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8450 | if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8451 | vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]); |
| 8452 | if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty)) |
| 8453 | vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]); |
| 8454 | |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 8455 | cr4 = cr4_read_shadow(); |
Andy Lutomirski | d974baa | 2014-10-08 09:02:13 -0700 | [diff] [blame] | 8456 | if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) { |
| 8457 | vmcs_writel(HOST_CR4, cr4); |
| 8458 | vmx->host_state.vmcs_host_cr4 = cr4; |
| 8459 | } |
| 8460 | |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8461 | /* When single-stepping over STI and MOV SS, we must clear the |
| 8462 | * corresponding interruptibility bits in the guest state. Otherwise |
| 8463 | * vmentry fails as it then expects bit 14 (BS) in pending debug |
| 8464 | * exceptions being set, but that's not correct for the guest debugging |
| 8465 | * case. */ |
| 8466 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 8467 | vmx_set_interrupt_shadow(vcpu, 0); |
| 8468 | |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8469 | atomic_switch_perf_msrs(vmx); |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8470 | debugctlmsr = get_debugctlmsr(); |
Gleb Natapov | d7cd979 | 2011-10-05 14:01:23 +0200 | [diff] [blame] | 8471 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8472 | vmx->__launched = vmx->loaded_vmcs->launched; |
Avi Kivity | 104f226 | 2010-11-18 13:12:52 +0200 | [diff] [blame] | 8473 | asm( |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8474 | /* Store host registers */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8475 | "push %%" _ASM_DX "; push %%" _ASM_BP ";" |
| 8476 | "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */ |
| 8477 | "push %%" _ASM_CX " \n\t" |
| 8478 | "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8479 | "je 1f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8480 | "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8481 | __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t" |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8482 | "1: \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8483 | /* Reload cr2 if changed */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8484 | "mov %c[cr2](%0), %%" _ASM_AX " \n\t" |
| 8485 | "mov %%cr2, %%" _ASM_DX " \n\t" |
| 8486 | "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8487 | "je 2f \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8488 | "mov %%" _ASM_AX", %%cr2 \n\t" |
Avi Kivity | d3edefc | 2009-06-16 12:33:56 +0300 | [diff] [blame] | 8489 | "2: \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8490 | /* Check if vmlaunch of vmresume is needed */ |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8491 | "cmpl $0, %c[launched](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8492 | /* Load guest registers. Don't clobber flags. */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8493 | "mov %c[rax](%0), %%" _ASM_AX " \n\t" |
| 8494 | "mov %c[rbx](%0), %%" _ASM_BX " \n\t" |
| 8495 | "mov %c[rdx](%0), %%" _ASM_DX " \n\t" |
| 8496 | "mov %c[rsi](%0), %%" _ASM_SI " \n\t" |
| 8497 | "mov %c[rdi](%0), %%" _ASM_DI " \n\t" |
| 8498 | "mov %c[rbp](%0), %%" _ASM_BP " \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8499 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8500 | "mov %c[r8](%0), %%r8 \n\t" |
| 8501 | "mov %c[r9](%0), %%r9 \n\t" |
| 8502 | "mov %c[r10](%0), %%r10 \n\t" |
| 8503 | "mov %c[r11](%0), %%r11 \n\t" |
| 8504 | "mov %c[r12](%0), %%r12 \n\t" |
| 8505 | "mov %c[r13](%0), %%r13 \n\t" |
| 8506 | "mov %c[r14](%0), %%r14 \n\t" |
| 8507 | "mov %c[r15](%0), %%r15 \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8508 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8509 | "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */ |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8510 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8511 | /* Enter guest mode */ |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8512 | "jne 1f \n\t" |
Avi Kivity | 4ecac3f | 2008-05-13 13:23:38 +0300 | [diff] [blame] | 8513 | __ex(ASM_VMX_VMLAUNCH) "\n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8514 | "jmp 2f \n\t" |
| 8515 | "1: " __ex(ASM_VMX_VMRESUME) "\n\t" |
| 8516 | "2: " |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8517 | /* Save guest registers, load host registers, keep flags */ |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8518 | "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t" |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8519 | "pop %0 \n\t" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8520 | "mov %%" _ASM_AX ", %c[rax](%0) \n\t" |
| 8521 | "mov %%" _ASM_BX ", %c[rbx](%0) \n\t" |
| 8522 | __ASM_SIZE(pop) " %c[rcx](%0) \n\t" |
| 8523 | "mov %%" _ASM_DX ", %c[rdx](%0) \n\t" |
| 8524 | "mov %%" _ASM_SI ", %c[rsi](%0) \n\t" |
| 8525 | "mov %%" _ASM_DI ", %c[rdi](%0) \n\t" |
| 8526 | "mov %%" _ASM_BP ", %c[rbp](%0) \n\t" |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8527 | #ifdef CONFIG_X86_64 |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8528 | "mov %%r8, %c[r8](%0) \n\t" |
| 8529 | "mov %%r9, %c[r9](%0) \n\t" |
| 8530 | "mov %%r10, %c[r10](%0) \n\t" |
| 8531 | "mov %%r11, %c[r11](%0) \n\t" |
| 8532 | "mov %%r12, %c[r12](%0) \n\t" |
| 8533 | "mov %%r13, %c[r13](%0) \n\t" |
| 8534 | "mov %%r14, %c[r14](%0) \n\t" |
| 8535 | "mov %%r15, %c[r15](%0) \n\t" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8536 | #endif |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8537 | "mov %%cr2, %%" _ASM_AX " \n\t" |
| 8538 | "mov %%" _ASM_AX ", %c[cr2](%0) \n\t" |
Avi Kivity | c801949 | 2008-07-14 14:44:59 +0300 | [diff] [blame] | 8539 | |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8540 | "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8541 | "setbe %c[fail](%0) \n\t" |
Avi Kivity | 83287ea42 | 2012-09-16 15:10:57 +0300 | [diff] [blame] | 8542 | ".pushsection .rodata \n\t" |
| 8543 | ".global vmx_return \n\t" |
| 8544 | "vmx_return: " _ASM_PTR " 2b \n\t" |
| 8545 | ".popsection" |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8546 | : : "c"(vmx), "d"((unsigned long)HOST_RSP), |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8547 | [launched]"i"(offsetof(struct vcpu_vmx, __launched)), |
Avi Kivity | e08aa78 | 2007-11-15 18:06:18 +0200 | [diff] [blame] | 8548 | [fail]"i"(offsetof(struct vcpu_vmx, fail)), |
Avi Kivity | 313dbd49 | 2008-07-17 18:04:30 +0300 | [diff] [blame] | 8549 | [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)), |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8550 | [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])), |
| 8551 | [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])), |
| 8552 | [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])), |
| 8553 | [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])), |
| 8554 | [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])), |
| 8555 | [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])), |
| 8556 | [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])), |
Avi Kivity | 05b3e0c | 2006-12-13 00:33:45 -0800 | [diff] [blame] | 8557 | #ifdef CONFIG_X86_64 |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8558 | [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])), |
| 8559 | [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])), |
| 8560 | [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])), |
| 8561 | [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])), |
| 8562 | [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])), |
| 8563 | [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])), |
| 8564 | [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])), |
| 8565 | [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])), |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8566 | #endif |
Avi Kivity | 40712fa | 2011-01-06 18:09:12 +0200 | [diff] [blame] | 8567 | [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)), |
| 8568 | [wordsize]"i"(sizeof(ulong)) |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8569 | : "cc", "memory" |
| 8570 | #ifdef CONFIG_X86_64 |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8571 | , "rax", "rbx", "rdi", "rsi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8572 | , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" |
Avi Kivity | b188c81f | 2012-09-16 15:10:58 +0300 | [diff] [blame] | 8573 | #else |
| 8574 | , "eax", "ebx", "edi", "esi" |
Laurent Vivier | c203630 | 2007-10-25 14:18:52 +0200 | [diff] [blame] | 8575 | #endif |
| 8576 | ); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8577 | |
Gleb Natapov | 2a7921b | 2012-08-12 16:12:29 +0300 | [diff] [blame] | 8578 | /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */ |
| 8579 | if (debugctlmsr) |
| 8580 | update_debugctlmsr(debugctlmsr); |
| 8581 | |
Avi Kivity | aa67f60 | 2012-08-01 16:48:03 +0300 | [diff] [blame] | 8582 | #ifndef CONFIG_X86_64 |
| 8583 | /* |
| 8584 | * The sysexit path does not restore ds/es, so we must set them to |
| 8585 | * a reasonable value ourselves. |
| 8586 | * |
| 8587 | * We can't defer this to vmx_load_host_state() since that function |
| 8588 | * may be executed in interrupt context, which saves and restore segments |
| 8589 | * around it, nullifying its effect. |
| 8590 | */ |
| 8591 | loadsegment(ds, __USER_DS); |
| 8592 | loadsegment(es, __USER_DS); |
| 8593 | #endif |
| 8594 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 8595 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
Avi Kivity | 6de1273 | 2011-03-07 12:51:22 +0200 | [diff] [blame] | 8596 | | (1 << VCPU_EXREG_RFLAGS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8597 | | (1 << VCPU_EXREG_PDPTR) |
Avi Kivity | 2fb92db | 2011-04-27 19:42:18 +0300 | [diff] [blame] | 8598 | | (1 << VCPU_EXREG_SEGMENTS) |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 8599 | | (1 << VCPU_EXREG_CR3)); |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8600 | vcpu->arch.regs_dirty = 0; |
| 8601 | |
Avi Kivity | 1155f76 | 2007-11-22 11:30:47 +0200 | [diff] [blame] | 8602 | vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); |
| 8603 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8604 | vmx->loaded_vmcs->launched = 1; |
Avi Kivity | 1b6269d | 2007-10-09 12:12:19 +0200 | [diff] [blame] | 8605 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8606 | vmx->exit_reason = vmcs_read32(VM_EXIT_REASON); |
Jan Kiszka | 1e2b1dd | 2011-09-12 10:52:24 +0200 | [diff] [blame] | 8607 | trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX); |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8608 | |
Gleb Natapov | e0b890d | 2013-09-25 12:51:33 +0300 | [diff] [blame] | 8609 | /* |
| 8610 | * the KVM_REQ_EVENT optimization bit is only on for one entry, and if |
| 8611 | * we did not inject a still-pending event to L1 now because of |
| 8612 | * nested_run_pending, we need to re-enable this bit. |
| 8613 | */ |
| 8614 | if (vmx->nested.nested_run_pending) |
| 8615 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 8616 | |
| 8617 | vmx->nested.nested_run_pending = 0; |
| 8618 | |
Avi Kivity | 51aa01d | 2010-07-20 14:31:20 +0300 | [diff] [blame] | 8619 | vmx_complete_atomic_exit(vmx); |
| 8620 | vmx_recover_nmi_blocking(vmx); |
Avi Kivity | cf393f7 | 2008-07-01 16:20:21 +0300 | [diff] [blame] | 8621 | vmx_complete_interrupts(vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8622 | } |
| 8623 | |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8624 | static void vmx_load_vmcs01(struct kvm_vcpu *vcpu) |
| 8625 | { |
| 8626 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8627 | int cpu; |
| 8628 | |
| 8629 | if (vmx->loaded_vmcs == &vmx->vmcs01) |
| 8630 | return; |
| 8631 | |
| 8632 | cpu = get_cpu(); |
| 8633 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8634 | vmx_vcpu_put(vcpu); |
| 8635 | vmx_vcpu_load(vcpu, cpu); |
| 8636 | vcpu->cpu = cpu; |
| 8637 | put_cpu(); |
| 8638 | } |
| 8639 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8640 | static void vmx_free_vcpu(struct kvm_vcpu *vcpu) |
| 8641 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8642 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 8643 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8644 | if (enable_pml) |
| 8645 | vmx_disable_pml(vmx); |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 8646 | free_vpid(vmx); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8647 | leave_guest_mode(vcpu); |
| 8648 | vmx_load_vmcs01(vcpu); |
Marcelo Tosatti | 26a865f | 2014-01-03 17:00:51 -0200 | [diff] [blame] | 8649 | free_nested(vmx); |
Paolo Bonzini | 4fa7734 | 2014-07-17 12:25:16 +0200 | [diff] [blame] | 8650 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8651 | kfree(vmx->guest_msrs); |
| 8652 | kvm_vcpu_uninit(vcpu); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8653 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8654 | } |
| 8655 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8656 | 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] | 8657 | { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8658 | int err; |
Rusty Russell | c16f862 | 2007-07-30 21:12:19 +1000 | [diff] [blame] | 8659 | struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8660 | int cpu; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8661 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8662 | if (!vmx) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8663 | return ERR_PTR(-ENOMEM); |
| 8664 | |
Sheng Yang | 2384d2b | 2008-01-17 15:14:33 +0800 | [diff] [blame] | 8665 | allocate_vpid(vmx); |
| 8666 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8667 | err = kvm_vcpu_init(&vmx->vcpu, kvm, id); |
| 8668 | if (err) |
| 8669 | goto free_vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8670 | |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8671 | vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Paolo Bonzini | 03916db | 2014-07-24 14:21:57 +0200 | [diff] [blame] | 8672 | BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0]) |
| 8673 | > PAGE_SIZE); |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 8674 | |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8675 | err = -ENOMEM; |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8676 | if (!vmx->guest_msrs) { |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8677 | goto uninit_vcpu; |
| 8678 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8679 | |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8680 | vmx->loaded_vmcs = &vmx->vmcs01; |
| 8681 | vmx->loaded_vmcs->vmcs = alloc_vmcs(); |
| 8682 | if (!vmx->loaded_vmcs->vmcs) |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8683 | goto free_msrs; |
Nadav Har'El | d462b81 | 2011-05-24 15:26:10 +0300 | [diff] [blame] | 8684 | if (!vmm_exclusive) |
| 8685 | kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id()))); |
| 8686 | loaded_vmcs_init(vmx->loaded_vmcs); |
| 8687 | if (!vmm_exclusive) |
| 8688 | kvm_cpu_vmxoff(); |
Gregory Haskins | a2fa3e9 | 2007-07-27 08:13:10 -0400 | [diff] [blame] | 8689 | |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8690 | cpu = get_cpu(); |
| 8691 | vmx_vcpu_load(&vmx->vcpu, cpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 8692 | vmx->vcpu.cpu = cpu; |
Rusty Russell | 8b9cf98 | 2007-07-30 16:31:43 +1000 | [diff] [blame] | 8693 | err = vmx_vcpu_setup(vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8694 | vmx_vcpu_put(&vmx->vcpu); |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 8695 | put_cpu(); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8696 | if (err) |
| 8697 | goto free_vmcs; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8698 | if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | be6d05c | 2011-04-13 01:27:55 +0200 | [diff] [blame] | 8699 | err = alloc_apic_access_page(kvm); |
| 8700 | if (err) |
Marcelo Tosatti | 5e4a0b3 | 2008-02-14 21:21:43 -0200 | [diff] [blame] | 8701 | goto free_vmcs; |
Jan Kiszka | a63cb56 | 2013-04-08 11:07:46 +0200 | [diff] [blame] | 8702 | } |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8703 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8704 | if (enable_ept) { |
| 8705 | if (!kvm->arch.ept_identity_map_addr) |
| 8706 | kvm->arch.ept_identity_map_addr = |
| 8707 | VMX_EPT_IDENTITY_PAGETABLE_ADDR; |
Tang Chen | f51770e | 2014-09-16 18:41:59 +0800 | [diff] [blame] | 8708 | err = init_rmode_identity_map(kvm); |
| 8709 | if (err) |
Gleb Natapov | 93ea538 | 2011-02-21 12:07:59 +0200 | [diff] [blame] | 8710 | goto free_vmcs; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 8711 | } |
Sheng Yang | b7ebfb0 | 2008-04-25 21:44:52 +0800 | [diff] [blame] | 8712 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8713 | if (nested) |
| 8714 | nested_vmx_setup_ctls_msrs(vmx); |
| 8715 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8716 | vmx->nested.posted_intr_nv = -1; |
Nadav Har'El | a9d30f3 | 2011-05-25 23:03:55 +0300 | [diff] [blame] | 8717 | vmx->nested.current_vmptr = -1ull; |
| 8718 | vmx->nested.current_vmcs12 = NULL; |
| 8719 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8720 | /* |
| 8721 | * If PML is turned on, failure on enabling PML just results in failure |
| 8722 | * of creating the vcpu, therefore we can simplify PML logic (by |
| 8723 | * avoiding dealing with cases, such as enabling PML partially on vcpus |
| 8724 | * for the guest, etc. |
| 8725 | */ |
| 8726 | if (enable_pml) { |
| 8727 | err = vmx_enable_pml(vmx); |
| 8728 | if (err) |
| 8729 | goto free_vmcs; |
| 8730 | } |
| 8731 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8732 | return &vmx->vcpu; |
Ingo Molnar | 965b58a | 2007-01-05 16:36:23 -0800 | [diff] [blame] | 8733 | |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8734 | free_vmcs: |
Xiao Guangrong | 5f3fbc3 | 2012-05-14 14:58:58 +0800 | [diff] [blame] | 8735 | free_loaded_vmcs(vmx->loaded_vmcs); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8736 | free_msrs: |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8737 | kfree(vmx->guest_msrs); |
| 8738 | uninit_vcpu: |
| 8739 | kvm_vcpu_uninit(&vmx->vcpu); |
| 8740 | free_vcpu: |
Lai Jiangshan | cdbecfc | 2010-04-17 16:41:47 +0800 | [diff] [blame] | 8741 | free_vpid(vmx); |
Rusty Russell | a477034 | 2007-08-01 14:46:11 +1000 | [diff] [blame] | 8742 | kmem_cache_free(kvm_vcpu_cache, vmx); |
Rusty Russell | fb3f0f5 | 2007-07-27 17:16:56 +1000 | [diff] [blame] | 8743 | return ERR_PTR(err); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 8744 | } |
| 8745 | |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 8746 | static void __init vmx_check_processor_compat(void *rtn) |
| 8747 | { |
| 8748 | struct vmcs_config vmcs_conf; |
| 8749 | |
| 8750 | *(int *)rtn = 0; |
| 8751 | if (setup_vmcs_config(&vmcs_conf) < 0) |
| 8752 | *(int *)rtn = -EIO; |
| 8753 | if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) { |
| 8754 | printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n", |
| 8755 | smp_processor_id()); |
| 8756 | *(int *)rtn = -EIO; |
| 8757 | } |
| 8758 | } |
| 8759 | |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 8760 | static int get_ept_level(void) |
| 8761 | { |
| 8762 | return VMX_EPT_DEFAULT_GAW + 1; |
| 8763 | } |
| 8764 | |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8765 | 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] | 8766 | { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8767 | u8 cache; |
| 8768 | u64 ipat = 0; |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 8769 | |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8770 | /* For VT-d and EPT combination |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8771 | * 1. MMIO: always map as UC |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8772 | * 2. EPT with VT-d: |
| 8773 | * a. VT-d without snooping control feature: can't guarantee the |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8774 | * result, try to trust guest. |
Sheng Yang | 522c68c | 2009-04-27 20:35:43 +0800 | [diff] [blame] | 8775 | * b. VT-d with snooping control feature: snooping control feature of |
| 8776 | * VT-d engine can guarantee the cache correctness. Just set it |
| 8777 | * 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] | 8778 | * 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] | 8779 | * consistent with host MTRR |
| 8780 | */ |
Paolo Bonzini | 606decd | 2015-10-01 13:12:47 +0200 | [diff] [blame] | 8781 | if (is_mmio) { |
| 8782 | cache = MTRR_TYPE_UNCACHABLE; |
| 8783 | goto exit; |
| 8784 | } |
| 8785 | |
| 8786 | if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) { |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8787 | ipat = VMX_EPT_IPAT_BIT; |
| 8788 | cache = MTRR_TYPE_WRBACK; |
| 8789 | goto exit; |
| 8790 | } |
| 8791 | |
| 8792 | if (kvm_read_cr0(vcpu) & X86_CR0_CD) { |
| 8793 | ipat = VMX_EPT_IPAT_BIT; |
Paolo Bonzini | 0da029e | 2015-07-23 08:24:42 +0200 | [diff] [blame] | 8794 | 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] | 8795 | cache = MTRR_TYPE_WRBACK; |
| 8796 | else |
| 8797 | cache = MTRR_TYPE_UNCACHABLE; |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8798 | goto exit; |
| 8799 | } |
| 8800 | |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 8801 | cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 8802 | |
| 8803 | exit: |
| 8804 | return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 8805 | } |
| 8806 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 8807 | static int vmx_get_lpage_level(void) |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8808 | { |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 8809 | if (enable_ept && !cpu_has_vmx_ept_1g_page()) |
| 8810 | return PT_DIRECTORY_LEVEL; |
| 8811 | else |
| 8812 | /* For shadow and EPT supported 1GB page */ |
| 8813 | return PT_PDPE_LEVEL; |
Joerg Roedel | 344f414 | 2009-07-27 16:30:48 +0200 | [diff] [blame] | 8814 | } |
| 8815 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8816 | static void vmcs_set_secondary_exec_control(u32 new_ctl) |
| 8817 | { |
| 8818 | /* |
| 8819 | * These bits in the secondary execution controls field |
| 8820 | * are dynamic, the others are mostly based on the hypervisor |
| 8821 | * architecture and the guest's CPUID. Do not touch the |
| 8822 | * dynamic bits. |
| 8823 | */ |
| 8824 | u32 mask = |
| 8825 | SECONDARY_EXEC_SHADOW_VMCS | |
| 8826 | SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE | |
| 8827 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 8828 | |
| 8829 | u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL); |
| 8830 | |
| 8831 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, |
| 8832 | (new_ctl & ~mask) | (cur_ctl & mask)); |
| 8833 | } |
| 8834 | |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8835 | static void vmx_cpuid_update(struct kvm_vcpu *vcpu) |
| 8836 | { |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8837 | struct kvm_cpuid_entry2 *best; |
| 8838 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8839 | u32 secondary_exec_ctl = vmx_secondary_exec_control(vmx); |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8840 | |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8841 | if (vmx_rdtscp_supported()) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 8842 | bool rdtscp_enabled = guest_cpuid_has_rdtscp(vcpu); |
| 8843 | if (!rdtscp_enabled) |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8844 | secondary_exec_ctl &= ~SECONDARY_EXEC_RDTSCP; |
Xiao Guangrong | f36201e | 2015-09-09 14:05:53 +0800 | [diff] [blame] | 8845 | |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 8846 | if (nested) { |
Xiao Guangrong | 1cea0ce | 2015-09-09 14:05:57 +0800 | [diff] [blame] | 8847 | if (rdtscp_enabled) |
Paolo Bonzini | 8b97265 | 2015-09-15 17:34:42 +0200 | [diff] [blame] | 8848 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 8849 | SECONDARY_EXEC_RDTSCP; |
| 8850 | else |
| 8851 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 8852 | ~SECONDARY_EXEC_RDTSCP; |
| 8853 | } |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 8854 | } |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8855 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8856 | /* Exposing INVPCID only when PCID is exposed */ |
| 8857 | best = kvm_find_cpuid_entry(vcpu, 0x7, 0); |
| 8858 | if (vmx_invpcid_supported() && |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 8859 | (!best || !(best->ebx & bit(X86_FEATURE_INVPCID)) || |
| 8860 | !guest_cpuid_has_pcid(vcpu))) { |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8861 | secondary_exec_ctl &= ~SECONDARY_EXEC_ENABLE_INVPCID; |
Xiao Guangrong | 29541bb | 2015-09-09 14:05:54 +0800 | [diff] [blame] | 8862 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8863 | if (best) |
Ren, Yongjie | 4f97704 | 2012-09-07 07:36:59 +0000 | [diff] [blame] | 8864 | best->ebx &= ~bit(X86_FEATURE_INVPCID); |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 8865 | } |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 8866 | |
Xiao Guangrong | feda805 | 2015-09-09 14:05:55 +0800 | [diff] [blame] | 8867 | vmcs_set_secondary_exec_control(secondary_exec_ctl); |
| 8868 | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 8869 | if (static_cpu_has(X86_FEATURE_PCOMMIT) && nested) { |
| 8870 | if (guest_cpuid_has_pcommit(vcpu)) |
| 8871 | vmx->nested.nested_vmx_secondary_ctls_high |= |
| 8872 | SECONDARY_EXEC_PCOMMIT; |
| 8873 | else |
| 8874 | vmx->nested.nested_vmx_secondary_ctls_high &= |
| 8875 | ~SECONDARY_EXEC_PCOMMIT; |
| 8876 | } |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 8877 | } |
| 8878 | |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8879 | static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry) |
| 8880 | { |
Nadav Har'El | 7b8050f | 2011-05-25 23:16:10 +0300 | [diff] [blame] | 8881 | if (func == 1 && nested) |
| 8882 | entry->ecx |= bit(X86_FEATURE_VMX); |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 8883 | } |
| 8884 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8885 | static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu, |
| 8886 | struct x86_exception *fault) |
| 8887 | { |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8888 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8889 | u32 exit_reason; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8890 | |
| 8891 | if (fault->error_code & PFERR_RSVD_MASK) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8892 | exit_reason = EXIT_REASON_EPT_MISCONFIG; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8893 | else |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8894 | exit_reason = EXIT_REASON_EPT_VIOLATION; |
| 8895 | nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 8896 | vmcs12->guest_physical_address = fault->address; |
| 8897 | } |
| 8898 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8899 | /* Callbacks for nested_ept_init_mmu_context: */ |
| 8900 | |
| 8901 | static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu) |
| 8902 | { |
| 8903 | /* return the page table to be shadowed - in our case, EPT12 */ |
| 8904 | return get_vmcs12(vcpu)->ept_pointer; |
| 8905 | } |
| 8906 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 8907 | static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8908 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 8909 | WARN_ON(mmu_is_nested(vcpu)); |
| 8910 | kvm_init_shadow_ept_mmu(vcpu, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 8911 | to_vmx(vcpu)->nested.nested_vmx_ept_caps & |
| 8912 | VMX_EPT_EXECUTE_ONLY_BIT); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8913 | vcpu->arch.mmu.set_cr3 = vmx_set_cr3; |
| 8914 | vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3; |
| 8915 | vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault; |
| 8916 | |
| 8917 | vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 8918 | } |
| 8919 | |
| 8920 | static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu) |
| 8921 | { |
| 8922 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 8923 | } |
| 8924 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 8925 | static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12, |
| 8926 | u16 error_code) |
| 8927 | { |
| 8928 | bool inequality, bit; |
| 8929 | |
| 8930 | bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0; |
| 8931 | inequality = |
| 8932 | (error_code & vmcs12->page_fault_error_code_mask) != |
| 8933 | vmcs12->page_fault_error_code_match; |
| 8934 | return inequality ^ bit; |
| 8935 | } |
| 8936 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 8937 | static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu, |
| 8938 | struct x86_exception *fault) |
| 8939 | { |
| 8940 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 8941 | |
| 8942 | WARN_ON(!is_guest_mode(vcpu)); |
| 8943 | |
Eugene Korenevsky | 19d5f10 | 2014-12-16 22:35:53 +0300 | [diff] [blame] | 8944 | if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 8945 | nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason, |
| 8946 | vmcs_read32(VM_EXIT_INTR_INFO), |
| 8947 | vmcs_readl(EXIT_QUALIFICATION)); |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 8948 | else |
| 8949 | kvm_inject_page_fault(vcpu, fault); |
| 8950 | } |
| 8951 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8952 | static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu, |
| 8953 | struct vmcs12 *vmcs12) |
| 8954 | { |
| 8955 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8956 | int maxphyaddr = cpuid_maxphyaddr(vcpu); |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8957 | |
| 8958 | if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8959 | if (!PAGE_ALIGNED(vmcs12->apic_access_addr) || |
| 8960 | vmcs12->apic_access_addr >> maxphyaddr) |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 8961 | return false; |
| 8962 | |
| 8963 | /* |
| 8964 | * Translate L1 physical address to host physical |
| 8965 | * address for vmcs02. Keep the page pinned, so this |
| 8966 | * physical address remains valid. We keep a reference |
| 8967 | * to it so we can release it later. |
| 8968 | */ |
| 8969 | if (vmx->nested.apic_access_page) /* shouldn't happen */ |
| 8970 | nested_release_page(vmx->nested.apic_access_page); |
| 8971 | vmx->nested.apic_access_page = |
| 8972 | nested_get_page(vcpu, vmcs12->apic_access_addr); |
| 8973 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8974 | |
| 8975 | if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 8976 | if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr) || |
| 8977 | vmcs12->virtual_apic_page_addr >> maxphyaddr) |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 8978 | return false; |
| 8979 | |
| 8980 | if (vmx->nested.virtual_apic_page) /* shouldn't happen */ |
| 8981 | nested_release_page(vmx->nested.virtual_apic_page); |
| 8982 | vmx->nested.virtual_apic_page = |
| 8983 | nested_get_page(vcpu, vmcs12->virtual_apic_page_addr); |
| 8984 | |
| 8985 | /* |
| 8986 | * Failing the vm entry is _not_ what the processor does |
| 8987 | * but it's basically the only possibility we have. |
| 8988 | * We could still enter the guest if CR8 load exits are |
| 8989 | * enabled, CR8 store exits are enabled, and virtualize APIC |
| 8990 | * access is disabled; in this case the processor would never |
| 8991 | * use the TPR shadow and we could simply clear the bit from |
| 8992 | * the execution control. But such a configuration is useless, |
| 8993 | * so let's keep the code simple. |
| 8994 | */ |
| 8995 | if (!vmx->nested.virtual_apic_page) |
| 8996 | return false; |
| 8997 | } |
| 8998 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 8999 | if (nested_cpu_has_posted_intr(vmcs12)) { |
Eugene Korenevsky | 9090422 | 2015-03-29 23:56:27 +0300 | [diff] [blame] | 9000 | if (!IS_ALIGNED(vmcs12->posted_intr_desc_addr, 64) || |
| 9001 | vmcs12->posted_intr_desc_addr >> maxphyaddr) |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9002 | return false; |
| 9003 | |
| 9004 | if (vmx->nested.pi_desc_page) { /* shouldn't happen */ |
| 9005 | kunmap(vmx->nested.pi_desc_page); |
| 9006 | nested_release_page(vmx->nested.pi_desc_page); |
| 9007 | } |
| 9008 | vmx->nested.pi_desc_page = |
| 9009 | nested_get_page(vcpu, vmcs12->posted_intr_desc_addr); |
| 9010 | if (!vmx->nested.pi_desc_page) |
| 9011 | return false; |
| 9012 | |
| 9013 | vmx->nested.pi_desc = |
| 9014 | (struct pi_desc *)kmap(vmx->nested.pi_desc_page); |
| 9015 | if (!vmx->nested.pi_desc) { |
| 9016 | nested_release_page_clean(vmx->nested.pi_desc_page); |
| 9017 | return false; |
| 9018 | } |
| 9019 | vmx->nested.pi_desc = |
| 9020 | (struct pi_desc *)((void *)vmx->nested.pi_desc + |
| 9021 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9022 | (PAGE_SIZE - 1))); |
| 9023 | } |
| 9024 | |
Wanpeng Li | a2bcba5 | 2014-08-21 19:46:49 +0800 | [diff] [blame] | 9025 | return true; |
| 9026 | } |
| 9027 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9028 | static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu) |
| 9029 | { |
| 9030 | u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value; |
| 9031 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9032 | |
| 9033 | if (vcpu->arch.virtual_tsc_khz == 0) |
| 9034 | return; |
| 9035 | |
| 9036 | /* Make sure short timeouts reliably trigger an immediate vmexit. |
| 9037 | * hrtimer_start does not guarantee this. */ |
| 9038 | if (preemption_timeout <= 1) { |
| 9039 | vmx_preemption_timer_fn(&vmx->nested.preemption_timer); |
| 9040 | return; |
| 9041 | } |
| 9042 | |
| 9043 | preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 9044 | preemption_timeout *= 1000000; |
| 9045 | do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz); |
| 9046 | hrtimer_start(&vmx->nested.preemption_timer, |
| 9047 | ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL); |
| 9048 | } |
| 9049 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9050 | static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu, |
| 9051 | struct vmcs12 *vmcs12) |
| 9052 | { |
| 9053 | int maxphyaddr; |
| 9054 | u64 addr; |
| 9055 | |
| 9056 | if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS)) |
| 9057 | return 0; |
| 9058 | |
| 9059 | if (vmcs12_read_any(vcpu, MSR_BITMAP, &addr)) { |
| 9060 | WARN_ON(1); |
| 9061 | return -EINVAL; |
| 9062 | } |
| 9063 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
| 9064 | |
| 9065 | if (!PAGE_ALIGNED(vmcs12->msr_bitmap) || |
| 9066 | ((addr + PAGE_SIZE) >> maxphyaddr)) |
| 9067 | return -EINVAL; |
| 9068 | |
| 9069 | return 0; |
| 9070 | } |
| 9071 | |
| 9072 | /* |
| 9073 | * Merge L0's and L1's MSR bitmap, return false to indicate that |
| 9074 | * we do not use the hardware. |
| 9075 | */ |
| 9076 | static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu, |
| 9077 | struct vmcs12 *vmcs12) |
| 9078 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9079 | int msr; |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9080 | struct page *page; |
| 9081 | unsigned long *msr_bitmap; |
| 9082 | |
| 9083 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12)) |
| 9084 | return false; |
| 9085 | |
| 9086 | page = nested_get_page(vcpu, vmcs12->msr_bitmap); |
| 9087 | if (!page) { |
| 9088 | WARN_ON(1); |
| 9089 | return false; |
| 9090 | } |
| 9091 | msr_bitmap = (unsigned long *)kmap(page); |
| 9092 | if (!msr_bitmap) { |
| 9093 | nested_release_page_clean(page); |
| 9094 | WARN_ON(1); |
| 9095 | return false; |
| 9096 | } |
| 9097 | |
| 9098 | if (nested_cpu_has_virt_x2apic_mode(vmcs12)) { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9099 | if (nested_cpu_has_apic_reg_virt(vmcs12)) |
| 9100 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 9101 | nested_vmx_disable_intercept_for_msr( |
| 9102 | msr_bitmap, |
| 9103 | vmx_msr_bitmap_nested, |
| 9104 | msr, MSR_TYPE_R); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9105 | /* TPR is allowed */ |
| 9106 | nested_vmx_disable_intercept_for_msr(msr_bitmap, |
| 9107 | vmx_msr_bitmap_nested, |
| 9108 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
| 9109 | MSR_TYPE_R | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9110 | if (nested_cpu_has_vid(vmcs12)) { |
| 9111 | /* EOI and self-IPI are allowed */ |
| 9112 | nested_vmx_disable_intercept_for_msr( |
| 9113 | msr_bitmap, |
| 9114 | vmx_msr_bitmap_nested, |
| 9115 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 9116 | MSR_TYPE_W); |
| 9117 | nested_vmx_disable_intercept_for_msr( |
| 9118 | msr_bitmap, |
| 9119 | vmx_msr_bitmap_nested, |
| 9120 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 9121 | MSR_TYPE_W); |
| 9122 | } |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9123 | } else { |
| 9124 | /* |
| 9125 | * Enable reading intercept of all the x2apic |
| 9126 | * MSRs. We should not rely on vmcs12 to do any |
| 9127 | * optimizations here, it may have been modified |
| 9128 | * by L1. |
| 9129 | */ |
| 9130 | for (msr = 0x800; msr <= 0x8ff; msr++) |
| 9131 | __vmx_enable_intercept_for_msr( |
| 9132 | vmx_msr_bitmap_nested, |
| 9133 | msr, |
| 9134 | MSR_TYPE_R); |
| 9135 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9136 | __vmx_enable_intercept_for_msr( |
| 9137 | vmx_msr_bitmap_nested, |
| 9138 | APIC_BASE_MSR + (APIC_TASKPRI >> 4), |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9139 | MSR_TYPE_W); |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9140 | __vmx_enable_intercept_for_msr( |
| 9141 | vmx_msr_bitmap_nested, |
| 9142 | APIC_BASE_MSR + (APIC_EOI >> 4), |
| 9143 | MSR_TYPE_W); |
| 9144 | __vmx_enable_intercept_for_msr( |
| 9145 | vmx_msr_bitmap_nested, |
| 9146 | APIC_BASE_MSR + (APIC_SELF_IPI >> 4), |
| 9147 | MSR_TYPE_W); |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9148 | } |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9149 | kunmap(page); |
| 9150 | nested_release_page_clean(page); |
| 9151 | |
| 9152 | return true; |
| 9153 | } |
| 9154 | |
| 9155 | static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu, |
| 9156 | struct vmcs12 *vmcs12) |
| 9157 | { |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9158 | if (!nested_cpu_has_virt_x2apic_mode(vmcs12) && |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9159 | !nested_cpu_has_apic_reg_virt(vmcs12) && |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9160 | !nested_cpu_has_vid(vmcs12) && |
| 9161 | !nested_cpu_has_posted_intr(vmcs12)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9162 | return 0; |
| 9163 | |
| 9164 | /* |
| 9165 | * If virtualize x2apic mode is enabled, |
| 9166 | * virtualize apic access must be disabled. |
| 9167 | */ |
Wincy Van | 82f0dd4 | 2015-02-03 23:57:18 +0800 | [diff] [blame] | 9168 | if (nested_cpu_has_virt_x2apic_mode(vmcs12) && |
| 9169 | nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9170 | return -EINVAL; |
| 9171 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9172 | /* |
| 9173 | * If virtual interrupt delivery is enabled, |
| 9174 | * we must exit on external interrupts. |
| 9175 | */ |
| 9176 | if (nested_cpu_has_vid(vmcs12) && |
| 9177 | !nested_exit_on_intr(vcpu)) |
| 9178 | return -EINVAL; |
| 9179 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9180 | /* |
| 9181 | * bits 15:8 should be zero in posted_intr_nv, |
| 9182 | * the descriptor address has been already checked |
| 9183 | * in nested_get_vmcs12_pages. |
| 9184 | */ |
| 9185 | if (nested_cpu_has_posted_intr(vmcs12) && |
| 9186 | (!nested_cpu_has_vid(vmcs12) || |
| 9187 | !nested_exit_intr_ack_set(vcpu) || |
| 9188 | vmcs12->posted_intr_nv & 0xff00)) |
| 9189 | return -EINVAL; |
| 9190 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9191 | /* tpr shadow is needed by all apicv features. */ |
| 9192 | if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) |
| 9193 | return -EINVAL; |
| 9194 | |
| 9195 | return 0; |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9196 | } |
| 9197 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9198 | static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu, |
| 9199 | unsigned long count_field, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9200 | unsigned long addr_field) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9201 | { |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9202 | int maxphyaddr; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9203 | u64 count, addr; |
| 9204 | |
| 9205 | if (vmcs12_read_any(vcpu, count_field, &count) || |
| 9206 | vmcs12_read_any(vcpu, addr_field, &addr)) { |
| 9207 | WARN_ON(1); |
| 9208 | return -EINVAL; |
| 9209 | } |
| 9210 | if (count == 0) |
| 9211 | return 0; |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9212 | maxphyaddr = cpuid_maxphyaddr(vcpu); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9213 | if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr || |
| 9214 | (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) { |
| 9215 | pr_warn_ratelimited( |
| 9216 | "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)", |
| 9217 | addr_field, maxphyaddr, count, addr); |
| 9218 | return -EINVAL; |
| 9219 | } |
| 9220 | return 0; |
| 9221 | } |
| 9222 | |
| 9223 | static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu, |
| 9224 | struct vmcs12 *vmcs12) |
| 9225 | { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9226 | if (vmcs12->vm_exit_msr_load_count == 0 && |
| 9227 | vmcs12->vm_exit_msr_store_count == 0 && |
| 9228 | vmcs12->vm_entry_msr_load_count == 0) |
| 9229 | return 0; /* Fast path */ |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9230 | if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9231 | VM_EXIT_MSR_LOAD_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9232 | nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9233 | VM_EXIT_MSR_STORE_ADDR) || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9234 | nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT, |
Eugene Korenevsky | 92d71bc | 2015-03-29 23:56:44 +0300 | [diff] [blame] | 9235 | VM_ENTRY_MSR_LOAD_ADDR)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9236 | return -EINVAL; |
| 9237 | return 0; |
| 9238 | } |
| 9239 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9240 | static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu, |
| 9241 | struct vmx_msr_entry *e) |
| 9242 | { |
| 9243 | /* x2APIC MSR accesses are not allowed */ |
Jan Kiszka | 8a9781f | 2015-05-04 08:32:32 +0200 | [diff] [blame] | 9244 | if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8) |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9245 | return -EINVAL; |
| 9246 | if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */ |
| 9247 | e->index == MSR_IA32_UCODE_REV) |
| 9248 | return -EINVAL; |
| 9249 | if (e->reserved != 0) |
| 9250 | return -EINVAL; |
| 9251 | return 0; |
| 9252 | } |
| 9253 | |
| 9254 | static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu, |
| 9255 | struct vmx_msr_entry *e) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9256 | { |
| 9257 | if (e->index == MSR_FS_BASE || |
| 9258 | e->index == MSR_GS_BASE || |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9259 | e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */ |
| 9260 | nested_vmx_msr_check_common(vcpu, e)) |
| 9261 | return -EINVAL; |
| 9262 | return 0; |
| 9263 | } |
| 9264 | |
| 9265 | static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu, |
| 9266 | struct vmx_msr_entry *e) |
| 9267 | { |
| 9268 | if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */ |
| 9269 | nested_vmx_msr_check_common(vcpu, e)) |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9270 | return -EINVAL; |
| 9271 | return 0; |
| 9272 | } |
| 9273 | |
| 9274 | /* |
| 9275 | * Load guest's/host's msr at nested entry/exit. |
| 9276 | * return 0 for success, entry index for failure. |
| 9277 | */ |
| 9278 | static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9279 | { |
| 9280 | u32 i; |
| 9281 | struct vmx_msr_entry e; |
| 9282 | struct msr_data msr; |
| 9283 | |
| 9284 | msr.host_initiated = false; |
| 9285 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9286 | if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e), |
| 9287 | &e, sizeof(e))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9288 | pr_warn_ratelimited( |
| 9289 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9290 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9291 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9292 | } |
| 9293 | if (nested_vmx_load_msr_check(vcpu, &e)) { |
| 9294 | pr_warn_ratelimited( |
| 9295 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9296 | __func__, i, e.index, e.reserved); |
| 9297 | goto fail; |
| 9298 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9299 | msr.index = e.index; |
| 9300 | msr.data = e.value; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9301 | if (kvm_set_msr(vcpu, &msr)) { |
| 9302 | pr_warn_ratelimited( |
| 9303 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
| 9304 | __func__, i, e.index, e.value); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9305 | goto fail; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9306 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9307 | } |
| 9308 | return 0; |
| 9309 | fail: |
| 9310 | return i + 1; |
| 9311 | } |
| 9312 | |
| 9313 | static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count) |
| 9314 | { |
| 9315 | u32 i; |
| 9316 | struct vmx_msr_entry e; |
| 9317 | |
| 9318 | for (i = 0; i < count; i++) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9319 | struct msr_data msr_info; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9320 | if (kvm_vcpu_read_guest(vcpu, |
| 9321 | gpa + i * sizeof(e), |
| 9322 | &e, 2 * sizeof(u32))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9323 | pr_warn_ratelimited( |
| 9324 | "%s cannot read MSR entry (%u, 0x%08llx)\n", |
| 9325 | __func__, i, gpa + i * sizeof(e)); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9326 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9327 | } |
| 9328 | if (nested_vmx_store_msr_check(vcpu, &e)) { |
| 9329 | pr_warn_ratelimited( |
| 9330 | "%s check failed (%u, 0x%x, 0x%x)\n", |
| 9331 | __func__, i, e.index, e.reserved); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9332 | return -EINVAL; |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9333 | } |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9334 | msr_info.host_initiated = false; |
| 9335 | msr_info.index = e.index; |
| 9336 | if (kvm_get_msr(vcpu, &msr_info)) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9337 | pr_warn_ratelimited( |
| 9338 | "%s cannot read MSR (%u, 0x%x)\n", |
| 9339 | __func__, i, e.index); |
| 9340 | return -EINVAL; |
| 9341 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 9342 | if (kvm_vcpu_write_guest(vcpu, |
| 9343 | gpa + i * sizeof(e) + |
| 9344 | offsetof(struct vmx_msr_entry, value), |
| 9345 | &msr_info.data, sizeof(msr_info.data))) { |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9346 | pr_warn_ratelimited( |
| 9347 | "%s cannot write MSR (%u, 0x%x, 0x%llx)\n", |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 9348 | __func__, i, e.index, msr_info.data); |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9349 | return -EINVAL; |
| 9350 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9351 | } |
| 9352 | return 0; |
| 9353 | } |
| 9354 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9355 | /* |
| 9356 | * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested |
| 9357 | * 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] | 9358 | * 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] | 9359 | * guest in a way that will both be appropriate to L1's requests, and our |
| 9360 | * needs. In addition to modifying the active vmcs (which is vmcs02), this |
| 9361 | * function also has additional necessary side-effects, like setting various |
| 9362 | * vcpu->arch fields. |
| 9363 | */ |
| 9364 | static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9365 | { |
| 9366 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9367 | u32 exec_control; |
| 9368 | |
| 9369 | vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector); |
| 9370 | vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); |
| 9371 | vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector); |
| 9372 | vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector); |
| 9373 | vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector); |
| 9374 | vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector); |
| 9375 | vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector); |
| 9376 | vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector); |
| 9377 | vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit); |
| 9378 | vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); |
| 9379 | vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit); |
| 9380 | vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit); |
| 9381 | vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit); |
| 9382 | vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit); |
| 9383 | vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit); |
| 9384 | vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit); |
| 9385 | vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit); |
| 9386 | vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit); |
| 9387 | vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes); |
| 9388 | vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); |
| 9389 | vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes); |
| 9390 | vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes); |
| 9391 | vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes); |
| 9392 | vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes); |
| 9393 | vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes); |
| 9394 | vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes); |
| 9395 | vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); |
| 9396 | vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); |
| 9397 | vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base); |
| 9398 | vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base); |
| 9399 | vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base); |
| 9400 | vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base); |
| 9401 | vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base); |
| 9402 | vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base); |
| 9403 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base); |
| 9404 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base); |
| 9405 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9406 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) { |
| 9407 | kvm_set_dr(vcpu, 7, vmcs12->guest_dr7); |
| 9408 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl); |
| 9409 | } else { |
| 9410 | kvm_set_dr(vcpu, 7, vcpu->arch.dr7); |
| 9411 | vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl); |
| 9412 | } |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9413 | vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, |
| 9414 | vmcs12->vm_entry_intr_info_field); |
| 9415 | vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, |
| 9416 | vmcs12->vm_entry_exception_error_code); |
| 9417 | vmcs_write32(VM_ENTRY_INSTRUCTION_LEN, |
| 9418 | vmcs12->vm_entry_instruction_len); |
| 9419 | vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, |
| 9420 | vmcs12->guest_interruptibility_info); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9421 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs); |
Gleb Natapov | 63fbf59 | 2013-07-28 18:31:06 +0300 | [diff] [blame] | 9422 | vmx_set_rflags(vcpu, vmcs12->guest_rflags); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9423 | vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, |
| 9424 | vmcs12->guest_pending_dbg_exceptions); |
| 9425 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp); |
| 9426 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip); |
| 9427 | |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 9428 | if (nested_cpu_has_xsaves(vmcs12)) |
| 9429 | vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9430 | vmcs_write64(VMCS_LINK_POINTER, -1ull); |
| 9431 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9432 | exec_control = vmcs12->pin_based_vm_exec_control; |
| 9433 | exec_control |= vmcs_config.pin_based_exec_ctrl; |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9434 | exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER; |
| 9435 | |
| 9436 | if (nested_cpu_has_posted_intr(vmcs12)) { |
| 9437 | /* |
| 9438 | * Note that we use L0's vector here and in |
| 9439 | * vmx_deliver_nested_posted_interrupt. |
| 9440 | */ |
| 9441 | vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv; |
| 9442 | vmx->nested.pi_pending = false; |
| 9443 | vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR); |
| 9444 | vmcs_write64(POSTED_INTR_DESC_ADDR, |
| 9445 | page_to_phys(vmx->nested.pi_desc_page) + |
| 9446 | (unsigned long)(vmcs12->posted_intr_desc_addr & |
| 9447 | (PAGE_SIZE - 1))); |
| 9448 | } else |
| 9449 | exec_control &= ~PIN_BASED_POSTED_INTR; |
| 9450 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9451 | vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9452 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9453 | vmx->nested.preemption_timer_expired = false; |
| 9454 | if (nested_cpu_has_preemption_timer(vmcs12)) |
| 9455 | vmx_start_preemption_timer(vcpu); |
Jan Kiszka | 0238ea9 | 2013-03-13 11:31:24 +0100 | [diff] [blame] | 9456 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9457 | /* |
| 9458 | * Whether page-faults are trapped is determined by a combination of |
| 9459 | * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF. |
| 9460 | * If enable_ept, L0 doesn't care about page faults and we should |
| 9461 | * set all of these to L1's desires. However, if !enable_ept, L0 does |
| 9462 | * care about (at least some) page faults, and because it is not easy |
| 9463 | * (if at all possible?) to merge L0 and L1's desires, we simply ask |
| 9464 | * to exit on each and every L2 page fault. This is done by setting |
| 9465 | * MASK=MATCH=0 and (see below) EB.PF=1. |
| 9466 | * Note that below we don't need special code to set EB.PF beyond the |
| 9467 | * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept, |
| 9468 | * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when |
| 9469 | * !enable_ept, EB.PF is 1, so the "or" will always be 1. |
| 9470 | * |
| 9471 | * A problem with this approach (when !enable_ept) is that L1 may be |
| 9472 | * injected with more page faults than it asked for. This could have |
| 9473 | * caused problems, but in practice existing hypervisors don't care. |
| 9474 | * To fix this, we will need to emulate the PFEC checking (on the L1 |
| 9475 | * page tables), using walk_addr(), when injecting PFs to L1. |
| 9476 | */ |
| 9477 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, |
| 9478 | enable_ept ? vmcs12->page_fault_error_code_mask : 0); |
| 9479 | vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, |
| 9480 | enable_ept ? vmcs12->page_fault_error_code_match : 0); |
| 9481 | |
| 9482 | if (cpu_has_secondary_exec_ctrls()) { |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9483 | exec_control = vmx_secondary_exec_control(vmx); |
Xiao Guangrong | e282162 | 2015-09-09 14:05:52 +0800 | [diff] [blame] | 9484 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9485 | /* Take the following fields only from vmcs12 */ |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9486 | exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES | |
Jan Kiszka | b3a2a90 | 2015-03-23 19:27:19 +0100 | [diff] [blame] | 9487 | SECONDARY_EXEC_RDTSCP | |
Paolo Bonzini | 696dfd9 | 2014-05-07 11:20:54 +0200 | [diff] [blame] | 9488 | SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY | |
Xiao Guangrong | 8b3e34e | 2015-09-09 14:05:51 +0800 | [diff] [blame] | 9489 | SECONDARY_EXEC_APIC_REGISTER_VIRT | |
| 9490 | SECONDARY_EXEC_PCOMMIT); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9491 | if (nested_cpu_has(vmcs12, |
| 9492 | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) |
| 9493 | exec_control |= vmcs12->secondary_vm_exec_control; |
| 9494 | |
| 9495 | if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) { |
| 9496 | /* |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9497 | * If translation failed, no matter: This feature asks |
| 9498 | * to exit when accessing the given address, and if it |
| 9499 | * can never be accessed, this feature won't do |
| 9500 | * anything anyway. |
| 9501 | */ |
| 9502 | if (!vmx->nested.apic_access_page) |
| 9503 | exec_control &= |
| 9504 | ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
| 9505 | else |
| 9506 | vmcs_write64(APIC_ACCESS_ADDR, |
| 9507 | page_to_phys(vmx->nested.apic_access_page)); |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9508 | } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) && |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 9509 | cpu_need_virtualize_apic_accesses(&vmx->vcpu)) { |
Jan Kiszka | ca3f257 | 2013-12-16 12:55:46 +0100 | [diff] [blame] | 9510 | exec_control |= |
| 9511 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES; |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 9512 | kvm_vcpu_reload_apic_access_page(vcpu); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9513 | } |
| 9514 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 9515 | if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) { |
| 9516 | vmcs_write64(EOI_EXIT_BITMAP0, |
| 9517 | vmcs12->eoi_exit_bitmap0); |
| 9518 | vmcs_write64(EOI_EXIT_BITMAP1, |
| 9519 | vmcs12->eoi_exit_bitmap1); |
| 9520 | vmcs_write64(EOI_EXIT_BITMAP2, |
| 9521 | vmcs12->eoi_exit_bitmap2); |
| 9522 | vmcs_write64(EOI_EXIT_BITMAP3, |
| 9523 | vmcs12->eoi_exit_bitmap3); |
| 9524 | vmcs_write16(GUEST_INTR_STATUS, |
| 9525 | vmcs12->guest_intr_status); |
| 9526 | } |
| 9527 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9528 | vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control); |
| 9529 | } |
| 9530 | |
| 9531 | |
| 9532 | /* |
| 9533 | * Set host-state according to L0's settings (vmcs12 is irrelevant here) |
| 9534 | * Some constant fields are set here by vmx_set_constant_host_state(). |
| 9535 | * Other fields are different per CPU, and will be set later when |
| 9536 | * vmx_vcpu_load() is called, and when vmx_save_host_state() is called. |
| 9537 | */ |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 9538 | vmx_set_constant_host_state(vmx); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9539 | |
| 9540 | /* |
| 9541 | * HOST_RSP is normally set correctly in vmx_vcpu_run() just before |
| 9542 | * entry, but only if the current (host) sp changed from the value |
| 9543 | * we wrote last (vmx->host_rsp). This cache is no longer relevant |
| 9544 | * if we switch vmcs, and rather than hold a separate cache per vmcs, |
| 9545 | * here we just force the write to happen on entry. |
| 9546 | */ |
| 9547 | vmx->host_rsp = 0; |
| 9548 | |
| 9549 | exec_control = vmx_exec_control(vmx); /* L0's desires */ |
| 9550 | exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING; |
| 9551 | exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING; |
| 9552 | exec_control &= ~CPU_BASED_TPR_SHADOW; |
| 9553 | exec_control |= vmcs12->cpu_based_vm_exec_control; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 9554 | |
| 9555 | if (exec_control & CPU_BASED_TPR_SHADOW) { |
| 9556 | vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, |
| 9557 | page_to_phys(vmx->nested.virtual_apic_page)); |
| 9558 | vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold); |
| 9559 | } |
| 9560 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9561 | if (cpu_has_vmx_msr_bitmap() && |
Wincy Van | 670125b | 2015-03-04 14:31:56 +0800 | [diff] [blame] | 9562 | exec_control & CPU_BASED_USE_MSR_BITMAPS) { |
| 9563 | nested_vmx_merge_msr_bitmap(vcpu, vmcs12); |
| 9564 | /* MSR_BITMAP will be set by following vmx_set_efer. */ |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9565 | } else |
| 9566 | exec_control &= ~CPU_BASED_USE_MSR_BITMAPS; |
| 9567 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9568 | /* |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9569 | * Merging of IO bitmap not currently supported. |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9570 | * Rather, exit every time. |
| 9571 | */ |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9572 | exec_control &= ~CPU_BASED_USE_IO_BITMAPS; |
| 9573 | exec_control |= CPU_BASED_UNCOND_IO_EXITING; |
| 9574 | |
| 9575 | vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control); |
| 9576 | |
| 9577 | /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the |
| 9578 | * bitwise-or of what L1 wants to trap for L2, and what we want to |
| 9579 | * trap. Note that CR0.TS also needs updating - we do this later. |
| 9580 | */ |
| 9581 | update_exception_bitmap(vcpu); |
| 9582 | vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask; |
| 9583 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 9584 | |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9585 | /* L2->L1 exit controls are emulated - the hardware exit is to L0 so |
| 9586 | * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER |
| 9587 | * bits are further modified by vmx_set_efer() below. |
| 9588 | */ |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9589 | vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl); |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9590 | |
| 9591 | /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are |
| 9592 | * emulated by vmx_set_efer(), below. |
| 9593 | */ |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 9594 | vm_entry_controls_init(vmx, |
Nadav Har'El | 8049d65 | 2013-08-05 11:07:06 +0300 | [diff] [blame] | 9595 | (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER & |
| 9596 | ~VM_ENTRY_IA32E_MODE) | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9597 | (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE)); |
| 9598 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9599 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) { |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9600 | vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 9601 | vcpu->arch.pat = vmcs12->guest_ia32_pat; |
| 9602 | } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9603 | vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat); |
| 9604 | |
| 9605 | |
| 9606 | set_cr4_guest_host_mask(vmx); |
| 9607 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 9608 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) |
| 9609 | vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs); |
| 9610 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 9611 | if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING) |
| 9612 | vmcs_write64(TSC_OFFSET, |
| 9613 | vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset); |
| 9614 | else |
| 9615 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9616 | |
| 9617 | if (enable_vpid) { |
| 9618 | /* |
| 9619 | * Trivially support vpid by letting L2s share their parent |
| 9620 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 9621 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 9622 | */ |
| 9623 | vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid); |
| 9624 | vmx_flush_tlb(vcpu); |
| 9625 | } |
| 9626 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 9627 | if (nested_cpu_has_ept(vmcs12)) { |
| 9628 | kvm_mmu_unload(vcpu); |
| 9629 | nested_ept_init_mmu_context(vcpu); |
| 9630 | } |
| 9631 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9632 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) |
| 9633 | vcpu->arch.efer = vmcs12->guest_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 9634 | else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9635 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 9636 | else |
| 9637 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 9638 | /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */ |
| 9639 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 9640 | |
| 9641 | /* |
| 9642 | * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified |
| 9643 | * TS bit (for lazy fpu) and bits which we consider mandatory enabled. |
| 9644 | * The CR0_READ_SHADOW is what L2 should have expected to read given |
| 9645 | * the specifications by L1; It's not enough to take |
| 9646 | * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we |
| 9647 | * have more bits than L1 expected. |
| 9648 | */ |
| 9649 | vmx_set_cr0(vcpu, vmcs12->guest_cr0); |
| 9650 | vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12)); |
| 9651 | |
| 9652 | vmx_set_cr4(vcpu, vmcs12->guest_cr4); |
| 9653 | vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12)); |
| 9654 | |
| 9655 | /* shadow page tables on either EPT or shadow page tables */ |
| 9656 | kvm_set_cr3(vcpu, vmcs12->guest_cr3); |
| 9657 | kvm_mmu_reset_context(vcpu); |
| 9658 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 9659 | if (!enable_ept) |
| 9660 | vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested; |
| 9661 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 9662 | /* |
| 9663 | * L1 may access the L2's PDPTR, so save them to construct vmcs12 |
| 9664 | */ |
| 9665 | if (enable_ept) { |
| 9666 | vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0); |
| 9667 | vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1); |
| 9668 | vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2); |
| 9669 | vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3); |
| 9670 | } |
| 9671 | |
Nadav Har'El | fe3ef05 | 2011-05-25 23:10:02 +0300 | [diff] [blame] | 9672 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp); |
| 9673 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip); |
| 9674 | } |
| 9675 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9676 | /* |
| 9677 | * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1 |
| 9678 | * for running an L2 nested guest. |
| 9679 | */ |
| 9680 | static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch) |
| 9681 | { |
| 9682 | struct vmcs12 *vmcs12; |
| 9683 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9684 | int cpu; |
| 9685 | struct loaded_vmcs *vmcs02; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 9686 | bool ia32e; |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9687 | u32 msr_entry_idx; |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9688 | |
| 9689 | if (!nested_vmx_check_permission(vcpu) || |
| 9690 | !nested_vmx_check_vmcs12(vcpu)) |
| 9691 | return 1; |
| 9692 | |
| 9693 | skip_emulated_instruction(vcpu); |
| 9694 | vmcs12 = get_vmcs12(vcpu); |
| 9695 | |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 9696 | if (enable_shadow_vmcs) |
| 9697 | copy_shadow_to_vmcs12(vmx); |
| 9698 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9699 | /* |
| 9700 | * The nested entry process starts with enforcing various prerequisites |
| 9701 | * on vmcs12 as required by the Intel SDM, and act appropriately when |
| 9702 | * they fail: As the SDM explains, some conditions should cause the |
| 9703 | * instruction to fail, while others will cause the instruction to seem |
| 9704 | * to succeed, but return an EXIT_REASON_INVALID_STATE. |
| 9705 | * To speed up the normal (success) code path, we should avoid checking |
| 9706 | * for misconfigurations which will anyway be caught by the processor |
| 9707 | * when using the merged vmcs02. |
| 9708 | */ |
| 9709 | if (vmcs12->launch_state == launch) { |
| 9710 | nested_vmx_failValid(vcpu, |
| 9711 | launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS |
| 9712 | : VMXERR_VMRESUME_NONLAUNCHED_VMCS); |
| 9713 | return 1; |
| 9714 | } |
| 9715 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9716 | if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE && |
| 9717 | vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) { |
Paolo Bonzini | 26539bd | 2013-04-15 15:00:27 +0200 | [diff] [blame] | 9718 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9719 | return 1; |
| 9720 | } |
| 9721 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9722 | if (!nested_get_vmcs12_pages(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9723 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9724 | return 1; |
| 9725 | } |
| 9726 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 9727 | if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12)) { |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9728 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9729 | return 1; |
| 9730 | } |
| 9731 | |
Wincy Van | f2b9328 | 2015-02-03 23:56:03 +0800 | [diff] [blame] | 9732 | if (nested_vmx_check_apicv_controls(vcpu, vmcs12)) { |
| 9733 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9734 | return 1; |
| 9735 | } |
| 9736 | |
Eugene Korenevsky | e9ac033 | 2014-12-11 08:53:27 +0300 | [diff] [blame] | 9737 | if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12)) { |
| 9738 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9739 | return 1; |
| 9740 | } |
| 9741 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9742 | if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9743 | vmx->nested.nested_vmx_true_procbased_ctls_low, |
| 9744 | vmx->nested.nested_vmx_procbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9745 | !vmx_control_verify(vmcs12->secondary_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9746 | vmx->nested.nested_vmx_secondary_ctls_low, |
| 9747 | vmx->nested.nested_vmx_secondary_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9748 | !vmx_control_verify(vmcs12->pin_based_vm_exec_control, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9749 | vmx->nested.nested_vmx_pinbased_ctls_low, |
| 9750 | vmx->nested.nested_vmx_pinbased_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9751 | !vmx_control_verify(vmcs12->vm_exit_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9752 | vmx->nested.nested_vmx_true_exit_ctls_low, |
| 9753 | vmx->nested.nested_vmx_exit_ctls_high) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9754 | !vmx_control_verify(vmcs12->vm_entry_controls, |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9755 | vmx->nested.nested_vmx_true_entry_ctls_low, |
| 9756 | vmx->nested.nested_vmx_entry_ctls_high)) |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9757 | { |
| 9758 | nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD); |
| 9759 | return 1; |
| 9760 | } |
| 9761 | |
| 9762 | if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) || |
| 9763 | ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9764 | nested_vmx_failValid(vcpu, |
| 9765 | VMXERR_ENTRY_INVALID_HOST_STATE_FIELD); |
| 9766 | return 1; |
| 9767 | } |
| 9768 | |
Wincy Van | b9c237b | 2015-02-03 23:56:30 +0800 | [diff] [blame] | 9769 | if (!nested_cr0_valid(vcpu, vmcs12->guest_cr0) || |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9770 | ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) { |
| 9771 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9772 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9773 | return 1; |
| 9774 | } |
| 9775 | if (vmcs12->vmcs_link_pointer != -1ull) { |
| 9776 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9777 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR); |
| 9778 | return 1; |
| 9779 | } |
| 9780 | |
| 9781 | /* |
Jan Kiszka | cb0c8cda | 2013-04-27 12:58:00 +0200 | [diff] [blame] | 9782 | * 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] | 9783 | * are performed on the field for the IA32_EFER MSR: |
| 9784 | * - Bits reserved in the IA32_EFER MSR must be 0. |
| 9785 | * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of |
| 9786 | * the IA-32e mode guest VM-exit control. It must also be identical |
| 9787 | * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to |
| 9788 | * CR0.PG) is 1. |
| 9789 | */ |
| 9790 | if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) { |
| 9791 | ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0; |
| 9792 | if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) || |
| 9793 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) || |
| 9794 | ((vmcs12->guest_cr0 & X86_CR0_PG) && |
| 9795 | ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) { |
| 9796 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9797 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9798 | return 1; |
| 9799 | } |
| 9800 | } |
| 9801 | |
| 9802 | /* |
| 9803 | * If the load IA32_EFER VM-exit control is 1, bits reserved in the |
| 9804 | * IA32_EFER MSR must be 0 in the field for that register. In addition, |
| 9805 | * the values of the LMA and LME bits in the field must each be that of |
| 9806 | * the host address-space size VM-exit control. |
| 9807 | */ |
| 9808 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) { |
| 9809 | ia32e = (vmcs12->vm_exit_controls & |
| 9810 | VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0; |
| 9811 | if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) || |
| 9812 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) || |
| 9813 | ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) { |
| 9814 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9815 | EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT); |
| 9816 | return 1; |
| 9817 | } |
| 9818 | } |
| 9819 | |
| 9820 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 9821 | * We're finally done with prerequisite checking, and can start with |
| 9822 | * the nested entry. |
| 9823 | */ |
| 9824 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9825 | vmcs02 = nested_get_current_vmcs02(vmx); |
| 9826 | if (!vmcs02) |
| 9827 | return -ENOMEM; |
| 9828 | |
| 9829 | enter_guest_mode(vcpu); |
| 9830 | |
| 9831 | vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET); |
| 9832 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 9833 | if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) |
| 9834 | vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 9835 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9836 | cpu = get_cpu(); |
| 9837 | vmx->loaded_vmcs = vmcs02; |
| 9838 | vmx_vcpu_put(vcpu); |
| 9839 | vmx_vcpu_load(vcpu, cpu); |
| 9840 | vcpu->cpu = cpu; |
| 9841 | put_cpu(); |
| 9842 | |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 9843 | vmx_segment_cache_clear(vmx); |
| 9844 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9845 | prepare_vmcs02(vcpu, vmcs12); |
| 9846 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 9847 | msr_entry_idx = nested_vmx_load_msr(vcpu, |
| 9848 | vmcs12->vm_entry_msr_load_addr, |
| 9849 | vmcs12->vm_entry_msr_load_count); |
| 9850 | if (msr_entry_idx) { |
| 9851 | leave_guest_mode(vcpu); |
| 9852 | vmx_load_vmcs01(vcpu); |
| 9853 | nested_vmx_entry_failure(vcpu, vmcs12, |
| 9854 | EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx); |
| 9855 | return 1; |
| 9856 | } |
| 9857 | |
| 9858 | vmcs12->launch_state = 1; |
| 9859 | |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9860 | if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 9861 | return kvm_vcpu_halt(vcpu); |
Jan Kiszka | 6dfacad | 2013-12-04 08:58:54 +0100 | [diff] [blame] | 9862 | |
Jan Kiszka | 7af40ad3 | 2014-01-04 18:47:23 +0100 | [diff] [blame] | 9863 | vmx->nested.nested_run_pending = 1; |
| 9864 | |
Nadav Har'El | cd232ad | 2011-05-25 23:10:33 +0300 | [diff] [blame] | 9865 | /* |
| 9866 | * Note no nested_vmx_succeed or nested_vmx_fail here. At this point |
| 9867 | * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet |
| 9868 | * returned as far as L1 is concerned. It will only return (and set |
| 9869 | * the success flag) when L2 exits (see nested_vmx_vmexit()). |
| 9870 | */ |
| 9871 | return 1; |
| 9872 | } |
| 9873 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 9874 | /* |
| 9875 | * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date |
| 9876 | * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK). |
| 9877 | * This function returns the new value we should put in vmcs12.guest_cr0. |
| 9878 | * It's not enough to just return the vmcs02 GUEST_CR0. Rather, |
| 9879 | * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now |
| 9880 | * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0 |
| 9881 | * didn't trap the bit, because if L1 did, so would L0). |
| 9882 | * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have |
| 9883 | * been modified by L2, and L1 knows it. So just leave the old value of |
| 9884 | * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0 |
| 9885 | * isn't relevant, because if L0 traps this bit it can set it to anything. |
| 9886 | * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have |
| 9887 | * changed these bits, and therefore they need to be updated, but L0 |
| 9888 | * didn't necessarily allow them to be changed in GUEST_CR0 - and rather |
| 9889 | * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there. |
| 9890 | */ |
| 9891 | static inline unsigned long |
| 9892 | vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9893 | { |
| 9894 | return |
| 9895 | /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) | |
| 9896 | /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) | |
| 9897 | /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask | |
| 9898 | vcpu->arch.cr0_guest_owned_bits)); |
| 9899 | } |
| 9900 | |
| 9901 | static inline unsigned long |
| 9902 | vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12) |
| 9903 | { |
| 9904 | return |
| 9905 | /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) | |
| 9906 | /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) | |
| 9907 | /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask | |
| 9908 | vcpu->arch.cr4_guest_owned_bits)); |
| 9909 | } |
| 9910 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9911 | static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu, |
| 9912 | struct vmcs12 *vmcs12) |
| 9913 | { |
| 9914 | u32 idt_vectoring; |
| 9915 | unsigned int nr; |
| 9916 | |
Gleb Natapov | 851eb667 | 2013-09-25 12:51:34 +0300 | [diff] [blame] | 9917 | if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9918 | nr = vcpu->arch.exception.nr; |
| 9919 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 9920 | |
| 9921 | if (kvm_exception_is_soft(nr)) { |
| 9922 | vmcs12->vm_exit_instruction_len = |
| 9923 | vcpu->arch.event_exit_inst_len; |
| 9924 | idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION; |
| 9925 | } else |
| 9926 | idt_vectoring |= INTR_TYPE_HARD_EXCEPTION; |
| 9927 | |
| 9928 | if (vcpu->arch.exception.has_error_code) { |
| 9929 | idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK; |
| 9930 | vmcs12->idt_vectoring_error_code = |
| 9931 | vcpu->arch.exception.error_code; |
| 9932 | } |
| 9933 | |
| 9934 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
Jan Kiszka | cd2633c | 2013-10-23 17:42:15 +0100 | [diff] [blame] | 9935 | } else if (vcpu->arch.nmi_injected) { |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 9936 | vmcs12->idt_vectoring_info_field = |
| 9937 | INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR; |
| 9938 | } else if (vcpu->arch.interrupt.pending) { |
| 9939 | nr = vcpu->arch.interrupt.nr; |
| 9940 | idt_vectoring = nr | VECTORING_INFO_VALID_MASK; |
| 9941 | |
| 9942 | if (vcpu->arch.interrupt.soft) { |
| 9943 | idt_vectoring |= INTR_TYPE_SOFT_INTR; |
| 9944 | vmcs12->vm_entry_instruction_len = |
| 9945 | vcpu->arch.event_exit_inst_len; |
| 9946 | } else |
| 9947 | idt_vectoring |= INTR_TYPE_EXT_INTR; |
| 9948 | |
| 9949 | vmcs12->idt_vectoring_info_field = idt_vectoring; |
| 9950 | } |
| 9951 | } |
| 9952 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9953 | static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr) |
| 9954 | { |
| 9955 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 9956 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9957 | if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) && |
| 9958 | vmx->nested.preemption_timer_expired) { |
| 9959 | if (vmx->nested.nested_run_pending) |
| 9960 | return -EBUSY; |
| 9961 | nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0); |
| 9962 | return 0; |
| 9963 | } |
| 9964 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9965 | if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) { |
Jan Kiszka | 220c567 | 2014-03-07 20:03:14 +0100 | [diff] [blame] | 9966 | if (vmx->nested.nested_run_pending || |
| 9967 | vcpu->arch.interrupt.pending) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9968 | return -EBUSY; |
| 9969 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, |
| 9970 | NMI_VECTOR | INTR_TYPE_NMI_INTR | |
| 9971 | INTR_INFO_VALID_MASK, 0); |
| 9972 | /* |
| 9973 | * The NMI-triggered VM exit counts as injection: |
| 9974 | * clear this one and block further NMIs. |
| 9975 | */ |
| 9976 | vcpu->arch.nmi_pending = 0; |
| 9977 | vmx_set_nmi_mask(vcpu, true); |
| 9978 | return 0; |
| 9979 | } |
| 9980 | |
| 9981 | if ((kvm_cpu_has_interrupt(vcpu) || external_intr) && |
| 9982 | nested_exit_on_intr(vcpu)) { |
| 9983 | if (vmx->nested.nested_run_pending) |
| 9984 | return -EBUSY; |
| 9985 | nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0); |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9986 | return 0; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9987 | } |
| 9988 | |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 9989 | return vmx_complete_nested_posted_interrupt(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 9990 | } |
| 9991 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 9992 | static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu) |
| 9993 | { |
| 9994 | ktime_t remaining = |
| 9995 | hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer); |
| 9996 | u64 value; |
| 9997 | |
| 9998 | if (ktime_to_ns(remaining) <= 0) |
| 9999 | return 0; |
| 10000 | |
| 10001 | value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz; |
| 10002 | do_div(value, 1000000); |
| 10003 | return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE; |
| 10004 | } |
| 10005 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10006 | /* |
| 10007 | * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits |
| 10008 | * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12), |
| 10009 | * and this function updates it to reflect the changes to the guest state while |
| 10010 | * L2 was running (and perhaps made some exits which were handled directly by L0 |
| 10011 | * without going back to L1), and to reflect the exit reason. |
| 10012 | * Note that we do not have to copy here all VMCS fields, just those that |
| 10013 | * could have changed by the L2 guest or the exit - i.e., the guest-state and |
| 10014 | * exit-information fields only. Other fields are modified by L1 with VMWRITE, |
| 10015 | * which already writes to vmcs12 directly. |
| 10016 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10017 | static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12, |
| 10018 | u32 exit_reason, u32 exit_intr_info, |
| 10019 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10020 | { |
| 10021 | /* update guest state fields: */ |
| 10022 | vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12); |
| 10023 | vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12); |
| 10024 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10025 | vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 10026 | vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP); |
| 10027 | vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS); |
| 10028 | |
| 10029 | vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR); |
| 10030 | vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR); |
| 10031 | vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR); |
| 10032 | vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR); |
| 10033 | vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR); |
| 10034 | vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR); |
| 10035 | vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR); |
| 10036 | vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR); |
| 10037 | vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT); |
| 10038 | vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT); |
| 10039 | vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT); |
| 10040 | vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT); |
| 10041 | vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT); |
| 10042 | vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT); |
| 10043 | vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT); |
| 10044 | vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT); |
| 10045 | vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT); |
| 10046 | vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT); |
| 10047 | vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES); |
| 10048 | vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES); |
| 10049 | vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES); |
| 10050 | vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES); |
| 10051 | vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES); |
| 10052 | vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES); |
| 10053 | vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES); |
| 10054 | vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES); |
| 10055 | vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE); |
| 10056 | vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE); |
| 10057 | vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE); |
| 10058 | vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE); |
| 10059 | vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE); |
| 10060 | vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE); |
| 10061 | vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE); |
| 10062 | vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE); |
| 10063 | vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE); |
| 10064 | vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE); |
| 10065 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10066 | vmcs12->guest_interruptibility_info = |
| 10067 | vmcs_read32(GUEST_INTERRUPTIBILITY_INFO); |
| 10068 | vmcs12->guest_pending_dbg_exceptions = |
| 10069 | vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS); |
Jan Kiszka | 3edf1e6 | 2014-01-04 18:47:24 +0100 | [diff] [blame] | 10070 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED) |
| 10071 | vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT; |
| 10072 | else |
| 10073 | vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10074 | |
Jan Kiszka | f4124500 | 2014-03-07 20:03:13 +0100 | [diff] [blame] | 10075 | if (nested_cpu_has_preemption_timer(vmcs12)) { |
| 10076 | if (vmcs12->vm_exit_controls & |
| 10077 | VM_EXIT_SAVE_VMX_PREEMPTION_TIMER) |
| 10078 | vmcs12->vmx_preemption_timer_value = |
| 10079 | vmx_get_preemption_timer_value(vcpu); |
| 10080 | hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer); |
| 10081 | } |
Arthur Chunqi Li | 7854cbc | 2013-09-16 16:11:44 +0800 | [diff] [blame] | 10082 | |
Nadav Har'El | 3633cfc | 2013-08-05 11:07:07 +0300 | [diff] [blame] | 10083 | /* |
| 10084 | * In some cases (usually, nested EPT), L2 is allowed to change its |
| 10085 | * own CR3 without exiting. If it has changed it, we must keep it. |
| 10086 | * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined |
| 10087 | * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12. |
| 10088 | * |
| 10089 | * Additionally, restore L2's PDPTR to vmcs12. |
| 10090 | */ |
| 10091 | if (enable_ept) { |
| 10092 | vmcs12->guest_cr3 = vmcs_read64(GUEST_CR3); |
| 10093 | vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0); |
| 10094 | vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1); |
| 10095 | vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2); |
| 10096 | vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3); |
| 10097 | } |
| 10098 | |
Wincy Van | 608406e | 2015-02-03 23:57:51 +0800 | [diff] [blame] | 10099 | if (nested_cpu_has_vid(vmcs12)) |
| 10100 | vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS); |
| 10101 | |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10102 | vmcs12->vm_entry_controls = |
| 10103 | (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10104 | (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE); |
Jan Kiszka | c18911a | 2013-03-13 16:06:41 +0100 | [diff] [blame] | 10105 | |
Jan Kiszka | 2996fca | 2014-06-16 13:59:43 +0200 | [diff] [blame] | 10106 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) { |
| 10107 | kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7); |
| 10108 | vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL); |
| 10109 | } |
| 10110 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10111 | /* TODO: These cannot have changed unless we have MSR bitmaps and |
| 10112 | * the relevant bit asks not to trap the change */ |
Jan Kiszka | b8c07d5 | 2013-04-06 13:51:21 +0200 | [diff] [blame] | 10113 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10114 | vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT); |
Jan Kiszka | 10ba54a | 2013-08-08 16:26:31 +0200 | [diff] [blame] | 10115 | if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER) |
| 10116 | vmcs12->guest_ia32_efer = vcpu->arch.efer; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10117 | vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS); |
| 10118 | vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP); |
| 10119 | vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP); |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10120 | if (vmx_mpx_supported()) |
| 10121 | vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS); |
Wanpeng Li | 81dc01f | 2014-12-04 19:11:07 +0800 | [diff] [blame] | 10122 | if (nested_cpu_has_xsaves(vmcs12)) |
| 10123 | vmcs12->xss_exit_bitmap = vmcs_read64(XSS_EXIT_BITMAP); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10124 | |
| 10125 | /* update exit information fields: */ |
| 10126 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10127 | vmcs12->vm_exit_reason = exit_reason; |
| 10128 | vmcs12->exit_qualification = exit_qualification; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10129 | |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10130 | vmcs12->vm_exit_intr_info = exit_intr_info; |
Jan Kiszka | c0d1c77 | 2013-04-14 12:12:50 +0200 | [diff] [blame] | 10131 | if ((vmcs12->vm_exit_intr_info & |
| 10132 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) == |
| 10133 | (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) |
| 10134 | vmcs12->vm_exit_intr_error_code = |
| 10135 | vmcs_read32(VM_EXIT_INTR_ERROR_CODE); |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10136 | vmcs12->idt_vectoring_info_field = 0; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10137 | vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN); |
| 10138 | vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO); |
| 10139 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10140 | if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) { |
| 10141 | /* vm_entry_intr_info_field is cleared on exit. Emulate this |
| 10142 | * instead of reading the real value. */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10143 | vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK; |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10144 | |
| 10145 | /* |
| 10146 | * Transfer the event that L0 or L1 may wanted to inject into |
| 10147 | * L2 to IDT_VECTORING_INFO_FIELD. |
| 10148 | */ |
| 10149 | vmcs12_save_pending_event(vcpu, vmcs12); |
| 10150 | } |
| 10151 | |
| 10152 | /* |
| 10153 | * Drop what we picked up for L2 via vmx_complete_interrupts. It is |
| 10154 | * preserved above and would only end up incorrectly in L1. |
| 10155 | */ |
| 10156 | vcpu->arch.nmi_injected = false; |
| 10157 | kvm_clear_exception_queue(vcpu); |
| 10158 | kvm_clear_interrupt_queue(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10159 | } |
| 10160 | |
| 10161 | /* |
| 10162 | * A part of what we need to when the nested L2 guest exits and we want to |
| 10163 | * run its L1 parent, is to reset L1's guest state to the host state specified |
| 10164 | * in vmcs12. |
| 10165 | * This function is to be called not only on normal nested exit, but also on |
| 10166 | * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry |
| 10167 | * Failures During or After Loading Guest State"). |
| 10168 | * This function should be called when the active VMCS is L1's (vmcs01). |
| 10169 | */ |
Jan Kiszka | 733568f | 2013-02-23 15:07:47 +0100 | [diff] [blame] | 10170 | static void load_vmcs12_host_state(struct kvm_vcpu *vcpu, |
| 10171 | struct vmcs12 *vmcs12) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10172 | { |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10173 | struct kvm_segment seg; |
| 10174 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10175 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) |
| 10176 | vcpu->arch.efer = vmcs12->host_ia32_efer; |
Jan Kiszka | d1fa035 | 2013-04-14 12:44:54 +0200 | [diff] [blame] | 10177 | 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] | 10178 | vcpu->arch.efer |= (EFER_LMA | EFER_LME); |
| 10179 | else |
| 10180 | vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); |
| 10181 | vmx_set_efer(vcpu, vcpu->arch.efer); |
| 10182 | |
| 10183 | kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp); |
| 10184 | kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip); |
H. Peter Anvin | 1adfa76 | 2013-04-27 16:10:11 -0700 | [diff] [blame] | 10185 | vmx_set_rflags(vcpu, X86_EFLAGS_FIXED); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10186 | /* |
| 10187 | * Note that calling vmx_set_cr0 is important, even if cr0 hasn't |
| 10188 | * actually changed, because it depends on the current state of |
| 10189 | * fpu_active (which may have changed). |
| 10190 | * Note that vmx_set_cr0 refers to efer set above. |
| 10191 | */ |
Jan Kiszka | 9e3e4dbf | 2013-09-03 21:11:45 +0200 | [diff] [blame] | 10192 | vmx_set_cr0(vcpu, vmcs12->host_cr0); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10193 | /* |
| 10194 | * If we did fpu_activate()/fpu_deactivate() during L2's run, we need |
| 10195 | * to apply the same changes to L1's vmcs. We just set cr0 correctly, |
| 10196 | * but we also need to update cr0_guest_host_mask and exception_bitmap. |
| 10197 | */ |
| 10198 | update_exception_bitmap(vcpu); |
| 10199 | vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0); |
| 10200 | vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); |
| 10201 | |
| 10202 | /* |
| 10203 | * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01 |
| 10204 | * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask(); |
| 10205 | */ |
| 10206 | vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); |
| 10207 | kvm_set_cr4(vcpu, vmcs12->host_cr4); |
| 10208 | |
Jan Kiszka | 29bf08f | 2013-12-28 16:31:52 +0100 | [diff] [blame] | 10209 | nested_ept_uninit_mmu_context(vcpu); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 10210 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10211 | kvm_set_cr3(vcpu, vmcs12->host_cr3); |
| 10212 | kvm_mmu_reset_context(vcpu); |
| 10213 | |
Gleb Natapov | feaf0c7d | 2013-09-25 12:51:36 +0300 | [diff] [blame] | 10214 | if (!enable_ept) |
| 10215 | vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault; |
| 10216 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10217 | if (enable_vpid) { |
| 10218 | /* |
| 10219 | * Trivially support vpid by letting L2s share their parent |
| 10220 | * L1's vpid. TODO: move to a more elaborate solution, giving |
| 10221 | * each L2 its own vpid and exposing the vpid feature to L1. |
| 10222 | */ |
| 10223 | vmx_flush_tlb(vcpu); |
| 10224 | } |
| 10225 | |
| 10226 | |
| 10227 | vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs); |
| 10228 | vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp); |
| 10229 | vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip); |
| 10230 | vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base); |
| 10231 | vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10232 | |
Paolo Bonzini | 36be0b9 | 2014-02-24 12:30:04 +0100 | [diff] [blame] | 10233 | /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */ |
| 10234 | if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS) |
| 10235 | vmcs_write64(GUEST_BNDCFGS, 0); |
| 10236 | |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10237 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) { |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10238 | vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat); |
Jan Kiszka | 44811c0 | 2013-08-04 17:17:27 +0200 | [diff] [blame] | 10239 | vcpu->arch.pat = vmcs12->host_ia32_pat; |
| 10240 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10241 | if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) |
| 10242 | vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL, |
| 10243 | vmcs12->host_ia32_perf_global_ctrl); |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10244 | |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10245 | /* Set L1 segment info according to Intel SDM |
| 10246 | 27.5.2 Loading Host Segment and Descriptor-Table Registers */ |
| 10247 | seg = (struct kvm_segment) { |
| 10248 | .base = 0, |
| 10249 | .limit = 0xFFFFFFFF, |
| 10250 | .selector = vmcs12->host_cs_selector, |
| 10251 | .type = 11, |
| 10252 | .present = 1, |
| 10253 | .s = 1, |
| 10254 | .g = 1 |
| 10255 | }; |
| 10256 | if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) |
| 10257 | seg.l = 1; |
| 10258 | else |
| 10259 | seg.db = 1; |
| 10260 | vmx_set_segment(vcpu, &seg, VCPU_SREG_CS); |
| 10261 | seg = (struct kvm_segment) { |
| 10262 | .base = 0, |
| 10263 | .limit = 0xFFFFFFFF, |
| 10264 | .type = 3, |
| 10265 | .present = 1, |
| 10266 | .s = 1, |
| 10267 | .db = 1, |
| 10268 | .g = 1 |
| 10269 | }; |
| 10270 | seg.selector = vmcs12->host_ds_selector; |
| 10271 | vmx_set_segment(vcpu, &seg, VCPU_SREG_DS); |
| 10272 | seg.selector = vmcs12->host_es_selector; |
| 10273 | vmx_set_segment(vcpu, &seg, VCPU_SREG_ES); |
| 10274 | seg.selector = vmcs12->host_ss_selector; |
| 10275 | vmx_set_segment(vcpu, &seg, VCPU_SREG_SS); |
| 10276 | seg.selector = vmcs12->host_fs_selector; |
| 10277 | seg.base = vmcs12->host_fs_base; |
| 10278 | vmx_set_segment(vcpu, &seg, VCPU_SREG_FS); |
| 10279 | seg.selector = vmcs12->host_gs_selector; |
| 10280 | seg.base = vmcs12->host_gs_base; |
| 10281 | vmx_set_segment(vcpu, &seg, VCPU_SREG_GS); |
| 10282 | seg = (struct kvm_segment) { |
Gleb Natapov | 205befd | 2013-08-04 15:08:06 +0300 | [diff] [blame] | 10283 | .base = vmcs12->host_tr_base, |
Arthur Chunqi Li | 21feb4e | 2013-07-15 16:04:08 +0800 | [diff] [blame] | 10284 | .limit = 0x67, |
| 10285 | .selector = vmcs12->host_tr_selector, |
| 10286 | .type = 11, |
| 10287 | .present = 1 |
| 10288 | }; |
| 10289 | vmx_set_segment(vcpu, &seg, VCPU_SREG_TR); |
| 10290 | |
Jan Kiszka | 503cd0c | 2013-03-03 13:05:44 +0100 | [diff] [blame] | 10291 | kvm_set_dr(vcpu, 7, 0x400); |
| 10292 | vmcs_write64(GUEST_IA32_DEBUGCTL, 0); |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10293 | |
Wincy Van | 3af18d9 | 2015-02-03 23:49:31 +0800 | [diff] [blame] | 10294 | if (cpu_has_vmx_msr_bitmap()) |
| 10295 | vmx_set_msr_bitmap(vcpu); |
| 10296 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10297 | if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr, |
| 10298 | vmcs12->vm_exit_msr_load_count)) |
| 10299 | nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10300 | } |
| 10301 | |
| 10302 | /* |
| 10303 | * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1 |
| 10304 | * and modify vmcs12 to make it see what it would expect to see there if |
| 10305 | * L2 was its real guest. Must only be called when in L2 (is_guest_mode()) |
| 10306 | */ |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10307 | static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason, |
| 10308 | u32 exit_intr_info, |
| 10309 | unsigned long exit_qualification) |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10310 | { |
| 10311 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10312 | struct vmcs12 *vmcs12 = get_vmcs12(vcpu); |
| 10313 | |
Jan Kiszka | 5f3d579 | 2013-04-14 12:12:46 +0200 | [diff] [blame] | 10314 | /* trying to cancel vmlaunch/vmresume is a bug */ |
| 10315 | WARN_ON_ONCE(vmx->nested.nested_run_pending); |
| 10316 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10317 | leave_guest_mode(vcpu); |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10318 | prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info, |
| 10319 | exit_qualification); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10320 | |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 10321 | if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr, |
| 10322 | vmcs12->vm_exit_msr_store_count)) |
| 10323 | nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL); |
| 10324 | |
Wanpeng Li | f3380ca5 | 2014-08-05 12:42:23 +0800 | [diff] [blame] | 10325 | vmx_load_vmcs01(vcpu); |
| 10326 | |
Bandan Das | 77b0f5d | 2014-04-19 18:17:45 -0400 | [diff] [blame] | 10327 | if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT) |
| 10328 | && nested_exit_intr_ack_set(vcpu)) { |
| 10329 | int irq = kvm_cpu_get_interrupt(vcpu); |
| 10330 | WARN_ON(irq < 0); |
| 10331 | vmcs12->vm_exit_intr_info = irq | |
| 10332 | INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR; |
| 10333 | } |
| 10334 | |
Jan Kiszka | 542060e | 2014-01-04 18:47:21 +0100 | [diff] [blame] | 10335 | trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason, |
| 10336 | vmcs12->exit_qualification, |
| 10337 | vmcs12->idt_vectoring_info_field, |
| 10338 | vmcs12->vm_exit_intr_info, |
| 10339 | vmcs12->vm_exit_intr_error_code, |
| 10340 | KVM_ISA_VMX); |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10341 | |
Gleb Natapov | 2961e876 | 2013-11-25 15:37:13 +0200 | [diff] [blame] | 10342 | vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS)); |
| 10343 | vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS)); |
Jan Kiszka | 36c3cc4 | 2013-02-23 22:35:37 +0100 | [diff] [blame] | 10344 | vmx_segment_cache_clear(vmx); |
| 10345 | |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10346 | /* if no vmcs02 cache requested, remove the one we used */ |
| 10347 | if (VMCS02_POOL_SIZE == 0) |
| 10348 | nested_free_vmcs02(vmx, vmx->nested.current_vmptr); |
| 10349 | |
| 10350 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10351 | |
Nadav Har'El | 27fc51b | 2011-08-02 15:54:52 +0300 | [diff] [blame] | 10352 | /* Update TSC_OFFSET if TSC was changed while L2 ran */ |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10353 | vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset); |
| 10354 | |
| 10355 | /* This is needed for same reason as it was needed in prepare_vmcs02 */ |
| 10356 | vmx->host_rsp = 0; |
| 10357 | |
| 10358 | /* Unpin physical memory we referred to in vmcs02 */ |
| 10359 | if (vmx->nested.apic_access_page) { |
| 10360 | nested_release_page(vmx->nested.apic_access_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10361 | vmx->nested.apic_access_page = NULL; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10362 | } |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10363 | if (vmx->nested.virtual_apic_page) { |
| 10364 | nested_release_page(vmx->nested.virtual_apic_page); |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10365 | vmx->nested.virtual_apic_page = NULL; |
Wanpeng Li | a7c0b07 | 2014-08-21 19:46:50 +0800 | [diff] [blame] | 10366 | } |
Wincy Van | 705699a | 2015-02-03 23:58:17 +0800 | [diff] [blame] | 10367 | if (vmx->nested.pi_desc_page) { |
| 10368 | kunmap(vmx->nested.pi_desc_page); |
| 10369 | nested_release_page(vmx->nested.pi_desc_page); |
| 10370 | vmx->nested.pi_desc_page = NULL; |
| 10371 | vmx->nested.pi_desc = NULL; |
| 10372 | } |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10373 | |
| 10374 | /* |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10375 | * We are now running in L2, mmu_notifier will force to reload the |
| 10376 | * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1. |
| 10377 | */ |
| 10378 | kvm_vcpu_reload_apic_access_page(vcpu); |
| 10379 | |
| 10380 | /* |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10381 | * Exiting from L2 to L1, we're now back to L1 which thinks it just |
| 10382 | * finished a VMLAUNCH or VMRESUME instruction, so we need to set the |
| 10383 | * success or failure flag accordingly. |
| 10384 | */ |
| 10385 | if (unlikely(vmx->fail)) { |
| 10386 | vmx->fail = 0; |
| 10387 | nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR)); |
| 10388 | } else |
| 10389 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10390 | if (enable_shadow_vmcs) |
| 10391 | vmx->nested.sync_shadow_vmcs = true; |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10392 | |
| 10393 | /* in case we halted in L2 */ |
| 10394 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Nadav Har'El | 4704d0b | 2011-05-25 23:11:34 +0300 | [diff] [blame] | 10395 | } |
| 10396 | |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10397 | /* |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10398 | * Forcibly leave nested mode in order to be able to reset the VCPU later on. |
| 10399 | */ |
| 10400 | static void vmx_leave_nested(struct kvm_vcpu *vcpu) |
| 10401 | { |
| 10402 | if (is_guest_mode(vcpu)) |
Jan Kiszka | 533558b | 2014-01-04 18:47:20 +0100 | [diff] [blame] | 10403 | nested_vmx_vmexit(vcpu, -1, 0, 0); |
Jan Kiszka | 4212492 | 2014-01-04 18:47:19 +0100 | [diff] [blame] | 10404 | free_nested(to_vmx(vcpu)); |
| 10405 | } |
| 10406 | |
| 10407 | /* |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10408 | * L1's failure to enter L2 is a subset of a normal exit, as explained in |
| 10409 | * 23.7 "VM-entry failures during or after loading guest state" (this also |
| 10410 | * lists the acceptable exit-reason and exit-qualification parameters). |
| 10411 | * It should only be called before L2 actually succeeded to run, and when |
| 10412 | * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss). |
| 10413 | */ |
| 10414 | static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu, |
| 10415 | struct vmcs12 *vmcs12, |
| 10416 | u32 reason, unsigned long qualification) |
| 10417 | { |
| 10418 | load_vmcs12_host_state(vcpu, vmcs12); |
| 10419 | vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY; |
| 10420 | vmcs12->exit_qualification = qualification; |
| 10421 | nested_vmx_succeed(vcpu); |
Abel Gordon | 012f83c | 2013-04-18 14:39:25 +0300 | [diff] [blame] | 10422 | if (enable_shadow_vmcs) |
| 10423 | to_vmx(vcpu)->nested.sync_shadow_vmcs = true; |
Nadav Har'El | 7c17793 | 2011-05-25 23:12:04 +0300 | [diff] [blame] | 10424 | } |
| 10425 | |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10426 | static int vmx_check_intercept(struct kvm_vcpu *vcpu, |
| 10427 | struct x86_instruction_info *info, |
| 10428 | enum x86_intercept_stage stage) |
| 10429 | { |
| 10430 | return X86EMUL_CONTINUE; |
| 10431 | } |
| 10432 | |
Paolo Bonzini | 48d89b9 | 2014-08-26 13:27:46 +0200 | [diff] [blame] | 10433 | static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu) |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10434 | { |
Radim Krčmář | b4a2d31 | 2014-08-21 18:08:08 +0200 | [diff] [blame] | 10435 | if (ple_gap) |
| 10436 | shrink_ple_window(vcpu); |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10437 | } |
| 10438 | |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10439 | static void vmx_slot_enable_log_dirty(struct kvm *kvm, |
| 10440 | struct kvm_memory_slot *slot) |
| 10441 | { |
| 10442 | kvm_mmu_slot_leaf_clear_dirty(kvm, slot); |
| 10443 | kvm_mmu_slot_largepage_remove_write_access(kvm, slot); |
| 10444 | } |
| 10445 | |
| 10446 | static void vmx_slot_disable_log_dirty(struct kvm *kvm, |
| 10447 | struct kvm_memory_slot *slot) |
| 10448 | { |
| 10449 | kvm_mmu_slot_set_dirty(kvm, slot); |
| 10450 | } |
| 10451 | |
| 10452 | static void vmx_flush_log_dirty(struct kvm *kvm) |
| 10453 | { |
| 10454 | kvm_flush_pml_buffers(kvm); |
| 10455 | } |
| 10456 | |
| 10457 | static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 10458 | struct kvm_memory_slot *memslot, |
| 10459 | gfn_t offset, unsigned long mask) |
| 10460 | { |
| 10461 | kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask); |
| 10462 | } |
| 10463 | |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10464 | /* |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 10465 | * This routine does the following things for vCPU which is going |
| 10466 | * to be blocked if VT-d PI is enabled. |
| 10467 | * - Store the vCPU to the wakeup list, so when interrupts happen |
| 10468 | * we can find the right vCPU to wake up. |
| 10469 | * - Change the Posted-interrupt descriptor as below: |
| 10470 | * 'NDST' <-- vcpu->pre_pcpu |
| 10471 | * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR |
| 10472 | * - If 'ON' is set during this process, which means at least one |
| 10473 | * interrupt is posted for this vCPU, we cannot block it, in |
| 10474 | * this case, return 1, otherwise, return 0. |
| 10475 | * |
| 10476 | */ |
| 10477 | static int vmx_pre_block(struct kvm_vcpu *vcpu) |
| 10478 | { |
| 10479 | unsigned long flags; |
| 10480 | unsigned int dest; |
| 10481 | struct pi_desc old, new; |
| 10482 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 10483 | |
| 10484 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 10485 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10486 | return 0; |
| 10487 | |
| 10488 | vcpu->pre_pcpu = vcpu->cpu; |
| 10489 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10490 | vcpu->pre_pcpu), flags); |
| 10491 | list_add_tail(&vcpu->blocked_vcpu_list, |
| 10492 | &per_cpu(blocked_vcpu_on_cpu, |
| 10493 | vcpu->pre_pcpu)); |
| 10494 | spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10495 | vcpu->pre_pcpu), flags); |
| 10496 | |
| 10497 | do { |
| 10498 | old.control = new.control = pi_desc->control; |
| 10499 | |
| 10500 | /* |
| 10501 | * We should not block the vCPU if |
| 10502 | * an interrupt is posted for it. |
| 10503 | */ |
| 10504 | if (pi_test_on(pi_desc) == 1) { |
| 10505 | spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock, |
| 10506 | vcpu->pre_pcpu), flags); |
| 10507 | list_del(&vcpu->blocked_vcpu_list); |
| 10508 | spin_unlock_irqrestore( |
| 10509 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10510 | vcpu->pre_pcpu), flags); |
| 10511 | vcpu->pre_pcpu = -1; |
| 10512 | |
| 10513 | return 1; |
| 10514 | } |
| 10515 | |
| 10516 | WARN((pi_desc->sn == 1), |
| 10517 | "Warning: SN field of posted-interrupts " |
| 10518 | "is set before blocking\n"); |
| 10519 | |
| 10520 | /* |
| 10521 | * Since vCPU can be preempted during this process, |
| 10522 | * vcpu->cpu could be different with pre_pcpu, we |
| 10523 | * need to set pre_pcpu as the destination of wakeup |
| 10524 | * notification event, then we can find the right vCPU |
| 10525 | * to wakeup in wakeup handler if interrupts happen |
| 10526 | * when the vCPU is in blocked state. |
| 10527 | */ |
| 10528 | dest = cpu_physical_id(vcpu->pre_pcpu); |
| 10529 | |
| 10530 | if (x2apic_enabled()) |
| 10531 | new.ndst = dest; |
| 10532 | else |
| 10533 | new.ndst = (dest << 8) & 0xFF00; |
| 10534 | |
| 10535 | /* set 'NV' to 'wakeup vector' */ |
| 10536 | new.nv = POSTED_INTR_WAKEUP_VECTOR; |
| 10537 | } while (cmpxchg(&pi_desc->control, old.control, |
| 10538 | new.control) != old.control); |
| 10539 | |
| 10540 | return 0; |
| 10541 | } |
| 10542 | |
| 10543 | static void vmx_post_block(struct kvm_vcpu *vcpu) |
| 10544 | { |
| 10545 | struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu); |
| 10546 | struct pi_desc old, new; |
| 10547 | unsigned int dest; |
| 10548 | unsigned long flags; |
| 10549 | |
| 10550 | if (!kvm_arch_has_assigned_device(vcpu->kvm) || |
| 10551 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10552 | return; |
| 10553 | |
| 10554 | do { |
| 10555 | old.control = new.control = pi_desc->control; |
| 10556 | |
| 10557 | dest = cpu_physical_id(vcpu->cpu); |
| 10558 | |
| 10559 | if (x2apic_enabled()) |
| 10560 | new.ndst = dest; |
| 10561 | else |
| 10562 | new.ndst = (dest << 8) & 0xFF00; |
| 10563 | |
| 10564 | /* Allow posting non-urgent interrupts */ |
| 10565 | new.sn = 0; |
| 10566 | |
| 10567 | /* set 'NV' to 'notification vector' */ |
| 10568 | new.nv = POSTED_INTR_VECTOR; |
| 10569 | } while (cmpxchg(&pi_desc->control, old.control, |
| 10570 | new.control) != old.control); |
| 10571 | |
| 10572 | if(vcpu->pre_pcpu != -1) { |
| 10573 | spin_lock_irqsave( |
| 10574 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10575 | vcpu->pre_pcpu), flags); |
| 10576 | list_del(&vcpu->blocked_vcpu_list); |
| 10577 | spin_unlock_irqrestore( |
| 10578 | &per_cpu(blocked_vcpu_on_cpu_lock, |
| 10579 | vcpu->pre_pcpu), flags); |
| 10580 | vcpu->pre_pcpu = -1; |
| 10581 | } |
| 10582 | } |
| 10583 | |
| 10584 | /* |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10585 | * vmx_update_pi_irte - set IRTE for Posted-Interrupts |
| 10586 | * |
| 10587 | * @kvm: kvm |
| 10588 | * @host_irq: host irq of the interrupt |
| 10589 | * @guest_irq: gsi of the interrupt |
| 10590 | * @set: set or unset PI |
| 10591 | * returns 0 on success, < 0 on failure |
| 10592 | */ |
| 10593 | static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq, |
| 10594 | uint32_t guest_irq, bool set) |
| 10595 | { |
| 10596 | struct kvm_kernel_irq_routing_entry *e; |
| 10597 | struct kvm_irq_routing_table *irq_rt; |
| 10598 | struct kvm_lapic_irq irq; |
| 10599 | struct kvm_vcpu *vcpu; |
| 10600 | struct vcpu_data vcpu_info; |
| 10601 | int idx, ret = -EINVAL; |
| 10602 | |
| 10603 | if (!kvm_arch_has_assigned_device(kvm) || |
| 10604 | !irq_remapping_cap(IRQ_POSTING_CAP)) |
| 10605 | return 0; |
| 10606 | |
| 10607 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 10608 | irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu); |
| 10609 | BUG_ON(guest_irq >= irq_rt->nr_rt_entries); |
| 10610 | |
| 10611 | hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) { |
| 10612 | if (e->type != KVM_IRQ_ROUTING_MSI) |
| 10613 | continue; |
| 10614 | /* |
| 10615 | * VT-d PI cannot support posting multicast/broadcast |
| 10616 | * interrupts to a vCPU, we still use interrupt remapping |
| 10617 | * for these kind of interrupts. |
| 10618 | * |
| 10619 | * For lowest-priority interrupts, we only support |
| 10620 | * those with single CPU as the destination, e.g. user |
| 10621 | * configures the interrupts via /proc/irq or uses |
| 10622 | * irqbalance to make the interrupts single-CPU. |
| 10623 | * |
| 10624 | * We will support full lowest-priority interrupt later. |
| 10625 | */ |
| 10626 | |
| 10627 | kvm_set_msi_irq(e, &irq); |
| 10628 | if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) |
| 10629 | continue; |
| 10630 | |
| 10631 | vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu)); |
| 10632 | vcpu_info.vector = irq.vector; |
| 10633 | |
| 10634 | trace_kvm_pi_irte_update(vcpu->vcpu_id, e->gsi, |
| 10635 | vcpu_info.vector, vcpu_info.pi_desc_addr, set); |
| 10636 | |
| 10637 | if (set) |
| 10638 | ret = irq_set_vcpu_affinity(host_irq, &vcpu_info); |
| 10639 | else { |
| 10640 | /* suppress notification event before unposting */ |
| 10641 | pi_set_sn(vcpu_to_pi_desc(vcpu)); |
| 10642 | ret = irq_set_vcpu_affinity(host_irq, NULL); |
| 10643 | pi_clear_sn(vcpu_to_pi_desc(vcpu)); |
| 10644 | } |
| 10645 | |
| 10646 | if (ret < 0) { |
| 10647 | printk(KERN_INFO "%s: failed to update PI IRTE\n", |
| 10648 | __func__); |
| 10649 | goto out; |
| 10650 | } |
| 10651 | } |
| 10652 | |
| 10653 | ret = 0; |
| 10654 | out: |
| 10655 | srcu_read_unlock(&kvm->irq_srcu, idx); |
| 10656 | return ret; |
| 10657 | } |
| 10658 | |
Christian Ehrhardt | cbdd1be | 2007-09-09 15:41:59 +0300 | [diff] [blame] | 10659 | static struct kvm_x86_ops vmx_x86_ops = { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10660 | .cpu_has_kvm_support = cpu_has_kvm_support, |
| 10661 | .disabled_by_bios = vmx_disabled_by_bios, |
| 10662 | .hardware_setup = hardware_setup, |
| 10663 | .hardware_unsetup = hardware_unsetup, |
Yang, Sheng | 002c7f7 | 2007-07-31 14:23:01 +0300 | [diff] [blame] | 10664 | .check_processor_compatibility = vmx_check_processor_compat, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10665 | .hardware_enable = hardware_enable, |
| 10666 | .hardware_disable = hardware_disable, |
Sheng Yang | 0454715 | 2009-04-01 15:52:31 +0800 | [diff] [blame] | 10667 | .cpu_has_accelerated_tpr = report_flexpriority, |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 10668 | .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10669 | |
| 10670 | .vcpu_create = vmx_create_vcpu, |
| 10671 | .vcpu_free = vmx_free_vcpu, |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10672 | .vcpu_reset = vmx_vcpu_reset, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10673 | |
Avi Kivity | 04d2cc7 | 2007-09-10 18:10:54 +0300 | [diff] [blame] | 10674 | .prepare_guest_switch = vmx_save_host_state, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10675 | .vcpu_load = vmx_vcpu_load, |
| 10676 | .vcpu_put = vmx_vcpu_put, |
| 10677 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 10678 | .update_db_bp_intercept = update_exception_bitmap, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10679 | .get_msr = vmx_get_msr, |
| 10680 | .set_msr = vmx_set_msr, |
| 10681 | .get_segment_base = vmx_get_segment_base, |
| 10682 | .get_segment = vmx_get_segment, |
| 10683 | .set_segment = vmx_set_segment, |
Izik Eidus | 2e4d265 | 2008-03-24 19:38:34 +0200 | [diff] [blame] | 10684 | .get_cpl = vmx_get_cpl, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10685 | .get_cs_db_l_bits = vmx_get_cs_db_l_bits, |
Avi Kivity | e8467fd | 2009-12-29 18:43:06 +0200 | [diff] [blame] | 10686 | .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits, |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 10687 | .decache_cr3 = vmx_decache_cr3, |
Anthony Liguori | 25c4c27 | 2007-04-27 09:29:21 +0300 | [diff] [blame] | 10688 | .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10689 | .set_cr0 = vmx_set_cr0, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10690 | .set_cr3 = vmx_set_cr3, |
| 10691 | .set_cr4 = vmx_set_cr4, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10692 | .set_efer = vmx_set_efer, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10693 | .get_idt = vmx_get_idt, |
| 10694 | .set_idt = vmx_set_idt, |
| 10695 | .get_gdt = vmx_get_gdt, |
| 10696 | .set_gdt = vmx_set_gdt, |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 10697 | .get_dr6 = vmx_get_dr6, |
| 10698 | .set_dr6 = vmx_set_dr6, |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 10699 | .set_dr7 = vmx_set_dr7, |
Paolo Bonzini | 81908bf | 2014-02-21 10:32:27 +0100 | [diff] [blame] | 10700 | .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs, |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 10701 | .cache_reg = vmx_cache_reg, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10702 | .get_rflags = vmx_get_rflags, |
| 10703 | .set_rflags = vmx_set_rflags, |
Paolo Bonzini | 0fdd74f | 2015-05-20 11:33:43 +0200 | [diff] [blame] | 10704 | .fpu_activate = vmx_fpu_activate, |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 10705 | .fpu_deactivate = vmx_fpu_deactivate, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10706 | |
| 10707 | .tlb_flush = vmx_flush_tlb, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10708 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10709 | .run = vmx_vcpu_run, |
Avi Kivity | 6062d01 | 2009-03-23 17:35:17 +0200 | [diff] [blame] | 10710 | .handle_exit = vmx_handle_exit, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10711 | .skip_emulated_instruction = skip_emulated_instruction, |
Glauber Costa | 2809f5d | 2009-05-12 16:21:05 -0400 | [diff] [blame] | 10712 | .set_interrupt_shadow = vmx_set_interrupt_shadow, |
| 10713 | .get_interrupt_shadow = vmx_get_interrupt_shadow, |
Ingo Molnar | 102d832 | 2007-02-19 14:37:47 +0200 | [diff] [blame] | 10714 | .patch_hypercall = vmx_patch_hypercall, |
Eddie Dong | 2a8067f | 2007-08-06 16:29:07 +0300 | [diff] [blame] | 10715 | .set_irq = vmx_inject_irq, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10716 | .set_nmi = vmx_inject_nmi, |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 10717 | .queue_exception = vmx_queue_exception, |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 10718 | .cancel_injection = vmx_cancel_injection, |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 10719 | .interrupt_allowed = vmx_interrupt_allowed, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10720 | .nmi_allowed = vmx_nmi_allowed, |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 10721 | .get_nmi_mask = vmx_get_nmi_mask, |
| 10722 | .set_nmi_mask = vmx_set_nmi_mask, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10723 | .enable_nmi_window = enable_nmi_window, |
| 10724 | .enable_irq_window = enable_irq_window, |
| 10725 | .update_cr8_intercept = update_cr8_intercept, |
Yang Zhang | 8d14695 | 2013-01-25 10:18:50 +0800 | [diff] [blame] | 10726 | .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode, |
Tang Chen | 38b9917 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 10727 | .set_apic_access_page_addr = vmx_set_apic_access_page_addr, |
Paolo Bonzini | d50ab6c | 2015-07-29 11:49:59 +0200 | [diff] [blame] | 10728 | .cpu_uses_apicv = vmx_cpu_uses_apicv, |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 10729 | .load_eoi_exitmap = vmx_load_eoi_exitmap, |
| 10730 | .hwapic_irr_update = vmx_hwapic_irr_update, |
| 10731 | .hwapic_isr_update = vmx_hwapic_isr_update, |
Yang Zhang | a20ed54 | 2013-04-11 19:25:15 +0800 | [diff] [blame] | 10732 | .sync_pir_to_irr = vmx_sync_pir_to_irr, |
| 10733 | .deliver_posted_interrupt = vmx_deliver_posted_interrupt, |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 10734 | |
Izik Eidus | cbc9402 | 2007-10-25 00:29:55 +0200 | [diff] [blame] | 10735 | .set_tss_addr = vmx_set_tss_addr, |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 10736 | .get_tdp_level = get_ept_level, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 10737 | .get_mt_mask = vmx_get_mt_mask, |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10738 | |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10739 | .get_exit_info = vmx_get_exit_info, |
Avi Kivity | 586f960 | 2010-11-18 13:09:54 +0200 | [diff] [blame] | 10740 | |
Sheng Yang | 17cc393 | 2010-01-05 19:02:27 +0800 | [diff] [blame] | 10741 | .get_lpage_level = vmx_get_lpage_level, |
Sheng Yang | 0e85188 | 2009-12-18 16:48:46 +0800 | [diff] [blame] | 10742 | |
| 10743 | .cpuid_update = vmx_cpuid_update, |
Sheng Yang | 4e47c7a | 2009-12-18 16:48:47 +0800 | [diff] [blame] | 10744 | |
| 10745 | .rdtscp_supported = vmx_rdtscp_supported, |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 10746 | .invpcid_supported = vmx_invpcid_supported, |
Joerg Roedel | d4330ef | 2010-04-22 12:33:11 +0200 | [diff] [blame] | 10747 | |
| 10748 | .set_supported_cpuid = vmx_set_supported_cpuid, |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 10749 | |
| 10750 | .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10751 | |
Joerg Roedel | 4051b18 | 2011-03-25 09:44:49 +0100 | [diff] [blame] | 10752 | .set_tsc_khz = vmx_set_tsc_khz, |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 10753 | .read_tsc_offset = vmx_read_tsc_offset, |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 10754 | .write_tsc_offset = vmx_write_tsc_offset, |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 10755 | .adjust_tsc_offset = vmx_adjust_tsc_offset, |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 10756 | .compute_tsc_offset = vmx_compute_tsc_offset, |
Nadav Har'El | d5c1785 | 2011-08-02 15:54:20 +0300 | [diff] [blame] | 10757 | .read_l1_tsc = vmx_read_l1_tsc, |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 10758 | |
| 10759 | .set_tdp_cr3 = vmx_set_cr3, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 10760 | |
| 10761 | .check_intercept = vmx_check_intercept, |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 10762 | .handle_external_intr = vmx_handle_external_intr, |
Liu, Jinsong | da8999d | 2014-02-24 10:55:46 +0000 | [diff] [blame] | 10763 | .mpx_supported = vmx_mpx_supported, |
Wanpeng Li | 55412b2 | 2014-12-02 19:21:30 +0800 | [diff] [blame] | 10764 | .xsaves_supported = vmx_xsaves_supported, |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 10765 | |
| 10766 | .check_nested_events = vmx_check_nested_events, |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 10767 | |
| 10768 | .sched_in = vmx_sched_in, |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10769 | |
| 10770 | .slot_enable_log_dirty = vmx_slot_enable_log_dirty, |
| 10771 | .slot_disable_log_dirty = vmx_slot_disable_log_dirty, |
| 10772 | .flush_log_dirty = vmx_flush_log_dirty, |
| 10773 | .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked, |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 10774 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame^] | 10775 | .pre_block = vmx_pre_block, |
| 10776 | .post_block = vmx_post_block, |
| 10777 | |
Wei Huang | 25462f7 | 2015-06-19 15:45:05 +0200 | [diff] [blame] | 10778 | .pmu_ops = &intel_pmu_ops, |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10779 | |
| 10780 | .update_pi_irte = vmx_update_pi_irte, |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10781 | }; |
| 10782 | |
| 10783 | static int __init vmx_init(void) |
| 10784 | { |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10785 | int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx), |
| 10786 | __alignof__(struct vcpu_vmx), THIS_MODULE); |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10787 | if (r) |
Tiejun Chen | 34a1cd6 | 2014-10-28 10:14:48 +0800 | [diff] [blame] | 10788 | return r; |
Sheng Yang | 25c5f22 | 2008-03-28 13:18:56 +0800 | [diff] [blame] | 10789 | |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 10790 | #ifdef CONFIG_KEXEC_CORE |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10791 | rcu_assign_pointer(crash_vmclear_loaded_vmcss, |
| 10792 | crash_vmclear_local_loaded_vmcss); |
| 10793 | #endif |
| 10794 | |
He, Qing | fdef3ad | 2007-04-30 09:45:24 +0300 | [diff] [blame] | 10795 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10796 | } |
| 10797 | |
| 10798 | static void __exit vmx_exit(void) |
| 10799 | { |
Dave Young | 2965faa | 2015-09-09 15:38:55 -0700 | [diff] [blame] | 10800 | #ifdef CONFIG_KEXEC_CORE |
Monam Agarwal | 3b63a43 | 2014-03-22 12:28:10 +0530 | [diff] [blame] | 10801 | RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); |
Zhang Yanfei | 8f536b7 | 2012-12-06 23:43:34 +0800 | [diff] [blame] | 10802 | synchronize_rcu(); |
| 10803 | #endif |
| 10804 | |
Zhang Xiantao | cb498ea | 2007-11-14 20:39:31 +0800 | [diff] [blame] | 10805 | kvm_exit(); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 10806 | } |
| 10807 | |
| 10808 | module_init(vmx_init) |
| 10809 | module_exit(vmx_exit) |